blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
3
264
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
5
140
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
986 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
3.89k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
23 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
145 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
10.4M
extension
stringclasses
122 values
content
stringlengths
3
10.4M
authors
listlengths
1
1
author_id
stringlengths
0
158
f2f6b4c0816245156c43bd39258350d000472ccd
cc27e4e9de21a4b6eae1ae80c886e08532a47b8f
/Lib/include/OpenMesh_o/Core/Geometry/Plane3d.hh
df07c5aa2dbdbd0963a40887ba3356a7faa317e4
[]
no_license
misop/diplomovka
3eacc5cab7a07b496f33a2eaa0388bfe2c0d67c9
fa8c1e1d0fd9d085d767977ad2715a464ced8934
refs/heads/master
2020-12-25T18:22:34.237634
2014-07-25T09:12:56
2014-07-25T09:12:56
8,234,555
2
1
null
null
null
null
UTF-8
C++
false
false
4,747
hh
/*===========================================================================*\ * * * OpenMesh * * Copyright (C) 2001-2011 by Computer Graphics Group, RWTH Aachen * * ...
[ "michal.piovarci@gmail.com" ]
michal.piovarci@gmail.com
2035add443fdad13d7caf221da2c0b27d931ce69
5815fbec19ef1649fb229dbb3bb79318d76ed62c
/src/checkpoints.h
ece67935274b12bca2fe24311ac3bd8487ee9cb6
[ "MIT" ]
permissive
luxmicoin/Luxmi
a646c239cbb012d778f4953fc7407b3c7cf5ffa3
3eec7accdd8954006813d97d4dacc871173f341e
refs/heads/master
2021-05-07T17:50:12.239987
2017-10-29T10:48:54
2017-10-29T10:48:54
106,904,680
0
0
null
null
null
null
UTF-8
C++
false
false
3,916
h
// Copyright (c) 2009-2012 The Bitcoin developers // Copyright (c) 2017 The Luxmi developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_CHECKPOINT_H #define BITCOIN_CHECKPOINT_H #include <map> #include ...
[ "luxmicoin@gmail.com" ]
luxmicoin@gmail.com
b3ae448f40741c1b3efacabaaa12cb6c5a676aae
98414c2d3346ba59ea98877da905c0232090a4a9
/RG2R_Engine/SoundManager.h
c05f4145504407f2fe72b9fcd47843fb45254060
[]
no_license
akfakf0509/Digital_Contest
e33acfc22f7de0a8c58e09a8ad7ccdd18b2d62e5
c458faf036a62c6ce6a20d862927ba9560f9f1e6
refs/heads/master
2021-07-15T04:13:06.105597
2020-10-29T03:22:16
2020-10-29T03:22:16
213,971,961
0
0
null
null
null
null
UTF-8
C++
false
false
1,459
h
#pragma once #include <map> using namespace std; using namespace std::experimental::filesystem; typedef int SoundCode; #define BUFSIZE 1048576*60 enum SoundType { ST_Wave, ST_Ogg, }; struct SoundOptions { float pitch = 1; float volume = 1; float dir = 0; bool isLoop = false; bool autoDelete = true; b...
[ "50164284+akfakf0509@users.noreply.github.com" ]
50164284+akfakf0509@users.noreply.github.com
a95def315886963b5a740821bb2a3d9782ed03c3
93c66e44e6ae7e654aefc42cad10706a44aa2377
/concurrency/collection_of_threads.cpp
5eecc79c0f80fb11820aefb405e6def23ecb1fd6
[]
no_license
dcampora/cpp11
11a61227522baa5d83a8f0d81300c84553a923ca
db3e2830d2eed370134e6d25193d0f22e8dbd605
refs/heads/master
2020-05-17T18:38:38.325947
2016-01-20T08:47:41
2016-01-20T08:47:41
32,726,789
0
0
null
null
null
null
UTF-8
C++
false
false
726
cpp
#include <iostream> // cout, endl #include <thread> // thread #include <unordered_map> // unordered_map #include <cstdint> // intmax_t #include <vector> using std::cout; using std::endl; using INT = std::intmax_t; INT fib(INT n) { return n<2 ? 1 : fib(n-1) + fib(n-2); } std::unordered_map<INT...
[ "danielcampora@gmail.com" ]
danielcampora@gmail.com
f35e42949230ca65d464d9c205e8115b34b2ec3e
4e8a367ed7424890b7394d94f6f04a48cf03b5e8
/Arrays/3SumClosest.cpp
74f04cd64b7225499d2e2c60f24e8b32459726e9
[]
no_license
swapnilkant11/leetcode-problem-solutions-in-cpp
9087807206e10a9bd56729657983253b1dd76560
4328d8623230a9c687f912a8b7f8598ea4cda6a3
refs/heads/master
2022-12-01T04:10:41.689161
2020-08-20T18:25:52
2020-08-20T18:25:52
262,617,301
1
0
null
null
null
null
UTF-8
C++
false
false
1,192
cpp
// Given an array nums of n integers and an integer target, find three integers in nums such that the sum is closest to target. //Return the sum of the three integers. You may assume that each input would have exactly one solution. // created by Swapnil Kant // on 10-05-2020 int closestthreesum(int arr[], int n, int...
[ "swapnilkant11@gmail.com" ]
swapnilkant11@gmail.com
87d5efe6f3b45fec5b232bb953f9a5a4ca1efc51
54e6cdf04c19da9815c3d939be2fea408cc82cc7
/game_logic/src/game_boolean_parameter.cpp
f14a7bb94c8017733472c2b8dad96649d15d8da5
[]
no_license
andyprowl/snake-overflow
0ef73f799e6c2ade25af7c9936da94ea3fa36b29
027b64ccb2562b5253e89df29bd42b61185b9145
refs/heads/master
2021-01-13T02:08:34.352229
2015-04-15T21:28:21
2015-04-15T21:28:21
32,992,332
3
0
null
null
null
null
UTF-8
C++
false
false
620
cpp
#include "stdafx.hpp" #include "snake_overflow/game_boolean_parameter.hpp" #include "snake_overflow/game_over_flag.hpp" namespace snake_overflow { game_boolean_parameter::game_boolean_parameter(bool const value, game_over_flag& game_over) : value{value} , game_...
[ "andy.prowl@gmail.com" ]
andy.prowl@gmail.com
fd40eb5f198d799d2dd5c6e41f0c67d4dc4211bf
35a5b7c537945d5aacaafed3b1bd971dd3ce6e39
/LearnCpp3/main.cpp
d923b086da3e4476617bfb21151363f37e076c4c
[]
no_license
hebin1016/LearnCpp3
b5c56092dde1280bc76a2aa04d4e3e3fab420871
fb3a27bc02268fad64744ba5a53f9e68850d1533
refs/heads/master
2021-01-19T20:15:56.774925
2017-03-03T02:00:25
2017-03-03T02:00:25
83,745,570
0
0
null
null
null
null
UTF-8
C++
false
false
8,619
cpp
// // main.cpp // LearnCpp3 // // Created by hebin on 2017/2/10. // Copyright © 2017年 hebin. All rights reserved. // #include <iostream> using namespace std; /* //继承 //代码的重用 class Car{ public: void run(){ cout<<"行驶"<<endl; } protected: char* card; char* color; }; // class Truck:public Car...
[ "hb494974108@gmail.com" ]
hb494974108@gmail.com
df629e16f2479b45cf4c888bb023703a60915ef6
b656dc19dcd1cbd76ef4d88c879e7f6fa2e885e4
/include/lishaderprogram.h
6cb61b0c31497034ce7286cbb57491b26f214240
[]
no_license
setrunk/LiCore
53b19b6c82b1129d10679c9b33c87fb276e00b51
b372688732901bbb6fd45dc0b21b99f8be5e935f
refs/heads/master
2020-05-20T01:16:20.121067
2019-11-19T14:02:46
2019-11-19T14:02:46
185,304,772
1
2
null
null
null
null
UTF-8
C++
false
false
12,109
h
#ifndef LISHADERPROGRAM_H #define LISHADERPROGRAM_H #include "linode.h" class LiShader; class LiShaderProgramPrivate; /** * @brief * LiShaderProgram是渲染模块的核心类,负责gpu渲染的方式,一般情况下由VertexShader和FragmentShader组成。 */ class LICORE_EXPORT LiShaderProgram : public LiNode { Q_OBJECT Q_PROPERTY(LiShader* vertexShader...
[ "setrunk@163.com" ]
setrunk@163.com
3baa93403c13e158ecca4514e05d787d0cc5f977
6a4d287c4ef8fbef960c37bfaca135f0f3278f7a
/20170716/d.h
d9472a6bcdd63ef470ae52d7362738fa2bd66ebd
[]
no_license
harryhare/leetcode
df9c93b5caee4d5697f7fc6b50c48a9b01aafd52
03f21ceaf3ec0bfb67d30371e31b8dcd865741f8
refs/heads/master
2023-06-08T14:10:47.462552
2023-05-28T05:27:46
2023-05-28T05:27:46
100,129,079
1
0
null
null
null
null
UTF-8
C++
false
false
68
h
#include<vector> #include<string> #include<map> using namespace std;
[ "harryhare@163.com" ]
harryhare@163.com
76b6a00d529b31fdecf190a979dd4e06991657b1
be93b9ffb49ec6f73d2558cedd02cd50a4060858
/Online judge solutions/Spoj/FOXLINGS.cpp
ce77e3bfd528398cda31160826b0b9c033fd8cf2
[]
no_license
salonimohta/competitive-programming
ceec3c2c87eb8078b051166654c3faac5ce27d0b
2639a14acf4beb453bb9277779ad5d705c6fa97a
refs/heads/master
2020-08-09T02:12:27.005619
2019-10-14T08:07:46
2019-10-14T08:07:46
213,975,049
2
0
null
2019-10-09T16:59:36
2019-10-09T16:59:36
null
UTF-8
C++
false
false
2,758
cpp
/* AARUSH JUNEJA @vivace IIT(ISM),Dhanbad */ #include<bits/stdc++.h> using namespace std; typedef double lf; typedef long long ll; typedef long double ld; typedef unsigned long long ull; typedef set<ll> sll; typedef vector<ll> vll; typedef map<string,ll> msl; typedef pair<ll,ll> ii; typedef vector<ii > vpll; typed...
[ "avijuneja.cs@gmail.com" ]
avijuneja.cs@gmail.com
312dbb0bd0c3a1cb38b1b27bffc56ed44f7c0161
de7e771699065ec21a340ada1060a3cf0bec3091
/core/src/java/org/apache/lucene/analysis/TokenFilter.cpp
cad8924c9b5393cc4cb43c29fdf95c2ac7071cf7
[]
no_license
sraihan73/Lucene-
0d7290bacba05c33b8d5762e0a2a30c1ec8cf110
1fe2b48428dcbd1feb3e10202ec991a5ca0d54f3
refs/heads/master
2020-03-31T07:23:46.505891
2018-12-08T14:57:54
2018-12-08T14:57:54
152,020,180
7
0
null
null
null
null
UTF-8
C++
false
false
373
cpp
using namespace std; #include "TokenFilter.h" namespace org::apache::lucene::analysis { TokenFilter::TokenFilter(shared_ptr<TokenStream> input) : TokenStream(input), input(input) { } void TokenFilter::end() { input->end(); } TokenFilter::~TokenFilter() { delete input; } void TokenFilter::reset() { input->re...
[ "smamunr@fedora.localdomain" ]
smamunr@fedora.localdomain
8e6507913996cba7a24161d91499ff118e274826
55478ef22190e0901a1e2d8b62d031453c1ee4e7
/Verilog.cc
b3ee91bcdde4fba81f48fbb657dc86499e0b4bb0
[]
no_license
DTharun/verilog2cpp
d72bdae0cc6a3faea831b126801a469fae926061
03f7292e1c87ce90dd9d728c51eb8885762573a8
refs/heads/master
2022-01-13T19:24:35.266490
2019-05-24T09:10:18
2019-05-24T09:10:18
119,534,992
4
0
null
null
null
null
UTF-8
C++
false
false
88,423
cc
/* * Copyright (C) 2000-2003 moe * * This source code is free software; you can redistribute it * and/or modify it in source code form 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 late...
[ "cs15mtech11002@iith.ac.in" ]
cs15mtech11002@iith.ac.in
81c2df7b5fe26e0fd0b5e37dc9b5e49735ee4b55
7bd86eea32ca45d0af07ff71d66a5842cb64b1f9
/InterfaceEDT/annee.h
75287832e606b206f2e25afbe89ece4df03d47c1
[]
no_license
DanielLeThug/CalendrierCpp
ba718309deeebf4cf282cde12a37078fc7b03b65
4ba807255d9737f24eb301ead3c004ce7072c096
refs/heads/master
2021-01-11T10:24:51.187672
2017-01-11T14:15:31
2017-01-11T14:15:31
76,236,850
0
0
null
null
null
null
UTF-8
C++
false
false
480
h
#ifndef ANNEE_H #define ANNEE_H #include "Semaine.h" #include <vector> using std::vector; class Annee { public: Annee(const vector<Semaine*>& semainesAnnee); vector<Semaine*> getSemainesAnnee() const; void setSemainesAnnee(const vector<Semaine*>& semainesAnnee); void addSemaine(S...
[ "goldennoob68@gmail.com" ]
goldennoob68@gmail.com
267792d795a3de522661970c799a15c2b7cc0931
d7fa103fb1cf3f9329086e993a1d12b71f2b0794
/TP1/Sources/widget.h
fcda5b8e078faa335364991406a0bd06671c64ef
[]
no_license
danielRL24/DesignPatterns_TPs_15-16
6feac0359d8953bf11f18250d11907fbef419ef4
84646f814c5b115b3d5984fa0dff9d6213e0a186
refs/heads/master
2021-01-01T03:48:52.465675
2016-05-27T08:35:19
2016-05-27T08:35:19
57,148,998
0
0
null
null
null
null
UTF-8
C++
false
false
1,040
h
#ifndef WIDGET_H #define WIDGET_H #include "fractal.h" #include <QtWidgets> #include <QDialog> class Widget : public QGraphicsView { Q_OBJECT public: Widget(int _deepness, QWidget *parent = 0); ~Widget(); QAction *getSwitchToEditionOrDisplay() const; protected: void mousePressEvent(QMouseEvent...
[ "daniel.24.rodrigues@gmail.com" ]
daniel.24.rodrigues@gmail.com
09cfd0d638c7342c5f0d3696dca389e688d66474
bb7374de2b32fa0574f4f7355259af94fd1666c0
/gdroga.h
8b76a8f733bce840f2fed227318ef37a29dff657
[]
no_license
bkr4/city
4f2e7ff0a5ebf2cf6fce5f3e7f357846bfb7a5cf
ad9c61f0648507a03c3efff77de1d56c2347814f
refs/heads/main
2023-06-15T20:35:54.850535
2021-07-12T10:10:02
2021-07-12T10:10:02
385,201,604
0
0
null
null
null
null
UTF-8
C++
false
false
360
h
#ifndef GDROGA_H #define GDROGA_H //#include "droga.h" #include <QGraphicsItem> class Gdroga : public QGraphicsItem { public: Gdroga(QLineF linia); void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = Q_NULLPTR) override; private: QLineF droga; QRectF boundingRect()...
[ "87307553+bkr4@users.noreply.github.com" ]
87307553+bkr4@users.noreply.github.com
cea07d8660e52e3ea1b7bf91bd356367b411d98f
1cc07d0215e8b0de8cc7396cbb32ddfef8acf98d
/94. Binary Tree Inorder Traversal(M)/tt.cpp
cc812bcdbb4cd5ac80ec8d79ce852462442114c9
[]
no_license
SamongZ/LeetCode
fb2af94814b406d7977e17f7bead918152ffae5c
ac6d0835c453439843de8336bb19471c2fb56ece
refs/heads/master
2021-01-20T12:28:07.814290
2017-08-15T15:02:50
2017-08-15T15:02:50
90,366,913
0
0
null
null
null
null
UTF-8
C++
false
false
1,463
cpp
/* Given a binary tree, return the inorder traversal of its nodes' values. For example: Given binary tree [1,null,2,3], 1 \ 2 / 3 return [1,3,2]. Note: Recursive solution is trivial, could you do it iteratively? */ /** * Definition for a binary tree node. * struct TreeNode { * int val; * ...
[ "zhang_zh1010@163.com" ]
zhang_zh1010@163.com
cb90c0742ec72bc631cc04a13e2e81cce789a245
784883785e9bfdb7eb8031b1311321f2901e13bd
/C++ Codes/vector-erase.cpp
e14766ba05d279b03285d598cf5f2f78c51bc395
[]
no_license
jaimittal1998/Competitive-Programming
3a6cea7ce56ab3fae0dedd00212df84ec7212b9d
d2387e6de4c3e029ec7b87b6b98fb6607400a150
refs/heads/master
2022-11-10T03:44:49.209525
2020-06-22T12:40:36
2020-06-22T12:40:36
118,754,177
2
2
null
2018-10-06T17:27:40
2018-01-24T11:08:38
C++
UTF-8
C++
false
false
450
cpp
#include<bits/stdc++.h> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); int N; int x,a,b; cin>>N; vector<int> V; for(int i=0;i<N;i++) { int temp; cin>>temp; V.push_back(temp); } cin>>x; V.erase(V.begin()+x-1); cin>>a>>b; V.erase(V.begin()+a...
[ "30296016+jaimittal1998@users.noreply.github.com" ]
30296016+jaimittal1998@users.noreply.github.com
57d761a48462f4762294b2ebd94123b95dff6b76
79ac6b70443f0cf6259a3e1d94cf64de26aa9aec
/ClientServerHybrid/ClientServerHybrid/Interface/IHybrid.cpp
a08bdd340cfe4385222419e601e4498f66d87e74
[]
no_license
kirillovmr/client_server_app
def126927f7432401b6344f1dac3df9aa4985401
fac48da60be15c86f67ea9e4af11dd2f1c1d63e1
refs/heads/master
2020-08-29T22:27:11.047767
2019-12-22T13:41:36
2019-12-22T13:41:36
218,189,859
0
0
null
null
null
null
UTF-8
C++
false
false
3,123
cpp
// // IHybrid.cpp // ClientServerHybrid // // Created by Viktor Kirillov on 11/4/19. // Copyright © 2019 Viktor Kirillov. All rights reserved. // #include "IHybrid.hpp" using namespace std; using namespace boost; IHybrid::IHybrid(unsigned char num_of_threads): sessionCounter(0) { m_work.reset(new boost::asio:...
[ "mr.kirillov@icloud.com" ]
mr.kirillov@icloud.com
ed1d4cda44d4bb6095ff0c5b9581bd5f0f720ca5
402060870b2da94387f69a086b4a78c0733b8af5
/src/ast.cpp
ac8b830e4f54c4283aa3573d2bf6c3149b5524fb
[]
no_license
itiB/minimalCCompiler
b4e2b74a684d2cc7fb7477169bca9bded7d5ef35
726a910465bb98dfd4f1f0f5371f1654e0a1d886
refs/heads/master
2022-12-06T18:51:40.489952
2020-08-26T17:23:10
2020-08-27T02:51:34
287,526,098
1
0
null
null
null
null
UTF-8
C++
false
false
1,723
cpp
#include "ast.hpp" TranslationUnitAST::~TranslationUnitAST() { // プロトタイプの数分 for (int i = 0; i < Prototypes.size(); i++) { SAFE_DELETE(Prototypes[i]); } Prototypes.clear(); for (int i = 0; i < Functions.size(); i++) { SAFE_DELETE(Functions[i]); } Functions.clear(); } /// Pr...
[ "is0312vx@ed.ritsumei.ac.jp" ]
is0312vx@ed.ritsumei.ac.jp
35bd509c77739e294136f29df73b81f23486925f
7c92c6e4202aa422911b2f28f0a0f9c87beb4584
/src/TrackerHit.cc
9ce5d36fb195dc2ad9bbb9e8827fda3910634359
[]
no_license
hanswenzel/CaTS_legacy
581072f5c21d94fcb9d4252b2f2c47010c7750d9
b9de90f73c4532793919564e15709915e5b87d1f
refs/heads/master
2023-08-02T10:29:35.095980
2021-10-07T21:52:50
2021-10-07T21:52:50
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,766
cc
// // ******************************************************************** // * License and Disclaimer * // * * // * The Geant4 software is copyright of the Copyright Holders of * // * the Geant4 Collaboration...
[ "wenzel@fnal.gov" ]
wenzel@fnal.gov
e96bb2eda1bf2d1af5955bdf14174de5e0e4b716
d6249a6c85101170b3e0dd548ca6982bc8a94fbd
/Chef/JULY17/CHEFSIGN.cpp
72a795a7e9e1f1d7490879200f80bf856dbe1a2f
[]
no_license
anshumanv/Competitive
bb5c387168095f3716cabc6c591c3b7697da64da
828d07ad5217de06736ae538f54524092ec99af4
refs/heads/master
2021-08-19T08:35:30.019660
2017-11-25T14:38:38
2017-11-25T14:38:38
81,228,891
0
0
null
null
null
null
UTF-8
C++
false
false
625
cpp
#include<bits/stdc++.h> #define newl "\n" #define MODULO 1000000007 using namespace std; int main(){ std::ios::sync_with_stdio(false); int t; cin >> t; while(t--){ string s; cin >> s; int mx = 0, cm = 0; char cur = s[0]; for(int i = 0; i < s.length(...
[ "anshu.av97@gmail.com" ]
anshu.av97@gmail.com
2921204dc91fbb418c191be83dcd1b4811fc13a0
2dc292f902891a58f67664a4ef27c982ff47da93
/src/Corrade/Utility/Resource.h
82c0c3ec7ce3d0a771cd6ce81c276b1c0a381123
[ "MIT" ]
permissive
njlr/corrade
7945757bc77ecb24946566759240f6711472e118
462b6184f97218886cc1baef9e044e46ae1b661b
refs/heads/master
2021-01-22T02:58:20.710246
2017-02-05T20:51:15
2017-02-05T23:41:04
null
0
0
null
null
null
null
UTF-8
C++
false
false
8,420
h
#ifndef Corrade_Utility_Resource_h #define Corrade_Utility_Resource_h /* This file is part of Corrade. Copyright © 2007, 2008, 2009, 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 o...
[ "mosra@centrum.cz" ]
mosra@centrum.cz
afd84e3ea6dfb9b70acfa6eec3c545e388614e94
574dce1edfa0c9e832f5651b12357faf81f15465
/Source/CVCBase.h
2bab0266c60d5b3fcb7a0639e75b66f8499d57c5
[ "Apache-2.0" ]
permissive
friolator/OpenCV-C
a47702eb6196926570eff52b5fde73b09590e436
e5cbad86c0daa9f32f9602398dd216c81db348cf
refs/heads/main
2023-06-09T08:06:13.462214
2021-06-24T14:28:14
2021-06-24T14:28:14
366,834,372
7
1
null
null
null
null
UTF-8
C++
false
false
5,070
h
// // CVCBase.h // OpenCV-C // // Created by Gerrit Goossen on 5/12/21. // Copyright (c) 2021 Gamma Ray Digital, Inc. All rights reserved. // #ifndef CVCBASE_H #define CVCBASE_H //#include <climits> //#include <algorithm> /* namespace Error { //! error codes enum Code { StsOk = 0, //!<...
[ "developer@gerrit.email" ]
developer@gerrit.email
c68e6632d0a1d0e63ead414f8ccee738657b39e5
317649dde4c3ca8b185d98eda59aff11c3276c88
/analysis/read_02.cpp
65b7502d5614dc0f82b3b661b29a235baddf0e2c
[]
no_license
freejiebao/generator
8b5019cdf53be70006405a4d9547d693f813d9bd
8e658a44e69d770ac57e6bc9d13a66bcebcab07a
refs/heads/master
2021-06-16T14:31:10.174653
2021-05-19T08:13:41
2021-05-19T08:13:41
203,158,169
1
2
null
null
null
null
UTF-8
C++
false
false
15,594
cpp
// c++ -o read_02 `root-config --glibs --cflags` CfgParser.cc LHEF.cc -lm read_02.cpp /* apply basic VBS selections http://govoni.web.cern.ch/govoni/tesi/docs/Alessandro_Tarabini_Tesi.pdf */ #include "LHEF.h" //#include "LHEF_joint.h" #include <iomanip> #include <vector> #include <map> #include <iostream> #include <s...
[ "jiexiao@pku.edu.cn" ]
jiexiao@pku.edu.cn
111bd1840363661737efc3df016d8937b0e75b33
123fd2a7f70913fa0103ceb14d812507dd5b27b6
/A1.cpp
c671119ce205f6b1eeb57b2bde286dad68ad00b2
[]
no_license
PeterSo123/A1
2ce82d990ef805ea3e6222d8e31235fb1e9542df
c06b465e0949bd9d50f21a7c9620c7b68e914847
refs/heads/master
2021-01-25T14:26:59.091686
2018-03-08T18:14:12
2018-03-08T18:14:12
123,699,557
0
0
null
null
null
null
UTF-8
C++
false
false
3,651
cpp
// CCN2042 Assignment 1 // Program template file: A1Template.cpp #include <iostream> #include <iomanip> #include <cmath> using namespace std; void showInfo() { // Insert your codes to display your personal particulars here cout << "Name : So Man Lung" << endl; cout << "Student ID: 17180545A" << endl; cout << ...
[ "noreply@github.com" ]
PeterSo123.noreply@github.com
b13fd7ce2bb7c03c28f496ea6936dfca22048fd0
789e0754f2480c6d04dbd3c8056f8c76076c95a2
/ads01spi.ino
fd7e2d4ae2017e3502624cc02f8077f9d69bf658
[]
no_license
RodolfoLemes/ads01spi
c21fb76e7f45dd18b5d74ecb8bbe87a1eae25efe
450e4a7b87dcccd87c44745f0a434ee3c00ed133
refs/heads/master
2023-01-22T08:29:15.049976
2020-12-01T19:33:25
2020-12-01T19:33:25
314,567,162
0
0
null
null
null
null
UTF-8
C++
false
false
2,356
ino
/* * ADS01SPI * Acquisition and interpretation of signals with ADC Sigma-Delta and communication protocol SPI * * Authors: * Rodolfo Lemes Saraiva * Leonardo Garbuggio Armelin * * Project made for the discipline "Projeto de Microcontroladores" * State University of Maringá (UEM) * Professor: Rubens Sakiyam...
[ "rodolfo_fero@hotmail.com" ]
rodolfo_fero@hotmail.com
8ef8e786430cc0eea4ed91aa9093dc59ddcf5aee
cbb6b7b9c575f85570d7a025739bf43436814b64
/SFrame/Zgamma/src/TagSelector.cxx
65104ee21acaf875abbdc47999e95dd454f7bb8a
[]
no_license
stahlman/Higgs4l
37df3e264d6be3720808a6eedb11f927df6ad58b
a530357fff2f790540ea3cfcfb80c318e4e8516d
refs/heads/master
2021-01-01T15:59:22.096275
2015-02-10T23:28:08
2015-02-10T23:28:08
30,620,561
0
0
null
null
null
null
UTF-8
C++
false
false
7,240
cxx
// $Id: TagSelector.cxx 18120 2012-09-16 14:35:37Z sheim $ // Local include(s): #include "../include/TagSelector.h" #include "../include/TriggerSelector.h" #include <math.h> // AtlasSFrameUtils #include "CycleMacros.h" #include "Electron.h" #include "Muon.h" #include "ParticleElementBuilder.h" //Common Tools #includ...
[ "jonstahlman@gmail.com" ]
jonstahlman@gmail.com
a41cde0567c8ad6711aabbb545bda180930d6f95
08b8cf38e1936e8cec27f84af0d3727321cec9c4
/data/crawl/squid/old_hunk_7356.cpp
2e8e0bb179e021bcf0968d9b8122f36d58cc95b5
[]
no_license
ccdxc/logSurvey
eaf28e9c2d6307140b17986d5c05106d1fd8e943
6b80226e1667c1e0760ab39160893ee19b0e9fb1
refs/heads/master
2022-01-07T21:31:55.446839
2018-04-21T14:12:43
2018-04-21T14:12:43
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,314
cpp
va_end(args); } /* add directory to swap disk */ static int storeAddSwapDisk(const char *path) { char **tmp = NULL; int i; if (strlen(path) > (SQUID_MAXPATHLEN - 32)) fatal_dump("cache_dir pathname is too long"); if (CacheDirs == NULL) { CacheDirsAllocated = 4; CacheDirs = xcalloc(CacheDirsAlloc...
[ "993273596@qq.com" ]
993273596@qq.com
5abfaef7b5777326941e1f697ee0ccfc62367410
7901e09d4f0827e0590fa6a7f038e7d9363e903b
/cpp_stl/iter/assoiter.h
36f91e837b03699abefe29563edb324dc3578bdf
[]
no_license
jiesoul/c_cpp_learn
32298fa21d159d3fc9a6c0c2711700548db9e4a2
cd4e411f73222dd26d22c1110ce0af4ecc60f051
refs/heads/main
2023-03-16T15:54:54.553175
2022-06-14T05:30:51
2022-06-14T05:30:51
204,853,153
0
0
null
null
null
null
UTF-8
C++
false
false
1,006
h
// // Created by jiesoul on 2019/10/16. // #ifndef C_CPP_LEARN_SRC_CPP_STL_ITER_ASSOITER_H_ #define C_CPP_LEARN_SRC_CPP_STL_ITER_ASSOITER_H_ #include <iterator> template <typename Container> class asso_insert_iterator : public std::iterator <std::output_iterator_tag, typename Container::value_type> { protected: ...
[ "jiesoul@gmail.com" ]
jiesoul@gmail.com
4c6b162a22e7bd6510df07444a4d307e55b173e3
26690127f0fd138a3f0109702d71adc372831dd5
/Library/Maths/LinearAlgebra/matrix_inverse.cpp
ed78b9f9f360f2346fb1614702bb1e84e33a5651
[]
no_license
Mohammad-Yasser/CompetitiveProgramming
4bc2c14c54e9bc7be90bb684689c9340614d9d17
a48b744b1dedb2f4ad3d642f5e5899cf48d637d4
refs/heads/master
2023-04-09T02:48:27.066875
2021-04-24T11:41:18
2021-04-24T11:41:18
32,478,674
2
1
null
2020-06-05T04:13:21
2015-03-18T19:06:09
C++
UTF-8
C++
false
false
1,845
cpp
typedef double Double; typedef vector<Double> Row; typedef vector<Row> Matrix; void printMatrix(const Matrix& mat) { int n = mat.size(); int m = mat[0].size(); for (int i = 0; i < n; i++) { for (int j = 0; j < m; j++) { cout << mat[i][j] << " "; } cout << endl; } } Matrix getEmptyMatrix(int...
[ "mohammadyasser3@gmail.com" ]
mohammadyasser3@gmail.com
fe7cd26aec2a530f470ed31b138d5ff4e3c056f6
6d51efbb264ef5920a99c54e2e436bc2f0a4ec40
/C++-Practise/BSTMinMaxDepth.cpp
72ee2a7bd3b8e87e71cb040c336e4b8ae4a39ce5
[]
no_license
Sarvesh1990/Coding-Practise
db3adc0d4fca25ddee6ea5c99ad6a26baac917de
6c64219f058d89c3fb76cc86ece4ec14dffd286e
refs/heads/master
2021-01-10T15:33:56.291896
2016-01-09T11:37:01
2016-01-09T11:37:01
47,115,152
0
0
null
null
null
null
UTF-8
C++
false
false
1,682
cpp
#include <iostream> #include <string> using namespace std; struct Node { int value; Node * left; Node * right; }; Node * newNode(int number) { Node * myNode = new Node(); myNode->value = number; myNode->left=myNode->right=NULL; return myNode; }; int MinDepth (Node * node) { int dl...
[ "sarvesh@Sarveshs-MacBook-Air.local" ]
sarvesh@Sarveshs-MacBook-Air.local
aa6bbdb4d4a71e09f1b276b2f940c70db1c6aa35
af0aa93c55cbf9fcd8589cd0f764f9c348db8c9f
/Engine/Components/ComponentBase.h
d1e5dd2eb771fd1a496c7b9a0d40f7d04e851871
[]
no_license
Kickass-Global/Checkered
c758ad2ebd963fc8b07949c58e5f225eb486de06
399e1e666a16b4b35740ae6c46f339f9c7514b67
refs/heads/master
2020-12-06T07:03:43.419680
2020-04-20T17:29:45
2020-04-20T17:29:45
232,375,415
5
1
null
2020-04-20T16:27:50
2020-01-07T17:11:52
C++
UTF-8
C++
false
false
1,205
h
// // Created by root on 15/1/20. // #pragma once #ifndef ENGINE_COMPONENTBASE_H #define ENGINE_COMPONENTBASE_H #include <any> #include <unordered_map> #include <typeindex> #include <memory> #include <algorithm> #include "ComponentInterface.h" #include "Node.hpp" #include "Engine.h" namespace Component { class...
[ "jacksoncougar@gmail.com" ]
jacksoncougar@gmail.com
3513d2cc9938cbdd79d0702f8546abda983c04a3
cb2fb6bf31062869e319971a9d83e43d7909741f
/inorganic_DD/boundary_conditions.cpp
90ada04fe24a9621476394c5ad0e05d8f1cfaf29
[]
no_license
xiaoxianliu/drift_diffusion_fem
f71759a71b5519ba07da50aa39d171cf5fd32b6e
e6cdfddaf08d2d50656a0f357157302bcd2573ee
refs/heads/master
2016-09-05T23:11:02.851427
2013-10-07T00:52:34
2013-10-07T00:52:34
13,372,112
2
0
null
null
null
null
UTF-8
C++
false
false
1,135
cpp
#include <iostream> #include <cmath> #include <armadillo> #include "../triangle/mesh.hpp" #include "parameters.hpp" // Dirichlet boundary conditions for n, p, and psi arma::vec n_D_Vec(arma::vec C) {using parameters::delta_squared; arma::vec n_D(C.n_rows); for (int i=0; i<C.n_rows; i++) { double c = C(i); n_D(i...
[ "liuxiaox@sas.upenn.edu" ]
liuxiaox@sas.upenn.edu
59828261ab114d5342c57cb47be4fc1f9ff7aca8
5750449c57fb5d3fad62c28b58239d7c55d1e4e6
/zmkv/src/MuxerPrivate.cpp
b33c686a83eb7f60b656b1ad0808d0be3f6294a1
[ "MIT" ]
permissive
voximplant/zmkv
0b4274bdb21234bf664d03adf9ac9a0f8d126ad8
5797db4fa97d795e794255bb6b304dd5b03423de
refs/heads/master
2021-01-10T01:31:25.070707
2015-11-20T07:33:33
2015-11-20T07:33:33
46,543,071
17
6
null
null
null
null
UTF-8
C++
false
false
4,727
cpp
// // Created by Andrey Syvrachev on 23.07.15. // asyvrachev@zingaya.com // www.voximplant.com // #include "MuxerPrivate.h" #include <ebml/EbmlHead.h> using namespace libebml; using namespace libmatroska; using namespace ZMKV; const auto cMaxSeekHeadSizeOctets = 3000; const auto cMaxTracksSizeOctets = 300; const un...
[ "asyvrachev@zingaya.com" ]
asyvrachev@zingaya.com
317e6a002eb2c1f62031597212a3664972a071e1
7b1213d2de5a720e208f7d7ca6ed7f0fa92c2622
/Model/Mpd/mpd.cpp
e240948769d03642c01aa6b94e0d8ab6732f289e
[]
no_license
martakuzak/MP4_2
cfd3474f1e4c68d4b40931bfe2665eaf2f18ee98
661dc380087c9c5d9bb680daa2398a12e9c1f063
refs/heads/master
2021-01-21T04:37:43.259965
2016-01-17T23:22:29
2016-01-17T23:22:29
15,295,860
0
0
null
null
null
null
UTF-8
C++
false
false
16,575
cpp
#include "mpd.h" ProgramInformation::ProgramInformation() { lang = ""; moreInformationURL = ""; title = ""; source = ""; copyright = ""; } /////////////////////////////////////////////////////////////////////////////////////////// QString ProgramInformation::getLang() const { return lang; } ///...
[ "marta.kuzak@gmail.com" ]
marta.kuzak@gmail.com
40863568d24809bbea83069bf9e1ec92bda3664a
aacb4d5ee82ac6ef7f57806bfdc26d6a2fb17c29
/benchmark/src/msgpack11-unpack.cpp
deb628d44bb0206b59a2a98f726472a764f97fca
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
ar90n/msgpack11
891bf944b2c7e769bc41edbb9678279b291b44d3
aa0cc8a00ddb7752b9455b25e47db9b0fab7fd60
refs/heads/master
2023-01-19T16:56:19.614451
2023-01-08T03:04:51
2023-01-08T03:04:51
66,201,217
122
32
MIT
2023-01-08T03:04:52
2016-08-21T13:51:19
C++
UTF-8
C++
false
false
4,763
cpp
/* * Copyright (c) 2016 Nicholas Fraser * * 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, merge, pu...
[ "argon.argon.argon@gmail.com" ]
argon.argon.argon@gmail.com
3ef4fe04632aae9c53dd0402f2fe0ead697e6fa8
39b8aecb95c505ae2a39f0736812d4f8b40f2638
/done/8182.cpp
370d7e343685d4a7d34aadfacdeae1bacbfb591b
[]
no_license
koosaga/BOJ-spj
8c6109eb0010144b272ab05a613fa897253275e8
9fa561f1bd4270102df5a2cbfb3c627f21b54f10
refs/heads/master
2020-04-02T16:49:39.728270
2018-10-25T07:51:23
2018-10-25T07:51:23
154,630,508
1
1
null
2018-10-25T07:46:16
2018-10-25T07:46:15
null
WINDOWS-1250
C++
false
false
1,821
cpp
/************************************************************************* * * * XVI Olimpiada Informatyczna * * * * Zadanie: Wyspa...
[ "koosaga@gmail.com" ]
koosaga@gmail.com
ee9a2b99dadd846788c0c0afc95bbb99a8d5db71
e2c6101d2f7ff6ff07b3b33cb3581841db8b04e7
/TestBed/Src/Demos/Demo.h
4ca45a05c7ac012bc93ffe89efc4d72aa3d4fc3b
[]
no_license
PC88/Testbed
566e7d541690b92bc99371d9a532de481947db24
5012a18ed25cb1203c05239d895e970040da4658
refs/heads/master
2020-05-31T02:36:59.306178
2019-08-22T08:13:13
2019-08-22T08:13:13
190,069,218
0
0
null
null
null
null
UTF-8
C++
false
false
873
h
#pragma once #include "Demos\DemoSettings.h" class Demo { public: Demo(); virtual ~Demo(); // methods are not pure virtual as they are intended to be non-necessity. virtual void ImGuiRender() {}; // Interface for rendering UI on each of the demos virtual void Update(double interval) {}; /...
[ "32823980+PC88@users.noreply.github.com" ]
32823980+PC88@users.noreply.github.com
a9f9b70b52ef03ef35fdb67d87e0c2927646767b
5a05acb4caae7d8eb6ab4731dcda528e2696b093
/ThirdParty/luabind/luabind/detail/link_compatibility.hpp
e57eea229e0b1111720509226e4b276f0a3c3895
[]
no_license
andreparker/spiralengine
aea8b22491aaae4c14f1cdb20f5407a4fb725922
36a4942045f49a7255004ec968b188f8088758f4
refs/heads/master
2021-01-22T12:12:39.066832
2010-05-07T00:02:31
2010-05-07T00:02:31
33,547,546
0
0
null
null
null
null
UTF-8
C++
false
false
1,990
hpp
// Copyright (c) 2003 Daniel Wallin and Arvid Norberg // 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, mo...
[ "DreLnBrown@e933ee44-1dc6-11de-9e56-bf19dc6c588e" ]
DreLnBrown@e933ee44-1dc6-11de-9e56-bf19dc6c588e
1d7147476094a4c24106d6411bb419b1fa60dd5d
ea986ad1a730e3542f1b96f94243f004f579521c
/DbTables/inc/ValGroupLists.hh
c48a3e0d112a53408bc61413349bd9701049e2b8
[ "Apache-2.0" ]
permissive
ryuwd/Offline
563bae791323433cae9a18a365c8f7e8515c47f6
92957f111425910274df61dbcbd2bad76885f993
refs/heads/master
2021-12-26T03:29:04.037885
2021-08-19T16:18:39
2021-08-19T16:18:39
219,497,442
0
0
Apache-2.0
2021-08-19T19:26:45
2019-11-04T12:33:46
C++
UTF-8
C++
false
false
1,330
hh
#ifndef DbTables_ValGroupLists_hh #define DbTables_ValGroupLists_hh #include <string> #include <iomanip> #include <sstream> #include <map> #include "Offline/DbTables/inc/DbTable.hh" namespace mu2e { class ValGroupLists : public DbTable { public: class Row { public: Row(int gid, int iid): _gid(gi...
[ "rlc@fnal.gov" ]
rlc@fnal.gov
79a46434136ff5b66efc69b04877d5e7fb774ab7
d3bf068ac90138457dd23649736f95a8793c33ae
/AutoPFA/dlgpipemodel.cpp
dadbb368c845e9a92f8ea34ca8928f3db50d1834
[]
no_license
xxxmen/uesoft-AutoPFA
cab49bfaadf716de56fef8e9411c070a4b1585bc
f9169e203d3dc3f2fd77cde39c0bb9b4bdf350a6
refs/heads/master
2020-03-13T03:38:50.244880
2013-11-12T05:52:34
2013-11-12T05:52:34
130,947,910
1
2
null
null
null
null
GB18030
C++
false
false
11,713
cpp
// dlgpipemodel.cpp : implementation file // #pragma once #include "stdafx.h" #include "autopfa.h" #include "dlgpipemodel.h" #include "ComponentManager.h" #include "MainFrm.h" #include "ChildFrm.h" #include "ADOConnection.h" #include "GetPropertyofMaterial2.h" #include "Fuild.h" #include "ResourcePathManager.h" #ifde...
[ "uesoft@163.com" ]
uesoft@163.com
c1c0220b9e42475fa35d7fd758e9c082daaa4bdc
907fae0bf5de8ad40a1bb0b5da466fda0286be81
/src/runtime/vm/translator/hopt/ir.h
4ffa0de039bc7964b20a78ae9049377e04e7801e
[ "PHP-3.01", "Zend-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
Cutler-Mamba/hiphop-php
0f94a83c2a1a226b42cd50f4b6335c0073d13434
640cf62584bbd4a4ed2a581c8df37b8cd16ea69d
refs/heads/master
2021-05-27T19:25:48.425339
2012-10-10T23:45:15
2013-01-11T17:40:08
null
0
0
null
null
null
null
UTF-8
C++
false
false
52,470
h
/* +----------------------------------------------------------------------+ | HipHop for PHP | +----------------------------------------------------------------------+ | Copyright (c) 2010- Facebook, Inc. (http://www.facebook.com) | +---------...
[ "sgolemon@fb.com" ]
sgolemon@fb.com
4623ed5a1f0a8ea7482dec3b2a9c3d6abf530c48
abdd0dcf68914e1547ac23b14fd1d7847dc9ce83
/fileSys/src/.history/node_20200428213329.cpp
35045105f8e79b6eb3295aedeba6a5e3ffd3bbb9
[]
no_license
SnowflyLXF/Distributed-Systems-UMN
d290e2fdd2f07309fc62dffbe377443be6c34f3f
bd834f8cb2100836a67143ccdaeb79495cb74e18
refs/heads/master
2023-08-01T09:29:56.350535
2021-09-26T04:05:17
2021-09-26T04:05:17
410,444,689
0
0
null
null
null
null
UTF-8
C++
false
false
13,844
cpp
#include "node.hpp" using namespace std; uint32_t checksum(std::ifstream& file) { uint32_t sum = 0; uint32_t word = 0; while (file.read(reinterpret_cast<char*>(&word), sizeof(word))) { sum += word; } if (file.gcount()) { word &= (~0U >> ((sizeof(uint32_t) - file.gcount()) * 8)); ...
[ "lixuefei9679@gmail.com" ]
lixuefei9679@gmail.com
bdbe70c31a05fc1f05fff56b46e0c2b67a9f41d2
ff80e04350e0dec61088cc88bddd4e886eee55fe
/src/common/unique-ptr-cast.hpp
25f09f322f400515940a6ad6f3accee670593fda
[ "MIT" ]
permissive
NGIOproject/NORNS
543d732ab54e5e1662551abb106a61acf59532f9
4fd2d181019eceadb8b1b04a94e3756476326239
refs/heads/master
2020-05-27T23:32:49.920135
2019-07-01T13:22:22
2019-07-01T13:22:22
188,820,209
2
0
null
null
null
null
UTF-8
C++
false
false
3,841
hpp
/************************************************************************* * Copyright (C) 2017-2019 Barcelona Supercomputing Center * * Centro Nacional de Supercomputacion * * All rights reserved. * * ...
[ "alberto.miranda@bsc.es" ]
alberto.miranda@bsc.es
c0f631172be207337f1513663e53de192acb25f9
76ce5c0ee753b9516c6114f2eb114cfe726dc7d5
/Stockfish/search.h
a2a02edac3ed2c63217808aee07c23b459a4abab
[]
no_license
tranhoangduong1994/iot-chess
583e473f8e030eea955cfed28f8e81f73d7efa36
9208eada0bbf3bda6923facfbf44ae183304e371
refs/heads/master
2021-09-03T08:27:58.579149
2018-01-07T14:34:23
2018-01-07T14:34:23
108,617,989
1
0
null
null
null
null
UTF-8
C++
false
false
3,182
h
/* Stockfish, a UCI chess playing engine derived from Glaurung 2.1 Copyright (C) 2004-2008 Tord Romstad (Glaurung author) Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad Copyright (C) 2015-2017 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad Stockfish is free software: you can re...
[ "tranhoangduong110@gmail.com" ]
tranhoangduong110@gmail.com
6f46d4e6638d5c7cb5efcaae3d35b54bda7084d2
f9a3f11ee028cdb73b22b7fa18648c0abb5f425d
/HackerRank/IceCreamParlor_map.cpp
6725f892c4936e9e978a487ecd55da32e62bc936
[]
no_license
pearldarkk/C-Cplusplus
431e17343ca6a1859aca1dc1b8a353afa7d23a87
43b5f656c9e7dd0a7866f50c69a0c49ad115c2f1
refs/heads/main
2023-08-22T05:43:32.770939
2021-10-26T13:36:18
2021-10-26T13:36:18
null
0
0
null
null
null
null
UTF-8
C++
false
false
593
cpp
#define M 1000000007 #include <bits/stdc++.h> using namespace std; typedef long long ll; typedef unsigned long long ull; typedef pair <int, int> ii; typedef vector <int> vi; typedef vector <ii> vii; int main() { int t; cin >> t; while (t--) { int m, n; cin >> m >> n; vi v...
[ "ng.ahn.pd@gmail.com" ]
ng.ahn.pd@gmail.com
cdfdefaac1f00c3ca68d1f30b9b3d90c6c39c902
abef0d6249dd3bb75ecb755f7ce185d369350353
/codeforces/1203/D1.cpp
89a988b93aa6f26b4af893b7618e7ea0aafa358a
[]
no_license
ipaljak/oj
01009947d9df0b9986bd542dd340566b4697fa7d
dce61d8c4e3a3efd1c6abea6f6891294800cd1c4
refs/heads/master
2023-05-11T06:31:40.164892
2021-06-04T14:37:00
2021-06-06T17:31:35
327,563,559
2
0
null
null
null
null
UTF-8
C++
false
false
1,290
cpp
#include <bits/stdc++.h> using namespace std; #define TRACE(x) cerr << #x << " " << x << endl #define FOR(i, a, b) for (int i = (a); i < int(b); ++i) #define REP(i, n) FOR(i, 0, n) #define _ << " " << typedef long long llint; const int MOD = 1e9 + 7; const int MAXN = 2e5 + 10; int ns, nt; char s[MAXN], t[MAXN]; in...
[ "ipaljak@gmail.com" ]
ipaljak@gmail.com
282b151b80f9d45139cbbadc6b581f8e93beef5a
b825e6c1d570d9939c3b0da95549a865922c09a1
/include/phan/phan.hpp
adf11ea4a7dc0b55e8a97b1ef6e9c75f51d24ab7
[ "Apache-2.0" ]
permissive
phiwen96/phan
12dc378dbc99e806c2dc9760d777c62ab8853a73
61bd47d57dc6d0e7a92c6e9db676f5d76ed8edb4
refs/heads/main
2023-08-23T14:54:35.903000
2021-11-03T15:45:34
2021-11-03T15:45:34
345,117,517
3
1
null
null
null
null
UTF-8
C++
false
false
251
hpp
#pragma once #include <vector> #include <tuple> /// \brief Accumulate a vector to produce the mean and the first moment of the distribution. /// /// This computes the mean and the first moment of a vector of double values. /// #define KUKEN hej
[ "38218064+phiwen96@users.noreply.github.com" ]
38218064+phiwen96@users.noreply.github.com
cd50e10034d22a8ae0bd4e74a243b1b544e220ba
01b761a0eb1494ab9e798c64e28e53095d87c502
/chapter_five/5_2VoidFunction.cpp
cd2ba295950c33e06254ba4e686145c171519653
[]
no_license
Ryoung27/C-Intro-Course
6ae6360bbc21e55ad6b39a66569a9f6a744e0372
086bf5c10945af874555a7302fc137b193fa10e2
refs/heads/master
2023-01-24T18:47:57.420522
2020-12-03T01:05:27
2020-12-03T01:05:27
287,614,637
0
0
null
null
null
null
UTF-8
C++
false
false
1,320
cpp
//Program to convert a Fahrenheit temperature to a Celsius temperature. #include <iostream> void initializeScreen(); //Separates current output from //the output of the previously run program. double celsius(double fahrenheit); //Converts a Fahrenheit temperature //to a Celsius temperature. void showResults(double f...
[ "RRYoung89@gmail.com" ]
RRYoung89@gmail.com
d86f69d877441b16c8c557c693f071e34976d100
f38ea1c549ecd682a6975752897351c317a8bd22
/2018/10/03/[U41568]Agent1.cpp
23c0903124ff34be81f2f1e995d539cbd128fa93
[ "Unlicense" ]
permissive
skylayer/OiCodeRepo
d7911e462f3c20c156138d9d0b9de7b177962764
c386efbd790ace5d39db6741b8ae9ec954e3cfc1
refs/heads/master
2021-10-08T04:11:16.126102
2021-10-07T12:57:05
2021-10-07T12:57:05
149,401,444
1
0
null
null
null
null
UTF-8
C++
false
false
450
cpp
#include<bits/stdc++.h> using namespace std; const int inv2=500000004; const int p=1e9+7; int n; inline int fpow(int index) { long long base=2,ans=1; while(index) { if(index&1) ans=ans*base%p; base=base*base%p; index>>=1; } return ans; } long long ans; long long bot,top;...
[ "1262500438@qq.com" ]
1262500438@qq.com
ab6e1b7dd823bc2d569cce8338c95ad493b94744
f80af86cad57bf091d27e89052214ca29d3b3a16
/3rd Year/2nd Semester/Computação Gráfica/Trabalho Prático/Fase 3/Motor/rotacao.cpp
2ef1fc71cb39cdb10041650ef4b58415f8da70ef
[]
no_license
diogoesnog/MIEI
44719dce30177ae877b2bdb90ec73a606e64ce63
322b03a561937be91af7158be888227bae75f5c4
refs/heads/master
2022-08-20T14:34:37.136699
2022-07-27T22:08:23
2022-07-27T22:08:23
249,830,783
6
0
null
null
null
null
ISO-8859-1
C++
false
false
1,132
cpp
#include <stdlib.h> #include <GL/glew.h> #include <GL/glut.h> #include "rotacao.h" // Inserção de uma nova rotação. Rotacao inserirRotacao(float periodo, float angulo, float x, float y, float z, Rotacao rotacoes){ Rotacao rotacao=NULL, novasRotacoes=rotacoes; // Criamos uma nova rotação com os valore...
[ "34174814+diogoesnog@users.noreply.github.com" ]
34174814+diogoesnog@users.noreply.github.com
ca6b89554b1177c0df836e1c29297b971f0e4111
14a9c15033ada6562220569b8b79fa4ce7a10c1c
/fhq-jury-ad/src/checker/service_checker_thread.cpp
2876efed9e7267076e8028c62d5bb7c4bead4667
[ "MIT" ]
permissive
nhthongDfVn/Attack-Defense-PTIT
a677418ec8575eed941aa94e6a711bb583a97e24
82cc83e8de05d56097ffedfd9d5072715769c571
refs/heads/master
2022-04-12T08:48:37.298288
2020-04-10T20:56:40
2020-04-10T20:56:40
null
0
0
null
null
null
null
UTF-8
C++
false
false
10,667
cpp
#include "service_checker_thread.h" #include <unistd.h> #include <dorunchecker.h> #include <iostream> #include <sstream> #include <wsjcpp_core.h> #include <chrono> #include <thread> #include <sys/types.h> #include <sys/wait.h> #include <sys/select.h> #include <sys/time.h> #include <sys/types.h> #include <unistd.h> #i...
[ "mrseakg@gmail.com" ]
mrseakg@gmail.com
9f8e311397f22f80ed30af7f4f640e4730e86ebe
067690553cf7fa81b5911e8dd4fb405baa96b5b7
/11383/11383.cpp
e5d2f7bfccafc48334f83e2641d3efca4c60af32
[ "MIT" ]
permissive
isac322/BOJ
4c79aab453c884cb253e7567002fc00e605bc69a
35959dd1a63d75ebca9ed606051f7a649d5c0c7b
refs/heads/master
2021-04-18T22:30:05.273182
2019-02-21T11:36:58
2019-02-21T11:36:58
43,806,421
14
9
null
null
null
null
UTF-8
C++
false
false
545
cpp
#include <cstdio> #include <iostream> #include <algorithm> #include <string> using namespace std; string str[10], cmp; int main() { int n, m; scanf("%d %d", &n, &m); for (int i = 0; i < n; i++) cin >> str[i]; bool re = true; for (int i = 0; i < n; i++) { cin >> cmp; bool check = true; if (cmp.size() ==...
[ "isac322@naver.com" ]
isac322@naver.com
90bbc890def8efaf3f83c29852db82ef74d2007c
b4a537160bc8aee055534280b8564992d05d4245
/01000/01026.cpp
766df2c3648ecff761b62080fc36d1ac378291c7
[]
no_license
kadragon/acmicpc
c90d8658969d9bcbecd7ac45a188ac1ad4ad1dd3
b76bb7b545256631212ea0a2010d2c485dbd3e40
refs/heads/master
2021-07-13T01:45:03.963267
2021-04-18T07:33:08
2021-04-18T07:33:08
244,813,052
0
0
null
null
null
null
UTF-8
C++
false
false
479
cpp
// // Created by kangdonguk on 2020/04/20. // // https://www.acmicpc.net/problem/1026 // 보물 #include <stdio.h> #include <algorithm> int a[51], b[51]; int main() { int n, ans = 0; scanf("%d", &n); for (int i = 0; i < n; i++) scanf("%d", &a[i]); for (int i = 0; i < n; i++) scanf("%d"...
[ "kangdongouk@gmail.com" ]
kangdongouk@gmail.com
087a5d9596483a0a61458db8363d9f4652e8179a
72a34695ac04f09f4412b2a71b4385115ab36ddf
/scene/3d/immediate_geometry.cpp
1459f2c36275eb1736ca1ca8badf353b1a06716a
[ "MIT" ]
permissive
seraph526/godot-se
62c642010b4cd29befde53feba4c99debfc12143
b5f95845fe87dcc0e7ae796006588fa368f8bb3e
refs/heads/master
2021-01-21T01:27:24.785362
2015-05-06T07:34:03
2015-05-06T07:34:03
21,894,625
6
1
null
null
null
null
UTF-8
C++
false
false
2,461
cpp
#include "immediate_geometry.h" void ImmediateGeometry::begin(Mesh::PrimitiveType p_primitive,const Ref<Texture>& p_texture) { VS::get_singleton()->immediate_begin(im,(VS::PrimitiveType)p_primitive,p_texture.is_valid()?p_texture->get_rid():RID()); if (p_texture.is_valid()) cached_textures.push_back(p_texture); ...
[ "reduzio@gmail.com" ]
reduzio@gmail.com
b92144b0aa11bf0d78a2d29c4ab4458dd8cf1226
f6439b5ed1614fd8db05fa963b47765eae225eb5
/chrome/browser/safe_browsing/safe_browsing_service.cc
277b910f3c6e7adc7dfc099a4d34b64503dc8b4e
[ "BSD-3-Clause" ]
permissive
aranajhonny/chromium
b8a3c975211e1ea2f15b83647b4d8eb45252f1be
caf5bcb822f79b8997720e589334266551a50a13
refs/heads/master
2021-05-11T00:20:34.020261
2018-01-21T03:31:45
2018-01-21T03:31:45
118,301,142
2
0
null
null
null
null
UTF-8
C++
false
false
18,377
cc
// 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/safe_browsing/safe_browsing_service.h" #include <vector> #include "base/bind.h" #include "base/bind_helpers.h" #include "ba...
[ "jhonnyjosearana@gmail.com" ]
jhonnyjosearana@gmail.com
5052e6fcd14725aeb65999d4debdf12400e42f93
0c360ce74a4b3f08457dd354a6d1ed70a80a7265
/src/components/application_manager/include/application_manager/commands/mobile/delete_file_request.h
adaf2686bc3c2be906450e8759910ecccb5605cf
[]
permissive
APCVSRepo/sdl_implementation_reference
917ef886c7d053b344740ac4fc3d65f91b474b42
19be0eea481a8c05530048c960cce7266a39ccd0
refs/heads/master
2021-01-24T07:43:52.766347
2017-10-22T14:31:21
2017-10-22T14:31:21
93,353,314
4
3
BSD-3-Clause
2022-10-09T06:51:42
2017-06-05T01:34:12
C++
UTF-8
C++
false
false
2,678
h
/* Copyright (c) 2013, Ford Motor Company 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 conditions and the fo...
[ "luwanjia@aliyun.com" ]
luwanjia@aliyun.com
d919868f6d663ca7e4613872faa17caaf4c0c25a
bf42d70a79cc2721ad528d8a9c9c9aea2711d91a
/chrome/browser/background_fetch/background_fetch_delegate_impl.cc
b64adcb71a4b706cb82e4bcaee5e805cd1f5b70f
[ "BSD-3-Clause" ]
permissive
aikuimail/chromium
d2a630e7877c7ae4176cec3aff3f98426e68fc77
3964dbae965aa9bcc02c78aaa3fbbca98d8d51ec
refs/heads/master
2023-03-17T22:41:57.541727
2018-07-26T23:05:22
2018-07-26T23:05:22
141,418,907
0
0
null
2018-07-18T10:22:04
2018-07-18T10:22:03
null
UTF-8
C++
false
false
19,685
cc
// Copyright 2017 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/background_fetch/background_fetch_delegate_impl.h" #include <utility> #include "base/bind.h" #include "base/guid.h" #include "b...
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
f24454fd9eb700c15df3d5c4fba01967933f6cef
86313bc995d91a485592990d0e7b1aff7f49de1a
/anrobot/src/inv_kinematics.cpp
d784cf5ec72edd7c20544f2a4831136e5a337191
[]
no_license
mingless/ANRO
3265648694531a19f634310eaac244f3d3dafc7d
0e5ea0feb14a10bc401909e29a4f0804680d9247
refs/heads/master
2021-01-11T01:23:40.890287
2017-01-13T10:44:57
2017-01-13T10:44:57
70,685,784
0
2
null
null
null
null
UTF-8
C++
false
false
2,572
cpp
#include <ros/ros.h> #include <sensor_msgs/JointState.h> #include <geometry_msgs/Point.h> #include <anrobot/InvKinematics.h> #include <anrobot/SetTarget.h> #include <math.h> class States { private: ros::NodeHandle n; ros::Publisher target_pub; ros::ServiceServer inv_kin, set_end_target; public: States() { ...
[ "mateusz.dziwulski@gmail.com" ]
mateusz.dziwulski@gmail.com
9a90e437445fba142c90e75cc90cebbf3ece9c50
e77875e7b17ff555b1b2eb67fb708ec9015c1a37
/CSE_CSUSB/cse520/project/pokemon_bkp.cpp
a7f238d83ead0bf96a34a7b30592ccc26fa19c02
[]
no_license
AndyGaming/Andrew_Repo
5380070104c203a5100b7d5a5502aea0dae21097
8bce29982a31197b9c39f785098d9dbd34def6a2
refs/heads/master
2021-01-21T12:15:30.182902
2018-02-23T01:41:29
2018-02-23T01:41:29
102,053,193
0
0
null
null
null
null
UTF-8
C++
false
false
18,695
cpp
/******************************************************************************************** Matching Pokemon game Programmer: Yazhuo Liu Samuel Moreno This program used a template program. The template program is the simpletex.cpp program wrote by Dr. T.L.Yu (2009). **************************************...
[ "u1089896@ad.utah.edu" ]
u1089896@ad.utah.edu
7e60887f97b5672d776ba4d70ad16f36d2063645
d402b9a7cf1aa4a7c4b56897050988e8158ba9f6
/mbed/hal/common/SPI.cpp
d3feefe3817c0c502a1fe8762f5b1a31193bc154
[]
no_license
kgoba/DroneSTM
e968e60515fd8bb5b7a09c1a853ef6872e6b1089
17b007315927c9b4e01bc901768a078f9b8bdf0e
refs/heads/master
2021-01-19T02:25:05.992556
2016-11-05T15:19:34
2016-11-05T15:19:34
61,637,938
1
0
null
null
null
null
UTF-8
C++
false
false
5,022
cpp
/* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited * * 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 re...
[ "karlis.goba@gmail.com" ]
karlis.goba@gmail.com
9873d30a3aa0759b2cdf103b23498de53a733587
260e5dec446d12a7dd3f32e331c1fde8157e5cea
/Indi/SDK/Indi_SentrySabre_AnimBP_functions.cpp
a3cb6749ccefd73d97fe635c90e90a93e1b60c42
[]
no_license
jfmherokiller/TheOuterWorldsSdkDump
6e140fde4fcd1cade94ce0d7ea69f8a3f769e1c0
18a8c6b1f5d87bb1ad4334be4a9f22c52897f640
refs/heads/main
2023-08-30T09:27:17.723265
2021-09-17T00:24:52
2021-09-17T00:24:52
407,437,218
0
0
null
null
null
null
UTF-8
C++
false
false
1,221
cpp
// TheOuterWorlds SDK #ifdef _MSC_VER #pragma pack(push, 0x8) #endif #include "Indi_SentrySabre_AnimBP_parameters.hpp" namespace SDK { //--------------------------------------------------------------------------- //Functions //--------------------------------------------------------------------------- // Function ...
[ "peterpan0413@live.com" ]
peterpan0413@live.com
79cea84da0fff4598037b92ad5ccf766b3ef3c97
c094d381422c2788d67a3402cff047b464bf207b
/c++_primer_plus/c++_primer_plus/p675vector类.cpp
2e90a0d0851aedda017c52fed862a0e206caa7d2
[]
no_license
liuxuanhai/C-code
cba822c099fd4541f31001f73ccda0f75c6d9734
8bfeab60ee2f8133593e6aabfeefaf048357a897
refs/heads/master
2020-04-18T04:26:33.246444
2016-09-05T08:32:33
2016-09-05T08:32:33
67,192,848
1
0
null
null
null
null
WINDOWS-1252
C++
false
false
731
cpp
#include <iostream> #include <string> #include <vector> const int NUM = 5; int main(void) { using std::vector; using std::string; using std::cin; using std::cout; vector<int> ratings(NUM); // int ¹æ·¶ vector<string> titles(NUM); // string ¹æ·¶ cout << "You will do exactly as told. You will enter\n" << NUM...
[ "heabking@gmail.com" ]
heabking@gmail.com
4c04f30f14270ca1ced8a14c6db2350c8265a25c
6e3b592de89cb3e7d594993c784e7059bdb2a9ae
/Source/AllProjects/CQCIntf/CQCIntfEd/CQCIntfEd_ErrList.cpp
54bda4b9583b3e5a6c8c259063731c392d5bc14b
[ "MIT" ]
permissive
jjzhang166/CQC
9aae1b5ffeddde2c87fafc3bb4bd6e3c7a98a1c2
8933efb5d51b3c0cb43afe1220cdc86187389f93
refs/heads/master
2023-08-28T04:13:32.013199
2021-04-16T14:41:21
2021-04-16T14:41:21
null
0
0
null
null
null
null
UTF-8
C++
false
false
8,836
cpp
// // FILE NAME: CQCIntfEd_ErrList.cpp // // AUTHOR: Dean Roddey // // CREATED: 03/28/2016 // // COPYRIGHT: Charmed Quark Systems, Ltd @ 2020 // // This software is copyrighted by 'Charmed Quark Systems, Ltd' and // the author (Dean Roddey.) It is licensed under the MIT Open Source // license: // // https://opens...
[ "droddey@charmedquark.com" ]
droddey@charmedquark.com
423b7baa79798ef359bcfbf1ac10061d1ed3188e
e0e8164032260be6f6a9042e4bcf945bfc1dd227
/list08/Exercise02/src/House.cpp
cd11971233b0727ee87b005c350904582386aabe
[]
no_license
claudiomarpda/lab_lp1
0494970a76478f4f3ba27828f189991847071c25
2d3ec5bbf3d1c6381ff296a6e748ef72e9953118
refs/heads/master
2020-02-26T14:24:29.484175
2017-05-04T14:34:29
2017-05-04T14:34:29
83,693,884
0
0
null
null
null
null
UTF-8
C++
false
false
854
cpp
#include <iomanip> #include <sstream> #include "House.h" House::House(const Address &address, int numberOfFloors, int numberOfRooms, double landArea, double builtArea) : Immobile(address), numberOfFloors(numberOfFloors), numberOfRooms(numberOfRooms), landArea(landArea), builtArea(builtArea) {} const...
[ "claudiomarpda@gmail.com" ]
claudiomarpda@gmail.com
e82ff716fca4995a311e1c58d129a39a53ba001c
d971d68ba43f4797fc8769ccec028943441cc9f6
/client/chat_client.cpp
648551c7818d5fec8e2aac9712c3e4c081e091aa
[]
no_license
teemoking/welchat
228b6d63f317b5b113684923eae164fe597b5c9d
0572f2469564c5eb27c972a9a13393f63aacc5ce
refs/heads/master
2020-04-25T22:00:26.879163
2019-02-28T11:17:24
2019-02-28T11:17:24
173,097,797
0
0
null
null
null
null
UTF-8
C++
false
false
571
cpp
/* #*********************************************** # # Filename: chat_client.cpp # Author:teemo_king # Email: Mp - AK1028430241@gmail.com # Description: --- # Create: 2018-04-21 00:05:05 # Last Modified: 2018-04-21 00:05:05 #*********************************************** */ #include "clie...
[ "AK1028430241@gmail.com" ]
AK1028430241@gmail.com
3858bf724b200eb2fa61536f4542827ee4ccad18
e49a52783c0ac3cde973fee8d4d4dd390cb48305
/alg_prim_kruskal/tests/test_case_grafo.hpp
307078709c4fc38d9624fd93656f87f329b973e4
[ "MIT" ]
permissive
rmmariano/trabalho_alg_prim_kruskal
7e3d32ccd0b42aa91bfd75ce41ca6e3bd77f1b52
d0bb02dbdf0de212fb3757c1515d524e573e858a
refs/heads/master
2020-12-30T15:54:13.223798
2017-05-23T22:38:33
2017-05-23T22:38:33
91,179,992
0
3
null
2017-05-23T22:38:34
2017-05-13T14:30:03
C++
UTF-8
C++
false
false
1,968
hpp
#ifndef TEST_CASE_GRAFO_H #define TEST_CASE_GRAFO_H #include "../algorithms/graph.hpp" void teste_grafo(){ Graph g(true); //grafo orientado //Insere vertices cout << "================================ Insere vertices ================================"<< endl; Vertice v0("A"); int idvA = g.insereVe...
[ "rhuan_ecc@hotmail.com" ]
rhuan_ecc@hotmail.com
86bf8556fd98cc01791b0ba4ebdb3db22577b13c
35bbda72564710e4705c6edde813e9e3f512749a
/Code/CocoMake7_TouchMIDI_ONE_velocity_RENAMED/CocoMake7_TouchMIDI_ONE_velocity_RENAMED.ino
78f71b119856a36ccc79f974e744b5bc2599ee19
[]
no_license
HackEduca/Getting-Started
fb246afaefbd4475779d03e121f726f2f7bd63fb
1299e3d1342cf20bbcbff115cdb6d79fa68f19cd
refs/heads/master
2020-06-12T20:18:10.097588
2017-03-03T09:13:08
2017-03-03T09:13:08
194,413,388
0
0
null
2019-06-29T14:19:08
2019-06-29T14:17:26
C++
UTF-8
C++
false
false
4,212
ino
#define USE_MIDI #define USE_VELO #ifdef USE_MIDI #include <CocoMidi.h> MIDIMessage midimsg; #endif #ifdef USE_KEYBOARD #include <CocoKeyboard.h> #endif #include <CocoTouch.h> #include "CocoTouchFilterSetting.h" char key[] = {'C','O','C','O','M','A','K','E','7',' ','O','N','E','!',' '}; //TeenyTouchDusjagr test2;...
[ "marc@dusseiller.ch" ]
marc@dusseiller.ch
b332280ae890f377464e578c9cba710ac6a3b423
59c47e1f8b2738fc2b824462e31c1c713b0bdcd7
/006-All_Test_Demo/CgiTcpServer/wificommunication.h
4b8e90cffa3574af759a921b1f9caf804d144484
[]
no_license
casterbn/Qt_project
8efcc46e75e2bbe03dc4aeaafeb9e175fb7b04ab
03115674eb3612e9dc65d4fd7bcbca9ba27f691c
refs/heads/master
2021-10-19T07:27:24.550519
2019-02-19T05:26:22
2019-02-19T05:26:22
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,016
h
#ifndef WIFICOMMUNICATION_H #define WIFICOMMUNICATION_H #include <QObject> #include <QByteArray> #include <QTimer> #include <QString> #include <QCoreApplication> #include <QJsonDocument> #include <QJsonArray> #include <QJsonValue> #include <QJsonParseError> #include <QJsonObject> #include <QVariantMap> #include "tcp...
[ "1343726739@qq.com" ]
1343726739@qq.com
6d952f182b799def26b645c124306f7dcf2aba17
e94bdcc7f716117d34af2442096dd3be1331e5e1
/Classes/Analysis/BalloonAnalysis.cpp
1a531307439117095ffcf2f54d7948159f74d8e7
[]
no_license
sosoayaen/PokeBalloon
a451188c92ec85c94568a63a300cf30ca3c2a8a9
494af56f900bfc029ff9827920191536d99a499e
refs/heads/master
2016-09-06T13:08:48.120159
2014-09-22T07:21:26
2014-09-22T07:21:26
null
0
0
null
null
null
null
UTF-8
C++
false
false
13,017
cpp
/* * ===================================================================================== * * Filename: BalloonAnalysis.cpp * * Description: * * Version: 1.0 * Created: 06/13/2014 01:09:16 * Revision: none * Compiler: gcc * * Author: Jason Tou (), sosoayae...
[ "sosoayaen@gmail.com" ]
sosoayaen@gmail.com
b8237907f2562337623db8a1ae5d6317c36bc7f7
d8efaf8e35f7d203d50cb4f87bc7313187d9f6e1
/build/Android/Preview/MyFirstFuseProject/app/src/main/include/Fuse.Controls.Native.Android.Button.h
ed58f4c9fb0ff7fe5144500f55fce134af44119c
[]
no_license
eddzmaciel/fproject_fp
fe33dc03b82047e88fad9e82959ee92d6da49025
2760ddb66c749651f163c3c1a3bc7b6820fbebae
refs/heads/master
2020-12-04T12:38:37.955298
2016-09-02T02:23:31
2016-09-02T02:23:31
67,182,558
0
0
null
null
null
null
UTF-8
C++
false
false
1,405
h
// This file was generated based on C:\ProgramData\Uno\Packages\Fuse.Controls.Native\0.33.5\Android\$.uno. // WARNING: Changes might be lost if you edit this file directly. #pragma once #include <Fuse.Controls.Native.Android.LeafView.h> #include <Fuse.Controls.Native.ILabelView.h> #include <Fuse.Controls.Native.ILeafV...
[ "Edson Maciel" ]
Edson Maciel
6c6c634948ed90b33db759163c4ca861359c6fa4
0c8d32541c551becff64126f10a408ebc16e5479
/数据结构实践教程徐慧源码/8_ ˜/Thread/InThreading/Base.cpp
99ee9c7242d8dfb839124fa6482adf0e5990eac6
[]
no_license
nlpcvai/datastructure
ba9c55f7af94f9c440169273d2cbc5b48eb9846c
693c770cd5be0f638a3d871a53b5178e03909e93
refs/heads/master
2020-04-21T11:29:43.910876
2019-06-08T02:44:20
2019-06-08T02:44:20
169,527,465
0
0
null
2019-02-07T07:06:16
2019-02-07T06:12:20
C++
GB18030
C++
false
false
2,769
cpp
#include<iostream> #include "windows.h" using namespace std; //定义线索二叉树的结点类型 template <class T> struct BiThrNode { T data; //数据域 int lflag; //左标志域 int rflag; //右标志域 BiThrNode<T> *lchild; //左指针域 BiThrNode<T> *rchild; //右指针域 }; //--------------------------------------------------------------------...
[ "mason@Masons-MacBook-Pro.local" ]
mason@Masons-MacBook-Pro.local
171fcff5f853ed3aa3c85ff70fb97b0ca85ae07a
78702fe7939d3d4a245148172825c70c1c181ae0
/le_style_initializer.hpp
3b2b1be019b69e497cddfe40d68052be07d5009b
[]
no_license
chrisdjscott/pspectre-cuda
54a7cb6745a00c1a95f30c24a643418ca16728a1
685c3cc87b709984b3783f310a6a6b0da0c1d4e3
refs/heads/master
2021-01-20T11:51:39.416184
2016-11-22T22:28:31
2016-11-22T22:28:31
75,973,104
0
0
null
2016-12-08T20:35:44
2016-12-08T20:35:44
null
UTF-8
C++
false
false
2,468
hpp
/* * SpectRE - A Spectral Code for Reheating * Copyright (C) 2009-2010 Hal Finkel, Nathaniel Roth and Richard Easther * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must ret...
[ "cliu712@aucklanduni.ac.nz" ]
cliu712@aucklanduni.ac.nz
9a88648ca7e1794565d77b8d65ad05a4b713292d
f281d0d6431c1b45c6e5ebfff5856c374af4b130
/DAY200~299/DAY223-programmers-길 찾기 게임/joohyuk.cpp
3c80b275e9f6c5b68e863d189de2fc99538086eb
[]
no_license
tachyon83/code-rhino
ec802dc91dce20980fac401b26165a487494adb4
b1af000f5798cd12ecdab36aeb9c7a36f91c1101
refs/heads/master
2022-08-13T09:10:16.369287
2022-07-30T11:27:34
2022-07-30T11:27:34
292,142,812
5
6
null
null
null
null
UTF-8
C++
false
false
2,450
cpp
#include <iostream> #include <algorithm> #include <vector> #define endl '\n' using namespace std; vector<pair<int, pair<int, int>>> coords; vector<pair<int,int>>coordMap; struct Tree{ int n,root,previous; vector<int>parent; vector<int>lc,rc; vector<vector<int>>ret; vector<int>pre; vector<int>po...
[ "noreply@github.com" ]
tachyon83.noreply@github.com
aacdf91f0d6c087b3102f25c8bc4c9e0f725666a
7f8671aba692d8af83a4bc2d252d01a101b534c6
/Animal.cpp
6b1a169568f858d283306a957934483508df4a6c
[]
no_license
KonstantinaTodorova/Week12task1
51d5016a61a11f6200a7651d78ae748e6128f589
51ea0da7bbc95a755d868e63469bcc8ca82a5a9e
refs/heads/master
2020-07-23T07:36:23.311347
2017-06-14T17:06:37
2017-06-14T17:06:37
94,353,095
0
0
null
null
null
null
UTF-8
C++
false
false
98
cpp
#include "Animal.h" Animal::Animal() { //ctor } Animal::~Animal() { //dtor }
[ "noreply@github.com" ]
KonstantinaTodorova.noreply@github.com
63cc7afc5d082b9ad6c9321b0a789fbacb686930
831ec03d2c55693fe95dd4dcbcbebb7c4853dea9
/sdl02_text/Shader.h
99aacb29a70537199fb627ace0508a94e3d4ea4f
[]
no_license
FrankEndriss/opengltest
f0f4842e6be849c9da876c0d1e3fd8fb669ba39a
e038c625514b140042e181402980c4cf8508cad9
refs/heads/master
2021-09-01T15:03:07.219661
2017-12-27T15:37:18
2017-12-27T15:37:18
112,651,243
0
0
null
null
null
null
UTF-8
C++
false
false
730
h
#ifndef SHADER_H_ #define SHADER_H_ #include "gl_include.h" #include <ostream> #include <string> /** Shader-Compiler interface. */ class Shader { public: /** @param type GL_FRAGMENT_SHADER or GL_VERTEX_SHADER */; Shader(GLenum type); virtual ~Shader(); /** Frontend to compile(source...) * @param path to so...
[ "Frank.Endriss@bancos.com" ]
Frank.Endriss@bancos.com
4058e3e835df346b9ca755ee730041c09e21d812
70e0667e2281db6f67ac44a179164474a588dd3c
/cyber/transport/qos/qos_profile_conf.h
94c07d33f308dc1a834543e2a65197445cee6c9c
[ "Apache-2.0" ]
permissive
L-Net-1992/apollo_windows
dd06bfaf648179c9334b87d1aa8dc11878a78a83
78db2493b7356f012ec5342c27c11ff592c664c5
refs/heads/master
2023-03-17T15:13:11.221761
2020-05-04T13:41:37
2020-05-04T14:28:08
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,210
h
/****************************************************************************** * Copyright 2018 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 the License at ...
[ "mjopenglsdl@gmail.com" ]
mjopenglsdl@gmail.com
d0f17d4977ef18c45c10dc55c28358f1e2cbe48d
c02e6a950d0bf2ee8c875c70ad707df8b074bb8e
/build/Android/Release/bimcast/app/src/main/include/Uno.Threading.FutureState.h
37a04d7fac167e26bdb084197903fe0a0904745a
[]
no_license
BIMCast/bimcast-landing-ui
38c51ad5f997348f8c97051386552509ff4e3faf
a9c7ff963d32d625dfb0237a8a5d1933c7009516
refs/heads/master
2021-05-03T10:51:50.705052
2016-10-04T12:18:22
2016-10-04T12:18:22
69,959,209
0
0
null
null
null
null
UTF-8
C++
false
false
337
h
// This file was generated based on C:\ProgramData\Uno\Packages\Uno.Threading\0.35.8\$.uno. // WARNING: Changes might be lost if you edit this file directly. #pragma once #include <Uno.Int.h> namespace g{ namespace Uno{ namespace Threading{ // public enum FutureState :185 uEnumType* FutureState_typeof(); }}} // ::g...
[ "mabu@itechhub.co.za" ]
mabu@itechhub.co.za
998f4f025a735f011df64dafc3c3ef6ba1f17835
bb34d131b3afdf3b30d9ddde92eb10b62dc35c93
/Original/Ball.cpp
ae626af60059d765882d961e02b5733588f02e8d
[]
no_license
SKY-Crew/libraries
f92739783ccd3538667912f4d72081ee32fc07a9
4b5b8c662fefec602a5265fe590cc280f2844445
refs/heads/master
2020-04-13T08:45:16.913876
2019-09-07T10:53:44
2019-09-07T10:53:44
163,091,118
4
0
null
null
null
null
UTF-8
C++
false
false
4,200
cpp
#include "Ball.h" Ball::Ball(uint8_t QTY, uint8_t *PORT, uint8_t MEASURING_COUNT, uint16_t THRE_WEAK, double CHANGE_RATE, double CHANGE_RATE_T, double PLUS_T, uint8_t SIZE_THRE_DIST, double *THRE_DIST, uint8_t SIZE_DIR, double **DIR, double **PLUS_DIR, uint8_t P_CATCH, uint16_t THRE_CATCH, uint16_t MAX_C_CATCH, uin...
[ "43493783+SKY-Crew@users.noreply.github.com" ]
43493783+SKY-Crew@users.noreply.github.com
90afa82c6cd206b5c9a9fd8e14b043a99351de81
d01c898d2fe3acccb7ab5307af74b0a43605ff7c
/SerialCom/ATCommandResponsePacket.h
5d17343a14423987d6eb7c10705046245354e249
[]
no_license
roelstorms/zigbeeWSN
66a6dcf6abe7f9df7e7679001ec19d4ab757c3b3
de08d3005fc4982ae3e70ce8bbb50ed1e77e08da
refs/heads/master
2020-04-15T19:00:06.571864
2013-04-12T09:20:42
2013-04-12T09:20:42
8,478,209
1
0
null
null
null
null
UTF-8
C++
false
false
954
h
#ifndef ATCOMMANDRESPONSEPACKET_H #define ATCOMMANDRESPONSEPACKET_H #include <string> #include <stdio.h> /* Standard input/output definitions */ #include <iostream> #include "packet.h" class ATCommandResponsePacket : public Packet { private: unsigned char frameID, commandStatus; std::vector <unsigned char> ATCom...
[ "roelstorms@hotmail.com" ]
roelstorms@hotmail.com
bf827c52bf02b5f40885688e384030e5e2e6fb0a
fca4a88a76d9f255cb975395bb49c87ef2af0f66
/src/common/GlobalParameters.cc
a32d76fe891661e8d30baaa02ba723b33b50c0ec
[]
no_license
aarizaq/Oversim-20121206
110d57b1f171221fd1d72ee70acaa883f5778fb6
84124b18033c9beb24e4826aa85485683ce75b2a
refs/heads/master
2021-05-04T10:42:37.041454
2017-01-30T19:08:17
2017-01-30T19:08:17
8,455,640
2
4
null
null
null
null
UTF-8
C++
false
false
1,209
cc
// // Copyright (C) 2007 Institut fuer Telematik, Universitaet Karlsruhe (TH) // // 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 la...
[ "aarizaq_m@hotmail.com" ]
aarizaq_m@hotmail.com
7114709a508fe4d6aa8e3c3e28d101731058da97
e39117e739995759b9407a400846e5786e5b5f5d
/include/dish2/genome/KinGroupEpochStamps.hpp
7cd6fe69be5d0c6a056d1f0eb58406ebad6168fb
[ "MIT" ]
permissive
perryk12/dishtiny
5f18c5df1d97a49e58697ec7317773ae5c756ef6
4177f09eed90f3b73f952858677fc4001ac6175a
refs/heads/master
2023-03-28T14:06:56.626589
2021-03-25T05:34:50
2021-03-25T05:36:10
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,293
hpp
#pragma once #ifndef DISH2_GENOME_KINGROUPEPOCHSTAMPS_HPP_INCLUDE #define DISH2_GENOME_KINGROUPEPOCHSTAMPS_HPP_INCLUDE #include <algorithm> #include <utility> #include "../../../third-party/cereal/include/cereal/cereal.hpp" #include "../../../third-party/cereal/include/cereal/types/array.hpp" #include "../../../third...
[ "mmore500.login+git@gmail.com" ]
mmore500.login+git@gmail.com
df3b93d33ac085d7ef0c58c2a971702e05817261
77dfa98a9cc290158c2d1c19629fe42446df821f
/core/lib/AFE-APIs/AFE-API .cpp
7118aa235524976ad03710d73c1d687b11815ff5
[ "MIT" ]
permissive
tandrejko/AFE-Firmware
30289c7d873e0c54104f5c49d4481056c4890928
3ee680e210412a933dc3512185dc7db34ac8027a
refs/heads/master
2022-12-19T18:31:10.140768
2020-10-13T14:23:45
2020-10-13T14:23:45
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,156
cpp
/* AFE Firmware for smart home devices, Website: https://afe.smartnydom.pl/ */ #include "AFE-API.h" AFEAPI::AFEAPI(){}; #ifdef AFE_CONFIG_HARDWARE_LED void AFEAPI::begin(AFEDataAccess *Data, AFEDevice *Device, AFELED *Led) { _Data = Data; _Device = Device; _Led = Led; if (_Device->configuration.api.mqtt) { ...
[ "github@adrian.czabanowski.com" ]
github@adrian.czabanowski.com
dfab78a729cf84d70b0262340d27c5d3c0505b37
7537ec24921bb5451ded39f6e1a7172b901bd2a7
/Tutorial4/from2Dto3D/src/from2Dto3D.cpp
5136b733f4856297369eefd9e9388334a5d8cebe
[]
no_license
chjYuan/Robocupathome
f2a80f8e9ea2790c73fc35ecffbb113d79b2593d
ab5724fc9fd71e839abb4cbb7128556f3038c0e7
refs/heads/master
2022-11-25T12:47:07.836592
2020-07-19T17:57:48
2020-07-19T17:57:48
280,920,965
3
1
null
null
null
null
UTF-8
C++
false
false
265
cpp
#include <from2Dto3D/from2Dto3D.h> int main(int argc, char** argv) { ros::init(argc, argv, "from2Dto3D"); ros::NodeHandle nh; ROS_INFO("Node from2Dto3D starting"); From2Dto3D node(nh); //ros::Rate r(60); ros::spin(); return 0; }
[ "jerrycj@gmail.com" ]
jerrycj@gmail.com
ca7f66005a04bf81ad735ff2bccc84cd282329e4
5886af31cfcb72f3d1a806b4f8a693addf448a9f
/ft_container/list/node.hpp
11d57225e8e504169bc831ec66395fd7601d5ee8
[]
no_license
qmarow/ft_container
15be3f159aea8bf5e4bbc245a8b12e8b41f808ff
5f2e7732cec437f9abcfdc968c7edff971cffcd1
refs/heads/main
2023-04-16T16:19:29.021221
2021-05-04T11:16:23
2021-05-04T11:16:23
364,230,123
0
0
null
null
null
null
UTF-8
C++
false
false
424
hpp
#ifndef NODE_HPP #define NODE_HPP template<typename T> class _node { public: _node *prev; _node *next; T elem; _node(T _elem = T()): prev(0), next(0), elem(_elem) {}; _node():prev(0), next(0) {}; _node(_node *_prev, _node *_next, T _elem = T()): elem(_elem), prev(_prev), next(_next) {}; _node(const _node &...
[ "noreply@github.com" ]
qmarow.noreply@github.com
f765117833d3de90cdff2048bfd518195eaa24a0
5c7a078cbf0b528ba9529e03cfb98d6bda6d57ec
/Level_03/03/Account.cpp
4e2fe89784244b19614c8fc6d27c61c3acc032a3
[]
no_license
LeeJunJae/MyStudy
383bfd9c2d68a374c43f22a5dc65fa11f81ed046
759b13de6ac3ee7b7b9f71c56256353510f696e5
refs/heads/master
2020-03-26T07:59:47.658829
2018-12-18T06:18:49
2018-12-18T06:18:49
144,605,544
0
0
null
null
null
null
UHC
C++
false
false
690
cpp
#include "Account.h" void Account::WithDraw(int money) { this->money += money; } void Account::Deposit(int money) { this->money -= money; } void Account::PrintInfo() { std::cout << "이름 : " << this->name << std::endl; std::cout << "계좌번호 : " << this->account_num << std::endl; std::cout << "잔액 : " << this->money...
[ "wnswo158@gmail.com" ]
wnswo158@gmail.com
1519d5642b480ed2603dc9ec285d37fc171abeb9
c0aed0f338afb5c98f8c3acc777189936ab58cad
/hefur/hefur.cc
4921a9ea8ae06abb06b40e28e969b0ce763c2044
[ "MIT" ]
permissive
Lense/hefur
36b0e01e0570acccdd84a329cb737e958616d8fa
52f6cd25040cd954ab9e7a9172ac4624036a96d9
refs/heads/master
2021-01-20T03:21:21.501637
2020-12-02T02:25:45
2020-12-02T02:25:45
89,526,075
1
4
null
2017-04-26T20:59:20
2017-04-26T20:59:19
null
UTF-8
C++
false
false
1,071
cc
#include <cstring> #include <cerrno> #include "options.hh" #include "log.hh" #include "hefur.hh" #include "fs-tree-white-list.hh" namespace hefur { Hefur::Hefur() : tdb_(new TorrentDb) { instance_ = this; if (!TORRENT_DIR.empty()) wl_.reset(new FsTreeWhiteList(TORRENT_DIR, SCAN_INTERVAL * m::se...
[ "bique.alexandre@gmail.com" ]
bique.alexandre@gmail.com
34bf2e5739b8285faafa47a964c028a3a979bb3e
9cd85e1feba3f899277ea72123b3a28af99674e7
/changeCasse.cpp
dcc0acfaf917797bc69cac0ed664a1db358fb947
[]
no_license
BenoitLedet/casse
0187089b3c5559f9b78d77b3425ac294112d65de
dc7dc64d69955f75d97600cc2cfff36acaef8a97
refs/heads/master
2021-03-31T01:43:21.264996
2018-03-08T10:24:50
2018-03-08T10:24:50
124,372,496
0
0
null
null
null
null
UTF-8
C++
false
false
539
cpp
// changeCasse.cpp // g++ -std=c++11 -Wall -Wextra -o changeCasse.out changeCasse.cpp #include <cctype> #include <iostream> int main() { std::string texte; while(std::getline(std::cin, texte)){ // change les minuscules par des majuscules et réciproquement for (char & c : texte) { if (...
[ "benouille62@live.fr" ]
benouille62@live.fr
014da2e5599ca01c033ba40dca57f0ff68a3e7df
0fbbc463454928ed51e5f7efcab637c0d924c757
/src/Socket/UdpSocket/UdpSocket/tests/src/UdpSocketTests.cpp
a145a8a7515c3dc989bb3d325aee8ff0ab2b3ae4
[]
no_license
zvoronz/unet
b9be18f389234da41434bb15f364b9db31f31ad7
d2522d5a49911f16681b91ae4b56e7d2829d0f0b
refs/heads/master
2020-06-25T05:37:46.617226
2014-08-14T11:41:47
2014-08-14T11:41:47
null
0
0
null
null
null
null
UTF-8
C++
false
false
391
cpp
#include <gtest/gtest.h> #include <Unet/UdpSocket.hpp> TEST ( UdpSocket , DoesNotThrowWhileDefaultConstruction ) { ASSERT_NO_THROW(Unet::UdpSocket()); } TEST ( UdpSocket , DoesNotThrowWhileOpening ) { Unet::UdpSocket udpSocket; ASSERT_NO_THROW(udpSocket.open()); } int main ( int argc , char** argv ) { ...
[ "oleynikovny@mail.ru" ]
oleynikovny@mail.ru
26861540ea5ea4b167ac58b44231d49ece6a4765
fa6dd038bee545feb0512e864488e370a4e50461
/src/ioacas_dll/interface242.cpp
ade2800f4b71c16f8aefd98b186323733ffc852a
[]
no_license
cnfntrvlnss/serv242_09
65a4a110e38cb4b74f2725dbc860488fef3e89b8
06a9e6aadfbc5658775e01c89d8d230484c8150d
refs/heads/master
2021-01-22T04:34:08.401576
2017-03-04T07:08:07
2017-03-04T07:08:07
81,557,878
0
0
null
null
null
null
UTF-8
C++
false
false
5,743
cpp
/************************************************************************* > File Name: interface242.cpp > Author: > Mail: > Created Time: Thu 09 Feb 2017 01:15:46 AM EST ************************************************************************/ #include "interface242.h" #include <sys/types.h> #include <dirent....
[ "zhengshurui@live.com" ]
zhengshurui@live.com
41b45e2310d7780176e804d8348759948c487c68
d94e3f62574489a2674dd83fa8c5f60eb8926d50
/elepheye/lib/Handles.cpp
648ad513bb7d10b2d12853f2adbfe12d46e7a17f
[ "MIT" ]
permissive
zbalkan/Elepheye
1118e6133413cf4e11fbdb893473ee4b37e95fc4
99455c478af8895657f08ba00bc88e7c7ae5c23e
refs/heads/master
2022-09-01T07:51:39.001576
2020-05-25T20:58:23
2020-05-25T20:58:23
266,878,541
0
0
null
null
null
null
UTF-8
C++
false
false
6,248
cpp
/* * Elepheye * * Copyright (c) 2009 Michito Kaji * * 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...
[ "zafer@zaferbalkan.com" ]
zafer@zaferbalkan.com
7f16b13e51c73ef0c2c2147ca3eae53683dabb17
ba8b8f21c24009749dbf1145d0dd6169929e3173
/src/xtopcom/xdata/src/xprovecert.cpp
782d0b9d809e8b52e80ea50c83d56510f6f18190
[]
no_license
Alipipe/TOP-chain
8acbc370738af887ebf4a3d1ccee52b2813d3511
d88c18893bfa88ead5752b74874693819cdf406f
refs/heads/main
2023-07-02T22:37:07.787601
2021-02-11T06:50:46
2021-02-11T06:50:46
357,528,232
0
0
null
2021-04-13T11:29:16
2021-04-13T11:29:15
null
UTF-8
C++
false
false
4,005
cpp
// Copyright (c) 2017-2018 Telos Foundation & contributors // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <string> #include "xbasic/xversion.h" #include "xbasic/xdataobj_base.hpp" #include "xbase/xvblock.h" #include ...
[ "zql0114@gmail.com" ]
zql0114@gmail.com
7aceca0c87a44a276f319194b39ef3359270ba23
079a4dca0c358482f54eb57cb7d10546e1311a72
/BinarySearchTreeC++/Node.h
50bc2175b9d54d064a0dc08779cff41b82e3681a
[]
no_license
MatheusSchaly/--Old--Cplusplus-Binary-Search-Tree-Implementation
35767ed149dbe52b282f5c7e21326589dadbf2f3
e793d289cf4a3703866b09b813b2780ffd292dc7
refs/heads/master
2021-10-03T10:26:51.126516
2018-12-02T17:52:16
2018-12-02T17:52:16
null
0
0
null
null
null
null
UTF-8
C++
false
false
430
h
/* * Node.h * * Author: Matheus Schaly * Created on: Aug 14, 2017 * Description: Declares the Node object */ #ifndef NODE_H_ #define NODE_H_ #include <iostream> using namespace std; class Node { int data; Node *right, *left; public: Node(int data); void setData(int data); int getData(); void setR...
[ "matheusmhs@hotmail.com" ]
matheusmhs@hotmail.com
1d145ab21a7a94d4175b4f7c723484b340631968
2d5c658987f1dd53fd044c5cd10a4ccf5c2d79ce
/be/src/runtime/small_file_mgr.cpp
eed5eea22c9eec807fa4de8bb8a926a920efff3b
[ "BSD-3-Clause", "bzip2-1.0.6", "PSF-2.0", "Apache-2.0", "LicenseRef-scancode-public-domain", "dtoa", "MIT" ]
permissive
liuchengshishabi/incubator-doris
c0225888e7aeb2d99b716ba2054014d9f9931931
12961806ac3bbe8199f5a4cb646a1817722c3f01
refs/heads/master
2020-06-02T10:05:11.191731
2019-06-10T08:28:50
2019-06-10T08:28:50
191,121,795
1
0
Apache-2.0
2019-06-10T07:47:57
2019-06-10T07:47:57
null
UTF-8
C++
false
false
7,321
cpp
// Licensed to the Apache Software Foundation (ASF) under one // or more contributor license agreements. See the NOTICE file // distributed with this work for additional information // regarding copyright ownership. The ASF licenses this file // to you under the Apache License, Version 2.0 (the // "License"); you may...
[ "buaa.zhaoc@gmail.com" ]
buaa.zhaoc@gmail.com
db40a47c56d5e713f69f67891a3a2088f8de30a5
4340fb3b11fde32aa232782bd3640c8c1e412b33
/include/Option.hpp
a56fffc5805236277fa412e511e91e08c97859fb
[]
no_license
Geiiko/rtype
60dbb4727a11bc97b9500494c5a5262a911909b3
17fb9ae0f6f10a089cb353e6660771b578fa41d0
refs/heads/master
2021-07-15T06:12:35.634316
2017-10-11T15:14:17
2017-10-11T15:14:17
106,570,871
0
0
null
null
null
null
UTF-8
C++
false
false
976
hpp
// // Option.hpp for Option in /home/plasko_a/projet/cplusplus/cpp_spider // // Made by Antoine Plaskowski // Login <antoine.plaskowski@epitech.eu> // // Started on Sat Oct 24 15:43:06 2015 Antoine Plaskowski // Last update Thu Dec 24 07:24:27 2015 Antoine Plaskowski // #ifndef OPTION_HPP_ # define OPTION_HPP_ ...
[ "alaric.degand@epitech.eu" ]
alaric.degand@epitech.eu
7e1dbf0db838b5529edcdf47838d573aa026674a
56f1b6b7eff222994b01c324f4ce5c30b06f2d9a
/emilia/net/sslsocket.cc
af65821fad9fbe33dff195bbdb4249def3fef212
[]
no_license
xxhhww/ema
0075fc72d78c568d84cdbed8ad56350ef9707e55
23067621dd1757201ffd6e7a6ed2e0c060c77eaa
refs/heads/main
2023-05-06T08:08:45.283174
2021-06-03T14:18:06
2021-06-03T14:18:06
325,328,766
0
0
null
null
null
null
UTF-8
C++
false
false
5,984
cc
#include "sslsocket.h" #include "emilia/base/scheduler.h" #include "emilia/log/logmarco.h" #include <sys/fcntl.h> using namespace emilia::base; namespace emilia{ namespace net{ struct _SSLInit { _SSLInit() { SSL_library_init(); SSL_load_error_strings(); OpenSSL_add_all_algorithms(); }...
[ "2908903586@qq.com" ]
2908903586@qq.com
1a016ba82e131b939b1f8d8cdbb30dff7b9e850d
618ac76f0288fcc10405d284ff573c43ff305291
/stdafx.h
19f1a9bd458942c33d03089cb8feed60897a2d9b
[]
no_license
YuriKircovich/U235
d81ad5a6a48f6d4f196d3a82c90bcdbfec720054
c3ca16375e6201dd7ac11297acd45666675967fb
refs/heads/master
2021-01-10T14:38:58.909673
2015-11-08T15:28:13
2015-11-08T15:28:13
45,785,975
1
0
null
null
null
null
UTF-8
C++
false
false
734
h
// stdafx.h : include file for standard system include files, // or project specific include files that are used frequently, but // are changed infrequently // #pragma once #include "targetver.h" #include <stdio.h> #include <tchar.h> #include <iostream> #include <Windows.h> #include <string> #include <map> #include ...
[ "yurikircovich@gmail.com" ]
yurikircovich@gmail.com
bbbae511cdc0c4f9d8be866b16d6b401a20c06e1
a46c6f283538e6f8cdb53e91b445d61e67ac8d3a
/a5_heuristic.cpp
d25f3f9d8271e37c4688e6f49405c7adbe94365e
[]
no_license
MingXXI/AI-Connect-Four
ff6bc1ead323250abac4ed7715cc28a9206461bc
3a7006838d197ee9b28c3449c427691eca6b7b85
refs/heads/master
2020-07-30T14:22:10.160457
2019-09-23T04:12:52
2019-09-23T04:12:52
210,262,280
5
0
null
null
null
null
UTF-8
C++
false
false
24,704
cpp
// Heuristic and class structure refers to: https://github.com/RobertSzkutak/SUNY-Fredonia/blob/696a39a00df3e775c8d40be73bfb4159c2aeda98/CSIT461-Intro-To-AI-Engineering/Connect4 #include <iostream> #include <ctime> using namespace std; #define ROWS 6 #define COLUMNS 7 class Connect4{ private: public: Connec...
[ "bowenw@sfu.ca" ]
bowenw@sfu.ca
7b6482ff6894cb4c2643304f7e54b77416eb8ac3
24d856d98c85a319d53be2768ccc176a50873fa3
/eglibc-2.15/argp/argp-namefrob.h
2dc426a4f0e463a04e1425d27ef2d7195ac4bf53
[ "LGPL-2.1-only", "GPL-2.0-only", "LicenseRef-scancode-inner-net-2.0", "BSD-3-Clause", "LGPL-2.1-or-later", "HPND", "LicenseRef-scancode-other-copyleft", "CMU-Mach", "LicenseRef-scancode-other-permissive", "BSD-2-Clause" ]
permissive
dozenow/shortcut
a4803b59c95e72a01d73bb30acaae45cf76b0367
b140082a44c58f05af3495259c1beaaa9a63560b
refs/heads/jumpstart-php
2020-06-29T11:41:05.842760
2019-03-28T17:28:56
2019-03-28T17:28:56
200,405,626
2
2
BSD-2-Clause
2019-08-03T19:45:44
2019-08-03T17:57:58
C
UTF-8
C++
false
false
5,485
h
/* Name frobnication for compiling argp outside of glibc Copyright (C) 1997, 2003 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Miles Bader <miles@gnu.ai.mit.edu>. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU ...
[ "jflinn" ]
jflinn
2d84cecdd0896eb5a0544732b63032cd8d8f32fa
b27a0ef18ffe42f4e601da55e1ba6b61cc0deccf
/brush/BrushInterface.cpp
fe649aa75a37aaac4e12d9b07d89e3de1b55836a
[]
no_license
cogle/Computer-Graphics-CSE_452-
8c8b0782f2e413b8c5f7fd472f1158262da92b76
8555d8ca92fec60bf2b46b145b995cb62cbd8270
refs/heads/master
2021-01-01T05:41:30.953004
2015-04-20T04:03:21
2015-04-20T04:03:21
29,278,761
0
2
null
null
null
null
UTF-8
C++
false
false
6,267
cpp
// generated by Fast Light User Interface Designer (fluid) version 1.0107 #include "BrushInterface.h" void BrushInterface::cb_Constant_i(Fl_Menu_*, void*) { myBrush.changedBrush(); } void BrushInterface::cb_Constant(Fl_Menu_* o, void* v) { ((BrushInterface*)(o->parent()->user_data()))->cb_Constant_i(o,v); } void...
[ "thecogle@gmail.com" ]
thecogle@gmail.com