text stringlengths 54 60.6k |
|---|
<commit_before>#include <jni.h>
#include <stdlib.h>
#include "SuperpoweredFrequencyDomain.h"
#include "SuperpoweredAndroidAudioIO.h"
#include "SuperpoweredSimple.h"
#include "SuperpoweredRecorder.h"
static SuperpoweredAndroidAudioIO *audioIO;
static SuperpoweredRecorder *audioRecorder;
static SuperpoweredFrequencyDoma... |
<commit_before>1a9b90c8-2f67-11e5-b231-6c40088e03e4<commit_msg>1aa22f98-2f67-11e5-b8da-6c40088e03e4<commit_after>1aa22f98-2f67-11e5-b8da-6c40088e03e4<|endoftext|> |
<commit_before>/* Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2 of the License.
This program is d... |
<commit_before>#ifndef H_EXTENSIONS_CUTEHMI_SHAREDDATABASE_0_INCLUDE_CUTEHMI_SHAREDDATABASE_DATABASEWORKER_HPP
#define H_EXTENSIONS_CUTEHMI_SHAREDDATABASE_0_INCLUDE_CUTEHMI_SHAREDDATABASE_DATABASEWORKER_HPP
#include "internal/common.hpp"
#include <cutehmi/Worker.hpp>
#include <QSqlDatabase>
namespace cutehmi {
name... |
<commit_before>9612c735-327f-11e5-a33d-9cf387a8033e<commit_msg>96191399-327f-11e5-b785-9cf387a8033e<commit_after>96191399-327f-11e5-b785-9cf387a8033e<|endoftext|> |
<commit_before>//
// NumberRepr.cpp
// Project
//
// Created by Lennart Oymanns on 03.05.17.
//
//
#include "NumberRepr.hpp"
using namespace Equation;
NumberRepr::NumberRepr() {
value_double = 0.0;
isValid = false;
rational = Rational_t(0);
}
NumberRepr::NumberRepr(const std::string &s) {
auto dot_pos = ... |
<commit_before>#ifndef BUBBLESORT_HPP_
#define BUBBLESORT_HPP_
#include <algorithm>
// Bubble Sort Algorithm
// Simple and slow algorithm
// http://en.wikipedia.org/wiki/Bubble_sort
namespace BS
{
class Solution
{
public:
// Basic algorithm
// Best case performance: O(n^2)
// Worst case performance: O(... |
<commit_before>#include "gamerow.h"
#include <QDebug>
#include <QPushButton>
#include <QLabel>
#include <QHBoxLayout>
#include <QUrlQuery>
#include <QMenu>
#include <QAction>
#include <QNetworkAccessManager>
#include <QNetworkRequest>
#include <QNetworkReply>
#include <QPixmap>
int GameRow::COVER_HEIGHT = 80;
Game... |
<commit_before>//---------------------------------------------------------------------------//
/*!
* \file tstMCSA.cpp
* \author Stuart R. Slattery
* \brief Stationary solver tests.
*/
//---------------------------------------------------------------------------//
#include <iostream>
#include <vector>
#include <cm... |
<commit_before>#include "scheduler.h"
#include <pthread.h> //for pthread_setschedparam
#include <time.h> //for clock_nanosleep
#include <signal.h> //for sigaction signal handlers
#include <cstdlib> //for atexit
#include <algorithm> //for push_heap
#include "logging.h"
#include "timeutil.h"
std::array<std::vector<void... |
<commit_before>/*
This file is part of Magnum.
Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016
Vladimír Vondruš <mosra@centrum.cz>
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
t... |
<commit_before>/*=========================================================================
Program: ORFEO Toolbox
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) Centre National d'Etudes Spatiales. All rights reserved.
See OTBCopyright.txt for details.
This software is distributed WIT... |
<commit_before>// This file is part of the AliceVision project.
// Copyright (c) 2016 AliceVision contributors.
// Copyright (c) 2012 openMVG contributors.
// 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 obtai... |
<commit_before>#ifndef slic3r_ElectronicRoutingGraph_hpp_
#define slic3r_ElectronicRoutingGraph_hpp_
#include "Polygon.hpp"
#include "SVG.hpp"
#include <boost/graph/adjacency_list.hpp>
#include <boost/graph/graph_traits.hpp>
#include <boost/graph/graphviz.hpp>
#include <boost/graph/astar_search.hpp>
#include <boost... |
<commit_before>//===--- Errors.cpp - Error reporting utilities ---------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2016 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http... |
<commit_before>#include <cstdint>
#include <iostream>
typedef std::uint64_t u64;
u64 mulmod(u64 a, u64 b, u64 m)
{
u64 r = 0;
u64 s = 0;
while (b > 0)
{
s = ((m - r) > a) ? r + a : r + a - m;
r = (b & 1) * s + (1 - (b & 1)) * r;
b >>= 1;
a = ((m - a) > a) ? a + a : a + a - m;
}
return r;... |
<commit_before>#include "hash_impl.h"
#include "cryptopp_impl.h"
namespace multihash {
hash::impl::impl(hash_code code) : hash_code_(code) { init(); }
void hash::impl::init() {
switch (hash_code_) {
case hash_code::SHA1:
case hash_code::SHA2_256:
case hash_code::SHA2_512:
algorithm_ = std::make_un... |
<commit_before>#include <iostream>
#include <fstream>
#include <cstring>
#include <vector>
#include <queue>
#include <map>
#include <cassert>
#include "node.hpp"
using namespace std;
typedef unsigned char uchar;
// Made this struct so we could pair a character with it's frequency
// and define proper operators so ... |
<commit_before>7829f448-2d53-11e5-baeb-247703a38240<commit_msg>782a799a-2d53-11e5-baeb-247703a38240<commit_after>782a799a-2d53-11e5-baeb-247703a38240<|endoftext|> |
<commit_before>be2bbb30-2e4f-11e5-ace6-28cfe91dbc4b<commit_msg>be329f9c-2e4f-11e5-9c18-28cfe91dbc4b<commit_after>be329f9c-2e4f-11e5-9c18-28cfe91dbc4b<|endoftext|> |
<commit_before>eab17099-2d3c-11e5-b47b-c82a142b6f9b<commit_msg>eb164c51-2d3c-11e5-8203-c82a142b6f9b<commit_after>eb164c51-2d3c-11e5-8203-c82a142b6f9b<|endoftext|> |
<commit_before>#include "sgct.h"
#include "ParticleSystem.h"
#include "Snow.h"
#include "World.h"
#include "HelperFunctions.h"
#include "Field.h"
#include "DebugField.h"
#include "Gravity.h"
#include "Wind.h"
#include "ObjSystem.h"
#include "SoapBubble.h"
#include "Vortex.h"
#include <iostream>
#include "SimplexNoise.h... |
<commit_before>a3a82351-2e4f-11e5-93af-28cfe91dbc4b<commit_msg>a3b2afb8-2e4f-11e5-8bd6-28cfe91dbc4b<commit_after>a3b2afb8-2e4f-11e5-8bd6-28cfe91dbc4b<|endoftext|> |
<commit_before>/*******************************
Copyright (C) 2013-2014 grégoire ANGERAND
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any late... |
<commit_before>65581954-2fa5-11e5-ba76-00012e3d3f12<commit_msg>655a1524-2fa5-11e5-84bb-00012e3d3f12<commit_after>655a1524-2fa5-11e5-84bb-00012e3d3f12<|endoftext|> |
<commit_before>9721158c-2e4f-11e5-a971-28cfe91dbc4b<commit_msg>972897d9-2e4f-11e5-818f-28cfe91dbc4b<commit_after>972897d9-2e4f-11e5-818f-28cfe91dbc4b<|endoftext|> |
<commit_before>c3ae11c0-4b02-11e5-81be-28cfe9171a43<commit_msg>lets try again<commit_after>c3bc8aa1-4b02-11e5-b309-28cfe9171a43<|endoftext|> |
<commit_before>7e7919ae-2d15-11e5-af21-0401358ea401<commit_msg>7e7919af-2d15-11e5-af21-0401358ea401<commit_after>7e7919af-2d15-11e5-af21-0401358ea401<|endoftext|> |
<commit_before>0dc8cb68-2f67-11e5-a94b-6c40088e03e4<commit_msg>0dcfc834-2f67-11e5-8d28-6c40088e03e4<commit_after>0dcfc834-2f67-11e5-8d28-6c40088e03e4<|endoftext|> |
<commit_before>b41de50a-327f-11e5-80ad-9cf387a8033e<commit_msg>b42401d7-327f-11e5-b92b-9cf387a8033e<commit_after>b42401d7-327f-11e5-b92b-9cf387a8033e<|endoftext|> |
<commit_before>d48f73ee-313a-11e5-ad4c-3c15c2e10482<commit_msg>d4952d40-313a-11e5-8f3f-3c15c2e10482<commit_after>d4952d40-313a-11e5-8f3f-3c15c2e10482<|endoftext|> |
<commit_before>d59ab370-35ca-11e5-a5ec-6c40088e03e4<commit_msg>d5a15918-35ca-11e5-b89d-6c40088e03e4<commit_after>d5a15918-35ca-11e5-b89d-6c40088e03e4<|endoftext|> |
<commit_before>8d6dfce8-2d14-11e5-af21-0401358ea401<commit_msg>8d6dfce9-2d14-11e5-af21-0401358ea401<commit_after>8d6dfce9-2d14-11e5-af21-0401358ea401<|endoftext|> |
<commit_before>81cf0d85-2d15-11e5-af21-0401358ea401<commit_msg>81cf0d86-2d15-11e5-af21-0401358ea401<commit_after>81cf0d86-2d15-11e5-af21-0401358ea401<|endoftext|> |
<commit_before>f6bfe68c-585a-11e5-b809-6c40088e03e4<commit_msg>f6c6e824-585a-11e5-ab58-6c40088e03e4<commit_after>f6c6e824-585a-11e5-ab58-6c40088e03e4<|endoftext|> |
<commit_before>#include "Data/Field.h"
#include <iostream>
int main(int argc, char** argv)
{
if (argc < 2)
{
std::cerr << "Specify field to load on the command line" << std::endl;
getchar();
return 1;
}
// Load the field
std::cout << "Loading field..." << std::endl;
PropertySpace::Field *f... |
<commit_before>34b11b5a-5216-11e5-9059-6c40088e03e4<commit_msg>34b7dc1a-5216-11e5-9e4b-6c40088e03e4<commit_after>34b7dc1a-5216-11e5-9e4b-6c40088e03e4<|endoftext|> |
<commit_before>e46bc007-327f-11e5-af01-9cf387a8033e<commit_msg>e472687a-327f-11e5-bcb6-9cf387a8033e<commit_after>e472687a-327f-11e5-bcb6-9cf387a8033e<|endoftext|> |
<commit_before>3c1859c8-2e3a-11e5-afcf-c03896053bdd<commit_msg>3c2777c8-2e3a-11e5-9780-c03896053bdd<commit_after>3c2777c8-2e3a-11e5-9780-c03896053bdd<|endoftext|> |
<commit_before>de9dfa1e-2e4e-11e5-9198-28cfe91dbc4b<commit_msg>dea45794-2e4e-11e5-b983-28cfe91dbc4b<commit_after>dea45794-2e4e-11e5-b983-28cfe91dbc4b<|endoftext|> |
<commit_before>e73d87e6-585a-11e5-9125-6c40088e03e4<commit_msg>e7442a68-585a-11e5-a5ba-6c40088e03e4<commit_after>e7442a68-585a-11e5-a5ba-6c40088e03e4<|endoftext|> |
<commit_before>e3d35a00-313a-11e5-b86f-3c15c2e10482<commit_msg>e3d9635c-313a-11e5-9a83-3c15c2e10482<commit_after>e3d9635c-313a-11e5-9a83-3c15c2e10482<|endoftext|> |
<commit_before>6752ad8a-5216-11e5-a22e-6c40088e03e4<commit_msg>67591abe-5216-11e5-b1da-6c40088e03e4<commit_after>67591abe-5216-11e5-b1da-6c40088e03e4<|endoftext|> |
<commit_before>bfa192e8-35ca-11e5-a106-6c40088e03e4<commit_msg>bfa90f50-35ca-11e5-9d41-6c40088e03e4<commit_after>bfa90f50-35ca-11e5-9d41-6c40088e03e4<|endoftext|> |
<commit_before>d20a97fa-2e4e-11e5-978a-28cfe91dbc4b<commit_msg>d2118e8c-2e4e-11e5-b6e3-28cfe91dbc4b<commit_after>d2118e8c-2e4e-11e5-b6e3-28cfe91dbc4b<|endoftext|> |
<commit_before>c344ad4a-35ca-11e5-81d1-6c40088e03e4<commit_msg>c34b7314-35ca-11e5-85bb-6c40088e03e4<commit_after>c34b7314-35ca-11e5-85bb-6c40088e03e4<|endoftext|> |
<commit_before>809e9265-2d15-11e5-af21-0401358ea401<commit_msg>809e9266-2d15-11e5-af21-0401358ea401<commit_after>809e9266-2d15-11e5-af21-0401358ea401<|endoftext|> |
<commit_before>37c88a8a-5216-11e5-8234-6c40088e03e4<commit_msg>37cf33b0-5216-11e5-95b8-6c40088e03e4<commit_after>37cf33b0-5216-11e5-95b8-6c40088e03e4<|endoftext|> |
<commit_before>0a2d5197-2748-11e6-befe-e0f84713e7b8<commit_msg>Did a thing<commit_after>0a3f155e-2748-11e6-b260-e0f84713e7b8<|endoftext|> |
<commit_before>#include <iostream>
using namespace std;
int main()
{
cout << "Hey Mel!";
return 0;
}
<commit_msg>Initial changes to triangle meme<commit_after>#include <iostream>
using namespace std;
int main()
{
int size;
char character;
cout << "Enter a size for your triangle";
cin >> size;
cou... |
<commit_before>552fcea8-5216-11e5-8c00-6c40088e03e4<commit_msg>5537d238-5216-11e5-8245-6c40088e03e4<commit_after>5537d238-5216-11e5-8245-6c40088e03e4<|endoftext|> |
<commit_before>9101ada4-2d14-11e5-af21-0401358ea401<commit_msg>9101ada5-2d14-11e5-af21-0401358ea401<commit_after>9101ada5-2d14-11e5-af21-0401358ea401<|endoftext|> |
<commit_before>#include <algorithm>
#include <iostream>
#include <vector>
#include <assert.h>
using namespace std;
class Posibles {
vector<bool> _b;
public:
Posibles() : _b(9, true) {}
bool activo(int v) const { return _b[v-1]; }
void elimina(int v) { _b[v-1] = false; }
int num_activos() const { return count(_b... |
<commit_before>b938d9a1-2e4f-11e5-914d-28cfe91dbc4b<commit_msg>b93f9b3d-2e4f-11e5-bb8a-28cfe91dbc4b<commit_after>b93f9b3d-2e4f-11e5-bb8a-28cfe91dbc4b<|endoftext|> |
<commit_before>20ccd11e-ad58-11e7-8ba4-ac87a332f658<commit_msg>Made changes so it will hopefully compile by the next commit<commit_after>214cd397-ad58-11e7-aeff-ac87a332f658<|endoftext|> |
<commit_before>261a7f2e-2e4f-11e5-a07b-28cfe91dbc4b<commit_msg>2622c633-2e4f-11e5-9b37-28cfe91dbc4b<commit_after>2622c633-2e4f-11e5-9b37-28cfe91dbc4b<|endoftext|> |
<commit_before>92323ada-2d14-11e5-af21-0401358ea401<commit_msg>92323adb-2d14-11e5-af21-0401358ea401<commit_after>92323adb-2d14-11e5-af21-0401358ea401<|endoftext|> |
<commit_before>8cd6bee3-2e4f-11e5-8fdd-28cfe91dbc4b<commit_msg>8cdd2cfa-2e4f-11e5-bd30-28cfe91dbc4b<commit_after>8cdd2cfa-2e4f-11e5-bd30-28cfe91dbc4b<|endoftext|> |
<commit_before>ce76b07d-2e4e-11e5-8dea-28cfe91dbc4b<commit_msg>ce7d57cf-2e4e-11e5-9923-28cfe91dbc4b<commit_after>ce7d57cf-2e4e-11e5-9923-28cfe91dbc4b<|endoftext|> |
<commit_before>74615bd4-2e3a-11e5-bfb5-c03896053bdd<commit_msg>74700558-2e3a-11e5-b795-c03896053bdd<commit_after>74700558-2e3a-11e5-b795-c03896053bdd<|endoftext|> |
<commit_before>//
// Copyright (c) 2008-2013 the Urho3D project.
//
// 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 Software without restriction, including without limitation the rights
// to use, ... |
<commit_before>6795d454-2fa5-11e5-8282-00012e3d3f12<commit_msg>6797f734-2fa5-11e5-bffc-00012e3d3f12<commit_after>6797f734-2fa5-11e5-bffc-00012e3d3f12<|endoftext|> |
<commit_before>bef6e966-327f-11e5-b8a8-9cf387a8033e<commit_msg>befd3821-327f-11e5-a94d-9cf387a8033e<commit_after>befd3821-327f-11e5-a94d-9cf387a8033e<|endoftext|> |
<commit_before>952827f0-2e4f-11e5-8cad-28cfe91dbc4b<commit_msg>952f0391-2e4f-11e5-93c1-28cfe91dbc4b<commit_after>952f0391-2e4f-11e5-93c1-28cfe91dbc4b<|endoftext|> |
<commit_before>e6eb1263-313a-11e5-b35a-3c15c2e10482<commit_msg>e6f0f705-313a-11e5-8d00-3c15c2e10482<commit_after>e6f0f705-313a-11e5-8d00-3c15c2e10482<|endoftext|> |
<commit_before>5bf67344-2d16-11e5-af21-0401358ea401<commit_msg>5bf67345-2d16-11e5-af21-0401358ea401<commit_after>5bf67345-2d16-11e5-af21-0401358ea401<|endoftext|> |
<commit_before>16c5cde3-2e4f-11e5-a81a-28cfe91dbc4b<commit_msg>16cc9942-2e4f-11e5-83b4-28cfe91dbc4b<commit_after>16cc9942-2e4f-11e5-83b4-28cfe91dbc4b<|endoftext|> |
<commit_before>#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <stdarg.h>
#include <getopt.h>
#include <ctype.h>
#include <limits.h>
#include <archive.h>
#include <archive_entry.h>
#include "main.h"
static int LogLevel = Message;
static const char *arg0 = 0;
unsigned int opt_verbosity = 0;
enum... |
<commit_before>2c22bcca-2e4f-11e5-9600-28cfe91dbc4b<commit_msg>2c2a472e-2e4f-11e5-b296-28cfe91dbc4b<commit_after>2c2a472e-2e4f-11e5-b296-28cfe91dbc4b<|endoftext|> |
<commit_before>6c6208f5-2e4f-11e5-8f96-28cfe91dbc4b<commit_msg>6c68ae19-2e4f-11e5-b0fd-28cfe91dbc4b<commit_after>6c68ae19-2e4f-11e5-b0fd-28cfe91dbc4b<|endoftext|> |
<commit_before>#include "chip8.h"
chip8 Chip8;
SDL_Window *window = nullptr;
SDL_Renderer *renderer = nullptr;
static const uint8_t SCREEN_WIDTH = 64;
static const uint8_t SCREEN_HEIGHT = 32;
static const uint8_t PIXEL_SIZE = 12;
// Temporary pixel buffer
uint32_t pixels[2048];
// Chip8 Keypad
uint8... |
<commit_before>8fd04950-2d14-11e5-af21-0401358ea401<commit_msg>8fd04951-2d14-11e5-af21-0401358ea401<commit_after>8fd04951-2d14-11e5-af21-0401358ea401<|endoftext|> |
<commit_before>decceca3-313a-11e5-be43-3c15c2e10482<commit_msg>ded2f114-313a-11e5-ab99-3c15c2e10482<commit_after>ded2f114-313a-11e5-ab99-3c15c2e10482<|endoftext|> |
<commit_before>5c9216e4-5216-11e5-afda-6c40088e03e4<commit_msg>5c98e924-5216-11e5-a0fd-6c40088e03e4<commit_after>5c98e924-5216-11e5-a0fd-6c40088e03e4<|endoftext|> |
<commit_before>2650d4ee-2e3a-11e5-92b8-c03896053bdd<commit_msg>265f7d94-2e3a-11e5-92de-c03896053bdd<commit_after>265f7d94-2e3a-11e5-92de-c03896053bdd<|endoftext|> |
<commit_before>a56927c6-35ca-11e5-a089-6c40088e03e4<commit_msg>a56ffebe-35ca-11e5-8fad-6c40088e03e4<commit_after>a56ffebe-35ca-11e5-8fad-6c40088e03e4<|endoftext|> |
<commit_before>0f1eac73-2748-11e6-b1cb-e0f84713e7b8<commit_msg>I hope I am done<commit_after>0f2a29b5-2748-11e6-95f2-e0f84713e7b8<|endoftext|> |
<commit_before>/* Copyright (C) 2003 MySQL AB
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is d... |
<commit_before>#include <iostream>
#include <vector>
#include <map>
#include <fstream>
#include <string>
#include <iterator>
#include <functional>
#include <algorithm>
#include <sstream>
std::string trim_begin(const std::string& str) {
auto alpha = std::find_if_not(str.begin(), str.end(), ::isspace);
... |
<commit_before>b00978b3-2e4f-11e5-a1fc-28cfe91dbc4b<commit_msg>b0118c3d-2e4f-11e5-963c-28cfe91dbc4b<commit_after>b0118c3d-2e4f-11e5-963c-28cfe91dbc4b<|endoftext|> |
<commit_before>8d6dfdaa-2d14-11e5-af21-0401358ea401<commit_msg>8d6dfdab-2d14-11e5-af21-0401358ea401<commit_after>8d6dfdab-2d14-11e5-af21-0401358ea401<|endoftext|> |
<commit_before>5f2135dc-ad5b-11e7-ad93-ac87a332f658<commit_msg>my cat is cute<commit_after>5fa325e8-ad5b-11e7-b20e-ac87a332f658<|endoftext|> |
<commit_before>f83d067a-585a-11e5-9898-6c40088e03e4<commit_msg>f8439466-585a-11e5-8798-6c40088e03e4<commit_after>f8439466-585a-11e5-8798-6c40088e03e4<|endoftext|> |
<commit_before>afd85d70-327f-11e5-93c1-9cf387a8033e<commit_msg>afdf7bfd-327f-11e5-ab27-9cf387a8033e<commit_after>afdf7bfd-327f-11e5-ab27-9cf387a8033e<|endoftext|> |
<commit_before>9d2d2491-2747-11e6-b62e-e0f84713e7b8<commit_msg>new flies<commit_after>9d3d72c0-2747-11e6-b023-e0f84713e7b8<|endoftext|> |
<commit_before>227508d0-2f67-11e5-ae70-6c40088e03e4<commit_msg>227e3a14-2f67-11e5-a6d9-6c40088e03e4<commit_after>227e3a14-2f67-11e5-a6d9-6c40088e03e4<|endoftext|> |
<commit_before>#include <QCoreApplication>
#include <QObject>
#include <QThread>
#include <QEventLoop>
#include <QDebug>
#include "settings.h"
#include "authorize_update_name.h"
#include "updatenamemain.h"
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
Settings settings;
UpdateNameMain... |
<commit_before>be7f70c5-2e4f-11e5-83da-28cfe91dbc4b<commit_msg>be860e33-2e4f-11e5-bf81-28cfe91dbc4b<commit_after>be860e33-2e4f-11e5-bf81-28cfe91dbc4b<|endoftext|> |
<commit_before>eb477c9c-313a-11e5-bf07-3c15c2e10482<commit_msg>eb4d9ce6-313a-11e5-95a3-3c15c2e10482<commit_after>eb4d9ce6-313a-11e5-95a3-3c15c2e10482<|endoftext|> |
<commit_before>7f6cf62a-2d15-11e5-af21-0401358ea401<commit_msg>7f6cf62b-2d15-11e5-af21-0401358ea401<commit_after>7f6cf62b-2d15-11e5-af21-0401358ea401<|endoftext|> |
<commit_before>84bf3b2e-2e4f-11e5-a797-28cfe91dbc4b<commit_msg>84c5a240-2e4f-11e5-9439-28cfe91dbc4b<commit_after>84c5a240-2e4f-11e5-9439-28cfe91dbc4b<|endoftext|> |
<commit_before>/*
This file is part of cpp-ethereum.
cpp-ethereum is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
cpp-ethereum is dis... |
<commit_before>3611805e-2748-11e6-8097-e0f84713e7b8<commit_msg>add file<commit_after>361f1a33-2748-11e6-9637-e0f84713e7b8<|endoftext|> |
<commit_before>#include <stdio.h>
int main(int argc, char** argv)
{
// Done.
return 0;
}
<commit_msg>first merge<commit_after>#include <stdio.h>
int main(int argc, char** argv)
{
int l_Ret = EXIT_SUCCESS;
// Done.
return 0;
}
<|endoftext|> |
<commit_before>#define FUSE_USE_VERSION 30
#include <fuse.h>
// POSIX
#include <sys/types.h>
#include <sys/stat.h> // mode info
#include <pwd.h> // user id
#include <grp.h> // group id
#include <unistd.h>
#include <time.h>
#include <limits.h> // PATH_MAX
// STL
#include <map>
#include <set>
#include <string>
#include... |
<commit_before>1bc53ce2-2f67-11e5-9525-6c40088e03e4<commit_msg>1bce30f4-2f67-11e5-ae9a-6c40088e03e4<commit_after>1bce30f4-2f67-11e5-ae9a-6c40088e03e4<|endoftext|> |
<commit_before>a233d44f-327f-11e5-b64d-9cf387a8033e<commit_msg>a239c6b8-327f-11e5-8d36-9cf387a8033e<commit_after>a239c6b8-327f-11e5-8d36-9cf387a8033e<|endoftext|> |
<commit_before>/* FILE INFORMATION
File: main.cpp
Authors: Matthew Cole <mcole8@binghamton.edu>
Brian Gracin <bgracin1@binghamton.edu>
Description: Driver for apex-sim. Contains functions controlling simulator high-level behavior.
*/
#include <iostream>
#include <string>
#include "code.h"
#include "cpu.h... |
<commit_before>d93a8d99-4b02-11e5-b288-28cfe9171a43<commit_msg>OKAY this time it should work<commit_after>d945f1f5-4b02-11e5-8d76-28cfe9171a43<|endoftext|> |
<commit_before>ae9adeb3-327f-11e5-8823-9cf387a8033e<commit_msg>aea1d059-327f-11e5-88a8-9cf387a8033e<commit_after>aea1d059-327f-11e5-88a8-9cf387a8033e<|endoftext|> |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.