text
stringlengths
54
60.6k
<commit_before> // // This source file is part of appleseed. // Visit http://appleseedhq.net/ for additional information and resources. // // This software is released under the MIT license. // // Copyright (c) 2010-2013 Francois Beaune, Jupiter Jazz Limited // Copyright (c) 2014-2017 Francois Beaune, The appleseedhq O...
<commit_before>/** * Copyright (C) 2015 Virgil Security Inc. * * Lead Maintainer: Virgil Security Inc. <support@virgilsecurity.com> * * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * ...
<commit_before>/* bzflag * Copyright (c) 1993 - 2003 Tim Riker * * This package is free software; you can redistribute it and/or * modify it under the terms of the license found in the file * named LICENSE that should have accompanied this file. * * THIS PACKAGE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR ...
<commit_before>#include "condor_common.h" #include <sys/socket.h> #include <netinet/in.h> #if !defined(LINUX) && !defined(HPUX9) #include <sys/select.h> #endif #include "condor_types.h" #include "condor_debug.h" #include "condor_expressions.h" #include "condor_mach_status.h" #include "condor_attributes.h" #include "s...
<commit_before>/* Copyright (c) 2014, Madd Games. 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 conditio...
<commit_before>#include "../../../inc/slib/core/definition.h" #if defined(SLIB_PLATFORM_IS_ANDROID) #include "../../../inc/slib/ui/core.h" #include "../../../inc/slib/ui/screen.h" #include "../../../inc/slib/ui/platform.h" #include "../../../inc/slib/ui/mobile_app.h" #include "../../../inc/slib/core/map.h" #include ...
<commit_before>// // EmiPacketHeader.cc // rock // // Created by Per Eckerdal on 2012-05-10. // Copyright (c) 2012 __MyCompanyName__. All rights reserved. // #include "EmiPacketHeader.h" #include "EmiNetUtil.h" #include <cstring> #include <algorithm> inline static void extractFlagsAndSize(EmiPacketFlags flags, ...
<commit_before><commit_msg>GraphicManager: fix crash when swapping out graphics<commit_after><|endoftext|>
<commit_before><commit_msg>fdo#38635: sw: fix border corner gaps:<commit_after><|endoftext|>
<commit_before><commit_msg>During sensor search only check data of joining device for resource creation<commit_after><|endoftext|>
<commit_before><commit_msg>Filter REST API plugin network interfaces to not include virtual and loopback interface<commit_after><|endoftext|>
<commit_before>#include "SwiftExtractor.h" #include <filesystem> #include <fstream> #include <iostream> #include <sstream> #include <memory> #include <unistd.h> #include <unordered_set> #include <swift/AST/SourceFile.h> #include <swift/Basic/FileTypes.h> #include <llvm/ADT/SmallString.h> #include <llvm/Support/FileSy...
<commit_before><commit_msg>UPDATE moved reflection cubmap subresource init to be independent to static shadows<commit_after><|endoftext|>
<commit_before>/* Copyright 2015-2018 Egor Yusov * * 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 * * THE SOFTWARE IS PROVIDED "AS IS...
<commit_before>/* -------------------------------------------------------------------------- * * Simbody(tm): SimTKmath * * -------------------------------------------------------------------------- * * This is part of the SimTK biosimulation toolkit originating fr...
<commit_before>/* * Copyright (c) 2012 Bernhard Firner and Rutgers University * 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; either version 2 * of the License, o...
<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>/* The MIT License (MIT) Copyright (c) 2016 Liav Turkia and Shahar Sandhaus 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 ri...
<commit_before>/* * Copyright (c) 2011 The WebRTC 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....
<commit_before>#include <iostream> #include <vector> using namespace std; template <typename T> class HeapSort { // make A[root] the max value of the subtree void heapify(vector<T> &A, int root, int end) { int max_val_idx = root; int left = 2 * root + 1, right = left + 1; if (left < e...
<commit_before>/* HarwareSerial.cpp - Hardware serial library for Wiring Copyright (c) 2006 Nicholas Zambetti. All right reserved. 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 <red_black_tree.hpp> #include <catch.hpp> SCENARIO("default constructor") { RedBlackTree<int> rbt; REQUIRE(rbt._root() == rbt._NIL()); } SCENARIO("insert") { RedBlackTree<int> rbt; rbt.insert(5); REQUIRE(rbt.findElement(5) != 0); } SCENARIO("insert2", "[init]") { RedBlackTree<int> ...
<commit_before>#include <binary_search_tree.hpp> #include <catch.hpp> SCENARIO("default constructor") { BinarySearchTree<int> bst; REQUIRE(bst.root() == nullptr); REQUIRE(bst.count() == 0); } <commit_msg>Update init.cpp<commit_after>#include <binary_search_tree.hpp> #include <catch.hpp> SCENARIO("default constru...
<commit_before>// Copyright (c) 2019 Intel Corporation // // 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, modi...
<commit_before>/* Copyright 2018 The TensorFlow 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 the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appl...
<commit_before>#ifndef SMARTPOINTERS_HPP_ #define SMARTPOINTERS_HPP_ #define NOMINMAX // Removes windows min and max macros #include <boost/shared_ptr.hpp> #include <boost/weak_ptr.hpp> #include "FAST/Exception.hpp" #include "FAST/Reporter.hpp" #include "FAST/Paths.hpp" #define FAST_OBJECT(className) ...
<commit_before>// // Copyright (c) 2017 The nanoFramework project contributors // Portions Copyright (c) Microsoft Corporation. All rights reserved. // See LICENSE file in the project root for full license information. // #include <string.h> #include <targetPAL.h> #include "win_dev_i2c_native.h" #include "Esp32_Devic...
<commit_before>/* Copyright (C) 2003-2010 Egon Wanke <blitzortung@gmx.org> Copyright (C) 2010 Andreas Würl <awuerl@gmx.net> */ #include <iostream> #include <string> #include <boost/program_options.hpp> #include "namespaces.h" #include "hardware/comm/SerialPort.h" #include "hardware/comm/Serial.h" ...
<commit_before>#include "StatScreen.h" #include "RenderTarget.h" #include "RenderContext.h" #include "gum/StringHelper.h" #include <gimg_typedef.h> #include <gimg_export.h> #include <unirender/UR_RenderContext.h> #include <dtex2/DebugDraw.h> #include <time.h> namespace gum { SINGLETON_DEFINITION(StatScreen); StatS...
<commit_before>#include <efsw/FileWatcherWin32.hpp> #include <efsw/FileSystem.hpp> #include <efsw/System.hpp> #if EFSW_PLATFORM == EFSW_PLATFORM_WIN32 namespace efsw { FileWatcherWin32::FileWatcherWin32( FileWatcher * parent ) : FileWatcherImpl( parent ), mLastWatchID(0), mThread( NULL ) { mInitOK ...
<commit_before>/* *Copyright (c) 2013-2013, yinqiwen <yinqiwen@gmail.com> *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 copyrigh...
<commit_before>// RUN: cat %s | %cling | FileCheck %s // This test makes sure the interpreter doesn't create many useless empty // transactions. // Author: Vassil Vassilev #include "cling/Interpreter/Interpreter.h" #include "cling/Interpreter/Transaction.h" #include "clang/AST/Decl.h" #include <stdio.h> .rawInput...
<commit_before>/** * Copyright (c) 2016 zScale Technology GmbH <legal@zscale.io> * Authors: * - Paul Asmuth <paul@zscale.io> * - Laura Schlimmer <laura@zscale.io> * * This program is free software: you can redistribute it and/or modify it under * the terms of the GNU Affero General Public License ("the licen...
<commit_before>//===--- CaptureTracking.cpp - Determine whether a pointer is captured ----===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------...
<commit_before> // STL includes #include <csignal> #include <iomanip> // QT includes #include <QImage> // getoptPlusPLus includes #include <getoptPlusPlus/getoptpp.h> // Dispmanx grabber includes #include <grabber/dispmanx/DispmanxFrameGrabber.h> using namespace vlofgren; static bool running = true; void signal_h...
<commit_before>/*========================================================================= Program: Insight Segmentation & Registration Toolkit Module: itkObjectFactoryBase.cxx Language: C++ Date: $Date$ Version: $Revision$ Copyright (c) 2000 National Library of Medicine All rights reserve...
<commit_before> /* * Copyright 2010 Google Inc. * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #include "GrBufferAllocPool.h" #include "GrTypes.h" #include "GrVertexBuffer.h" #include "GrIndexBuffer.h" #include "GrGpu.h" #if GR_DEBUG #define VALIDA...
<commit_before>/*! * \file painter_dashed_stroke_shader_set.hpp * \brief file painter_dashed_stroke_shader_set.hpp * * Copyright 2016 by Intel. * * Contact: kevin.rogovin@intel.com * * 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 distrib...
<commit_before>/* opendatacon * * Copyright (c) 2020: * * DCrip3fJguWgVCLrZFfA7sIGgvx1Ou3fHfCxnrz4svAi * yxeOtDhDCXf1Z4ApgXvX5ahqQmzRfJ2DoX8S05SqHA== * * 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 ...
<commit_before>/* * File: ExponentiallyDecaying.hpp * Part of commonpp. * * Distributed under the 2-clause BSD licence (See LICENCE.TXT file at the * project root). * * Copyright (c) 2015 Thomas Sanchez. All rights reserved. * */ #pragma once #include <algorithm> #include <random> #include <chrono> #include ...
<commit_before>#ifndef VIRTUALROBOT_CPP #define VIRTUALROBOT_CPP #include <stdlib.h> #include <stdio.h> #include <GL/gl.h> #include <string.h> extern "C" { #include "logic/Robot.h" #include "logic/MazeAlgorithm.h" #include "logic/MazeMap.h" } #include "VirtualRobot.h" #include "Display.h" VirtualRobot::VirtualRo...
<commit_before>// // open horizon -- undefined_darkness@outlook.com // #include "shared.h" #include "memory/memory_reader.h" #include "memory/tmp_buffer.h" #include <assert.h> namespace shared { //------------------------------------------------------------ namespace { std::map<unsigned int,nya_scene::texture> ...
<commit_before><commit_msg>Update CF471A<commit_after><|endoftext|>
<commit_before>/**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). ** All rights reserved. ** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the QtGui module of the Qt Toolkit. ** ** $QT_BEGIN_LI...
<commit_before>/*========================================================================= Program: Medical Imaging & Interaction Toolkit Module: $RCSfile$ Language: C++ Date: $Date$ Version: $Revision$ Copyright (c) German Cancer Research Center, Division of Medical and Biological Informatics. All right...
<commit_before>/* * SurveySessionImplementation.cpp * * Created on: May 22, 2012 * Author: Kyle */ #include "server/zone/objects/player/sessions/survey/SurveySession.h" #include "server/zone/Zone.h" #include "server/zone/managers/player/PlayerManager.h" #include "server/zone/managers/resource/ResourceManage...
<commit_before>#include "mitkImageMapper2D.h" //#include "mitkRenderWindow.h" #include "widget.h" #include "picimage.h" #include "pic2vtk.h" #include "mitkPlaneGeometry.h" #include "mitkBaseRenderer.h" #include "mitkDataTreeNode.h" #include "mitkLookupTableProperty.h" #include "mitkBoolProperty.h" #include "mitkLevelW...
<commit_before>// Copyright 2013 Velodyne Acoustics, 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.org/licenses/LICENSE-2.0 // // Unless required by app...
<commit_before>// $Id$ // -*-C++-*- // * BeginRiceCopyright ***************************************************** // // Copyright ((c)) 2002, Rice University // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following con...
<commit_before>///////////////////////////////////////////////////////////////////////// // $Id$ ///////////////////////////////////////////////////////////////////////// // // Copyright (C) 2001 MandrakeSoft S.A. // // MandrakeSoft S.A. // 43, rue d'Aboukir // 75002 Paris - France // http://www.linux-man...
<commit_before>/* * VerifyNoOtherInvocationsVerificationProgress.hpp * Copyright (c) 2014 Eran Pe'er. * * This program is made available under the terms of the MIT License. * * Created on Jul 21, 2014 */ #ifndef VerifyNoOtherInvocationsVerificationProgress_hpp_ #define VerifyNoOtherInvocationsVerificationProgre...
<commit_before>/* * Copyright (c) 2001-2004 The Regents of The University of Michigan * 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 c...
<commit_before>//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===-------------------------...
<commit_before>//--------------------------------------------------------------------*- C++ -*- // CLING - the C++ LLVM-based InterpreterG :) // author: Elisavet Sakellari <elisavet.sakellari@cern.ch> // // This file is dual-licensed: you can choose to license it under the University // of Illinois Open Source License...
<commit_before>/*========================================================================= Program: Visualization Toolkit Module: vtkWin32OutputWindow.cxx Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen All rights reserved. See Copyright.txt or http://www.kitware.com/Copyright.htm for details. ...
<commit_before>/* IBM_PROLOG_BEGIN_TAG */ /* This is an automatically generated prolog. */ /* */ /* $Source: src/import/chips/p9a/procedures/hwp/memory/p9a_mss_eff_config_...
<commit_before> #include "typedatabase.h" #include "../customtypes.h" #include <QDebug> #include <qfile.h> #include <qxml.h> #include "handler.h" #include "../reporthandler.h" static void addRemoveFunctionToTemplates(TypeDatabase *db); TypeDatabase::TypeDatabase() : m_suppressWarnings(true), m_includeEclipseWarning...
<commit_before>#include "text_element.hpp" #include "screen.hpp" #include "resource_cache.hpp" #include "resource_manager.hpp" #include "overlay_renderer.hpp" #include "glyph.hpp" #include "resource.hpp" #include "../base/logging.hpp" namespace graphics { TextElement::TextElement(Params const & p) : OverlayElem...
<commit_before>// // libavg - Media Playback Engine. // Copyright (C) 2003-2008 Ulrich von Zadow // // 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 of the Li...
<commit_before>/** ****************************************************************************** * Xenia : Xbox 360 Emulator Research Project * ****************************************************************************** * Copyright 2013 Ben Vanik. All rights reserved. ...
<commit_before>/** * Copyright (c) 2015 - The CM Authors <legal@clickmatcher.com> * All Rights Reserved. * * This file is CONFIDENTIAL -- Distribution or duplication of this material or * the information contained herein is strictly forbidden unless prior written * permission is obtained. */ #include <unistd.h...
<commit_before>#include "SolverModule.h" using namespace std; /** * Constructor for SolverModule. * * The solver module holds a WaveSolver object and contains all the accessor methods related to it. * The Solvermodule starts off being stored online in the DatabaseRef singleton class, but is passed * to other con...
<commit_before>/* * Copyright (c) 2015 The WebRTC 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....
<commit_before>/* libs/graphics/images/SkImageDecoder.cpp ** ** Copyright 2006, The Android Open Source Project ** ** 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.apa...
<commit_before>//Copyright (c) 2021 Ultimaker B.V. //CuraEngine is released under the terms of the AGPLv3 or higher. #include "LightningLayer.h" #include "LightningTree.h" #include "../sliceDataStorage.h" #include "../utils/linearAlg2D.h" #include "../utils/SVG.h" #include "../utils/SparsePointGridInclusive.h" usin...
<commit_before>/*------------------------------------------------------------------------------ Copyright (c) 2004 Media Development Loan Fund This file is part of the LiveSupport project. http://livesupport.campware.org/ To report bugs, send an e-mail to bugs@campware.org LiveSupport is free s...
<commit_before>/********************************************************************** * Copyright (c) 2013-2014 Red Hat, Inc. * * Developed by Daynix Computing LTD. * * Authors: * Dmitry Fleytman <dmitry@daynix.com> * Pavel Gurvich <pavel@daynix.com> * * Licensed under the Apache License, Version 2.0 (the "Li...
<commit_before>// Copyright (c) 2011 - 2015, GS Group, https://github.com/GSGroup // Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, // provided that the above copyright notice and this permission notice appear in all copies. // THE SOFTWARE IS PRO...
<commit_before>// // Copyright (c) 2014 Christoph Malek // See LICENSE for more information. // #ifndef TWSM_SERVER_BROWSER #define TWSM_SERVER_BROWSER #include "ui_main_window.h" #include <mlk/log/log.h> #include <mlk/time/simple_timer.h> #include <twl/network/network.hpp> #include <QObject> #include <QTableWidg...
<commit_before>#ifndef ENTT_ENTITY_COMPONENT_HPP #define ENTT_ENTITY_COMPONENT_HPP #include <type_traits> #include "../config/config.h" namespace entt { /*! @brief Commonly used default traits for all types. */ struct basic_component_traits { /*! @brief Pointer stability, default is `std::false_type`. */ ...
<commit_before>#ifndef SILICIUM_REACTIVE_COROUTINE_HPP #define SILICIUM_REACTIVE_COROUTINE_HPP #include <silicium/exchange.hpp> #include <silicium/yield_context.hpp> #include <silicium/fast_variant.hpp> #include <boost/coroutine/all.hpp> namespace Si { namespace detail { template <class Element> struct result ...
<commit_before>/** * Copyright (c) 2016 DeepCortex GmbH <legal@eventql.io> * Authors: * - Laura Schlimmer <laura@eventql.io> * * This program is free software: you can redistribute it and/or modify it under * the terms of the GNU Affero General Public License ("the license") as * published by the Free Software...
<commit_before>/* * OCB Mode * (C) 2013 Jack Lloyd * * Distributed under the terms of the Botan license */ #include <botan/ocb.h> #include <botan/cmac.h> #include <botan/internal/xor_buf.h> #include <botan/internal/bit_ops.h> #include <algorithm> #include <botan/hex.h> #include <iostream> namespace Botan { // Has t...
<commit_before>/****************************************************************/ /* PIKA - Phase field snow micro-structure model */ /* */ /* Prepared by Battelle Energy Alliance, LLC */ /* Under Contract No. DE-A...
<commit_before>#include "gboost.h" #include "solver.h" #include "core/tpool.h" #include "core/logger.h" #include "gboost_stump.h" #include "core/ibstream.h" #include "core/obstream.h" using namespace nano; static auto measure(const task_t& task, const fold_t& fold, const tensor4d_t& outputs, const loss_t& loss) { ...
<commit_before>#include "Transports/AddressFactory.hpp" #include "Utils/Logging.hpp" #include "Settings.hpp" using Dissent::Utils::Logging; namespace Dissent { namespace Applications { Settings::Settings(const QString &file, bool actions) : _use_file(true), _settings(new QSettings(file, QSettings::IniForma...
<commit_before>/// /// @file /// @copyright Copyright (C) 2017, Jonathan Bryan Schmalhofer /// /// @brief Node to cyclically publish buffered PNG images /// #include <string> #include <ros/ros.h> #include <image_transport/image_transport.h> sensor_msgs::Image airsim_image_left_msg, airsim_image_right_msg; int main(in...
<commit_before>#include "Common.h" #include "CacheAdapters/LevelDB.h" #include "SSEConfig.h" #include "SSEEvent.h" using namespace std; /** Constructor. @param config SSEChannelConfig. **/ LevelDB::LevelDB(const ChannelConfig& config) : _config(config) { const string cachefile = _config.server->GetValue("leveld...
<commit_before>#include "slider.h" #include "qdebug.h" Slider::Slider(QWidget * parent) : QSlider(parent) { setStyleSheet(QString( "QSlider::groove {" "border: 1px solid #bbb;" ...
<commit_before>#include "overlap.h" using namespace annis; Overlap::Overlap(DB &db, AnnotationIterator &left, AnnotationIterator &right) : left(left), rightAnnotation(right.getAnnotation()), db(db), edbLeft(db.getEdgeDB(ComponentType::LEFT_TOKEN, annis_ns, "")), edbRight(db.getEdgeDB(ComponentType::RIGHT_TO...
<commit_before>// *************************************************************************** // // Generated automatically by genwrapper. // Please DO NOT EDIT this file! // // *************************************************************************** #include <osgIntrospection/ReflectionMacros> #include <osgInt...
<commit_before>/* This file is part of the KDE project. Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). Copyright (C) 2008 Matthias Kretz <kretz@kde.org> This library is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License ...
<commit_before>/* * * Copyright (c) 2021 Project CHIP 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 * * http://www.apache.org/licenses/LICENSE-2.0 * * ...
<commit_before>/* This file is part of the KDE project. Copyright (C) 2007 Trolltech ASA. All rights reserved. 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 ...
<commit_before>/************************************************************************** ** ** Copyright (C) 2015 Denis Mingulov ** Contact: http://www.qt.io/licensing ** ** This file is part of Qt Creator. ** ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accord...
<commit_before>/* * Copyright (C) 2019 The Android Open Source Project * * 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 ...
<commit_before>#include <cstdlib> #include <cassert> #include "api-loader.h" #include "pointers.h" #include <string> #include <vector> #include <stdexcept> #ifdef USE_DETOURS #include "detours/detours.h" #endif #ifdef USE_MHOOK #include "mhook/mhook-lib/mhook.h" #endif #include "gl-wrappers.h" ...
<commit_before>/* Copyright (c) 2009-2011 Sony Pictures Imageworks Inc., et al. 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, ...
<commit_before>#include <list> #include <sstream> #include <stdexcept> #include <string> #include <typeinfo> #include <dbxml/DbXml.hpp> #include <AlpinoCorpus/CorpusReader.hh> #include <AlpinoCorpus/Error.hh> #include <AlpinoCorpus/IterImpl.hh> #include "DbCorpusReaderPrivate.hh" #include "util/url.hh" namespace db...
<commit_before> // Copyright (c) 2015 Pierre MOULON. // 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 "openMVG/sfm/sfm.hpp" #include "openMVG/image/image.hp...
<commit_before>#include "BootConfig.hpp" using namespace HomieInternals; BootConfig::BootConfig() : Boot("config") , _http(80) , _ssid_count(0) , _last_wifi_scan(0) , _last_wifi_scan_ended(true) , _flagged_for_reboot(false) , _flagged_for_reboot_at(0) { } BootConfig::~BootConfig() { } void BootConfig::setup() { B...
<commit_before>/* * soundpatty.cpp * * Copyright (c) 2010 Motiejus Jakštys * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANT...
<commit_before>/* * Copyright 2014 David Moreno Montero <dmoreno@coralbits.com> * * 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 * * U...
<commit_before>/* * ecg.cpp * Author: Reece Stevens * Start Date: 4.6.15 * * The monitoring functions of the ECG probe for the * TEWH Patient Monitor. File still under construction. * * Function goals: * a. Detect the heart rate of the input signal * b. Detect abnormalities or changes in signal over time...
<commit_before>// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #include "common.h" #include "sal.h" #include "gcenv.structs.h" #include "gcenv.base.h" #include <s...
<commit_before>/** * Copyright (c) 2015 - The CM Authors <legal@clickmatcher.com> * All Rights Reserved. * * This file is CONFIDENTIAL -- Distribution or duplication of this material or * the information contained herein is strictly forbidden unless prior written * permission is obtained. */ #include "stx/prot...
<commit_before> #include "accurate_intersections_approx.hpp" #include "accurate_intersections_incprec.hpp" #include "accurate_intersections_resultant.hpp" #include "geometry.hpp" #include "line.hpp" #include "quadric.hpp" #include "quadric_classify.hpp" #include "timer.hpp" #include <fstream> #include <iomanip> #inclu...
<commit_before>#include "terminalpp/ansi/control_sequence.hpp" #include <iostream> namespace terminalpp { namespace ansi { bool operator==(control_sequence const &lhs, control_sequence const &rhs) { if (lhs.initiator == rhs.initiator && lhs.command == rhs.command && lhs.meta == rhs.meta) { ...
<commit_before>/* * Copyright (c) 2003-2005 The Regents of The University of Michigan * 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 c...
<commit_before>// // Copyright (C) 2014, 2015 Ableton AG, Berlin. All rights reserved. // // 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 ...