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
905 values
visit_date
timestamp[us]date
2015-08-09 11:21:18
2023-09-06 10:45:07
revision_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-17 19:19:19
committer_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-06 06:22:19
github_id
int64
3.89k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
22 values
gha_event_created_at
timestamp[us]date
2012-06-07 00:51:45
2023-09-14 21:58:39
gha_created_at
timestamp[us]date
2008-03-27 23:40:48
2023-08-21 23:17:38
gha_language
stringclasses
141 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
115 values
content
stringlengths
3
10.4M
authors
listlengths
1
1
author_id
stringlengths
0
158
7c26610a71c766287d9dfba4df4a81e2b15fb764
e7762fb3708c86536109009964bcb8f304a77135
/Vorlesung01/Vorlesung01/Hausaufgabe_Personen/Person.h
838a11ebab5b5541c0827930a959df1ddde5a599
[]
no_license
LucRome/CPP-Vorlesung
08a1ef828b993c83dfb543e25b5b81494ada14ca
f5bec23fe60ba1f80c2c263a2f597c8d265f4002
refs/heads/master
2022-09-25T19:29:47.543634
2020-06-04T07:08:21
2020-06-04T07:08:21
262,011,310
0
0
null
null
null
null
UTF-8
C++
false
false
441
h
#pragma once #include <string>; #include<stdio.h>; #include "Enums.h"; using namespace std; class Person { void greet(Nationalities nationality, string nameOther); void farewell(Nationalities nationality, string nameOther); public: Person(Nationalities nationality, string Name); void talkTo(Person person); Natio...
[ "64947931+LucRome@users.noreply.github.com" ]
64947931+LucRome@users.noreply.github.com
82c399fefbf997d53da662d108af1498f8eb565d
13f6937c44a2a3b9309393b8e18fcfedac146323
/Source/JapaneseBusinessman/Private/TwoDPlayerController.h
570bb58aa403807d5adbce76cdeb42284ff4436c
[]
no_license
zitherSide/JapaneseBusinessmanSimulator
612930bf9da290b27281283b78937d352f96d272
e64933e1d6e8ff7ac9202e715061a14866c70e16
refs/heads/master
2021-05-17T07:35:41.464743
2021-03-02T22:45:43
2021-03-02T22:45:43
250,696,987
0
0
null
null
null
null
UTF-8
C++
false
false
425
h
// Fill out your copyright notice in the Description page of Project Settings. #pragma once #include "CoreMinimal.h" #include "GameFramework/PlayerController.h" #include "TwoDPlayerController.generated.h" /** * */ UCLASS() class ATwoDPlayerController : public APlayerController { GENERATED_BODY() public: ATwoD...
[ "takuyakotoyori@akane.waseda.jp" ]
takuyakotoyori@akane.waseda.jp
685eba690150e568c2d99ce171b8c7c9fccbfff9
a23665259e3b931a12290d5ff80e1c4d4916c0ea
/vgui2/src/InputWin32.cpp
3798e3ac31f803b9749a187d3c656c5dcc08c226
[]
no_license
q4a/half
507490107968459073f23c306bdff56e7dffd9f7
6a4302e286aa5bfd9ebdc7ed2688d2290981ec9c
refs/heads/master
2022-04-26T13:18:15.597053
2017-06-15T13:32:34
2017-06-15T13:32:34
null
0
0
null
null
null
null
WINDOWS-1252
C++
false
false
40,256
cpp
//========= Copyright © 1996-2003, Valve LLC, All rights reserved. ============ // // The copyright to the contents herein is the property of Valve, L.L.C. // The contents may be used and/or copied only with the written permission of // Valve, L.L.C., or in accordance with the terms and conditions stipulated in //...
[ "houontherun@gmail.com" ]
houontherun@gmail.com
1b7582cd534ccb7da70a70f784d3917eef3960c5
ee2c15d82ff596f4ca9eda408f8e096b787f0d48
/lec_05/checkprime_using_function.cpp
ebba3297741d560dfbe09c658f2dee783e1a2f7d
[]
no_license
sainimohit23/algorithms
1bbfee3bd4d1049b18425bf0d86ecaacd4c43ea0
911986abe015f7518ef169a5866b1058c7d41d4f
refs/heads/master
2022-11-13T17:40:06.128838
2020-06-30T17:35:35
2020-06-30T17:35:35
268,071,412
1
0
null
null
null
null
UTF-8
C++
false
false
337
cpp
#include <iostream> using namespace std; bool chkprime(int n); int main(){ int num; cin>>num; bool isprime= chkprime(num); if(isprime==false){ cout<<"not prime\n"; } else{ cout<<"prime\n"; } return 0; } bool chkprime(int n){ int i=2; while(i<n){ if(n%i==0){ return false; } i++; } ...
[ "sainimohit23@gmail.com" ]
sainimohit23@gmail.com
328ba2380f884ac74b480a26447e81c9ffab3fec
a68823773e764142c7b5c69f31bf2f916ca02c5f
/Code/PostWidgets/RealTimeMonitor.cpp
22f9945bc23239a8a5f721724582dc2d6d5c6431
[ "BSD-3-Clause" ]
permissive
hh-wu/FastCAE-linux
0a4b8ac6e1535a43f4047027cb2e01d5f2816f2d
4ab6f653e5251acfd707e678bd63437666b3900b
refs/heads/main
2023-06-16T13:43:56.204083
2021-07-12T16:20:39
2021-07-12T16:20:39
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,116
cpp
#include "RealTimeMonitor.h" #include <QTimer> #include <QFileInfo> #include <QDebug> namespace Post { RealTimeMonitor::RealTimeMonitor() { _timer = new QTimer; connect(_timer, SIGNAL(timeout()), this, SLOT(onTimeout())); } RealTimeMonitor::~RealTimeMonitor() { if (_timer) delete _timer; } ...
[ "1229331300@qq.com" ]
1229331300@qq.com
c566daea3fd094c11b4a928a8bddb8e7ffdc68cf
fb7e0cc237263ba5a4e3e59a6764e1f7a5cf6a29
/BST.cpp
f940aa3c495f6c2e2916a9aa81e8bcd76ea60a08
[]
no_license
erik-slack/Custom-Binary-Search-Tree-BST-
e1174162f710c7abf60de985ce2ab92c79501a4d
0df28c74b488bebda0eca8a7910483bda9ed48f0
refs/heads/master
2021-01-01T17:36:47.597915
2014-11-18T16:07:09
2014-11-18T16:07:09
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,563
cpp
#include "BST.h" using namespace std; BST::BST() { root = NULL; } BST::~BST() { clear(); root = NULL; } /* * Returns the root node for this tree * * @return the root node for this tree. */ Node* BST::getRootNode(){ return root; } /* * Attempts to add the given int to the BST tree * * @return true if add...
[ "slack.erik@gmail.com" ]
slack.erik@gmail.com
a47e8bd932be5ad032bc401e10a50e72bf71aa31
98b02bfbd6a3f17464e4b2b98c9b3815f507899f
/Packages/ndt_feature_graph-SSRR2017/ndt_feature/src/publish_graph_message.cpp
81cb99240b6cd4f42a47206a288cd69948f67a2c
[]
no_license
RENyunfan/PointCloud
137d5fec61bbea8a6fc5a4884f8f510abe625633
7a09e43cfbc7adf591d6ed636570bf97cbb42cf7
refs/heads/master
2021-01-04T07:24:06.484559
2020-04-05T09:49:32
2020-04-05T09:49:32
240,445,854
1
1
null
null
null
null
UTF-8
C++
false
false
59,373
cpp
#include <valgrind/callgrind.h> // Test code to evaluate how laser2d features such as the FLIRT library could paly along with NDT. #include <ndt_feature/ndt_feature_fuser_hmt.h> //#include <ndt_fuser/ndt_fuser_hmt.h> #include <ros/ros.h> #include <pcl_conversions/pcl_conversions.h> #include "pcl/point_cloud.h" #inclu...
[ "renyunfan@gmail.com" ]
renyunfan@gmail.com
5ee9720ed358df263e0354635ad4d5761fcddddc
e4d8e2c274488a3c4a20efc4d131727cff725249
/include/cc/detail/traits/is_same.hh
fdd3cf50e5d6753d6710b078471bd251304e5996
[ "MIT" ]
permissive
drlight-code/clean-core
340dc1bacafa8f8684a4efb4620d4d3b9f64f5f6
33f06d485dadc9a3082f4e4f0d6f8a850db3c4bf
refs/heads/master
2022-12-29T00:57:42.553880
2019-04-14T19:12:35
2019-04-14T19:12:35
300,218,944
0
0
MIT
2020-10-01T09:18:00
2020-10-01T09:17:59
null
UTF-8
C++
false
false
359
hh
#pragma once namespace cc { namespace detail { template <class A, class B> struct is_same_t { static constexpr bool value = false; }; template <class T> struct is_same_t<T, T> { static constexpr bool value = true; }; } // namespace detail template <class A, class B> inline constexpr bool is_same = detail::is_...
[ "Philip.Trettner@rwth-aachen.de" ]
Philip.Trettner@rwth-aachen.de
0501f836828ad7c2e10712b3b1282d9055b96891
a01e135369b8b2caaa1a7dcf44e8d6f059a80f0e
/micro_19.cpp
7f1fe215b21d7f4fc12d0478cf9c388cad59983f
[]
no_license
Scofieldxs/micro-interview-100
5a84d838bf4b1ad2a6002dbb96f9b2ff4b45d9ca
b028bf8d5ac013bef3acb295ca429d8627a11198
refs/heads/master
2016-09-06T07:51:47.080711
2014-05-15T07:05:55
2014-05-15T07:05:55
19,229,788
1
0
null
null
null
null
UTF-8
C++
false
false
683
cpp
// 19.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include<stdlib.h> long fibinacciN_1(long n) { long *a=(long *)malloc(sizeof(long )*n); *a=0; *(a+1)=1; if(n==0) return 0; if(n==1) return 1; long i; for(i=2;i<=n;i++) { *(a+i)=*(a+i-1)+*(a+i-2); } return *(a+i-...
[ "bjfxxs@163.com" ]
bjfxxs@163.com
deb31dbab4e243689e8620dc496a52d0a41134d0
59179e4f655a40b421fa9aeda9c90736b8c11b1b
/compiler/.history/lab1/lexical_20210412102647.cpp
4c02b82df1df47b5f2cb6999b2525eabd2ff5bd0
[]
no_license
wjw136/course_designing_project
ccd39da420f0de22b39fa2fea032054f4cbe8bfd
2614928bd779bc0d996857b123e2862836d81333
refs/heads/master
2023-06-04T12:52:40.501335
2021-06-17T13:19:23
2021-06-17T13:19:23
374,384,252
0
0
null
null
null
null
UTF-8
C++
false
false
498
cpp
#include <iostream> #include <windows.h> #include <string.h> #include <queue> #include <math.h> #include "stdio.h" #define ll long long #define inf 100000 #define clr1(a) memset(a,-1,sizeof(a)) # define clr(a) memset(a, 0, sizeof(a)) using namespace std; //reserved word static char reserveword[35][20]={ "and","ar...
[ "2831419633@qq.com" ]
2831419633@qq.com
e71d91317b78b80bf9ccb30e84ba56dfe312fc65
1117d7749ee9d287bdfc91b09fad544646ddd5cf
/chapter05/InputComponent.hpp
26520d288c905866c1f208b1d449a41874dcd702
[ "MIT" ]
permissive
AconCavy/gpcpp
eba975f7a1d2573f72585ae68608a8482805be3d
70d06e00f9ffc4dea580890a8b95027b32f5a9f6
refs/heads/main
2023-04-10T05:38:21.229819
2021-04-23T00:38:22
2021-04-23T00:38:22
349,237,794
0
0
null
null
null
null
UTF-8
C++
false
false
1,307
hpp
#ifndef GPCPP_CHAPTER05_INPUTCOMPONENT_HPP #define GPCPP_CHAPTER05_INPUTCOMPONENT_HPP #include "MoveComponent.hpp" namespace gpcpp::c05 { class InputComponent : public MoveComponent { public: explicit InputComponent(class Actor *Owner); void processInput(const uint8_t *KeyState) override; [[nodiscard]] float...
[ "aconcavy@gmail.com" ]
aconcavy@gmail.com
6287a108040a0f56c1920fe1937f40c322c93934
20b354bd9155e36bbd8c887faf5b5ac2788cc711
/Source/private_member_func.cpp
679a7d48b650bbf77fa4cfae75df0729c87fa53e
[]
no_license
MarufurRahman/Object-Oriented-Programming-CPP
b11c1ac5492df2a29feeb61eb71320d624728b46
7fe763ee8a565751963f1d1d8c3a6a661f8bafdc
refs/heads/master
2020-03-31T00:02:45.042069
2018-11-27T09:55:18
2018-11-27T09:55:18
151,723,181
1
0
null
null
null
null
UTF-8
C++
false
false
889
cpp
// Private member function in C++ // Programmed by Marufur Rahman #include <iostream> using namespace std; class Student { private: int rNo; float perc; //private member functions void inputOn(void) { cout<<"Input start..."<<endl; } void inputOff(void) { cout<<"Input end..."<<endl; } pu...
[ "marufurrahman1997@gmail.com" ]
marufurrahman1997@gmail.com
948835a24fa6d9af8a9696967ae38462ed1c9569
85775c2342266c60cf919a3d60a8b84af0642b6e
/interview-tasks/unique_numbers_from_the_range.cpp
5c86e8b3983b388ac567ff3996fbfb0c52a72571
[]
no_license
s-e-r-g/cpp-examples
b86540c012e5c5916c29210044bf733b1ac2d5fb
fdcd052b70235e16e995035ee3e9723afc774240
refs/heads/master
2021-01-25T05:34:35.400960
2020-05-05T09:06:30
2020-05-05T09:06:30
9,544,368
0
0
null
null
null
null
UTF-8
C++
false
false
593
cpp
// Pick random numbers from the range // E.g. range is [1..10] and we want to pick 6 random unique numbers. #include <iostream> #include <vector> #include <utility> using namespace std; int main() { const int maxNumber = 10; const int getCount = 6; vector<int> numbers; numbers.reserve(maxNumber); ...
[ "sergii.ponomarenko@toatech.com" ]
sergii.ponomarenko@toatech.com
dd114b6548c0113d9cf949e417df296d0cb90bd0
e6e99a9d5a8879614584fa75bea6c92e11d374d7
/OMI2017_Mensajeria.cpp
ff766e91f438ab2e4d9851e5d9a6e179f70f99ce
[]
no_license
JuanMBriones/OMI
740e86ad8b1871c7ece92d8e5f44097f151a6637
be73e56ab6e34a08e93e6490db5688591113fd0a
refs/heads/master
2021-08-22T01:59:23.559880
2020-09-22T14:23:49
2020-09-22T14:23:49
224,791,946
0
0
null
null
null
null
UTF-8
C++
false
false
626
cpp
#include <iostream> //#include <vector> #define opt_io cin.tie(0);ios_base::sync_with_stdio(0); using namespace std; // (ada(iad)pmilO) // 5 //10101 // 1 2 4 8 16 // 1+4+16 // 21 // 16 o 32 // 21-16 = 5 // 5+4 = 9 int main() { opt_io int i, n, k, costo = 0, a, maximo = 0; bool flag = false; cin >> n >...
[ "JuanMBriones@outlook.com" ]
JuanMBriones@outlook.com
a5e8c5ec4cf5746f5427c2d475634540afe31409
734390edb42c1224eebfa25d88aed5391fb64384
/lang/cpp/cpp1114/auto.cpp
f9f94356f9e99c352413abb9a1aa0a0262cacb2a
[ "MIT" ]
permissive
yohshiy/programmers_notes
f12d67ebe7bfd29afe8a288f4943991a02e4dfbe
ececf1fc158ca8f541dc3ebc4310d2694c687ef5
refs/heads/master
2020-05-22T05:41:38.561056
2018-04-27T08:05:49
2018-04-27T08:05:49
48,354,092
0
0
null
null
null
null
UTF-8
C++
false
false
1,172
cpp
 #include <string> #include <iostream> using namespace std; extern double Mag; static auto mag = 1.0; const double MyPi = 3.14; const auto MyPiA = 3.14; class Foo { static const int classval_int = 3; }; class Foo2 { static const auto classval_int = 3; static constexpr auto classval_dbl = 3.1; ...
