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
6bb8c405f52a281117fa2dccaead0ea4f9179002
f35d27bfbdcf0ca5aae57ec7164bf277b7cfefc8
/include/tracker/predictor/particle/ParticleFilter.h
0642d5dcdfc08016b64c314436c1f6d157acf143
[]
no_license
smartcai/VideoSynopsis
ea3c07e69117201b43316412a914d152a4151a7f
319701e2ab65d483daa5e38383c5c111fd72a3d7
refs/heads/master
2020-04-26T02:22:20.030069
2018-05-03T03:07:05
2018-05-03T03:07:05
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,364
h
#ifndef CPP_PARTICLEFILTER_H #define CPP_PARTICLEFILTER_H #include "tracker/predictor/particle/Particle.h" #include "util/BoundingBox.h" #include <dlib/matrix.h> class ParticleFilter { public: static constexpr int numStates = 7; // [x, y, area, ratio, vx, vy, area_change] static constexpr int numParticles =...
[ "zg9uagfv@gmail.com" ]
zg9uagfv@gmail.com
c0123e6f00b436757fdbb6d2b7d4ef82ae3f6cfd
8ff3f1af6ad1cac12b53859bd95c0779f6d68968
/ihealthEx/control_card.h
bee579f3246e05c7998609c879b910d38bad4eef
[]
no_license
AlexZhanghao/ihealthex
af5ff1e03fbcc15891f5cd3af0db1e6ff647b972
6986433e8eb245cc908b101547bb4a0213924ad4
refs/heads/master
2020-03-21T11:52:17.172306
2019-06-09T02:51:42
2019-06-09T02:51:42
138,525,752
0
0
null
null
null
null
GB18030
C++
false
false
1,490
h
#pragma once #include "APS168.h" #include "ErrorCodeDef.h" #include "APS_define.h" #include "type_def.h" #define MOTOR_ON (1) #define MOTOR_OFF (0) #define CLUTCH_ON (0) #define CLUTCH_OFF (1) #define YES (1) #define NO (0) #define __MAX_DO_CH (24) #define __MAX_DI_CH (24) #define SHOULDER_AXIS_ID (0) #define ELB...
[ "363040909@qq.com" ]
363040909@qq.com
63963c461f015983b06d6fb37d95592cce262b3a
31f5cddb9885fc03b5c05fba5f9727b2f775cf47
/thirdparty/eigen-3.3.3/doc/snippets/MatrixBase_cwiseSign.cpp
efd717955fdcf50e9b1a235354821da486e91a24
[ "MIT", "GPL-3.0-only", "LGPL-2.1-only", "BSD-3-Clause", "LGPL-2.0-or-later", "MPL-2.0", "LGPL-2.1-or-later", "Minpack" ]
permissive
timi-liuliang/echo
2935a34b80b598eeb2c2039d686a15d42907d6f7
d6e40d83c86431a819c6ef4ebb0f930c1b4d0f24
refs/heads/master
2023-08-17T05:35:08.104918
2023-08-11T18:10:35
2023-08-11T18:10:35
124,620,874
822
102
MIT
2021-06-11T14:29:03
2018-03-10T04:07:35
C++
UTF-8
C++
false
false
80
cpp
MatrixXd m(2,3); m << 2, -4, 6, -5, 1, 0; cout << m.cwiseSign() << endl;
[ "qq79402005@gmail.com" ]
qq79402005@gmail.com
a325d2edf1f18b8b34547ae7a468d3e2a6c767db
0ad1e75df68fb14976c79c8921249dcd6e74f967
/Lcs as Increasig Palandromic Sequence.cpp
5317436fd3ecd382faad24885fc5f43c0181aa0a
[]
no_license
variablemayank/competetive-programming-codes
9010d215832f4937735d6b35b1df35df0f8a59e6
71bbc70049089fcc24444471dd4504b1d29c371f
refs/heads/master
2021-09-06T04:17:29.052221
2018-02-02T08:57:56
2018-02-02T08:57:56
119,955,414
1
1
null
null
null
null
UTF-8
C++
false
false
608
cpp
#include<bits/stdc++.h> using namespace std; int lcs(string x,string y,int n,int m); int increasing(string s,int n) { string s1=s; reverse(s1.begin(),s1.end()); return (n-lcs(s,s1,n,n)); } int lcs(string x,string y,int n,int m) { int A[n+1][n+1]; for(int i=0;i<=m;i++) { for(int j=0;j<=n;j++) { if(i==0||j==...
[ "mayank202020@rediffmail.com" ]
mayank202020@rediffmail.com
f035ec8f20768f3e386530cbd5c8691d719b9fe4
a33aac97878b2cb15677be26e308cbc46e2862d2
/program_data/PKU_raw/74/1046.c
ca7d6cdc39341b715f726ec054054ddca4b76a32
[]
no_license
GabeOchieng/ggnn.tensorflow
f5d7d0bca52258336fc12c9de6ae38223f28f786
7c62c0e8427bea6c8bec2cebf157b6f1ea70a213
refs/heads/master
2022-05-30T11:17:42.278048
2020-05-02T11:33:31
2020-05-02T11:33:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
524
c
void main() { int F(int i); int G(int i); int m,n,i,a[400],b=0; scanf("%d %d",&m,&n); for(i=m;i<=n;i++) { if((F(i)==1)&&(G(i)==1)) { a[b]=i;b++; } } if(b!=0) { printf("%d",a[0]); for(i=1;i<b;i++) printf(",%d",a[i]); } else printf("no"); } int F(int i) { int e,k; k=s...
[ "bdqnghi@gmail.com" ]
bdqnghi@gmail.com
7d33a084dce0f482a8b20a85197ce0c38d7bd9ab
0bc8d7cc71f94ddbc7c2ab641828f6e404464d33
/gazebo/util/SteamAudio.hh
af8b3e9734b6f97351c175602b878e572c5feb06
[ "Apache-2.0" ]
permissive
dagiopia/gazebo-as
3aa492d2304f9b5107191f77c0d8b63c485b689d
3bb84baff23ba18050cc4236cc679a83cca6d6d3
refs/heads/master
2023-04-08T19:26:17.629175
2019-03-20T14:42:02
2019-03-20T14:42:02
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,316
hh
/* * Copyright (C) 2019 Open Source Robotics Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by appl...
[ "dagiopia@gmail.com" ]
dagiopia@gmail.com
1bbfd625e3891eece46d774ecd299797d73dc208
604c3a16454625d5589fb768b0ea032ed234035c
/Aula07_08/Carro/Carro.h
add87bd91f042fa1d1102bb5d5b27b92badb260b
[]
no_license
marcosmn/LP1_2020.5
035ffa14c2d3f44735f1066d193289f1bf344af8
61b102495c0215161ddf63527e0e477b496c2fc9
refs/heads/master
2022-11-15T06:12:29.322254
2020-07-20T18:27:55
2020-07-20T18:27:55
274,411,676
0
0
null
null
null
null
UTF-8
C++
false
false
375
h
#include <string> #include "Motor.h" using namespace std; class Carro { public: static int quantidadeCarros; string tipo; string placa; int numPortas; int velocidade; string cor; Motor motor; Carro(string cor); Carro(); void acelera(int velocidade); v...
[ "marcosmnobrega@gmail.com" ]
marcosmnobrega@gmail.com
34e0d9dba3afdc6f2d42f233f2cbfc1380d545cf
eaf70918553f10097c42b3a71fc5c153f170675b
/P4Plugin/Source/r19.1/include/p4/handler.h
d09aa1a0f06022cc9d3acce6856a3fa27189d825
[ "LicenseRef-scancode-public-domain", "OpenSSL", "LicenseRef-scancode-openssl", "LicenseRef-scancode-ssleay-windows" ]
permissive
Unity-Technologies/NativeVersionControlPlugins
ee07857c736cfc9cb66035b1d4ee27e1f5859f09
04e1897510d0c71e7d7306afe299c88ac007e59b
refs/heads/master
2022-08-17T16:16:03.257820
2022-08-05T14:30:29
2022-08-05T14:30:29
204,474,261
34
9
NOASSERTION
2022-08-05T14:30:31
2019-08-26T12:47:30
C++
UTF-8
C++
false
false
2,113
h
/* * Copyright 1995, 1996 Perforce Software. All rights reserved. * * This file is part of Perforce - the FAST SCM System. */ /* * handler.h - last chance handlers to keep track of loose objects * * Handlers provide a way of associating an object with a string so * context can be retained across RPC dispatche...
[ "daniel.hompanera@unity3d.com" ]
daniel.hompanera@unity3d.com
980212346634b7ff3306fda98f78d84fb69c496e
8cf32b4cbca07bd39341e1d0a29428e420b492a6
/contracts/libc++/upstream/test/libcxx/containers/sequences/list/list.modifiers/insert_iter_value_db1.pass.cpp
4a4ebbbf9e67d9ccf065226260aa355048cd0c9c
[ "NCSA", "MIT" ]
permissive
cubetrain/CubeTrain
e1cd516d5dbca77082258948d3c7fc70ebd50fdc
b930a3e88e941225c2c54219267f743c790e388f
refs/heads/master
2020-04-11T23:00:50.245442
2018-12-17T16:07:16
2018-12-17T16:07:16
156,970,178
0
0
null
null
null
null
UTF-8
C++
false
false
842
cpp
//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===---------------------------------...
[ "1848@shanchain.com" ]
1848@shanchain.com
8507ad5290cc55be64b0cf0d7c26923b9d14c866
67d18d4bb54f3e7da06674c2bb65e4658d4538ba
/frontend/include/g++_HEADERS/hdrs1/ext/pb_ds/detail/cc_hash_table_map_/resize_no_store_hash_fn_imps.hpp
e2d0b03edf0ae2eb4f719f42c6eb441bbdc676a8
[ "MIT" ]
permissive
uwplse/stng
8c1f483a96c8313b8ec36a15791db75d20cfcf33
b077f4d469edf4971c356367f6019132047d6a3b
refs/heads/master
2022-05-06T08:28:27.139569
2022-04-05T05:01:49
2022-04-05T05:01:49
63,819,139
15
7
null
2017-01-13T11:56:50
2016-07-20T22:32:32
C++
UTF-8
C++
false
false
91
hpp
/usr/include/c++/4.4/./ext/pb_ds/detail/cc_hash_table_map_/resize_no_store_hash_fn_imps.hpp
[ "akcheung@cs.washington.edu" ]
akcheung@cs.washington.edu
4026ea2c81b988f27e7d7c62460f7dd4493db416
a2683e71d103165f459f91235f9a4108852251e0
/march/passfail.cpp
0ed3226e8c1081f74e40fec9526f292d9da08e24
[]
no_license
DustWolverine/codingblocks
b2b1ea57f8834be53db59531b9b2e33775fd7e31
25c35136425a030859cd19d47a82d2034c41bb6c
refs/heads/main
2023-06-25T23:53:21.016932
2021-05-11T16:02:47
2021-05-11T16:02:47
null
0
0
null
null
null
null
UTF-8
C++
false
false
345
cpp
#include<bits/stdc++.h> #define endl "\n" using namespace std; int main(){ ios::sync_with_stdio(false); cin.tie(0); int t; cin>>t; while(t--){ int am,bm,cm,tm,a,b,c; cin>>am>>bm>>cm>>tm>>a>>b>>c; int sum=am+bm+cm; if(sum>=tum and a>=am and b>=bm and c>=cm){ cout<<"YES"<<endl; } else{ cout<<"NO"<<...
[ "rajakash7001@gmail.con" ]
rajakash7001@gmail.con
c8f1b3fb3c39f96d335039c1700a6f78eb3bb287
3e45eb6d621659714b79192568c54e53be9ef290
/admin/thirdparty/bbclone/ip2ext/189.inc
c1e1fc966d3f91e148e4f02752e645d36499aca3
[]
no_license
Rafaj-Design/WebGuru
233317c39bafced10c1ee728d2f0a05031c7d15a
f6bf85f149d14630deda57a06d361fd6758817eb
refs/heads/master
2021-05-26T16:54:20.748036
2013-04-26T12:20:13
2013-04-26T12:20:13
null
0
0
null
null
null
null
UTF-8
C++
false
false
62
inc
br|3170893824|4194304 ie|3175088128|2048 mx|3179282432|5242880
[ "ondrej.rafaj@fuerteint.com" ]
ondrej.rafaj@fuerteint.com
117a7979bd25555f350b678a86812844babb8755
e0f83c30ba1ca820f2148d484ec7171d6073a95b
/src/shrpx_spdy_upstream.cc
ede2625ba0715a6b5f00b2683b9cad97a616d092
[ "MIT" ]
permissive
cofyc/nghttp2
518557da2cde0caa1d69514333d8dca99f2e9895
4dea318b5ba4210f5ef7e8d48f8ad2c9fbbbf425
refs/heads/master
2023-03-22T08:37:48.709815
2015-02-07T15:49:56
2015-02-07T15:49:56
null
0
0
null
null
null
null
UTF-8
C++
false
false
34,334
cc
/* * nghttp2 - HTTP/2 C Library * * Copyright (c) 2012 Tatsuhiro Tsujikawa * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the ri...
[ "tatsuhiro.t@gmail.com" ]
tatsuhiro.t@gmail.com
1aea78d1335f704f7072e7d724beedd93b08dad6
875e7de8cf26033fabfa511a2045ae9377da5679
/src/JSONAdapterInterface/IJSONSchemaValidator.h
96c72a1646d4fbc17e6ec9e0a47dff575fee3e4b
[]
no_license
jonasrodriguez/seed-cpp
ca2d62a3de622fe797ac481061529ee34b4f7387
375efd271ab5022937d103caffc993e5ed87ccb7
refs/heads/master
2020-04-23T16:50:37.899364
2019-02-28T10:13:09
2019-02-28T10:13:09
171,311,826
1
0
null
2019-02-18T15:50:41
2019-02-18T15:50:41
null
UTF-8
C++
false
false
269
h
#pragma once #include <string> namespace systelab { namespace json_adapter { class IJSONDocument; class IJSONSchemaValidator { public: virtual ~IJSONSchemaValidator() {}; virtual bool validate(const IJSONDocument&, std::string& reason) const = 0; }; }}
[ "36737101+joaquimvila@users.noreply.github.com" ]
36737101+joaquimvila@users.noreply.github.com
2d8b50d257686aea1d8aadc792ecc093d03b0b72
7d26e96f1dab6955fc96cf0eb69018deb8a31fe7
/source/engine/adl_physics/adl_bullet/adlBullet_physics.h
8a786f4d1b105773b7f82efcb235f478b327b508
[ "MIT" ]
permissive
AtakanFire/adlGame
9220d3ea98e6e7ff9cf996bd9f38eac968253c42
d617988b166c1cdd50dd7acb26507231a502a537
refs/heads/master
2020-04-03T12:37:47.862949
2019-06-14T17:38:28
2019-06-14T17:38:28
155,257,817
0
0
null
null
null
null
UTF-8
C++
false
false
3,488
h
#ifndef adl_bullet_physics_h__ #define adl_bullet_physics_h__ #pragma warning(push, 0) #include "btBulletCollisionCommon.h" #include "btBulletDynamicsCommon.h" #pragma warning(pop) #include "../adlIPhysics.h" #include "adlBullet_debug_drawer.h" #include <map> #include <set> class adlBullet_physics : public adl...
[ "doga.uzunali@gmail.com" ]
doga.uzunali@gmail.com
bba595fd6c3f5daa73ee5a339fe3684ce3fa327e
b965f7b94a52fcdc698a4d5ff8fc3d7f98c0259d
/prata.14.2.definitions.cpp
f1d8d58c6cdaa8e9e7336bbd14a6d3dc89ab1ba5
[]
no_license
gevorghakobyan/prata-solutions
22122fa28608c71ab4e10e5bbcd77c5321ebbc99
94c448058cd782bdb2f1199b230b681d5e9ea151
refs/heads/master
2020-03-16T15:15:22.285284
2018-11-23T07:06:58
2018-11-23T07:06:58
132,735,296
1
0
null
null
null
null
UTF-8
C++
false
false
1,198
cpp
#include "prata.14.2.h" template<class T1, class T2> T1 & Pair<T1, T2>::first() { return a; }; template<class T1, class T2> T2 & Pair<T1, T2>::second() { return b; }; Wine::Wine() : name("no name"), year_num(0), PairArray(ArrayInt(0), ArrayInt(0)) { }; Wine::Wine(const char * l, int y) : name(l), year_num(y), Pa...
[ "ggh1401@gmail.com" ]
ggh1401@gmail.com
482302238a67c2c6aa26c378aa7e673c916f442c
256a688878ed861dcbb534d02e02210a1b5bf1fa
/prac/linked_List/main.cpp
1f9d3b83268e6d2aa99d649a9f02ab7834a76473
[]
no_license
kakanghosh/Data-Structure
15555702726ef919ad27da82d9d8383dc4b620df
8ad57c8cdf6b5ff0a0066fa47dd6b7988294474a
refs/heads/master
2021-09-07T06:13:11.628034
2018-02-18T16:42:40
2018-02-18T16:42:40
121,969,576
0
0
null
null
null
null
UTF-8
C++
false
false
1,595
cpp
#include <iostream> using namespace std; class node{ public: int data; node *link; }; int main() { node *new_node = new node; node *start = new_node; new_node->link = NULL; char choice; while( true ){ cout << "Enter data: "; cin >> new_node->data; ...
[ "kakanghosh69@gmail.com" ]
kakanghosh69@gmail.com
76c7b29d2cc09c90b84e408225e4b08c60a234ea
7f18e34f75364ae009c9276b288a4aadad94f7be
/Engine Hack Base Min/SvcMessage.h
374ac92cc1dbcc0ac6322cba1c56a51596008235
[]
no_license
YuhBoyMatty/Engine-Hack-Base-Min
a0ae52a217af342d9e46ed9b7b0feb7d4ea58ebf
354484e70af6a9955b5462ed78cbaf9e7dbd5b67
refs/heads/master
2023-03-18T05:12:48.956517
2019-10-03T10:31:39
2019-10-03T10:31:39
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,358
h
#ifndef __SVC_MESSAGE_H__ #define __SVC_MESSAGE_H__ // SVC Hook by _or_75 #include "Main.h" class AutoOffset; extern int* MSG_ReadCount; extern int* MSG_CurrentSize; extern int* MSG_BadRead; extern int MSG_SavedReadCount; typedef void (*TEmptyCallback)(); typedef int (*HL_MSG_ReadByte)(); typedef int (*HL_MSG_Rea...
[ "or.75@ya.ru" ]
or.75@ya.ru
cdacac5fb2b49f471510543d14db56daf50e5e6a
c85c0de8b733431349f536ba8d68513e575f3e3a
/Revue3/ControleurDeSerre/controleurDeSerre.h
02fa176d537edc85af0c4491838d5cc186491b8e
[]
no_license
TheoMichaud/PROJET
a64f2a21c1d48425b52d2f81bf5ac0e8ef8664e8
521a0cf9002aabed77429c672b54fdf40c7fc46b
refs/heads/master
2020-06-03T00:34:21.927706
2019-06-11T11:59:34
2019-06-11T11:59:34
191,361,048
0
0
null
null
null
null
UTF-8
C++
false
false
513
h
#ifndef CONTROLEURDESERRE_H #define CONTROLEURDESERRE_H #include <driver/gpio.h> #include <string.h> #include "timer.h" #include <WString.h> #include "BluetoothSerial.h" #include <Wire.h> #include "zone.h" class ControleurDeSerre { public: ControleurDeSerre(); ~ControleurDeSerre(); Zone *zones[4]; ...
[ "tmichaud@pommier4.depinfo.touchard.edu" ]
tmichaud@pommier4.depinfo.touchard.edu
9dc89f49502a742db69988e0f33e6f305470f3d7
26ad4c0310e04951bb68877576303a424341c458
/codechef/DSA learning series/CARVANS;.cpp
13f57d711ed61aec3afeb171fde35a8a28546107
[]
no_license
mohitkumartoshniwal/CompetitiveCoding
e05151072f6ae93553df6de2f26f530e1746cbd7
531dce505b1a4bf56c24eae70d7de968a92a7234
refs/heads/master
2022-06-21T04:24:22.814287
2020-05-05T19:32:31
2020-05-05T19:32:31
258,241,421
0
0
null
null
null
null
UTF-8
C++
false
false
1,399
cpp
// /Carvans #include <bits/stdc++.h> using namespace std; void fastscan(int &x) { bool neg = false; register int c; x = 0; c = getchar(); if (c == '-') { neg = true; c = getchar(); } for (; (c > 47 && c < 58); c = getchar()) x = (x << 1) + (x << 3) + c - 48; ...
[ "mohitkrtoshniwal.com" ]
mohitkrtoshniwal.com
d87c01abc7bbfa4511904452ccb126b6f22f184d
c4639b391b2968d3ee0a13e6ff689544087f26ac
/week-02/day-01/15 - StudentCounter/main.cpp
053dfd1a7038df936258f900d0931bde205a67d2
[]
no_license
green-fox-academy/hbence97
8174c320c4cf2fe43efd5107dacb1bf8269d1534
200704eeb822ed4d5bb4b453f3c6db2be4b7f964
refs/heads/master
2020-04-16T18:51:54.922147
2019-07-16T09:51:38
2019-07-16T09:51:38
165,837,873
0
0
null
null
null
null
UTF-8
C++
false
false
2,406
cpp
#include <iostream> #include <string> #include <vector> #include <utility> //for std::pair #include <map> std::vector<std::string> getChildrenWithMoreThanFourCandies(const std::vector<std::pair<std::string, std::map<std::string, int>>>& students) { for (int i = 0; i < students.size(); i++){ if (int i < 4) ...
[ "hegyesbence@gmail.com" ]
hegyesbence@gmail.com
6efa116d89659a76507bbb93d95ae70f838ddc7e
394a26df043fac5e9e0f98da3d0e781b9fe06766
/Multifunktionstachometer_Testing/Testprogramm_Funktion_maxgesch.cpp
ded25633d278a03888b3cff3bc966ca24844ff95
[]
no_license
Viiiiet/Viet
7262eb7e2bb0e082af77fb7b5732b95e3e1f0b68
dd17daed1138a9e681849b5609d49a589c0f08c3
refs/heads/master
2021-01-19T22:08:56.082540
2017-07-19T15:38:45
2017-07-19T15:38:45
88,760,469
0
0
null
null
null
null
ISO-8859-1
C++
false
false
2,028
cpp
#include <iostream> #include "Klasse_Gesch.h" using namespace std; double maxgesch = 25; //fiktiver Wert für die Maximalgeschwindigkeit double gesch = 30; //fiktiver Wert für Geschwindigkeit double testergebnis = 0; //Speicherplatz für das Testergeb...
[ "h.le@tu-bs.de" ]
h.le@tu-bs.de
14612eb0cad27dec65ad50ea1c3191aec111f6fb
67f988dedfd8ae049d982d1a8213bb83233d90de
/external/chromium/chrome/browser/ui/webui/options/chromeos/pointer_handler.h
5360dce7eebf794887eb07a0985c9d243051c90f
[ "BSD-3-Clause" ]
permissive
opensourceyouthprogramming/h5vcc
94a668a9384cc3096a365396b5e4d1d3e02aacc4
d55d074539ba4555e69e9b9a41e5deb9b9d26c5b
refs/heads/master
2020-04-20T04:57:47.419922
2019-02-12T00:56:14
2019-02-12T00:56:14
168,643,719
1
1
null
2019-02-12T00:49:49
2019-02-01T04:47:32
C++
UTF-8
C++
false
false
1,427
h
// 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. #ifndef CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_POINTER_HANDLER_H_ #define CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_POINTER_HANDLER_H_ #include "bas...
[ "rjogrady@google.com" ]
rjogrady@google.com
38bc5231c98b3af8e32971ca6487864c45450b15
a7764174fb0351ea666faa9f3b5dfe304390a011
/inc/GCE2d_MakeMirror.hxx
80c81738e9641ecb0285e50add553f25dba1375a
[]
no_license
uel-dataexchange/Opencascade_uel
f7123943e9d8124f4fa67579e3cd3f85cfe52d91
06ec93d238d3e3ea2881ff44ba8c21cf870435cd
refs/heads/master
2022-11-16T07:40:30.837854
2020-07-08T01:56:37
2020-07-08T01:56:37
276,290,778
0
0
null
null
null
null
UTF-8
C++
false
false
2,288
hxx
// This file is generated by WOK (CPPExt). // Please do not edit this file; modify original file instead. // The copyright and license terms as defined for the original file apply to // this header file considered to be the "object code" form of the original source. #ifndef _GCE2d_MakeMirror_HeaderFile #define ...
[ "shoka.sho2@excel.co.jp" ]
shoka.sho2@excel.co.jp
e4b0960907cde562a8b0759bc0b2af0493b4499f
f9b7dcbd841a0b3dd0fcd2f0941d498346f88599
/chrome/browser/ui/content_settings/framebust_block_browsertest.cc
22a95942fc3884f9b32c582c8d3f078213d5c122
[ "BSD-3-Clause" ]
permissive
browser-auto/chromium
58bace4173da259625cb3c4725f9d7ec6a4d2e03
36d524c252b60b059deaf7849fb6b082bee3018d
refs/heads/master
2022-11-16T12:38:05.031058
2019-11-18T12:28:56
2019-11-18T12:28:56
222,449,220
1
0
BSD-3-Clause
2019-11-18T12:55:08
2019-11-18T12:55:07
null
UTF-8
C++
false
false
14,776
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 <cstddef> #include "base/bind.h" #include "base/bind_helpers.h" #include "base/macros.h" #include "base/optional.h" #include "base/stl_util.h" #...
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
fb2e06ca1c5059de37d554fe74e1b057a32d0637
011006ca59cfe75fb3dd84a50b6c0ef6427a7dc3
/codeChef/ELEVSTRS.cpp
1942db4c12d90ff1667fb834e92f64b87b38f7b1
[]
no_license
ay2306/Competitive-Programming
34f35367de2e8623da0006135cf21ba6aec34049
8cc9d953b09212ab32b513acf874dba4fa1d2848
refs/heads/master
2021-06-26T16:46:28.179504
2021-01-24T15:32:57
2021-01-24T15:32:57
205,185,905
5
3
null
null
null
null
UTF-8
C++
false
false
417
cpp
#include<iostream> #include<math.h> using namespace std; int main(){ int t; cin >> t; while(t--){ float n,v1,v2; cin >> n >> v1 >> v2; float d_e = n; float d_s = n*sqrt(2); float t_e = n/v2; t_e*=2; float t_s = d_s/v1; if(t_s<t_e){ ...
[ "mahajan.ayush2306@gmail.com" ]
mahajan.ayush2306@gmail.com
13891c9402c9ac0ed529ca39dcaf8244f1d7c206
b09e3db4e3d10c8f1b13564864408250261ebce0
/src/LuaTinker/lua_tinker.cpp
9a1da647bf729de18824ba71bd5af4732b514cc9
[]
no_license
cuiopen/GameServer-7
fe9a9f8970fb3034591eaaefc63c6f668fee5947
2e9e09b1d2c03dd6c908e8bad186c08e9adae816
refs/heads/master
2020-03-19T15:48:00.984575
2016-06-02T01:58:56
2016-06-02T01:58:56
null
0
0
null
null
null
null
UTF-8
C++
false
false
18,613
cpp
// lua_tinker.cpp // // LuaTinker - Simple and light C++ wrapper for Lua. // // Copyright (c) 2005-2007 Kwon-il Lee (zupet@hitel.net) // // please check Licence.txt file for licence and legal issues. #include <iostream> #include <lua5.1/lua.h> #include <lua5.1/lualib.h> #include <lua5.1/lauxlib.h> #include "lua_ti...
[ "471812013@qq.com" ]
471812013@qq.com
aafdfb0c8e6214b602da48ce8c924f2727dce5f3
6b9198b7f93ba7bb73bffd7878a3a1c5432c2882
/NendModule/Common/NendRewardItem.h
09f4527d4fe27587ea7167a6bf358e6968838300
[]
no_license
fan-ADN/nendSDK-Cocos2dx-pub
c41ee4fda11c713c6095f0d7c6755e904ac12c18
b62a0a97414cee49515d30cd370c90111127198f
refs/heads/master
2021-06-10T16:12:14.564608
2020-01-30T01:32:08
2020-01-30T01:32:08
102,311,264
0
0
null
null
null
null
UTF-8
C++
false
false
511
h
// // NendRewardItem.h // NendModuleProj // #ifndef NendRewardItem_h #define NendRewardItem_h #include <string> #include "NendVideoAdMacros.h" NS_NEND_BEGIN struct RewardItem { const std::string name_; const int amount_; RewardItem(const std::string& name, const int amount) : name_(name), amount_(amo...
[ "t_kinami@fancs.com" ]
t_kinami@fancs.com
0a5f9eb1aa76172d23404427e013762d6f1ee7fc
a78fb83be8e2fc90b3a185daff8b2778e0530a3e
/bucket_49/qt6-qtbase/patches/patch-src_platformsupport_input_evdevtouch_qevdevtouchhandler.cpp
1bfae7500c9211d6fd64e8b158febfb207130faf
[ "ISC" ]
permissive
kraileth/ravensource
f8cd02edd422922b6f632e4ba4e4a74bb5d560b8
bd1150741139f5cd9fc5894aa10ee9c64861ecc3
refs/heads/master
2023-03-15T01:39:59.773861
2023-02-07T18:39:44
2023-02-07T18:39:44
106,436,199
0
0
null
2017-10-10T15:32:09
2017-10-10T15:31:56
C
UTF-8
C++
false
false
354
cpp
--- src/platformsupport/input/evdevtouch/qevdevtouchhandler.cpp.orig 2022-11-16 07:54:24 UTC +++ src/platformsupport/input/evdevtouch/qevdevtouchhandler.cpp @@ -17,11 +17,7 @@ #include <mutex> -#ifdef Q_OS_FREEBSD -#include <dev/evdev/input.h> -#else #include <linux/input.h> -#endif #ifndef input_event_sec #d...
[ "draco@marino.st" ]
draco@marino.st
bb9dfd1ec2ba9d355834ca58fa389415aa8ec5f8
dbc0e3582d65bcf9d8fba29d872d6407454f9e28
/CodeForces/1263A.cpp
0f079292b1ada41b6886e47bf0f39466432c0f2a
[]
no_license
sirAdarsh/CP-files
0b7430e2146620535451e0ab8959f70047bd7ea2
8d411224293fec547a3caa2708eed351c977ebed
refs/heads/master
2023-04-05T09:07:21.554361
2021-04-08T19:57:33
2021-04-08T19:57:33
297,582,418
0
0
null
null
null
null
UTF-8
C++
false
false
789
cpp
/*----- || Hare Krishna || -----*/ /* "WHY DO WE FALL, BRUCE?" */ #include<bits/stdc++.h> #define ll long long #define endl '\n' #define elif else if #define PI 3.1415926535897932384 #define MOD 1000000007 using namespace std; char alpha[26] = {'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r...
[ "aksinha.dhn@gmail.com" ]
aksinha.dhn@gmail.com
69ac70146edee78a3a73b9df8a7a021a709ddfa5
9beee850d1d1df8caee011e0923cd20ae555456a
/ultrasonicSensor_Servo/ultrasonicSensor_Servo.ino
a861d687dc06c41f96ff52ae8453d02a9ae61c49
[]
no_license
Railway-RMUTP/Medium_2-14
11c937aa5d800461b7e585649edb2ecef8e0c4a4
e404e6be75b50839b775371b37ae4a588574930e
refs/heads/master
2022-12-04T23:56:13.917803
2020-08-21T14:00:44
2020-08-21T14:00:44
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,702
ino
#include <ESP32Servo.h> Servo servo1; int minUs = 1000; int maxUs = 2000; int servo1Pin = 18; const int LEDPin = 13; //กำหนด pin ที่ต้องการใช้งานคือ pin 13 const int trigPin = 26; //กำหนด pin ที่ต้องการใช้งานคือ pin 26 const int echoPin = 27; //กำหนด pin ที่ต้องการใช้งานคือ pin 27 long duration; int distanc...
[ "65149622+Railway-RMUTP@users.noreply.github.com" ]
65149622+Railway-RMUTP@users.noreply.github.com
f2baafe4feaa9a5cb6f992dd1143952e49abca07
e7cdddb3f82ae553d6c53463950dd94d65e0599c
/Codeforces/mostafa-saad/6B.cpp
ebded79264103c2d589ebed8c5b6923f04c8fd1f
[]
no_license
IAMWILLROCK/Competetive-Programming
9d06aaa8efc6cf6d3ac683ac08767ab8d180a428
4b6fe6680542ee568ee25603321283afa954abe8
refs/heads/master
2023-01-28T14:09:41.640729
2020-12-10T12:50:18
2020-12-10T12:50:18
284,974,193
0
0
null
null
null
null
UTF-8
C++
false
false
1,950
cpp
#include <bits/stdc++.h> #include <ext/pb_ds/assoc_container.hpp> #include <ext/pb_ds/tree_policy.hpp> using namespace std; using namespace __gnu_pbds; typedef tree<int, null_type, less_equal<int>, rb_tree_tag, tree_order_statistics_node_update> ordered_set; const int MAX_N = 1e5 + 5; const int MAX_L = 20; // ~ Log...
[ "sfardinhussain@gmail.com" ]
sfardinhussain@gmail.com
536c357edb75b373aa5b9f08a84c85a5ec72cb36
971869c5c84d82b0ee277f2da7a1a7d7b402371e
/ouzel/graphics/Buffer.cpp
06a2850b04fe13ee0410896da49c6cdac2b3eda9
[ "BSD-3-Clause", "BSD-2-Clause" ]
permissive
chrdwhdhxtszpzclljxk/ouzel
c5938f785d850264e5f08ee66b63ae82f4d8fa55
1f538e9a0acedb18bc6e1ddb90ff7f0f4ae207d5
refs/heads/master
2021-05-15T09:24:11.335856
2017-10-23T11:21:31
2017-10-23T11:21:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,020
cpp
// Copyright (C) 2017 Elviss Strazdins // This file is part of the Ouzel engine. #include "Buffer.hpp" #include "BufferResource.hpp" #include "Renderer.hpp" #include "RenderDevice.hpp" #include "core/Engine.hpp" namespace ouzel { namespace graphics { Buffer::Buffer() { resource = s...
[ "elviss@elviss.lv" ]
elviss@elviss.lv
b094274e264990f004b001191c5404f5d09a2e90
b4c73f1625352f3837ec1de69b93c7f00b382182
/lesson-1/multiple-threads.cpp
2fa5a13b6a8ad9afaec8108dda62f100d4dd5bd6
[ "MIT" ]
permissive
jbarneyVBFD/concurrency-practice
50f087e29aa96785047ab77875e3f09235dcbf86
f40cbab88a7ddaebce78385bfa6c0af2a176caba
refs/heads/master
2022-06-21T07:42:04.124292
2020-05-05T14:05:13
2020-05-05T14:05:13
256,850,980
0
0
null
null
null
null
UTF-8
C++
false
false
786
cpp
#include <iostream> #include <vector> #include <thread> void printHello() { //perform work std::cout << "Hello from worker thread #" << std::this_thread::get_id() << std::endl; } int main() { //create threads std::vector<std::thread> threads; for (size_t i = 0; i <5; ++i) { //copying t...
[ "jfbarney1986@yahoo.com" ]
jfbarney1986@yahoo.com
1d5d5699d68405e082901bffeaf143ff8ab1b947
0df8cf14ccff38b0aad793b9b72d19422feaf5a0
/anomalousfield.cpp
5dfaf3b1ef0e8814bc35767f8447e026d78ff788
[]
no_license
kirill15/electric_field
f7e14cf6d55d8a9f2733bb1abbfb85dd7d5188a0
45e083dd5bde45a21bf0cf396e84d13bceeff25e
refs/heads/master
2016-09-06T07:21:56.515066
2014-05-30T22:30:18
2014-05-30T22:30:18
null
0
0
null
null
null
null
UTF-8
C++
false
false
21,547
cpp
#include "anomalousfield.h" using namespace std; AnomalousField::AnomalousField() : grid(nullptr), matrix(nullptr), f(nullptr), v0(nullptr), v(nullptr), eps(1e-15) { } double AnomalousField::getEps() const { return eps; } void AnomalousField::setEps(double value) { eps = value; } Grid3D *AnomalousField::...
[ "kirill.puzanov@gmail.com" ]
kirill.puzanov@gmail.com
6f1ab3fa7fb8d16021dd062dc58ca73e4f2ebe7a
fd221efb1165d56ff7007a3b82aa84b1019883e0
/C/s1/c-pract7/14.cpp
82e1fed7da6b5955f92e3556214559110199f82f
[]
no_license
CyanoFresh/KPI-Labs
822a8057a1db8f4df04e0b71b498f80dc42fd281
894332df2cc5a6eb32ce08938f7ebecf21e0dc02
refs/heads/master
2023-01-09T06:50:03.303627
2021-12-06T18:14:40
2021-12-06T18:14:40
253,018,181
0
1
null
2023-01-07T05:54:00
2020-04-04T14:28:25
JavaScript
UTF-8
C++
false
false
673
cpp
#include <iostream> #include <cstring> using namespace std; class coord { public: int x, y; // coordinate values coord() { x = 0; y = 0; } coord(int i, int j) { x = i; y = j; } void show() { cout << "x=" << x << " y=" << y << "\n"; } coord op...
[ "cyanofresh@gmail.com" ]
cyanofresh@gmail.com
acff755389d2b9095880d040fccd6dd3330efcd1
a9ce2d47a598119dfec8faf937e04ef5b336d6b3
/aoj/2440.cpp
a5fa57bbf3bc440d5827750c7cc665aec8efca63
[]
no_license
acomagu/competitive-programming
2f20a84d974d536fbd309d94abe12575983891fc
91e84fa2628f66a4ffaf6322fd4429246cfe3307
refs/heads/master
2021-01-17T05:49:11.952640
2017-04-25T09:55:26
2017-04-25T09:55:26
60,955,837
0
0
null
null
null
null
UTF-8
C++
false
false
868
cpp
#include <iostream> #include <unordered_set> using namespace std; class Door { public: bool isOpened; void openedBy(string id) { isOpened = true; cout << "Opened by " << id << endl; } void closedBy(string id) { isOpened = false; cout << "Closed by " << id << endl; } voi...
[ "acomagu@gmail.com" ]
acomagu@gmail.com
52801b7d3c2bd2d5186665f0f9cb65cc7dad4f6a
d4e96aa48ddff651558a3fe2212ebb3a3afe5ac3
/Modules/Numerics/Statistics/test/itkSampleTest4.cxx
18ad010acc421c0a99020877f09993659560e597
[ "SMLNJ", "BSD-3-Clause", "LicenseRef-scancode-free-unknown", "LicenseRef-scancode-mit-old-style", "LicenseRef-scancode-other-permissive", "LicenseRef-scancode-unknown-license-reference", "LicenseRef-scancode-warranty-disclaimer", "NTP", "IJG", "GPL-1.0-or-later", "libtiff", "BSD-4.3TAHOE", "...
permissive
nalinimsingh/ITK_4D
18e8929672df64df58a6446f047e6ec04d3c2616
95a2eacaeaffe572889832ef0894239f89e3f303
refs/heads/master
2020-03-17T18:58:50.953317
2018-10-01T20:46:43
2018-10-01T21:21:01
133,841,430
0
0
Apache-2.0
2018-05-17T16:34:54
2018-05-17T16:34:53
null
UTF-8
C++
false
false
5,983
cxx
/*========================================================================= * * Copyright Insight Software Consortium * * 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 * * ...
[ "ruizhi@csail.mit.edu" ]
ruizhi@csail.mit.edu
0f8b2033dbe52227af8b93d0cd3d731cf8016c22
2e05ee5264a0a02149c00469db3675d07c97f439
/esp32/libraries/sensors_actors/KY_037/test/Start/src/main.cpp
0f2007dadfd7fb7b90b3a21b655fbaabb784b8b4
[]
no_license
gkoe/iotsamstag2
c41e181094f1a1d38aae93c98036f6f2bfe613e7
359f6e16578720c0124a2811737d0fb1854d7f49
refs/heads/master
2020-04-21T18:23:19.861915
2019-02-09T10:52:12
2019-02-09T10:52:12
169,767,561
5
0
null
null
null
null
UTF-8
C++
false
false
345
cpp
#include <Arduino.h> #include <math.h> #include <KY_037.h> KY_037 *ky_037; void setup () { Serial.begin (115200); ky_037 = new KY_037(4, 2, 30, "test", "test", "db", 5.0); } // Das Programm liest die aktuellen Werte der Eingang-Pins // und gibt diese auf der seriellen Ausgabe aus void loop () { ky_037->get...
[ "gkoe@gmx.at" ]
gkoe@gmx.at
f1047f35ef722df9cca7c433a8a42e1e690a9391
67a46851a67f0a93d7312c5a9a89c942e37b73eb
/algorithm/HDU-ACM/ambition0109/1264.cpp
b10cd37ce2eb0ee1e83d6fe624115be826e148ad
[]
no_license
zhangwj0101/codestudy
e8c0a0c55b0ee556c217dc58273711a18e4194c9
06ce3bb9f9d9f977e0e4dc7687c561ab74f1980b
refs/heads/master
2021-01-15T09:28:32.054331
2016-09-17T11:11:06
2016-09-17T11:11:06
44,471,951
0
0
null
null
null
null
UTF-8
C++
false
false
2,603
cpp
////////////////////System Comment//////////////////// ////Welcome to Hangzhou Dianzi University Online Judge ////http://acm.hdu.edu.cn ////////////////////////////////////////////////////// ////Username: ambition0109 ////Nickname: Ambition ////Run ID: ////Submit time: 2010-09-14 17:54:16 ////Compiler: Visual ...
[ "zhangwj@zhangwj-MacBook-Pro.local" ]
zhangwj@zhangwj-MacBook-Pro.local
61b36376c1c998edf52a823c65f13f06f62e2ef9
4aece520981c3a37c37bdf3f18f20e760f2e530b
/ExamPart2.cpp
12ee1e15f9c34ca06bf86dff2afa15ed21749115
[]
no_license
timegnome/Basic-C---Projects
9fd4d151c804893c3642934f9be342a00c8d2937
d1c90e76ef702eb27dadf7195995bd60e2345ae7
refs/heads/master
2020-04-21T20:02:31.965585
2019-02-09T03:38:54
2019-02-09T03:38:54
169,828,728
0
0
null
null
null
null
UTF-8
C++
false
false
6,394
cpp
// // File.cpp // Final // // Created by MMaxwell on 12/15/15. Like a Boss // Copyright (c) 2015 MMaxwell. All rights reserved. // #include <iostream> #include <string> #include <fstream> #include "Job.h" #include "Queue.h" using namespace std; void printMenu(); int main() { Job temp; Queue<Job> standar...
[ "timegnome7@gmail.com" ]
timegnome7@gmail.com
de2f1e3e4f2e672402c1da9bc6f191d5eb73d952
019b1b4fc4a0c8bf0f65f5bec2431599e5de5300
/chrome/service/cloud_print/printer_job_handler.cc
4f4c3364f52e96d96c65ac23c360e716785082b4
[ "BSD-3-Clause" ]
permissive
wyrover/downloader
bd61b858d82ad437df36fbbaaf58d293f2f77445
a2239a4de6b8b545d6d88f6beccaad2b0c831e07
refs/heads/master
2020-12-30T14:45:13.193034
2017-04-23T07:39:04
2017-04-23T07:39:04
91,083,169
1
2
null
2017-05-12T11:06:42
2017-05-12T11:06:42
null
UTF-8
C++
false
false
32,340
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/service/cloud_print/printer_job_handler.h" #include "base/bind.h" #include "base/bind_helpers.h" #include "base/files/file_util.h" #...
[ "wangpp_os@sari.ac.cn" ]
wangpp_os@sari.ac.cn
3dfee271e328912877e3f33f54ab051693120b02
8cf32b4cbca07bd39341e1d0a29428e420b492a6
/contracts/libc++/upstream/test/std/algorithms/alg.modifying.operations/alg.partitions/partition_point.pass.cpp
9301e48463a050294c1452e8e2f2ca617ee192f9
[ "NCSA", "MIT" ]
permissive
cubetrain/CubeTrain
e1cd516d5dbca77082258948d3c7fc70ebd50fdc
b930a3e88e941225c2c54219267f743c790e388f
refs/heads/master
2020-04-11T23:00:50.245442
2018-12-17T16:07:16
2018-12-17T16:07:16
156,970,178
0
0
null
null
null
null
UTF-8
C++
false
false
3,217
cpp
//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===---------------------------------...
[ "1848@shanchain.com" ]
1848@shanchain.com
43d04e01b2d512c322c87b32e62f543eec969164
ae3f1ceb0a297bf213694791c60f39d5a2071f54
/RAAHN/stdafx.cpp
bb688b74a2d5face5e3c1ae274435d894053ddc4
[]
no_license
kinggra1/cppRAAHN
b9451cb07210d633d2792de4cdbe82f36a7b8e13
6809408bd6bf27923c740a69382185735bcce7cc
refs/heads/master
2021-01-11T00:50:25.286674
2016-10-26T02:57:52
2016-10-26T02:57:52
70,458,251
0
0
null
null
null
null
UTF-8
C++
false
false
284
cpp
// stdafx.cpp : source file that includes just the standard includes // RAAHN.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
[ "kinggra1@msu.edu" ]
kinggra1@msu.edu
901132a1bc57d3178c9107dc32175cd34552963e
1f85ddee76eb1883d61ba2b12d78c3fe89a1940c
/bonds.cpp
36c8a772dc185131bfc94cb6ef8e4f46ca1c5d02
[]
no_license
mrchessmaster/tools-for-academics
4dda14d93a018654b3201b02500209911d97bf6f
4134bb9b76f52a5a77420d0fc9949635242fe44e
refs/heads/master
2021-01-10T06:14:45.623301
2017-03-26T23:28:37
2017-03-26T23:28:37
48,836,230
1
1
null
null
null
null
UTF-8
C++
false
false
1,127
cpp
#include <iostream> #include <string> using namespace std; string toComma(int n) { string ret = ""; int temp; int i=0; while (n > 0) { temp = n % 10; n /= 10; if (i%3 == 0) ret = to_string(temp) + "," + ret; else ret = to_string(temp) + ret; i++; } ret.pop_back(); return ret; } int main() { cout << ...
[ "yin.dydx@gmail.com" ]
yin.dydx@gmail.com
84c3ff4eb43b4460da36b40c2d71d750f793284e
5fccc7ec58bf1207df4baa35f87c1bea539c0ef9
/lab4/Modules/Calibration/PinHole.cc
c0eea659eb8f59ef056f0fcf36673e3112d93a8e
[]
no_license
rokzal/SLAM_LABS
134ef9adda1d0a5b39986c7bb4580c8fb5eed019
1b8b8a66b9b6263abb2537289817372c5e9b48fd
refs/heads/main
2023-04-13T18:47:57.192276
2021-04-29T14:45:36
2021-04-29T14:45:36
339,060,684
0
1
null
null
null
null
UTF-8
C++
false
false
1,845
cc
/** * This file is part of Mini-SLAM * * Copyright (C) 2021 Juan J. Gómez Rodríguez and Juan D. Tardós, University of Zaragoza. * * Mini-SLAM is free software: you can redistribute it and/or modify it under the terms of the GNU General Public * License as published by the Free Software Foundation, either version 3 of t...
[ "ubi1616@gmail.com" ]
ubi1616@gmail.com
0aa3fa3d57f54e59ed482bccd49aef3695039c4c
0b93b15b49f2b3eccb7e2af71a84ec762171134a
/MyHttpWeb1.2/ProtocolUtil.hpp
c0feb01600c14ab4bfc44badea7cf5f3162afc16
[]
no_license
sunjiyuansjy/MyProject_httpweb
97b954d6a8bb32f6e982b5f42bf354b62514cfcb
6c9407950e02113a117ce2088652bab4c05dc888
refs/heads/master
2020-04-23T09:40:23.610810
2019-02-27T23:56:04
2019-02-27T23:56:04
171,076,672
1
0
null
null
null
null
UTF-8
C++
false
false
10,373
hpp
#ifndef __PROTOCOLUTIL_HPP__ #define __PROTOCOLUTIL_HPP__ #include <iostream> #include <stdlib.h> #include <string> #include <strings.h> #include <unistd.h> #include <vector> #include <unordered_map> #include <sstream> #include <algorithm> #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #include...
[ "sunjiyuansjy@163.com" ]
sunjiyuansjy@163.com
b13b65b8b5770d9a70322fec65d1e92c3ca382f6
19af2e1dfe389afc71e26bebaadf7008251e04e2
/android_test/tensorflow-master/tensorflow/compiler/xla/service/gpu/custom_call_thunk.h
9011fa26ffa521c764cb4cb82e8e81142be7dc11
[ "Apache-2.0" ]
permissive
simi48/Ef-If_Jassen
6c4975216bb4ae4514fe94a8395a5da5c8e8fb2d
6076839492bff591cf9b457e949999e9167903e6
refs/heads/master
2022-10-15T15:36:35.023506
2020-12-02T10:38:13
2020-12-02T10:38:13
173,759,247
4
0
Apache-2.0
2022-10-04T23:51:35
2019-03-04T14:22:28
PureBasic
UTF-8
C++
false
false
2,468
h
/* Copyright 2019 The TensorFlow Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or a...
[ "TheSiebi@users.noreply.github.com" ]
TheSiebi@users.noreply.github.com
1872b8f6998e42a665481089f5a0b380ef33fe70
49c6cf776addc6fbac50c887edfa168d81aa7729
/Atcoder/Atcoder Beginner 197/a.cpp
e2140323adcb562121a3191f997d396bf5deb165
[]
no_license
Ryednap/Coding-Competition
b43e38b4e8d3bfc7eee21750cd1014fb4ce49c54
a4fd7b97f3898e60800689fe27b8c00ac8a456fa
refs/heads/main
2023-08-19T06:55:04.344956
2021-10-08T05:59:24
2021-10-08T05:59:24
398,359,907
0
0
null
2021-08-28T12:33:09
2021-08-20T17:55:14
C++
UTF-8
C++
false
false
164
cpp
#include <bits/stdc++.h> using namespace std; #ifdef LOCAL #include "uj.h" #endif int main() { string s; cin >> s; cout << s[1] << s[2] << s[0]; return 0; }
[ "ujjwalpandey408@gmail.com" ]
ujjwalpandey408@gmail.com
9b278595007f7170481e5d0bf25858449d569cdf
5dcb6b2a922e35db077d50b8c842ca5e6593db1a
/simpleml/graph_util.cc
3c5a58b7c191244b6ff510876d55feded199433a
[]
no_license
RamiHg/SimpleML
ec26e12a9acf3664bc0b2cdd60eb926bc098607b
5620e9ca36c89885d40a289f2271cf165141b927
refs/heads/master
2021-01-24T20:13:10.676500
2018-03-24T14:32:30
2018-03-24T14:32:30
123,245,511
0
0
null
null
null
null
UTF-8
C++
false
false
993
cc
#include "simpleml/graph_util.h" #include <sstream> #include "simpleml/graph.h" #include "simpleml/operations/internal/operation.h" namespace SimpleML { AdjacencyMap GetNodeDescendants(const Graph& graph) { AdjacencyMap map; for (const auto& pair : graph.GetNodes()) { const auto& node = pair.second; cons...
[ "elgarawany@elgarawany-macbookpro.roam.corp.google.com" ]
elgarawany@elgarawany-macbookpro.roam.corp.google.com
3238cd86e255f9c66f131ec64845763f40770b51
69edc451cdb4bf23de322c9d8335af39d583cc82
/UVa/001112.cpp
03bffb40848cd07ebfd1c23c17d3f1c71d002b46
[]
no_license
jesusmoraleda/competitive-programming
cbd90384641565b651ac2694f98f5d10870b83a9
97511d4fd00e90fe6676bfd134c0eb56be3c7580
refs/heads/master
2020-09-04T17:09:37.607768
2017-08-13T10:06:04
2017-08-13T10:06:04
null
0
0
null
null
null
null
UTF-8
C++
false
false
905
cpp
#include <iostream> using namespace std; #define INF 1000000000 // 10^9 int N, adjMat[100][100]; void floyd() { for (int k = 0; k < N; k++) for (int i = 0; i < N; i++) for (int j = 0; j < N; j++) adjMat[i][j] = min(adjMat[i][j], adjMat[i][k] + adjMat[k][j]); } int main() { ...
[ "hallaplay835@gmail.com" ]
hallaplay835@gmail.com
67fb3d94331327046cf7b1a6dacaa9ffd61c586b
f40c349fba25ba456ac7f3c041ed516039af773e
/src/visualization.h
29a48462cd5f7da83f49dfa0bf539317c8ee1bca
[]
no_license
axruff/cuda-flow3d
5b14a65e68914096d03e10175d1e84cf23aef2bb
916fe6cb51ebfa5afabf637af6c3e7ae7dcc3d8d
refs/heads/master
2020-03-29T15:56:54.868122
2019-11-29T16:03:13
2019-11-29T16:03:13
150,089,112
2
2
null
null
null
null
UTF-8
C++
false
false
4,752
h
/** * @file 3D Optical flow using NVIDIA CUDA * @author Institute for Photon Science and Synchrotron Radiation, Karlsruhe Institute of Technology * * @date 2015-2018 * @version 0.5.0 * * * @section LICENSE * * This program is copyrighted by the author and Institute for Photon Science and Synchrotron Radiation, *...
[ "ershov.alexey@gmail.com" ]
ershov.alexey@gmail.com
f5ca55fa35dca9eb038f8b3d983ff897e5bc1f2c
23a3c3e00dd680d29b2dd1c3a3aa36f633f52e4e
/unittests/test-contracts/deferred_test/deferred_test.hpp
dd814050d1194015a43e169456785d9f64ce34e3
[ "MIT", "BSD-3-Clause", "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
mycloudmyworld2019/DA-DAPPS
5afdcc7c825da22709c08fb4b5a4ede4bd4221ee
534ace858fb5d852d69a578151929e64e2932f8b
refs/heads/master
2020-06-05T17:15:50.605991
2019-06-18T08:03:25
2019-06-18T08:03:25
192,272,966
0
0
null
null
null
null
UTF-8
C++
false
false
826
hpp
/** * @file * @copyright defined in DA-DAPPS/LICENSE */ #pragma once #include <DA-DAPPSio/DA-DAPPSio.hpp> #include <vector> class [[DA-DAPPSio::contract]] deferred_test : public DA-DAPPSio::contract { public: using DA-DAPPSio::contract::contract; [[DA-DAPPSio::action]] void defercall( DA-DAPPSio::name ...
[ "Nan.Ai@outlook.com" ]
Nan.Ai@outlook.com
562a1419b2594859335ae100dbf258780fe8fd47
91e798b61594535024bead37c44828a507d97e4f
/图/最短路径.cpp
a31a33f7f1fcdafbdb9dad7dd276fec3ac8eadfc
[]
no_license
whram/data-structure
91d8001facb8b4e21bbc293cd8281694cc745ef9
a0b16dd84c9d34b4f76f8354f35d99ddaed02124
refs/heads/master
2022-07-05T20:48:44.220817
2020-05-22T09:17:24
2020-05-22T09:17:24
266,063,136
0
0
null
null
null
null
GB18030
C++
false
false
3,830
cpp
#include <stdio.h> #include <stdlib.h> #define INT_MAX 32676 /** Dijkstra 算法是用来计算图中一个 顶点到 其余的所有顶点的 最短距离的算法 */ /*** -1 表示两点之间距离是无限大 path[v] 表示的这个数组代表了Vx到 v 的最短路径 路径 = path[v][0],v,path[v][1],path[v][2] 直到一个path[v][x] == -1 Length[v] 代表了Vx到 v 的最短长度:权之和 代码注释: **/ typedef s...
[ "793663370@qq.com" ]
793663370@qq.com
c920188a681790c9053ae2ee4d580ce994232230
46af33c40c0913d0069b4a484369b148653f403d
/Homework/HW2/train-develope-test/Dynamic Perceptron/perceptron.h
eae369a782c173d504a24b1195c01920dc6f7815
[]
no_license
haibara502/Machine-Learning
d154ad669efb5117dead08229fd767c1227afdcc
dafa46c4b4555bcbf0f448832b20091b232171e9
refs/heads/master
2021-08-23T07:36:43.057558
2017-12-04T05:18:02
2017-12-04T05:18:02
103,791,446
0
0
null
null
null
null
UTF-8
C++
false
false
496
h
#ifndef PERCEPTRON #define PERCEPTRON #include <iostream> #include <cstdio> #include <cstdlib> #include <cstring> #include <algorithm> #include <vector> #include "url.h" using namespace std; class Perceptron { vector<double> w; double b; double learningRate; static const int dimension; double getRandom(); int...
[ "haibara502@gmail.com" ]
haibara502@gmail.com
7b32871ea78cdde15809e505c21ec3a4839adb93
f225cb2dd06228408f033a07c6635f5047cf655c
/src/ShrubTundra.cpp
f6d126a9c4934e2d77e05208f90986fa020a448d
[ "MIT" ]
permissive
ua-snap/alfresco
722723ea60550a63125e9d4e4cc18ff14cfba3e5
0e60370eb5e20475f187fe4c5b716c662e187f33
refs/heads/main
2022-11-15T00:58:08.883181
2022-11-07T21:35:25
2022-11-07T21:35:25
3,391,389
3
2
MIT
2022-11-07T21:35:26
2012-02-08T21:10:07
C++
UTF-8
C++
false
false
14,911
cpp
//ShrubTundra.cpp #include "ShrubTundra.h" #include "CustomLandscape.h" //Declare static private members bool ShrubTundra::_isStaticSetupAlready = false; bool ShrubTundra::_isFireProbAgeDependent; bool ShrubTundra::_isInoculumEnabled = false; double* ShrubTundra::_pAgeDependentFireParams; float S...
[ "alec@alecbennett.com" ]
alec@alecbennett.com
1b2ba8cfad9416a4319bf3e5f69b11b6b2890514
5a77b5092acf817ac37a5fafd006feea434dd0d6
/Doxygen_Graphviz/DesignPatternExample/大話/cpp/command/Waiter.h
069ce813edff2fdb9a3f0dcfb74671040487e74d
[]
no_license
shihyu/MyTool
dfc94f507b848fb112483a635ef95e6a196c1969
3bfd1667ad86b3db63d82424cb4fa447cbe515af
refs/heads/master
2023-05-27T19:09:10.538570
2023-05-17T15:58:18
2023-05-17T15:58:18
14,722,815
33
21
null
null
null
null
UTF-8
C++
false
false
588
h
#pragma once #include "Command.h" #include <vector> namespace command { class Waiter { public: std::vector<Command*> orders; virtual void setOrder(Command* com); virtual void cancelOrder(Command* com); virtual void excute(); private: bool initialized; ...
[ "jason_yao@htc.com" ]
jason_yao@htc.com
b6313cd5127afc12cf28e777b1e020718dd57873
c56e4f8cefae38364203457a60e5ff34a183ef0d
/src/main.cpp
93e17e9a4dd67abb17bd512c2bc1446f87d647be
[]
no_license
kosievdmerwe/YOTD
d03b0e6f6969cdb67a6d36d584f1c2ae8a205643
d6197331c54d922b93982e9f34d50f0212af70cf
refs/heads/master
2016-09-16T13:37:44.133834
2010-06-30T22:55:03
2010-06-30T22:55:03
745,112
1
0
null
null
null
null
UTF-8
C++
false
false
124
cpp
#include <iostream> using namespace std; int main(int argc, char** argv) { cout << "Hello World" << endl; return 0; }
[ "kosie.vandermerwe@gmail.com" ]
kosie.vandermerwe@gmail.com
8a18e9878c3f2f9e70947b04cb3444f7c3a479de
9f29a51abaef36255aae164864d5cac59de07291
/Source/Samples/20_HugeObjectCount/HugeObjectCount.cpp
9e8d649bb6e48e8d8c172da470e7bdce780ce06c
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
taohuadao/Urho3D
50213e52ba3f7490435de5fe9379695539d75630
b094fe3d1273b1136b918d5c81b225182de74d8f
refs/heads/master
2023-08-18T05:08:19.121954
2023-08-10T03:49:54
2023-08-10T03:49:54
324,118,542
0
0
MIT
2020-12-24T09:30:45
2020-12-24T09:30:45
null
UTF-8
C++
false
false
8,552
cpp
// Copyright (c) 2008-2022 the Urho3D project // License: MIT #include <Urho3D/Core/CoreEvents.h> #include <Urho3D/Core/Profiler.h> #include <Urho3D/Engine/Engine.h> #include <Urho3D/Graphics/Camera.h> #include <Urho3D/Graphics/Graphics.h> #include <Urho3D/Graphics/Material.h> #include <Urho3D/Graphics/Model.h> #inclu...
[ "dao.taohua@gmail.com" ]
dao.taohua@gmail.com
94789cc33bedd9a555a38938234b12068a7dd671
b11b7c6cd7f62ae05f53e9e0681919d510e74404
/simplerainbowshift/simplerainbowshift.ino
e20980ad36d20967079857c9c5e0241487e611f0
[]
no_license
Sm0k3scr33n/fun_with_neopixels
7c78b614b463f9b149c8697b2cfb13abbb9ecea8
0fe4c9834ddf57c87dbf9901d9915fcea3f08300
refs/heads/master
2021-01-13T10:26:59.296463
2020-03-01T07:34:03
2020-03-01T07:34:03
72,259,598
0
0
null
null
null
null
UTF-8
C++
false
false
7,818
ino
// NeoPixel Ring simple sketch (c) 2013 Shae Erisson // released under the GPLv3 license to match the rest of the AdaFruit NeoPixel library #include <Adafruit_NeoPixel.h> #ifdef __AVR__ #include <avr/power.h> #endif // Which pin on the Arduino is connected to the NeoPixels? #define PIN 4 // How many NeoPi...
[ "ben.gabbard@live.com" ]
ben.gabbard@live.com
d5fe9c4d78291002205a36a72fe3707a88db16d1
667672d0f110eb8947fba0d012e4ebb56fe26012
/week-09/day-1/ex03/Fibonacci-test.cpp
0368a6b1f1cf7f682c816d17294bd4a285ecb4c7
[]
no_license
greenfox-zerda-sparta/javorszkymazsi
81190253fb1b66f5c6957587751b5849cbaa5345
8a1a8145d01961a217a5dd78b0f158947f01093f
refs/heads/master
2021-01-11T05:46:05.594604
2017-02-03T11:17:31
2017-02-03T11:17:31
71,350,495
0
0
null
null
null
null
UTF-8
C++
false
false
358
cpp
#include "catch.h" #include "Fibonacci.h" TEST_CASE("Zeroth element in fibonacci") { Fibonacci fib(0); REQUIRE(fib.find_fibonacci(0) == 0); } TEST_CASE("First element in fibonacci") { Fibonacci fib(1); REQUIRE(fib.find_fibonacci(1) == 1); } TEST_CASE("Several elements in fibonacci") { Fibonacci fib(4); R...
[ "javorszky.mariann@gmail.com" ]
javorszky.mariann@gmail.com
f0d459e747f3e1e7fce6a4add7097978ce257545
b5f525109f445945007761fe44ef0cca8220a3ef
/MFCtest2/MFCtest2/MFCtest2Doc.h
9ae3f521624341728863ad4926a36b70c7c555b9
[]
no_license
GXNUWHY/Test
9b584f22dc051586293406012d062ee66329dc59
fdb093f448430506c7ec572cb65e8de0f266e6fe
refs/heads/master
2021-02-13T02:22:57.503836
2020-06-02T11:10:20
2020-06-02T11:10:20
244,652,320
1
0
null
null
null
null
UTF-8
C++
false
false
880
h
 // MFCtest2Doc.h: CMFCtest2Doc 类的接口 // #pragma once class CMFCtest2Doc : public CDocument { protected: // 仅从序列化创建 CMFCtest2Doc() noexcept; DECLARE_DYNCREATE(CMFCtest2Doc) // 特性 public: // 操作 public: CRect rect; // 重写 public: virtual BOOL OnNewDocument(); virtual void Serialize(CArchive& ar); #ifdef SHARED_...
[ "1183448845@qq.com" ]
1183448845@qq.com
816fc41abca5352cef48005885747ad013cd9e05
b6a92b2cd173131cd3280fe08198bfff4bb207fa
/Source/ProiectPoo_BalanTheodor_DamianStefan/Haine.h
f2ef61b112a741dd9cc11ccedabaecbd93caeebb
[]
no_license
Cioger/Proiect-POO-2021
58fb607cda011cf34fe3cc4adb3c3fd6f81ed5bd
e41fdc5a56cbe965be06903c090df1fd201f2f6f
refs/heads/main
2023-04-13T17:14:50.445751
2021-04-18T18:32:31
2021-04-18T18:32:31
328,492,042
0
0
null
null
null
null
UTF-8
C++
false
false
824
h
#pragma once #include <iostream> #include <string> using namespace std; enum class Marime { XS, S, M, L, XL }; class Haine { protected: int id; string descriere; float pret; string firma; bool inStoc; Marime marime; public: Haine(); Haine(int id, string descriere, float pret, string firma, bool inStoc, Ma...
[ "blntheodor@gmail.com" ]
blntheodor@gmail.com
b37aa780b53726717b09f937ff0146e96df760cc
071c74384fb6e929ef37b5ff712d21e6f147d10c
/NyxWebSvr/Source/Header_Impl.cpp
50069e7ed6528d5a06670c3a5d673694d17d065d
[]
no_license
cobreti/Nyx
410597bd763ed2c6583f212f63ba26f1ea3f8c36
0c62ba53a2999ad80d7f20f6bbebb00f1247f673
refs/heads/master
2016-09-05T11:54:24.773722
2014-08-10T13:21:46
2014-08-10T13:21:46
5,074,458
0
0
null
null
null
null
UTF-8
C++
false
false
398
cpp
// // Header_Impl.cpp // NyxWebSvr // // Created by Danny Thibaudeau on 2013-05-13. // Copyright (c) 2013 Danny Thibaudeau. All rights reserved. // #include <stdio.h> #include "Header_Impl.hpp" namespace NyxWebSvr { /** * */ CHeader_Impl::CHeader_Impl() { } /** ...
[ "cobreti_@hotmail.com" ]
cobreti_@hotmail.com
41c680d94cb8d37ff44cd0cab09108a796f616fd
b0cc49d489bf2163829848881ef1ba3c9cf720ee
/qtconnectivity/src/nfc/qllcpsocket_maemo6_p.h
bd4d5cf2187e4fe86026e592619eeccfe5a29842
[]
no_license
mer-packages/qtconnectivity
8724ed57206c35883145af8e47774ab9dff25e49
c49489493e344b1dabedc5c687dab8cb349e3cb9
refs/heads/master
2021-01-25T08:28:56.284744
2013-07-26T11:23:41
2013-07-26T11:23:41
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,026
h
/**************************************************************************** ** ** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtNfc module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage ** Licensees ...
[ "carsten.munk@jollamobile.com" ]
carsten.munk@jollamobile.com
99b3a1d8c13d072cbd3a2dee486fe06b36c62f49
0dab02d9be3666b41dca3ce6a6180134d5a6a8eb
/liveMedia/FramedSource.hh
772c41a43c7c0e8e2dd94f6d49b8dc70bdc808e1
[ "Apache-2.0" ]
permissive
lwg82/live555
3908f55decd84d0926d1f0d9e32526806a04dd46
091f56fe7cf3123e11cdbb68ac83357e50a413c4
refs/heads/master
2020-03-18T11:49:19.011443
2018-06-01T09:19:33
2018-06-01T09:19:33
134,693,035
0
0
null
null
null
null
UTF-8
C++
false
false
3,079
hh
/********** 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 3 of the License, or (at your option) any later version. (See <http://www.gnu.org/copyleft/lesser.html>.) This librar...
[ "liweiguang82@163.com" ]
liweiguang82@163.com
f21a492df9497ee547137bbbf1d8beed149b8b70
36184239a2d964ed5f587ad8e83f66355edb17aa
/.history/hw3/ElectoralMap_20211021114920.cpp
8bc4c9ebb096c4e90fd116b2cf3eb0434562628c
[]
no_license
xich4932/csci3010
89c342dc445f5ec15ac7885cd7b7c26a225dae3e
23f0124a99c4e8e44a28ff31ededc42d9f326ccc
refs/heads/master
2023-08-24T04:03:12.748713
2021-10-22T08:22:58
2021-10-22T08:22:58
415,140,207
0
0
null
null
null
null
UTF-8
C++
false
false
17,582
cpp
#include<iostream> #include<map> #include<set> #include<random> #include<time.h> #include<cmath> #include<stdlib.h> #include"ElectoralMap.h" #define num_district 3 #define num_enum 4 #define one_person 1 //int Candidate::id = 0; int ElectoralMap::count_district = 0; int Election::ids = 0; std::vector<int> Election::...
[ "70279863+xich4932@users.noreply.github.com" ]
70279863+xich4932@users.noreply.github.com
23f35e41593b5c27c135378d98ab2a067dea2c99
602a3dcb137d03476e9e127ae9ec6d09508be0f4
/Tools/WebGPUAPIStructure/WebGPU-Vulkan/BlitPassImpl.cpp
9fcfde4786750582f69c578cef8216a6ef7fc1eb
[]
no_license
dinfuehr/WebKit
daf6d8ed754f69f87e755fb12a4b80ce2b78f3c7
b179006c34d71af4c788719a7c67809e817e17c0
refs/heads/master
2023-01-14T05:55:29.410095
2018-11-12T15:12:35
2018-11-12T15:12:35
122,606,341
3
3
null
2022-10-11T17:39:17
2018-02-23T10:21:16
null
UTF-8
C++
false
false
2,712
cpp
/* * Copyright (C) 2017 Apple Inc. All rights reserved. * * 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 retain the above copyright * notice, this list of conditions and the ...
[ "mmaxfield@apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc" ]
mmaxfield@apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc
0289ad1994cbb21682c9efdc7b550dc45f9aaf2c
d2dd615dc6c041382b2ddf48b2fe2899b9f5b990
/CBStudy/main.cpp
aea431adb3990c24d51f53c2d76796d0679353c1
[]
no_license
zxlhhyccc/srgb
7b20a113b7a5dcc9323912f3bd39917f223bca57
9e3e0478191d6bb442f944a738be7efd5aa66325
refs/heads/master
2023-03-31T23:28:24.724933
2023-03-23T14:35:13
2023-03-23T14:35:13
162,991,434
0
0
null
2023-03-25T08:15:02
2018-12-24T13:04:52
C
UTF-8
C++
false
false
8,436
cpp
/* Code::Blocks 学习助手 V0.18 By 蘭公子 本工具切换VC2010中英文,或者开启命令行的编译器环境 Debug模式,命令行后台输出调试信息,但是不能显示图片 Release模式,可以显示图片和图标,不显示命令行后台 */ #include "cbstudy.h" //加载预编译头文件 INT_PTR CALLBACK DlgProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam); void CBStudyInitdialog(HWND & hwnd); void CBStudyReadINI(); //读取配置模块 bool Cl...
[ "landboy@amd3000.(none)" ]
landboy@amd3000.(none)
d47b879803974b8e6bba5890f699f14f2125d6bd
1d6dbe2ac145b9785b944855bfcce418f8327b16
/src/ROSPlan/devel/include/rosplan_knowledge_msgs/DomainFormula.h
22598f8e270e3c77df7223abd73aa071b89920ea
[]
no_license
giliamit/escorting_project
b0338e9652cf81e9435eb0fd5f0a57f09a3d6d84
2194e1385fcbb0be367af898576fc3bf8c94fde5
refs/heads/master
2021-05-06T18:54:54.232410
2017-11-25T15:53:55
2017-11-25T15:53:55
111,991,363
1
1
null
null
null
null
UTF-8
C++
false
false
6,735
h
// Generated by gencpp from file rosplan_knowledge_msgs/DomainFormula.msg // DO NOT EDIT! #ifndef ROSPLAN_KNOWLEDGE_MSGS_MESSAGE_DOMAINFORMULA_H #define ROSPLAN_KNOWLEDGE_MSGS_MESSAGE_DOMAINFORMULA_H #include <string> #include <vector> #include <map> #include <ros/types.h> #include <ros/serialization.h> #include <...
[ "hadarydar@gmail.com" ]
hadarydar@gmail.com
7af073a2b89fd28905b10bd8af2faf4b00831d39
f21461d44f53d99faa038b274225b9c175360192
/zhang/search/B-Tree.cpp
e3b6bde2d81cd44817beabda09de78fa5deac106
[ "MIT" ]
permissive
costarzhang/C-Plus-Plus
5553e33ddf56b6069fec064d19345343dd00a20a
fa21e83f9c17adce4f8c46d53dcba4eacbbfa809
refs/heads/master
2023-03-28T18:33:09.994165
2021-03-30T09:32:09
2021-03-30T09:32:09
275,480,407
0
0
null
2020-06-28T01:04:12
2020-06-28T01:04:11
null
UTF-8
C++
false
false
18,262
cpp
/* 多路平衡查找树 */ /* 一棵m阶的B - Tree有如下特性: 1. 每个节点最多有m个孩子。 2. 除了根节点和叶子节点外,其它每个节点至少有Ceil(m / 2) 个孩子。 3. 若根节点不是叶子节点,则至少有2个孩子 4. 所有叶子节点都在同一层,且不包含其它关键字信息 5. 每个非终端节点包含n个关键字信息(P0,P1,…Pn, k1,…kn) 6. 关键字的个数n满足:ceil(m / 2) -1 <=n <= m - 1 7. ki(i = 1,…n) 为关键字,且关键字升序排序。 8. Pi(i = 1,…n) 为指向子树根节点的指针。...
[ "costarzhang@foxmail.com" ]
costarzhang@foxmail.com
e7bb0ddca696450f4ab72b37c174f18bedf846c4
3f713aed2756c7b6dc090dc0a69b9d1fd592da12
/src/qt/transactionrecord.h
90d788d3601a918b7b0e61bc8b53f41f00fea94a
[ "MIT" ]
permissive
anyagixx/xorx
ba1a64fdf799c2b74a4b35aefa57ab630e8a0e6b
974709b63c6233a37d08f914b723e513e0ef5e44
refs/heads/master
2020-03-27T00:55:44.889288
2019-05-15T09:51:43
2019-05-15T09:51:43
145,667,570
0
0
null
null
null
null
UTF-8
C++
false
false
4,919
h
// Copyright (c) 2011-2013 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_QT_TRANSACTIONRECORD_H #define BITCOIN_QT_TRANSACTIONRECORD_H #include "amount.h" #include "uint256.h" #incl...
[ "anyagixx@yandex.ru" ]
anyagixx@yandex.ru
38bb2aedee87c06b41e68a839154f47a01110e27
2f78e134c5b55c816fa8ee939f54bde4918696a5
/code/gui/guiresource.h
ae1e2d558775255d6200c3f5c8d58dd71dc05a6a
[]
no_license
narayanr7/HeavenlySword
b53afa6a7a6c344e9a139279fbbd74bfbe70350c
a255b26020933e2336f024558fefcdddb48038b2
refs/heads/master
2022-08-23T01:32:46.029376
2020-05-26T04:45:56
2020-05-26T04:45:56
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,642
h
/*************************************************************************************************** * * DESCRIPTION A very simple resource manager to stop mulitple loads of files * * NOTES * ***************************************************************************************************/ #ifndef _GUIRESOURCE_H...
[ "hopefullyidontgetbanned735@gmail.com" ]
hopefullyidontgetbanned735@gmail.com
9056d2c94866156e800448c6c76eaaa2947e7356
4014e8a0e9b0c18d37fca762b890c10a21591421
/XZZ2l2nu/tools/metCorr/macros/gjets/preskim_gjets.cc
4b17544ec065fc871f8ac1b097818438b0bf8aa0
[]
no_license
VirginiaCMS/cmgtools-lite
03801ebd074c0c617f75c19abffea60e4e79358c
fc43746a91ca3a2bb857858d3c78e15d20f54074
refs/heads/xzz2l2nu_8026p1
2021-01-24T05:41:59.334426
2017-10-26T00:42:54
2017-10-26T00:42:54
67,161,086
0
2
null
2017-10-26T00:42:55
2016-09-01T19:43:37
Fortran
UTF-8
C++
false
false
15,301
cc
#include "TFile.h" #include "TTree.h" #include "TBranch.h" #include "TH2D.h" #include "TH2F.h" #include "TH1F.h" #include "TMath.h" #include "TVector2.h" #include "TGraphErrors.h" #include <iostream> #include <fstream> #include <sstream> #include <stdlib.h> #include <string> #include <vector> #include <ctime> #include ...
[ "Hengne.Li@CERN.CH" ]
Hengne.Li@CERN.CH
e7b8b83d7eb96a67ba129e1e34aaa653eab8dbc5
5369b0f0a9950297dee7f2c8dc0d59433fc08854
/horrorGame01/horrorGame01/Common/Vector2.h
aeb67e00d6de2dbf48be2816b5bf7c6bb8af6f63
[]
no_license
terataichi/horrorGame
683bc50445ccadb3e7a30f51408488b47148f179
2ce36dd3d27ca16ae6bcaa374c968df0c8698f75
refs/heads/master
2023-08-21T05:05:10.353466
2021-10-12T15:05:16
2021-10-12T15:05:16
405,837,804
0
0
null
null
null
null
ISO-8859-7
C++
false
false
3,311
h
#pragma once #define GRAVITY 10.0f // ΓέΜίΪ°Δ‰»‚΅‚ά template<class T> class Vector2Template { public: Vector2Template(); Vector2Template(T x, T y); ~Vector2Template(); T x_; T y_; operator Vector2Template<int>() { return Vector2Template<int>{ static_cast<int>(x_), static_cast<int>(y_) }; }; operator Vecto...
[ "taichiz519@gmail.com" ]
taichiz519@gmail.com
3e6539a3d9f27878180beb9f609f643092b8f84e
e6769524d7a8776f19df0c78e62c7357609695e8
/branches/v0.5-new_cache_system/retroshare-gui/src/gui/TransfersDialog.h
31376769faf851a4f12178e2b3c539dce8c4a5ca
[]
no_license
autoscatto/retroshare
025020d92084f9bc1ca24da97379242886277779
e0d85c7aac0a590d5839512af8a1e3abce97ca6f
refs/heads/master
2020-04-09T11:14:01.836308
2013-06-30T13:58:17
2013-06-30T13:58:17
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,286
h
/**************************************************************** * RetroShare is distributed under the following license: * * Copyright (C) 2006,2007 crypton * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published...
[ "chrisparker126@b45a01b8-16f6-495d-af2f-9b41ad6348cc" ]
chrisparker126@b45a01b8-16f6-495d-af2f-9b41ad6348cc
142aecf8e27136cda26aef6926186d03550e81e7
d7f98c207a9953af80eaf9b885bdeff44cb4282d
/timer1-ctc-ocr-polling/timer1-ctc-ocr-polling.ino
361d8c37e62884df5a8a979de98cab8a869257a4
[]
no_license
yohanes-erwin/arduino
7e2db3240cdf70eb213b888e970a12a044b2c9c4
2bf61eecbbfe9d9ab7763745694258cf9526cd58
refs/heads/master
2021-06-03T22:40:33.293051
2016-07-01T02:55:21
2016-07-01T02:55:21
51,231,970
0
0
null
null
null
null
UTF-8
C++
false
false
818
ino
/******************************************************************************* * Make delay 1s with timer 1, CTC mode(top = OCR1A), prescaler 256, pooling * OCR1A = (1s*16000000Hz)/256 = 62500 = 0xF424 ******************************************************************************* */ void setup() { // PB5 (Ard...
[ "erwin.setiawan789@gmail.com" ]
erwin.setiawan789@gmail.com
9f81c25f925a91b7213404fb18e7590945c0e6c1
8d263f87a0c89ee59c9f8134a1dadd07e3929cd4
/800/domino_pilling.cpp
f6f3efd3a2fe8548f768f247865f9804693d2e8b
[]
no_license
JustSmashUp/Codeforces
acb8388968425290f73d9fed9205e48b5ab6e4e6
419f4165bd024da6966733a5da53c5808d2aa39f
refs/heads/main
2023-01-24T21:10:23.410705
2020-12-06T11:21:53
2020-12-06T11:21:53
317,134,191
0
0
null
null
null
null
UTF-8
C++
false
false
119
cpp
#include <iostream> using namespace std; int main() { int m,n; cin >> m >> n; cout<< ((m*n)/2) <<endl; }
[ "rifatsarker71@gmail.com" ]
rifatsarker71@gmail.com
623e55a6fc4d85437c60ff01e24a29781e4d20d0
c1ed724117e99f42a5b2a8f74a92e697e1ae6b5c
/bts_study/14593.cpp
4643016f36e606efb26ccf26080c87b0da574673
[]
no_license
Hee-Jae/Algorithm
73d45913494541d4f38baa2e32259c4e9f50ab0b
a159380ff2a4f7ead2fb625618169b9b32335a17
refs/heads/master
2023-08-15T14:29:55.414276
2021-10-02T08:27:16
2021-10-02T08:27:16
401,086,191
0
0
null
null
null
null
UTF-8
C++
false
false
565
cpp
#include <iostream> #include <vector> #include <algorithm> #define mp make_pair #define pb push_back #define pii pair<int, int> using namespace std; int main(){ ios::sync_with_stdio(0); cin.tie(0); vector<pair<pii, pii> > v; int N,S,C,L; cin >> N; for(int i=0; i<N; i++){ cin >> S >> C >> L; v.pb(mp...
[ "jhj967878@naver.com" ]
jhj967878@naver.com
d26dded91a9f39f7d2ecff0df7b37d47f0fae64a
e1fe38f9207053ffa1c68c050ed6dc5e63975cd4
/array/car_pool.cpp
d0e414bc847bcda85781edda7b107e7e31ca01dd
[]
no_license
dhruv2600/leet
3199c568d7296219336ede0da8238ecd094ac402
71e73e999fa689285e7a9bc2414e7536c72cdab7
refs/heads/master
2023-09-03T06:24:41.885912
2021-10-22T17:15:06
2021-10-22T17:15:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
626
cpp
class Solution { public: bool carPooling(vector<vector<int>>& trips, int capacity) { int car=0; unordered_map<int,int>pick; unordered_map<int,int>drop; int maxdrop=INT_MIN; for(auto it:trips) { pick[it[1]]=it[0]; drop[it[2]]=it[0]; maxdrop=max(maxdrop...
[ "dhruvsharma2600@gmail.com" ]
dhruvsharma2600@gmail.com
3acae2c3452c149b026e9e702c693600a4623fb3
70828283ca189ff2dbd979adaeb03ebdacdd0da3
/vulkansdk-macos-1.2.162.0/macOS/include/spirv_cross/spirv_msl.hpp
5d34ca615fa05ce8b0430863789479af97834e3c
[]
no_license
mterekhov/doom
8c4703b91bed4b71b6dd4d2949e412d2d5142daf
e67dea1d95604c899d0254869e0aa9ee186591a2
refs/heads/master
2023-06-24T09:35:33.833068
2021-03-12T09:04:24
2021-03-12T09:04:24
331,362,925
0
0
null
null
null
null
UTF-8
C++
false
false
130
hpp
version https://git-lfs.github.com/spec/v1 oid sha256:3b37bc65fadaa9b3d85dacf9b92f8acfa310d419f63aeaf904dd2ff06deaf09f size 48635
[ "" ]
c9e68c1150f0439dabcb2c9c99d818785956dadc
6b2a8dd202fdce77c971c412717e305e1caaac51
/solutions_5769900270288896_0/C++/naagi/b.cpp
af98a9bf0fe60dcaacdd46c926d87801072c6e6c
[]
no_license
alexandraback/datacollection
0bc67a9ace00abbc843f4912562f3a064992e0e9
076a7bc7693f3abf07bfdbdac838cb4ef65ccfcf
refs/heads/master
2021-01-24T18:27:24.417992
2017-05-23T09:23:38
2017-05-23T09:23:38
84,313,442
2
4
null
null
null
null
UTF-8
C++
false
false
880
cpp
#include <cstdio> #include <cstdlib> #include <cstring> #include <algorithm> using namespace std; int main (void) { int test, tests; scanf ("%d", &tests); for (test = 0; test < tests; test++) { int i, j, k, n, r, c, res = 1000, tres; scanf ("%d %d %d", &r, &c, &n); for...
[ "eewestman@gmail.com" ]
eewestman@gmail.com
1146bc0dd4544622d47c72564121f021c3922679
b32dc9c68715276f36ec455b90a602348d39522a
/src/source/class/display/model/obj/Obj.h
b4e93543ca595cc3a4d3c05cfff381ec52a1b47b
[]
no_license
wicanr2/GameTest
3287432f7cb60323e0a61489aa515f660dac7d44
2ca9ac9401c75305bc86750e16d6bc56400f8814
refs/heads/master
2021-01-15T08:31:55.280976
2015-12-14T09:07:17
2015-12-14T09:07:17
null
0
0
null
null
null
null
UTF-8
C++
false
false
383
h
#ifndef OBJ_H_ #define OBJ_H_ #include <GL/glew.h> #include <glm/glm.hpp> #include <vector> #include <class/display/model/obj/Face.h> class Model; class Obj{ public: Obj(); virtual ~Obj(); static Obj* load_obj(const char* path); std::vector<glm::vec3>v; std::vector<glm::vec2>uv; std::vector<glm::vec3>vn...
[ "tim11251994@gmail.com" ]
tim11251994@gmail.com
b142c07e0e3718c90762c38979ea32d2adbcd887
6b2a8dd202fdce77c971c412717e305e1caaac51
/solutions_5658571765186560_0/C++/nike0good/D_3.cpp
275aa510fc3a023cf5b95eb50916a0a85eca6e33
[]
no_license
alexandraback/datacollection
0bc67a9ace00abbc843f4912562f3a064992e0e9
076a7bc7693f3abf07bfdbdac838cb4ef65ccfcf
refs/heads/master
2021-01-24T18:27:24.417992
2017-05-23T09:23:38
2017-05-23T09:23:38
84,313,442
2
4
null
null
null
null
UTF-8
C++
false
false
1,541
cpp
#include<cstdio> #include<cstring> #include<cstdlib> #include<algorithm> #include<functional> #include<iostream> #include<cmath> #include<cctype> #include<ctime> using namespace std; #define For(i,n) for(int i=1;i<=n;i++) #define Fork(i,k,n) for(int i=k;i<=n;i++) #define Rep(i,n) for(int i=0;i<n;i++) #defi...
[ "eewestman@gmail.com" ]
eewestman@gmail.com
d48f444ecd6a5be9270bc82e03257618eb81020c
bb6ebff7a7f6140903d37905c350954ff6599091
/net/socket/ssl_server_socket_nss.h
bc5b65d53687fb58e51c4ac6bbd70764cb53ebd3
[ "BSD-3-Clause" ]
permissive
PDi-Communication-Systems-Inc/lollipop_external_chromium_org
faa6602bd6bfd9b9b6277ce3cd16df0bd26e7f2f
ccadf4e63dd34be157281f53fe213d09a8c66d2c
refs/heads/master
2022-12-23T18:07:04.568931
2016-04-11T16:03:36
2016-04-11T16:03:36
53,677,925
0
1
BSD-3-Clause
2022-12-09T23:46:46
2016-03-11T15:49:07
C++
UTF-8
C++
false
false
4,765
h
// 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. #ifndef NET_SOCKET_SSL_SERVER_SOCKET_NSS_H_ #define NET_SOCKET_SSL_SERVER_SOCKET_NSS_H_ #include <certt.h> #include <keyt.h> #include <nspr.h> #inclu...
[ "mrobbeloth@pdiarm.com" ]
mrobbeloth@pdiarm.com
71bc115dd8a4d46898ddf592b7475258076f5355
8647e338d2885d036908fdce8abd4f96fa6f1cd7
/keymaster/v0.2/keymaster_linaro.cpp
0e71cf2b0e0fbff2f167b8f153e22cb274cf288c
[]
no_license
vchong/device-linaro-sks
32c1a2687933bce0a404346dff4598588c60ccaf
00c807a2048d0309207fe7830f5fb3ef102344f4
refs/heads/master
2018-09-09T22:45:10.893017
2018-05-26T14:40:43
2018-05-26T14:40:43
127,885,106
0
0
null
null
null
null
UTF-8
C++
false
false
26,007
cpp
/* * Copyright (C) 2018 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by app...
[ "victor.chong@linaro.org" ]
victor.chong@linaro.org
ef43e3e5a2aafb019a658fc6b8272d7ba4e5115f
6161b649af64dd01c041ef47e809eb0ea2c6e6fd
/libs/ardour/control_protocol_manager.cc
1e793bb71b8fd1e223989cb3a9c473d37d8cf72d
[]
no_license
taybin/Gusto
a6df309075f2ed5fffa5404ce756c8282cc6aa87
567554470a8de13a9984c895b83f3ac045f587ab
refs/heads/master
2016-08-05T13:52:42.667291
2010-07-06T03:11:34
2010-07-06T03:16:08
null
0
0
null
null
null
null
UTF-8
C++
false
false
9,967
cc
/* Copyright (C) 2000-2007 Paul Davis This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is ...
[ "taybin@penguinsounds.org" ]
taybin@penguinsounds.org
61327862cd4ef192f2b9a094f95416d18552c65e
ae15f4bd822bd5a3bd854acda2e4641bdcd26cc9
/Lab 2/example-quad/src/testApp.cpp
8978259a98ca584805ce86e5d05b8420674d5520
[]
no_license
eltaiguer/tdi_grupo3
6889767db31f6128ccba84578cd0a041c1529ea2
789940751e66e00056b3a37eb674478b01325294
refs/heads/master
2021-01-25T07:34:02.695720
2014-11-12T21:25:08
2014-11-12T21:25:08
null
0
0
null
null
null
null
ISO-8859-1
C++
false
false
10,308
cpp
#include "testApp.h" using namespace ofxCv; using namespace cv; //-------------------------------------------------------------- void testApp::setup(){ // listen on the given port cout << "listening for osc messages on port " << PORT << "\n"; receiver.setup(PORT); ofSetVerticalSync(true); // this uses depth...
[ "jose.lvp@gmail.com" ]
jose.lvp@gmail.com
21511893d50359191a56c32832bcdac9ca4ee6bc
cee83e8f6585c20d4444ddc12492e42a6b3412d5
/dep/libopenmpt/soundlib/Load_med.cpp
f12b68f52dc6cd2b76d5c7bf99f2a114bccf1b4f
[ "BSD-3-Clause" ]
permissive
fgenesis/tyrsound
95b93afb71fa80a6d95b8c6771f29aea6333afd2
a032eaf8a3a8212a764bf6c801325e67ab02473e
refs/heads/master
2021-01-22T10:08:35.576908
2014-08-31T01:54:17
2014-08-31T01:54:17
10,146,874
4
0
null
2014-02-02T02:42:25
2013-05-18T20:40:23
C
UTF-8
C++
false
false
30,143
cpp
/* * Load_med.cpp * ------------ * Purpose: OctaMed MED module loader * Notes : (currently none) * Authors: Olivier Lapicque * OpenMPT Devs * The OpenMPT source code is released under the BSD license. Read LICENSE for more details. */ #include "stdafx.h" #include "Loaders.h" #include "../common/Stri...
[ "false.genesis@googlemail.com" ]
false.genesis@googlemail.com
f4441bc5f6353eacbf146d400aac57820753381f
ec543e13a8f328c3aa73d0579669bab32d4220c4
/mapnikvt/src/mapnikvt/TextSymbolizer.cpp
bfeaff27c1e7d4ab7807ff5c05b460c98b6d84d9
[ "BSD-3-Clause" ]
permissive
yangkf1985/mobile-carto-libs
64568fea7d10e24bc42ebf92d0fdf78d0a3d08cc
e446eea9bdd05c59188834de230cea378132e1d1
refs/heads/master
2023-04-18T13:51:29.915699
2021-04-20T08:38:43
2021-04-20T08:38:43
null
0
0
null
null
null
null
UTF-8
C++
false
false
16,869
cpp
#include "TextSymbolizer.h" #include "ParserUtils.h" #include "FontSet.h" #include "Expression.h" #include "ExpressionOperator.h" #include "vt/FontManager.h" #include <memory> #include <vector> #include <limits> #include <boost/algorithm/string.hpp> namespace carto { namespace mvt { void TextSymbolizer::build(co...
[ "mark.tehver@gmail.com" ]
mark.tehver@gmail.com
7573c44498782b1446eb0e775c0130dfac63b3b0
a55cec32c0191f3f99752749f8323a517be46638
/ProfessionalC++/SingletonLogger/Logger.h
40551eee1bce237110e3dfc29fd8cae13a1c0f96
[ "Apache-2.0" ]
permissive
zzragida/CppExamples
e0b0d1609b2e485cbac22e0878e00cc8ebce6a94
d627b097efc04209aa4012f7b7f9d82858da3f2d
refs/heads/master
2021-01-18T15:06:57.286097
2016-03-08T00:23:31
2016-03-08T00:23:31
49,173,497
0
0
null
null
null
null
UTF-8
C++
false
false
544
h
#include <iostream> #include <fstream> #include <vector> #include <string> class Logger { public: static const std::string kLogLevelDebug; static const std::string kLogLevelInfo; static const std::string kLogLevelError; static Logger& instance(); void log(const std::string& msg, const std::string& level); void...
[ "zzragida@gmail.com" ]
zzragida@gmail.com
2dc1b9395cf931aec189b17659172208111bb9c4
31ac07ecd9225639bee0d08d00f037bd511e9552
/externals/OCCTLib/inc/PColgp_FieldOfHArray1OfCirc2d.hxx
31001cd5320b5654288941d63388bbb97800756b
[]
no_license
litao1009/SimpleRoom
4520e0034e4f90b81b922657b27f201842e68e8e
287de738c10b86ff8f61b15e3b8afdfedbcb2211
refs/heads/master
2021-01-20T19:56:39.507899
2016-07-29T08:01:57
2016-07-29T08:01:57
64,462,604
1
0
null
null
null
null
UTF-8
C++
false
false
2,388
hxx
// This file is generated by WOK (CPPExt). // Please do not edit this file; modify original file instead. // The copyright and license terms as defined for the original file apply to // this header file considered to be the "object code" form of the original source. #ifndef _PColgp_FieldOfHArray1OfCirc2d_HeaderFile #...
[ "litao1009@gmail.com" ]
litao1009@gmail.com
f800f06d2b8062cc31f69dadf89ee1e4fffe4f0f
51adec2540ecbc95373c27e2b899b1645a08fff1
/Lab 1 DLL's in C++/lab1.1/lab1.3DDLdynamisk/stdafx.cpp
d3c3ee12f5901f02a120a146b5228f8475473e2b
[]
no_license
entvex/ITKPU1-01
684220e0169faf8f0b18bf98a4e095feb8929eb2
da17087f423ba2c65e00908a890c18a613b1f176
refs/heads/master
2021-01-23T02:06:02.951906
2017-03-23T15:23:39
2017-03-23T15:23:39
85,962,153
0
0
null
null
null
null
UTF-8
C++
false
false
296
cpp
// stdafx.cpp : source file that includes just the standard includes // lab1.3DDLdynamisk.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
[ "entvex@gmail.com" ]
entvex@gmail.com
7834db57e53f551a9a0d442c21d3175be6218083
8e097cd73a96cbd55db11189856f4f914d0bca14
/include/kaballoc/std/tuple.h
cac5eeed3e369fe227289718391280f38ccf9ee4
[ "Unlicense" ]
permissive
KABoissonneault/allocator
fe3e6dcae2afddca553e2334b61302c3873a5b87
93736e25657dddad4d458e7c11de5dc169af43cb
refs/heads/master
2021-02-25T22:22:41.467444
2020-11-16T03:10:56
2020-11-16T03:10:56
245,471,768
1
0
null
null
null
null
UTF-8
C++
false
false
444
h
#pragma once // Add std types as relocatable based on the table found on this site: https://quuxplusone.github.io/blog/2019/02/20/p1144-what-types-are-relocatable/ #include "kaballoc/trait/relocatable.h" #include <tuple> namespace kab { template<typename... Args> using tuple = std::tuple<Args...>; template<type...
[ "kaboissonneault@bhvr.com" ]
kaboissonneault@bhvr.com
2180e5586b0fbd92c2b2b8c88a93b3fd0aaff3e0
2406608bbae69096bc6e92157111c999e3d33f2f
/Лаба 8/E.cpp
68f27629ef542c291b8711d72bf27e4e4646266b
[]
no_license
TerixSK/Algorithms-2020-2021
a19eea7c28d831da40deb30c0e32347b46b30b7a
715ba0c54f42b4f39b04b6a7eaae1b391967e0d3
refs/heads/master
2023-04-17T01:53:26.387030
2021-04-26T14:23:14
2021-04-26T14:23:14
361,481,443
3
3
null
null
null
null
UTF-8
C++
false
false
1,771
cpp
#include <fstream> #include <iostream> #include <vector> #include <queue> using namespace std; vector<int> graph[100000]; vector<bool> used; vector<int> dist; void bfs(int v) // обход в ширину { used[v] = true; // помечаем первую вершину dist[v] = 0; queue<int> q; q.push(v); // добовляем её в очередь ...
[ "tarasov2964@mail.ru" ]
tarasov2964@mail.ru
c4b0d75aaa9ebc8b319047491cbbc13db1c1e280
3438e8c139a5833836a91140af412311aebf9e86
/components/sync/model_impl/processor_entity_tracker_unittest.cc
98037971fdeb900c69b9690eba27b256792a382e
[ "BSD-3-Clause" ]
permissive
Exstream-OpenSource/Chromium
345b4336b2fbc1d5609ac5a67dbf361812b84f54
718ca933938a85c6d5548c5fad97ea7ca1128751
refs/heads/master
2022-12-21T20:07:40.786370
2016-10-18T04:53:43
2016-10-18T04:53:43
71,210,435
0
2
BSD-3-Clause
2022-12-18T12:14:22
2016-10-18T04:58:13
null
UTF-8
C++
false
false
19,754
cc
// Copyright 2014 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 "components/sync/model_impl/processor_entity_tracker.h" #include <utility> #include "base/memory/ptr_util.h" #include "components/sync/base/mod...
[ "support@opentext.com" ]
support@opentext.com
a468f75b79c5bbb8ae13ec9a2f869013b77b1cea
f8c69330231784fa08cf70b04a9c6e9211813582
/ProblemSolving/easy/ElectronicsShop/electronicsShop.cpp
b190956fbc5b2e1244ef20abdc22d2af58c50d07
[]
no_license
paul-nema/hackerrank
71c1f2b5340741dab354b830c57e3cd1db38bc39
3660fce336277034dc94d27feed72bbf412276b5
refs/heads/master
2020-03-30T05:49:50.467010
2019-03-02T13:09:16
2019-03-02T13:09:16
150,822,037
0
0
null
null
null
null
UTF-8
C++
false
false
2,608
cpp
#include <bits/stdc++.h> using namespace std; vector<string> split_string(string); /* * Complete the getMoneySpent function below. */ // b: budget int getMoneySpent(vector<int> keyboards, vector<int> drives, int b) { int bestDeal{ -1 }; int prev{ b }; int remaining; for( auto const keyboard: keyb...
[ "paul.nema@gmail.com" ]
paul.nema@gmail.com
26b67488e84e3bd8943f2b2b3565af5d8458f2e7
da3c59e9e54b5974648828ec76f0333728fa4f0c
/mobilemessaging/smilui/playersrc/SmilPlayerLinkParser.cpp
efec80a2272d0f3b3b70ff4d9999bdcd954e6383
[]
no_license
finding-out/oss.FCL.sf.app.messaging
552a95b08cbff735d7f347a1e6af69fc427f91e8
7ecf4269c53f5b2c6a47f3596e77e2bb75c1700c
refs/heads/master
2022-01-29T12:14:56.118254
2010-11-03T20:32:03
2010-11-03T20:32:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,375
cpp
/* * Copyright (c) 2003-2005 Nokia Corporation and/or its subsidiary(-ies). * All rights reserved. * This component and the accompanying materials are made available * under the terms of "Eclipse Public License v1.0" * which accompanies this distribution, and is available * at the URL "http://www.eclipse.org/legal/epl-...
[ "none@none" ]
none@none
d520f43cd8566e87bce501dd6088cedb5ee33392
b5e1da7261a18adde3dbf041e6fd20d846d57ef5
/src/dynamic_load_balance.cpp
d6a5b92e22e0c670fb86daac5c8b406d3ec8e7a0
[]
no_license
mlunacek/load_balance
0b35844c7b48a2a2be853c292ff1cdd9751a8f4e
cd44a7b329b1a237b6a7f96b238550e124bebf24
refs/heads/master
2021-01-02T23:13:07.547419
2012-08-31T20:20:32
2012-08-31T20:20:32
4,788,080
1
0
null
2012-08-31T20:20:34
2012-06-25T22:06:38
null
UTF-8
C++
false
false
1,732
cpp
#include "dynamic_load_balance.hpp" dynamic_load_balance::dynamic_load_balance(const std::string &filename, mpi::communicator &comm): load_balance(filename, comm) { } dynamic_load_balance::~dynamic_load_balance() { } void dynamic_load_balance::execute() { if( m_comm.rank() == 0 ) { i...
[ "monte.lunacek@gmail.com" ]
monte.lunacek@gmail.com
1eeef5a65fcb4e109f6f9a40377b2e1eb55b419b
1fdd0647dea9328042757624884b0d4284d4b327
/Client/CPlayerState.h
8f2cf4185eec73173ff4361b2e95161cb9bafc03
[]
no_license
moonseokchoi-kr/CupheadCloneGame
4800858b1c1363ca5e69d3d0328c028a34a2bdef
da2318cc82182abe44adee7cd180902ae44b2d99
refs/heads/master
2023-08-21T08:05:44.398782
2021-10-10T10:47:37
2021-10-10T10:47:37
394,128,076
0
0
null
null
null
null
UTF-8
C++
false
false
728
h
#pragma once class CPlayer; class CPlayerStateMachine; class CSound; class CPlayerState { public: CPlayerState(PLAYER_STATE _state); virtual ~CPlayerState(); public: CPlayerStateMachine* GetAI() { return m_ai; } PLAYER_STATE GetState() { return m_state; } CPlayer* GetPlayer(); PLAYER_STATE GetSubState() { retu...
[ "moonseoktech@gmail.com" ]
moonseoktech@gmail.com