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
11882e3c718eb3d94507ab16f6746b0c5167ae9d
b4bf3dbb54c4a41d72367723e266becb09d68169
/algorithmic-competition/LQC/官网真题/题目练习/蓝桥杯_算法训练 排序.cpp
8cfb697d8b722b1dfe9625f10cb96ab9cc9062e8
[]
no_license
anlzou/c-cpp-test
5e84cfab436aff95d4d9cda35002853e4b782f1e
4151e3b6dbbeb89a7874d19469bd236357ad848d
refs/heads/master
2022-11-21T17:28:51.702811
2020-07-21T09:05:07
2020-07-21T09:05:07
261,930,780
1
0
null
null
null
null
UTF-8
C++
false
false
327
cpp
#include<stdio.h> int main() { int data[3]; int i=0,j=0; int temp=0; while(i<3) { scanf("%d",&data[i]); i++; } for(i=0;i<2;i++) { for(j=1;j<3;j++) { if(data[i]<data[j]) { temp=data[i]; data[i]=data[j]; data[j]=temp; } } } for(i=0;i<3;i++) { printf("%d ",data[i]); } retur...
[ "599502931@qq.com" ]
599502931@qq.com
2ab48a9c178925ff8b8051c53015545da3b03a33
6504215c8de43b1e3d1bfb9e9740d8d1848e6282
/SDK/UE4_BP_GrenadeLauncher_classes.hpp
ae6459ad21b0652bf9c5f9ff210a8784dfd4a5e3
[]
no_license
MuhanjalaRE/Midair-1.0.4.9504-SDK
d9d82cdaf72d16bcd56400edf27092d85867db5f
c935e6e8f07953c3ab71e10d405db42a7c60627b
refs/heads/main
2023-02-24T11:59:43.891011
2021-01-29T19:04:11
2021-01-29T19:04:11
334,117,758
0
0
null
null
null
null
UTF-8
C++
false
false
682
hpp
#pragma once // Unreal Engine 4 (4) SDK #ifdef _MSC_VER #pragma pack(push, 0x8) #endif #include "UE4_BP_GrenadeLauncher_structs.hpp" namespace SDK { //--------------------------------------------------------------------------- //Classes //--------------------------------------------------------------------------- ...
[ "78203566+MuhanjalaRE@users.noreply.github.com" ]
78203566+MuhanjalaRE@users.noreply.github.com
c255ba3e9142bba6430141b4860272373e546889
c475439d6c5b80123df07b990c0dbc4d170d0862
/OpenGLTexture/OpenGLTexture.cpp
f83955081312739d794e6213f9290fc9a8ec3081
[]
no_license
Hibeginner/OpenGLTexture
b59b8ba2fe7150948c40b12463f8f4d61ba528d4
42d3c720f959ee1a797a07d8ebf8ad793ef6f46e
refs/heads/master
2020-06-08T23:15:01.393524
2019-07-02T15:39:37
2019-07-02T15:39:37
193,324,243
0
0
null
null
null
null
GB18030
C++
false
false
9,394
cpp
// OpenGLForWin32.cpp : Defines the entry point for the application. // #include "stdafx.h" #include "OpenGLTexture.h" #define MAX_LOADSTRING 100 // Global Variables: HINSTANCE hInst; // current instance WCHAR szTitle[MAX_LOADSTRING]; // The title bar text WCHAR szWind...
[ "510997064@qq.com" ]
510997064@qq.com
9142556024f62c4bb4dc00e6319efb5d908328e7
e7435ba7d53d26eec3a579eb3204c669d3939a80
/screen.cpp
2eede8442b06847341032a442237873ec9284eba
[]
no_license
starkyru/bamboo-clock
7004ccfc5cb6ee477fde07ab677ec1533f14f4b6
1b5c90bbe3e36a5359d6020b01e9a8bb0be078e5
refs/heads/main
2023-01-20T14:22:32.948130
2020-11-28T17:43:43
2020-11-28T17:43:43
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,392
cpp
#include <Arduino.h> #include <FastLED.h> #include "def.h" #include "screen.h" #include "vars.h" FASTLED_USING_NAMESPACE CRGB digit_1_leds[LED_NUM]; CRGB digit_2_leds[LED_NUM]; CRGB digit_3_leds[LED_NUM]; CRGB digit_4_leds[LED_NUM]; CRGB dots_leds[2]; unsigned long defaultColor = 0xFF0000; int prevLightSensorValue =...
[ "micurino@gmail.com" ]
micurino@gmail.com
2346c7ca89bbecc13b3be762579714f79cf534ad
83b8a9e0ba13a792f44fca455ba01043b9a81c78
/0x08_Sorting/0x08_Sorting/BOJ_11931.cpp
a6c7faef5acacd44a4fe57de53c8109d4b84df60
[]
no_license
BoGyuPark/VS_BOJ
0799a0c62fd72a6fc1e6f7e34fc539a742c0782b
965973600dedbd5f3032c3adb4b117cc43c62a8f
refs/heads/master
2020-04-14T12:45:53.930735
2019-12-04T03:06:44
2019-12-04T03:06:44
163,849,994
0
0
null
null
null
null
UTF-8
C++
false
false
334
cpp
#include<iostream> #include<algorithm> #include<vector> using namespace std; bool cmp(int a, int b) {return a > b;} int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); int n; cin >> n; vector<int> v(n); for (int i = 0; i < n; i++) cin >> v[i]; sort(v.begin(), v.end(), cmp); for (auto &i : v) cout <...
[ "shaing123@naver.com" ]
shaing123@naver.com
55eae8a5442cf1245d64f604d66544cb3c6d2104
a302495ee920bd73bbdf471ea567592d72128337
/src/csp_test.cpp
0213f8b1fdb84021d315f01ed7dd0437464d6492
[]
no_license
mamen/csp-planner
b6a8b90bb8763871911da5942389fa96a25f9533
dc2efc07fc2e4165bcbf712a78b9684f31879962
refs/heads/master
2021-06-18T06:10:20.326364
2017-06-27T09:43:37
2017-06-27T09:43:37
94,793,448
0
0
null
null
null
null
UTF-8
C++
false
false
1,765
cpp
#include<gecode/int.hh> #include <gecode/minimodel.hh> #include <gecode/search.hh> class csp_test: public Gecode::IntMinimizeSpace { public: csp_test() { rg_ = Gecode::Rnd(time(NULL)); numbers_ = Gecode::IntVarArray(*this, 4 , 0, 10); Gecode::rel(*this, numbers_[0]==numbers_[1]); ...
[ "markusme@edu.aau.at" ]
markusme@edu.aau.at
09eedb147e62b9c392dc3122fec044ee9fc1a6d8
ecd56167fd55c4800f83eea933c488eec30dda75
/consts.h
be33f8c3ac9a4489b619153205345719ba219871
[]
no_license
Rudnicky/STL_Containers
7030fe37b32a453aed6bb8e44274412718f95582
f578ab1d2e9cd1a61d1bad4a3a668030b0720fb4
refs/heads/master
2021-01-21T13:57:17.962776
2017-05-19T14:57:25
2017-05-19T14:57:25
91,816,671
0
0
null
null
null
null
UTF-8
C++
false
false
451
h
#ifndef CONSTS_H #define CONSTS_H namespace ConstStrings { const char* const MENU_OPTION_SEQUENCE = "* 1 - Sequence containers *\n"; const char* const MENU_OPTION_ASSOCIATE = "* 2 - Associate containers *\n"; const char* const MENU_OPTION_EXIT = "* 3 - Exit application *\n"; const char* const CLOS...
[ "p.j.rudnicki@gmail.com" ]
p.j.rudnicki@gmail.com
508e1f9a94517049d650cee979aa171a3c5ae27a
73c178d717ca4606060d0a77628bdf8a12f298e3
/MyProject.cp
816276d017fc9daeaf853e8318e11c9153f7792c
[]
no_license
NullOsama/ADC
c459520d6fb74c4794bb52c4bbfc8bd9e6268b23
f6142b5604fef44ed2770f26618729ab08be47ac
refs/heads/master
2022-10-26T07:06:36.118331
2020-06-17T18:18:09
2020-06-17T18:18:09
273,046,135
0
0
null
null
null
null
UTF-8
C++
false
false
1,356
cp
#line 1 "C:/Users/aaxxo/Desktop/ADC/MyProject.c" sbit LCD_RS at RD4_bit; sbit LCD_EN at RD5_bit; sbit LCD_D4 at RD0_bit; sbit LCD_D5 at RD1_bit; sbit LCD_D6 at RD2_bit; sbit LCD_D7 at RD3_bit; sbit LCD_RS_Direction at TRISD4_bit; sbit LCD_EN_Direction at TRISD5_bit; sbit LCD_D4_Direction at TRISD0_bit; sbit...
[ "44961698+NullOsama@users.noreply.github.com" ]
44961698+NullOsama@users.noreply.github.com
3b02cadad4e81e883f3e7e82afabf7cfe0e19848
c2f6548cf93716f6d784a6fb18f206c66089cb45
/src/ApertureMacros/ApertureMacroPrimitiveOutline.cc
af177bb1c35b0d04f37b80c392d616174c776c00
[ "BSD-2-Clause" ]
permissive
hugo191998236/gerber_rs274x_parser
4d0abefaf5fba5ae5d6e4d67860b6c0072043212
d2bbd6c66d322ab47715771642255f8302521300
refs/heads/master
2023-04-14T00:01:55.687246
2021-02-27T22:06:20
2021-02-27T22:06:20
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,538
cc
/* * Copyright 2021 Aaron Bamberger * Licensed under BSD 2-clause license * See LICENSE file at root of source tree, * or https://opensource.org/licenses/BSD-2-Clause */ #include "ApertureMacros/ApertureMacroPrimitiveOutline.hh" #include "ApertureMacros/InstantiatedApertureMacroPrimitive.hh" #include "ApertureMac...
[ "aaron.bamberger@gmail.com" ]
aaron.bamberger@gmail.com
583b8c91e2ebc27a83ce37e2d5efbde5cb03fe05
16a020f0a31fadedbd8d0d1f2395ef01965ff546
/Solution/TinySQL/Operator.cpp
041e2f629982e3118d388dc7ae52d9d931d4145f
[]
no_license
falloutkid/RefactoringTrainingCpp
0098550f8e39280d3aa95fccea2afc97ca31648b
22c6d4641cdc814ee7dbe3cf6d18fa013cb118e6
refs/heads/master
2021-01-10T12:07:37.806830
2015-12-26T21:03:50
2015-12-26T21:03:50
48,545,408
0
0
null
null
null
null
UTF-8
C++
false
false
184
cpp
#include "stdafx.h" #include "Operator.h" Operator::Operator() {} Operator::Operator(const TOKEN_KIND token_kind, const int order) { kind_ = token_kind; order_ = order; }
[ "test" ]
test
41bc8ff7ae99cf7982f4c3bea38cf4499147fb1f
abf8ef6adb762cc27ad0e4e2aca9941a3e6ecabb
/GridMaps/read_robot_laser.h
b2d9f25d7d5a88274b1cb539ec993d41b0eb3db0
[ "MIT" ]
permissive
navigateai/RobotMapping_SLAM_Assignments_In_Cpp
4a4e34674512ca2944fb3a10527abb8ecbca1151
4810a5dbb9ec8f07c8412d27049426a384ef3120
refs/heads/master
2022-11-12T17:30:29.862635
2020-07-06T23:03:58
2020-07-06T23:03:58
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,747
h
#pragma once #include <iostream> #include <fstream> #include <string> #include <vector> #include "../../eigen/Eigen/Dense" #include "tools.h" using namespace Eigen; std::vector<std::string> splitBy(std::string str, std::string delimiter){ std::size_t pos = str.find(delimiter); std::vector<std::string> vec...
[ "jjdang21@utexas.edu" ]
jjdang21@utexas.edu
5bc9f4cf59148ee8301147cca62c0d427a689380
2c5530dfa301c6e0873aca881010d03c94097b46
/gecode/int/unary/not-first-not-last.hpp
e24da06e7b60561f880bb49f7e230f69ed40302e
[ "MIT" ]
permissive
bharathkarthikeyan/gecode
8befc4e0243dd4d464a39dbebb4b58ca19ed2064
504995fc9edce1e9d28a5b999e6da6bdbe529648
refs/heads/master
2020-03-10T09:57:03.632935
2018-03-21T21:03:55
2018-03-22T08:46:14
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,295
hpp
/* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */ /* * Main authors: * Christian Schulte <schulte@gecode.org> * * Copyright: * Christian Schulte, 2009 * * Last modified: * $Date$ by $Author$ * $Revision$ * * This file is part of Gecode, the generic constraint * developme...
[ "schulte@gecode.org" ]
schulte@gecode.org
326d4bacd94e787e9f61fc9fdbe7869c905c1643
007d63d4cb49676fd678840a3e1244ad63bdb121
/visiocyte_main/mozak/m_terafly/src/presentation/m_PConverter.h
eb22100f368d61aca8f3e2c789b6b7d84e7cab08
[ "LicenseRef-scancode-warranty-disclaimer", "MIT" ]
permissive
satya-arjunan/visiocyte
1a09cc886b92ca10c80b21d43220b33c6009e079
891404d83d844ae94ee8f1cea1bb14deba588c4f
refs/heads/master
2020-04-23T02:07:33.357029
2019-04-08T06:40:03
2019-04-08T06:40:03
170,835,824
0
0
null
null
null
null
UTF-8
C++
false
false
10,474
h
//------------------------------------------------------------------------------------------------ // Copyright (c) 2012 Alessandro Bria and Giulio Iannello (University Campus Bio-Medico of Rome). // All rights reserved. //----------------------------------------------------------------------------------------------...
[ "satya.arjunan@gmail.com" ]
satya.arjunan@gmail.com
0d4a0d1b02f13ac2af3888c356ed4a2b473d460e
1311b74a48640011334f59716a76ef92bcd1f761
/collector-project/opencv-2.4.9/modules/highgui/src/window_carbon.cpp
3af71b3dcbefbe697ffff742762e3fa234697391
[ "BSD-3-Clause", "Apache-2.0" ]
permissive
rodalladea/tcc2
2e2cc5ff104b36af4d91906436e7fa1fc7ba6327
1bcf7601ace096e9965c34d373a6415cea2f01ef
refs/heads/master
2023-03-29T14:52:33.482526
2021-03-22T04:24:01
2021-03-22T04:24:01
345,749,630
0
0
null
null
null
null
UTF-8
C++
false
false
33,120
cpp
/*M/////////////////////////////////////////////////////////////////////////////////////// // // IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. // // By downloading, copying, installing or using the software you agree to this license. // If you do not agree to this license, do not download, i...
[ "rodrigoddea@gmail.com" ]
rodrigoddea@gmail.com
4d008305e1e476a8ddb03064553e883289753feb
11d2c036b3157d0d49e4e2fb5c2ee1d5de0f57e9
/SCMUlate/src/modules/registers.cpp
9bd65911c011e96ff03b3cd781442f97cb1eaf07
[ "Apache-2.0" ]
permissive
josemonsalve2/SCM
d5f2362fcb2370d04c685349a8a6bd7e46e3cb7a
0b629cee0274497402a0acf39b62df04308dd5a6
refs/heads/master
2023-08-03T23:09:09.532802
2023-07-21T16:29:29
2023-07-21T16:29:29
202,384,505
1
2
Apache-2.0
2023-07-21T16:29:30
2019-08-14T16:09:21
C++
UTF-8
C++
false
false
3,870
cpp
#include "register.hpp" #include <sstream> #include <iomanip> scm::reg_file_module::reg_file_module() { SCMULATE_INFOMSG(3, "Initializing Register file"); reg_file = new register_file_t(); // Initialize the memory that represents the register // file to zero for (int i = 0; i < REG_FILE_SIZE_KB*1000 ; ++ i) ...
[ "josem@udel.edu" ]
josem@udel.edu
9b9cdc51427a4aa41d40d9cfb5cc43de65811fc8
519a7b8a6683e46043f369d60a8410eba43f12d9
/source/mainwindow.cpp
0cfdb02089a0881afead21902d4485eeeaa3db3e
[]
no_license
FinkPan/DefineProject
3810307155b4431c12c39b408af3049952d3292e
88a3216bc28c9b88c34bd5e0d5b4f26c34441f5e
refs/heads/master
2016-08-12T23:20:45.803142
2016-03-14T09:33:22
2016-03-14T09:33:22
53,126,302
0
0
null
null
null
null
UTF-8
C++
false
false
6,009
cpp
#include <fstream> #include "mainwindow.hpp" #include "coordinate_system_model.hpp" #include "coordinate_system_item.hpp" #include "read_write_file.hpp" #include "ui_main.h" #include <QTreeView> #include <QTextEdit> #include <QScrollBar> #include <QFileDialog> #include <QMessageBox> MainWindow::MainWindow(QWidget ...
[ "hspan1234@gmail.com" ]
hspan1234@gmail.com
8987fb32752fae9d92245c5a2d5810281a07abfa
d2d31a1d8496931d81aac219904331b121d705d0
/renderdoc_vs2017/driver/ihv/amd/amd_isa_devices.cpp
98f627acb2cc9d75ad6090061834cea9cd2a6ae2
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
yangzhengxing/renderdoc_vs2017
ffac6f67ccf2b7f2fa3b63e9b926497979ffcce3
752720c788ecb18e93099db09ad27f8970bcda7f
refs/heads/master
2020-04-15T03:54:29.515386
2019-01-07T02:19:07
2019-01-07T02:19:07
164,364,831
0
0
null
null
null
null
UTF-8
C++
false
false
3,504
cpp
/****************************************************************************** * The MIT License (MIT) * * Copyright (c) 2017-2018 Baldur Karlsson * * 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...
[ "yangzhengxing@xindong.com" ]
yangzhengxing@xindong.com
00ea2f6e5a48009dff1df924157bec2f672304be
3ff1fe3888e34cd3576d91319bf0f08ca955940f
/teo/include/tencentcloud/teo/v20220901/model/DescribeDDoSAttackTopDataResponse.h
de834cdf9ae4b931859396f3a1377978d61a5390
[ "Apache-2.0" ]
permissive
TencentCloud/tencentcloud-sdk-cpp
9f5df8220eaaf72f7eaee07b2ede94f89313651f
42a76b812b81d1b52ec6a217fafc8faa135e06ca
refs/heads/master
2023-08-30T03:22:45.269556
2023-08-30T00:45:39
2023-08-30T00:45:39
188,991,963
55
37
Apache-2.0
2023-08-17T03:13:20
2019-05-28T08:56:08
C++
UTF-8
C++
false
false
3,305
h
/* * Copyright (c) 2017-2019 THL A29 Limited, a Tencent company. 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 ...
[ "tencentcloudapi@tencent.com" ]
tencentcloudapi@tencent.com
adbdb8d10519795d87f28311f08c762d610360da
3bfc29469f896c37297ae8dd407c9212cf6f3dba
/GaussianElimination/GaussianElimination/GaussianElimination.cpp
bcaeac3e144595bb55fbb4a5bfa307294fe4774f
[]
no_license
mateuszkulpa/concurrent_programming_cpp
a1382e949f72d0d5866f2844872d12512359531e
a91bf527bc34d7833c364a2345c493af62e613cb
refs/heads/master
2022-04-16T18:50:41.515036
2020-04-17T18:06:41
2020-04-17T18:06:41
256,280,489
0
0
null
null
null
null
UTF-8
C++
false
false
1,535
cpp
#include <omp.h> #include <iostream> #include <fstream> #include <vector> #include <string> #include <list> #include "csv.hpp" using namespace std; using namespace csv; auto const DELIMITER = ';'; template <typename T> vector<vector<T>> parse_csv_to_matrix(string path, char delimiter) { CSVFormat format; format.de...
[ "mateusz.kulpa@21infinity.com" ]
mateusz.kulpa@21infinity.com
b23a89e6b11cea8ff19c8058c9fe1b723b4f4c2a
9cdc4231efe815ae90025242b0ef00a46bb846f7
/SortTuple/SortTuple.cpp
8dedd7085f8b133e39cf683e952f4c72b0f3945e
[ "MIT" ]
permissive
PureAbstract/CppSandbox
4b8ef79838f6a3179b4587b3d1904cdab146d931
54f18a415616369474d2493ca33080905eb48435
refs/heads/master
2021-01-16T19:15:00.094423
2014-08-19T21:56:09
2014-08-19T21:56:09
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,011
cpp
// tuple utils taken from Jonathan Wakeley // https://gitorious.org/redistd/redistd/source/0d9c849726729e66e5703fadba0222d6df724533:include/redi/index_tuple.h#L12 // http://stackoverflow.com/questions/10604794/convert-stdtuple-to-stdarray-c11 #include <iostream> #include <tuple> #include <array> /////////////////////...
[ "jon@jbcoe.net" ]
jon@jbcoe.net
bd8616428aadcc2b67f49acd276f07dea725b0a3
b75ff9b90c293fbca31b97822389a19f67b41d9b
/Example3/Example1/Game.h
19648e98f4966846f1b9fc6236362b68361cbc20
[]
no_license
WangXin93/SFML_Example
d61bb68951a84e65683294fd537138c21305a25c
ec2321473498d462e72ce3a9554e9298003248cb
refs/heads/master
2022-08-06T11:33:22.090699
2017-05-03T13:25:19
2017-05-03T13:25:19
88,486,384
0
0
null
2022-07-29T04:28:54
2017-04-17T08:09:06
C++
UTF-8
C++
false
false
2,153
h
#pragma once #include "Window.h" #include "World.h" #include "Textbox.h" class Game{ public: Game(); ~Game(); void HandleInput(); void Update(); void Render(); Window* GetWindow(); void RestartClock(); private: void MoveMushroom(); Window m_window; sf::Texture m_mushroomTexture; sf::Sprite m_mushroom; sf:...
[ "wangxin19930411@163.com" ]
wangxin19930411@163.com
bdcaea66157912de3239b5764629e284ca589622
750c5fefad9f0b7e0472c69c47c4d7dd9b9de4fa
/zz3/Cpp/tp1/exercise2/Iterator.h
3f286b22dd8634f0a10996b659ac5401936b5df8
[]
no_license
ulricheza/Isima
94af1bdca91e4826b89a31e2f369b51a3e6c499c
1c06cbb942844818ac704dc5ad5d279a6c949b1f
refs/heads/master
2021-01-02T08:47:42.907139
2013-05-20T18:44:36
2013-05-20T18:44:36
13,802,104
1
2
null
null
null
null
UTF-8
C++
false
false
442
h
/* * File: Iterator.h * Author: maxime * * Created on 11 octobre 2011, 14:26 */ #ifndef _ITERATOR_H #define _ITERATOR_H class Iterator { public: Iterator() {} Iterator(int * target); virtual ~Iterator() {} //surcharge d'operateur Iterator & operator++(); Iterator operator ++(int); ...
[ "maxime.escourbiac@gmail.com" ]
maxime.escourbiac@gmail.com
1ce43fc2f403e8d71e50b847d5dd1a4a34ebd1da
7b7f9d378e8b5d890fe4d2758e54959c77563458
/AISTD_Lab3/My_Exception.cpp
23b2552cdfaa85dda363f6315fef2fa2a369f9db
[]
no_license
Artezz/AISTD_Lab
c306a946ad6e29e2d59fb01178876c95d3d12ccf
01f80d277eb50a9c467f8f91a09959f127e9c795
refs/heads/master
2020-04-13T00:25:12.216866
2018-12-23T13:38:03
2018-12-23T13:38:03
162,844,986
0
0
null
null
null
null
UTF-8
C++
false
false
188
cpp
#include "stdafx.h" #include "Include.h" #include "My_Exception.h" int out_of_range(char * e) { std::cout << e; return 0; } int already_exist(char * e) { std::cout << e; return 0; }
[ "vfkfgehf@gmail.com" ]
vfkfgehf@gmail.com
1509947918a27d772bd3acb15db0e8d6cb8b06c2
07d691d1ef2e39aa785a8e847fb46068296950d7
/Gra w zycie/Guarana.h
3463ad4fc35f8c8d3c9e865f19ff26f62f21fd54
[]
no_license
Luli4n/Game_Of_Life_Cpp
dab69d5204c49029da607ed678c3132f127ad304
42e4902ec9042cd0e795c9f75100ece691d02b69
refs/heads/master
2023-05-01T04:27:57.588553
2021-05-20T14:38:10
2021-05-20T14:38:10
369,233,427
0
0
null
null
null
null
UTF-8
C++
false
false
204
h
#pragma once #include "Roslina.h" class Guarana : public Roslina { public: Guarana(Swiat* _swiat, int x, int y); Organizm* Kopiuj(int x, int y) override; void kolizja(Organizm* atakujacy) override; };
[ "julekkrabel@gmail.com" ]
julekkrabel@gmail.com
076dced9fd14bd087884bdf26108b8ed5bbadb94
bde0d7bbd1a39bb250e63e64d3c7b652d6711cca
/binarySearchLowerBound.cpp
6a6aa1988558cdb049130df4dfbd558e4256fe3c
[]
no_license
pritomsaha/Algorithm-Implementation
07d23c9d68de3af09159be90cfe407ca0d4e1b6b
8166ab61d2da4758a99126dd9a3de8b1a8e45546
refs/heads/master
2021-01-19T03:09:57.846569
2016-08-07T17:59:40
2016-08-07T17:59:40
52,277,755
0
0
null
null
null
null
UTF-8
C++
false
false
346
cpp
#include<bits/stdc++.h> using namespace std; int main(){ int arr[10]; for(int i=0;i<10;i++)scanf("%d",&arr[i]); int ls=0,rs=9,key,index,mid; scanf("%d",&key); while(ls<=rs){ mid=(ls+rs)/2; if(arr[mid]>=key){ rs=mid-1; } else ls=mid+1; } printf("%...
[ "pritomsaha163@gmail.com" ]
pritomsaha163@gmail.com
6df6f26afd7b62ea3f434480eefe3cccf33a8c9a
0aea33bf1e2768895bf37a3048008489e8f7aa27
/export/windows/cpp/obj/include/openfl/_legacy/gl/GLProgram.h
db133e0ca43eec7259857b38c5907866521f3966
[]
no_license
ninjamuffin99/ProjectMountain
5f96e3713fe77ee97e081dfd2f46bba32e526cb7
63f41b0345b789b1bd2bf05cb904e66ff9d35631
refs/heads/master
2021-01-01T16:22:44.354766
2017-07-25T21:06:40
2017-07-25T21:06:40
97,814,887
0
0
null
null
null
null
UTF-8
C++
false
true
2,180
h
// Generated by Haxe 3.4.0 #ifndef INCLUDED_openfl__legacy_gl_GLProgram #define INCLUDED_openfl__legacy_gl_GLProgram #ifndef HXCPP_H #include <hxcpp.h> #endif #ifndef INCLUDED_openfl__legacy_gl_GLObject #include <openfl/_legacy/gl/GLObject.h> #endif HX_DECLARE_CLASS3(openfl,_legacy,gl,GLObject) HX_DECLARE_CLASS3(open...
[ "cameron.taylor.ninja@gmail.com" ]
cameron.taylor.ninja@gmail.com
55a7800a78cad1053ba67825040bbe8a4231ea9b
4ccc93c43061a18de9064569020eb50509e75541
/content/browser/frame_host/render_frame_host_manager_browsertest.cc
130790bec4097f0d29a9bdc6cfb84a9f78f56569
[ "LicenseRef-scancode-unknown-license-reference", "BSD-3-Clause" ]
permissive
SaschaMester/delicium
f2bdab35d51434ac6626db6d0e60ee01911797d7
b7bc83c3b107b30453998daadaeee618e417db5a
refs/heads/master
2021-01-13T02:06:38.740273
2015-07-06T00:22:53
2015-07-06T00:22:53
38,457,128
4
1
null
null
null
null
UTF-8
C++
false
false
79,374
cc
// Copyright 2013 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 <set> #include "base/command_line.h" #include "base/json/json_reader.h" #include "base/location.h" #include "base/memory/ref_counted.h" #include...
[ "g4jc@github.com" ]
g4jc@github.com
58bda264550982afaac7123792046cfd403b37d6
da94d4d5ff14da302aaa59784f4b878847473b8b
/ext/include/osgEarth/CachePolicy.cpp
f14b3efc537ce0d86ee706696c9dbbf76a733197
[ "MIT" ]
permissive
flyskyosg/dtEarth
757800481b28d7c7a0effa23c88c9f4fbd73e6e5
47b04bb272ec8781702dea46f5ee9a03d4a22196
refs/heads/master
2021-01-15T09:28:07.401671
2014-06-07T00:50:07
2014-06-07T00:50:07
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,555
cpp
/* -*-c++-*- */ /* osgEarth - Dynamic map generation toolkit for OpenSceneGraph * Copyright 2008-2013 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...
[ "jason.massey@jhuapl.edu" ]
jason.massey@jhuapl.edu
8d9755acc4bda308c1e81eb5bed57740c37e3c4a
7fb848d6b87c8bb0d64518d34d26811f986b3ff7
/src/test/pmt_tests.cpp
a57653ff65c56e81740708db374cb7a15f062895
[ "MIT" ]
permissive
bytn-team/byt
6b354f5c554211802a12ca568ceb646837a5047b
a978b71d938fceeaba3a03856d0ba91f65bbb93c
refs/heads/master
2022-11-23T06:54:24.542713
2020-07-27T08:34:03
2020-07-27T08:34:03
281,143,073
1
0
null
null
null
null
UTF-8
C++
false
false
3,763
cpp
// Copyright (c) 2012-2013 The Bitcoin Core developers // Copyright (c) 2017-2018 The PIVX developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "merkleblock.h" #include "serialize.h" #include "streams.h" #incl...
[ "admin@bytn.org" ]
admin@bytn.org
4c9405c4f0016ca9509384a8d3194786129013bb
f57610ce330076f2ba95041bbf5f295a9ef40dfe
/Solution/167-two-sum-ii-input-array-is-sorted/two-sum-ii-input-array-is-sorted.cpp
919f7b49a427e325f87ebe9a0fc8ce200aa5e0cc
[]
no_license
derek-zr/leetcode
095df86dd00c85b98a3f3ef51e784a65ab75c13d
ec7edcca6a63648d87bed6dd557738b89511368d
refs/heads/master
2021-01-21T21:07:07.114659
2020-11-27T09:29:35
2020-11-27T09:29:35
92,308,067
0
0
null
null
null
null
UTF-8
C++
false
false
1,024
cpp
// Given an array of integers that is already sorted in ascending order, find two numbers such that they add up to a specific target number. // // The function twoSum should return indices of the two numbers such that they add up to the target, where index1 must be less than index2. // // Note: // // // Your returned ...
[ "derek_zhengrui@foxmail.com" ]
derek_zhengrui@foxmail.com
117239f95854412efdcd031586d36381ebf4810c
19907e496cfaf4d59030ff06a90dc7b14db939fc
/POC/oracle_dapp/node_modules/wrtc/third_party/webrtc/include/chromium/src/chrome/browser/ui/views/website_settings/permission_selector_view.h
0f9836c5a9687ef522f0bab5dd6769f0d910876c
[ "BSD-3-Clause", "BSD-2-Clause" ]
permissive
ATMatrix/demo
c10734441f21e24b89054842871a31fec19158e4
e71a3421c75ccdeac14eafba38f31cf92d0b2354
refs/heads/master
2020-12-02T20:53:29.214857
2017-08-28T05:49:35
2017-08-28T05:49:35
96,223,899
8
4
null
2017-08-28T05:49:36
2017-07-04T13:59:26
JavaScript
UTF-8
C++
false
false
2,063
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_VIEWS_WEBSITE_SETTINGS_PERMISSION_SELECTOR_VIEW_H_ #define CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_PERMISSION_SELECTOR_VIEW...
[ "steven.jun.liu@qq.com" ]
steven.jun.liu@qq.com
a41cb0356937982f818da3d1d0a456e2a5cc8fbe
3b4d325e3881a86e38c2613668f13748bb03e90c
/trabalho_final/exceptions/ExcedeLimite.h
ae56806c8f7a33052b4ead5db834f6618d42b9c1
[]
no_license
joaovictornsv/poo
4447b82e85d26eb2bca3b31eb5c2cd82886592d8
b61114565ef584cc7140cc35bd66e8e0473f3e38
refs/heads/main
2023-08-28T01:11:39.470246
2021-10-11T15:12:25
2021-10-11T15:12:25
382,894,993
0
0
null
null
null
null
UTF-8
C++
false
false
216
h
#ifndef EXCEDE_LIMITE_H #define EXCEDE_LIMITE_H #include <stdexcept> class ExcedeLimite : public std::runtime_error { public: ExcedeLimite(const char *e="Limite da conta excedido"): runtime_error(e) {} }; #endif
[ "joaovictornsv@gmail.com" ]
joaovictornsv@gmail.com
f21f2b07a0234b0c84e33153e3535132f64e9d27
a75d0418b2143d6f59635a8833bff49bc903df5e
/DofusTypes/PaddockBuyableInformations.h
3e9a25f8a8eff698d3a25a46d6f65b75f6e7ab49
[]
no_license
Arkwell9112/dofus_bot
30b80850ba41b6a2b562705ec8aa1a6c87cfb8f8
fc1b805b70c0ed43cbc585322806ece89d057585
refs/heads/master
2023-01-16T01:08:06.710649
2020-11-23T20:53:00
2020-11-23T20:53:00
314,084,045
0
0
null
null
null
null
UTF-8
C++
false
false
429
h
#ifndef PADDOCKBUYABLEINFORMATIONS_H #define PADDOCKBUYABLEINFORMATIONS_H #include "../BotCoreAPI/BotCoreAPI.h" #include <string> #include <vector> class PaddockBuyableInformations : public DeserializeInterface { public: double price = 0; bool locked = false; void deserialize(CustomDataInput *input); pr...
[ "arkwell9112@github.com" ]
arkwell9112@github.com
d32a8f4fec34d3fd8b898fb6c7c1ac16da487871
343f6ae960e414efe7054f73c422151be058760b
/source/main.cpp
59ae4c5a533e284eb41860e0fa5867f2fcf963d8
[]
no_license
jwillette/Shahzadi2D
839da642586fe1fd0c5bde6cb194758ba6825cfb
d1e842b7a7e2b9d06f0f62c6607194fdf2ecd405
refs/heads/master
2021-01-18T18:28:35.373121
2016-07-21T22:13:06
2016-07-21T22:13:06
63,746,777
0
0
null
null
null
null
UTF-8
C++
false
false
938
cpp
#if defined(_WIN32) || (_WIN64) #include "SDL.h" #include "SDL_image.h" #include "SDL_mixer.h" #include <direct.h> #define getcwd _getcwd #endif #if defined(__APPLE__) #include "SDL2/SDL.h" #include "SDL2_image/SDL_image.h" #include "SDL2_mixer/SDL_mixer.h" #include <unistd.h> #endif #include <stdio.h> #inclu...
[ "jwillette@mymail.tstc.edu" ]
jwillette@mymail.tstc.edu
73ad9665755ebc37a3a7147ee1a69860250c9786
ea345ae0bdd6f5da6fdefb631ff5da8ff1dee4bf
/src/darknet_dist.cpp
e09453b5301c0d00d3fcaf631d85c0327d562847
[ "MIT" ]
permissive
zoranzhao/DenseIoT
ff8d38e917c78cb99ab02c2c6110d890ed4ca41f
cdb6642ff2fafb61a4f575023f76a66c45d82fc8
refs/heads/master
2021-09-18T04:47:54.410012
2018-07-09T21:52:05
2018-07-09T21:52:05
115,226,883
0
0
null
null
null
null
UTF-8
C++
false
false
3,182
cpp
#include "yolo_dist.h" int main(int argc, char **argv) { std::cout << "ACT_CLI " << atoi(argv[1]) << std::endl; std::cout << "CUR_CLI " << atoi(argv[1]) << std::endl; ACT_CLI = atoi(argv[1]); CUR_CLI = atoi(argv[1]); if(0 == strcmp(argv[2], "toggle")){ std::cout <<"toggle" << std::endl; t...
[ "zoranzhao@gmail.com" ]
zoranzhao@gmail.com
b73c13d35e3f5d7080363a89827bed8c1473400f
6b2acad97d2461a1e9260cb370f12e670473e415
/tool/Arduino/Arduino Uno/ex_switch_03/ex_switch_03.ino
b8c7e636923eca2c17e00550e2cc0ac99a7337b4
[]
no_license
Liemani/_deprecated_portfolio
342c0d4e51176168cdbc80bf15478f125b15b120
a0f91b76c7cc0072230d167d64b87da57246c135
refs/heads/main
2023-02-24T10:27:42.218565
2021-01-28T12:04:24
2021-01-28T12:04:24
null
0
0
null
null
null
null
UTF-8
C++
false
false
932
ino
//******************************************** // char* title = "ex_switch_03" // made by Lieman at 2020.06.10 // // description: // switch example //******************************************** int ledArray[] = {13, 12, 11, 10}; int switchArray[] = {9, 8, 7, 6}; bool isLedOnArray[4] = {false}; bool isSwitchOn[4]...
[ "parkjh2768@naver.com" ]
parkjh2768@naver.com
9659f6c01473a6b4f3ffbd8646cef91c3a562c9e
f7d563bd9a4be70be0ed7fe8cf43e0ed90c58c9d
/FragmentFactory.h
db9879ebb03b3280893240303b572bcaf1628868
[]
no_license
GitHubforXiaoming/FragmentsAssemblyAssitant
c7b983bb9d42bf00ffddd44f7492259c7007272a
e748c5e294c6bf30c50def02d5af05d12f6e376e
refs/heads/master
2020-04-08T22:59:52.030909
2018-12-06T10:56:36
2018-12-06T10:56:36
159,805,889
0
0
null
null
null
null
UTF-8
C++
false
false
462
h
#pragma once #include <vtkPolyData.h> #include <vtkSmartPointer.h> #include "Registration.h" using namespace std; class FragmentFactory { private: Registration registration; vector<vtkSmartPointer<vtkPolyData>> fragments; vector<vector<vtkSmartPointer<vtkPolyData>>> fracturess; public: FragmentFactory(); ~Fra...
[ "amazedwang@163.com" ]
amazedwang@163.com
03dae1bbcacf011a084af604124bcbd58122d658
ce8dd6160c0551b66314d2412b174f45217c6eff
/include/modules/display.hpp
5d43e4c93aca427cc4562ddf0e863fdcad69c051
[]
no_license
jonmorehouse/opengl-heightfield
5984bb99fc64d9560df58272c18fd35d8fa84e0d
cfd38a3e397b9a873e61300ac46fc307b3f5583c
refs/heads/master
2021-01-20T00:58:41.959768
2013-02-25T13:17:59
2013-02-25T13:17:59
8,139,669
1
0
null
null
null
null
UTF-8
C++
false
false
1,168
hpp
#ifndef DISPLAY_HPP #define DISPLAY_HPP // require project libraries #include "classes/height_field.hpp" // require the proper libraries #include <stdlib.h> #include <OpenGL/gl.h> #include <OpenGL/glu.h> #include <GLUT/glut.h> // require our global persistent heightfield object extern HeightField * heightField;//ima...
[ "morehousej09@gmail.com" ]
morehousej09@gmail.com
ba55ea132185742a45e6b3b6351b17ce89bba869
33d04c5495058782a4cb2ecbc927fd9f1e9f8c45
/linear_recurrence.cpp
49e13fda656eef10c26833494b77bae6e92df069
[]
no_license
Prinkesh/Codes
cb03904af9cef7ce16781ba1334eef709bc48e7a
d56def89d67972997e8fa4d330bb2abd520e9df5
refs/heads/master
2016-09-10T20:09:43.564626
2014-12-21T19:32:53
2014-12-21T19:32:53
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,610
cpp
#include <vector> #include<iostream> #include<stdio.h> #define LOOP(i,n) for (int i = 1; i <= n; i++) using namespace std; typedef long long ll; typedef vector<vector<ll> > matrix; const ll MOD = 10000007; const int K = 5; //here k = 5 , (k+1 X k+1) matrix is taken just for simplicity // computes A * B matrix mul(matr...
[ "prinkesh.sharma1991@gmail.com" ]
prinkesh.sharma1991@gmail.com
755a16cbab8a77c27396d9a2047b2abe14d0a1c5
bf63af95259aaa679919f2d6c7687479ce6b3bab
/notebook/leetcode/array/189.rotate-array.cpp
163a837650aef97b8e3aeae2791226e5f01c84d6
[]
no_license
AIdrifter/note_shell
8bab9129839c287c19fca272df6392bd8918e852
1f19f64a9227e5ccff3f8060fb61409009b8f334
refs/heads/master
2022-01-18T09:48:54.590652
2022-01-05T06:37:33
2022-01-05T06:38:22
102,166,810
2
0
null
null
null
null
UTF-8
C++
false
false
2,388
cpp
/* * @lc app=leetcode id=189 lang=cpp * * [189] Rotate Array * * https://leetcode.com/problems/rotate-array/description/ * * algorithms * Easy (28.42%) * Total Accepted: 254.3K * Total Submissions: 894.9K * Testcase Example: '[1,2,3,4,5,6,7]\n3' * * Given an array, rotate the array to the right by k st...
[ "aidrifter@gmail.com" ]
aidrifter@gmail.com
c42029d41dce1581d1a4d674b5338b13e2c26d71
3f5b823e3789e09418eb0c0b016d515a009247bc
/OldTagDefinitions/halo2vista/groups/mcsr_tag.h
f36af3180962960a036ffafd38e68ab1d4ebdcbe
[]
no_license
hangrydave/HaloMapFileParser
771d47a85c5d3c9f2be3f3e394b50561fd578d6f
01fc621a84308976b53d1df155878e8ed9a14dc2
refs/heads/master
2023-03-10T17:45:11.581897
2021-02-28T03:36:23
2021-02-28T03:36:23
326,285,300
6
0
null
null
null
null
UTF-8
C++
false
false
252
h
#include "../../pch.h" #pragma once #include "../structures.h" namespace mcsr_tag { struct mouse_cursor_bitmaps_block { s_tag_reference bitmap; }; struct group { s_tag_block mouse_cursor_bitmaps_block; float animation_speed__fps_; }; }
[ "david.reidsma@gmail.com" ]
david.reidsma@gmail.com
31fa4b9340662d311e8fcaca321061cac83f273f
ace20ae898aadf18c4ef8a2355b528422fc27bb5
/codeforces/405D.cpp
7fb62903921c433065efab95f6a48e23e29605be
[]
no_license
pidddgy/competitive-programming
19fd79e7888789c68bf93afa3e63812587cbb0fe
ec86287a0a70f7f43a13cbe26f5aa9c5b02f66cc
refs/heads/master
2022-01-28T07:01:07.376581
2022-01-17T21:37:06
2022-01-17T21:37:06
139,354,420
0
3
null
2021-04-06T16:56:29
2018-07-01T19:03:53
C++
UTF-8
C++
false
false
1,663
cpp
// https://codeforces.com/contest/405/problem/D #include <bits/stdc++.h> using namespace std; #define cerr if(false) cerr #define watch(x) cerr << (#x) << " is " << (x) << endl; #define endl '\n' #define ld long double #define int long long #define pii pair<int, int> #define fi first #define se second #define sz(a) (i...
[ "marcus.jn.chong@gmail.com" ]
marcus.jn.chong@gmail.com
c3e0b01166cb8a596e6dca5332067b5fc30e9341
8b729da081b4387336dad39cf5c7b1707e608d03
/Dist_obuch_stud.cpp
8c90d8eaa4aee3e38359319e8d7a8ecb414eb456
[]
no_license
w1nker123/Dist_obuch_stud
95c6d8af058d08955035166513bd1dd437b2813e
8290f0a135b0e0c27c70caeea7b745e63f3077f0
refs/heads/master
2022-12-17T04:21:16.029460
2020-09-22T18:16:37
2020-09-22T18:16:37
297,723,676
0
0
null
null
null
null
UTF-8
C++
false
false
1,630
cpp
// Dist_obuch_stud.cpp : Этот файл содержит функцию "main". Здесь начинается и заканчивается выполнение программы. // #include <iostream> int main() { std::cout << "Hello World!\n"; } // Запуск программы: CTRL+F5 или меню "Отладка" > "Запуск без отладки" // Отладка программы: F5 или меню "Отладка" > "Запустить ...
[ "alex.kalyadin@gmail.com" ]
alex.kalyadin@gmail.com
d243f96ecec84cdd7169c401a3e747cde45e3527
2176cc460eaa1c4a60c7c7d648f89f5ba48a45c8
/src/network/Packet.cpp
bcfd69758f53222c6ad81be3ba9056e5d9ff4cf1
[]
no_license
NeatMonster/Proxy
e23b2ee3eaf0585d763c8efd7349fac45dd4f759
63b478232918e60f59e25be9c05aa5757ae2c9e5
refs/heads/master
2021-01-18T15:34:26.871653
2015-01-18T19:23:23
2015-01-18T19:23:23
27,389,962
0
0
null
null
null
null
UTF-8
C++
false
false
604
cpp
#include "Packet.h" Packet::Packet(varint_t packetId) : Packet::Packet(packetId, packetId) {} Packet::Packet(varint_t clientPacketId, varint_t serverPacketId) : clientPacketId(clientPacketId), serverPacketId(serverPacketId) {} Packet::~Packet() {} varint_t Packet::getClientPacketId() { return clientPacketId...
[ "neatmonster@hotmail.fr" ]
neatmonster@hotmail.fr
02118cf9ae55944f71cd08252c12b2d2d3da0cf2
ad8063e4baa430a0fd31fe148cd7863a1b33d6a7
/Games_Programming/Particle_Effect/Source.cpp
d709d414f040643f41ac5939a1988cc82620c602
[]
no_license
ctimpany/Games-Programming
2e27c6be957d7391432da4558cb36e4f96d97dc9
3b1c64e03c34945edd129bcdfe6aee0df4efb93f
refs/heads/master
2021-01-11T16:24:19.956586
2017-03-14T14:50:58
2017-03-14T14:50:58
80,076,372
0
0
null
null
null
null
UTF-8
C++
false
false
6,339
cpp
// Simplified Renderer application for GP course // Code is similar to the one in lab 1 but all the graphics sections were refactored into the Graphics Class. // Extra improvements: // Reduced OpenGL version from 4.5 to 3.3 to allow it to render in older laptops. // Added Shapes library for rendering cubes, spheres and...
[ "ctimpany@gmail.com" ]
ctimpany@gmail.com
237a0e1271e598d442ee382c4b6c79257be25b0a
87096706c735f8f9d6081206cebbca2146f0f868
/tftpClient/tftpdatagram.cpp
61c9bf3c28cc29169a2923dc720da6c45a92ffe0
[]
no_license
safiyat/tftpclient
052de619f6b1e21ec684bd62142b4d8315c3dfc8
fd077eb482e292eafa15525afbd5921bf0a52810
refs/heads/master
2021-05-01T02:48:49.639842
2019-02-07T12:59:31
2019-02-07T12:59:31
61,622,115
0
0
null
null
null
null
UTF-8
C++
false
false
6,057
cpp
#include "tftpdatagram.h" quint16 tftpDatagram::getErrorNumber() { errorNumber = this->readBlockNumberFromDatagram(); return errorNumber; } QByteArray tftpDatagram::getErrorMessage() { errorMessage = this->readDataFromDatagram(); return errorMessage; } void tftpDatagram::addOpcodeToDatagram(quint16 ...
[ "md.reza@snapdeal.com" ]
md.reza@snapdeal.com
7bd796215c08e98fb558aec735fb52529ffc0c7d
056db1ab6f88ab62a610894e92f600ef1c5f767c
/mainwindow.cpp
e0beea02b424ceaa719c2a128c4175251907aa46
[ "BSD-3-Clause" ]
permissive
grevyarlesp/DeliverySim
2872fd5e00dd9650f84fe1eb8ada296f943c135a
5e0d3ca8184c2f2ebd8c9743a5507418ad7bff08
refs/heads/master
2023-04-19T14:48:27.540198
2021-05-10T16:26:36
2021-05-10T16:26:36
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,360
cpp
#include "mainwindow.h" #include "ui_mainwindow.h" /* TODO: Create a new class, ButtonHandler to handle button clicks */ /* TODO: Create a new class, ActionHandler to handle action */ MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent) { buttonHandler = new ButtonHandler; QWidget* widget = new Q...
[ "tr4nquoc@gmail.com" ]
tr4nquoc@gmail.com
62fe146dde082bcaf897770e7449ab9e9658b3b1
3e6f96fda86b3d70dec2dfe953d91627e274261c
/WMI_Example/WMIBase/AsynNotifyQuery.h
58aac6254db428c91081234d5fc7466fa38304fb
[]
no_license
fanslater/CPP
b4bb8b15d788dae20c5ebcc3e76e1d04a5dd7ee8
6057cd0c4a15af4a6021221b442dd35ff301ed09
refs/heads/master
2021-04-18T18:53:20.111516
2020-06-05T12:20:53
2020-06-05T12:20:53
126,440,133
2
0
null
null
null
null
UTF-8
C++
false
false
404
h
#pragma once #include "WMIBase/WMIExtern.h" #include <string> using namespace std; template<typename T> class CAsynNotifyQuery : public CWMI { public: CAsynNotifyQuery(const wstring& wszNamespace, const wstring& wszWQLQuery, HANDLE hExitEvent); ~CAsynNotifyQuery(void); private: HRESULT Excute(CComPtr<IWbem...
[ "664604145@qq.com" ]
664604145@qq.com
c432ca071f0ea867e354b035934fcb783863750f
f61c0a0c6d6704cb3845f2770b27dc5340290ae3
/RSRECIPE.cpp
5a2d916de94890fd6dcdca385e8dbededc1736a0
[]
no_license
Shubham28/CodeChef
afe6044f26d5713025ad633fabdb6415986e1c54
0a8c52c2167fbff15a4cd252121a417cf840a38d
refs/heads/master
2021-01-02T22:58:06.897215
2013-09-06T06:17:27
2013-09-06T06:17:27
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,579
cpp
#include <list> #include <queue> #include <algorithm> #include <iostream> #include <cmath> #include <cstdlib> #include <cstring> #define FOR(A,B,C) for(int A=B;A<C;A++) #define EFOR(A,B,C) for(int A=B;A<=C;A++) #define RFOR(A,B,C) for(int A=B;A>=C;A--) #define MEM(A,B) memset(A,B,sizeof(A)) #define PB(A,B) A.push_back...
[ "shubham.gup@directi.com" ]
shubham.gup@directi.com
6a4d23948928c0bc775d2a8f736a9869ae4c1dcb
4e2366fd2ca349900ceef6c730109808bb598a35
/src/AssimpLoader.cpp
b8bd0c4ba2d2204df0727e2a2ac1e3134427469b
[ "MIT" ]
permissive
rkblake/ModelViewer
a1ec0f4b0a01e3ac23f7003233fcd6b92663bcfc
ee39d6bc87b4605662ad9bdd0c78472602d47f7b
refs/heads/master
2021-08-19T10:17:17.061951
2017-11-25T20:53:32
2017-11-25T20:53:32
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,973
cpp
#include "AssimpLoader.h" //using namespace Assimp; bool AssimpLoadFile( const char* filename, std::vector<glm::vec3>& vertices, //std::vector<glm::vec2>& uvs, std::vector<glm::vec3>& normals, std::vector<unsigned short>& indices ) { printf("Loading file: %s ... ", file...
[ "rkb.kirby@gmail.com" ]
rkb.kirby@gmail.com
67376effb9fbca93c316c9a2b23a615a10eef007
1854667e41610358399e95fc326e0d308f79f9df
/GameApi/include/GameApi/Version.h
378b29bed0d80d3dd232abf56a955db52cd9da01
[]
no_license
1aam2am1/RTS_GAME
c84e8a102635bdccbd91bc3b23b6b5663b162151
d8df7df5949738f248d948ff49dd9703b726d9fd
refs/heads/master
2023-03-24T06:38:55.735177
2021-03-26T13:59:07
2021-03-26T13:59:07
296,715,523
0
0
null
null
null
null
UTF-8
C++
false
false
410
h
// // Created by Michal_Marszalek on 06.08.2020. // #ifndef RTS_GAME_VERSION_H #define RTS_GAME_VERSION_H #include <string_view> namespace GameApi { class Version { public: static const std::string_view GIT_DIRTY; static const std::string_view GIT_SHA; static const std::string_view G...
[ "1aam2am1@gmail.com" ]
1aam2am1@gmail.com
f29a5fef32ee7542f6e1194d737ed414ef4957aa
c44ab4e24439c2e8bc38f4470441cc612ac8739d
/src/cublas/cublas_sgemm.cpp
70c3a2e5c942e7b8e48140733275f734159b65b8
[]
no_license
cwpearson/heteroprof
79f2c87bd684bc855b7fecfd43963e8d71527ff4
8af3c56cc16f71519634250e5c1d54a0b963b176
refs/heads/master
2021-04-15T19:09:27.205296
2018-04-03T20:18:36
2018-04-03T20:18:36
126,470,246
2
0
null
null
null
null
UTF-8
C++
false
false
1,254
cpp
#include "cublas/cublas_sgemm.hpp" namespace cublas { using json = nlohmann::json; CublasSgemm::CublasSgemm(const Api &api, cublasHandle_t handle, cublasOperation_t transa, cublasOperation_t transb, int m, int n, int k, const float *alpha, /* host or device pointer...
[ "dominic.c.grande@gmail.com" ]
dominic.c.grande@gmail.com
3cd6a9d541ffa66cbcddda5e85731f6073ed6a18
11fe2cb572ce0802a31b975b89ef3db2abcd34d4
/DudTool/CMyCheckBox.h
89cf4fddd8aa82117773725ad4477737505e3f94
[]
no_license
bingzhe123/MFC-Client-and-server
0a0dd4ac27ca9e2947e86b67380588c81cc7baf9
413d9c09bc7346707d0a9f2b82959f0a660a8afa
refs/heads/master
2023-07-25T05:15:56.549408
2021-09-09T12:52:42
2021-09-09T12:52:42
403,662,930
0
0
null
null
null
null
IBM852
C++
false
false
813
h
#pragma once #include "CMyWindow.h" using CheckChangedFunc = std::function<void(CMyWindow*)>; class CMyCheckBox : public CMyWindow { public: CMyCheckBox(CMyWindow* pParent, CWnd* pRootWnd, RefreshImplFunc fun); virtual ~CMyCheckBox(); void SetText(const CString& sText); //check,uncheckÁ─═╝ĂČ v...
[ "chenbingzhe2006@126.com" ]
chenbingzhe2006@126.com
cf97ecf8fd80a63db797d66336b0367cadbeffdf
e3e3bf2a8cb16c8e87139237a7f03aa6807f7f2c
/heart/src/tissue/AbstractCardiacTissue.hpp
c765f85524f52ea6b845f79947565615d046a7f9
[ "BSD-3-Clause" ]
permissive
uofs-simlab/ChasteOS
f67b67f246befbc38edc3dc93b5e55a7bbf1fcfc
04d98998e2ebad3f29086b8eaa1d89c08c6fccf6
refs/heads/master
2021-05-07T04:10:38.591384
2017-11-20T15:48:06
2017-11-20T15:48:06
111,127,403
1
0
null
null
null
null
UTF-8
C++
false
false
29,912
hpp
/* Copyright (c) 2005-2016, University of Oxford. All rights reserved. University of Oxford means the Chancellor, Masters and Scholars of the University of Oxford, having an administrative office at Wellington Square, Oxford OX1 2JD, UK. This file is part of Chaste. Redistribution and use in source and binary forms...
[ "jessicacervi@simlab06.usask.ca" ]
jessicacervi@simlab06.usask.ca
21625703bebd7ccf2ee0f925102c94cc6e61e79e
8917a56b2bce8401017b985b11994e13d84ad678
/Standard Template Library/vector(set_1).cpp
219d42ee00230eede7002c0a0a853fef717169ab
[]
no_license
abhishekchandra2522k/CPPrograms
8c67450636a717f3a2cd4a4f109baac24d1ff4db
e08238a0d3b0811eed7a6fe3326c316f69cf7294
refs/heads/master
2023-03-17T08:12:29.629607
2023-03-15T14:48:28
2023-03-15T14:48:28
251,682,419
24
11
null
2023-03-15T14:48:30
2020-03-31T17:38:43
C++
UTF-8
C++
false
false
1,811
cpp
#include<bits/stdc++.h> using namespace std; void add_to_vector(vector<int> &A, int x); void sort_vector_asc(vector<int> &A); void reverse_vector(vector<int> &A); int size_of_vector(vector<int> &A); void sort_vector_desc(vector<int> &A); void print_vector(vector<int> &A); int main(){ int t; cin>>t; ...
[ "1ac23456789@gmail.com" ]
1ac23456789@gmail.com
9eeb01dc9063d4cee4501da30096c2c2eced25bf
e0d3ef30dca41bdc92602c0b3edb661e4c3885e2
/src/main.cc
88fbe22e1df9d6ab32104c2ba932c6314e7beea0
[ "MIT" ]
permissive
samkrew/node-mbus
cf22d54ff0c9e46d6ba96c0098c780d261d15e88
a15a9e006c14ef2d8b818030bf1feabb86e54f66
refs/heads/master
2021-06-02T20:35:15.512456
2018-03-15T08:23:47
2018-03-15T08:23:47
30,807,314
5
1
null
null
null
null
UTF-8
C++
false
false
177
cc
#include <nan.h> #include "mbus-master.h" using namespace v8; void init(Handle<Object> exports, Handle<Object> module) { MbusMaster::Init(module); } NODE_MODULE(mbus, init)
[ "samkrew@yahoo.com" ]
samkrew@yahoo.com
586ceab2b77149d872ecc9ea94726a4ce294fdd0
701c4f1dabee67e6312bacbe3b75543623bfc61a
/Init3D/FBXImporter.h
205b623733d62477cb80814c2165e1033586db20
[]
no_license
AmgadHassanNabil/Init3D
b05c3a91d979eb8f1d9b6dd8e644c5902c958502
62c5d2c6e7df907b88d1d3eaa5cdeff6eae1eb69
refs/heads/master
2022-04-14T11:00:32.653365
2020-04-09T12:33:09
2020-04-09T12:33:09
115,936,817
0
0
null
null
null
null
UTF-8
C++
false
false
1,409
h
#pragma once //#include"Headers.h" #include <windows.h> #include <fbxsdk.h> #include <vector> #include <DirectXMath.h> #include <d3d11.h> #include "WICTextureLoader.h" #include "Vertices.h" using namespace DirectX; class FBXImporter { FbxManager* g_pFbxSdkManager; static FBXImporter* instance; inline HRESULT load...
[ "ahntawfik@hotmail.com" ]
ahntawfik@hotmail.com
3e0effa5f2b8d72ef7ce9f6d7598ae56365652fa
ab1daad0388bf32db30141efcd4ac3c8e5abe808
/IndexAGS/CoreUtils.hpp
006efe6cee2f3d357c0577a22d467fff8e81820d
[]
no_license
sovrasov/optimizer-ui
ba6dc5a80c582402b0ac33c31a62df81f9c767d9
aefc6200ba978623a27669fa98fa285c8057ce1e
refs/heads/master
2023-05-28T04:35:14.215744
2021-06-15T19:39:05
2021-06-15T19:39:05
324,135,532
0
2
null
null
null
null
UTF-8
C++
false
false
1,452
hpp
#ifndef CoreUtils_HPP #define CoreUtils_HPP #include "OptimizerCoreGlobal.hpp" namespace optimizercore{ namespace utils { template<typename T> struct array_deleter { void operator()(T const * p) { delete[] p; } }; template<typename T> T** AllocateMatrix(size_t rowsNumber, size_t columnsNumber) ...
[ "sovrasov.vlad@gmail.com" ]
sovrasov.vlad@gmail.com
f0ef17dd69735d1a47aa11d3b55e77fce6b412c3
601895ece9ef7f98f81a35096d5c28516d47f352
/CS301 - Data Structures/src/L03_LinkedList/c.cpp
590307b35c7dd27fe480fb4a4d744c6897ccb9de
[]
no_license
asifashraf/vu
5992be9c7efced291aea3df4afa2a3016b6e7443
a161b22d9ab9390530d23e1bede0fc64ea3640f4
refs/heads/master
2020-12-24T12:01:00.898267
2016-11-24T07:49:37
2016-11-24T07:49:37
73,102,466
0
0
null
null
null
null
UTF-8
C++
false
false
386
cpp
#include <stdio.h> #include <tchar.h> #include <iostream> #include <string> using namespace std; class c { public: void _pint(string msg, int * value) { cout << msg << ": " << value << endl; } void _int(string msg, int value) { cout << msg << ": " << value << endl; } void _string(string msg, string va...
[ "asif.log@gmail.com" ]
asif.log@gmail.com
9a648d1beaf12fdb66237e4689f90689497d1807
c2b6bd54bef3c30e53c846e9cf57f1e44f8410df
/Temp/il2cppOutput/il2cppOutput/mscorlib_System_Collections_Generic_List_1_gen1612828711.h
e0de4c660242098d60ccbda652820fd0c34bfd72
[]
no_license
PriyeshWani/CrashReproduce-5.4p1
549a1f75c848bf9513b2f966f2f500ee6c75ba42
03dd84f7f990317fb9026cbcc3873bc110b1051e
refs/heads/master
2021-01-11T12:04:21.140491
2017-01-24T14:01:29
2017-01-24T14:01:29
79,388,416
0
0
null
null
null
null
UTF-8
C++
false
false
2,564
h
#pragma once #include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> #include "mscorlib_System_Object2689449295.h" // UnityEngine.Vector2[] struct Vector2U5BU5D_t686124026; #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignor...
[ "priyeshwani@gmail.com" ]
priyeshwani@gmail.com
99a9d4d4405a68c9ac2f18c6db2238ce6f26cc38
5d7fb9bfa19e589f8e76dac01c56af0d4133fa95
/Week 6/Knapsack/knapsack_w_repetitions.cpp
89f7e25de2803eb2fc3dfa9278506536302979f4
[]
no_license
jomorales1/Algorithmic-Toolbox-Course
9366285d85001d306c9faae9cf9ee08a39454cdc
048425c6154e58957c796fcc7d43ae820a44f1d5
refs/heads/master
2022-12-08T17:44:43.740307
2020-08-29T22:22:04
2020-08-29T22:22:04
281,809,780
0
0
null
null
null
null
UTF-8
C++
false
false
1,424
cpp
#include <bits/stdc++.h> using namespace std; const int s = (int) 1e3; int dp[s + 1]; int knapsack(vector<int> &weights, vector<int> &prices, int W) { int n = weights.size(); vector<int> value(W + 1); value[0] = 0; for (int w = 1; w <= W; w++) { value[w] = 0; for (int i = 0; i < n; i+...
[ "manriquem1901@gmail.com" ]
manriquem1901@gmail.com
31bc105d8b28c161e3397a470a6cf56197d3f272
465f89cd51cd1c0782d0ea61adbb1ec0141579b2
/be/src/util/hdfs-bulk-ops.cc
7ff7461bf82f5c1fe1294a258ee291eaa523947b
[]
no_license
cybernetics/Impala
d30694ef45a5ec8eb95c798f9bfeabc24955f7a4
dcc33c2d7e79710a5aa9eee52f49abc7818fabc9
refs/heads/master
2020-12-13T21:46:43.972868
2014-01-28T21:30:02
2014-01-29T01:13:47
16,341,873
1
0
null
null
null
null
UTF-8
C++
false
false
4,154
cc
// Copyright 2012 Cloudera Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in wr...
[ "henry@cloudera.com" ]
henry@cloudera.com
9f3bd257472c548dc90513cb4ad2030a050da27d
9cf517c96b79507aa114d891eea8674a5276af96
/SmashEngine/StandardMemoryPool.h
5d1204ba50f81589a84991733a067ce97ecc6236
[]
no_license
anshul-soni/Smash-Engine
0cd047743d12f30b043927f410ec389e466afcb1
5bf833c5950dd5ce01ffb3c74a11814f831f692a
refs/heads/master
2023-08-13T19:50:25.964410
2023-07-20T03:04:39
2023-07-20T03:04:39
49,988,042
1
0
null
2019-04-14T03:47:40
2016-01-19T22:36:44
C++
UTF-8
C++
false
false
806
h
#pragma once #include "MemoryPool.h" namespace SmashEngine { class StandardMemoryPool :public MemoryPool { public: StandardMemoryPool(unsigned int size, bool boundCheck); ~StandardMemoryPool(); void* Allocate(unsigned int size); void Free(void* ptr); private: unsigned char* m_poolMemory; stat...
[ "soni.anshul93@gmail.com" ]
soni.anshul93@gmail.com
ab0e5c871e7ae94cdbf1fe29743c81b0d2f4816c
cf6ae38d4adf41e3eb219b8ac477aa7ca7c7d18a
/libs/geometry/test_extensions/algorithms/midpoints.cpp
ebed64036356d9509b9fababd59153309209ffd7
[]
no_license
ryppl/boost-history
a560df2bc79ffc7640f09d258599891dbbb8f6d0
934c80ff671f3afeb72b38d5fdf4396acc2dc58c
HEAD
2016-09-07T08:08:33.930543
2011-07-10T13:15:08
2011-07-10T13:15:08
3,539,914
1
0
null
null
null
null
UTF-8
C++
false
false
1,687
cpp
// Boost.Geometry (aka GGL, Generic Geometry Library) // Unit Test // Copyright (c) 2007-2011 Barend Gehrels, Amsterdam, the Netherlands. // Copyright (c) 2008-2011 Bruno Lalande, Paris, France. // Copyright (c) 2009-2011 Mateusz Loskot, London, UK. // Parts of Boost.Geometry are redesigned from Geodan's Geographic L...
[ "barend@xs4all.nl" ]
barend@xs4all.nl
3afd157e151c82b478156bafe9d51e9419778c6b
99bb371278431b0f90c9266fe626d250503682c1
/pgr_calibration/src/quatTest.cpp
9a3d95507d80b491b330966b578de6e51a00440e
[]
no_license
yanzhang9202/Dukerama-Brain5
9a8562420ef27733c081661229fd361fd2826e26
4b9bde0f2d05d4003839ca2afeeb3567e4e72b76
refs/heads/master
2021-01-20T04:09:05.060416
2017-04-27T23:07:47
2017-04-27T23:07:47
89,647,286
0
0
null
null
null
null
UTF-8
C++
false
false
1,649
cpp
#include "iostream" #include "ros/ros.h" #include "std_msgs/String.h" #include <geometry_msgs/TransformStamped.h> #include <Eigen/Dense> #include "fstream" std::ofstream outfile("/home/dukerama/catkin_ws/src/pgr_calibration/include/positions/Quats.txt"); void waitFor(unsigned int secs){ unsigned int retTime; ...
[ "alexzzhu@gmail.com" ]
alexzzhu@gmail.com
b1c05f4b9ade2450f02f16ceb866ebf29312f0fa
7cdbc807145f1bd8919300fac3b186a10ebc8fe2
/Part3/operators.hpp
0737b437dca987b8eaad6a807032316b8c6df46b
[]
no_license
EmilyShepherd/Template-Metaprogramming
6fb2b6b7829ae6e88fabeec04d927251312f9750
5d74673c0fd5d845bab572135feea78a7c24e5ef
refs/heads/master
2020-05-20T11:42:16.856383
2016-05-03T21:15:35
2016-05-03T21:32:39
58,002,330
0
0
null
null
null
null
UTF-8
C++
false
false
1,866
hpp
/** * operators.h * * @author Emily Shepherd <ams2g11@ecs.soton.ac.uk> */ #ifndef OPERATORS_H #define OPERATORS_H /** * Variable Bounds */ template<int LOW, int HIGH> struct BOUNDS { enum { LOWER = LOW }; enum { HIGHER = HIGH }; static inline void check(int x) { if (x < LOW || x > HIGH...
[ "emily@emilyshepherd.me" ]
emily@emilyshepherd.me
7e12460a830099a0ad8cc5a09925a3c3c0b54ee2
ccd0591510544cb85b4ad0443683aa0a1b7d2c7e
/src/drivers/mouse.cpp
6f9b19205dc744583c6d20933d3d2d69b0d45ea2
[]
no_license
ljwwwiop/my_operator_system
e452da18c7ae22461c260174f1909900c2d4d4ec
ecc95de6782ff3346dbf0820e60fc16da8ba45af
refs/heads/master
2023-07-10T07:40:51.424235
2021-08-19T08:55:49
2021-08-19T08:55:49
397,868,332
1
0
null
null
null
null
UTF-8
C++
false
false
2,103
cpp
#include "drivers/mouse.h" using namespace myos::common; using namespace myos::drivers; using namespace myos::hardwarecommunication; void printf(const char*); MouseEventHandler::MouseEventHandler() { } void MouseEventHandler::OnActivate(){ } void MouseEventHandler::OnMouseDown(uint8_t button){ } void MouseEven...
[ "1206957838@qq.com" ]
1206957838@qq.com
4847dcbc0ab94fefab02fd9290a8546aad0bb41e
10a9042a56f6777891d01b5ffb9d0b3d91b4955b
/prjHotel/prjHotel/elementfacturable.h
fdeda8e52919b1fceebdead6606fc7f85bfacbd1
[]
no_license
oualidGit/HotelRepo
303e8f28c93b05157e037311ebabeb90e778a965
0f144f115dd1cbf17dfd8f49aebb05a90912c3ed
refs/heads/master
2022-06-18T03:24:48.690594
2020-05-04T05:25:35
2020-05-04T05:25:35
261,085,211
0
0
null
null
null
null
UTF-8
C++
false
false
826
h
#pragma once #ifndef __ELEMENTFACTURABLE_H__ #define __ELEMENTFACTURABLE_H__ #include <string> using namespace std; class ElementFacturable{ protected: string nom; float prix_base; int ordre_imp; const int TAXE_VENTE = 8; public: ElementFacturable(string le_nom, float le_prix_base, int ordre_imp) : nom(le_...
[ "t.oualid@gmail.com" ]
t.oualid@gmail.com
9736e6c8abc0177a6defb10a17d9d7fe78b3f58a
016b37016815fb49ee49e3e81b855c9245afa9f7
/H1/temp/h1.cpp~
1da1b397550b25075ece37b5c87ae19522ae130b
[]
no_license
aashishthite/AlgorithmsCourse
cf3f3709e191c9ef34e7ffeb8dc0d6a216f8c04c
69489534f7f56e20c1e8c5a60cb9fed222f42a4e
refs/heads/master
2021-01-22T01:28:18.155068
2013-11-30T08:01:33
2013-11-30T08:01:33
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,125
#include<iostream> #include<cstdio> #include<algorithm> using namespace std; #define M 500005 unsigned long long w; int num[M],snum[M]; void Merge(int low,int mid,int high); void MergeSort(int low,int high); int main() { int n,i; //freopen("in.txt","r",stdin); while(scanf("%d",&n)&&n) { for(i...
[ "aashish.thite4189@gmail.com" ]
aashish.thite4189@gmail.com
9461eb4d7b089deb79e4e0cfb4a4f0e3d3fa284b
e7d7377b40fc431ef2cf8dfa259a611f6acc2c67
/SampleDump/Cpp/SDK/BP_claymore_AncestralHandle_functions.cpp
43a9831d750b77cbcb7c641159fb338de45ce350
[]
no_license
liner0211/uSDK_Generator
ac90211e005c5f744e4f718cd5c8118aab3f8a18
9ef122944349d2bad7c0abe5b183534f5b189bd7
refs/heads/main
2023-09-02T16:37:22.932365
2021-10-31T17:38:03
2021-10-31T17:38:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,602
cpp
// Name: Mordhau, Version: Patch23 #include "../pch.h" /*!!DEFINE!!*/ /*!!HELPER_DEF!!*/ /*!!HELPER_INC!!*/ #ifdef _MSC_VER #pragma pack(push, 0x01) #endif namespace CG { //--------------------------------------------------------------------------- // Functions //------------------------------------------------...
[ "talon_hq@outlook.com" ]
talon_hq@outlook.com
c6b8ef165a6b35bb69ce1cf246cdd5b8f0031097
47fbfe31213630e11bc2075bf4a4ed1c729e6012
/src/zk/server/configuration_tests.cpp
8140649ade71cb652d57aef6d96b6bff83b430d5
[ "LicenseRef-scancode-warranty-disclaimer", "Apache-2.0" ]
permissive
tgockel/zookeeper-cpp
50a5c8cb5b65c72d37f51f2fc03859dbd1189a88
425dfe0a5f509b9f8d3165d74d1022406c3967d2
refs/heads/master
2022-12-28T08:05:54.774966
2021-12-01T22:22:04
2021-12-01T22:22:04
99,856,824
160
45
Apache-2.0
2022-12-09T16:49:51
2017-08-09T22:09:37
C++
UTF-8
C++
false
false
3,036
cpp
#include <zk/string_view.hpp> #include <zk/tests/test.hpp> #include <iostream> #include <sstream> #include "configuration.hpp" namespace zk::server { static string_view configuration_source_file_example = R"(# http://hadoop.apache.org/zookeeper/docs/current/zookeeperAdmin.html tickTime=2500 initLimit=10 syncLimit=...
[ "travis@gockelhut.com" ]
travis@gockelhut.com
575a729ef272b9ec770e0d309b3ebff5a9b76ec0
ff76e8825146602a9b95e1dfe48766461208b68c
/DatabaseBackend/PagedDiskFile.cpp
a4ee2da86d7b1700cc708a11b99ebfc5776d3dd0
[]
no_license
martin427/nthu_dbms2016
40cbbdf5fc7c2f15258a1bc651bad6c02db9d645
b973fad9bac9c89015a5768d1b350fcdb9d20109
refs/heads/master
2021-01-12T22:30:43.360754
2016-03-06T04:55:53
2016-03-06T04:55:53
null
0
0
null
null
null
null
UTF-8
C++
false
false
29
cpp
#include "PagedDiskFile.h"
[ "williamd4112@hotmail.com" ]
williamd4112@hotmail.com
10ee96f2e2060857d0763fd18b6f7526bf83659f
e1071cd8065ed01b8bc42f5f47f964837ec723b8
/src/ripple/protocol/tests/STObject.test.cpp
688637fdc256f902ea4b9926d89066207024952b
[ "MIT-Wu", "MIT", "ISC", "BSL-1.0" ]
permissive
SAN-CHAIN/sand
07355acf0ba4607a5cb1408a1d86d87f03e3a317
1c51a7d1b215a7a2e1e06bd3b87a7e1da7239664
refs/heads/master
2020-06-22T01:27:21.168067
2016-10-15T11:22:18
2016-10-15T11:22:18
94,208,495
0
3
null
null
null
null
UTF-8
C++
false
false
7,070
cpp
//------------------------------------------------------------------------------ /* This file is part of rippled: https://github.com/ripple/rippled Copyright (c) 2012, 2013 Ripple Labs Inc. Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is h...
[ "nemox1024@hotmail.com" ]
nemox1024@hotmail.com
89992fcad804ac169a3caf2ebebc0daba5b3620f
1bbfeca83bac53d22b1110ca7f6c9a28bc46c22e
/ru-olymp-train-winter-2007/Submits/070117b/17_47_44_24_C_8308.CPP
fe9cd2b21b98717b225283ff6a8052b350943167
[]
no_license
stden/olymp
a633c1dfb1dd8d184a123d6da89f46163d5fad93
d85a4bb0b88797ec878b64db86ad8ec8854a63cd
refs/heads/master
2016-09-06T06:30:56.466755
2013-07-13T08:48:16
2013-07-13T08:48:16
5,158,472
1
0
null
null
null
null
UTF-8
C++
false
false
599
cpp
#include <cstdio> #include <cstring> int c[20000][3], res[20000]; void relax( int p, int d ) { if (!(res[p] + 1) || res[p] > d) res[p] = d; } int main( void ) { freopen("linguae.in", "rt", stdin); freopen("linguae.out", "wt", stdout); int n; res[0] = 0; scanf("%d", &n); memset(res, -1, sizeof(res)...
[ "super.denis@gmail.com" ]
super.denis@gmail.com
18a044fc1b423d316d5a29d7473d92c6b115a185
8dac77bf1df7cdc364f17777e4066128818fc377
/DmtpcMonteCarlo/MCAmp/models/src/.svn/text-base/fieldCage.cc.svn-base
14fe21539227decc90573ed3081e2a6b2f446594
[]
no_license
HPTPC/DMTPC-Code
b9e0e92f878dbd847891fad7a74ff69f6fa35fe0
8d5588b97dadc8361daa9d2175f8977454f4758a
refs/heads/master
2020-04-05T12:09:46.173053
2017-11-10T13:18:00
2017-11-10T13:18:00
95,233,777
0
0
null
null
null
null
UTF-8
C++
false
false
1,917
#include "Model.hh" #include "TCanvas.h" #include "SolverElmer.hh" #include "ViewField.hh" using namespace dmtpc::mc::amp; int main(int nargs, char ** args) { const char * outputdir = nargs > 1 ? args[1] : "cage"; Model m("cage",outputdir); SurfaceProperties none; none.isElectrode = false; none...
[ "wparker2@linappserv2.pp.rhul.ac.uk" ]
wparker2@linappserv2.pp.rhul.ac.uk
83dfcbb8df34eea74257108d22c4b0513acb4154
65481b706ecc04fb133a3e2e187c8c9a51738e3e
/source/appbase/widgets/hexeditor_windows_mgr.hpp
8131a6a1e29e92259f4027d8db0b8f786caa1b37
[ "MIT" ]
permissive
AngerySnek/CyberpunkSaveEditor
2153ef311169ff9df4f2cddb99bb59882ae8a672
f11b130fb202fbe4938c6b13953af7dff81f30d7
refs/heads/main
2023-07-15T09:35:45.271859
2021-08-22T01:29:12
2021-08-22T01:29:12
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,785
hpp
#pragma once #include "node_editors.hpp" class hexeditor_windows_mgr { using node_type = cp::csav::node_t; public: static hexeditor_windows_mgr& get() { static hexeditor_windows_mgr s; return s; } hexeditor_windows_mgr(const hexeditor_windows_mgr&) = delete; hexeditor_windows_mgr& ...
[ "thispawn@gmail.com" ]
thispawn@gmail.com
d1ffcd1b7bf2ac36230df771ff3efea1e5850e88
154ad9b7b26b5c52536bbd83cdaf0a359e6125c3
/components/sync/engine_impl/commit_processor.h
ce6ddd2b14321ec2aa847f67031ef425aa3198f0
[ "BSD-3-Clause" ]
permissive
bopopescu/jstrace
6cc239d57e3a954295b67fa6b8875aabeb64f3e2
2069a7b0a2e507a07cd9aacec4d9290a3178b815
refs/heads/master
2021-06-14T09:08:34.738245
2017-05-03T23:17:06
2017-05-03T23:17:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,403
h
// 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. #ifndef COMPONENTS_SYNC_ENGINE_IMPL_COMMIT_PROCESSOR_H_ #define COMPONENTS_SYNC_ENGINE_IMPL_COMMIT_PROCESSOR_H_ #include <stddef.h> #include <map> #incl...
[ "zzbthechaos@gmail.com" ]
zzbthechaos@gmail.com
4518969cd0942ec955303eef0ee1b92706f94310
2fa1d9bf7fde1b24289b818f2977e9b3ade01cc5
/seminar9/derevo.cpp
314900d1b3842f7d8bafbee5145e5a72ca44e7c9
[]
no_license
geniustrild/CPP-course
2d0aacf2177b4983a1bf1dcb844493ab6dd3db1e
af6ae12a216021b5b7086f3b35b42946b4a18f03
refs/heads/master
2020-03-29T14:37:34.522136
2018-12-04T19:12:39
2018-12-04T19:12:39
150,026,600
0
1
null
null
null
null
UTF-8
C++
false
false
738
cpp
#include <iostream> #include <stdio.h> #include <unistd.h> #include <stdlib.h> #include <math.h> void Ask (Node * node) { while (node != NULL) { printf("%s", node -> data); int answer = getchar(); if (answer == 'n') node = node -> left; else node = node -> right; } }...
[ "ranger2001@mail.ru" ]
ranger2001@mail.ru
46fd098f766711561655008bab63da6ad6ce5182
97fde28997b618180cfa5dd979b142fd54dd2105
/core/dep/acelite/ace/Event_Handler.h
0af358c5f0bd102faa0fcfeaa3117e22ea4958c8
[]
no_license
Refuge89/sunwell-2
5897f4e78c693e791e368761904e79d2b7af20da
f01a89300394065f33eaec799c8779c2cac5c320
refs/heads/master
2020-12-31T05:55:43.496145
2016-02-16T20:46:50
2016-02-16T20:46:50
80,622,543
1
0
null
2017-02-01T13:30:06
2017-02-01T13:30:06
null
UTF-8
C++
false
false
13,026
h
/* -*- C++ -*- */ //========================================================================== /** * @file Event_Handler.h * * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> */ //========================================================================== #ifndef ACE_EVENT_HANDLER_H #define ACE_E...
[ "root@wow.playstar.se" ]
root@wow.playstar.se
d6f2b5c979dfc037aa878ed7432950afae142e91
1191924a90a6403bf0366a7d8c7640116a48c1e5
/test/main.cpp
33f45eef3a5d991fc407b31f47547c2afaefdc63
[ "BSL-1.0" ]
permissive
iorate/variant
df73005c78d2d476501c63982f02fa4d51ac3de7
c8b95c206a4a8bbdccf060c9cac2c9d86c8e1a9e
refs/heads/master
2020-12-30T16:40:02.449317
2017-05-18T14:33:58
2017-05-18T14:33:58
91,001,935
0
0
null
null
null
null
UTF-8
C++
false
false
322
cpp
// iorate::variant // // Copyright iorate 2017. // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #define BOOST_TEST_DYN_LINK #define BOOST_TEST_MODULE variant_test #include <boost/test/unit_test.hpp>...
[ "iorate@users.noreply.github.com" ]
iorate@users.noreply.github.com
151c6bb543af5ca3c5d62b31116d2076277fb35a
f2907f4f6a99ad6f183ea9469cf4588d1d9af753
/PC_ClientSDK.201804142014/PPPCS_ClientUI/ConfigWidget.h
6edb7e78cb3ee38c6b4c6df1cb0b9854aa0a2ec1
[]
no_license
intWang/BDY
797da5afa3c1d8374fc2d0018a6de207ffce49df
02f55e0962c510c23d1e4b656fa7d68dba9b82b8
refs/heads/master
2023-02-04T05:09:11.621949
2020-12-28T02:51:25
2020-12-28T02:51:25
285,232,966
0
0
null
null
null
null
UTF-8
C++
false
false
3,806
h
#pragma once #include "AreableWidget.h" #include "MovelabelWidget.h" #include "IHttpSupport.h" #include "BaseDialog.h" enum ConfigType { AddDevice, AddGroup, ModifyDevice, ModifyGroup, StorageConfig, }; struct ConfigData { using Ptr = std::shared_ptr<ConfigData>; ConfigType emType; vir...
[ "xiaohwa2@cisco.com" ]
xiaohwa2@cisco.com
df06b524bde70ec90b8f05b3d5cd3fa47e3de520
a65cdd26083004c6fda19552704475755a170d4f
/fillArea.h
0984de63a99fcd88841b2c5d953c4415edaf75a4
[]
no_license
XingZhiang/graph_homework
afc5bd2c1262abfa9a4d331c279099f614b321a9
d7495acffa6c0defe562cf4e4a1d60577eb9fb0e
refs/heads/main
2023-08-21T00:58:47.274768
2021-10-25T13:47:28
2021-10-25T13:47:28
405,963,341
0
1
null
2021-09-24T12:35:53
2021-09-13T12:26:17
C++
UTF-8
C++
false
false
1,578
h
#pragma once #ifndef GRAPH_LAB_FILL_H #define GRAPH_LAB_FILL_H #include "Point.h" #include <stack> #include <vector> void fillArea(Point& p, COLOR newcolor) { COLOR oldcolor = p.getColor(); if (oldcolor == newcolor) return; Point seed = p; std::stack<Point> p_stack; bool spanNeedFill; int xr, xl; p_stack.pus...
[ "jiyishen217@gmail.com" ]
jiyishen217@gmail.com
74438b8c722afd043e5a3c0388dec5ec3abe52fe
e2d3703ef6e4a13e8d8bcc5b5f7bdce7a6539f40
/src/controller/quad_states.cpp
7886d809dd4a39b9912cad7f3736452bb1028636
[]
no_license
jfangwpi/quad_sim
9a8d4d5d85bc235b4a88a854b8ff889ab8cb37ad
5e51f57ede72942418a2be719a012ffc8a900921
refs/heads/master
2021-01-25T13:47:41.373321
2018-03-12T03:27:53
2018-03-12T03:27:53
123,614,768
0
0
null
null
null
null
UTF-8
C++
false
false
680
cpp
/* * quad_controller.h * * Create on : March 2, 2018 * Description: * * Copyright (c) 2018 Jie Fang (jfang) */ #include <iostream> #include <vector> #include <cmath> #include "quad_states.h" using namespace srcl_quad; QuadrotorState::QuadrotorState(): mass(2.0), g(9.8), arm_length(0.216), type(1), ...
[ "jfang@wpi.edu" ]
jfang@wpi.edu
1e818821c2a8b771f4ee1cdfaa092765f71301d4
1abda5c7adc4dcbee7c7111749785d819985cdf8
/PLC/iplcviewreader.h
ac0122f0855ab663cf9d9b3f9ae566bfdad8fcb6
[]
no_license
519984307/PLC_Config
70b2bc74366894f5a0535a3a382bb5570deb19bc
c9bb5065d49e92d49a9e20bcfaf2d7d88baf926a
refs/heads/master
2023-03-16T05:51:32.255079
2018-07-24T08:11:38
2018-07-24T08:11:38
null
0
0
null
null
null
null
UTF-8
C++
false
false
198
h
#ifndef IPLCVIEWREADER_H #define IPLCVIEWREADER_H #include "plcview.h" class IPLCViewReader { public: virtual QVector<PLCView> readData(const QString &fName)=0; }; #endif // IPLCVIEWREADER_H
[ "kontel@mail.ru" ]
kontel@mail.ru
f7ccbf3e2fe5177ba2c23543eb319fb223ed24c0
f94aa5bd4d8814b57ae6713c1f69fa1e11bc6526
/TribesAscendSDK/HeaderDump/TribesGame__TrDevice_LightSpinfusor.h
b492bc5ec1e84262604bf165e722ff0c13c32dc7
[]
no_license
pixel5/TASDK
71980b727b86034771ea91c67f6c02116f47c245
0dc5e4524efed291fe7d8cf936fa64e0e37e4e82
refs/heads/master
2020-05-23T15:12:55.162796
2013-07-13T00:27:32
2013-07-13T00:27:32
null
0
0
null
null
null
null
UTF-8
C++
false
false
925
h
#pragma once #define ADD_VAR( x, y, z ) ( ##x ) var_##y() \ { \ static ScriptProperty *script_property = ( ScriptProperty* )( ScriptObject::Find( #x " TribesGame.TrDevice_LightSpinfusor." #y ) ); \ return ( ##x( this, script_property->offset, z ) ); \ } #define ADD_STRUCT( x, y, z ) ( ##x ) var_##y() \ { \ static Sc...
[ "altimormc@gmail.com" ]
altimormc@gmail.com
098c990904475f19b270a0817089800c3e73dbf6
8ae31e5db1f7c25b6ce1c708655ab55c15dde14e
/比赛/学校/2019-11-10测试/source/PC27_新建文件夹/catas.cpp
e69da51b474e478c5022d7cf27564a823c0c863c
[]
no_license
LeverImmy/Codes
99786afd826ae786b5024a3a73c8f92af09aae5d
ca28e61f55977e5b45d6731bc993c66e09f716a3
refs/heads/master
2020-09-03T13:00:29.025752
2019-12-16T12:11:23
2019-12-16T12:11:23
219,466,644
1
0
null
null
null
null
UTF-8
C++
false
false
2,007
cpp
#include <bits/stdc++.h> #define INF 0x3f3f3f3f using namespace std; namespace Sonoda { template<typename T> void swap(T &a,T &b) { T t; t=a; a=b; b=t; } template<typename T> T GCD(T a,T b) { if(b==0) { return a; } return GCD(b,a%b); } template<typename T>T Qpow(T a,T b,T p) { T res=1; wh...
[ "506503360@qq.com" ]
506503360@qq.com
e9f02c94ca3693aa92a6444855b29a139ef9cef5
86cbb00a994bf2f212a0f4863c286c9e40029083
/gameswf/gameswf_styles.h
6d84dbd0380e8fffd9480875f4e1406ab4a0526a
[]
no_license
public-domain/tu_testbed
06a8e2be383c3e02fe97edde1531dc62859f5fea
64f6f629c3f72611b2f087d60f310a6533517337
refs/heads/master
2021-02-09T01:23:23.000415
2020-03-01T20:52:35
2020-03-01T20:52:35
244,221,878
1
0
null
null
null
null
UTF-8
C++
false
false
3,777
h
// gameswf_styles.h -- Thatcher Ulrich <tu@tulrich.com> 2003 // This source code has been donated to the Public Domain. Do // whatever you want with it. // Fill and line style types. #ifndef GAMESWF_STYLES_H #define GAMESWF_STYLES_H #include "gameswf/gameswf_impl.h" namespace gameswf { struct...
[ "jean-marc.lienher@bluewin.ch" ]
jean-marc.lienher@bluewin.ch
b969749357c83061d0887512e20652dbc8b71295
4afc6182476e8e381ea0913f7b1205edf384a029
/.build/iOS-Debug/include/app/Uno.Threading.Future1_Closure__string__Uno_Exception.h
9ce446910427c4cfc251d85a56a57bdd56a794da
[]
no_license
noircynical/soscon_demoproject
45a4b5594582447001c2895e24cf2e6566095a63
aab19822fb8bc46715e6b41ac785faf7a128d9e7
refs/heads/master
2021-01-10T05:41:33.994651
2015-10-28T04:27:43
2015-10-28T04:27:43
45,085,497
0
0
null
null
null
null
UTF-8
C++
false
false
1,473
h
// This file was generated based on '/usr/local/share/uno/Packages/Uno.Threading/0.13.2/$.uno'. // WARNING: Changes might be lost if you edit this file directly. #ifndef __APP_UNO_THREADING_FUTURE1_CLOSURE__STRING__UNO_EXCEPTION_H__ #define __APP_UNO_THREADING_FUTURE1_CLOSURE__STRING__UNO_EXCEPTION_H__ #include <app/...
[ "0101rgb@gmail.com" ]
0101rgb@gmail.com
abb808d323d37711bbfa57e1008a95c3026818c4
0a2190bdd257d8b4a9f879fbc1474337c02da32d
/src/person_detection/src/person_detection.cpp
1e53b9ec1f4dfc619238916c700236c40eb93da2
[]
no_license
bitCluod/AkiraRobotService
af4ed667590f33fea11488445787d793e6aaf389
accc6acf0480818306462dc74e6b7adf11cfa220
refs/heads/master
2023-04-18T08:28:54.632006
2021-05-01T02:35:18
2021-05-01T02:35:18
363,306,688
0
0
null
null
null
null
UTF-8
C++
false
false
2,146
cpp
/* DETECT DIFFERENT BODY PARTS USING HAAR-LIKE FEATURES */ #include "opencv2/objdetect/objdetect.hpp" #include "opencv2/highgui/highgui.hpp" #include "opencv2/imgproc/imgproc.hpp" #include <iostream> #include <stdio.h> #include <string.h> #include <sstream> #include <cstdlib> #include <person_detection/detect...
[ "scheneider12.12@gmail.com" ]
scheneider12.12@gmail.com
6199be053abc2baaf04af40fb52527857f2a405d
a0bb8ecfee900980f9c7b23867d50497f6c61786
/tests/test_stack.cc
61826aba589894a6480e0cc985b7de9f6cae6821
[ "MIT", "CC-BY-4.0", "CC-BY-3.0", "CC-BY-NC-4.0" ]
permissive
tatsy/spica
22e2353d93711064bba41d261c4136525f7bdf10
9c1485eae242a13cff18f7cedc88962ed2538168
refs/heads/master
2021-01-20T12:09:40.714972
2018-07-15T11:21:37
2018-07-15T11:21:37
31,068,350
24
5
MIT
2018-07-13T05:44:35
2015-02-20T14:32:11
C++
UTF-8
C++
false
false
780
cc
#include "gtest/gtest.h" #include <algorithm> #include "../include/spica.h" using namespace spica; TEST(StackTest, Instance) { Stack<double> stk; ASSERT_DEATH(stk.pop(), ""); } TEST(StackTest, PushAndPop) { Stack<double> stk; stk.push(1.0); stk.push(2.0); stk.push(3.0); EXPECT_EQ(stk.pop...
[ "tatsy.mail@gmail.com" ]
tatsy.mail@gmail.com
7e577d9ff640c5630c8954b128a9ec9cb5c0f048
e98b265914ec3dbdc5eefe443505e58321ef5c00
/third_party/WebKit/Source/platform/graphics/BitmapImage.h
ea697c4e6c80e64458cfc19b6d9dbfab43f60ea9
[ "BSD-3-Clause", "LGPL-2.0-or-later", "GPL-1.0-or-later", "MIT", "Apache-2.0", "LicenseRef-scancode-warranty-disclaimer", "LGPL-2.1-only", "GPL-2.0-only", "LGPL-2.0-only", "BSD-2-Clause", "LicenseRef-scancode-other-copyleft" ]
permissive
zhouyige/chrome4sdp
d223f33cf45889bf9437ad9614e1c414c6c37faf
a9655c8758922ec2ff07400f6be8c448749a8c64
refs/heads/master
2022-12-17T17:36:19.467887
2017-01-04T07:35:25
2017-01-04T07:35:25
78,020,809
0
1
BSD-3-Clause
2022-11-17T18:58:27
2017-01-04T14:05:31
null
UTF-8
C++
false
false
9,052
h
/* * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) * Copyright (C) 2004, 2005, 2006 Apple Computer, Inc. All rights reserved. * Copyright (C) 2008-2009 Torch Mobile, Inc. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following con...
[ "zsky369369@outlook.com" ]
zsky369369@outlook.com
540c762e2e28e0a1684cc79950f59649c9d08a15
6b580bb5e7bbf83e0d9845818678fbb85ea14450
/aws-cpp-sdk-inspector2/include/aws/inspector2/model/ErrorCode.h
208ebddc5de65d7cdffbf5bc665cec1ee2b440dc
[ "MIT", "Apache-2.0", "JSON" ]
permissive
dimatd/aws-sdk-cpp
870634473781731822e2636005bc215ad43a0339
3d3f3d0f98af842e06d3d74648a0fca383538bb3
refs/heads/master
2022-12-21T20:54:25.033076
2022-12-13T18:18:00
2022-12-13T18:18:00
219,980,346
0
0
Apache-2.0
2019-11-06T11:23:20
2019-11-06T11:23:20
null
UTF-8
C++
false
false
920
h
/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/inspector2/Inspector2_EXPORTS.h> #include <aws/core/utils/memory/stl/AWSString.h> namespace Aws { namespace Inspector2 { namespace Model { enum class ErrorCode { NO...
[ "aws-sdk-cpp-automation@github.com" ]
aws-sdk-cpp-automation@github.com
daaafa3f1c206af108b1295d5860d864dd4de132
8681c91756b2941035db515b621e32480d35ec11
/xr_3da/xrGame/ui/UIInventoryWnd.cpp
e0d384ecdf6694d227ce24a6b420f8471a9b907b
[]
no_license
MaoZeDongXiJinping/xray-2212
1f3206c803c5fbc506114606424e2e834ffc51c0
e143f01368c67b997f4be0dcdafb22f792bf485c
refs/heads/main
2023-07-17T09:53:01.301852
2021-09-06T17:00:23
2021-09-06T17:00:23
null
0
0
null
null
null
null
WINDOWS-1251
C++
false
false
20,652
cpp
// UIInventoryWnd.h: диалог инвентаря // ////////////////////////////////////////////////////////////////////// #include "stdafx.h" #include "UIInventoryWnd.h" #include "xrXMLParser.h" #include "UIXmlInit.h" #include "../actor.h" #include "../uigamesp.h" #include "../hudmanager.h" #include "../CustomOutfit.h" #i...
[ "47507219+ugozapad@users.noreply.github.com" ]
47507219+ugozapad@users.noreply.github.com
c569245244717c8ab20be08516cec655f9931ab9
3aeef7f97225381084800f14d53ffc6390f89fa3
/Code/MainV2/MainV2.ino
35114bf0c3cc8ba42dc4f2ca3e3a2108fdaec614
[]
no_license
DanielWiest/16_S686
485547f89e9167a72339efd9a98679920cd92835
1a8e577183088a8ffcfda4345d759523c8772589
refs/heads/master
2020-04-08T09:32:37.804145
2019-01-16T04:58:11
2019-01-16T04:58:11
159,229,158
0
0
null
null
null
null
UTF-8
C++
false
false
10,555
ino
#include <Wire.h> #include <Adafruit_Sensor.h> #include <Adafruit_BNO055.h> #include <utility/imumaths.h> #include <SPI.h> #include <SD.h> #include <math.h> #include <EEPROM.h> #include <PWMServo.h> #define LOGGING_FREQUENCY 100.0 #define MAX_LOG_NUMBER 850 /* TODO: * ADD Throw detection and find the initial vel...
[ "randallwiest@TestConnection.local" ]
randallwiest@TestConnection.local
745a79f8309c1d18e32fbfbce4ab5cc6c0b19226
240299613635588e7f5e0144475f595ffd2ff3f6
/src/ScoreManager/ScoreManager.hpp
97effd1741243bb04d1950230e2cd4089e12a5d0
[]
no_license
baldash/IndieStudio
982f9f472cc7d9bfc0f3b678a3104d30d5eeb474
3b3babf75bcd6d0debf19a4e6fecf884137ed6d7
refs/heads/master
2021-05-04T00:48:17.724784
2018-02-05T19:57:29
2018-02-05T19:57:29
120,352,346
0
1
null
null
null
null
UTF-8
C++
false
false
657
hpp
// // ScoreManager.hpp for indie_studio in /home/baldas/Prog/repos/tek2/cpp/cpp_indie_studio/src/ScoreManager // // Made by Hugo Baldassin // Login <baldas@epitech.net> // // Started on Fri May 5 16:31:50 2017 Hugo Baldassin // Last update Fri May 5 16:31:52 2017 Hugo Baldassin // #ifndef SCOREMANAGER_HPP_ # d...
[ "hugo.baldassin@epitech.eu" ]
hugo.baldassin@epitech.eu
f18f7f6f035c80e9e6f127ef4058551bf8d9f7ca
d96333ca6eb18677c2579c1114fb047cc799bf13
/poj2385.cpp
1efdab18eb50ca6d59a787d3a40cc7e4bc877a65
[]
no_license
zaburo-ch/icpc_practice
e8fe735857689f685ea86435346963731f5dcd18
fc275c0d0a0b8feba786059fa1f571563d8e432e
refs/heads/master
2021-01-19T05:03:31.891988
2015-06-28T17:39:00
2015-06-28T17:39:00
21,899,426
0
0
null
null
null
null
UTF-8
C++
false
false
849
cpp
#include <iostream> #include <cstdio> #include <cstdlib> #include <cstring> #include <vector> #include <string> #include <queue> #include <map> #include <algorithm> #include <set> #define INF 10000000 using namespace std; typedef pair<int,int> P; int t,w; int a[1000]; int dp[1000][31][2]; int main(){ scanf("%d%d",...
[ "musharna000@gmail.com" ]
musharna000@gmail.com
190ff2fae7c63b850345c382cc3dd5b13f7b78e2
16d0a6aeef60cd7ca6620eb175248c8b82408b5d
/analysis of quicksort/assignment6_melihkurtaran.cpp
0aabdfda88ba75aaf4ed19c65f0e2c382913df41
[]
no_license
melihkurtaran/algorithms_and_data_structures
898f1b1c895cb7f952d3c833fcd0379b9ad227cd
24933ce1dbc530ab09e29d3e78d871e4f725531b
refs/heads/master
2020-09-13T18:51:57.778546
2019-11-30T07:40:09
2019-11-30T07:40:09
222,867,901
0
0
null
null
null
null
UTF-8
C++
false
false
6,394
cpp
// Created by Melih Kurtaran on 27/03/2019. // Copyright © 2019 melihkurtaran. All rights reserved. #include <iostream> #include <chrono> #include <random> using std::chrono::duration_cast; using std::chrono::microseconds; using std::chrono::steady_clock; using namespace std; void isSorted(int *array, int size) { ...
[ "melihkurtaran@sabanciuniv.edu" ]
melihkurtaran@sabanciuniv.edu
08653281f6ac709cfe16f93d3972a41a0a39042a
9c81a923cd23bc169b85fd921f5de51f2acd584b
/swagger/sdrangel/code/qt5/client/SWGRDSReport_altFrequencies.h
3a909a2bfe7d8b0468136edcb81cf7a02cccd61a
[]
no_license
n8ohu/sdrangel
ac7c1bba387e91e32c56cb9f174f17841e54ab7c
62e1a5f4daa502ccde0da14813b27dfe97160cdf
refs/heads/master
2020-04-18T00:53:40.690291
2019-01-20T08:54:06
2019-01-20T08:54:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,469
h
/** * SDRangel * This is the web REST/JSON API of SDRangel SDR software. SDRangel is an Open Source Qt5/OpenGL 3.0+ (4.3+ in Windows) GUI and server Software Defined Radio and signal analyzer in software. It supports Airspy, BladeRF, HackRF, LimeSDR, PlutoSDR, RTL-SDR, SDRplay RSP1 and FunCube --- Limitations an...
[ "f4exb06@gmail.com" ]
f4exb06@gmail.com
c32e335804a354b8b46fb22bf710a2741fd575c1
7ee32ddb0cdfdf1993aa4967e1045790690d7089
/ACM-ICPC/NWERC11/ProblemE.cpp
3643f502b2194c96975e3766017283a141ffc865
[]
no_license
ajimenezh/Programing-Contests
b9b91c31814875fd5544d63d7365b3fc20abd354
ad47d1f38b780de46997f16fbaa3338c9aca0e1a
refs/heads/master
2020-12-24T14:56:14.154367
2017-10-16T21:05:01
2017-10-16T21:05:01
11,746,917
1
2
null
null
null
null
UTF-8
C++
false
false
1,166
cpp
#include <iostream> #include <sstream> #include <vector> #include <string.h> #include <algorithm> #include <utility> #include <set> #include <map> #include <deque> #include <queue> #include <cmath> #include <cstdlib> #include <ctime> #include <cstdio> #include <stdio.h> using namespace std; #define fo(i,n) for(int i=...
[ "alejandrojh90@gmail.com" ]
alejandrojh90@gmail.com
da3883b84ff679330b78a32834ba235067398e35
4ab90879599e2d3f30fe63707b7ec0eac2cb8fa9
/tensorflow/c/experimental/next_pluggable_device/c_api.cc
1ff6e091507220e79fa9027455c87dbe2b7327b8
[ "Apache-2.0", "LicenseRef-scancode-generic-cla", "BSD-2-Clause" ]
permissive
Romyull-Islam/tensorflow
030fbe090174c368639b945274f5965072bf17df
3e2405541f8be5db4bb1594fd3520a369bcfb211
refs/heads/master
2023-02-17T02:03:28.580789
2023-02-10T17:19:58
2023-02-10T17:26:52
150,025,165
0
0
Apache-2.0
2018-09-23T20:59:59
2018-09-23T20:59:59
null
UTF-8
C++
false
false
13,829
cc
/* Copyright 2022 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...
[ "gardener@tensorflow.org" ]
gardener@tensorflow.org