[ "yohshiy@gmail.com" ]
yohshiy@gmail.com
5ac925ad02fbdcf36ede8f82d98e28d7c77bab26
90efdfa1f56e2082283e510c7aa9a77ceab8ce18
/gplay3d/src/graphics/Joint.cpp
f6866ad1e25be8170fee9f62c5f9cb01f27258b8
[]
no_license
aurodev/GPlay3D
451e2863d6ac3222762672d358eecd494d9cc272
ad6b88dd22688e2b6e6e2fa02779daa0b5545592
refs/heads/master
2020-07-13T04:28:30.234238
2018-06-26T06:48:20
2018-06-26T06:48:20
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,768
cpp
#include "../core/Base.h" #include "../graphics/Joint.h" #include "../graphics/MeshSkin.h" #include "../graphics/Model.h" namespace gameplay { Joint::Joint(const char* id) : Node(id), _jointMatrixDirty(true) { } Joint::~Joint() { } Joint* Joint::create(const char* id) { return new Joint(id); } Node* Joint:...
[ "fredakilla@gmail.com" ]
fredakilla@gmail.com
c59474e6f1cabb54da6786703bf8130463cdea19
2e80f72250cc865d2190bb443a38ff338508ffef
/include/solvers/sqp.hpp
67133503841f3c3cf5b4f5b1e1d7318088417930
[ "MIT" ]
permissive
Toeplitz/sqp_solver
5546116d2b11b29256961997c6fb437c76294441
37b9b7c6840f85931ef0c235477a7f334907d44a
refs/heads/master
2020-11-26T12:33:23.483704
2019-09-19T16:00:45
2019-09-19T16:02:22
null
0
0
null
null
null
null
UTF-8
C++
false
false
11,750
hpp
#ifndef SQP_H #define SQP_H #include <Eigen/Dense> #include <cmath> #include <limits> #include "qp_solver.hpp" #include "bfgs.hpp" #ifdef SOLVER_DEBUG #include <Eigen/Eigenvalues> #endif #ifndef SOLVER_ASSERT #define SOLVER_ASSERT(x) eigen_assert(x) #endif namespace sqp { template <typename Scalar> struct sqp_sett...
[ "mspieler101@gmail.com" ]
mspieler101@gmail.com
dcecf56d51e2f11666da70b151621e54862c1028
7057781260d7896d2d8e11944d6eb65f9102a8f6
/src/ConsoleLog.cpp
d37b6eb37873b5c53cc4bd888a57d0c089991630
[]
no_license
SuJinpei/odbc_performance
926e0eb35252ebf3476e6d607c0f2a09cef95c90
4a8a5e37d8d7a702838e364799f2fb9525ad854e
refs/heads/master
2021-08-07T12:06:33.871159
2020-04-15T10:58:51
2020-04-15T10:58:51
152,972,972
0
0
null
null
null
null
UTF-8
C++
false
false
670
cpp
#include "ConsoleLog.h" ConsoleLog::ConsoleLog(const LogLevel lv) :_buffer{std::cerr}, logLevel{lv}{ _buffer.imbue(std::locale("")); } void ConsoleLog::setLevel(ConsoleLog::LogLevel lv) { logLevel = lv; } ConsoleLog::Color::Color(int i) { set_color(i); } ConsoleLog::Color::~Color() { #ifdef _WIN32 a...
[ "873118042@qq.com" ]
873118042@qq.com
cf9b01ac919561e28bf37c7f87d3f89ac9675135
2834f98b53d78bafc9f765344ded24cf41ffebb0
/extensions/browser/api/declarative_net_request/utils.cc
5256a59cbdae82bdc574986dd49b40e72f807f3b
[ "BSD-3-Clause" ]
permissive
cea56/chromium
81bffdf706df8b356c2e821c1a299f9d4bd4c620
013d244f2a747275da76758d2e6240f88c0165dd
refs/heads/master
2023-01-11T05:44:41.185820
2019-12-09T04:14:16
2019-12-09T04:14:16
226,785,888
1
0
BSD-3-Clause
2019-12-09T04:40:07
2019-12-09T04:40:07
null
UTF-8
C++
false
false
8,864
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 "extensions/browser/api/declarative_net_request/utils.h" #include <memory> #include <set> #include <utility> #include "base/files/file.h" #incl...
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
65ce0cae49c85447dd7bc20f69b17ca608dcfb8b
f2d9c039614dc44c457a09f71a285b44791fe2d2
/002/myvector.hpp
4db9b19ba4db047cd4783f080cc0ba2b8c344e24
[ "MIT" ]
permissive
suomesta/myvector
7a0a24ac1f5e2488cb61b46feac2ef6ba3549fbb
60a1844976b4d469d8115755f0e404ba6b0e173e
refs/heads/master
2020-05-19T16:53:24.316320
2019-08-31T12:01:04
2019-08-31T12:01:04
185,118,953
0
0
null
null
null
null
UTF-8
C++
false
false
1,371
hpp
/** * @file myvector.hpp * @brief Implementation of myvector class. * myvector class imitates std::vector. * @author toda * @date 2019-05-06 * @version 0.1.0 * @remark the target is C++11 or more. */ #ifndef INCLUDE_GUARD_MYVECTOR_HPP #define INCLUDE_GUARD_MYVECTOR_HPP #include <cstddef> #i...
[ "shawn316michaels@gmail.com" ]
shawn316michaels@gmail.com
b9e493aac75123d1e3ec3a6ad1ef55d8120b0ef3
348e7dfc31f32031fccf609b65f5835a55a35edb
/python/src/rpc/libeggnogg_rpc_clnt.cpp
0340cc1a47995b63b2ea71cda3cb9cefb7bf9be1
[]
no_license
0xUKN/libeggnogg
c188c58cade6469a54e25978a19064a849d98b0a
313c32bf2d2227342bf66e417803eada010a99f1
refs/heads/master
2021-02-19T08:57:05.908425
2020-11-10T04:47:00
2020-11-10T04:47:00
245,297,950
4
0
null
null
null
null
UTF-8
C++
false
false
2,150
cpp
/* * Please do not edit this file. * It was generated using rpcgen. */ #include <memory.h> /* for memset */ #include "../../../include/libeggnogg_rpc.hpp" namespace LibEggnogg { /* Default timeout can be changed using clnt_control() */ static struct timeval TIMEOUT = { 25, 0 }; void exit_libeggnogg_rpc_clnt(C...
[ "0xukn@protonmail.com" ]
0xukn@protonmail.com
a2548bff88459fe5dc784daf8d0b74e97ae9c6c9
de2b445d31b67be34093cc15ef3f020a299928dc
/cpp/lib/other/big_integer.cpp
2949b77b1e3e8bfa881c8388fa06e6cf64f9950f
[ "MIT" ]
permissive
KATO-Hiro/atcoder-1
7d45abb7f5d3cef7e8733a216a334c9c66889b71
c2cbfcfd5c3d46ac9810ba330a37d437aa2839c2
refs/heads/master
2023-06-23T09:25:53.545274
2021-07-25T14:20:01
2021-07-25T14:20:01
339,631,102
0
0
MIT
2021-07-25T16:56:58
2021-02-17T06:25:11
C++
UTF-8
C++
false
false
602
cpp
#include <bits/stdc++.h> using namespace std; // -------------------------------------------------------- // reference: https://boostjp.github.io/tips/multiprec-int.html #include <boost/multiprecision/cpp_int.hpp> typedef boost::multiprecision::cpp_int bint; int main() { ios::sync_with_stdio(false); cin.tie(0...
[ "tsuyo.mts@gmail.com" ]
tsuyo.mts@gmail.com
c95da77ec0698cbf1fc8d1dbd850ecf5a56e9cef
87c69454346b1550da7da37f1b7ebfe5468b587c
/IO/printf/1/main.cpp
0146afbf691031eace61a0da37e8d4d7a83bda4f
[]
no_license
hnlylmlzh/cs
4305ae18d35d7fe774ae0ece263a68bea882ab6a
b45154053d46c3b3b1e912946d1acaa65e99089b
refs/heads/master
2022-03-20T17:45:10.202053
2019-04-15T08:54:05
2019-04-15T08:54:05
null
0
0
null
null
null
null
UTF-8
C++
false
false
918
cpp
#include <iostream> #include <stdint.h> #include <stdio.h> int main() { int i = 20; unsigned int j = 300; uint64_t k = 4294967295; // (2 32) - 1 uint64_t l = 5294967295; printf("%d, %d, %d, %d \n", i, j, k, l); printf("%ld, %ld, %ld, %ld \n", i, j, k, l); uint32_t m = 4294967295; p...
[ "sunyongjie1984@gmail.com" ]
sunyongjie1984@gmail.com
3ef6cacbfa1e7466d5f560c89fa9f41466c5bb68
c67cbd22f9bc3c465fd763fdf87172f2c8ec77d4
/Desktop/Please Work/build/Android/Preview/app/src/main/include/Fuse.Controls.Native.ITextView.h
69625ed6920616de3035565a42df3a9fd8cbbc2d
[]
no_license
AzazelMoreno/Soteria-project
7c58896d6bf5a9ad919bde6ddc2a30f4a07fa0d4
04fdb71065941176867fb9007ecf38bbf851ad47
refs/heads/master
2020-03-11T16:33:22.153713
2018-04-19T19:47:55
2018-04-19T19:47:55
130,120,337
0
0
null
null
null
null
UTF-8
C++
false
false
2,538
h
// This file was generated based on C:/Users/rudy0/AppData/Local/Fusetools/Packages/Fuse.Controls.Native/1.8.1/Interfaces.uno. // WARNING: Changes might be lost if you edit this file directly. #pragma once #include <Fuse.Controls.Native.ILeafView.h> #include <Fuse.Controls.Native.IView.h> #include <Uno.IDisposable.h> ...
[ "rudy0604594@gmail.com" ]
rudy0604594@gmail.com
95251c5f6450d81006863bb877569396f84001d5
8c3e9115e9e5fc404c057af7bfbf9b41d7585e87
/process.cpp
5d04edb7444ab3ae818fd9afdc272729bdc758cc
[]
no_license
AndrewHarter/OS_Process
41900ea313fef1722c3f93176681e0ecbef1c584
d181eb801530aa3eb15d9fa306523596c0eab3b5
refs/heads/master
2020-07-20T15:49:50.354350
2019-09-05T23:15:03
2019-09-05T23:15:03
206,671,933
0
0
null
null
null
null
UTF-8
C++
false
false
941
cpp
#include "process.h" Process::Process(int pid, int burst, int arrival, int priority, int deadline, int io){ this->pid = pid; this->burst = burst; this->arrival = arrival; this->priority = priority; this->deadline = deadline; this->io = io; } void Process::print_rts() const{ cout << "Pid: " << this->pid << end...
[ "harteraj@uwec.edu" ]
harteraj@uwec.edu
2f0db263cb9955128b6351bcdbfb49c120fd1df5
b39e187e9d47d9fd3470d6f25fdd3a92eb25f11b
/source/directwrite/ITextRenderer.cpp
a59e3bedaeb5b4121352dafedc0630ac50f373fa
[ "MIT" ]
permissive
SlimDX/slimdx
b0e22cb26b5da34ad3dd522ced54768b71b3e929
284f3ab1ddadc17b4091bfa7c7b9faed8bf0ded8
refs/heads/master
2022-09-02T19:14:14.879176
2022-08-31T03:04:57
2022-08-31T03:04:57
32,283,841
93
49
MIT
2022-08-31T03:04:58
2015-03-15T21:01:40
C++
UTF-8
C++
false
false
5,613
cpp
/* * Copyright (c) 2007-2012 SlimDX Group * * 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, ...
[ "mike.popoloski@090eb97a-982f-0410-b69a-795f42cc130f" ]
mike.popoloski@090eb97a-982f-0410-b69a-795f42cc130f
2e72c47f133cc4b2f235909fc164a276b55b73f9
db294b9ab77372536f681c764b10c9b280b99d84
/demo/test_libbatools.cpp
e0ac53f1f1a3ea288dd4c27162e86da574e5802f
[]
no_license
weidong-whu/libBATools
f53c549045ce1413537eda3b34f7305801220c09
e4494c1cf2704bdd65e990f20bcd7914a38093e0
refs/heads/master
2020-11-24T21:54:42.748055
2019-12-16T09:35:38
2019-12-16T09:35:38
228,356,179
1
0
null
2019-12-16T10:00:27
2019-12-16T10:00:26
null
UTF-8
C++
false
false
754
cpp
#include "libBATools.h" #include <tchar.h> #include <iostream> bool testProjection(const libba::BAImageInfo & image, const libba::baPoint3d & pt_world, libba::baPoint2d & pt_img) { return image.isInImage(pt_world, &pt_img); } int _tmain(int argc, _TCHAR* argv[]) { if (argc < 3) { return false; } std::string bu...
[ "liuxy0319@outlook.com" ]
liuxy0319@outlook.com
a9b46333f516648748f97dcde460c5976c6244b9
205adf81a773b9aa91d12ae3b55fd03cab39610f
/RelayAndGPIOModules/USBRelayAndGPIOModules/c/VCExpress2010/usbgpio8/USBGpio8Demo/stdafx.cpp
dc6c9fc05c41b4a27d96fcdeb4705e87afb5d4e3
[]
no_license
numato/samplecode
25d9a72f2ff8d09ed9114b479971ac4802e208be
e6dfd7fcd1b0f55543ea2f4bfc5ad8e4822ca088
refs/heads/master
2022-12-27T14:26:34.834633
2022-12-16T08:40:22
2022-12-16T08:40:22
43,082,129
139
385
null
2023-08-24T06:38:16
2015-09-24T17:30:13
C
UTF-8
C++
false
false
291
cpp
// stdafx.cpp : source file that includes just the standard includes // USBGpio8Demo.pch will be the pre-compiled header // stdafx.obj will contain the pre-compiled type information #include "stdafx.h" // TODO: reference any additional headers you need in STDAFX.H // and not in this file
[ "sales@numato.com" ]
sales@numato.com
c6242e315e2ce905cbc09d6fb35669dc7b3ac1c5
dd6147bf9433298a64bbceb7fdccaa4cc477fba6
/8304/Mukhin_Aleksandr/lab4/units/military/SpecialForces.cpp
3791b9e45ee212fd0993a9510dc11241fe1fceda
[]
no_license
moevm/oop
64a89677879341a3e8e91ba6d719ab598dcabb49
faffa7e14003b13c658ccf8853d6189b51ee30e6
refs/heads/master
2023-03-16T15:48:35.226647
2020-06-08T16:16:31
2020-06-08T16:16:31
85,785,460
42
304
null
2023-03-06T23:46:08
2017-03-22T04:37:01
C++
UTF-8
C++
false
false
122
cpp
#include "SpecialForces.h" void SpecialForces::greeting() const { std::cout << "I'm SpecialForces!" << std::endl; }
[ "myxin200015@mail.ru" ]
myxin200015@mail.ru
f1725c33abc2c9e7a3c5284282a235b5dd25fdc2
bfe4fd0102795f9600ffb10c6d768a2534b49c94
/LeetCode/LeetCode-30days-challenge/Backspace String Compare.cpp
60c8f40c4edb61d1fdebaf116919248e414dad0b
[]
no_license
aryabhatta22/CompetitiveCoding
b4a9e03fe53af2d5049b3d6ab64d89c5a0b2002f
decfb0f8b4d866e3a095f4bce333f4c3dc58940f
refs/heads/master
2021-07-13T18:03:53.456484
2020-08-22T13:08:46
2020-08-22T13:08:46
199,398,576
0
0
null
null
null
null
UTF-8
C++
false
false
1,036
cpp
/*************************************** Description: Given two strings S and T, return if they are equal when both are typed into empty text editors. # means a backspace character. Example 1: Input: S = "ab#c", T = "ad#c" Output: true Explanation: Both S and T become "ac". Example 2: Input: S = "ab##", T = "c#d#" O...
[ "tarun.hive@hotmail.com" ]
tarun.hive@hotmail.com
a4207dc37079ac95ea64b3a6b8fe31784a6a2d82
7ab190f26ff7046a4ef473e732ee6304055d195e
/src/Corrade.h
41740b04aec00da42fbabc71d5ac439978044b6c
[ "MIT" ]
permissive
piaoger/corrade
4729937a0b1b3214a8f55f4830e9a0afd42a0809
5c349681b831a19e8da11dfb4284c985b994e354
refs/heads/master
2021-01-22T01:42:46.660258
2013-11-17T21:03:26
2013-11-17T21:15:59
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,309
h
#ifndef Corrade_Corrade_h #define Corrade_Corrade_h /* This file is part of Corrade. Copyright © 2007, 2008, 2009, 2010, 2011, 2012, 2013 Vladimír Vondruš <mosra@centrum.cz> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated docum...
[ "mosra@centrum.cz" ]
mosra@centrum.cz
dae20253637ab42b4c46a26ec77973b601adbc90
75860c9149d79ba41a787a084e01075c0c989b53
/src/102.cpp
4cdf3f193c529d041ad8513b0d3ee49cfb2e5d41
[]
no_license
Deseteral/uva-problems
0c9d786c1dcef978e8daca8b90105e50f4f2072d
f943fb5be65f9a83df289afee45cce26b2be4d9c
refs/heads/master
2020-03-28T19:34:50.026782
2018-09-16T11:27:36
2018-09-16T11:27:36
148,988,939
0
0
null
null
null
null
UTF-8
C++
false
false
1,933
cpp
#include <cstdio> int main() { unsigned int in[9]; while(scanf_s("%d %d %d %d %d %d %d %d %d", &in[0], &in[1], &in[2], &in[3], &in[4], &in[5], &in[6], &in[7], &in[8]) != EOF) { unsigned int outcome[6]; for (int i = 0; i < 6; i++) { unsigned int moves = 0; switch (i) { case 4: // GBC move...
[ "deseteral@gmail.com" ]
deseteral@gmail.com
583c394bb502996d1852c31f105d17a64df220ca
80315f1bba85314018587f46ee309a00638d14d4
/Config.h
5f397e22a85d2a3d2bd60e2fdd35950fd747199e
[]
no_license
pope88/Servers
e54ae276ca4979bccd4043e823f0c7e56a444075
332960c5878a733fd6daf77c15a856d7570c8b5b
refs/heads/master
2021-01-10T22:05:07.995636
2013-12-18T11:59:52
2013-12-18T11:59:52
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,287
h
#ifndef SYSTEM_CONFIG_H #define SYSTEM_CONFIG_H //////////////////////////////////////////////////////////// // Identify the operating system //////////////////////////////////////////////////////////// #if defined(_WIN32) || defined(__WIN32__) // Windows #define SYSTEM_SYSTEM_WINDOWS #ifndef WIN32_LEAN...
[ "pope@fanersai.com" ]
pope@fanersai.com
0b1b478e48abf5ed6328d6ff6c62c6f6978768ac
69e16f69b00bd19aa0f8a5ecc2f39dcb7efd27ab
/lec12/function1.cpp
8b1da2b7cdef136f3134b17349212555fe170364
[ "MIT" ]
permissive
2701180217/CProgrammingI_18CS123
804c60969abe9fa5d379f384047758996fcad88f
f5bb73341020b91676c5496283c3c05e9977bd5a
refs/heads/master
2020-04-08T10:16:14.566448
2018-11-19T10:17:58
2018-11-19T10:17:58
null
0
0
null
null
null
null
UTF-8
C++
false
false
200
cpp
#include<iostream> using namespace std; int add(int a, int b) { a++; return a + b; } int main() { int a = 4, b = 4; add(a, b); cout << a << endl; return 0; }
[ "zj@webturing.com" ]
zj@webturing.com
57b33a673d8666fcae83d0400f07a5f9be0fe19b
0c736428f3800e5543743b7a0795fa50a8c372cc
/demos/meltdown_of.cc
55c2096341fb2aedaaec9a403d8f7303d81b7490
[]
no_license
asteinha/sidechannel
cc2a5d7b02b8fe97f204c9102bf7f32b82112d37
ff29fd259d655344fb144277eb2aeede8dd50aba
refs/heads/master
2022-08-19T05:07:53.024378
2020-05-26T04:28:20
2020-05-26T04:28:20
266,635,938
0
1
null
null
null
null
UTF-8
C++
false
false
3,750
cc
/* * Copyright 2019 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in...
[ "asteinhauser@asteinhauser-macbookpro.roam.corp.google.com" ]
asteinhauser@asteinhauser-macbookpro.roam.corp.google.com
36a5b9cf4c96d79ef37ff49c155ef59e25ac19d6
22c66068bd9341b86ac121bbfa494afec2750625
/2016/tencent/date/date.hh
7ab73eb7224617b5c4de367a104b2d2358715fe4
[]
no_license
linghutf/topcoder
54f5124563008ae23c0ac6227c8e44579ee371ba
07da54aecaac0484675a91775140eb3c40ea5aa6
refs/heads/master
2020-04-07T06:49:33.114570
2017-05-28T08:21:10
2017-05-28T08:21:10
52,865,558
5
0
null
null
null
null
UTF-8
C++
false
false
3,912
hh
/** * * 用户应该检查isErrorDate是否是错误的日期,否则调用结果 * 出现异常,库函数只是识别错误日期 * 而不会出现异常 */ #ifndef DATE_HH_ #define DATE_HH_ typedef long timespan; const static int MONTH[]={ 31,28,31,30,31,30, 31,31,30,31,30,31 }; const static char WEEKNAME[][5]={ "Sun","Mon","Tues","Wed","Thur","Fri","Sat" }; //extern class Date; ...
[ "xurui788@gmail.com" ]
xurui788@gmail.com
b772d74bf2fe7e955dac194a5764e3b03ffa591a
4535ed6e3586fad604ba789410f71d1a4433f20d
/KarkkainenSanders.hpp
9a1da7d2884b0a0d524f5bbfa70f36d23c0e6906
[]
no_license
riskingh/Karkkainen-Sanders
4ee5624f6dffc4243c7aa7ad86378d84c42fe219
888feb883f3584a8101cdc5a50cd551ade8ac6ca
refs/heads/master
2021-01-10T05:09:55.757111
2015-12-01T17:11:24
2015-12-01T17:11:24
47,056,777
1
0
null
null
null
null
UTF-8
C++
false
false
6,921
hpp
// // KarkkainenSanders.hpp // Karkkainen-Sanders // // Created by Maxim Grishkin on 29/11/15. // Copyright © 2015 Maxim Grishkin. All rights reserved. // #ifndef KarkkainenSanders_hpp #define KarkkainenSanders_hpp #include <stdio.h> #include <vector> #include <string> #include <list> #include <algorithm> #includ...
[ "grishkin.max@gmail.com" ]
grishkin.max@gmail.com
6ac2c8d7af3ccba2fee02de42aa803fd2d49ec79
374b802c9287391ccf515220ecab074c4b847960
/Step_Three/Step_Three_Main.cpp
266f4fb1f5fdc7457011ad684fc2d1018d9f262c
[]
no_license
walleri18/Programming-under-Windows-OS
f4e815c35a6976108f65d9b88efa8ae0e5551665
3f37d151e4478bdcf12237d4e028251c50d6585b
refs/heads/master
2021-01-10T01:33:53.945166
2016-03-22T17:06:20
2016-03-22T17:06:20
51,696,190
0
0
null
null
null
null
WINDOWS-1251
C++
false
false
3,001
cpp
#include <afxwin.h> // Индентификатор для кнопки #define IDC_MYBUTTON 100 // Индификатор для поля редактирования #define IDC_MYEDIT 102 class CMainWnd : public CFrameWnd { public: CMainWnd(); afx_msg void OnLButtonDblClk(UINT, CPoint); afx_msg void OnRButtonDblClk(UINT, CPoint); afx_msg void OnKeyDown(UINT, UIN...
[ "walleri18@yandex.ru" ]
walleri18@yandex.ru
da49bfa383d29f5704d346de0c70e3392b5b55ee
0009a1127e59580a62e0b66160f8fd75fc36b8ab
/PRMT2014/PROM02.cpp
a72f26adee58a6f6e48d3841b8c95f2381f39a1b
[]
no_license
AshishKhatkar/Codechef
2d0435804a96bd61c19011e8ad09250340067734
0d77fff1740e235794a9d0c1246eb4e2c4f3b151
refs/heads/master
2020-05-17T00:54:38.953417
2015-04-26T13:11:29
2015-04-26T13:11:29
25,470,724
0
0
null
null
null
null
UTF-8
C++
false
false
693
cpp
/* ashish1610 */ #include<bits/stdc++.h> using namespace std; long long int fib_series[44]={1,2,3,5,8,13,21,34,55,89,144,233,377,610,987,1597,2584,4181,6765,10946,17711,28657,46368,75025,121393,196418,317811,514229,832040,1346269,2178309,3524578,5702887,9227465,14930352,24157817,39088169,63245986,102334155,165580141,26...
[ "akhatkar64@gmail.com" ]
akhatkar64@gmail.com
8391e9c60c97d415d4cf7b17fc7d2a813822c44e
a06a9ae73af6690fabb1f7ec99298018dd549bb7
/_Library/_Include/boost/phoenix/object/detail/preprocessed/new_40.hpp
f9abf5b649b60bdd16fad54848b67c8f15a8dc43
[]
no_license
longstl/mus12
f76de65cca55e675392eac162dcc961531980f9f
9e1be111f505ac23695f7675fb9cefbd6fa876e9
refs/heads/master
2021-05-18T08:20:40.821655
2020-03-29T17:38:13
2020-03-29T17:38:13
null
0
0
null
null
null
null
UTF-8
C++
false
false
50,667
hpp
//////////////////////////////////////////////////////////////////////////////// // new_40.hpp /*============================================================================== Copyright (c) 2005-2010 Joel de Guzman Copyright (c) 2010 Thomas Heller Distributed under the Boost Software License, Version 1.0. ...
[ "adm.fael.hs@gmail.com" ]
adm.fael.hs@gmail.com
a7214d42a97513224c499aeaa11523eb0d72e24d
5135ad30aafecf8d7ce576cf14b2e61b1b1809d3
/config/test/test_lexer.cpp
16092ac4392784a0d4501038182ec37039af0a02
[]
no_license
violetkz/kutil
cdd3042943a5aafb974e06314aad3fba9b87a30f
66805ddae3ddf7966c73455d1b3766078ddf94f3
refs/heads/master
2021-01-20T08:46:37.638251
2017-06-06T04:49:05
2017-06-06T04:49:05
3,745,748
1
0
null
null
null
null
UTF-8
C++
false
false
566
cpp
#include <iostream> #include <fstream> #include <cstdio> #include <cstdlib> #include "config_lexer.hpp" int main(int argv, char *args[]){ for (int i = 1; i < argv; ++i){ std::ifstream f(args[i]); if (f.bad()) { fprintf(stderr, "open file failed"); ::exit (-1); } ...
[ "proxy.vk@gmail.com" ]
proxy.vk@gmail.com
b0a0ff5668fb499a1904ebee6bc4db567f4ef2fc
e7b39d9a407fb4f21d59813e534e1194746b1c1b
/apps/incompress.cpp
dd25716ef5d8305a26cc7729e925502b28c34964
[ "Apache-2.0" ]
permissive
laosunhust/FluidSolver
9c6c84a0c5ba16d2a576f9d4046099f74da84726
d0c7fa235853863efdf44b742c70cf6673c8cf9e
refs/heads/master
2016-09-06T15:47:27.553033
2015-03-13T20:02:42
2015-03-13T20:02:42
32,176,432
1
0
null
null
null
null
UTF-8
C++
false
false
4,059
cpp
/* * Copyright 2008-2009 NVIDIA Corporation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
[ "laosunhust@gmail.com" ]
laosunhust@gmail.com
a7caf444081ac645107e28a1ec09d91437b2fc99
adde0e71a48162653fec33b2a2f52abd427539d4
/x10-2.4.3-src/x10.runtime/src-cpp/gen/x10/lang/BadPlaceException.cc
64232eec1355718552efaad976007d8c050a9248
[]
no_license
indukprabhu/deepChunking
f8030f128df5b968413b7a776c56ef7695f70667
2784c6884d19493ea6372343145e557810b8e45b
refs/heads/master
2022-06-07T19:22:19.105255
2020-04-29T18:49:33
2020-04-29T18:49:33
259,726,892
0
0
null
null
null
null
UTF-8
C++
false
false
3,450
cc
/*************************************************/ /* START of BadPlaceException */ #include <x10/lang/BadPlaceException.h> #include <x10/lang/Exception.h> #include <x10/lang/String.h> #include <x10/lang/Runtime.h> #include <x10/lang/Place.h> #include <x10/compiler/Synthetic.h> //#line 23 "/home/induk/workspace/x10-...
[ "NVIDIA.COM+User(622487)@IK-LT.nvidia.com" ]
NVIDIA.COM+User(622487)@IK-LT.nvidia.com
48f6d046260ce8a4b93d05876bfe2aa34fd177b2
6140629e539bddb881a8e3cc36bbe67d2f7b727d
/python/mof/cpp/creator<ack_get_scene_objects>.h
74018a9c071bc59b9b6b3c0f78505a1d4a9d1eb1
[]
no_license
lineCode/Demos
f7ba6c7d62c5a718606107aaff9491b1245206b8
95790c799c348cb1722f6df38120b27fe28a5a7c
refs/heads/master
2020-12-02T21:18:04.477471
2017-03-16T14:52:48
2017-03-16T14:52:48
null
0
0
null
null
null
null
UTF-8
C++
false
false
165
h
#ifndef MOF_CREATOR<ACK_GET_SCENE_OBJECTS>_H #define MOF_CREATOR<ACK_GET_SCENE_OBJECTS>_H class creator<ack_get_scene_objects>{ public: void create(void); } #endif
[ "xiaobin0860@gmail.com" ]
xiaobin0860@gmail.com
a210956d6b44910692f6563e61222d58ea073d04
11d852d6f5565a0572e8017411642a9570701f91
/code/core/internal/bsnet.cpp
f745136eb136a98d6c21207d3b6a58da52d74182
[ "MIT" ]
permissive
Ninetalesgh/brewing_station
9e3e5cfb0006df65ef42c09b8366109e74460646
dd25cac1f12b97dc96f32afc7868dfcc4a7a9f1a
refs/heads/master
2023-05-11T00:22:46.215568
2023-05-07T09:10:48
2023-05-07T09:10:48
191,439,585
1
1
null
null
null
null
UTF-8
C++
false
false
1,084
cpp
#include <core/bsnet.h> namespace bs { namespace net { u32 parse_ipv4( char const* from ) { u32 result = 0; char const* reader = from; for ( s32 i = 0; i < 4; ++i ) { char const* section = reader; s32 digit = 0; while ( *reader != '.' && *reader != '\0' ) ...
[ "camillolukesch@gmail.com" ]
camillolukesch@gmail.com
9d89c3408ee404ba96b7b67aa61ce31686d72e3f
f03c8f619095c5912a90d605d9f48e0c7e6950b0
/ToDoList/TDLFindTaskExpressionListCtrl.h
72c7268826af9582fa5729babd37b1b2c39de7f5
[]
no_license
timeislife/todolist
db41f9345b2207772b7042e9aa39c8fae1a9fd8e
cb8440ddc07d5961571c8f4fe722f5c1b64ef9d7
refs/heads/master
2021-01-10T21:44:07.759434
2015-02-02T16:53:06
2015-02-02T16:53:06
26,937,527
0
0
null
null
null
null
UTF-8
C++
false
false
3,953
h
#if !defined(AFX_FINDTASKEXPRESSIONLISTCTRL_H__42272309_6C54_4901_A56D_D6FDA87F1E48__INCLUDED_) #define AFX_FINDTASKEXPRESSIONLISTCTRL_H__42272309_6C54_4901_A56D_D6FDA87F1E48__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 // FindTaskExpressionListCtrl.h : header file // #include "tdcen...
[ "rferen2008@gmail.com" ]
rferen2008@gmail.com
61c0905d239d5e3beaa38af22c0d3b3806d225bf
fc3c7d3b0c89906ce37589e7b37870ecc357e83e
/lessons/source-30/utils.h
ff3f91c295760cbdf88ab87a0b11c5ac461d9bdf
[]
no_license
gromakovski/clone_repo
283b633716a66b8742955ce09f653bc7f4ff5375
cfdb081411c95a705425645ded61bb186046b96d
refs/heads/master
2020-09-07T16:51:58.960893
2019-11-10T21:24:34
2019-11-10T21:24:34
220,851,558
0
0
null
null
null
null
UTF-8
C++
false
false
223
h
#pragma once #include "sqlite/sqlite3.h" #include <string> namespace utils { void printAll(sqlite3* dbHandle, const std::string& tableName); bool executeQuery(sqlite3* dbHandle, const std::string& query); } // utils
[ "gromakovski" ]
gromakovski
cce6b4fcc8d03ab1add93b4a4f325e626b9112d5
3eef636ad6039f8218473ee783b2d6957ea2bc8d
/Layout Designer3/Layout Designer/MonitorTypePane.cpp
2dd7f9defa0c23b2c1c13a4a1302567855aaebe5
[]
no_license
nicktsai1988/windows
7f5b737c94f0fef941fac7abdbd1a412207d5a93
d99b6b6e09a72fbd0c51e8f2886dd46326c4d40a
refs/heads/master
2020-04-06T05:36:00.302227
2014-06-20T11:19:27
2014-06-20T11:19:36
20,987,594
0
1
null
null
null
null
UTF-8
C++
false
false
1,561
cpp
// MonitorTypePane.cpp : implementation file // #include "stdafx.h" #include "Layout Designer.h" #include "MonitorTypePane.h" // CMonitorTypePane IMPLEMENT_DYNAMIC(CMonitorTypePane, CDockablePane) CMonitorTypePane::CMonitorTypePane() { } CMonitorTypePane::~CMonitorTypePane() { } BEGIN_MESSAGE_MAP(CMonitorTypeP...
[ "nicktsai@163.com" ]
nicktsai@163.com
14de97f19c3591b28572a380e0dcb5246803f4f2
1352eac84ee81b864c302e64c238635221b4d307
/FMI/Homeworks/Homework 3 - Searching/CandiesAndBalloons.cpp
91f2a099c16bbfd9df2a0beee56034d68d092e5b
[]
no_license
erikz99/Data-Structures-And-Algorithms
5f329136e5f8a0bde59b47f710701410a90dfc48
350e95e38b295131057d6af1a39b3642c231e8b7
refs/heads/main
2023-03-11T15:57:09.845087
2021-02-21T21:15:59
2021-02-21T21:15:59
336,898,809
0
0
null
null
null
null
UTF-8
C++
false
false
1,601
cpp
#include <iostream> #include <vector> #include <algorithm> using namespace std; bool isPossible(vector <long long> vect1, vector <long long> vect2, int n, long long m, long long c) { for (int i = 0; i < n; i++) { if (c / vect2[i] >= vect1[i]) { continue; } else ...
[ "erikzdravkov99@gmail.com" ]
erikzdravkov99@gmail.com
58fd345231b4f2929998bd105921b33aa368cfd1
504fa56796d605107ac43c8a43a794b338079d75
/hmailserver/source/Server/Common/BO/ACLPermission.cpp
8e8faaba5b4cf3c460f1145076e979e03b5ad137
[]
no_license
bighossbiz/hmailserver
5877796f95d2c19c34744fdbefb06d819c58410d
39506daf6b95e554bd3153206eaaf0bd22affdf1
refs/heads/master
2021-01-21T04:04:09.604030
2014-08-31T13:15:06
2014-08-31T13:15:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,529
cpp
// Copyright (c) 2010 Martin Knafve / hMailServer.com. // http://www.hmailserver.com #include "StdAfx.h" #include "ACLPermission.h" #include "../BO/Groups.h" #include "../BO/Account.h" #include "../Cache/CacheContainer.h" #include "../Application/ACLManager.h" #include "../../IMAP/IMAPConfiguration.h" #ifdef _DEBU...
[ "knafve@gmail.com" ]
knafve@gmail.com
f10c52bb108f9ab6b37e01a6ccd63b0ae21e4ba9
4cc7c74b4bb7b818562bedffd026a86f9ec78f41
/content/browser/web_package/signed_exchange_loader.cc
017000894c81124d432ac8b762bfedf3ed4da4fa
[ "BSD-3-Clause" ]
permissive
jennyb2911/chromium
1e03c9e5a63af1cf82832e0e99e0028e255872bd
62b48b4fdb3984762f4d2fd3690f02f167920f52
refs/heads/master
2023-01-10T01:08:34.961976
2018-09-28T03:36:36
2018-09-28T03:36:36
150,682,761
1
0
NOASSERTION
2018-09-28T03:49:28
2018-09-28T03:49:27
null
UTF-8
C++
false
false
14,885
cc
// Copyright 2018 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "content/browser/web_package/signed_exchange_loader.h" #include <memory> #include "base/callback.h" #include "base/feature_list.h" #include "ba...
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
43a85fec5be295887d90e08a7e978314171939bd
18df433435a8fb883c0ca71e6d27f452c4ac9246
/include/freeBlockManager.h
86338390d8680d00e56daf4191699d5b3cfc79d8
[ "MIT" ]
permissive
ParthDesai/snfs
f621aa990dea8352be59629e70700124d7b64c2a
ab5f37ed1dd5fdc436f32d36725262f0a78380c3
refs/heads/master
2016-09-03T06:35:43.852824
2014-07-22T12:10:09
2014-07-22T12:10:09
22,101,951
1
0
null
null
null
null
UTF-8
C++
false
false
583
h
#ifndef FREEBLOCKMANAGER_H #define FREEBLOCKMANAGER_H #include "common.h" #include "freeBlock.h" #define FREE_BLOCK_ALIGNMENT BLOCK_SIZE class freeBlockManager { public: freeBlockManager(); virtual ~freeBlockManager(); freeBlock * getNextFreeBlock(); bool addToFreeBlock(uint32_t ...
[ "desaiparth08@gmail.com" ]
desaiparth08@gmail.com
ac5696f40fd5bf84b85683cfff22074230086788
1fc8f3ad84f27df094a6a8e340c5a1f7f8744272
/Leet-Code-Question/power-of-two/power-of-two.cpp
e988f22502735e663cecccf55244719fdb5ee40d
[]
no_license
vaibhavarora14/Ace-The-Code
528501d7a76b9e36791de54d99c9cecebafb7fa8
9c325845c66daab9d286a2709b91d1e2f8e82c74
refs/heads/master
2023-06-26T10:12:13.772611
2021-07-24T12:01:07
2021-07-24T12:01:07
389,092,773
1
0
null
null
null
null
UTF-8
C++
false
false
180
cpp
class Solution { public: bool isPowerOfTwo(int n) { while(n>1){ if(n%2==1) return false; n=n/2; } return n==1; } };
[ "sachinsinghroxx@gmail.com" ]
sachinsinghroxx@gmail.com
3b5aee6b4a05aa41fdf2c33a586e198b1444edb5
9ca8d4a890e9386ecc49fec923049f9bd1870ebc
/atcoderregular150/E.cpp
2f982466538213526d8d0ab2834ba788874ae23b
[]
no_license
Feng1983/atcoder
5582a4d65d78dbbfdcc88dd6d80abd79c1098505
b9a23c832df6973a5da632fca89785059dbde846
refs/heads/master
2023-03-16T07:05:40.030478
2023-03-06T14:45:55
2023-03-06T14:45:55
234,253,656
0
0
null
null
null
null
UTF-8
C++
false
false
1,666
cpp
#include <atcoder/modint> #include <bits/stdc++.h> using namespace std; using mint = atcoder::modint998244353; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int n, k; cin >> n >> k; string s; cin >> s; int bal = 0; for (char c : s) { if (c == 'L') { bal += 1; } else { ...
[ "Feng1983@github.com" ]
Feng1983@github.com
70c60494cf499f33e60965e094a69996f767c554
9dd98f55c66f7ccb28a6a6483c295aaaa2bde68e
/src/pathtracer.cpp
43574633e755e454a497361a9131919c51c75618
[]
no_license
m-iDev-0792/HJRT
9277f211ef8375c64802aa16b2bf67db592e8edd
037d5c98639335b29669ea43960b124ae5544215
refs/heads/master
2020-05-24T15:09:40.895490
2019-09-22T09:13:29
2019-09-22T09:13:29
187,323,823
3
0
null
null
null
null
UTF-8
C++
false
false
4,406
cpp
// // Created by 何振邦 on 2019-06-07. // #include "pathtracer.h" PathTracer::PathTracer() { maxBounce = 25; RRCutBounce = 5; state = Integrator::IDLE; samplingTex.setSamples(20); antiAliasNum = 2; renderThreadNum = 0; renderPortionBlock = 8; latestRenderSec = 99999999; } void PathTracer::renderBlock(float &blo...
[ "1015732477@qq.com" ]
1015732477@qq.com
ca3d59c962688f35ce67921a851331733e983d6a
c135c960924aa8039c0f5e5950966cd9574b611e
/C++11/cpp11.cpp
36bee09aeb558d0f5d3d37bb65bc1c7c5cf7af34
[]
no_license
leo3579/CPP11Feature
8e0c1623b4f93d6cbf1d68fcc452487cdf336950
4c742ea8832237e35d2516327cfab3ecf4432361
refs/heads/master
2020-08-13T11:07:34.622218
2019-10-14T06:27:07
2019-10-14T06:27:07
214,959,232
0
0
null
2019-10-14T06:27:08
2019-10-14T05:55:37
C++
UTF-8
C++
false
false
8,301
cpp
#include <iostream> #include <set> #include <functional> #include <algorithm> #include <initializer_list> #include <string> #include <cstring> #include <vector> using namespace std; using namespace std::placeholders; enum class apple{ green, red }; // In C++11 to declare enum we need either class name or stuct to hav...
[ "leo_alexander333@yahoo.com" ]
leo_alexander333@yahoo.com
48c11d54821d1297d39112e436f473e2e47ec99a
88f47e2314add1dc28264befd977f24492455580
/Altseed.h
bfd39047640f71ff21162b746fa61a0674edeca9
[ "BSL-1.0", "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
akitsu-sanae/asd-c-wrapper
7150532cd93c7118538c13250b07a41223c74ae6
2823e6e5ed6f10e6095fcf2779fa91e59489137b
refs/heads/master
2021-01-11T10:25:17.698524
2016-12-12T14:27:52
2016-12-12T14:27:52
76,259,654
0
0
null
null
null
null
UTF-8
C++
false
false
267,939
h
#pragma once //---------------------------------------------------------------------------------- // Include //---------------------------------------------------------------------------------- #include <stdio.h> #include <math.h> #include <float.h> #include <stdint.h> #include <string.h> #include <limits.h> #include...
[ "akitsu.sanae@gmail.com" ]
akitsu.sanae@gmail.com
28dbd1c2c4002298e5965c9fe919540637ce8dde
6f1876cb2807e20f3e359a4be8067ea1f76ac606
/mqtt/session.cpp
6dea6b3e99b4bb1a739147e5808b4cebe0155675
[]
no_license
lordjaxom/repwatchd
5b941fa77e1892984050da8dbc2c3c7ede1c3a90
b9c33ce4d71471c98acd03d5883fe4bd7a52e5d0
refs/heads/master
2023-08-25T22:34:45.821120
2021-11-01T15:25:25
2021-11-01T15:25:25
332,046,647
0
0
null
null
null
null
UTF-8
C++
false
false
4,340
cpp
#include <algorithm> #include <stdexcept> #include <unordered_map> #include <utility> #include <3dprnet/core/logging.hpp> #include <mosquittopp.h> #include "session.hpp" using namespace std; using namespace prnet; using namespace mosqpp; namespace repw { namespace mqtt { static Logger logger( "mqtt::Session" ); c...
[ "sascha@akv-soft.de" ]
sascha@akv-soft.de
d9537400deed8f7e9fe7a0f13933411185f98f01
d6c54a9cb57a6f5b88aaef157e9e2870e4fd86af
/Day 29/day29.cpp
2d60bd5d8f4682098bc90f5b34baf6ffd739efb2
[]
no_license
vishaka-mohan/30-Days-of-Code-Challenge
fce1c1b9d9760f8d3308326d3244a2bfa8f5e971
8f3197aa9e9075ab5bebf442545f739e82327507
refs/heads/main
2023-02-02T16:31:07.828019
2020-12-21T15:22:50
2020-12-21T15:22:50
314,985,699
0
0
null
null
null
null
UTF-8
C++
false
false
1,250
cpp
#include <bits/stdc++.h> using namespace std; vector<string> split_string(string); int main() { int t; cin >> t; cin.ignore(numeric_limits<streamsize>::max(), '\n'); for (int p = 0; p < t; ++p) { int m = 0; int n,k; cin >> n >> k; for (int i = 1; i < n; ++i) { ...
[ "pflight0211@gmail.com" ]
pflight0211@gmail.com
50c8a282aab438d206aa2355addd42f116680876
3e5f4c3fc27e95b109043b1d8be66fdbf83f4821
/samples/chapter10/list10_6.cpp
87866c0390e6db680ef9cb73fc005f575dacbcf9
[]
no_license
TakutoMotomura/C-class-and-inheritance
f66d857f6d47b1f9f0e00bd2abdc77d1a1adc0b0
d2a6bf5b6fbbe178751039dbd1a46c253e30c936
refs/heads/master
2023-06-16T13:03:01.037797
2021-07-09T14:17:57
2021-07-09T14:17:57
358,620,032
0
0
null
null
null
null
SHIFT_JIS
C++
false
false
2,035
cpp
#include <iostream> #include <cstdlib> #include <ctime> using namespace std; // 基本クラスの定義 class Hand { public: virtual void judge(Hand *h) = 0; // 相手に問い合わせる virtual void vsGu() = 0; // グーに勝てるかどうかを返す virtual void vsChoki() = 0; // チョキに勝てるかどうかを返す virtual void vsPa() = 0; // パーに勝てるかどうかを返す }; // Guクラスの定義 class Gu ...
[ "takumoto913@gmail.com" ]
takumoto913@gmail.com
ca4b5ad94f188d1cfc37612e26a0ebe88b64309c
cbf8c509d425105a0cb2d93b593acd6412efa1d9
/PhysicalNumberTest.cpp
fb52fcbc728201a8833446d1a508cb143939a9c9
[]
no_license
oravital7/PhysicalNumber
22b4480d8289614be4c440fe4b28a154f6ecd5f4
694a991f59b63f3989d9560e90fec1fb3d7d669d
refs/heads/master
2020-05-04T02:43:40.482854
2019-04-07T17:48:01
2019-04-07T17:48:01
178,932,814
0
2
null
null
null
null
UTF-8
C++
false
false
5,608
cpp
/** * Examples of automatic tests for the exercise on physical numbers. * * @author Erel Segal-Halevi * @since 2019-02 */ #include <iostream> #include <sstream> using std::cout, std::endl, std::istringstream; #include "PhysicalNumber.h" using ariel::PhysicalNumber, ariel::Unit; #include "badkan.hpp" int main() {...
[ "oravital7@gmail.com" ]
oravital7@gmail.com
d6f50964150c171d9f140da109cb5dcb1f5aa372
a4b04b8cfdbd2ee95ddc98be2548ae9ffa620aa6
/Assignment-two/Part1/PartC/Image.cpp
11ff50758b06df4f9364df18c70f420716976465
[]
no_license
RakeshKumarSatvik/Digital-Image-Processing
a6e088cd07c7b084aa768378e95b79c660600a08
08bc7195671eeb97ae49d4b0f36da5dea21e1791
refs/heads/master
2021-05-01T18:36:29.817523
2016-11-05T17:57:26
2016-11-05T17:57:26
68,081,336
0
0
null
null
null
null
UTF-8
C++
false
false
4,360
cpp
/* Name : Rakesh Kumar Satvik USC ID : 8772-6992-51 USC email : satvik@usc.edu Submission date : 18/09/2016 File : This code is for Non-local means noise removal algorithm. */ #include <cstdio> #include <iostream> #include <cstdlib> #include <cstring> #include <c...
[ "satvik@usc.edu" ]
satvik@usc.edu
4123895cca399ef047d1d9dfaff2744df4aee9d0
be0282afa8dd436619c71d6118c9db455eaf1a29
/Intermediate/Build/Win64/Design3D/Inc/SlateCore/FontBulkData.gen.cpp
b5c5d71b30bab518e16904b78dad1e8ab4f892a5
[]
no_license
Quant2017/Design3D
0f915580b222af40ab911021cceef5c26375d7f9
94a22386be4aa37aa0f546354cc62958820a4bf6
refs/heads/master
2022-04-23T10:44:12.398772
2020-04-22T01:02:39
2020-04-22T01:02:39
262,966,755
1
0
null
2020-05-11T07:12:37
2020-05-11T07:12:36
null
UTF-8
C++
false
false
3,331
cpp
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved. /*=========================================================================== Generated code exported from UnrealHeaderTool. DO NOT modify this manually! Edit the corresponding .h files instead! ==============================================================...
[ "Snake_Jenny@126.com" ]
Snake_Jenny@126.com
a65687b068ace191c950d98542dbd0d52881be87
4a8909e83b18553c0fdeed0b8c29e3e3f306a4aa
/src/CollisionWorld.cpp
2edafb7aae81eb7ffce62897b4ae176c2bf1ac14
[ "Zlib" ]
permissive
marl0ncode/crush
a568429016a776af20aab4cafb2246efaa808e47
fe40a45e9091d8caf35e39d3d8f4648b6d191ea9
refs/heads/master
2021-06-24T20:08:21.680722
2015-11-01T11:19:11
2015-11-01T11:19:11
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,816
cpp
/********************************************************************* Matt Marchant 2014 - 2015 http://trederia.blogspot.com Crush - Zlib license. This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this softw...
[ "matty_styles@hotmail.com" ]
matty_styles@hotmail.com
d18c0f9a9c9be60a3ef783c6eb5a796b586634c5
df1b3fd64f029c3d9f913f1ca7aae167a4ebce18
/benchmarks/01_trivial/05_packed_load_store.cpp
64482ab0517d4a2dcdf92c316b00fe6d8254ae37
[ "BSD-3-Clause" ]
permissive
sebpop/ispc
cd5dd26fc2de6c436a00a76f0e7a22eedd336981
bf959a96af1a362b1fe16895aa2ae997355ea05b
refs/heads/main
2023-04-23T19:23:24.798090
2021-04-07T20:42:34
2021-04-07T20:42:34
358,018,013
0
0
BSD-3-Clause
2021-04-14T19:22:09
2021-04-14T19:22:08
null
UTF-8
C++
false
false
10,821
cpp
#include <benchmark/benchmark.h> #include <bitset> #include <cstdint> #include <stdio.h> #include "../common.h" #include "05_packed_load_store_ispc.h" static Docs docs("Check packed_load_active/packed_store_active implementation of stdlib functions:\n" "[int32, int64] x [all_off, 1/16, 1/8, 1/4, 1/2, 3/4...
[ "dmitry.y.babokin@intel.com" ]
dmitry.y.babokin@intel.com
e1c5a27c61fc9d0ccefa598d787d2e59b4d4e1f0
72aca11f973b7c337012475ad3111cd20a5dd589
/others/NOIOnline/running.cpp
4f5d8847e6a273d74829004a493aaa790dc2aca4
[]
no_license
aplqo/exercises
a4cee1acbef91e64aee2bd096cd7e0bb834926a4
e28f14eaf89481c34bc1a27206e8cea2d2d94869
refs/heads/master
2021-06-25T06:34:09.535835
2021-04-08T13:52:39
2021-04-08T13:52:39
217,698,619
0
0
null
null
null
null
UTF-8
C++
false
false
833
cpp
#ifdef APTEST #include "debug_tools/program.h" #endif #include <algorithm> #include <cstdio> using namespace std; typedef long long num_t; const int maxn = 1e5; num_t f[maxn + 10] = {0, 1}, mod; num_t sum[maxn + 10][2] = {{0, 0}, {1, 1}, {2, 1}}; int main() { #if (!defined(APTEST)) && (!defined(APDEBUG)) freopen("r...
[ "aplqo@outlook.com" ]
aplqo@outlook.com
e2bebdd2f3d43af759ffa9b30cadcd78ce2e080f
6f4883cec42366e1ed7dc4ddf25b56e7702b0c69
/2992/6244664_AC_625MS_168K.cpp
bea6d998a5f6629b2411b430f835fce0f7de4980
[]
no_license
15800688908/poj-codes
89e3739df0db4bd4fe22db3e0bf839fc7abe35d1
913331dd1cfb6a422fb90175dcddb54b577d1059
refs/heads/master
2022-01-25T07:55:15.590648
2016-09-30T13:08:24
2016-09-30T13:08:24
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,308
cpp
#include<iostream> int prime[500]; int n,k,top; __int64 result; int main() { int i,j,c,num; prime[1]=2; top=1; for(i=3;i<=431;i+=2) { for(j=2;j*j<=i;j++) if(i%j==0) break; if(j*j>i) prime[++top]=i; } ...
[ "dilin.life@gmail.com" ]
dilin.life@gmail.com
4d60e41c09cfed1d03ebf07003c31a37105732d5
5b83a3eef49ac004b98ff1ff9ce30989fd85c567
/CodeChef/FEB19B/GUESSRT.cpp
5cbec105fd5a5d0cde1aea0eae39cbcd498c933f
[]
no_license
floreaadrian/AlgCodes
cd0dfe331d2b1acae26ead05c4be07d6c3c05f52
b3ba2472ba256a73daea334c22bbca282ff3a24d
refs/heads/master
2020-05-25T14:34:27.475469
2019-05-21T13:49:35
2019-05-21T13:49:35
187,846,889
1
0
null
null
null
null
UTF-8
C++
false
false
1,782
cpp
#include <iostream> #include <string> #include <vector> #include <algorithm> #include <math.h> using namespace std; #define modulo 1000000007 long long power(long long base, long long exp) { base %= modulo; long long result = 1; while (exp > 0) { if (exp & 1) result = (result * ba...
[ "florea.adrian.paul@gmail.com" ]
florea.adrian.paul@gmail.com
4309e194dafa2ac2cf7af0c2f08e36fae25594df
88ae8695987ada722184307301e221e1ba3cc2fa
/components/enterprise/browser/reporting/report_scheduler.h
afcb98f159277e83315d78355d1ff8b10a564c6a
[ "BSD-3-Clause" ]
permissive
iridium-browser/iridium-browser
71d9c5ff76e014e6900b825f67389ab0ccd01329
5ee297f53dc7f8e70183031cff62f37b0f19d25f
refs/heads/master
2023-08-03T16:44:16.844552
2023-07-20T15:17:00
2023-07-23T16:09:30
220,016,632
341
40
BSD-3-Clause
2021-08-13T13:54:45
2019-11-06T14:32:31
null
UTF-8
C++
false
false
7,667
h
// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_ENTERPRISE_BROWSER_REPORTING_REPORT_SCHEDULER_H_ #define COMPONENTS_ENTERPRISE_BROWSER_REPORTING_REPORT_SCHEDULER_H_ #include <memory> #include <string> #i...
[ "jengelh@inai.de" ]
jengelh@inai.de
8ac1cc923d18fd49c1f7b5aa51de1439e70d2c58
e692e07b8f25bc765fa6ddfb518300e3777962d9
/TD8/POO-TD8/src/Herbivorous.h
2dfdeee5a9177903d13a419ce9c912c94caeb6e3
[]
no_license
danyfel80/pooAvancee
eaf1865d2a406c0fb1daf1c1e8ca37b29d2b30c5
be318a27a10238ea009ccb7b815586d97f33b155
refs/heads/master
2020-03-29T14:33:51.801151
2018-12-03T23:07:59
2018-12-03T23:07:59
150,023,467
2
1
null
null
null
null
UTF-8
C++
false
false
387
h
/* * Herbivorous.h * * Created on: Nov 20, 2018 * Author: daniel */ #ifndef HERBIVOROUS_H_ #define HERBIVOROUS_H_ #include "Animal.h" class Herbivorous: public virtual Animal { public: Herbivorous(); virtual ~Herbivorous(); virtual string getDescription() const; virtual string getEatingHabits() const;...
[ "danyfel80@gmail.com" ]
danyfel80@gmail.com
96c5d395fc5eae66235d5d713f1872683517c93f
385cfbb27ee3bcc219ec2ac60fa22c2aa92ed8a0
/ThirdParty/fbxsdk/2009.3/include/fbxfilesdk/kfbxplugins/kfbxsystemunit.h
66aa24f3c1121ed9361b2d8dd5297250278639ff
[ "LicenseRef-scancode-unknown-license-reference", "MIT" ]
permissive
palestar/medusa
edbddf368979be774e99f74124b9c3bc7bebb2a8
7f8dc717425b5cac2315e304982993354f7cb27e
refs/heads/develop
2023-05-09T19:12:42.957288
2023-05-05T12:43:35
2023-05-05T12:43:35
59,434,337
35
18
MIT
2018-01-21T01:34:01
2016-05-22T21:05:17
C++
WINDOWS-1252
C++
false
false
8,261
h
/*! \file kfbxsystemunit.h */ #ifndef FBXFILESDK_KFBXPLUGINS_KFBXSYSTEMUNIT_H #define FBXFILESDK_KFBXPLUGINS_KFBXSYSTEMUNIT_H /************************************************************************************** Copyright © 2001 - 2008 Autodesk, Inc. and/or its licensors. All Rights Reserved. The coded instr...
[ "rlyle@palestar.com" ]
rlyle@palestar.com
416f6aa03a46a494809718770f3245aa33c37325
48614ea523aae6c1fc53dbd97f0d5c772f21066f
/src/MessageParser.cpp
c38dba1b5f2c9009e52e10aaa89719fb6021435f
[]
no_license
zhangjun03402/TaskDispatcher
d74ab6e23cbc7762fb30406437b23b5822f4f939
90f7534f98997c90359e732240e27fd7973fa34b
refs/heads/master
2021-01-12T15:18:43.409266
2016-10-30T07:23:35
2016-10-30T07:23:35
71,752,259
0
0
null
null
null
null
GB18030
C++
false
false
9,303
cpp
#include "MessageParser.h" #include <cassert> //rep msg base class CResponseMsg::CResponseMsg(string strTaskID) { task_id = strTaskID; } E_BIZ_TYPE CResponseMsg::getRspMsgType() { return E_BIZ_TYPE_UNKOWN; } void CResponseMsg::sendZframe(zframe_t *id_frame, void *sock, string strJson, bool bWorker) { zframe_t *re...
[ "jzhang@ling-ban.com" ]
jzhang@ling-ban.com
867502f7a6fadffe27c86ebb5c933ef6460bbe1b
a06a9ae73af6690fabb1f7ec99298018dd549bb7
/_Library/_Include/boost/spirit/home/lex/lexer/lexertl/wrap_action.hpp
a2d56ccce8bf333418af67c158e00cb82ee46bdd
[]
no_license
longstl/mus12
f76de65cca55e675392eac162dcc961531980f9f
9e1be111f505ac23695f7675fb9cefbd6fa876e9
refs/heads/master
2021-05-18T08:20:40.821655
2020-03-29T17:38:13
2020-03-29T17:38:13
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,115
hpp
//////////////////////////////////////////////////////////////////////////////// // wrap_action.hpp /*============================================================================= Copyright (c) 2001-2011 Joel de Guzman Copyright (c) 2001-2011 Hartmut Kaiser http://spirit.sourceforge.net/ Distributed un...
[ "adm.fael.hs@gmail.com" ]
adm.fael.hs@gmail.com
dac02e3c6ba037bf099414b66ac51e6009dbaa02
fc020fe939c62895c5676b02fcd9c2da026f4ac6
/JqNOPdgvekAfxVWs/sWYIRQN7jUdJLCah.cpp
afde99bd7fb4e1b18a200400704c7ff3efb76bad
[]
no_license
urlib/lxzRkM
7fd2521ddd777f35b4b5f3c6e15e80cf7e65a1a8
7d8b8dddf93971d95ca5fe0952ba26e63bbf5df3
refs/heads/master
2023-01-01T23:16:50.909301
2020-04-11T08:49:46
2020-04-11T08:49:46
246,248,231
0
0
null
null
null
null
UTF-8
C++
false
false
44,284
cpp
𥻥𢝰駘㍻𧑵𛰁𐕏죷웧쬰𘧶꓆𦁔𪊀₨ꅨ눞𓈘𮥆㻀嶲𠃪𢰵㨹缐ៈ𘄳𣸃棥𘇩𨋽摾𡱸识𝤘謺𢦘⎓𦷄𭭿𬕂𫧋𭲨屝𝃳𦈊𤌿𫪻𢧼グㄙ𭠤𥲃햿𫓂𥗂𡮑闎𭡡ꔶ𫃩癓𨘜𥻢𨋛褿𫕏𠹄𣍈ॹ𢹶𔗌ꦭ𭿥𥟍驩䱨𖡏𡙅𢕪𢬑带𬚱𖼩𡔵𤜝灮༴鷳儉숃露𓉇苒瞂𬱏𦙺裆䨤惦𨓮𧨍𡒲料㇗𐂥𤏈𠁾𣒦𝑦䖺肤𦀧𔖖𬭿𮉓𮟝餉𪵕𪮿넄ไ𦀖𬌉𑑋焥𩐫𨤱泲吼𧣉📒𨡃𬄝𩀹𬌄𮮓艸𗟌𥋭喠𠅮謹𬈠䂳𢔍ᐢ𦔶𣪒⭞𡛩Ⲧᬚ鲚𬏡𗂡ꪔ🢧𫺒𘏪𧯞𬫿𢝷𬴈├𪁑𮈟𠯤媽⅄𪑻𬘺𥹓𠒗骆쀯歕퍜𧒤𦔷瓬㤧輢𝒀𢙿탯撇𣆄𢤢斆≣𒉕𤴒𢘤𠩼𤫈𢪁믃𦊰...
[ "45290401+vmlankub@users.noreply.github.com" ]
45290401+vmlankub@users.noreply.github.com
3e0d1c8453dd1d7dfb83a7962ac66feb7cb21210
6a66c4ed116e9830be1a4e5dc0fcc224771c5fd6
/BattleTank 4.22/Source/BattleTank/Public/Tank.h
66dd1de78b0e2781ff597fbe3c18dbf04948a2f0
[]
no_license
chadstephensGD/04_BattleTank
17beb2c2d3148235f817b4d214243a1277c43aa4
8ea7534ded1dfd14068ca312aab69d14de0eac88
refs/heads/master
2020-05-17T13:30:25.295174
2019-05-11T10:43:26
2019-05-11T10:43:26
183,733,825
0
0
null
null
null
null
UTF-8
C++
false
false
1,032
h
// Copyright 2019 Chad Stephens, All rights Reserved #pragma once #include "CoreMinimal.h" #include "GameFramework/Pawn.h" #include "Tank.generated.h" // setup on death delegate DECLARE_DYNAMIC_MULTICAST_DELEGATE(FTankDelegate); // Defines the actual tanks for the game UCLASS() class BATTLETANK_API ATank : public A...
[ "caris@artthouglorious.com" ]
caris@artthouglorious.com
98c82fbae49b1b4a2633903b5172102f16af5795
7fc2eb6023fe2ee4a1e9bb6ad4e7673b6bd9bd5e
/osgEarthFeaturesCpp/ScaleFilter.cpp
2236f78bec558d497bc3bbd241b369fd6524b7b9
[]
no_license
geobeans/vxworks_osgEarthFeatures
3befcc9bdd2ca6ce8a7ec6699e62ab94b57496f6
10481691849cc9698d69f958fe144cb78ebf46d9
refs/heads/master
2021-01-20T04:39:28.767584
2016-09-20T01:51:30
2016-09-20T01:51:30
68,663,191
2
0
null
null
null
null
UTF-8
C++
false
false
2,079
cpp
/* -*-c++-*- */ /* osgEarth - Dynamic map generation toolkit for OpenSceneGraph * Copyright 2008-2010 Pelican Mapping * http://osgearth.org * * osgEarth 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 Foundat...
[ "geobeans@gmail.com" ]
geobeans@gmail.com
24231e0722bb0fa1f6e46ce54fde975f5aaa2df9
a35b30a7c345a988e15d376a4ff5c389a6e8b23a
/boost/phoenix/function/detail/preprocessed/function_operator_40.hpp
3c4b39b498e7b94aa7ec8c09e43e95b253a963e4
[]
no_license
huahang/thirdparty
55d4cc1c8a34eff1805ba90fcbe6b99eb59a7f0b
07a5d64111a55dda631b7e8d34878ca5e5de05ab
refs/heads/master
2021-01-15T14:29:26.968553
2014-02-06T07:35:22
2014-02-06T07:35:22
null
0
0
null
null
null
null
UTF-8
C++
false
false
103
hpp
#include "thirdparty/boost_1_55_0/boost/phoenix/function/detail/preprocessed/function_operator_40.hpp"
[ "liuhuahang@xiaomi.com" ]
liuhuahang@xiaomi.com
eff9ad941161d77c1ad3093305d59f8a312e199f
4bfaf131b0f31b13ec91273a39fe69ab7a6f42a4
/Project7/源.cpp
ff49fb854fe5570944d271a9c008d35c4b9eaa3b
[]
no_license
MarsOu1998/First111
847aa47f5cef3d9aea7f9d1a47412ce357f3cd6f
2bc1d095d0478b32cf038bce540a571c8c363200
refs/heads/master
2020-04-15T22:58:24.139523
2019-01-10T17:09:05
2019-01-10T17:09:05
null
0
0
null
null
null
null
UTF-8
C++
false
false
87
cpp
#include<iostream> using namespace std; int main() { cout << "Hello world!" << endl; }
[ "ouyangshile@qq.com" ]
ouyangshile@qq.com
3113c5f0dc18141e2d0a2c7b18ad50ee58cffc88
ceb80a325d3ec59465f340bd98c00b3cd608ea5e
/lab1/lab1testing/lab1test.cpp
eb52a63cb9718d754b3d08a69b06a20792063869
[]
no_license
michellepana/CombatGame
1dd156cdee4b89baa034dab65e14d91caba21669
4ded065e407e0ac160919c1bf00a8348ef7d019c
refs/heads/master
2020-04-25T13:16:54.439356
2019-02-27T05:22:23
2019-02-27T05:22:23
172,804,009
1
0
null
null
null
null
UTF-8
C++
false
false
1,107
cpp
#include <iostream> using std::cout; using std::cin; using std::endl; //prototypes void display(int** array, int size); void edit(int** array, int size); int main(){ char a = ' '; char b = '#'; cout << "a is " << int(a) << " and " << a << endl; cout << "b is " << int(b) << " and " << b << endl; ...
[ "miaovaberry@gmail.com" ]
miaovaberry@gmail.com
7938deb801e279acddb20faea532661c48ca237e
0bb2876a278f069aed3f353fe3e3c09261138801
/Code Forces/A_Nearly_Lucky_Number.cpp
cdfa3ea48a0a36d5ca1d1f0070bb3b1fdc97a600
[]
no_license
ranveerraj248/DS-Algo-Basic
8de95240ff25a7c36852eb690b020009365e40c5
2339ce00c2929fc354a57c8d600ea7f0e34964fe
refs/heads/main
2023-06-25T14:04:56.938052
2021-07-29T03:55:11
2021-07-29T03:55:11
390,592,397
0
0
null
null
null
null
UTF-8
C++
false
false
668
cpp
#include <bits/stdc++.h> using namespace std; bool isNearlyLucky(int number) { string num = to_string(number); bool flag = true; for (char &ch : num) { if (ch == '4' || ch == '7') { continue; } else { flag = false; break; ...
[ "ranveerraj248@gmail.com" ]
ranveerraj248@gmail.com
a512b2abfcfaa6732ad10f6b2c116a1b81958c73
b22588340d7925b614a735bbbde1b351ad657ffc
/athena/ForwardDetectors/ForwardIdCnv/src/ForwardIdCnv_entries.cxx
56a1277d683ab27a42438c799938cec3957af5a9
[]
no_license
rushioda/PIXELVALID_athena
90befe12042c1249cbb3655dde1428bb9b9a42ce
22df23187ef85e9c3120122c8375ea0e7d8ea440
refs/heads/master
2020-12-14T22:01:15.365949
2020-01-19T03:59:35
2020-01-19T03:59:35
234,836,993
1
0
null
null
null
null
UTF-8
C++
false
false
366
cxx
/* Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration */ //==================================================================== #include "GaudiKernel/DeclareFactoryEntries.h" #include "ZdcIDDetDescrCnv.h" DECLARE_CONVERTER_FACTORY(ZdcIDDetDescrCnv) DECLARE_FACTORY_ENTRIES ( ForwardIdCnv ) { ...
[ "rushioda@lxplus754.cern.ch" ]
rushioda@lxplus754.cern.ch
dd083899ecaa500a7e763ca9e4934f913ae3b8bd
1412dbcc68a5f1d89f599be418a5a76953d5b1e7
/151.cpp
902afc163a9452cc8077702e5e202374b357e9ed
[ "MIT" ]
permissive
jonathanxqs/lintcode
d4f996d2f33cc9e7f80710abbd73d121d16a3a23
148435aff0a83ac5d77a7ccbd5d0caaea3140a62
refs/heads/master
2020-04-12T05:42:48.072149
2017-09-29T02:12:55
2017-09-29T02:12:55
61,647,406
1
0
null
null
null
null
UTF-8
C++
false
false
862
cpp
class Solution { public: /** * @param prices: Given an integer array * @return: Maximum profit */ int maxProfit(vector<int> &prices) { if (prices.size() == 0) { return 0; } vector<int> profit(prices.size()); int buy = 0; buy = prices[0]...
[ "xucanxucan123@gmail.com" ]
xucanxucan123@gmail.com
c10e6c0faefabb19638aa02784a376932d09f397
0fd1917a74e97d6bceba0cc481de1443ed405d42
/PhysicsEngine/PE/Geometry.h
bf7f23c5fc4936a4886dec63632028994642049b
[]
no_license
samuelbrown3199/PhysicsForGames
10057587578bace95b64c215d8a034d2d603e62f
158ddc6cc4c2207ce7d7a22eb20c501a05020c77
refs/heads/master
2022-04-08T01:27:14.782580
2020-03-10T01:21:04
2020-03-10T01:21:04
240,267,564
1
0
null
null
null
null
UTF-8
C++
false
false
421
h
#pragma once #define _USE_MATH_DEFINES #include <cmath> #include "vec3.hpp"// glm::vec3 #include "geometric.hpp"// glm::cross, glm::normalize namespace PE { class Geometry { public: void static Lerp(const float& i_PointA, const float& i_PointB, const float& i_DeltaT, float& o_PointC); void static Lerp(const g...
[ "samuelbrown3199@gmail.com" ]
samuelbrown3199@gmail.com
02fb717d2d5c8d2a3631c1a7063ecc6ada7b9136
e570afd5eadc2315c3bf0611b258e52784403833
/leetCode/046_Permutations.cpp
8b6bb2c0d2cfdf0b24d699cd9f9a50b6e33a9c4c
[]
no_license
futureCoder/algorithms
dccad33d69125f99cae10eb339d7849116fb8c07
efc73da82122823f571675e6200547a2f5a45247
refs/heads/master
2021-01-16T23:58:20.343282
2020-06-01T16:18:31
2020-06-01T16:18:31
58,052,627
0
0
null
null
null
null
UTF-8
C++
false
false
473
cpp
class Solution { public: void permute(vector<int>& nums, int start, int end, vector<vector<int>>& ret) { if(start == end) { ret.push_bacstart(nums); return; } for(int i = start; i < end; ++i) { swap(nums[i], nums[start]); permute(nums, start + 1, end, ret); swap(nums[i], nums[start]); } } v...
[ "jason-dong@foxmail.com" ]
jason-dong@foxmail.com
c582a94813b5382a424208ffea432980ae592124
7b52f39e0e520e8433a3b7293fa57752cb3fedd9
/demo/bus_cpp/main.cpp
4cc2e8ba54d56a92bcebf087bf7c2b202a1d49f6
[]
no_license
bgamari/libmanyuc
bb8d7dce01cba579d6cb008734487d63aa3cb71f
927fc7d457fc27d172a94fc0676187785a93970c
refs/heads/master
2020-12-25T09:00:37.507992
2012-08-11T20:51:26
2012-08-11T20:51:26
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,501
cpp
/* * libmanyuc - Example of using the serial port * Copyright (C) 2012 - Margarita Manterola Rivero * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the Li...
[ "margamanterola@gmail.com" ]
margamanterola@gmail.com
597fc0f677cd6b13921876700c23b8f97d91e80e
215750938b1dd4354eab9b8581eec76881502afb
/src/test/TestAnalysisFreq.h
d95f0442500ae7be29177af6671106c7d309b01d
[ "WTFPL" ]
permissive
EleonoreMizo/pedalevite
c28fd19578506bce127b4f451c709914ff374189
3e324801e3a1c5f19a4f764176cc89e724055a2b
refs/heads/master
2023-05-30T12:13:26.159826
2023-05-01T06:53:31
2023-05-01T06:53:31
77,694,808
103
8
null
null
null
null
UTF-8
C++
false
false
1,938
h
/***************************************************************************** TestAnalysisFreq.h Author: Laurent de Soras, 2021 --- Legal stuff --- This program is free software. It comes without any warranty, to the extent permitted by applicable law. You can redistribute it and/or modify it under ...
[ "fuck@fuck.fuck" ]
fuck@fuck.fuck
9f8836597a6edd1abdb7ea9be81a0364b4ae77b3
71c79c581811e8093142d6886b242d772ce336c1
/grpc_client/src/socket_test.h
366800889e40656ff6f8a2277d5b66b2e66d7ccd
[]
no_license
chendong0101/tupu
619798883218cc4673ef9a9ac2478a04e839beb6
371fdedc8d8abdf2c303581a79df6896b19e197d
refs/heads/main
2023-03-26T02:10:53.398447
2021-03-22T07:17:26
2021-03-22T07:17:26
350,237,718
0
0
null
null
null
null
UTF-8
C++
false
false
5,606
h
#include <sstream> #include <string> #include <unistd.h> #include <sys/socket.h> #include <sys/types.h> #include <sys/errno.h> #include <netinet/in.h> #include <arpa/inet.h> #define BUFFSIZE 2048 #define SERVER_IP "127.0.0.1" #define SERVER_PORT 16555 enum MSG_ID { HELLO = 0, RET_HELLO, SET, RET_SET, GET...
[ "chendong01@sogou-inc.com" ]
chendong01@sogou-inc.com
e05633a642f7ae83262f42905ad84941c771183e
eb2e31eca5e4af6dab3d525264763713544fa901
/inc/graph_library/Dijkstra.hpp
78fb4eaeb5ffbee987bb96e02a0c7930fcc3700b
[]
no_license
Ararat6/subsea
7b971c115885f4be048ea7c44c6648c64b791e54
d8bd8b040de26a4e7b310c858f6de7d5b51a3985
refs/heads/master
2020-06-11T23:21:12.769492
2016-12-05T10:17:44
2016-12-05T10:17:44
75,613,025
0
0
null
null
null
null
UTF-8
C++
false
false
36
hpp
../../src/graph_library/Dijkstra.hpp
[ "araratkhachatryan6@gmail.com" ]
araratkhachatryan6@gmail.com
8197d5bab983032db99f8bf07a44018670d9a351
e6db991523cd8b0ef5f69d5361466eb5f5b94838
/main/solvers/VPPSolver.cpp
e660c12b386df59f4069704261e05cd1f4ef5ae7
[]
no_license
danieleTrimarchi/VPP
8552fa0b82f80b0be66665a4ad601692cbd152b4
b72a3a983825ad0c993f19d32d2964b8d618ce94
refs/heads/master
2022-11-23T21:26:14.808421
2020-06-25T20:12:52
2020-06-25T20:12:52
275,005,477
0
0
null
null
null
null
UTF-8
C++
false
false
2,114
cpp
#include "VPPSolver.h" #include "VPPException.h" #include <fstream> #include "mathUtils.h" #include "VPPResultIO.h" using namespace mathUtils; namespace Optim { //// VPPSolver class ////////////////////////////////////////////// // Constructor VPPSolver::VPPSolver(std::shared_ptr<VPPItemFactory> VPPItemFactory): ...
[ "daniele.trimarchi@gmail.com" ]
daniele.trimarchi@gmail.com
3fdc9841645742d815440f134fbb48fa429c9220
048fddf3e02996a50163d014987d2a1e0f852b05
/20140324/c.cpp
4c7059d754daaade7b8d4e7b2a2dc7cd50677e05
[]
no_license
muhammadali493/Competitive-coding
2a226d4214ea2a9c39dcd078d449d8791d80a033
0a6bb332fb2d05a4e647360a4c933e912107e581
refs/heads/master
2023-07-17T08:40:06.201930
2020-06-07T07:41:39
2020-06-07T07:41:39
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,646
cpp
#include <bits/stdc++.h> using namespace std; long long c[110][110][110]; int a[110][110]; long long sum[110][110]; const long long MOD = 1000000007LL; int main() { freopen("treasures.in", "r", stdin); int t; scanf("%d",&t); for(int cas = 1; cas <= t; cas ++) { int n,m,s,x,y; scanf("%d%d%d%d%d",&n,&m,&s,&x,&y...
[ "lester.yangyongsen@gmail.com" ]
lester.yangyongsen@gmail.com
4ffaddacccfca2f79c55da596f45f87d8bc82fc1
fca059d4b91fc7d26dce39804599ac99b391f07e
/ThiTracNghiem(BaiBaoCao)/TTN.cpp
74792dba86b87cd2c785e699a88edbff9142c6d0
[]
no_license
zizi68/CTDL-GT
a2f543fb7ac40c241cd0152fc6804db2c5c5e366
25b5303410f561c7b5bfe5094eeec52ec03cc7ba
refs/heads/main
2023-05-13T16:00:25.813088
2021-05-23T15:46:12
2021-05-23T15:46:12
370,086,130
0
0
null
null
null
null
UTF-8
C++
false
false
59,545
cpp
#include <iostream> #include <stdio.h> #include <stdlib.h> #include <conio.h> #include <string> #include "mylib.h" #include <windows.h> #include <time.h> #include <fstream> #include <iomanip> #define MAX 100 //Ve dau mui ten: #define ArrowRIGHT 27 #define ArrowLEFT 26 #define ArrowUP 25 #define ArrowDOWN 24 //Cac ph...
[ "hamok17c1dc4@gmail.com" ]
hamok17c1dc4@gmail.com
e61ce102226ddd04848a87199432b36431ed42b0
2cf838b54b556987cfc49f42935f8aa7563ea1f4
/aws-cpp-sdk-pinpoint/source/model/BaseKpiResult.cpp
a483de500be4097d39dfe459cf5290bbfef1d2d1
[ "MIT", "Apache-2.0", "JSON" ]
permissive
QPC-database/aws-sdk-cpp
d11e9f0ff6958c64e793c87a49f1e034813dac32
9f83105f7e07fe04380232981ab073c247d6fc85
refs/heads/main
2023-06-14T17:41:04.817304
2021-07-09T20:28:20
2021-07-09T20:28:20
384,714,703
1
0
Apache-2.0
2021-07-10T14:16:41
2021-07-10T14:16:41
null
UTF-8
C++
false
false
1,350
cpp
/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include <aws/pinpoint/model/BaseKpiResult.h> #include <aws/core/utils/json/JsonSerializer.h> #include <utility> using namespace Aws::Utils::Json; using namespace Aws::Utils; namespace Aws { namesp...
[ "aws-sdk-cpp-automation@github.com" ]
aws-sdk-cpp-automation@github.com
67e91bbd503f5188c1aabe6388b733d3685025d6
cd35be7ff1ed23004c6bfedab11b49c9a07c48cf
/src/knn.cpp
c504abdf7a23ba6e6e9116a31ae414fe101f3843
[ "MIT" ]
permissive
fernandochafim/cpprtools
f673fa3413ac295c4bb2e5338e6c0f743221d480
ef7628c35fa857dc2a1693b5cab9ec15fde8f4a0
refs/heads/main
2023-01-10T00:07:18.456990
2020-11-14T11:16:21
2020-11-14T11:16:21
312,699,407
0
0
null
null
null
null
UTF-8
C++
false
false
2,762
cpp
#include "knn.h" #include <Eigen/Dense> #include <iostream> int Predict1toMaxNeighbors( double *train_inputs_ptr, double *train_label_ptr, int nrow, int ncol, int max_neighbors, double *test_input_ptr, //ncol //inputs above, outputs below double *test_prediction_ptr //max neighbors ){ Eige...
[ "fernandochafim@gmail.com" ]
fernandochafim@gmail.com
db8a0009db5a30cc2faacebdb6344a64a5ddd3c5
d4167bc7f153318515b8886ae1308b7b0c654b36
/src/qt/coinmix.cpp
702b5f49cd447fdea4f44dd27cda466859a30af2
[ "MIT" ]
permissive
ElleriumProject/Elleriumv2
c73574c5b23f47e7c07996a66a3144e6c8c6e8b4
08ce46320be8513e1ba04da06f63e66d4bceebc0
refs/heads/master
2021-04-28T09:49:53.158260
2018-09-24T15:39:45
2018-09-24T15:39:45
122,051,835
2
13
null
2018-02-19T11:15:04
2018-02-19T11:15:03
null
UTF-8
C++
false
false
22,667
cpp
// Copyright (c) 2011-2014 The Bitcoin developers // Copyright (c) 2014-2015 The Dash developers // Copyright (c) 2015-2017 The PIVX developers // Copyright (c) 2015-2017 The ALQO developers // Copyright (c) 2017-2018 The Ellerium developers // Distributed under the MIT/X11 software license, see the accompanying // fi...
[ "" ]
8fae81e39905f8eda0d6a37f96f9f230b44c74ed
7d6b87d5ec5de7b213d1817a2895689742d85006
/c++11/threadTest.cpp
6f8a12596b306c46cf3191e4ef07617b32612dc4
[]
no_license
vpiyush/SandBox
5de07c9ba6901f7ed9c0aeb71f0e938b6845d780
691bce67a82c3fb67064600181e9145244668f3e
refs/heads/master
2022-02-01T20:55:05.700118
2022-01-04T05:11:03
2022-01-04T05:11:03
55,050,893
1
0
null
null
null
null
UTF-8
C++
false
false
495
cpp
#include <iostream> #include <thread> #include <chrono> void foo() { std::this_thread::sleep_for(std::chrono::seconds(1)); } int main() { std::thread *t; std::cout << "before starting, joinable: " << std::boolalpha << t.joinable() << '\n'; t = new std::thread(foo); std::cout << "aft...
[ "piyush@telaverge.com" ]
piyush@telaverge.com
e542923dc7719a2d6f0fce8084f10e019cfd8dc6
a313ef189b21ce8b34166678c84191fce9fb7e00
/include/hps-1.0.0/src/container/pair_serializer.h
8eafdffad9e79320f8702ff3432bb40985714902
[ "MIT", "Apache-2.0" ]
permissive
mihneasaracin/Distributed-CSP
9eee3d13b4c525b10a05aaea90dfff56a34feb54
8e4b0cc9e70cbc2451463458aa07c60d66a78c7c
refs/heads/main
2023-03-17T11:21:40.917769
2021-03-17T23:08:36
2021-03-17T23:08:36
338,822,899
0
0
null
null
null
null
UTF-8
C++
false
false
605
h
#pragma once #include <iostream> #include <utility> #include "../basic_type/uint_serializer.h" #include "../serializer.h" namespace hps { template <class T1, class T2, class B> class Serializer<std::pair<T1, T2>, B> { public: static void serialize(const std::pair<T1, T2>& container, B& ob) { Serializer<T1, B>...
[ "mihneasaracin@yahoo.com" ]
mihneasaracin@yahoo.com
a122dcb5c8b371b749812dbbd679ea8aa09281a4
c18fe82db18be9ac493d94362e5f08ae676a5b9a
/algorithms/sorting/quick_sort.hpp
fa5e0f69db4871e735843acfd2fd0760b8ca8f7f
[]
no_license
charlesq/Euthenia
e05347d8dadd3249d06aece62d28bf3e10866339
5ca738a249215c439156e29dca495840a6488cbb
refs/heads/master
2021-01-15T19:40:13.679311
2019-01-21T04:05:11
2019-01-21T04:05:11
15,544,644
0
0
null
null
null
null
UTF-8
C++
false
false
1,081
hpp
#ifndef __QUICK_SORT_H__ #define __QUICK_SORT_H__ #include <base_sort.hpp> /********************** Quick Sort ********************************/ class quick_sort: public base_sort { size_t partition(size_t start, size_t end) { size_t i = start, j = i; while(++j < end) { if (a[...
[ "charles.zeng@yahoo.com" ]
charles.zeng@yahoo.com
5c1d84d4a0900428df87ba31f6013a9aaa7c6697
c76faa4bd9631d7b1dde3aa8cf1a5ece3e035a28
/src/fast4/mriseg_two.cc
42e5c715df16999d7a5512d7cf13d488f25dafd1
[]
no_license
GunioRobot/fsl
e5a01d9d9d477af931c3ef858163438d883e9b3b
5268b5cbc7434522571e04b5c3faf73ed5bce1ba
HEAD
2016-09-10T01:39:43.823129
2010-08-20T05:14:24
2010-08-20T05:14:24
3,315,212
0
0
null
null
null
null
UTF-8
C++
false
false
29,951
cc
/* FAST4 - FMRIB's Automated Segmentation Tool v4 John Vickers, Mark Jenkinson, Steve Smith and Matthew Webster FMRIB Image Analysis Group Copyright (C) 2005-2007 University of Oxford */ /* Part of FSL - FMRIB's Software Library http://www.fmrib.ox.ac.uk/fsl fsl@fmrib.ox.ac.uk Develop...
[ "dirk@caltech.edu" ]
dirk@caltech.edu
c43ddfe88058fe326283cc849ca2011252321a19
e94caa5e0894eb25ff09ad75aa104e484d9f0582
/data/s66/mp2/cp_corrected/31/AB/cc-pVTZ/2_ghosts/restart.cc
0034b41e1cd295819e81abdf93f2fdc4568314d2
[]
no_license
bdnguye2/divergence_mbpt_noncovalent
d74e5d755497509026e4ac0213ed66f3ca296908
f29b8c75ba2f1c281a9b81979d2a66d2fd48e09c
refs/heads/master
2022-04-14T14:09:08.951134
2020-04-04T10:49:03
2020-04-04T10:49:03
240,377,466
0
0
null
null
null
null
UTF-8
C++
false
false
444
cc
$chkbas= 49762.2646929664 $nucrep= 33.4040917649944 $chkaux= 270942268.478967 $chkupro= 1.00000000000000 $chkipro= 2.00000000000000 $chklasrep= 1.00000000000000 $chkisy6= 4.00000000000000 $chkmos= 159.901519453857 $chkCCVPQ_ISQR= 2959.06782308729 $chkbqia= 8.17966846057076 $chkr0...
[ "bdnguye2@uci.edu" ]
bdnguye2@uci.edu
9c2b42a8a8a90b959d93848d4fd69a169cd7c9f0
5d8d08f795493e009319c39e7d8455579209feb3
/app/src/main/cpp/IDemux.cpp
84c46591a79c84dcac73d57c3e21fb614f0c6ccc
[]
no_license
RnWater/VideoPlayer
b93963c5368b4cf820e4ab02fc5f47da7710d439
2d4d7d7eb490ac8fcdd66cb3fb5630b387d7265a
refs/heads/master
2023-08-10T12:55:53.510254
2021-09-16T13:07:16
2021-09-16T13:07:16
406,336,296
1
0
null
null
null
null
UTF-8
C++
false
false
61
cpp
// // Created by Henry on 2021/9/14. // #include "IDemux.h"
[ "@fulan.com.cn" ]
@fulan.com.cn