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
1700dc7124bd77da7c9203d3e5cb9d912610671b
5b706159ca28932d253358792cd3ea0888d143d4
/cxx/condition_variable/notify_one.cpp
5335a0860d16819cf26fdc5ca8254d36be91cb26
[]
no_license
pbertoni89/playground
f198eb778af29725a8a78b2041988737df82fd05
ed68a1bf93b1ee397985a9092fb603ec14cf1afe
refs/heads/master
2022-08-18T12:31:01.721809
2022-08-06T07:59:52
2022-08-06T07:59:52
165,248,810
0
0
null
null
null
null
UTF-8
C++
false
false
3,079
cpp
/* http://en.cppreference.com/w/cpp/thread/condition_variable */ #include <boost/date_time/posix_time/posix_time.hpp> #include <iostream> #include <condition_variable> #include <string> #include <vector> #include <thread> #include <chrono> #include <mutex> #include <iomanip> std::mutex m; std::condition_variable cv...
[ "pbertoni@x-next.com" ]
pbertoni@x-next.com
6637a06a77987a25383da810b522e5876fa3e0b4
4d02ae49de2caf1d35eafba92d482db4cfa5d790
/C++PrimerPlus/chapter05/5-循环和关系表达式/5.13_while.cpp
6c7b4a2ea58496ca2ac27cb40017c4b787e9bb2b
[]
no_license
fei0511/C--PrimerPLusCode
29b13c0c0992a5c3d0b6dcf5374d73a423005a20
46989078c868e195140251afec5d3a8ed27ca3b8
refs/heads/main
2023-01-30T20:05:41.422115
2020-12-10T14:23:44
2020-12-10T14:23:44
315,538,707
0
0
null
null
null
null
GB18030
C++
false
false
1,406
cpp
#include <iostream> #include <string> //功能:5.13 while循环 //时间:2020年11月25日11:05:48 // //const int ArSize = 20; // //int main() //{ // using namespace std; // char name[ArSize]; // // cout << "Your first name, please: "; // //cin >> name; //这种格式,读取的字符串中间不能包含空格 // // //cin.getline(name,20) ; //这种格式,先把一...
[ "1277051100@qq.com" ]
1277051100@qq.com
35004fd800373ea013ffd7370a4e63aefb0f11eb
b0dddb3bc7ea323329d703810442de70dab1b0e0
/checkIfNumIsPrime.cpp
d72d5badfc19e2bb75919599b06f4af0419dabf5
[]
no_license
jatayu1/check-if-a-given-number-is-prime-or-not.-c-
034f508f78e5cc566d17407abee2c747e859a62f
23c90b2515f32e6a62f4f03fac206eb2c70a1b06
refs/heads/main
2023-06-08T08:50:39.365356
2021-06-28T04:11:30
2021-06-28T04:11:30
380,895,332
0
0
null
null
null
null
UTF-8
C++
false
false
526
cpp
#include <iostream> using namespace std; int main() { int num; cout << "enter a number\n"; cin >> num; if (num < 2) { cout << num << " is not a prime."; } else { int i; for (i = 2; i < num; i++) { if (num % i == 0) { ...
[ "dakash682@gmail.com" ]
dakash682@gmail.com
1df2b8a76fba2e810efd1275308740b2d388f5b7
f16abfc3708fefb8310d0f681d3d14af73dd2ee5
/candy.cpp
8871f8acc68a5e8199156e71377e20eee03a88e3
[]
no_license
GabrielSBarros/Candy-Crush
8e9b690bb12a973c4bc183462f0603fdff660a16
0313b9867ceb48744c1bd2defadba6ed8fa3cc18
refs/heads/master
2020-03-27T20:10:23.184023
2018-09-03T01:44:13
2018-09-03T01:44:13
147,045,008
1
1
null
null
null
null
UTF-8
C++
false
false
6,770
cpp
#include<stdio.h> #include"conio.c" #include<queue> using namespace std; const int ROWS = 5; const int COLUMNS = 5; const int ITEMSNUMBER = 3; int board[ROWS][COLUMNS]; typedef struct $ { int Row; int Column; } Coord; Coord setCoord(int row, int column) { Coord c; c.Row = row; c.Column = column; return c; } ...
[ "gabriel.sb199@gmail.com" ]
gabriel.sb199@gmail.com
038717e7ffb976c4f4816783baf6a1ebe9c7fb5a
af30bef4ffd3832256750cac7debaf428498c99b
/17/Prerequisites.h
8cad90bbc7d2c17f853b5ab67fdefbd1078a3bd2
[]
no_license
AfvanMoopen/Game-Engine
2086f64fe9ffe1f1a0a391a36b6ec544d3f473c9
900148bfecaac47944f6f7e72da5373c91e2a89e
refs/heads/master
2023-03-17T08:59:52.884403
2021-03-13T08:38:35
2021-03-13T08:38:35
null
0
0
null
null
null
null
UTF-8
C++
false
false
763
h
#pragma once #include <memory> class SwapChain; class DeviceContext; class VertexBuffer; class IndexBuffer; class ConstantBuffer; class VertexShader; class PixelShader; class RenderSystem; class GraphicsEngine; class Resource; class ResourceManager; class Texture; class TextureManager; typedef std::shared_ptr<SwapC...
[ "afvanmj@gmail.com" ]
afvanmj@gmail.com
b838381d9667a820551ce6ccd7e8d69675110dc3
bd1fea86d862456a2ec9f56d57f8948456d55ee6
/000/068/515/CWE122_Heap_Based_Buffer_Overflow__cpp_CWE805_char_ncpy_63a.cpp
55baa8470aa367074075f4a56794d1168c7830f8
[]
no_license
CU-0xff/juliet-cpp
d62b8485104d8a9160f29213368324c946f38274
d8586a217bc94cbcfeeec5d39b12d02e9c6045a2
refs/heads/master
2021-03-07T15:44:19.446957
2020-03-10T12:45:40
2020-03-10T12:45:40
246,275,244
0
1
null
null
null
null
UTF-8
C++
false
false
2,373
cpp
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE122_Heap_Based_Buffer_Overflow__cpp_CWE805_char_ncpy_63a.cpp Label Definition File: CWE122_Heap_Based_Buffer_Overflow__cpp_CWE805.string.label.xml Template File: sources-sink-63a.tmpl.cpp */ /* * @description * CWE: 122 Heap Based Buffer Overflow * BadSource: Allocat...
[ "frank@fischer.com.mt" ]
frank@fischer.com.mt
37fca7613dad0e6e3b6ba16969152abf7e3454d6
9076b06cbd18a8cef705edab40982d5f3c0cb627
/src/docsets.cpp
29f8685272ccd84ee897d4dac1c364c6dc91e7b8
[]
no_license
sailfish009/doxypress
a34c0457db9764a1b3e758c12f986342f2f81b50
e9a4dbee02aad585b1c4aa7d060f9827fe30f67b
refs/heads/master
2021-01-18T16:47:38.042900
2017-03-03T23:38:00
2017-03-03T23:38:00
null
0
0
null
null
null
null
UTF-8
C++
false
false
16,310
cpp
/************************************************************************* * * Copyright (C) 2014-2017 Barbara Geller & Ansel Sermersheim * Copyright (C) 1997-2014 by Dimitri van Heesch. * All rights reserved. * * Permission to use, copy, modify, and distribute this software and its * documentation under the ter...
[ "barbara@copperspice.com" ]
barbara@copperspice.com
8c773f621960f8f09d396d2dfe7c6c0e7fff5e39
afa9e7df996189aa2248ab43a5e20c264b6dc889
/2/2.cpp
82d9b7b717025f265d6c18484e3655405b63bd61
[]
no_license
Kaina1511/-6
0d6553996ea456e6d2732e05a167231fe32e7494
afd8e947cf669ab6a8c5a00aeff9d223616986a1
refs/heads/master
2023-01-11T09:19:24.721562
2020-11-17T14:20:52
2020-11-17T14:20:52
313,642,785
0
0
null
null
null
null
UTF-8
C++
false
false
360
cpp
#include <iostream> #include <ctime> using namespace std; int main() { srand(time(NULL)); const int n = 20; int m[n] = {}; for (int i = 0; i < n; i++) { m[i] = rand() % 21 -10 ; cout << m[i] << " "; } cout << "\n"; for (int i = 0; i < n; i++) { if (m[i] < 0) { m[i] = 0; } } for (int i = 0; i < ...
[ "cstud110926@vyatsu.ru" ]
cstud110926@vyatsu.ru
3f07386c25d09e3c98865d4d5fbe6a73489ce172
33035c05aad9bca0b0cefd67529bdd70399a9e04
/src/boost_units_base_units_imperial_gill.hpp
eff1ec4f2f43a2bb5a62033c34099d6abf2aeca5
[ "LicenseRef-scancode-unknown-license-reference", "BSL-1.0" ]
permissive
elvisbugs/BoostForArduino
7e2427ded5fd030231918524f6a91554085a8e64
b8c912bf671868e2182aa703ed34076c59acf474
refs/heads/master
2023-03-25T13:11:58.527671
2021-03-27T02:37:29
2021-03-27T02:37:29
null
0
0
null
null
null
null
UTF-8
C++
false
false
52
hpp
#include <boost/units/base_units/imperial/gill.hpp>
[ "k@kekyo.net" ]
k@kekyo.net
ec678920b632f14eb7e1c134a73d5e2fd1388999
be9063c8cacc08434acf1e591d78c3f9ebd5f80d
/assignments/4/dl_list.h
aeabbab68a4db8c9ae11eb5df811673179f0d5c9
[]
no_license
PA2FA17/pa2fa17-helloojj
cccc61728d052f014462879737cb83070bb515a6
b8f94bae2879bcb3d2366b5e6dd2a912c242ff9c
refs/heads/master
2021-08-28T10:52:15.059866
2017-12-12T01:50:12
2017-12-12T01:50:12
101,103,730
0
0
null
null
null
null
UTF-8
C++
false
false
1,017
h
#ifndef DL_LIST_H_ #define DL_LIST_H_ #include "dl_node.h" #include <iostream> #include <string> #include <sstream> using std::stringstream; using std::string; class DLList { public: // default constructor DLList(); // destructor ~DLList(); //void DLList::Insert(int num); // get the size of the list ...
[ "jjohnson103@student.butte.edu" ]
jjohnson103@student.butte.edu
ac561d5b5ddd3f04642d82064807fff93957c6af
650f32ec6c8a83646a043133fd95f0f3d6269aa3
/book/CH02/S16_Presenting_an_image.h
1d71a03e7cc7665ee91801767e915a7ef9d083e8
[ "LicenseRef-scancode-warranty-disclaimer", "MIT" ]
permissive
THISISAGOODNAME/vkCookBook
0478b3eb80dec179f38dc2812416f3c3f4cb22f8
d022b4151a02c33e5c58534dc53ca39610eee7b5
refs/heads/master
2021-01-25T11:49:37.695292
2017-07-23T14:28:52
2017-07-23T14:28:52
93,948,327
9
2
null
null
null
null
UTF-8
C++
false
false
600
h
// // Created by aicdg on 2017/6/19. // // // Chapter: 02 Image Presentation // Recipe: 16 Presenting an image #ifndef VKCOOKBOOK_S16_PRESENTING_AN_IMAGE_H #define VKCOOKBOOK_S16_PRESENTING_AN_IMAGE_H #include "Common.h" namespace VKCookbook { struct PresentInfo { VkSwapchainKHR Swapchain; ui...
[ "yangyj19931231@gmail.com" ]
yangyj19931231@gmail.com
1fba4b0cda2a78b4236cb30e0d0011603cd13ea7
baf8d46269888211827d8878cc20325480b63d64
/EX37.CPP
5b7de7377640724243fbbf1862341d55cba96233
[]
no_license
malshetihy/github-upload
68676cb50a51a49914babc6377304b1f7cba3d9a
d2d8b689241f1a46f60ce65f991c972996fc22e7
refs/heads/master
2022-07-19T23:56:12.277701
2020-05-26T00:33:06
2020-05-26T00:33:06
266,904,347
0
0
null
null
null
null
UTF-8
C++
false
false
539
cpp
#include<stdio.h> #include<conio.h> #include<ctype.h> main() { char name[21] ; int counter ; clrscr() ; printf("\n\n\tWhat is your name ? ") ; gets( name ) ; name[0] = toupper( name[0] ) ; counter = 1 ; while( name[ counter ] != '\0' ) { if( name[ counter ] != ' ' ) { if( name[ count...
[ "mbadawi@eg.ibm.com" ]
mbadawi@eg.ibm.com
6f2206013175a36fefaab68ac4c927ba2b2de906
ec048b351f42b63d4599f7d2938f1dd0c4b0c845
/Gui/pagmo/algorithms/gaco.hpp
d5895b814a20d5548f9925c7102f142e859dc10c
[]
no_license
helm-compiler/carpentry-compiler
e3a63eb592fe35bcf0f678eb863fe76162322963
ff7d128e6d0fe1b9d44d885de07fbacb7ee5e4d7
refs/heads/master
2021-12-01T17:33:46.179363
2021-11-25T16:36:19
2021-11-25T16:36:19
218,213,377
28
5
null
null
null
null
UTF-8
C++
false
false
46,201
hpp
/* Copyright 2017-2018 PaGMO development team This file is part of the PaGMO library. The PaGMO library is free software; you can redistribute it and/or modify it under the terms of either: * the GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or (at...
[ "haisenzhao@gmail.com" ]
haisenzhao@gmail.com
ef804ec0b2592299fb79484452f24b54d85cadaa
dbc0e3582d65bcf9d8fba29d872d6407454f9e28
/codechef/6-A.cpp
ee994d18f910e522e158d6b21cd64b90c1d15102
[]
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
799
cpp
#include<iostream> using namespace std; void checkTRI(int a,int b,int c,bool *bo){ if(a+b>c && a+c>b && b+c>a){ cout<<"TRIANGLE"<<endl; *bo=true; } } void checkSEG(int a,int b,int c,bool *bo){ if(a+b==c || a+c==b || b+c==a){ cout<<"SEGMENT"<<endl; *bo=true; } } int main(){ int a,b,c,d; cin >> a >...
[ "aksinha.dhn@gmail.com" ]
aksinha.dhn@gmail.com
a0378afbbff6f4e3ae3f09cd8608f9c2b2449c57
0f7a4119185aff6f48907e8a5b2666d91a47c56b
/sstd_utility/windows_boost/boost/tti/detail/dstatic_mem_data.hpp
ad56545289c3a20c42a53aba777c1c5aee571af4
[]
no_license
jixhua/QQmlQuickBook
6636c77e9553a86f09cd59a2e89a83eaa9f153b6
782799ec3426291be0b0a2e37dc3e209006f0415
refs/heads/master
2021-09-28T13:02:48.880908
2018-11-17T10:43:47
2018-11-17T10:43:47
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,436
hpp
 // (C) Copyright Edward Diener 2011,2012,2013 // Use, modification and distribution are subject to 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). #if !defined(BOOST_TTI_DETAIL_STATIC_MEM_DATA_HPP) #define BOOST_TTI_DETAIL_ST...
[ "nanguazhude@vip.qq.com" ]
nanguazhude@vip.qq.com
cc66b118b39ade6846b4497052edcc669cdc2607
7a00a2a8161b2f356c964b583eeb739e2ce9182f
/Source/Framework2/EngineBuildingBlocks/Graphics/Primitives/AssimpExtensions/SXMLSerialization.h
8db1b7a81c9773b5c2d7fca522a5ab04cab4fa58
[]
no_license
TamasSzep/Framework
064000b5b3e0b2b9834e30b7c8df08e583bc3b57
6194acd881cfec4d083bd8d1c962df23af541bce
refs/heads/main
2023-03-02T13:55:21.506624
2021-02-14T18:20:03
2021-02-14T18:20:03
326,766,086
2
0
null
null
null
null
UTF-8
C++
false
false
392
h
// EngineBuildingBlocks/Graphics/Primitives/AssimpExtensions/SXMLSerialization.h #ifndef _ENGINEBUILDINGBLOCKS_SXMLSERIALIZATION_H_ #define _ENGINEBUILDINGBLOCKS_SXMLSERIALIZATION_H_ struct aiScene; namespace EngineBuildingBlocks { namespace Graphics { aiScene* ImportAssimpSceneSXML(const char* path); void Exp...
[ "szep.tamas.89@gmail.com" ]
szep.tamas.89@gmail.com
9e2bda34a0ce163cc3da60324cfd7bc5240d9daf
2107d152a5d6a3edaab442a283f3ab76a840235e
/competitive programming/leetcode/2020-September-Challenge/Day-09-Compare Version Numbers.cpp
08c7a29fd29fb2617a4eaf7869fdf19b0b11bbef
[ "MIT" ]
permissive
sureshmangs/Code
99ad6f42eff376faabe33eabcc82e2d035272724
5ef858173e8ef4db765c1154396a7c63614a8670
refs/heads/master
2023-06-22T20:50:03.912025
2023-06-17T13:53:45
2023-06-17T13:53:45
231,209,878
19
2
null
null
null
null
WINDOWS-1252
C++
false
false
2,149
cpp
Compare two version numbers version1 and version2. If version1 > version2 return 1; if version1 < version2 return -1;otherwise return 0. You may assume that the version strings are non-empty and contain only digits and the . character. The . character does not represent a decimal point and is used to separate number ...
[ "sureshmangs1@gmail.com" ]
sureshmangs1@gmail.com
ab0b83fd04c9f9eadf461e30c273c55cc47adac7
e002dff0d18373b8a36c22e91a8cbcdf120181f2
/tests/testDLS/testDLS.h
bca1a7eba7d5942e38457cbdb49e8a35104b8a73
[]
no_license
yrk996/Tracer-Open-Master
e372e248af212974b6f743fe40bc231ac2d12fe2
155b228c995696b9f233ab15f657ebaefa4fce9c
refs/heads/master
2023-01-16T05:11:35.270955
2020-11-24T14:39:30
2020-11-24T14:39:30
null
0
0
null
null
null
null
ISO-8859-1
C++
false
false
3,060
h
#pragma once // interactions #include "..\..\LowLevelTracing\Interaction\Absorb_LLT.h" #include "..\..\LowLevelTracing\Interaction\RefractedRay_LLT.h" #include "..\..\LowLevelTracing\Interaction\DoNothingInteraction_LLT.h" // glass catalogue #include "..\..\Glasses\Glasses.h" class testDLS { public: testDLS(); ~te...
[ "30525471+CCR01@users.noreply.github.com" ]
30525471+CCR01@users.noreply.github.com
8b184000744e7724adb8bc59ca77ce44de596bb8
987c79f822e9f6da3037d056aff6ea2db5c3e632
/CPP/7zip/Archive/LzhHandler.cpp
c8d3ff6db2df8ad99991d40993ca1723ddec9365
[]
no_license
solarwinds/7zip-sfx
e5fad36199f6b64200e05a9db5c5b6209aba3f4a
395bf2981822d6102d52d4d11a535ff6684e8b90
refs/heads/master
2021-01-15T17:10:24.479232
2017-08-08T21:45:02
2017-08-08T21:45:02
99,738,720
6
1
null
null
null
null
UTF-8
C++
false
false
18,172
cpp
// LzhHandler.cpp #include "StdAfx.h" #include "../../../C/CpuArch.h" #include "../../Common/ComTry.h" #include "../../Common/MyBuffer.h" #include "../../Common/StringConvert.h" #include "../../Windows/PropVariant.h" #include "../../Windows/TimeUtils.h" #include "../ICoder.h" #include "../Common/LimitedStreams.h"...
[ "tim.danner@solarwinds.com" ]
tim.danner@solarwinds.com
bf5af33c54925fd82012b43305417ba206e62cb1
b42afe9f81d6042b20ce08207ee2b35af8bcf059
/appstate.cpp
d589e9cd403cce621556bd6ab380958d282df7c9
[ "MIT" ]
permissive
tlewowski/PUMController
900ff03e3f1b01963707330da722b99378017f34
5330a8769dee518b2b2cdfeadf8ff6195a92532c
refs/heads/master
2021-05-28T00:42:15.304101
2014-03-26T19:16:45
2014-03-26T19:16:45
null
0
0
null
null
null
null
UTF-8
C++
false
false
507
cpp
#include "appstate.h" extern PUMCommunication* AppState::commPort; AppState::AppState() { } AppState::~AppState() { } void AppState::SetCommPort(PUMCommunication* newCommPort) { if(commPort != NULL) delete commPort; commPort = newCommPort; } void AppState::Initialize() { commPort = NULL; ...
[ "tomasz.lewowski@wp.eu" ]
tomasz.lewowski@wp.eu
c594802bbeb873945f618bff3e2a80dee2425b9d
dd656493066344e70123776c2cc31dd13f31c1d8
/MITK/Modules/PlanarFigure/Testing/mitkPlanarFigureIOTest.cpp
8034bdc95fce220e8ac7ef449de620b5a7319cd0
[]
no_license
david-guerrero/MITK
e9832b830cbcdd94030d2969aaed45da841ffc8c
e5fbc9993f7a7032fc936f29bc59ca296b4945ce
refs/heads/master
2020-04-24T19:08:37.405353
2011-11-13T22:25:21
2011-11-13T22:25:21
2,372,730
0
1
null
null
null
null
UTF-8
C++
false
false
21,865
cpp
/*========================================================================= Copyright (c) German Cancer Research Center, Division of Medical and Biological Informatics. All rights reserved. See MITKCopyright.txt or http://www.mitk.org/copyright.html for details. This software is distributed WITHOUT ANY WARRANTY; witho...
[ "dav@live.ca" ]
dav@live.ca
df0718c70745c184304458da3fe2a3603a52d5d8
6e88584a2e2a3e832b551129abca5e63d6b9aea8
/src/drivers/mouse.cpp
2a0f1f193877fc30472efec5c6154984f29c7556
[]
no_license
himnishs/Operating-System
ac13cef1501debd1bf253603ae2dd0a5a1058cdc
430b5d5dd25e2c2c0cd69c1bcaa098c1760b2251
refs/heads/master
2022-11-23T05:40:43.080508
2020-07-28T16:07:34
2020-07-28T16:07:34
279,695,152
0
1
null
null
null
null
UTF-8
C++
false
false
1,877
cpp
#include <drivers/mouse.h> using namespace myos::common; using namespace myos::drivers; using namespace myos::hardwarecommunication; void printf(char*); MouseEventHandler::MouseEventHandler() { } void MouseEventHandler::OnActivate() { } void MouseEventHandler::OnMouseDown(uint8_t button) { } void MouseEventHan...
[ "himnishsapkota@gmail.com" ]
himnishsapkota@gmail.com
ac2d985ccec2de05a25131de260f59b71f01f7a3
fafaa4cd9bc46e8426af6e173e976c9c74098030
/my_client/MyShell/DlgKnightageBase.cpp
528daf53ba86f8b391397150a23d833f55cad7c6
[]
no_license
XinJiangQingMang/fight
2c7cf0af9a3f027eda7b355c193041160053d4a0
41846b583064f2c576d3f238aebcebcbb3bafd17
refs/heads/master
2021-06-12T05:31:38.338725
2016-12-11T05:08:17
2016-12-11T05:08:17
null
0
0
null
null
null
null
GB18030
C++
false
false
13,711
cpp
//********************************************************** // 代码编辑器 //********************************************************** // DlgKnightageBase.cpp : implementation file // #include "stdafx.h" #include "myshell.h" #include "DlgKnightageBase.h" #include "Hero.h" #include "GameMsg.h" #ifdef _DE...
[ "337918198@qq.com" ]
337918198@qq.com
6671be1c41b87045dd6ec7fb785afd3b4cfb80d3
74e850fb809ddc985a05dea59d827d42287e1521
/GameCollectionProject/GameCollectionProject/Game.h
aaebd988e7110f8a5360488a828c48e98e723c54
[]
no_license
a1clark1a/GameCollectionProject
a38d5e7868fd71b1e6f3755f0e5bcf6ff26cb27a
14fafb0f5f21a38fbc0c24c8bee503debe72c94d
refs/heads/master
2021-09-05T00:16:49.499495
2018-01-23T01:19:48
2018-01-23T01:19:48
109,745,332
0
0
null
null
null
null
UTF-8
C++
false
false
3,142
h
#pragma once #include "Window.h" #include "SoundManager.h" #include <vector> #include <fstream> /******Forward Class Declaration*******/ class GameObjects; /********************************************************************* **********************ABSTRACT BASE CLASS***************************** ********************...
[ "a1clark1a@gmail.com" ]
a1clark1a@gmail.com
226e7c2d5f395055cb673172df54095120135003
8ab7f3d641abb673c09c510072cf95662f07149a
/src/sdk/spuce/filters/butterworth_allpass.cpp
015d5c2e3b3a15a6cf876194b45ee70a60ed54e6
[]
no_license
manaovella/zysh101
71d18ed6957ff12db1178767659920a0ff8ba31b
b34b252ab0096a82d7f2418acd6d035e37c71128
refs/heads/master
2021-08-22T09:55:02.669664
2017-11-29T23:01:08
2017-11-29T23:01:08
111,579,687
0
0
null
null
null
null
UTF-8
C++
false
false
756
cpp
// Copyright (c) 2015 Tony Kirke. License MIT (http://www.opensource.org/licenses/mit-license.php) //! \author Tony Kirke #define _USE_MATH_DEFINES #include <spuce/filters/butterworth_allpass.h> namespace spuce { //! creates arrays of coefficents to 2-branch IIR consisting of 1st order allpass filters for a given...
[ "manovella@ultramekbuk.local" ]
manovella@ultramekbuk.local
633b63297f8fcd4f39918d6b65a73a2cbd509214
2d10c664e9ed2b3dd52a1d0bab5f49b1bdbc7bb4
/src/taesooLib/ClassificationLib/math/clust/invert.cpp
0730e30ff3cf81f68b2f8d753e72a04b2e3a6655
[ "MIT" ]
permissive
jackthgu/K-AR_HYU_Deform_Simulation
a236fe661f88f2fbf8fbd4ed676048f19198b2d9
e7c275c8948e1fe3e800ab37b17aa8406b147277
refs/heads/master
2023-03-06T02:06:26.770588
2021-02-15T08:38:11
2021-02-15T08:38:11
323,807,521
1
0
null
null
null
null
UTF-8
C++
false
false
2,716
cpp
#include "stdafx.h" #include <math.h> #include "alloc_util.h" static int G_ludcmp(double **a, int n, int *indx, double *d); static void G_lubksb(double **a, int n, int *indx, double b[]); #define TINY 1.0e-20; /* inverts a matrix of arbitrary size input as a 2D array. */ int invert( double **a, /* input/output ...
[ "gestoru@gmail.com" ]
gestoru@gmail.com
f4da3369c677db1a5762c94ed904168e53e6c24f
3d72f9f6ca3e3a8f0c4b352a42bce200584faee1
/src/Subsystems/Camera.h
bdf8dd9fd03c4f920df5bedd8ddde499e3442898
[]
no_license
ultime5528user/Stronghold
84635b17e90a336c5612d170f85a38ea0bb88b7d
d064042975895fa155a8db228eab7c13156d98ae
refs/heads/master
2022-02-03T20:39:13.815092
2016-11-02T22:19:31
2016-11-02T22:19:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
680
h
#ifndef CAMERA_H #define CAMERA_H #include "Commands/Subsystem.h" #include "WPILib.h" //include sur class Camera: public Subsystem { private: std::shared_ptr<USBCamera> cam; IMAQdxSession session; Image* frame; double FOV_X = 23.99; double FOV_Y = 18.46; double CAMERA_ANGLE = 28.0; double CAMERA_HEIGHT = 0...
[ "keranna.first@gmail.com" ]
keranna.first@gmail.com
778d939a8a955fa7d05ec73c4e8e3b33e507bff7
6e7e7c4fb3c23e397edb2b4391a25d13bdabe196
/src/qt/bitcoin.cpp
216cedfcba06be5b9628ceb180137d501b03ba89
[ "MIT" ]
permissive
c0ffer/c0c0
69f1e3dfbafb9556e224f131c7b3bd52b2a937f6
3666320c92654bc9dad513537b9b0d4de7f085c7
refs/heads/master
2021-01-10T12:56:17.451591
2015-12-16T20:22:54
2015-12-16T20:22:54
46,821,253
0
0
null
null
null
null
UTF-8
C++
false
false
10,787
cpp
/* * W.J. van der Laan 2011-2012 */ #include <QApplication> #include "bitcoingui.h" #include "clientmodel.h" #include "walletmodel.h" #include "optionsmodel.h" #include "guiutil.h" #include "guiconstants.h" #include "init.h" #include "util.h" #include "wallet.h" #include "ui_interface.h" #include "paymentserver.h" ...
[ "info@c0ffer.com" ]
info@c0ffer.com
a5f5a308a66daa4c78369442aab1f2bbd0f8bc52
5e8d200078e64b97e3bbd1e61f83cb5bae99ab6e
/main/source/src/protocols/frag_picker/scores/AtomBasedConstraintsScore.hh
02b7f3c0277c2982516ef30d8034365681ba43b6
[]
no_license
MedicaicloudLink/Rosetta
3ee2d79d48b31bd8ca898036ad32fe910c9a7a28
01affdf77abb773ed375b83cdbbf58439edd8719
refs/heads/master
2020-12-07T17:52:01.350906
2020-01-10T08:24:09
2020-01-10T08:24:09
232,757,729
2
6
null
null
null
null
UTF-8
C++
false
false
4,917
hh
// -*- mode:c++;tab-width:2;indent-tabs-mode:t;show-trailing-whitespace:t;rm-trailing-spaces:t -*- // vi: set ts=2 noet: // // (c) Copyright Rosetta Commons Member Institutions. // (c) This file is part of the Rosetta software suite and is made available under license. // (c) The Rosetta software is developed by the co...
[ "36790013+MedicaicloudLink@users.noreply.github.com" ]
36790013+MedicaicloudLink@users.noreply.github.com
5c97b681755b5cdbfb365aabb9fed99f471e63c0
78918391a7809832dc486f68b90455c72e95cdda
/boost_lib/boost/units/systems/cgs/area.hpp
a2b532c67ff886ab4d7492cca58bf0265cfbc32c
[ "MIT" ]
permissive
kyx0r/FA_Patcher
50681e3e8bb04745bba44a71b5fd04e1004c3845
3f539686955249004b4483001a9e49e63c4856ff
refs/heads/master
2022-03-28T10:03:28.419352
2020-01-02T09:16:30
2020-01-02T09:16:30
141,066,396
2
0
null
null
null
null
UTF-8
C++
false
false
959
hpp
// Boost.Units - A C++ library for zero-overhead dimensional analysis and // unit/quantity manipulation and conversion // // Copyright (C) 2003-2008 Matthias Christian Schabel // Copyright (C) 2008 Steven Watanabe // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt...
[ "k.melekhin@gmail.com" ]
k.melekhin@gmail.com
462e08c3d2145b71b1f075725e5e7802147b43d4
3032ffadd17f65a0b3658884dbc09f2d5d182dfb
/src/ast/FunctionCall.hh
4a041c49c09253a9a1c0c3c262c2fe222ba553eb
[ "MIT" ]
permissive
walecome/seal
86dfeffa4db4e11c3467ec913be605eaa43319ed
8339b4d7ac000e84240b60cb512599328378d1ef
refs/heads/master
2022-11-15T22:28:11.743692
2022-10-31T21:58:15
2022-10-31T21:58:15
208,805,338
2
0
null
null
null
null
UTF-8
C++
false
false
888
hh
#pragma once #include <vector> #include "ArgumentList.hh" #include "Expression.hh" #include "FunctionDecl.hh" #include "Token.hh" class FunctionCall final : public Expression { MAKE_NONCOPYABLE(FunctionCall) MAKE_NONMOVABLE(FunctionCall) AST_NODE_NAME(FunctionCall) AST_DUMPABLE() AST_ANALYZABLE(...
[ "alexander.wilkens96@gmail.com" ]
alexander.wilkens96@gmail.com
03041ed31876451bcad29d0a6d2c9f05f034f66d
cb10193095b0658cd6041c0a1048abd82103ce91
/examples/pppbayestree/gpstk/GPSAlmanacStore.cpp
0148c56bc1b27ee1c1e923809a7560b77d106349
[ "BSD-3-Clause", "BSD-2-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
chengwei920412/minisam_lib
41c810471306badf862cecd2a4d1f1b383aa54a0
e2e904d1b6753976de1dee102f0b53e778c0f880
refs/heads/master
2023-03-17T09:36:35.679579
2020-03-15T05:52:35
2020-03-15T05:52:35
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,516
cpp
#pragma ident "$Id$" //============================================================================ // // This file is part of GPSTk, the GPS Toolkit. // // The GPSTk 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 S...
[ "shaolin.lv.bit@gmail.com" ]
shaolin.lv.bit@gmail.com
d448ea74b68b78b82c13d03893fdd9ab72b36736
0aeb3a5ebf6c726f20fc02e7029b8d1f50410bfc
/main.h
1e6d844a74a9c6e7effb89101c4e71011808bfbb
[]
no_license
bhughes1706/Record-Tracker
d0abf17cffdbdfc4c6add80d79e0867ff1aeb3e8
4e04108af82a2e0f318275ba5c6a443dcf7643c8
refs/heads/master
2020-04-17T09:43:40.217448
2019-02-02T19:25:14
2019-02-02T19:25:14
166,470,607
0
0
null
null
null
null
UTF-8
C++
false
false
421
h
#include "table.h" #include "seven.h" #include "seventy_eights.h" #include "boxset.h" #ifndef RECORD_TRACKER_MAIN_H #define RECORD_TRACKER_MAIN_H //prototypes for main.cpp int menu(); int import(std::string, table &); int display_all(table &); int edit(table &); int delete_item(table &); int add(table &); int load_us...
[ "bhughes1706@yahoo.com" ]
bhughes1706@yahoo.com
ad6690c9deef7dd59dafb56d348d939d483ff0d3
58fd5f56183e9c3c8303d83cb54c68f4296676c8
/src/core/camera-trigger/camera-trigger.cpp
559e9f0a4e71130b91af2b576e03b2656af13a87
[]
no_license
raspyweather/smartStarTracker
12bc854745cec845541dff73103553cb359f0422
54df92cb5f8511af3ef4184c24a1e5b8f691d4a3
refs/heads/main
2023-06-03T11:39:55.353787
2021-06-25T16:10:40
2021-06-25T16:10:40
380,291,243
0
0
null
null
null
null
UTF-8
C++
false
false
1,121
cpp
#include <Arduino.h> #include "config/pin_configurations.h" #include "camera-trigger.h" #include "logger.h" void CameraTrigger::setInterval(ulong mSecondsTrigger, ulong mSecondsBreak) { this->TriggerTimeMs = mSecondsTrigger; this->TriggerBreakMs = mSecondsBreak; } void CameraTrigger::setState(bool state) { ...
[ "raspyweather@gmail.com" ]
raspyweather@gmail.com
c736469b5d198bef83f0ea35ff82b701ef71cc77
c2d270aff0a4d939f43b6359ac2c564b2565be76
/src/content/browser/frame_host/navigator_impl.h
4c198a2d9ea3449b1f73552867461b273be6258f
[ "BSD-3-Clause" ]
permissive
bopopescu/QuicDep
dfa5c2b6aa29eb6f52b12486ff7f3757c808808d
bc86b705a6cf02d2eade4f3ea8cf5fe73ef52aa0
refs/heads/master
2022-04-26T04:36:55.675836
2020-04-29T21:29:26
2020-04-29T21:29:26
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,491
h
// 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. #ifndef CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_IMPL_H_ #define CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_IMPL_H_ #include <memory> #include "base/macros.h" #in...
[ "rdeshm0@aptvm070-6.apt.emulab.net" ]
rdeshm0@aptvm070-6.apt.emulab.net
7cc88003a10d638351c5d910d8808d78948c4784
7a672da33878c07a22222f0c1488062376638bae
/test/TestApp/PlayFabQoSTest.cpp
b87449c2570062596be32ce3f7f4568c0583af3e
[ "Apache-2.0" ]
permissive
jplafonta/XPlatCppSdk
a9b41a23d5a473541334569e29b39a1ed65637e0
895dcec4c075849707669422b1e6721fbde5d00c
refs/heads/master
2023-03-21T17:53:36.928479
2021-02-08T20:46:30
2021-02-08T20:46:30
343,588,489
0
0
Apache-2.0
2021-03-09T21:36:09
2021-03-01T23:41:01
null
UTF-8
C++
false
false
3,156
cpp
// Copyright (C) Microsoft Corporation. All rights reserved. #include "TestAppPch.h" #if defined(PLAYFAB_PLATFORM_WINDOWS) || defined(PLAYFAB_PLATFORM_XBOX) #include <thread> #include <chrono> #include <playfab/PlayFabClientApi.h> #include <playfab/PlayFabClientDataModels.h> #include <playfab/PlayFabClientInstanceAp...
[ "jenkins-bot@playfab.com" ]
jenkins-bot@playfab.com
5d33a619dbd4e488812dc54a11215d123c22c47b
eee4e1d7e3bd56bd0c24da12f727017d509f919d
/Case/case7/play/case0/Case/case1/2700/k
a4be6bddaf1f6a373f3e2e3cf486f109cbd8914f
[]
no_license
mamitsu2/aircond5_play5
35ea72345d23c5217564bf191921fbbe412b90f2
f1974714161f5f6dad9ae6d9a77d74b6a19d5579
refs/heads/master
2021-10-30T08:59:18.692891
2019-04-26T01:48:44
2019-04-26T01:48:44
183,529,942
0
0
null
null
null
null
UTF-8
C++
false
false
8,488
/*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Version: 6 \\/ M anipulation | \*-------...
[ "mitsuaki.makino@tryeting.jp" ]
mitsuaki.makino@tryeting.jp
f0cdc64ffa19978559cde8493ec828a99b26babd
19d431d96ba0fd4dde3915cebfc1b59c3b7f11ad
/jm_raytracing/RayTracing/Ray.cpp
4c306f9f5f566b503363042a520e0092e2916658
[]
no_license
botelhorui/p3d2016
f76b465bf5bf21144f9c1b21fd52faed952f0de5
972358cb5096e77f1c3bd1da993dd24dc32131f8
refs/heads/master
2021-06-01T00:39:02.213303
2016-04-26T22:05:53
2016-04-26T22:05:53
52,900,605
0
0
null
null
null
null
UTF-8
C++
false
false
50
cpp
#include "Ray.h" Ray::Ray(){ } Ray::~Ray(){ }
[ "jna.monteiro@gmail.com" ]
jna.monteiro@gmail.com
4c0e8cc33ff20aae8c0c5af66a8bdb1d2d101988
b56f3194e764426ea7463e64d6bef989f34e4e0b
/MainWindow.cpp
a2cfc1306ed97535fd54a8164cb19867d672ba59
[]
no_license
MaestroStyle/VkWordsAnalyzer
ffa52ea8d27c80a792342510d5974a48aac57d92
ab38be6933843def652c4ba43fb78a539b3da445
refs/heads/master
2023-05-12T10:46:26.926973
2021-06-06T18:42:38
2021-06-06T18:42:38
374,071,931
0
0
null
null
null
null
UTF-8
C++
false
false
3,160
cpp
#include "MainWindow.h" MainWindow::MainWindow(QWidget *parent) : QWidget(parent) { _id_label = new QLabel("ID пользователя:",this); _id_field = new QLineEdit(this); _start_button = new QPushButton("Анализировать", this); _text_edit = new QTextEdit(this); _text_edit->setReadOnly(true); _la...
[ "maestrostyle16@gmail.com" ]
maestrostyle16@gmail.com
5985ea4a1bed4dc2997a01da54b5066667c9c325
109513f659285040d08e8250aba92a59ba876c64
/OffworldInvader/Intermediate/Build/Win64/UE4Editor/Inc/OffworldInvader/SequencerNode.generated.h
7d15d6e2a1ec09c5893bc7c2ef1b76bcf323a95d
[]
no_license
LO177/GVEOffworld
fc483e974783f4b511caacaafb048a6df15d9b2e
aac0bc78836582e49458094d835d8a10d7722279
refs/heads/main
2023-06-11T13:20:49.274766
2021-07-09T13:58:55
2021-07-09T13:58:55
383,160,074
0
0
null
null
null
null
UTF-8
C++
false
false
4,390
h
// Copyright Epic Games, Inc. All Rights Reserved. /*=========================================================================== Generated code exported from UnrealHeaderTool. DO NOT modify this manually! Edit the corresponding .h files instead! ========================================================================...
[ "43782203+LO177@users.noreply.github.com" ]
43782203+LO177@users.noreply.github.com
fc0f4b5a29b87b8f706cd5516f243d7b8551ce99
69f00175160454108a43cea1928671a93c216535
/game_code/game_code.ino
30618c3d6720acc6eac7bf6d8f46c9cefa0211df
[]
no_license
CriticalMaking/game_code
e1eaf40ee28bbf5470c8999fe6a5b794ce1a03e7
3a7b11f5294d6ab1e3320a684ed7e5ed9b0e1d05
refs/heads/master
2020-09-21T05:24:28.079972
2019-12-02T14:49:48
2019-12-02T14:49:48
224,693,381
0
0
null
null
null
null
UTF-8
C++
false
false
6,698
ino
/* * Game_code * * Fall 2019 */ #include <Wire.h> #include <Adafruit_GFX.h> #include <Adafruit_SSD1306.h> #include <Arduino.h> #include <SPI.h> #include "Adafruit_BLE.h" #include "Adafruit_BluefruitLE_SPI.h" String RECEIVE; String SENDING; char recArray[4]; String BUTTONPRESSES; //config for bluetooth #de...
[ "matt.ratto@utoronto.ca" ]
matt.ratto@utoronto.ca
e5b96169d7278aaeb037ab859049dda27f908847
87ed2576d00925595bae7ff29a4f55ce468b9519
/Include/Qgfx/Graphics/Vulkan/FenceVk.hpp
73ce27b45120d456686d4c507b812c58b5eca577
[ "MIT" ]
permissive
quantumgfx/QuantumGfx
2cb214dd164cd8eb08aa05c2f7bfab4cf0cffe6e
dabfda65241d488bb2231f1b83641c1f4db43139
refs/heads/master
2023-04-21T23:39:09.883602
2021-05-14T16:37:21
2021-05-14T16:37:21
352,230,244
0
0
null
null
null
null
UTF-8
C++
false
false
860
hpp
#pragma once #include "BaseVk.hpp" #include "RenderDeviceVk.hpp" #include "../IFence.hpp" #include "../../Common/RefAutoPtr.hpp" namespace Qgfx { enum class FenceVkType { Standard = 0, Timeline }; class FenceVk : public IFence { public: FenceVk(IRefCounter* pRefCounter) : IFence(pRefCounter) { ...
[ "42706837+timith@users.noreply.github.com" ]
42706837+timith@users.noreply.github.com
651ed78d749e2c19010fecd4894b24deaa34e68b
f6439b5ed1614fd8db05fa963b47765eae225eb5
/mojo/shell/context.cc
7400d1ce6cb7bbdff1d6db39f6064f1335697e7b
[ "BSD-3-Clause" ]
permissive
aranajhonny/chromium
b8a3c975211e1ea2f15b83647b4d8eb45252f1be
caf5bcb822f79b8997720e589334266551a50a13
refs/heads/master
2021-05-11T00:20:34.020261
2018-01-21T03:31:45
2018-01-21T03:31:45
118,301,142
2
0
null
null
null
null
UTF-8
C++
false
false
5,505
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 "mojo/shell/context.h" #include "build/build_config.h" #include "base/command_line.h" #include "base/lazy_instance.h" #include "base/memory/scop...
[ "jhonnyjosearana@gmail.com" ]
jhonnyjosearana@gmail.com
65ec48fa219de2c7fff6b6892c244b8be218cded
9cf0420ef1d9545a059a8d734ada6e2577e1be8d
/projects/c2/Soundex.h
d76fb2a4cdd392b311dcb37e5707138c3e15a227
[]
no_license
mark-sanders/vagrant-lotdd
0e6d5bcef13f28298c2bdc8d24526a8bb701c524
05f5dc8b30c7f096d434cd2c4b580f483388ee83
refs/heads/master
2016-09-05T18:53:23.440085
2015-04-16T15:01:54
2015-04-16T15:01:54
33,931,108
0
0
null
null
null
null
UTF-8
C++
false
false
2,282
h
#include <string> #include <map> class Soundex { public: std::string encode(const std::string& raw) const { const std::string& word = toUpperAlpha(raw); if (word.empty()) { return ""; } else { return zeroPad(head(word) + wordsToDigits(word)); } } pri...
[ "masander@capgemini.com" ]
masander@capgemini.com
830240d43b7c9790f5461c9959c046f1e138e77b
4fb0f7f6e9ea57455cfffae6f79409d2168d713e
/jobdu/jobdu1156.cpp
d4f5ba78f7ee8b45d7186ae515a6e5b85d3caa0d
[]
no_license
201341/AlgorithmSol
a0e937de42553a519f7dd15da43c25157332980f
a3c45a35c26704f76a7a3108cf042aa7bff4fb31
refs/heads/master
2021-07-13T03:45:42.030088
2017-10-18T16:03:53
2017-10-18T16:03:53
107,430,652
0
0
null
null
null
null
UTF-8
C++
false
false
588
cpp
//#include <stdio.h> //#include <string.h> // // //int main() { // int n,m; // int a[200]; // int b[200]; // while(scanf("%d%d",&n,&m) != EOF) { // memset(a,0,sizeof(a)); // memset(b,0,sizeof(b)); // for(int i=0;i<n;++i) { // scanf("%d",&a[i]); // } // for(int i=0;i<n;++i) { // for(int j=0;j<n;+...
[ "s1186093704@gmail.com" ]
s1186093704@gmail.com
4b37d92195e708a1ae4a7eca0652a6e7b8ab705a
d0e1319e0e57354baf9eda1fca65b50ac31ac2ef
/AV_Server/common/rutil/ServerProcess.cxx
c7220f3ffb2d5c694af6f43f9514d975d3c2fce1
[]
no_license
achishex/xx_test
74765b0421d11b4b45c40abe93777135a7239f97
450b9fb541b161dc7c49c3c3b7dcfc6c6d22c442
refs/heads/master
2020-03-31T21:32:05.686442
2018-11-23T11:22:28
2018-11-23T11:22:28
152,584,182
0
2
null
null
null
null
UTF-8
C++
false
false
7,383
cxx
#if defined(HAVE_CONFIG_H) #include "config.h" #endif #ifndef WIN32 #include <grp.h> #include <pwd.h> #include <sys/types.h> #include <unistd.h> #endif #include <iostream> #include <fstream> #include <signal.h> #include <stdexcept> #include "rutil/ServerProcess.hxx" #include "rutil/Log.hxx" #include "rutil/Logger...
[ "huwusheng@hdsc.com" ]
huwusheng@hdsc.com
cc832700d784225adf9359582635a451ede8c391
a4cdcc0fe02088dc7de9184e50ca1ae7441851a9
/includes/GUI/IGuiFacade.h
7072e7869f183d8427ba219b89e3733be2397b9d
[]
no_license
fpiriou/ChessGame
49cbebd4b79758b00724e28eb138b24f9aaed528
a45a3a791eefca4dc9aed7a223885aab32303fac
refs/heads/main
2021-06-16T05:58:08.752775
2021-05-08T13:54:38
2021-05-08T13:54:38
202,896,985
0
0
null
null
null
null
UTF-8
C++
false
false
346
h
#pragma once #include "GUI/IMouse.h" #include <string> class IGuiFacade { public: virtual ~IGuiFacade() {} virtual void createWindow(std::string title) = 0; virtual bool isMainWindowOpen() = 0; virtual void clear() = 0; virtual void draw() = 0; virtual void checkCloseRequest() = 0; virtual ...
[ "fabien.piriou@gmail.com" ]
fabien.piriou@gmail.com
ffd6f944e4cda9d66f490a46054e3a07a1875749
cca9eb07ef96543d0c91f538c4e1443f0ce19b72
/Class/main.cpp
907b02d1fd3ed8b8294c61ab0bcf49be671f7081
[]
no_license
mandulaj/CPP-Tests
2226e4e560f3070b4feec87b421b045ce624f10f
d26dbf8ca2dcf0afa38ea833967e6449d5dcb917
refs/heads/master
2021-05-28T06:47:14.918025
2015-01-12T22:43:18
2015-01-12T22:43:18
null
0
0
null
null
null
null
UTF-8
C++
false
false
119
cpp
#include <iostream> using namespace std; int main() { int x[5] = {1,2,3,4,5}; cout << x[5]; return 0; }
[ "jakub.aludnam@gmail.com" ]
jakub.aludnam@gmail.com
2e68def409a865dccbaa67fc908e84e47559b442
44b30d88789cd0351bbc258c9b979c43e501d6b1
/src/test/allocator_tests.cpp
fe25fd563c6a24587e1d98799de9f6ef0b8118df
[ "MIT" ]
permissive
misternode/mogwai
d7b72f4a8754edb2e35a72670d6c08596705e502
b67457c5f1112c31463555d9c8427969827ff279
refs/heads/master
2020-03-26T09:02:11.700769
2018-08-29T18:19:03
2018-08-29T18:19:03
144,732,346
0
0
MIT
2018-08-14T14:35:03
2018-08-14T14:35:02
null
UTF-8
C++
false
false
3,918
cpp
// Copyright (c) 2012-2015 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "util.h" #include "support/allocators/secure.h" #include "test/test_mogwai.h" #include <boost/test/unit_test.hpp> ...
[ "randall.peltzer@protonmail.com" ]
randall.peltzer@protonmail.com
7960c87e25423b0b7200e96a04ca0bf3a9eee631
97adf3103e3e3c6e6bea64f24220e0691092ca99
/rc_autonomous/rc_autonomous.ino
c61008f0fab50200b4309412607c64c52e2fa9cb
[]
no_license
devfire/arduino
52194302a420899a4afbd2581712807fa4ea2065
2837e8a5fba87f2f09fb75123320e60b99ce4e08
refs/heads/master
2021-08-01T18:21:24.440839
2021-07-26T03:29:56
2021-07-26T03:29:56
125,244,547
0
0
null
null
null
null
UTF-8
C++
false
false
5,085
ino
#include <Wire.h> #include <Adafruit_MotorShield.h> #include "utility/Adafruit_MS_PWMServoDriver.h" #include <Servo.h> #include <VL53L0X.h> VL53L0X frontSensor; // Create the motor shield object with the default I2C address Adafruit_MotorShield AFMS = Adafruit_MotorShield(); // Select which 'port' M1, M2, M3 or M4. ...
[ "igor@devfire.io" ]
igor@devfire.io
2dea7275ffcd905d8082f8ab954bb12d4fbb09c5
b7ea1ea893496cb88da75321c485e4928dc8e78f
/cmakeFlappy-build/moc_eleground.cpp
71a9255ddb30ec9f2244e46d6ecd91c5049da77c
[]
no_license
maneul198/flappy-bird-segundaMaquina
c7cdf638a85a7ec726aa2ac00b057b1b2d34bb10
3e0976dcbbae04816a192d41da15ee1dde5916f2
refs/heads/master
2021-07-05T19:54:32.864397
2017-09-28T01:01:15
2017-09-28T01:01:15
105,085,249
0
0
null
null
null
null
UTF-8
C++
false
false
2,618
cpp
/**************************************************************************** ** Meta object code from reading C++ file 'eleground.h' ** ** Created by: The Qt Meta Object Compiler version 67 (Qt 5.5.1) ** ** WARNING! All changes made in this file will be lost! ***********************************************************...
[ "alvaro@alvaro-H110M4-C23" ]
alvaro@alvaro-H110M4-C23
7b36f0985ff362575944d23bdd60f95317e387a8
0675efb6963d21c97e7cd2616d509c79fa45a031
/BOJ/11403-경로 찾기.cpp
75856d0f40069d97669a50a21b4f701d3e7df72e
[]
no_license
gusdnr9875/Algorithm
c7fb47b6cbda318bb3a9d0a33cd3c547f2832dd0
bb477bb83a5eec2e461692a08509a167d579d0d7
refs/heads/master
2020-08-12T20:58:09.062515
2020-05-04T13:32:13
2020-05-04T13:32:13
214,841,944
1
1
null
null
null
null
UTF-8
C++
false
false
799
cpp
#include <iostream> using namespace std; int n = 0; int arr[101][101] = { 0 }; bool visited[101]; void dfs(int y, int x) { for (int i = 1; i <= n; i++) { if (arr[x][i] == 1 && !visited[i]) { visited[i] = 1; dfs(y, i); } } } int main() { cin >> n; for (int i = 1; i <= n; ...
[ "gusdnr9875@naver.com" ]
gusdnr9875@naver.com
c499fa013b01e90aea571aaa56e11bbf559981d2
019b1b4fc4a0c8bf0f65f5bec2431599e5de5300
/ui/gl/gl_bindings_autogen_gl.cc
c768ae75e3503a780d47602dfa97e4400aadad5f
[ "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
579,494
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. // // This file is auto-generated from // ui/gl/generate_bindings.py // It's formatted by clang-format using chromium coding style: // clang-format -i -...
[ "wangpp_os@sari.ac.cn" ]
wangpp_os@sari.ac.cn
5800b7ff9597708a2c6cf12e78a968ac89aaaff0
3442fa55ad884191a7b3f026a9632b7bffa89f36
/qt-packages/QtClasses/vtkQtExamples/RenderWindowNoUiFile/mainwindow.h
91948d96422841cb21b3f0cdd623b1bfdb66ebdb
[]
no_license
santiagoom/qt-packages
c109e683729b346ecdbc6d6f149fc3e43f1b0f07
6e2dc3b6f891003756b9566640a4315cd1bce41b
refs/heads/main
2023-07-06T16:46:04.676604
2023-07-04T10:50:24
2023-07-04T10:50:24
312,006,629
0
0
null
null
null
null
UTF-8
C++
false
false
355
h
#ifndef MAINWINDOW_H #define MAINWINDOW_H #include <QMainWindow> namespace Ui { class MainWindow; } class MainWindow : public QMainWindow { Q_OBJECT public: explicit MainWindow(QWidget *parent = nullptr); ~MainWindow(); void RenderWindowNoUiFile(); private: Ui::MainWindow *...
[ "ingenuity_zero@163.com" ]
ingenuity_zero@163.com
1db1940a7c9642dd80f385d6f379fcad07671fd5
16bb1ca4f642a3d9132df34c1a7a9afbc69f1ac5
/TommyGun/Plugins/CodeEditor/TiledMapParser/TiledMapParserPlugin.h
05bc3d0ee1bd0b2839d357fd5c8dc4bdfc435968
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
tonyt73/TommyGun
6138b81b447da0b448bcecb893ed46cadcf56c80
19e704243bc02500193fe798bd3bee71f75de094
refs/heads/master
2023-03-17T10:19:08.971368
2023-03-11T23:39:37
2023-03-11T23:39:37
89,913,869
41
6
NOASSERTION
2023-03-11T22:41:39
2017-05-01T10:02:20
C++
UTF-8
C++
false
false
3,729
h
/*--------------------------------------------------------------------------- (c) 2004 Scorpio Software 19 Wittama Drive Glenmore Park Sydney NSW 2745 Australia ----------------------------------------------------------------------------- $Workfile:: ...
[ "tonyt73@gmail.com" ]
tonyt73@gmail.com
1047ec3072a521c6d62c546e56eddc504663528c
b0e516317c7f4eed15bb4042bfb74849662b2b9f
/Code/Market.h
5709e343036c8d791cf825a02dadb98e1e0f777e
[]
no_license
OliverLarsson/portfolio-manager
3b1b6089f3110fbdc7ea05db2dd1cfdab0427970
643a1c6731d161095999fe81d22b3c0f26497af2
refs/heads/master
2020-03-31T03:09:15.057194
2018-12-14T19:05:15
2018-12-14T19:05:15
151,854,971
0
0
null
null
null
null
UTF-8
C++
false
false
1,461
h
/** * Market.h * Header for the Market class */ #ifndef _Market_H_ #define _Market_H_ // Libraries #include <iostream> //#include <Ultralight/Ultralight.h> // include for Ultralight API #include <sqlite3.h> // header file for the SQLite database using namespace std; // runs queries for stocks in decided secto...
[ "oliver.larsson@colorado.edu" ]
oliver.larsson@colorado.edu
e313f741cff71403b1a38479f11f3afb2828e59a
bb94cfd795a044e5aded1f6dcac8ebec647c2b3d
/DynamicProgramming/Fibonacci/FibonacciUsingRecursionAndDpTd.cpp
ed2a3da37f56c6ffde59f2ce99116e9b3233173d
[]
no_license
kshitijvarshne1/Dsalgo
5a907b245f91c7b91b5ca4161c078daba5a68f30
b22809ca1102daa80e728a68ff3092b1672f8b58
refs/heads/master
2023-07-11T13:22:39.676487
2021-08-11T11:27:47
2021-08-11T11:27:47
306,321,503
0
0
null
null
null
null
UTF-8
C++
false
false
878
cpp
/* * Created by CLion IDE. * Author: Kshitij Varshney (kshitijvarshne1) * Date: 21-Nov-20 * Time: 11:33 PM * File: FibonacciUsingRecursionAndDpTD.cpp */ # include<iostream> # include<climits> # include<cmath> # include<algorithm> # include<bits/stdc++.h> # include<cstring> # include<iomanip> # include<vecto...
[ "kshitijvarshney92@gmail.com" ]
kshitijvarshney92@gmail.com
a1486235bbb2112a491e2684b1396366d6162add
bfbb718c01fcf606add1b546ca206eb1ea981f0a
/jtc/plugin/jtcSignalProducer.h
8afb92f53b9ee7c0cc4c4008a6d0d92543e249c6
[]
no_license
Taburis/myProcesses
55d6d9f4f704ecdc12a74a8444795f026157ef8f
4fcaa29387e1b7c82920d837001d7559bca5076f
refs/heads/master
2022-09-26T18:23:51.747581
2022-09-18T07:17:14
2022-09-18T07:17:14
198,701,691
0
4
null
2019-09-17T13:24:13
2019-07-24T19:57:58
Python
UTF-8
C++
false
false
13,109
h
#ifndef JTCSIGNALPRODUCER_H #define JTCSIGNALPRODUCER_H #include "TH1.h" #include "TF1.h" #include "TFitResult.h" #include "myProcesses/jtc/plugin/jtcTH1Player.h" //#include "myProcesses/jtc/plugin/seagullFitter.h" //#include "myProcesses/jtc/plugin/plotLib.h" #include "myProcesses/liteFrame/plugin/Utility.h" #include ...
[ "xwang241@uic.edu" ]
xwang241@uic.edu
dde5dd64e6a26986dcac300ccacf936142040b9a
05b5504b57b51a82c797947a3b9fbd49b44cc3d3
/Day 14/Matrix Search.cpp
6d6e24bf3ff099af40a6a2dc193450ebf0795d3d
[]
no_license
PurvaKar/40-Days-of-Code
c95c15878cbda1194b874736da038985d1dee16e
67b9d6287a52452bb145ab2b09bb63fd2a3b6ffd
refs/heads/master
2022-11-17T10:08:18.146531
2020-07-17T08:05:04
2020-07-17T08:05:04
263,660,965
0
0
null
null
null
null
UTF-8
C++
false
false
587
cpp
int Solution::searchMatrix(vector<vector<int> > &A, int B) { int i, j, n, m, low, high, mid; n=A.size(); m=A[0].size(); for(i=0;i<n;i++) { if(B>=A[i][0] && B<=A[i][m-1]) { if(B==A[i][0] || B==A[i][m-1]) return 1; break; } } ...
[ "38216228+PurvaKar@users.noreply.github.com" ]
38216228+PurvaKar@users.noreply.github.com
bd58171fe8c479f17e8ace39a7ccfd64ca8b4558
3a1f8e95e438ea3b6b2f5fec9a09c0477cd92d5f
/ansictrl.h
314c2f4c9f2c3abbcc12f75e83d8427aae5150b3
[ "MIT" ]
permissive
lionkor/ansictrl
f5dd1a5b94f3de1481a2c35c38d259c4dca9731b
f374622d0cedd953e4528c64272e0c628f95c449
refs/heads/master
2021-01-06T16:08:10.197918
2020-02-18T15:06:08
2020-02-18T15:06:08
241,390,915
0
0
null
null
null
null
UTF-8
C++
false
false
5,279
h
#ifndef ANSICTRL_H #define ANSICTRL_H #include <cstdint> #include <cstdio> namespace ansi { using u32 = std::uint32_t; static constexpr const char* ESC = "\033["; } namespace ansi::graphics::color::fg { static constexpr const char* BLACK = "30"; static constexpr const char* RED = "31"; s...
[ "development@kortlepel.com" ]
development@kortlepel.com
bc63c59d3e5a314796769877e00bcd9f08379091
cbba4843ce29e263bb6a4b371547cdc7b1cde095
/DISCONTINUED/OpenAphid/Android/HttpDownload+Android.cpp
8e58fe4cc01987fbaa023bf0fcab1f9b5cdccaf5
[ "Apache-2.0" ]
permissive
openaphid/Runtime
e5c15adbec0c8d64a3cee4f0e707ff4127387b5f
f2d779b45632bba438e2a9a655166f4963274425
refs/heads/master
2021-06-20T08:45:50.765804
2021-03-10T09:10:26
2021-03-10T09:10:26
4,126,273
56
5
null
null
null
null
UTF-8
C++
false
false
3,506
cpp
/* Copyright 2012 Aphid Mobile 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 writing, software...
[ "openaphid@gmail.com" ]
openaphid@gmail.com
ada5ac189479c5bea58a5936a04f4fd3b0214de5
88ae8695987ada722184307301e221e1ba3cc2fa
/third_party/blink/renderer/core/css/css_font_face_src_value.cc
cf6903c2eddb68479ee519352bd17f812b619881
[ "Apache-2.0", "LGPL-2.0-or-later", "MIT", "GPL-1.0-or-later", "LGPL-2.0-only", "BSD-2-Clause", "LGPL-2.1-only", "BSD-3-Clause", "LicenseRef-scancode-warranty-disclaimer", "GPL-2.0-only", "LicenseRef-scancode-other-copyleft" ]
permissive
iridium-browser/iridium-browser
71d9c5ff76e014e6900b825f67389ab0ccd01329
5ee297f53dc7f8e70183031cff62f37b0f19d25f
refs/heads/master
2023-08-03T16:44:16.844552
2023-07-20T15:17:00
2023-07-23T16:09:30
220,016,632
341
40
BSD-3-Clause
2021-08-13T13:54:45
2019-11-06T14:32:31
null
UTF-8
C++
false
false
8,201
cc
/* * Copyright (C) 2007, 2010 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 condit...
[ "jengelh@inai.de" ]
jengelh@inai.de
a70b6f04d4cbbb0fc33c3899e883f8ecbdbfd9c4
f81124e4a52878ceeb3e4b85afca44431ce68af2
/re20_2/processor39/40/U
72f5a384069d76bb4a60322bab55bf625313b7ca
[]
no_license
chaseguy15/coe-of2
7f47a72987638e60fd7491ee1310ee6a153a5c10
dc09e8d5f172489eaa32610e08e1ee7fc665068c
refs/heads/master
2023-03-29T16:59:14.421456
2021-04-06T23:26:52
2021-04-06T23:26:52
355,040,336
0
1
null
null
null
null
UTF-8
C++
false
false
20,971
/*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Version: 7 \\/ M anipulation | \*-------...
[ "chaseh13@login4.stampede2.tacc.utexas.edu" ]
chaseh13@login4.stampede2.tacc.utexas.edu
787b076f215124ca5cd579b9d774570c554786aa
40aa8314168fe69c6e217912df978a230738c194
/benchmarks/combinations_tree_benchmark.hpp
c51c4e0938c35d5cab5cd2f1b25081fa19c2e8b1
[ "MIT" ]
permissive
kspinka/discreture
c407dcfad2069741fabaf0561daca2f9fde4154a
ec758378d793c85eac3fa5c8222ed4ad869362fe
refs/heads/master
2020-03-19T19:28:15.693832
2018-06-11T04:01:44
2018-06-11T04:01:44
136,857,427
0
0
null
2018-06-11T01:01:31
2018-06-11T01:01:30
null
UTF-8
C++
false
false
1,624
hpp
#pragma once #include "CombinationTree.hpp" #include "Combinations.hpp" #include "do_not_optimize.hpp" using boost::container::static_vector; // NOLINT inline void BM_CombinationTreeNAP(int n, int k) { using cts = dscr::CombinationTree<int, static_vector<int, 32>>; cts::combination comb(k); std::iota(com...
[ "mraggi@gmail.com" ]
mraggi@gmail.com
40baa6332062baf10722f491c2c31c04b98972a2
d65c8b3175b6ee897b67d9a9f701173ef0294a03
/compiler/IR/nodes/statements/LabelStatement.cpp
8761c97da96884bd683d55a616169404630de88c
[]
no_license
wh4tsername/Mini-Java-Compiler
add16f355e2f1bef9aaf34074ad7b6c35807b5c6
d7984c82adb1b55ab29ad94d30ff225beb958aef
refs/heads/master
2022-08-16T00:03:56.352426
2022-07-31T17:57:06
2022-07-31T17:57:06
243,273,631
5
0
null
2022-07-31T17:57:06
2020-02-26T13:49:18
C++
UTF-8
C++
false
false
274
cpp
#include "LabelStatement.h" #include <utility> using namespace IRT; LabelStatement::LabelStatement(IRT::Label label) : label_(std::move(label)) {} bool LabelStatement::IsLabel() { return true; } void LabelStatement::Accept(Visitor* visitor) { visitor->Visit(this); }
[ "pominov.denis@mail.ru" ]
pominov.denis@mail.ru
291fa83be53b2e03c806cfc8d086f36e313614e9
4ccb6c096ac6ba68fa91a5c257331b20ecabf16e
/gfx/skia/skia/src/core/SkDraw.cpp
d9c44a2b6fe40e0d684288066cc5b15a5aedf24b
[ "LicenseRef-scancode-unknown-license-reference", "BSD-3-Clause" ]
permissive
classilla/tenfourfox
ad7856e9e2309e8d0da2d3eed3090cadf493a413
17b23692fe309927badba0617b7679ed50d46acb
refs/heads/master
2023-07-08T23:59:21.137323
2023-04-20T05:34:54
2023-04-20T05:34:54
40,451,619
247
41
NOASSERTION
2023-06-25T08:42:34
2015-08-09T21:46:01
null
UTF-8
C++
false
false
80,737
cpp
/* * Copyright 2006 The Android Open Source Project * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #include "SkDraw.h" #include "SkBlitter.h" #include "SkCanvas.h" #include "SkColorPriv.h" #include "SkDevice.h" #include "SkDeviceLooper.h" #include "SkFix...
[ "classilla@floodgap.com" ]
classilla@floodgap.com
9980e4467a74b7c134a87cc1ed9ff69b504c152d
a11e7708f1561af71088be5be605462a3f1a9a68
/Bomberman-2/include/Person.h
a222af9b4628820034cbce46d451adad4283bd83
[]
no_license
ChanchyJordan/IPOO-PRACTICAS-
f0158e6dbeacbc892abaefbf42d42ad7672e19d1
e16371dc8b118db2927abc1b58b07a4f87878de8
refs/heads/master
2021-01-21T04:35:31.384302
2016-07-08T00:24:57
2016-07-08T00:24:57
43,787,871
0
0
null
null
null
null
UTF-8
C++
false
false
167
h
#ifndef PERSON_H #define PERSON_H class Person { public: Person(); protected: int positionX; int positionY; }; #endif // PERSON_H
[ "jordan.mendoza@ucsp.edu.pe" ]
jordan.mendoza@ucsp.edu.pe
c87b62d3fc609c3a9e734eb96b80c3c90370e5af
327324b26d2a2efe55e9fc0b9c0c7ebd6cc236c7
/WeChatSDK/Proto/mm/mmemotion.pb.cc
6931c8483b7af6ed59846620541cf2fa2d9523d9
[]
no_license
zhouao/WeChat4iPad
a1b1e43c75a23b033d3e5da9cf133a77c8aed03b
856a1f720f5b8b5a88460659a2c8959a2fdbe74e
refs/heads/master
2023-04-14T04:22:17.167084
2018-08-25T05:25:06
2018-08-25T05:25:06
null
0
0
null
null
null
null
UTF-8
C++
false
true
851,712
cc
// Generated by the protocol buffer compiler. DO NOT EDIT! // source: mmemotion.proto #define INTERNAL_SUPPRESS_PROTOBUF_FIELD_DEPRECATION #include "mmemotion.pb.h" #include <algorithm> #include <google/protobuf/stubs/common.h> #include <google/protobuf/stubs/port.h> #include <google/protobuf/stubs/once.h> #include...
[ "51166611@qq.com" ]
51166611@qq.com
3ae1b3ffac2d69cc1d026f22e766ca83d0191656
2234de675b7b43a0fe618bf5afac41c0baad0c04
/nn-test/Conv3DTest.cpp
a664111ba7855782b338fddf15223be7a44af515
[ "MIT" ]
permissive
dkozyr/nn
88a6f124eae9fec0d42036f144ad867fe3d331fa
0967933240acf900669430fe79170e7b7a26cd12
refs/heads/master
2022-04-28T20:11:04.572076
2022-04-21T17:49:28
2022-04-21T17:49:28
241,710,546
1
0
null
null
null
null
UTF-8
C++
false
false
1,569
cpp
#include "Common.h" #include "layer/Conv3D.h" namespace nn { namespace layer { class Conv3DTest: public ::testing::Test { public: Conv3DTest() = default; protected: template <ExecutorType T> Matrix<T> TestForward(const Matrix<T>& X, const Shape& input, size_t conv_size) const { const auto& N = X....
[ "dkozyr@gmail.com" ]
dkozyr@gmail.com
fa5845fef0d057954d3bec474986b2cc121de588
816cd030a6bdf1c224f56f434d92f8b9192b59a0
/2motors_encoder.ino
3bdc50e872b4c4a69a4fa57105ca028ce03cdf3b
[]
no_license
nzare/Modbot
ad5b2ee3cf2c055f52ff1d8690a67b2c42e6949c
f45638febf133050edc486e828b983aef48ae170
refs/heads/master
2020-04-01T20:11:27.256013
2019-02-17T05:34:38
2019-02-17T05:34:38
153,592,739
0
0
null
null
null
null
UTF-8
C++
false
false
1,800
ino
#define outputA1 2 #define outputB1 7 #define outputA2 2 #define outputB2 7 const int pwm1 = 11; const int enable_pin1 = 3 ; const int in_1 = 8; const int pwm2 = 11; const int enable_pin2 = 3 ; const int in_2 = 8; int ppr; int counter1=0; int counter2=0; int aState1; int aLastState1; int aState2; int aLastState2; float...
[ "40881094+nzare@users.noreply.github.com" ]
40881094+nzare@users.noreply.github.com
8fe626f9ad06457312714c8ba72456e63ed06b08
5a80f56056ac804ac93df97ca1c49d30aed8b2f3
/src/test/main_tests.cpp
5f78204d820591b88be2a5f9bbd64d14e602c785
[ "MIT" ]
permissive
faetos/binkdogcoin
299599c416aa05eeef059f37c94c951613903d01
45debe400509ef0b0cddb4bf0d931949f3c721de
refs/heads/master
2020-03-18T22:35:22.104852
2019-01-02T17:19:36
2019-01-02T17:19:36
135,353,320
0
1
null
null
null
null
UTF-8
C++
false
false
1,659
cpp
// Copyright (c) 2014 The Bitcoin Core developers // Copyright (c) 2014-2015 The Dash developers // Copyright (c) 2015-2017 The PIVX developers // Copyright (c) 2018 The BinkDogCoin developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/m...
[ "faetos@yahoo.com" ]
faetos@yahoo.com
9e51e2dcfb1a1c3e4e2a9914557f541de3b63e80
1872fe4efdae81bb522e8a42dda1dff29d9a4822
/src/MonoVUmeter.cpp
f1964821ee05f2adca54de26f9ccf1a1937a1ca2
[ "MIT", "CC0-1.0", "BSD-3-Clause", "LicenseRef-scancode-public-domain" ]
permissive
dividetoinfinity/AS
2a654333a76f0bb9556cc72011f9823856aad034
63667e94592c8de145b83265e7bb684765264850
refs/heads/master
2021-05-04T18:11:37.036953
2018-02-02T00:41:55
2018-02-02T00:41:55
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,846
cpp
//*********************************************************************************************** // //MonoVUmeter module for VCV Rack by Alfredo Santamaria - AS - https://github.com/AScustomWorks/AS // //*********************************************************************************************** #include "AS.hpp...
[ "freddysc@gmail.com" ]
freddysc@gmail.com
5f2fc2b32d90ef064021105c001baad29fc98a2f
1866157cc59c749f4998fd1a88e904d2526cbe55
/bluebird.cpp
d51ecab34f5c59c7c965e9e66ab9a813333bc603
[]
no_license
jordan787878/pd2-Angrybird
d57ec4e2d965bdcdab70cc9acb960a3309242be4
ff5d8ca4353e51b89b867d91723f62deaf84137a
refs/heads/master
2021-01-20T19:30:37.672380
2016-06-19T03:15:37
2016-06-19T03:15:37
59,888,428
0
0
null
null
null
null
UTF-8
C++
false
false
5,045
cpp
#include "bluebird.h" #include "game.h" extern Game * game; BlueBird::BlueBird(b2World * g_world) { //draw the body setPixmap(QPixmap(":/image/bluebird.png")); setPos(200,game->size().height()-250); game->scene->addItem(this); //set gameitem world to game world Item_world = g_world; Item_ground...
[ "j2855001@gamil.com" ]
j2855001@gamil.com
fa93644bc05a87064c090a6d19ddb095434d2e1c
e373a06452956ed9e0fc33c9deb0b5be14d011c4
/src/plugins/node_editor/Audio/AudioSourceDataModelUI.cpp
ff60e4394c959cc2c02ee4c65080f5fe5b7ec526
[]
no_license
samiavasil/Daqster
59ad1b5de01a0e6f6a4feddfad141f469f18082d
7983420932b36818e6581c445a2fead65cc9d010
refs/heads/master
2023-05-28T16:14:19.492703
2023-04-09T21:51:31
2023-04-20T11:43:16
81,668,306
1
1
null
null
null
null
UTF-8
C++
false
false
1,872
cpp
#include<QDebug> #include "AudioSourceDataModelUI.h" #include "ui_AudioSourceDataModelUI.h" AudioSourceDataModelUI::AudioSourceDataModelUI(QAudioDeviceInfo& devInfo, QAudioFormat& formatAudio, QWidget *parent) : QWidget...
[ "samiavasil@gmail.com" ]
samiavasil@gmail.com
989778bf7c8771046bb28f93e2a0e24f0dbb01b9
fbf49ac1585c87725a0f5edcb80f1fe7a6c2041f
/SDK/Field_Talk_Win_functions.cpp
b3b87aed0ea43bec452ea2e3abe649dfa80e189c
[]
no_license
zanzo420/DBZ-Kakarot-SDK
d5a69cd4b147d23538b496b7fa7ba4802fccf7ac
73c2a97080c7ebedc7d538f72ee21b50627f2e74
refs/heads/master
2021-02-12T21:14:07.098275
2020-03-16T10:07:00
2020-03-16T10:07:00
244,631,123
0
1
null
null
null
null
UTF-8
C++
false
false
1,390
cpp
#include "../SDK.h" // Name: DBZKakarot, Version: 1.0.3 #ifdef _MSC_VER #pragma pack(push, 0x8) #endif namespace SDK { //--------------------------------------------------------------------------- // Functions //--------------------------------------------------------------------------- // Function Field_Talk_Win...
[ "zp2kshield@gmail.com" ]
zp2kshield@gmail.com
ebb7e7305b69b23fed7ed8bfd049932d27f539f6
70572481e57934f8f3e345e7ca31b126bf69046e
/Celeste/Tests/Source/DataConverters/Input/TestKeyboardRigidBody2DControllerDataConverter.cpp
9cc494531bc534da6dae9a167a35325fc82ba9c6
[]
no_license
AlanWills/Celeste
9ff00468d753fd320f44022b64eb8efa0a20eb27
b78bf2d3ebc2a68db9b0f2cc41da730d3a23b2f9
refs/heads/master
2021-05-24T04:03:18.927078
2020-07-21T21:30:28
2020-07-21T21:30:28
59,947,731
0
0
null
null
null
null
UTF-8
C++
false
false
47,390
cpp
#include "TestUtils/UtilityHeaders/UnitTestHeaders.h" #include "Mocks/DataConverters/Input/MockKeyboardRigidBody2DControllerDataConverter.h" #include "TestResources/Input/KeyboardRigidBody2DControllerLoadingResources.h" #include "Registries/ComponentDataConverterRegistry.h" #include "Deserialization/InputDeserializers...
[ "alawills@googlemail.com" ]
alawills@googlemail.com
98e1c6be6062c0f17713efe6cd3c48c15d5541ca
4c263bc119474aa771935f78d1cb21c8c1ec0163
/Source/ajdr/Model/CompoundModelFile.cpp
bdb281bc0fb918b14c1d2b7797ed4ded6771d27f
[]
no_license
zhouchao0924/RTX_Render
bbed5d067550aeb6d6a82adbe4505ae40c17bf87
1d1bdcb7511dc22a1bd0ce30cc9e80e4fe753fbb
refs/heads/master
2022-11-11T18:12:36.598745
2020-06-22T08:36:38
2020-06-22T08:36:38
268,670,065
0
1
null
null
null
null
UTF-8
C++
false
false
15,529
cpp
#include "CompoundModelFile.h" #include "ModelFile.h" #include "ResourceMgr.h" #include "ModelFileComponent.h" FMXComponentSlot::FMXComponentSlot() : LoadedModel(NULL) , ScalableX(false) , ScalableY(false) , ScalableZ(false) , bAchoredPositionOnly(false) , RefModelId(INDEX_NONE) , AttachedBoneIndex(INDEX_NONE...
[ "hl1282456555@outlook.com" ]
hl1282456555@outlook.com
10d3652ce67421f70bda0fa38b276a0883de3d2e
4c28544a68eb9456c45b9edffd677ad56a0951d6
/mywidget/mypic.cpp
3817ce8ebcb8217442d9e3bd70b0a1fff946c7d0
[]
no_license
yfyf510/SerialScreen
2950debb203646ec7784b39910a7d10206c8b142
e2afb6adc562b899086a26eb4250bf114c2052a8
refs/heads/master
2023-05-27T01:40:24.484459
2021-06-11T08:26:07
2021-06-11T08:26:07
null
0
0
null
null
null
null
UTF-8
C++
false
false
270
cpp
#include "mypic.h" #include <QPainter> #include <QDebug> MyPic::MyPic(int id,QString name):mid(id),mname(name) { setObjectName(name); } void MyPic::paintEvent(QPaintEvent *event) { QPainter painter(this); painter.drawImage(QRect(0,0,width(),height()),img); }
[ "363904613@qq.com" ]
363904613@qq.com
4c87f7ac1ca51a566d47fd1900ed4a2c42ee1b14
aededd389dcb74d5d2bdcd106d11fa7103d59319
/Book_Project/Intermediate/Build/Win64/UE4/Inc/Book_Project/Quick_Congrats_Screen.gen.cpp
0743985eb8a567d6197952ec87aeaef4434298ce
[]
no_license
BrennanK/Project_Clockwork
f062850cc88fed79470cb59369858fa325f1dc9c
bcf6e0beed5f32929db2a5e297de3b799e99fc67
refs/heads/master
2022-12-04T21:19:05.060681
2020-08-23T20:59:29
2020-08-23T20:59:29
218,882,841
0
0
null
null
null
null
UTF-8
C++
false
false
15,201
cpp
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved. /*=========================================================================== Generated code exported from UnrealHeaderTool. DO NOT modify this manually! Edit the corresponding .h files instead! ==============================================================...
[ "bjkersey@student.fullsail.edu" ]
bjkersey@student.fullsail.edu
49efc094002d69381ac7d64dace29c16aff466f7
27a7b51c853902d757c50cb6fc5774310d09385a
/[Client]LUNA/Engine/EngineLight.cpp
1fa1e468525f8f0596fd0edcc0bf900c06661591
[]
no_license
WildGenie/LUNAPlus
f3ce20cf5b685efe98ab841eb1068819d2314cf3
a1d6c24ece725df097ac9a975a94139117166124
refs/heads/master
2021-01-11T05:24:16.253566
2015-06-19T21:34:46
2015-06-19T21:34:46
71,666,622
4
2
null
2016-10-22T21:27:35
2016-10-22T21:27:34
null
UTF-8
C++
false
false
3,702
cpp
// EngineLight.cpp: implementation of the CEngineLight class. // ////////////////////////////////////////////////////////////////////// #include "stdafx.h" #include "EngineLight.h" #include "GraphicEngine.h" #include "EngineObject.h" ////////////////////////////////////////////////////////////////////// // Constructi...
[ "brandonroode75@gmail.com" ]
brandonroode75@gmail.com
733bef2d7362a79ea5f1b883d20335bba88d56ee
c1f89beed3118eed786415e2a6d378c28ecbf6bb
/src/jit/targetarm.cpp
038d80133b98a941efaa883b6e9207ee749e7ef0
[ "MIT" ]
permissive
mono/coreclr
0d85c616ffc8db17f9a588e0448f6b8547324015
90f7060935732bb624e1f325d23f63072433725f
refs/heads/mono
2023-08-23T10:17:23.811021
2019-03-05T18:50:49
2019-03-05T18:50:49
45,067,402
10
4
NOASSERTION
2019-03-05T18:50:51
2015-10-27T20:15:09
C#
UTF-8
C++
false
false
504
cpp
// // Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. // /*****************************************************************************/ #include "jitpch.h" #ifdef _MSC_VER #pragma hdrstop #endif #if defined(_TARGET_A...
[ "dotnet-bot@microsoft.com" ]
dotnet-bot@microsoft.com
2200c148a7143123d03984282e2dbe1f603e6683
fdc8a81c4e4ebb66d21c3eaed59d2cf7d0a78b70
/Classes/Option/MoveOption/Edge.cpp
23c33e8733c7fc1d5ef2e5e81c5aa9169351b248
[]
no_license
Senitma/Kolobok
842a240a517403478f103c37004ae93213244d01
d9fef55a8cc37f74681b11dfbd517c9f7f0c60dd
refs/heads/master
2020-03-07T13:44:40.269176
2019-10-06T17:10:05
2019-10-06T17:10:05
127,508,921
1
0
null
null
null
null
UTF-8
C++
false
false
1,135
cpp
#include "Vertex.h" #include "Edge.h" int Edge::GetX() const { return vertex->GetX(); } int Edge::GetY() const { return vertex->GetY(); } int Edge::GetIndex() const { return vertex->GetIndex(); } int Edge::GetCounter() const { return vertex->GetCounter(); } void Edge::SetCounter(const int & value) { vertex->SetCo...
[ "senitma@gmail.com" ]
senitma@gmail.com
915c162383111881e3d3663319332ed6941885f2
8a256901c09cbbdcd56276dbc90cf334328accda
/ejemplos/mainPrueba.cpp
078721d5f969115fcbcd7f3db9e8546c7e278341
[]
no_license
dezcor/ModernOpenGL
2bdf37e4289c968a608ee36802b2d7f661718d61
db162b0ff845fb077bc4274563af24f3a0872008
refs/heads/master
2020-08-27T01:28:38.699849
2019-11-07T18:45:10
2019-11-07T18:45:10
217,205,336
0
0
null
null
null
null
UTF-8
C++
false
false
78
cpp
#include "camara.hpp" int main() { Camara c; c.run(); return 0; }
[ "dezcorjm@gmail.com" ]
dezcorjm@gmail.com
9b90c017c7c051ed41f6a912f3dcc689ba599615
47a7c1bcd81297c038dce8b4d5c7fbd8a1109983
/CandyMath/include/Funcion.h
8d8915d281588ddb288e9fb91adefe16c855c231
[]
no_license
3lcarry/CandyNapper
d415ad4bb1a142575d60ccf3cb55ee8fc6ebd21a
0236def04038ba8b87a7461fdfc5c5ef7d66e121
refs/heads/master
2021-01-15T23:45:48.442262
2015-02-19T22:05:01
2015-02-19T22:05:01
31,037,904
0
0
null
null
null
null
UTF-8
C++
false
false
2,770
h
/* * Function.h * * Created on: 22/03/2012 * Author: kaseyo */ #ifndef FUNCTION_H_ #define FUNCTION_H_ #include "Termino.h" #include "Rational.h" #include <iostream> #include <list> #include <vector> using namespace std; namespace candy { /** * @class Function * Representa una funcion matematica, c...
[ "ccarrillob@outlook.com" ]
ccarrillob@outlook.com
8ba0a0744d126e8abcaddfa3abb8db5cec5b574c
de9241c53ea57e7f15c879c653617afe271cd364
/CodeForces/NastyaIsReadingABook.cpp
bbba69903c8111533bcedf9ade6c0fba62c32270
[]
no_license
AnthonyDugarte/competitive-programming
1089e9e665805f9c1e6dfd84b5198ced9690c8e6
61258a7bb781975add7db52a25eb99cffcce618f
refs/heads/master
2021-05-26T04:44:51.101470
2020-09-20T14:49:04
2020-09-20T14:49:04
127,443,512
1
0
null
null
null
null
UTF-8
C++
false
false
1,659
cpp
// Codeforces Round #546 (Div. 2) #include <bits/stdc++.h> template <typename T, typename U> using p_t = std::pair<T, U>; template <typename T> using s_t = std::set<T>; template <typename T> using us_t = std::unordered_set<T>; template <typename T> using v_t = std::vector<T>; template <typename T> using vv_t = std::v...
[ "toonny1998@gmail.com" ]
toonny1998@gmail.com
50e98516e6bac9f5c95b08415658c81837352235
e908277d6afda67d04edca91005ecd8005ab853a
/Lab10/CalculatorConsoleView.cpp
02e9142c94bff93e9cede536a4664ee95c991d6d
[]
no_license
Lewis-is-a-Git/Technical-Software-Development
f17aef3c736fa3b93f5b48cf417e8d02e8a83bb3
63a53bab4fae9a98710f78000dfa86d334d0c4f3
refs/heads/master
2020-03-06T20:50:16.842501
2018-06-14T01:44:27
2018-06-14T01:44:27
127,063,688
2
1
null
null
null
null
UTF-8
C++
false
false
1,847
cpp
#include "CalculatorConsoleView.h" #include <iostream> using namespace std; void CalculatorConsoleView::showWelcome() { //Send a welcome message to the user (e.g., console screen). cout << "Welcome to simple calculator" << endl; } void CalculatorConsoleView::showGoodBye() { //Send a good bye message t...
[ "radiation@Live.com.au" ]
radiation@Live.com.au
7308662b308e8f77eed2ad344055bdc345c95e10
118aef490b85fedd0e85fbcd63b1ed1590b4e932
/src/vkkp2p/vkkp2p/src/pcguardian/main.cpp
c8648134e88f5d25eb4fa91f01442612f3c49aa8
[]
no_license
wsljmlin/p2p
12ce3cb77ef9c1453d81d0c964c1ea94b69dbd23
bb526637865a727d8ea400162c6ff4431736cd04
refs/heads/master
2020-05-25T15:36:21.604600
2017-03-14T12:22:58
2017-03-14T12:22:58
84,943,893
3
1
null
null
null
null
GB18030
C++
false
false
2,496
cpp
#include "ProcessInfo.h" #ifdef _WIN32 #include <windows.h> #else #include <unistd.h> #endif int _GetModuleFileName(const char* lpszModuleName, char* lpszModulePath, int cbModule); int main(int argc,char **argv) { //忽略 SIGCLD信号,表示不对子进程收尸 //signal(SIGCLD, SIG_IGN); //使用后会使system()失败 char buf[256];...
[ "wangshuanglongwsl@126.com" ]
wangshuanglongwsl@126.com
6f1894b343a5c81a2962dfe83f6c345c99a03a1a
f041cd0b519c1f040ecff2ce4bb56a78c268e3d8
/剑指/6.10/6.10/源.cpp
d6ca269bed42196a7c9b4eb80be3cf125b85a63b
[]
no_license
lxyzzzZZZ/practice
78054f76b5b7466f0ac15bd41868d2e677cb796a
96cc75bc87e3f05d5adf0d969070849bbec9c4e4
refs/heads/master
2022-01-26T08:36:43.878455
2019-07-28T15:05:50
2019-07-28T15:05:52
166,799,979
0
0
null
null
null
null
GB18030
C++
false
false
1,462
cpp
#include <iostream> using namespace std; //逆置字符串 #include <iostream> #include <string> using namespace std; int main() { string str; while (cin >> str) { string ret; for (int i = 0; i < str.size(); i++) { ret.insert(ret.begin(), str[i]); } cout << ret.c_str() << endl; } return 0; } //最长公共字串长度 //#in...
[ "1909980451@qq.com" ]
1909980451@qq.com
115b028342df2f18fdbbde958f06bfd5d316ec1f
98b4c91e542b15eacec2676cf50bbfdc70593856
/examples/build-simple-player-Desktop_Qt_5_6_0_GCC_64bit-Default/src/simple-player_automoc.cpp
8e69610ff199e3f0229e1719a3ee8000d33e91c8
[]
no_license
reference-repo/MeowPlayer
e6dc789a3c055e064c42db5c51d2c9eae9d99363
8a9377016bbd5b75b2aeee476f83bea111731219
refs/heads/master
2021-06-25T15:40:18.912098
2016-04-26T19:06:37
2016-04-26T19:06:37
null
0
0
null
null
null
null
UTF-8
C++
false
false
112
cpp
/* This file is autogenerated, do not edit*/ #include "moc_EqualizerDialog.cpp" #include "moc_SimplePlayer.cpp"
[ "doublejinitials@gmail.com" ]
doublejinitials@gmail.com
804678abb952a992817527c837bbd3d9c6716768
c23f42ff0cd04305ca1c360036e083b56fa36163
/main.cpp
b981d7bf3d9ff202ebb06b405fe4ea992a3e74ff
[]
no_license
KaneoHunter/Ca-hMuney
f337844bdc19e5862d3034d58e0b8ecd6592e48a
f7df7f97d67a4832e90c0bf3012ec3b225f0f63d
refs/heads/not-master
2021-01-25T10:07:20.145748
2018-02-28T20:54:42
2018-02-28T20:54:42
123,340,204
0
0
null
2018-03-20T10:54:21
2018-02-28T20:44:03
C++
UTF-8
C++
false
false
335
cpp
#include "Blockchain.h" int main() { Blockchain bChain = Blockchain(); cout << "Mining block 1..." << endl; bChain.AddBlock(Block(1, "Block 1 Data")); cout << "Mining block 2..." << endl; bChain.AddBlock(Block(2, "Block 2 Data")); cout << "Mining block 3..." << endl; bChain.AddBlock(Block(3, "Block 3 Data"))...
[ "dingdongkane@gmail.com" ]
dingdongkane@gmail.com
5f49636f7fc9c201f4861ffb830a282ed7dd4cf1
d650003e949b28e9006decf9c816abaad7a76f09
/Mydoggo/Source/Mydoggo/DoggoAICharacter.h
3a409ae2a18078d368a3b1f09aa7d0035cea6f3b
[]
no_license
PychaTeamDzem/doggogame
345e22e78d2fc6769fd056237bbb16d82cd72ec4
e408aeed19c4f7e636a2a1f028591a7c7929a421
refs/heads/master
2021-05-20T11:45:11.886565
2020-04-06T22:31:35
2020-04-06T22:31:35
252,280,258
0
0
null
null
null
null
UTF-8
C++
false
false
1,321
h
// Fill out your copyright notice in the Description page of Project Settings. #pragma once #include "CoreMinimal.h" #include "GameFramework/Character.h" #include "DoggoAICharacter.generated.h" UCLASS() class MYDOGGO_API ADoggoAICharacter : public ACharacter { GENERATED_BODY() public: // Sets default values for ...
[ "mikolajczyk.klaudyna@gmail.com" ]
mikolajczyk.klaudyna@gmail.com
1c958843a8e0f7cfc9b36f50808612b0dce5b173
88ae8695987ada722184307301e221e1ba3cc2fa
/components/page_load_metrics/renderer/page_timing_metrics_sender.cc
d5f3f20e0cb8c77a67ed215254bc762e081678d7
[ "BSD-3-Clause" ]
permissive
iridium-browser/iridium-browser
71d9c5ff76e014e6900b825f67389ab0ccd01329
5ee297f53dc7f8e70183031cff62f37b0f19d25f
refs/heads/master
2023-08-03T16:44:16.844552
2023-07-20T15:17:00
2023-07-23T16:09:30
220,016,632
341
40
BSD-3-Clause
2021-08-13T13:54:45
2019-11-06T14:32:31
null
UTF-8
C++
false
false
13,572
cc
// Copyright 2015 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/page_load_metrics/renderer/page_timing_metrics_sender.h" #include <utility> #include "base/containers/contains.h" #include "base/feature_list.h" #include...
[ "jengelh@inai.de" ]
jengelh@inai.de
a3aba0b1469464e0216d312e1144b4681699b6fb
706baf85873daa22199550485ca8335241e8144d
/Hashmaps Heaps/CountSubarrWithZeroSum.cpp
7c8e2b43bc59487e6c13297e1662ea4fa1cc4588
[]
no_license
ishikabansal04/DataStructures_And_Algorithms
d6134bebcbd4c358b321bf45cd99a4e7a15e01fc
aae4690129101db74b9222a83e0a574dea6173b3
refs/heads/master
2023-05-09T11:24:58.190685
2021-05-27T17:31:32
2021-05-27T17:31:32
314,351,224
0
0
null
null
null
null
UTF-8
C++
false
false
533
cpp
#include<iostream> #include<vector> #include<queue> #include<climits> #include<unordered_map> #include<algorithm> using namespace std; int main(){ int n; cin>>n; vector<int>arr(n); for(int i=0;i<n;i++){ cin>>arr[i]; } unordered_map<int, vector<int>>mymap; int count=0; int sum=0;...
[ "ikabansal04@gmail.com" ]
ikabansal04@gmail.com
7135ca00894e7176de93da2166392899171523b8
50fd1f78c50704d51fa7c3240970019c1c15625c
/pkg_utils/test/test_template_bare_bones.cpp
def28869dab25bf571cbb7564a504fe8a57141cd
[]
no_license
Marvedog/Snakey_bot
9b36dffe251c902a2aca9808516da5ef73ab708a
75c65a78fc2d5cd57f1967281a040babbf8838f7
refs/heads/master
2020-03-28T10:43:11.284998
2018-09-27T10:19:37
2018-09-27T10:19:37
148,137,748
0
0
null
null
null
null
UTF-8
C++
false
false
5,806
cpp
#include "pkg_utils/testing_base_class.h" #include "pkg_utils/testing_statistics.h" #include "pkg_utils/Testmsg.h" #include <gtest/gtest.h> #include <boost/shared_ptr.hpp> #include <ros/ros.h> #include <ros/service.h> #include <ros/console.h> #include <ros/package.h> #include <random> #include <algorithm> #include <s...
[ "marcusae@stud.ntnu.no" ]
marcusae@stud.ntnu.no
73cc680d32e9049c429cd0fde9120f588a89c3dc
4a70cc8466926407305e218a12ef5e75111e5174
/libraries/AP_HAL/Device.cpp
3434f98bc9276668f21aea6f4e8376ead413793e
[]
no_license
wanglong1107/SAGAPRO_GPS
3069dedd402e6059d80714b273da7da152c8113c
f74aa4542756420fce54741a140d4bba02887fe1
refs/heads/master
2022-08-01T09:45:34.834230
2020-05-24T08:43:54
2020-05-24T08:43:54
266,495,494
0
1
null
null
null
null
UTF-8
C++
false
false
3,401
cpp
/* * This file 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 the License, or * (at your option) any later version. * * This file is distributed in the hope that it will be useful, b...
[ "ljm@gdu-tech.com" ]
ljm@gdu-tech.com
0d14d18af4c6d8215fc9420fa1753beeb35033ce
2b19b4bb003e987bc440b2242892124e75caface
/7/编程练习/Project1/Project1/8.cpp
841f1d6f6ce19bf74e0c71f0e21e9f87936b4679
[]
no_license
XHQS/test
a5587aef87b36ff518d36a4c854d335090bd01b1
475f012fa611182095a3dca274b4554f91de975f
refs/heads/master
2020-03-17T09:10:21.090215
2018-06-04T06:41:15
2018-06-04T06:41:15
133,464,178
0
0
null
null
null
null
UTF-8
C++
false
false
701
cpp
#include<iostream> #include<string> using namespace std; const int Seasons = 4; const char *sea[Seasons] = { "Spring", "Summer", "Fall", "Winter" }; void fill_a(double*); void show_a(double*); int main() { double text[Seasons]; fill_a(text); show_a(text); system("pause"); } void fill_a(double* Snames) { using na...
[ "38994903+XHQS@users.noreply.github.com" ]
38994903+XHQS@users.noreply.github.com
a0632706dbf2118cd750458e91d8fccf59c809a4
fb59dcedeb1aae73e92afebeb6cb2e51b13d5c22
/middleware/src/app/NativeHandler/Huawei/C20/NativeHandlerCustomer.h
23803bcdda85d398d788404075d27b0110213ca1
[]
no_license
qrsforever/yxstb
a04a7c7c814b7a5647f9528603bd0c5859406631
78bbbae07aa7513adc66d6f18ab04cd7c3ea30d5
refs/heads/master
2020-06-18T20:13:38.214225
2019-07-11T16:40:14
2019-07-11T16:40:14
196,431,357
0
1
null
2020-03-08T00:54:09
2019-07-11T16:38:29
C
UTF-8
C++
false
false
542
h
#ifndef _NativeHandlerCustomer_H_ #define _NativeHandlerCustomer_H_ #include "config/webpageConfig.h" #include "NativeHandlerPublicC20.h" #ifdef __cplusplus namespace Hippo { } // namespace Hippo #endif // __cplusplus #ifdef __cplusplus extern "C" { #endif void NativeHandlerCustomerInit(); ...
[ "lidong8@le.com" ]
lidong8@le.com
7ff16469070c2c4c6fec7bc52f7ce9a6740b531d
477625257b2a9c39a9ba67d748a6398d9e3c1480
/include/ecuda/algorithm.hpp
65168ce01777ddf87664287757ba7e4d35b229bf
[ "BSD-2-Clause-Views" ]
permissive
rayglover/ecuda
04157c8f80603048b128a65fb0ea0b10109f6037
518be77e861bbbfd50cb639bd97fb3f1c7837b97
refs/heads/master
2021-01-12T11:46:19.320036
2016-02-02T19:57:43
2016-02-02T19:57:43
54,893,211
0
0
null
2016-03-28T13:14:12
2016-03-28T13:14:12
null
UTF-8
C++
false
false
4,262
hpp
/* Copyright (c) 2015, Scott Zuyderduyn 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 follo...
[ "scottzed@hotmail.com" ]
scottzed@hotmail.com
15f51fc933a748bf9321bf7568afb82bc5eb7f50
fe8ede1ff35fb43af1ad91bdd4e057d93d9d3442
/Exercise5.cpp
66c9b78704ac07b45e204e3ebf55a5cba2749cf7
[]
no_license
LuluWangKYU/Homework-WANG-Lu
f040736cee959af9845b74ac78f3e608a146feea
94d2126f6630e871dbb1ad8bfc3a727dd9d51daf
refs/heads/master
2023-03-04T05:56:03.918853
2021-02-16T18:45:36
2021-02-16T18:45:36
330,678,458
0
0
null
null
null
null
UTF-8
C++
false
false
322
cpp
#include <iostream> using namespace std; int main(){ int k,n; cout<< "the sequence of n is :" ; cin>> n ; int i = 0; int j = 1; int g = 2; if (g<=n) { while (g<=n){ g++; k = i+j; i = j; j = k; } } else { k = n; } cout<<"the value of the " <<n<<"th number is " <<k;...
[ "b00780754@essec.edu" ]
b00780754@essec.edu
c3dde5fd45edd9e1f6ac929610a3ff7c4df860cf
a88a56c7bcd648bcbec2f04e7c8c6693fec94cb3
/src/obse/obse_editor/EditorAPI.cpp
e9848567859c7a04cc8a0ff57f3394f912a55b57
[]
no_license
nh2/obse
8a803e20ab0bdd5de49dd68c19f6217dbb1b1f4c
a63cc71655f36ccf5cb39690182e800666ba9782
refs/heads/master
2021-01-10T22:22:10.456725
2012-11-14T19:37:41
2012-11-14T19:37:41
6,692,908
1
0
null
null
null
null
UTF-8
C++
false
false
1,815
cpp
#include "obse/Script.h" #include "EditorAPI.h" #include "string.h" #if CS_VERSION == CS_VERSION_1_2 FormMap* g_FormMap = (FormMap *)0x009EE18C; // currently unused DataHandler ** g_dataHandler = (DataHandler **)0x00A0E064; TES** g_TES = (TES**)0x00A0ABB0; const _GetFormByID GetFormByID = (_GetFormByID)(0...
[ "mail@nh2.me" ]
mail@nh2.me