text stringlengths 54 60.6k |
|---|
<commit_before>#include <assert.h>
#include "global.h"
#include "Level.h"
#include "blocks.h"
#include "2d/cube.h"
void begin_compound(void *context, nbt::String name) {
if (name.compare("Level") == 0) {
((Level*)context)->islevel = true;
}
}
void register_int(void *context, nbt::String name, nbt::Int i) {
... |
<commit_before>// Scintilla source code edit control
/** @file LexVB.cxx
** Lexer for Visual Basic and VBScript.
**/
// Copyright 1998-2001 by Neil Hodgson <[email protected]>
// The License.txt file describes the conditions under which this software may be distributed.
#include <stdlib.h>
#include <string.h>
#inc... |
<commit_before>#define DEBUG 1
/**
* File : B.cpp
* Author : Kazune Takahashi
* Created : 11/9/2019, 9:04:32 PM
* Powered by Visual Studio Code
*/
#include <iostream>
#include <iomanip>
#include <algorithm>
#include <vector>
#include <string>
#include <complex>
#include <tuple>
#include <queue>
#include <stack... |
<commit_before><commit_msg>Fix invalid string access<commit_after><|endoftext|> |
<commit_before>/* Copyright 2009 SPARTA, Inc., dba Cobham Analytic Solutions
*
* This file is part of WATCHER.
*
* WATCHER is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either vers... |
<commit_before>///
/// @file P2.cpp
/// @brief 2nd partial sieve function.
///
/// Copyright (C) 2014 Kim Walisch, <[email protected]>
///
/// This file is distributed under the BSD License. See the COPYING
/// file in the top level directory.
///
#include <primecount-internal.hpp>
#include <primesieve.hpp>
#incl... |
<commit_before>/********************************
** Tsunagari Tile Engine **
** file-type.cpp **
** Copyright 2016 Paul Merrill **
********************************/
// **********
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated docum... |
<commit_before>///
/// @file P2.cpp
/// @brief 2nd partial sieve function.
///
/// Copyright (C) 2014 Kim Walisch, <[email protected]>
///
/// This file is distributed under the BSD License. See the COPYING
/// file in the top level directory.
///
#include <primecount-internal.hpp>
#include <primesieve.hpp>
#incl... |
<commit_before>#include "archivewidget.h"
WARNINGS_DISABLE
#include <QAction>
#include <QComboBox>
#include <QCursor>
#include <QDateTime>
#include <QEvent>
#include <QKeyEvent>
#include <QKeySequence>
#include <QLabel>
#include <QMenu>
#include <QModelIndex>
#include <QModelIndexList>
#include <QSortFilterProxyModel>... |
<commit_before>/*
* predixy - A high performance and full features proxy for redis.
* Copyright (C) 2017 Joyield, Inc. <[email protected]>
* All rights reserved.
*/
#include <unistd.h>
#include <signal.h>
#include <time.h>
#include <stdlib.h>
#include <sys/types.h>
#include <iostream>
#include <thread>
#includ... |
<commit_before>#include <iostream>
#include "pbge/exceptions/exceptions.h"
#include "pbge/core/Manager.h"
#include "pbge/gfx/Buffer.h"
#include "pbge/gfx/Node.h"
#include "pbge/gfx/Model.h"
#include "pbge/gfx/Renderer.h"
#include "pbge/gfx/TextureRendererFactory.h"
#include "pbge/gfx/VBO.h"
#include <GL/glew.h>
#inc... |
<commit_before>#include <Subsystems/ElevatorAutomatic.hpp>
#include "Robot.hpp"
#include <cmath>
#include "DriverStation.h"
#include <iostream>
#include <iomanip>
Robot::Robot() : settings("/home/lvuser/RobotSettings.txt"),
drive1Buttons(0),
drive2Buttons(1),
elevator... |
<commit_before>#include <stddef.h>
#include <list>
#include "prelude.hpp"
namespace rubinius {
class ObjectHeader;
class InflatedHeader;
class VM;
/**
* Manages a list of InflatedHeader instances.
*
* Storage for InflatedHeader objects are allocated in chunks, and these are
* in turn stored in a ... |
<commit_before>/*****************************************************************************
* PokerTH - The open source texas holdem engine *
* Copyright (C) 2006-2011 Felix Hammer, Florian Thauer, Lothar May *
* ... |
<commit_before>#include "FGame.hpp"
//Images were downloaded from opengameart.org
FGame::FGame(std::shared_ptr<FEngine> engine)
{
m_engine = engine;
auto level = engine->getLevel();
m_width = level->getWidth();
m_height = level->getHeight();
m_tileSize = level->getTileSize();
sf::RenderWindow *window = new ... |
<commit_before>// ***************************************************************************
// FastaIndex.cpp (c) 2010 Erik Garrison <[email protected]>
// Marth Lab, Department of Biology, Boston College
// All rights reserved.
// ---------------------------------------------------------------------------
// Last... |
<commit_before><commit_msg>Don't check for pWin when drawing the Scrollbar<commit_after><|endoftext|> |
<commit_before><commit_msg>tdf#91380 add WB_MOVEABLE bit to docking windows<commit_after><|endoftext|> |
<commit_before>/*
* Copyright (C) 2008-2009 Josh A. Beam <[email protected]>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above co... |
<commit_before>#include "SqrtX.hpp"
#include <climits>
using namespace std;
int SqrtX::mySqrt(int x) {
if (x == 0)
return 0;
int left = 1, right = INT_MAX;
while (true) {
int mid = left + (right - left) / 2;
if (mid > x / mid)
right = mid - 1;
else if (mid +... |
<commit_before>#ifndef VPP_OPENCV_BRIDGE_HH__
# define VPP_OPENCV_BRIDGE_HH__
# include <opencv2/opencv.hpp>
# include <vpp/core/image2d.hh>
namespace vpp
{
template <typename T>
struct opencv_typeof;
#define OPENCV_TYPEOF(T, V) \
template <> \
struct opencv_typeof<T> \
{ ... |
<commit_before>#include <muduo/base/Logging.h>
#include <muduo/net/EventLoop.h>
#include <muduo/net/InetAddress.h>
#include <muduo/net/TcpClient.h>
#include <muduo/net/TcpServer.h>
#include <boost/bind.hpp>
#include <queue>
#include <utility>
#include <mcheck.h>
#include <stdio.h>
#include <unistd.h>
using namespac... |
<commit_before>/**************************************************************************
**
** This file is part of Qt Creator
**
** Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
**
** Contact: Nokia Corporation ([email protected])
**
** Commercial Usage
**
** Licensees holding valid Qt Commercial... |
<commit_before>#include "VDLog.h"
using namespace VideoDromm;
VDLog::VDLog()
{
//fs::path path;
//path = getAppPath() / "log";
//auto bLog = log::makeLogger<log::LoggerBreakpoint>();
//bLog->setTriggerLevel(log::LEVEL_ERROR);
//log::makeLogger<log::LoggerFileRotating>(path.string(), "videodromm.%Y.%m.%d.txt", fa... |
<commit_before>#ifndef STAN_ANALYZE_MCMC_COMPUTE_EFFECTIVE_SAMPLE_SIZE_HPP
#define STAN_ANALYZE_MCMC_COMPUTE_EFFECTIVE_SAMPLE_SIZE_HPP
#include <stan/math/prim/mat/fun/Eigen.hpp>
#include <stan/analyze/mcmc/autocovariance.hpp>
#include <stan/analyze/mcmc/split_chains.hpp>
#include <algorithm>
#include <cmath>
#include... |
<commit_before>/*
* Glib::Dispatcher example -- cross thread signalling
* by Daniel Elstner <[email protected]>
*
* modified to only use glibmm
* by J. Abelardo Gutierrez <[email protected]>
*
* Copyright (c) 2002-2003 Free Software Foundation
*/
#include <sigc++/class_slot.h>
#include <glibmm.h>
#in... |
<commit_before>#include <string.h>
#include "base/logging.h"
#include "gfx/gl_common.h"
#include "gfx_es2/fbo.h"
#include "gfx/gl_common.h"
#include "gfx_es2/gl_state.h"
#if defined(USING_GLES2) && !defined(BLACKBERRY)
#ifndef GL_READ_FRAMEBUFFER
#define GL_READ_FRAMEBUFFER GL_FRAMEBUFFER
#define GL_DRAW_FRAMEBUFFER ... |
<commit_before>#include <string>
#include <iostream>
#include <fstream>
#include <vector>
#include <memory>
#include <algorithm>
#include "Vec2i.h"
#include "IMapElement.h"
#include "CActor.h"
#include "CDoorway.h"
#include "CMap.h"
#include "CDoorway.h"
#include "CBaphomet.h"
#include "CCuco.h"
#include "CDemon.h"
#i... |
<commit_before>// ***************************************************************************
// FastaIndex.cpp (c) 2010 Erik Garrison <[email protected]>
// Marth Lab, Department of Biology, Boston College
// All rights reserved.
// ---------------------------------------------------------------------------
// Last... |
<commit_before>#include "Graph.h"
#include <algorithm>
#include <queue>
#include <stack>
#include <set>
vertex* Graph::at(const std::string& name)const
{
auto it = m_V.find(name);
if(it != m_V.end())
{
return it->second;
}
else throw;
}
std::vector<std::string> Graph::getkeys()const
{
st... |
<commit_before>/*
* Graph.hpp
*
* Created on: Nov 4, 2014
* Author: Pimenta
*/
#ifndef GRAPH_HPP_
#define GRAPH_HPP_
#include <memory>
#include <map>
#include <functional>
#include <cstdio>
typedef int Size;
typedef int Vertex;
typedef int Weight;
enum { INFINITE = 0x7fffffff };
class... |
<commit_before>#include "Layer.h"
// Generate random float for initial weight
float Layer::randomFloat() {
int randInt = rand() % (INITIALWEIGHTRANGE * 1000) - (INITIALWEIGHTRANGE * 500);
float randFl = (float) randInt / 1000;
return randFl;
}
// Public constructor
Layer::Layer(int numNodes, int numPrevNodes, s... |
<commit_before>//=======================================================================
// Copyright Baptiste Wicht 2011.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
//======================================... |
<commit_before>/*
* Copyright (c) 2015, 2016, 2017, 2018, 2019, Intel Corporation
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source code must retain the above copyright
* ... |
<commit_before>// Copyright (c) 2011-2017 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include <qt/clientmodel.h>
#include <qt/bantablemodel.h>
#include <qt/guiconstants.h>
#include <qt/guiutil.h... |
<commit_before>/*
db2.cc
DB2 OCI Interface to Qore DBI layer
Qore Programming Language
Copyright 2009 Qore Technologies, sro
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; ei... |
<commit_before>#include <iostream>
#include "common/state/ray_config.h"
#include "ray/raylet/raylet.h"
#include "ray/status.h"
#ifndef RAYLET_TEST
int main(int argc, char *argv[]) {
RAY_CHECK(argc == 9);
const std::string raylet_socket_name = std::string(argv[1]);
const std::string store_socket_name = std::str... |
<commit_before>/*=========================================================================
*
* Copyright 2011-2013 The University of North Carolina at Chapel Hill
* All rights reserved.
*
* Licensed under the MADAI Software License. You may obtain a copy of
* this license at
*
* https://madai-public... |
<commit_before>/*=========================================================================
Program: Visualization Library
Module: PtLoad.cc
Language: C++
Date: $Date$
Version: $Revision$
This file is part of the Visualization Library. No part of this file
or its contents may be copied, reproduc... |
<commit_before>/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: optpath.hxx,v $
*
* $Revision: 1.5 $
*
* last change: $Author: rt $ $Date: 2005-09-08 21:48:36 $
*
* The Contents of this file are made a... |
<commit_before>#include <cstdlib>
#include <cmath>
#include <fstream>
#include <sstream>
#include <iostream>
#include <iomanip>
#include <string>
#include <vector>
#include <algorithm>
#include <exception>
#include <sys/time.h>
#include "modules/htmTree.h"
#include "modules/kdTree.h"
#include "misc.h"
#include ... |
<commit_before>/*=========================================================================
Program: Visualization Library
Module: SbrCam.cc
Language: C++
Date: $Date$
Version: $Revision$
This file is part of the Visualization Library. No part of this file or its
contents may be copied, reproduc... |
<commit_before>/*
* State.cpp
* Contains all the information of a state
*
*/
#ifndef PINBALL_BOT_STATE
#define PINBALL_BOT_STATE
#include "Ball.cpp"
class State{
private:
//Ball* ball; //Pointer to the ball inside the simulation
public:
/**
* Gets the expected reward based on a lookup table and the ... |
<commit_before>/* cbr
* Timer.cpp
*
* Copyright (c) 2009, Ewen Cheslack-Postava
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain th... |
<commit_before>#define DEBUG 1
/**
* File : E.cpp
* Author : Kazune Takahashi
* Created : 3/14/2020, 9:19:13 PM
* Powered by Visual Studio Code
*/
#include <algorithm>
#include <bitset>
#include <cassert>
#include <cctype>
#include <chrono>
#include <cmath>
#include <complex>
#include <cstdint>
#include <cstdi... |
<commit_before>/*
* UiMgr.cpp
*
* Created on: Apr 12, 2017
* Author: chad
* Editied: Hadi Rumjahn, Gage Thomas, Jake Shepard
*/
#include <UiMgr.h>
#include <engine.h>
template <typename StorageType>
bool contains(const StorageType item, const StorageType data[], const int len) {
//Iterates throu... |
<commit_before>/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: numfmtlb.hxx,v $
*
* $Revision: 1.6 $
*
* last change: $Author: rt $ $Date: 2005-09-09 09:53:24 $
*
* The Contents of this file are made ... |
<commit_before>/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "Lice... |
<commit_before>/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: delete.cxx,v $
*
* $Revision: 1.15 $
*
* last change: $Author: obo $ $Date: 2006-09-16 23:39:07 $
*
* The Contents of this file are made ... |
<commit_before>/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: wrtsh4.cxx,v $
*
* $Revision: 1.6 $
*
* last change: $Author: rt $ $Date: 2005-09-09 11:41:31 $
*
* The Contents of this file are made av... |
<commit_before>/*
+----------------------------------------------------------------------+
| Swoole |
+----------------------------------------------------------------------+
| This source file is subject to version 2.0 of the Apache license, |
... |
<commit_before>/**
* @file amici.cpp
* @brief core routines for integration
*/
#include "amici/amici.h"
#include "amici/steadystateproblem.h"
#include "amici/backwardproblem.h"
#include "amici/forwardproblem.h"
#include "amici/misc.h"
#include <cvodes/cvodes.h> //return codes
#include <sundials/sundi... |
<commit_before>
// Copyright 2010-2012 University of Washington. All Rights Reserved.
// LICENSE_PLACEHOLDER
// This software was created with Government support under DE
// AC05-76RL01830 awarded by the United States Department of
// Energy. The Government has certain rights in the software.
#include <boost/test/unit... |
<commit_before>/*******************************************************************************
Copyright (c) The Taichi Authors (2016- ). All Rights Reserved.
The use of this software is governed by the LICENSE file.
*******************************************************************************/
#include "ta... |
<commit_before>// Copyright (c) 2017 The PIVX developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "bip38.h"
#include "base58.h"
#include "hash.h"
#include "pubkey.h"
#include "util.h"
#include "utilstrencodings.h... |
<commit_before>// Copyright (c) 2012 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "bloom.h"
#include "core.h"
#include "script.h"
#include <math.h>
#include <stdlib.h>
#define LN2SQUARED... |
<commit_before>// Copyright (c) 2015 The WebM project authors. All Rights Reserved.
//
// Use of this source code is governed by a BSD-style license
// that can be found in the LICENSE file in the root of the source
// tree. An additional intellectual property rights grant can be found
// in the file PATENTS. All cont... |
<commit_before>#include "client_net.h"
#include "interactive.h"
#include "crc32.h"
#include "md5.h"
#include "sha1.h"
#include "sha256.h"
#include "sha3.h"
#include "spdlog/spdlog.h"
#include "logging.h"
#include "auth_common.h"
#include "packets/radius_packet.h"
#include "packets/eap_packet.h"
#include "packets/packet... |
<commit_before>// RUN: %clang_cc1 -Oz -emit-llvm %s -o - | FileCheck %s -check-prefix=Oz
// RUN: %clang_cc1 -O0 -emit-llvm %s -o - | FileCheck %s -check-prefix=OTHER
// RUN: %clang_cc1 -O1 -emit-llvm %s -o - | FileCheck %s -check-prefix=OTHER
// RUN: %clang_cc1 -O2 -emit-llvm %s -o - | FileCheck %s -check-prefix=OTHER
... |
<commit_before>// Catch
#include <catch.hpp>
#include <catchExtension.hpp>
// Mantella
#include <mantella>
class TestPrintable : public mant::Printable {
public:
std::string toString() const override {
return "ThisIsTestPrintable";
}
};
TEST_CASE("printable: Printable", "") {
SECTION("Returns the s... |
<commit_before>#include "gtest/gtest.h"
#include <fstream>
#include <ydsh/ydsh.h>
#include <constant.h>
#include <vm.h>
#include "../test_common.h"
#ifndef HISTORY_MOD_PATH
#error "require HISTORY_MOD_PATH"
#endif
class HistoryTest : public ExpectOutput, public TempFileFactory {
protected:
DSState *state{nullp... |
<commit_before>/*
Author : David Barnett
Date : 03-10-2013
License: MIT License
*/
#include "Settings.h"
#include <iosfwd>
#include <iostream>
using namespace IO;
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <sstream>
#include <algorithm>
#include <iterator>
#include "../etc/stri... |
<commit_before>/*****************************************************************************
* Media Library
*****************************************************************************
* Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN
*
* Authors: Hugo Beauzée-Luyssen <[email protected]>
*
* T... |
<commit_before>// This file was developed by Thomas Müller <[email protected]>.
// It is published under the BSD-style license contained in the LICENSE.txt file.
#include "../include/Image.h"
#include <ImfChannelList.h>
#include <ImfInputFile.h>
#include <stb_image.h>
#include <array>
#include <iostream>
using name... |
<commit_before>468108b4-2e4d-11e5-9284-b827eb9e62be<commit_msg>46860d6e-2e4d-11e5-9284-b827eb9e62be<commit_after>46860d6e-2e4d-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>cd3c2036-2e4e-11e5-9284-b827eb9e62be<commit_msg>cd4119ba-2e4e-11e5-9284-b827eb9e62be<commit_after>cd4119ba-2e4e-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>01407d02-2e4d-11e5-9284-b827eb9e62be<commit_msg>01456f1a-2e4d-11e5-9284-b827eb9e62be<commit_after>01456f1a-2e4d-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>c88cf90c-2e4e-11e5-9284-b827eb9e62be<commit_msg>c891f718-2e4e-11e5-9284-b827eb9e62be<commit_after>c891f718-2e4e-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>6ae6c932-2e4d-11e5-9284-b827eb9e62be<commit_msg>6aebd738-2e4d-11e5-9284-b827eb9e62be<commit_after>6aebd738-2e4d-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>936be7a6-2e4e-11e5-9284-b827eb9e62be<commit_msg>9370e5ee-2e4e-11e5-9284-b827eb9e62be<commit_after>9370e5ee-2e4e-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>af8763f2-2e4e-11e5-9284-b827eb9e62be<commit_msg>af8c6226-2e4e-11e5-9284-b827eb9e62be<commit_after>af8c6226-2e4e-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>fd0e950a-2e4e-11e5-9284-b827eb9e62be<commit_msg>fd139050-2e4e-11e5-9284-b827eb9e62be<commit_after>fd139050-2e4e-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>0d4ad024-2e4e-11e5-9284-b827eb9e62be<commit_msg>0d4fcc28-2e4e-11e5-9284-b827eb9e62be<commit_after>0d4fcc28-2e4e-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>f7545eec-2e4e-11e5-9284-b827eb9e62be<commit_msg>f7595cee-2e4e-11e5-9284-b827eb9e62be<commit_after>f7595cee-2e4e-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>029e029a-2e4e-11e5-9284-b827eb9e62be<commit_msg>02a2fd9a-2e4e-11e5-9284-b827eb9e62be<commit_after>02a2fd9a-2e4e-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>2a851966-2e4d-11e5-9284-b827eb9e62be<commit_msg>2a8a1434-2e4d-11e5-9284-b827eb9e62be<commit_after>2a8a1434-2e4d-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>07e77e06-2e4f-11e5-9284-b827eb9e62be<commit_msg>07ec714a-2e4f-11e5-9284-b827eb9e62be<commit_after>07ec714a-2e4f-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>283571c4-2e4d-11e5-9284-b827eb9e62be<commit_msg>283a67f6-2e4d-11e5-9284-b827eb9e62be<commit_after>283a67f6-2e4d-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>945f16ac-2e4d-11e5-9284-b827eb9e62be<commit_msg>94641f26-2e4d-11e5-9284-b827eb9e62be<commit_after>94641f26-2e4d-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>f239661a-2e4d-11e5-9284-b827eb9e62be<commit_msg>f23e7902-2e4d-11e5-9284-b827eb9e62be<commit_after>f23e7902-2e4d-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>be17e97e-2e4d-11e5-9284-b827eb9e62be<commit_msg>be1cdcea-2e4d-11e5-9284-b827eb9e62be<commit_after>be1cdcea-2e4d-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>2536442a-2e4e-11e5-9284-b827eb9e62be<commit_msg>253b4f74-2e4e-11e5-9284-b827eb9e62be<commit_after>253b4f74-2e4e-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>68741042-2e4d-11e5-9284-b827eb9e62be<commit_msg>68791b64-2e4d-11e5-9284-b827eb9e62be<commit_after>68791b64-2e4d-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>a93a668e-2e4e-11e5-9284-b827eb9e62be<commit_msg>a93f5d88-2e4e-11e5-9284-b827eb9e62be<commit_after>a93f5d88-2e4e-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>99e1b89a-2e4e-11e5-9284-b827eb9e62be<commit_msg>99e6e48c-2e4e-11e5-9284-b827eb9e62be<commit_after>99e6e48c-2e4e-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>9aadba80-2e4e-11e5-9284-b827eb9e62be<commit_msg>9ab2effa-2e4e-11e5-9284-b827eb9e62be<commit_after>9ab2effa-2e4e-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>dfde31e4-2e4d-11e5-9284-b827eb9e62be<commit_msg>dfe33d7e-2e4d-11e5-9284-b827eb9e62be<commit_after>dfe33d7e-2e4d-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>e62eb5aa-2e4d-11e5-9284-b827eb9e62be<commit_msg>e633b974-2e4d-11e5-9284-b827eb9e62be<commit_after>e633b974-2e4d-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>02198254-2e4e-11e5-9284-b827eb9e62be<commit_msg>021e8cae-2e4e-11e5-9284-b827eb9e62be<commit_after>021e8cae-2e4e-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>bf505b38-2e4c-11e5-9284-b827eb9e62be<commit_msg>bf55ad90-2e4c-11e5-9284-b827eb9e62be<commit_after>bf55ad90-2e4c-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>220022d6-2e4d-11e5-9284-b827eb9e62be<commit_msg>220516c4-2e4d-11e5-9284-b827eb9e62be<commit_after>220516c4-2e4d-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>f6736d74-2e4e-11e5-9284-b827eb9e62be<commit_msg>f678687e-2e4e-11e5-9284-b827eb9e62be<commit_after>f678687e-2e4e-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>e0342f18-2e4d-11e5-9284-b827eb9e62be<commit_msg>e0393738-2e4d-11e5-9284-b827eb9e62be<commit_after>e0393738-2e4d-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>b9f73076-2e4c-11e5-9284-b827eb9e62be<commit_msg>b9fc4da4-2e4c-11e5-9284-b827eb9e62be<commit_after>b9fc4da4-2e4c-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>be073526-2e4c-11e5-9284-b827eb9e62be<commit_msg>be0c2806-2e4c-11e5-9284-b827eb9e62be<commit_after>be0c2806-2e4c-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>58433b30-2e4d-11e5-9284-b827eb9e62be<commit_msg>58483d4c-2e4d-11e5-9284-b827eb9e62be<commit_after>58483d4c-2e4d-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>fa48f7d4-2e4e-11e5-9284-b827eb9e62be<commit_msg>fa4dff04-2e4e-11e5-9284-b827eb9e62be<commit_after>fa4dff04-2e4e-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>d8b0dee4-2e4d-11e5-9284-b827eb9e62be<commit_msg>d8b5dbba-2e4d-11e5-9284-b827eb9e62be<commit_after>d8b5dbba-2e4d-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>2cdd0ab6-2e4d-11e5-9284-b827eb9e62be<commit_msg>2ce1fbac-2e4d-11e5-9284-b827eb9e62be<commit_after>2ce1fbac-2e4d-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>af4d6ffe-2e4d-11e5-9284-b827eb9e62be<commit_msg>af527a12-2e4d-11e5-9284-b827eb9e62be<commit_after>af527a12-2e4d-11e5-9284-b827eb9e62be<|endoftext|> |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.