text stringlengths 54 60.6k |
|---|
<commit_before>/****************************************************************************
** Copyright (c) 2017 Adrian Schneider
**
** 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 witho... |
<commit_before>#define BOOST_TEST_MODULE "test_from_toml"
#ifdef UNITTEST_FRAMEWORK_LIBRARY_EXIST
#include <boost/test/unit_test.hpp>
#else
#define BOOST_TEST_NO_LIB
#include <boost/test/included/unit_test.hpp>
#endif
#include <toml/toml.hpp>
#include <map>
#include <unordered_map>
#include <list>
#include <deque>
BOO... |
<commit_before>// MFEM Example 1
//
// Compile with: make ex1
//
// Sample runs: ex1 -m ../data/square-disc.mesh
// ex1 -m ../data/star.mesh
// ex1 -m ../data/star-mixed.mesh
// ex1 -m ../data/escher.mesh
// ex1 -m ../data/fichera.m... |
<commit_before>// Copyright (c) 2009-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 <boost/assign/list_of.hpp> // for 'map_list_of()'
#include <boost/foreach.hpp>
#include "checkpoints.... |
<commit_before>/*
* Copyright (c) 2016 Fastly, 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 Software without restriction, including without limitation the
* rights to use, copy, modify... |
<commit_before>// Copyright 2016-2020 Google LLC
//
// Use of this source code is governed by an MIT-style
// license that can be found in the LICENSE file or at
// https://opensource.org/licenses/MIT.
#include "message.h"
#include <stddef.h>
#include <algorithm>
#include <memory>
#include <set>
#include <google/pr... |
<commit_before>/*
Copyright (c) 2012 Carsten Burstedde, Donna Calhoun
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>// Copyright 2019 The Marl Authors
//
// 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
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable... |
<commit_before>// Copyright 2018 Global Phasing Ltd.
#include <complex>
// for symmetrize_min and symmetrize_max
bool operator<(const std::complex<float>& a, const std::complex<float>& b) {
return std::norm(a) < std::norm(b);
}
bool operator>(const std::complex<float>& a, const std::complex<float>& b) {
retur... |
<commit_before>#include "command.h"
#include "../CommandHandler.h"
#include "../OptionParser.h"
#include "../TimerManager.h"
/* full name of the command */
CMDNAME("editcom");
/* description of the command */
CMDDESCR("modify a custom command");
/* command usage synopsis */
CMDUSAGE("$editcom [-A on|off] [-a] [-c CD] ... |
<commit_before>/*=====================================================================
QGroundControl Open Source Ground Control Station
(c) 2009, 2010 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
This file is part of the QGROUNDCONTROL project
QGROUNDCONTROL is free software: you can redistribute it ... |
<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: SlsCurrentSlideManager.cxx,v $
*... |
<commit_before>#include <iostream>
#include <unistd.h>
#include "opencv2/core/utility.hpp"
#include "opencv2/imgproc.hpp"
#include "opencv2/imgcodecs.hpp"
#include "opencv2/highgui.hpp"
#include "gk_utils.h"
using namespace std;
using namespace cv;
static void help()
{
cout << endl << "Usage: ./gekon lena.jpg" ... |
<commit_before>// Copyright 2021 Global Phasing Ltd.
#include "gemmi/topo.hpp"
#include "gemmi/placeh.hpp" // for adjust_hydrogen_distances
#include "common.h"
#include <pybind11/stl.h>
#include <pybind11/stl_bind.h>
namespace py = pybind11;
using namespace gemmi;
PYBIND11_MAKE_OPAQUE(std::vector<Topo::Bond>)
PYBI... |
<commit_before>#define CATCH_CONFIG_MAIN
#include "catch/catch.hpp"
#include <iostream>
#include "tangram.h"
#define GLFONTSTASH_IMPLEMENTATION
#include "fontstash/glfontstash.h"
#define ATLAS_WIDTH 512
#define ATLAS_HEIGHT 512
#define TEXT_BUFFER_SIZE 32
#define ID_OVERFLOW_SIZE TEXT_BUFFER_SIZ... |
<commit_before>/*
Hume Library
Copyright (C) 2015 Marshall Clyburn
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; either
version 2.1 of the License, or (at your option) any later ... |
<commit_before>#include <QPainter>
#include <QAbstractEventDispatcher>
#include <QApplication>
#include <QPaintEvent>
#include <QFontMetrics>
#include <QTextStream>
#include <qterm.h>
#include <stdio.h>
#include <QKeyEvent>
#include <QTimer>
#include <sys/select.h>
#include <errno.h>
#ifdef __QNX__
#include <sys/types.... |
<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>/* CUBE demo toolkit by MasterM/Asenses */
#include <stdafx.h>
#include <core/system.h>
#include <core/config.h>
#include <core/ui.h>
#include <utils/notify.h>
#ifdef _DEBUG
#include <assimp/DefaultLogger.hpp>
#endif
using namespace CUBE;
class Core::System* CUBE::System = nullptr;
class Core::Confi... |
<commit_before>#pragma once
#include "config.hpp"
#include <string>
#include <SDL.h>
#undef main
#include "context.hpp"
namespace ORCore
{
class Context;
const Uint32 defaultWindowFlag = SDL_WINDOW_OPENGL | SDL_WINDOW_RESIZABLE;
void init_video();
class Window
{
public:
Window(int ... |
<commit_before>#include "sdk/amxxmodule.h"
#include "curl_class.h"
#include "amx_curl_controller_class.h"
int g_len;
// params[1] CURL handle cell
// params[2] char* url str
// params[3] str ref | escaped url
// params[4] int len cell |
static cell AMX_NATIVE_CALL amx_curl_easy_escape(AMX* amx, cel... |
<commit_before>/*
* Copyright 2011 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
/* Tests text rendering with LCD and subpixel rendering turned on and off.
*/
#include "gm.h"
#include "SkCanvas.h"
class LcdTextGM : public skiagm::GM {
pu... |
<commit_before>#include "commands/commands.h"
#include "config.h"
#include "util/log.h"
#include "interface/interface.h"
#include "config.h"
#include "pb_decode.h"
#include "commands/passthrough_command.h"
#include "commands/diagnostic_request_command.h"
#include "commands/version_command.h"
#include "commands/device... |
<commit_before>/*
* Copyright 2016 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include <algorithm>
#include <cstddef>
#include "SkArenaAlloc.h"
static char* end_chain(char*) { return nullptr; }
char* SkArenaAlloc::SkipPod(char* footerEn... |
<commit_before>#ifndef KEYCODE_HPP
#define KEYCODE_HPP
namespace org_pqrs_KeyRemap4MacBook {
class KeyCode;
class Flags;
class Buttons;
// ======================================================================
class EventType {
public:
EventType(unsigned int v = 0) : value_(v) {}
unsigned int get(... |
<commit_before>#ifndef KEYCODE_HPP
#define KEYCODE_HPP
namespace org_pqrs_KeyRemap4MacBook {
// ======================================================================
class EventType {
public:
EventType(unsigned int v = 0) : value_(v) {}
unsigned int get(void) const { return value_; }
bool operator==... |
<commit_before>/****************************************************************************
**
** Copyright (C) Qxt Foundation. Some rights reserved.
**
** This file is part of the QxtCore module of the Qt eXTension library
**
** This library is free software; you can redistribute it and/or modify it
** under t... |
<commit_before>// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
#include "pal.h"
#include "args.h"
#include "trace.h"
#include "deps_resolver.h"
#include "utils.h"
#include "coreclr.h"
enum Sta... |
<commit_before>/*
* Main.cpp
*
* Copyright (C) 2009-11 by RStudio, Inc.
*
* This program is licensed to you under the terms of version 3 of the
* GNU Affero General Public License. This program is distributed WITHOUT
* ANY EXPRESS OR IMPLIED WARRANTY, INCLUDING THOSE OF NON-INFRINGEMENT,
* MERCHANTABILITY OR FI... |
<commit_before>#include <cstdio>
#include <iostream>
#include <sstream>
#include <libHierGA/HierGA.hpp>
#include "1maxFitness.hpp"
using namespace std;
int main(void) {
HierarchicalEA ea(100);
vector<Locus*> baseLoci(8, new IntLocus(0, 1));
vector<PopulationNode*> bottomNodes;
vector<Locus*> populationLoci;
ea.... |
<commit_before>/**
* \author Allann Jones
*/
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QDebug>
#include <QDir>
#include <QFileDialog>
#include <QMessageBox>
#include <iostream>
MainWindow::MainWindow(QWidget *parent): QMainWindow(parent),
ui(new Ui::MainWindow)
{
currentWatchPath = "";
... |
<commit_before>//* This file is part of the MOOSE framework
//* https://www.mooseframework.org
//*
//* All rights reserved, see COPYRIGHT for full restrictions
//* https://github.com/idaholab/moose/blob/master/COPYRIGHT
//*
//* Licensed under LGPL 2.1, please see LICENSE for details
//* https://www.gnu.org/licenses/lgp... |
<commit_before>// Copyright (c) 2009 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 <sstream>
#include "net/url_request/url_request_view_net_internal_job.h"
#include "base/stl_util-inl.h"
#include "base/strin... |
<commit_before>/** Copyright (C) 2016 European Spallation Source ERIC */
#include <algorithm>
#include <cassert>
#include <common/EFUArgs.h>
#include <common/Trace.h>
#include <cstring>
#include <efu/Parser.h>
#include <efu/Server.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <unistd.h>
//#undef TRC_LEVEL
//#d... |
<commit_before>/** Copyright (C) 2016 European Spallation Source */
#include <cspec/CSPECData.h>
#include <cspecgen/CspecArgs.h>
#include <cstring>
#include <inttypes.h>
#include <iostream>
#include <libs/include/Socket.h>
#include <libs/include/Timer.h>
#include <libs/include/gccintel.h>
#include <unistd.h>
using na... |
<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 distr... |
<commit_before>#include <catch.hpp>
#include <ophidian/parser/Lef.h>
#include <iostream>
using namespace ophidian;
bool operator==(const parser::Lef::site & a, const parser::Lef::site & b)
{
return a.name == b.name &&
a.class_ == b.class_ &&
a.symmetry == b.symmetry &&
Approx(a.x... |
<commit_before>/***************************************************************************
* Copyright (c) 2006 Werner Mayer <wmayer[at]users.sourceforge.net> *
* *
* This file is part of the FreeCAD CAx development system. ... |
<commit_before>/** @file
*
* @ingroup dspSoundFileLib
*
* @brief Tests for the #TTSoundfileLoader class
*
* @details Tests the core functions of the TTSoundfileLoader class in order to ensure that things are working after a build. It also demostrate how to make calls to common methods within the class.@n
* IMPO... |
<commit_before>/** @file
*
* @ingroup dspSoundFileLib
*
* @brief Tests for the #TTSoundfileLoader class
*
* @details Tests the core functions of the TTSoundfileLoader class in order to ensure that things are working after a build. It also demostrate how to make calls to common methods within the class.@n
* IMPO... |
<commit_before>/*
* Copyright 2009-2011 The VOTCA Development Team (http://www.votca.org)
*
* 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/LICENS... |
<commit_before>
#include "qmlscriptparser_p.h"
#include "parser/javascriptengine_p.h"
#include "parser/javascriptparser_p.h"
#include "parser/javascriptlexer_p.h"
#include "parser/javascriptnodepool_p.h"
#include "parser/javascriptastvisitor_p.h"
#include "parser/javascriptast_p.h"
#include "parser/javascriptprettypre... |
<commit_before>//////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2007-2008, Image Engine Design Inc. All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// ... |
<commit_before>/*
Flexisip, a flexible SIP proxy server with media capabilities.
Copyright (C) 2010-2015 Belledonne Communications SARL, All rights reserved.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
publishe... |
<commit_before>/*
KOrganizer Alarm Daemon Client.
This file is part of KOrganizer.
Copyright (c) 2002,2003 Cornelius Schumacher <schumacher@kde.org>
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 ... |
<commit_before>/***************************************************************************
* Copyright (C) 2005,2006,2007 by Siraj Razick <siraj@kdemail.net> *
* Copyright (C) 2007 by Riccardo Iaconelli <ruphy@fsfe.org> *
* Copyright (C) 2007 by Matthias Kretz <kretz@kde.org> ... |
<commit_before>// (C) 2014 Arek Olek
#include <functional>
#include <unordered_map>
#include <boost/functional/hash.hpp>
#include <boost/graph/adjacency_matrix.hpp>
#include "debug.hpp"
namespace detail {
boost::adjacency_matrix<boost::undirectedS> typedef graph;
template <class Input, class Output>
void cop... |
<commit_before>#include "functional.h"
#include "pw9xx.h"
template<class num>
static num energy(const densvars<num> &d)
{
const parameter param_AB[6] =
{ 0.19645, 7.7956, 0.2743, 0.1508, 100.0, 0.004};
using pw91_like_x_internal::prefactor;
using pw91_like_x_internal::pw91xk_enhancement;
return prefactor(... |
<commit_before>#include "gamelib/core/Game.hpp"
#include <SFML/Graphics.hpp>
#include "gamelib/core/GameState.hpp"
#include "gamelib/utils/log.hpp"
#include "gamelib/utils/json.hpp"
#include "gamelib/core/event/EventManager.hpp"
#include "gamelib/events/SFMLEvent.hpp"
#include "gamelib/core/input/InputSystem.hpp"
cons... |
<commit_before>//
// Created by Axel Naumann on 09/12/15.
//
//#include "cling/Interpreter/Jupyter/Kernel.h"
#include "cling/Interpreter/Interpreter.h"
#include "cling/Interpreter/Value.h"
#include <map>
#include <string>
namespace cling {
namespace Jupyter {
struct MIMEDataRef {
const char* m_Data;
... |
<commit_before>5838dac2-5216-11e5-9493-6c40088e03e4<commit_msg>583fc1ca-5216-11e5-921f-6c40088e03e4<commit_after>583fc1ca-5216-11e5-921f-6c40088e03e4<|endoftext|> |
<commit_before>6b383b61-2e4f-11e5-8a2b-28cfe91dbc4b<commit_msg>6b400d42-2e4f-11e5-a62c-28cfe91dbc4b<commit_after>6b400d42-2e4f-11e5-a62c-28cfe91dbc4b<|endoftext|> |
<commit_before>8b332515-2d14-11e5-af21-0401358ea401<commit_msg>8b332516-2d14-11e5-af21-0401358ea401<commit_after>8b332516-2d14-11e5-af21-0401358ea401<|endoftext|> |
<commit_before>2a5c837d-2d3d-11e5-ab6c-c82a142b6f9b<commit_msg>2ac11d8c-2d3d-11e5-a466-c82a142b6f9b<commit_after>2ac11d8c-2d3d-11e5-a466-c82a142b6f9b<|endoftext|> |
<commit_before>965387de-2e4f-11e5-a18b-28cfe91dbc4b<commit_msg>965ab2de-2e4f-11e5-9549-28cfe91dbc4b<commit_after>965ab2de-2e4f-11e5-9549-28cfe91dbc4b<|endoftext|> |
<commit_before>48dd4175-ad59-11e7-b5ea-ac87a332f658<commit_msg>Hey we can now do a thing<commit_after>4a34bdb8-ad59-11e7-b3dd-ac87a332f658<|endoftext|> |
<commit_before>782ff668-2d53-11e5-baeb-247703a38240<commit_msg>7830750c-2d53-11e5-baeb-247703a38240<commit_after>7830750c-2d53-11e5-baeb-247703a38240<|endoftext|> |
<commit_before>e8a58e08-585a-11e5-9239-6c40088e03e4<commit_msg>e8ac6b2e-585a-11e5-8243-6c40088e03e4<commit_after>e8ac6b2e-585a-11e5-8243-6c40088e03e4<|endoftext|> |
<commit_before>99656ff8-327f-11e5-ae23-9cf387a8033e<commit_msg>996c6311-327f-11e5-b814-9cf387a8033e<commit_after>996c6311-327f-11e5-b814-9cf387a8033e<|endoftext|> |
<commit_before>9f2645a4-35ca-11e5-b16f-6c40088e03e4<commit_msg>9f2d3a76-35ca-11e5-8252-6c40088e03e4<commit_after>9f2d3a76-35ca-11e5-8252-6c40088e03e4<|endoftext|> |
<commit_before>fa3c13f3-2e4e-11e5-9d74-28cfe91dbc4b<commit_msg>fa48237d-2e4e-11e5-a7c7-28cfe91dbc4b<commit_after>fa48237d-2e4e-11e5-a7c7-28cfe91dbc4b<|endoftext|> |
<commit_before>e2a81e8c-2747-11e6-a6c8-e0f84713e7b8<commit_msg>bug fix<commit_after>e2bdf3f5-2747-11e6-af2f-e0f84713e7b8<|endoftext|> |
<commit_before>#include <QCoreApplication>
#include <QDomDocument>
#include <QStringList>
#include <QFile>
#include <QDir>
#include <iostream>
#include "protocolparser.h"
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
int Return = 1;
bool nodoxygen = false;
bool nomarkdown = false;
... |
<commit_before>27f8a705-2d3e-11e5-a1f0-c82a142b6f9b<commit_msg>286ee57d-2d3e-11e5-8367-c82a142b6f9b<commit_after>286ee57d-2d3e-11e5-8367-c82a142b6f9b<|endoftext|> |
<commit_before>1355f973-2d3d-11e5-bbb6-c82a142b6f9b<commit_msg>13e6baca-2d3d-11e5-86db-c82a142b6f9b<commit_after>13e6baca-2d3d-11e5-86db-c82a142b6f9b<|endoftext|> |
<commit_before>e4c34933-313a-11e5-a05f-3c15c2e10482<commit_msg>e4c96511-313a-11e5-82c2-3c15c2e10482<commit_after>e4c96511-313a-11e5-82c2-3c15c2e10482<|endoftext|> |
<commit_before>a896dcc0-2e4f-11e5-b75c-28cfe91dbc4b<commit_msg>a89d2878-2e4f-11e5-ad54-28cfe91dbc4b<commit_after>a89d2878-2e4f-11e5-ad54-28cfe91dbc4b<|endoftext|> |
<commit_before>98035919-327f-11e5-a757-9cf387a8033e<commit_msg>980b887d-327f-11e5-bdb7-9cf387a8033e<commit_after>980b887d-327f-11e5-bdb7-9cf387a8033e<|endoftext|> |
<commit_before>#include <iostream>
#include <boost/tokenizer.hpp>
#include <string>
#include <unistd.h>
#include <stdio.h>
#include <sys/wait.h>
#include <sys/types.h>
#include <stdlib.h>
#include <vector>
using namespace std;
using namespace boost;
//function used to seperate commands
void parseconnect(vector< vecto... |
<commit_before>//--------------------------------------------------------------------------------------
// Copyright 2015 Intel Corporation
// All Rights Reserved
//
// Permission is granted to use, copy, distribute and prepare derivative works of this
// software for any purpose and without fee, provided, that th... |
<commit_before>77a38e8a-2d53-11e5-baeb-247703a38240<commit_msg>77a40f9a-2d53-11e5-baeb-247703a38240<commit_after>77a40f9a-2d53-11e5-baeb-247703a38240<|endoftext|> |
<commit_before>ffc243f6-585a-11e5-9dfa-6c40088e03e4<commit_msg>ffc8a306-585a-11e5-85d3-6c40088e03e4<commit_after>ffc8a306-585a-11e5-85d3-6c40088e03e4<|endoftext|> |
<commit_before>f18021c8-585a-11e5-ae03-6c40088e03e4<commit_msg>f1876a98-585a-11e5-8a0b-6c40088e03e4<commit_after>f1876a98-585a-11e5-8a0b-6c40088e03e4<|endoftext|> |
<commit_before>#pragma once
#include <vector>
#include <set>
#include <memory>
#include <utility>
#include <atomic>
#include <mutex>
#include <thread>
#include <functional>
namespace audio_io {
/**A physical output.*/
class OutputDevice {
};
class OutputDeviceFactory {
public:
DeviceFactory() = default;
virtual ~... |
<commit_before>761c6730-2d53-11e5-baeb-247703a38240<commit_msg>761ce9bc-2d53-11e5-baeb-247703a38240<commit_after>761ce9bc-2d53-11e5-baeb-247703a38240<|endoftext|> |
<commit_before>77067942-2d53-11e5-baeb-247703a38240<commit_msg>77070222-2d53-11e5-baeb-247703a38240<commit_after>77070222-2d53-11e5-baeb-247703a38240<|endoftext|> |
<commit_before>#pragma once
/*
* Covariant Script Version Info
*
* 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 applicable... |
<commit_before>8e9fac42-2d14-11e5-af21-0401358ea401<commit_msg>8e9fac43-2d14-11e5-af21-0401358ea401<commit_after>8e9fac43-2d14-11e5-af21-0401358ea401<|endoftext|> |
<commit_before>aeea4435-327f-11e5-8384-9cf387a8033e<commit_msg>aef1fd3d-327f-11e5-8456-9cf387a8033e<commit_after>aef1fd3d-327f-11e5-8456-9cf387a8033e<|endoftext|> |
<commit_before>7c411321-2e4f-11e5-81ed-28cfe91dbc4b<commit_msg>7c48d2c2-2e4f-11e5-9a0d-28cfe91dbc4b<commit_after>7c48d2c2-2e4f-11e5-9a0d-28cfe91dbc4b<|endoftext|> |
<commit_before>//=======================================================================
// Copyright (c) 2014-2016 Baptiste Wicht
// Distributed under the terms of the MIT License.
// (See accompanying file LICENSE or copy at
// http://opensource.org/licenses/MIT)
//===================================================... |
<commit_before>c650c3a8-2e4e-11e5-a1aa-28cfe91dbc4b<commit_msg>c658f9e1-2e4e-11e5-8cb3-28cfe91dbc4b<commit_after>c658f9e1-2e4e-11e5-8cb3-28cfe91dbc4b<|endoftext|> |
<commit_before>ecb1e86b-327f-11e5-b461-9cf387a8033e<commit_msg>ecb83257-327f-11e5-bc76-9cf387a8033e<commit_after>ecb83257-327f-11e5-bc76-9cf387a8033e<|endoftext|> |
<commit_before>fefce8ec-585a-11e5-9314-6c40088e03e4<commit_msg>ff03d81c-585a-11e5-ab9e-6c40088e03e4<commit_after>ff03d81c-585a-11e5-ab9e-6c40088e03e4<|endoftext|> |
<commit_before>4c18c575-2e4f-11e5-a94d-28cfe91dbc4b<commit_msg>4c1fa4c2-2e4f-11e5-9573-28cfe91dbc4b<commit_after>4c1fa4c2-2e4f-11e5-9573-28cfe91dbc4b<|endoftext|> |
<commit_before>8fd04917-2d14-11e5-af21-0401358ea401<commit_msg>8fd04918-2d14-11e5-af21-0401358ea401<commit_after>8fd04918-2d14-11e5-af21-0401358ea401<|endoftext|> |
<commit_before>13c2af02-2e4f-11e5-bc30-28cfe91dbc4b<commit_msg>13ca5447-2e4f-11e5-9f85-28cfe91dbc4b<commit_after>13ca5447-2e4f-11e5-9f85-28cfe91dbc4b<|endoftext|> |
<commit_before>/*
checkver.cpp
ઠ ॣ樨
*/
/* Revision: 1.03 30.03.2001 $ */
/*
Modify:
30.03.2001 SVS
! ... 砫 ⮣, 㦭 뫮 ਫ ப
室... 稫 ⠪ ᧢ "xUSSR ॣ"
:-)
21.02.2001 IS
! Opt.TabSize -> Opt.EdOpt.TabSize
11.07.2000 SVS
! 樨 BC & VC
25.06.2000 SVS
! ⮢ Master Copy
! 뤥 ⢥ ᠬ... |
<commit_before>77d1ce26-2d53-11e5-baeb-247703a38240<commit_msg>77d25274-2d53-11e5-baeb-247703a38240<commit_after>77d25274-2d53-11e5-baeb-247703a38240<|endoftext|> |
<commit_before>ca1a746e-2747-11e6-aeea-e0f84713e7b8<commit_msg>updated some files<commit_after>ca24c770-2747-11e6-be34-e0f84713e7b8<|endoftext|> |
<commit_before>062b04e6-2748-11e6-8dcc-e0f84713e7b8<commit_msg>NO CHANGES<commit_after>065b246e-2748-11e6-bc09-e0f84713e7b8<|endoftext|> |
<commit_before>8fd04949-2d14-11e5-af21-0401358ea401<commit_msg>8fd0494a-2d14-11e5-af21-0401358ea401<commit_after>8fd0494a-2d14-11e5-af21-0401358ea401<|endoftext|> |
<commit_before>f2bb9a6e-327f-11e5-8cf0-9cf387a8033e<commit_msg>f2c19735-327f-11e5-89ca-9cf387a8033e<commit_after>f2c19735-327f-11e5-89ca-9cf387a8033e<|endoftext|> |
<commit_before>/*
Copyright (c) 2005, Arvid Norberg
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 of condi... |
<commit_before>e7ac2ab8-2e4e-11e5-b334-28cfe91dbc4b<commit_msg>e7b5bd00-2e4e-11e5-8f9e-28cfe91dbc4b<commit_after>e7b5bd00-2e4e-11e5-8f9e-28cfe91dbc4b<|endoftext|> |
<commit_before>/*
Copyright (c) 2005, Arvid Norberg
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 of condi... |
<commit_before>/*
Copyright (c) 2005, Arvid Norberg
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 of condi... |
<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: urlparameter.hxx,v $
* $Revision... |
<commit_before>bbfda74c-327f-11e5-9ac2-9cf387a8033e<commit_msg>bc0353eb-327f-11e5-900c-9cf387a8033e<commit_after>bc0353eb-327f-11e5-900c-9cf387a8033e<|endoftext|> |
<commit_before>/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: XMLIndexSourceBaseContext.hxx,v $
*
* $Revision: 1.8 $
*
* last change: $Author: rt $ $Date: 2005-09-09 15:08:10 $
*
* The Contents of th... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.