text stringlengths 54 60.6k |
|---|
<commit_before>// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/favicon/favicon_util.h"
#include "chrome/browser/history/history_types.h"
#include "chrome/browser/history/se... |
<commit_before>// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/favicon/favicon_util.h"
#include "chrome/browser/history/select_favicon_frames.h"
#include "chrome/common/fav... |
<commit_before><commit_msg>CtxBlockOacc: Fix assert in DeclareSharedVar<commit_after><|endoftext|> |
<commit_before>// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/gtk/first_run_dialog.h"
#include "app/l10n_util.h"
#include "app/resource_bundle.h"
#include "base/message_lo... |
<commit_before>// Copyright 2008, Google Inc.
// 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 the above copyright
// notice, this list ... |
<commit_before>#include "common.hpp"
TEST_XML(xpath_number_number, "<node>123</node>")
{
xml_node c;
xml_node n = doc.child("node").first_child();
// number with 0 arguments
CHECK_XPATH_NUMBER_NAN(c, "number()");
CHECK_XPATH_NUMBER(n, "number()", 123);
// number with 1 string argument
CHECK_XPATH... |
<commit_before>/*
* This file is open source software, licensed to you under the terms
* of the Apache License, Version 2.0 (the "License"). See the NOTICE file
* distributed with this work for additional information regarding copyright
* ownership. You may not use this file except in compliance with the License.... |
<commit_before>/*
* This file is open source software, licensed to you under the terms
* of the Apache License, Version 2.0 (the "License"). See the NOTICE file
* distributed with this work for additional information regarding copyright
* ownership. You may not use this file except in compliance with the License.... |
<commit_before>/**
* @file streamingaudio_fmodex.cpp
* @brief LLStreamingAudio_FMODEX implementation
*
* $LicenseInfo:firstyear=2002&license=viewerlgpl$
* Second Life Viewer Source Code
* Copyright (C) 2010, Linden Research, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it u... |
<commit_before>#include "plot_view.hpp"
#include "plot.hpp"
#include <QPainter>
#include <QDebug>
#include <algorithm>
#include <iostream>
using namespace std;
namespace datavis {
PlotView::PlotView(QWidget * parent):
QWidget(parent)
{}
void PlotView::addPlot(Plot * plot)
{
m_plots.push_back(plot);
up... |
<commit_before>// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <atlbase.h>
#include "base/command_line.h"
#include "base/process_util.h"
#include "base/test/test_suite.h"
#include "base/th... |
<commit_before>/*
* Copyright (c) 2020 Pedro Falcato
* This file is part of Onyx, and is released under the terms of the MIT License
* check LICENSE at the root directory for more information
*/
#include <stdio.h>
#include "../virtio.hpp"
#include <onyx/slice.hpp>
#include <onyx/page.h>
#include <onyx/net/network.h>
... |
<commit_before>// ======================================================================== //
// Copyright 2009-2018 Intel Corporation //
// //
// Licensed under the Apache License, Version 2.0 (the "License"); ... |
<commit_before>/*
* File: log.cpp
* $Revision$
* Last edited: $Date $
* Edited by: $Author $
*
* Created by: Leonardo Uieda (leouieda@gmail.com)
*
* Created on March 11, 2009, 6:40 PM
*
* Description:
* Method implementations for the Log class.
*/
#include <time.h>
#include "headers/log.h"
/* FIELDS ... |
<commit_before>/* ************************************************************************
* Copyright (c) 2018 Advanced Micro Devices, Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Soft... |
<commit_before>//===- ARMInstructionSelector.cpp ----------------------------*- C++ -*-==//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===--------------------------------------------... |
<commit_before>/*=============================================================================
Copyright (c) 2012-2013 Richard Otis
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>/*
LED bar library V2.0
Copyright (c) 2010 Seeed Technology Inc.
Original Author: LG
Modify: Loovee, 2014-2-26
User can choose which Io to be used.
The MIT License (MIT)
Copyright (c) 2013 Seeed Technology Inc.
Permission is hereby granted, free of charge, to any person obtaining a... |
<commit_before>/*
* qirois.cpp
*
* Copyright (c) 2016 Tobias Wood.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
*/
#include <iostream>
#include <fs... |
<commit_before>//
// GameSharing.cpp
// PaperChase
//
// Created by Adrian Dawid on 17.08.14.
//
//
#include "GameSharing.h"
USING_NS_CC;
bool GameSharing::bIsGPGAvailable = true;
bool GameSharing::wasGPGAvailableCalled = false;
void GameSharing::SubmitScore(int score)
{
#if CC_TARGET_PLATFORM == CC_PLATFORM_AND... |
<commit_before>// Time Complexity: O(mn)
// Time Complexity: O(mn)
class Solution {
public:
unordered_map<int, unordered_map<int, int> > hash;
int uniquePaths(int m, int n) {
if(m == 0 || n == 0)
return 0;
if(m == 1 || n == 1)
return 1;
... |
<commit_before>/*************************************************************************
*
* $RCSfile: popmenu.cxx,v $
*
* $Revision: 1.1.1.1 $
*
* last change: $Author: hr $ $Date: 2000-09-18 16:44:53 $
*
* The Contents of this file are made available subject to the terms of
* either of the following li... |
<commit_before>/*************************************************************************
*
* $RCSfile: colrowba.cxx,v $
*
* $Revision: 1.9 $
*
* last change: $Author: nn $ $Date: 2002-08-30 18:42:35 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licen... |
<commit_before>//===- BuildSystem.cpp - Utilities for use by build systems ---------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------... |
<commit_before>#include "Point.hpp"
#include <math.h>
namespace Slic3r {
void
Point::scale(double factor)
{
this->x *= factor;
this->y *= factor;
}
void
Point::translate(double x, double y)
{
this->x += x;
this->y += y;
}
void
Point::rotate(double angle, Point* center)
{
double cur_x = (double)t... |
<commit_before>/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2008 by Sun Microsystems, Inc.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: colrowst.hxx,v $
* $Revision: 1.... |
<commit_before>/*******************************************************************************
* Copyright (c) 2014, 2015 IBM Corporation and others
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* i... |
<commit_before>//===- llvm-prof.cpp - Read in and process llvmprof.out data files --------===//
//
// The LLVM Compiler Infrastructure
//
// This file was developed by the LLVM research group and is distributed under
// the University of Illinois Open Source License. See LICENSE.TXT for details.
/... |
<commit_before>// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "media/base/android/media_player_bridge.h"
#include "base/android/jni_android.h"
#include "base/android/jni_string.h"
#includ... |
<commit_before>/*
* Copyright (C) 2015 ScyllaDB
*/
/*
* This file is part of Scylla.
*
* Scylla 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 version 3 of the License, or
* (at your op... |
<commit_before>/******************************************************************************
* Copyright 2017 The Apollo Authors. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of ... |
<commit_before>/*
* Copyright 2015 Intel(r) Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http ://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applic... |
<commit_before>/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one ... |
<commit_before>#include "Absorbable.h"
Absorbable::Absorbable(int newMass)
{
mass = newMass;
posX = posY = 0;
//Select a new color, using the HSL color wheel for bright colors.
ColorHSL temp;
temp.setH((rand() % 360) + 1);
temp.setS(1);
temp.setL(.5);
color = temp.getRGB();
}
void Absorbable::absorb(Absorbab... |
<commit_before>// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "sandbox/linux/seccomp-bpf-helpers/syscall_parameters_restrictions.h"
#include <errno.h>
#include <sched.h>
#include <sys/resourc... |
<commit_before>// Copyright (c) 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/browser/android/edge_effect.h"
#include "cc/layers/layer.h"
namespace content {
namespace {
enum State {
STATE_... |
<commit_before>// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/browser/gpu/compositor_util.h"
#include "base/command_line.h"
#include "base/logging.h"
#include "base/metrics/field... |
<commit_before>// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/common/cc_messages.h"
#include "base/test/launcher/unit_test_launcher.h"
#include "base/test/test_suite.h"
#include "cc/... |
<commit_before>#ifndef MJOLNIR_UTIL_STATIC_STRING_HPP
#define MJOLNIR_UTIL_STATIC_STRING_HPP
#include <mjolnir/util/throw_exception.hpp>
#include <string>
#include <stdexcept>
#include <istream>
#include <ostream>
#include <cstdint>
namespace mjolnir
{
// static_string is a statically sized std::string, inspired by s... |
<commit_before>#include "SudokuGenerator.h"
#include <vector>
#include <string>
#include <iostream>
#include <fstream>
#include <exception>
#include <stdexcept>
//#include <sstream>
#include <stack>
#include <stdlib.h>
//#include <boost/numeric/ublas/matrix.hpp>
//#include <boost/numeric/ublas/io.hpp>
#include "Random... |
<commit_before>void ViewTOF()
{
//=====> Level 1
// Level 1 for TOF volumes
gMC->Gsatt("B077","seen",0);
//==========> Level 2
// Level 2
gMC->Gsatt("B076","seen",-1); // all B076 sub-levels skipped -
gMC->Gsatt("B071","seen",0);
gMC->Gsatt("B074","seen",0);
gMC->Gsatt("B075","seen",0);
gMC->Gsatt("B0... |
<commit_before>#include <jni.h>
#include <string>
extern "C"
jint
Java_com_dev_bins_jniwithcmake_MainActivity_add(JNIEnv *env, jobject instance, jint x, jint y) {
return x+y;
}
extern "C"
jstring
Java_com_dev_bins_jniwithcmake_MainActivity_stringFromJNI(
JNIEnv *env,
jobject /* this */) {
std::... |
<commit_before>#include "stdafx.h"
#include "CSVWriter.h"
#include <filesystem>
#include <fstream>
#include "mmcore/param/FilePathParam.h"
#include "mmstd_datatools/table/TableDataCall.h"
megamol::stdplugin::datatools::CSVWriter::CSVWriter() : _data_in_slot("inData", ""), _filename_slot("filename", "") {
_data... |
<commit_before>/* Siconos-Kernel, Copyright INRIA 2005-2011.
* Siconos is a program dedicated to modeling, simulation and control
* of non smooth dynamical systems.
* Siconos is a free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free ... |
<commit_before>#include "precomp.hpp"
#include <iostream>
#include <iomanip>
using namespace std;
using namespace cv;
namespace {
void helpParser()
{
printf("\nThe CommandLineParser class is designed for command line arguments parsing\n"
"Keys map: \n"
"Before you start to work with Command... |
<commit_before>// $Id$
AliEmcalJetTask* AddTaskEmcalJet(
const char *nTracks = "Tracks",
const char *nClusters = "CaloClusters",
const Int_t algo = 1,
const Double_t radius = 0.4,
const Int_t type = 0,
const Double_t minTrPt = 0.15,
const Double_t minClPt = 0... |
<commit_before>/* IBM_PROLOG_BEGIN_TAG */
/* This is an automatically generated prolog. */
/* */
/* $Source: src/import/chips/p9/procedures/hwp/memory/lib/workarounds/mcbi... |
<commit_before>#ifndef F_CPU
#define F_CPU 8000000UL // Internal 8MHz clock
#endif
#include <avr/io.h>
#include <util/delay.h>
int main(void) {
// Configure PORTB-pins
DDRD = 0x04;
// Loop forever
while(1) {
// LED On/Off every other loop
PORTD ^= 0b00000100;
_delay_ms(500);
}
}
<commit_msg>Fix... |
<commit_before>/*************************************************************************/
/* collision_polygon_2d.cpp */
/*************************************************************************/
/* This file is part of: */
/... |
<commit_before>/****************************************************************************
This file is part of the GLC-lib library.
Copyright (C) 2005-2008 Laurent Ribon (laumaya@users.sourceforge.net)
Version 2.0.0, packaged on July 2010.
http://glc-lib.sourceforge.net
GLC-lib is free software; you can redi... |
<commit_before>#include "listaapo.h"
#include "arvore.h"
#include <iostream>
using namespace std;
extern int contArvore;
extern int contLista;
void main()
{
//lao esterno n = a 100 ate 2000 passo 100
for (int n = 100; n <= 2000; n+=100)
{
contArvore = 0, contLista = 0;
//declara uma lista
TipoLista Lista;
... |
<commit_before>/*===================================================================
The Medical Imaging Interaction Toolkit (MITK)
Copyright (c) German Cancer Research Center,
Division of Medical and Biological Informatics.
All rights reserved.
This software is distributed WITHOUT ANY WARRANTY; without
even the imp... |
<commit_before>// This file is a part of the OpenSurgSim project.
// Copyright 2013, SimQuest Solutions Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.or... |
<commit_before>/***********************************************************************************************************************
**
** Copyright (c) 2011, 2015 ETH Zurich
** All rights reserved.
**
** Redistribution and use in source and binary forms, with or without modification, are permitted provided tha... |
<commit_before>#include "Application.hh"
#include <cstdlib>
#include <ctime>
#include <G4UImanager.hh>
#include <G4UIterminal.hh>
#include <G4UIsession.hh>
#ifdef G4VIS_USE
#include <G4VisExecutive.hh>
#endif
#ifdef G4UI_USE_QT
#include <G4UIQt.hh>
// #include <QtGui/QMainWindow>
#else
#include <G4U... |
<commit_before>/*
This file is part of cphVB and copyright (c) 2012 the cphVB team:
http://cphvb.bitbucket.org
cphVB 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, either version 3
of the License, or (a... |
<commit_before>/*************************************************************************
*
* $RCSfile: fusearch.cxx,v $
*
* $Revision: 1.4 $
*
* last change: $Author: hr $ $Date: 2003-03-27 10:57:51 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licen... |
<commit_before>/***************************************************************************
* Copyright (c) 2009 Werner Mayer <wmayer[at]users.sourceforge.net> *
* *
* This file is part of the FreeCAD CAx development system. ... |
<commit_before>#include "THMMesh.h"
#include "libmesh/node.h"
#include "libmesh/edge_edge2.h"
#include "libmesh/edge_edge3.h"
#include "libmesh/face_quad4.h"
#include "libmesh/face_quad9.h"
registerMooseObject("THMApp", THMMesh);
const BoundaryName THMMesh::INVALID_BOUNDARY_ID = "invalid_boundary_id";
InputParameter... |
<commit_before>#pragma once
// Mostly copied from https://github.com/SaschaWillems/Vulkan
#include <functional>
namespace flex
{
namespace vk
{
template <typename T>
class VDeleter
{
public:
VDeleter();
VDeleter(std::function<void(T, VkAllocationCallbacks*)> deletef);
VDeleter(const VDeleter<VkIn... |
<commit_before>/*
* Copyright (c) 2012 Aldebaran Robotics. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the COPYING file.
*/
#pragma once
#ifndef _LIBQI_QI_LOG_HXX_
#define _LIBQI_QI_LOG_HXX_
#include <boost/type_traits.hpp>
#if defined(NO_QI_DEBUG) ||... |
<commit_before>/****************************************************************************
**
** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** This file is part of the qmake application of the Qt Toolkit.
**
** $QT_BEG... |
<commit_before>// Licensed GNU LGPL v3 or later: http://www.gnu.org/licenses/lgpl.html
#include "formatter.hh"
#include "main.hh"
#include <cstring>
namespace Rapicorn {
namespace Lib {
template<class... Args> static std::string
system_string_printf (const char *format, Args... args)
{
char *cstr = NULL;
int ret ... |
<commit_before>// Licensed GNU LGPL v3 or later: http://www.gnu.org/licenses/lgpl.html
#ifndef __RAPICORN_THREADLIB_HH__
#define __RAPICORN_THREADLIB_HH__
#include <condition_variable>
namespace Rapicorn {
namespace Lib {
#define RAPICORN_MFENCE __sync_synchronize() ///< Memory Fence - prevent processor (and comp... |
<commit_before>08e9ff38-2e4d-11e5-9284-b827eb9e62be<commit_msg>08ef0eb0-2e4d-11e5-9284-b827eb9e62be<commit_after>08ef0eb0-2e4d-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>5ce64adc-2e4e-11e5-9284-b827eb9e62be<commit_msg>5ceb4870-2e4e-11e5-9284-b827eb9e62be<commit_after>5ceb4870-2e4e-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>0ab57d4a-2e4f-11e5-9284-b827eb9e62be<commit_msg>0aba9532-2e4f-11e5-9284-b827eb9e62be<commit_after>0aba9532-2e4f-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>ff70847c-2e4c-11e5-9284-b827eb9e62be<commit_msg>ff7581e8-2e4c-11e5-9284-b827eb9e62be<commit_after>ff7581e8-2e4c-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>5e0fce98-2e4d-11e5-9284-b827eb9e62be<commit_msg>5e14d7ee-2e4d-11e5-9284-b827eb9e62be<commit_after>5e14d7ee-2e4d-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>176583f2-2e4d-11e5-9284-b827eb9e62be<commit_msg>176a9aae-2e4d-11e5-9284-b827eb9e62be<commit_after>176a9aae-2e4d-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>f070c46e-2e4c-11e5-9284-b827eb9e62be<commit_msg>f075fd62-2e4c-11e5-9284-b827eb9e62be<commit_after>f075fd62-2e4c-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>286c0ec8-2e4d-11e5-9284-b827eb9e62be<commit_msg>287110da-2e4d-11e5-9284-b827eb9e62be<commit_after>287110da-2e4d-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>0bf1fc1a-2e4f-11e5-9284-b827eb9e62be<commit_msg>0bf6f33c-2e4f-11e5-9284-b827eb9e62be<commit_after>0bf6f33c-2e4f-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>12b3914a-2e4e-11e5-9284-b827eb9e62be<commit_msg>12b8ca84-2e4e-11e5-9284-b827eb9e62be<commit_after>12b8ca84-2e4e-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>db06f5d8-2e4e-11e5-9284-b827eb9e62be<commit_msg>db0bea7a-2e4e-11e5-9284-b827eb9e62be<commit_after>db0bea7a-2e4e-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>865c3116-2e4d-11e5-9284-b827eb9e62be<commit_msg>86612734-2e4d-11e5-9284-b827eb9e62be<commit_after>86612734-2e4d-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>26d75742-2e4e-11e5-9284-b827eb9e62be<commit_msg>26dc621e-2e4e-11e5-9284-b827eb9e62be<commit_after>26dc621e-2e4e-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>f5592e74-2e4e-11e5-9284-b827eb9e62be<commit_msg>f55e2802-2e4e-11e5-9284-b827eb9e62be<commit_after>f55e2802-2e4e-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>578de6c2-2e4d-11e5-9284-b827eb9e62be<commit_msg>5792e9f6-2e4d-11e5-9284-b827eb9e62be<commit_after>5792e9f6-2e4d-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>edce134a-2e4e-11e5-9284-b827eb9e62be<commit_msg>edd3062a-2e4e-11e5-9284-b827eb9e62be<commit_after>edd3062a-2e4e-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>975e2924-2e4d-11e5-9284-b827eb9e62be<commit_msg>97631eb6-2e4d-11e5-9284-b827eb9e62be<commit_after>97631eb6-2e4d-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>3b121afc-2e4f-11e5-9284-b827eb9e62be<commit_msg>3b17738a-2e4f-11e5-9284-b827eb9e62be<commit_after>3b17738a-2e4f-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>1c4a2f6c-2e4d-11e5-9284-b827eb9e62be<commit_msg>1c4f5866-2e4d-11e5-9284-b827eb9e62be<commit_after>1c4f5866-2e4d-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>e5d8d61c-2e4d-11e5-9284-b827eb9e62be<commit_msg>e5dde03a-2e4d-11e5-9284-b827eb9e62be<commit_after>e5dde03a-2e4d-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>d2311436-2e4c-11e5-9284-b827eb9e62be<commit_msg>d2362516-2e4c-11e5-9284-b827eb9e62be<commit_after>d2362516-2e4c-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>5c035fb6-2e4d-11e5-9284-b827eb9e62be<commit_msg>5c08602e-2e4d-11e5-9284-b827eb9e62be<commit_after>5c08602e-2e4d-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>f3df0d84-2e4e-11e5-9284-b827eb9e62be<commit_msg>f3e40cee-2e4e-11e5-9284-b827eb9e62be<commit_after>f3e40cee-2e4e-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>02288182-2e4e-11e5-9284-b827eb9e62be<commit_msg>022d7ade-2e4e-11e5-9284-b827eb9e62be<commit_after>022d7ade-2e4e-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>a5fe145c-2e4e-11e5-9284-b827eb9e62be<commit_msg>a6032870-2e4e-11e5-9284-b827eb9e62be<commit_after>a6032870-2e4e-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>b069767a-2e4e-11e5-9284-b827eb9e62be<commit_msg>b06e73c8-2e4e-11e5-9284-b827eb9e62be<commit_after>b06e73c8-2e4e-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>4b9d87dc-2e4d-11e5-9284-b827eb9e62be<commit_msg>4ba2b22a-2e4d-11e5-9284-b827eb9e62be<commit_after>4ba2b22a-2e4d-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>a2e35184-2e4d-11e5-9284-b827eb9e62be<commit_msg>a2e84734-2e4d-11e5-9284-b827eb9e62be<commit_after>a2e84734-2e4d-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>56e8280e-2e4d-11e5-9284-b827eb9e62be<commit_msg>56ed3416-2e4d-11e5-9284-b827eb9e62be<commit_after>56ed3416-2e4d-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>ec80d442-2e4d-11e5-9284-b827eb9e62be<commit_msg>ec85e414-2e4d-11e5-9284-b827eb9e62be<commit_after>ec85e414-2e4d-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>2badc72a-2e4d-11e5-9284-b827eb9e62be<commit_msg>2bb2bb40-2e4d-11e5-9284-b827eb9e62be<commit_after>2bb2bb40-2e4d-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>b0651186-2e4c-11e5-9284-b827eb9e62be<commit_msg>b06e6b50-2e4c-11e5-9284-b827eb9e62be<commit_after>b06e6b50-2e4c-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>f0d140fe-2e4d-11e5-9284-b827eb9e62be<commit_msg>f0d657c4-2e4d-11e5-9284-b827eb9e62be<commit_after>f0d657c4-2e4d-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>2a2dd096-2e4f-11e5-9284-b827eb9e62be<commit_msg>2a41f24c-2e4f-11e5-9284-b827eb9e62be<commit_after>2a41f24c-2e4f-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>cd96725e-2e4c-11e5-9284-b827eb9e62be<commit_msg>cd9b670a-2e4c-11e5-9284-b827eb9e62be<commit_after>cd9b670a-2e4c-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>7f8cee92-2e4e-11e5-9284-b827eb9e62be<commit_msg>7f91f46e-2e4e-11e5-9284-b827eb9e62be<commit_after>7f91f46e-2e4e-11e5-9284-b827eb9e62be<|endoftext|> |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.