blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
201
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
7
100
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
260 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
11.4k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
17 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
80 values
src_encoding
stringclasses
28 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
8
9.86M
extension
stringclasses
52 values
content
stringlengths
8
9.86M
authors
listlengths
1
1
author
stringlengths
0
119
bf5b4316ed47d5b68f0e24393e30e5bf913fb84d
675b8850fd356cc5b753ca5e400d0997c1ddd3e2
/SDK/PUBG_WindowsFileUtility_classes.hpp
c9e2ddf1b214b6648baa373fb134c14a4e1bd4bb
[]
no_license
Sheisback/PUBG-SDK
ebc18c0a1f5aef90615ea6ee1d3a5e76301414cf
c6ac4239cbcf524354d8df259ecc896693c7f59c
refs/heads/master
2021-05-24T07:23:38.505271
2020-04-05T11:10:24
2020-04-05T11:10:24
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,318
hpp
#pragma once // PUBG (7.1.6.5) SDK #ifdef _MSC_VER #pragma pack(push, 0x8) #endif #include "PUBG_WindowsFileUtility_structs.hpp" namespace SDK { //--------------------------------------------------------------------------- //Classes //--------------------------------------------------------------------------- // ...
[ "1263178881@qq.com" ]
1263178881@qq.com
af9fe9c4918fc10da630e61f2ec8a261a7370b12
9d6a017813b545f085015ec4f8446c3ed49313c6
/jump-game/jump-game.cpp
d906c87c8f7f878033c599c6b63214ee48e2c5cc
[]
no_license
Manish-dracule/Leetcode-solutions
4a3f6c88f4819be46292ef942a7ac919ba367679
99289c91882024e3cd7cd4cc1506fc08337316af
refs/heads/main
2023-02-15T17:02:05.532527
2021-01-11T13:11:34
2021-01-11T13:11:34
326,438,624
0
0
null
null
null
null
UTF-8
C++
false
false
352
cpp
class Solution { public:    bool canJump(vector<int>& nums) {        int n=nums.size();        int maxi=0;        for(int i=0;i<n;i++){            if(maxi>=n-1)return true;            if(i>maxi)return false;            maxi=max(maxi,i+nums[i]);                   }        return false;   } };
[ "68863157+Manish-dracule@users.noreply.github.com" ]
68863157+Manish-dracule@users.noreply.github.com
4b8e128be05623372accca3e070c8303be570497
1dd62168b38a5044949138d107fc31063b3a1f5b
/tomatotask.cpp
d93d3d7ae5bfbdc225a7cc79ef4b0885dd85b715
[]
no_license
albert2lyu/TomatoWorkflow
7e62b9567774d6461473d408edcad067f2675967
54c04235bdf45b4b6d65afb33797d9e0386d43f6
refs/heads/master
2020-04-23T01:47:59.967367
2017-02-23T10:27:22
2017-02-23T10:27:22
null
0
0
null
null
null
null
UTF-8
C++
false
false
56
cpp
#include "tomatotask.h" TomatoTask::TomatoTask() { }
[ "banguijun@sina.com" ]
banguijun@sina.com
a6467ca4afcc1615c249d5105b9f7194c363d0bb
463f7deea1c29d3bc4c20777f2b4f0f54d958967
/Lab1/Lab1/Lab1.cpp
15e0b90da55fbfa6251214b815d3daa862568646
[]
no_license
jzxhuang/ECE250
e54d6986d5c3d33923b643c13acb888dc596bf88
6d884ca5d27e3aef55c0a2f7c6540b7e586fd082
refs/heads/master
2021-07-14T01:26:36.987948
2017-10-18T23:39:11
2017-10-18T23:39:11
105,413,081
0
0
null
null
null
null
UTF-8
C++
false
false
1,790
cpp
// Lab1.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include <iostream> #include <exception> #include "Dynamic_stack.h" using namespace std; int main() { Dynamic_stack stack; Dynamic_stack stack2(20); Dynamic_stack stack3(0); cout << "Stack 1 size: " << stack.size() << endl...
[ "jeff.huang62@gmail.com" ]
jeff.huang62@gmail.com
b3539308f0039a238a38d083b18efb3f814a9cfa
e99bae4e1c4ab2d3ec29ddceb1eee1207daa40e6
/CodeTemplates /stanlgo/bit1.cpp
1a8fb5b7acd0adfe4265dc6d4f546978458e0e64
[]
no_license
ashmanmode/BitsAndBytes
083590c4ad22682d1156e090dc1f558ced9926de
6dffbb18ddbf04245d1cbe453ea975fed76a9969
refs/heads/master
2021-05-01T04:55:30.304918
2017-03-21T08:19:30
2017-03-21T08:19:30
70,502,359
0
0
null
null
null
null
UTF-8
C++
false
false
865
cpp
#include <bits/stdc++.h> using namespace std; #define mod 1000000007 #define maxsiz 1000000 #define F first #define S second #define si(a) scanf("%d",&a) #define sl(a) scanf("%llu",&a) #define pi(a) printf("%d",a) #define pl(a) printf("%llu",a) #define fr(i,k,n) for(int i = k ; i < n ; i++ ) #define mp(a,b) make_pair(...
[ "ash.manmode@gmail.com" ]
ash.manmode@gmail.com
36ca21068ed668e815086cfde0f635296f2d2e8f
feef586dab1e9562a62efd955aeb587c5a7a2c60
/src/avd_turtle3/hello.cpp
9a47516f16f061a476c9a1ef241c5b812d433d41
[]
no_license
avd5146/avd_ws
690c758bc42af4ad965c80eafc9bf547cec94319
e667f886c5e00d9a1730edcdd640555d036a3a17
refs/heads/master
2021-01-17T07:20:54.700225
2017-08-15T03:19:54
2017-08-15T03:19:54
83,702,912
0
0
null
null
null
null
UTF-8
C++
false
false
228
cpp
#include <ros/ros.h> int main() { printf("Hello"); printf("Hello"); printf("Hello"); printf("Hello"); printf("\n"); printf("Hello"); printf("Hello"); printf("Hello"); printf("Hello"); //printf("Hello"); return 0; }
[ "ankur.dalal@mavs.uta.edu" ]
ankur.dalal@mavs.uta.edu
0de3fd195ddbff1dd3a9cbe67479f7ece1ee418e
2351c922fbee24a3856d885fc70263dae58a9eb0
/src/princekin/xlsxinfo/xlsxinfo.cpp
f3f779f4fd6d2bb15d29086c6fc749d753376e0e
[]
no_license
waitMonster/android
dc4298c9e4827389e24782a9dfa33c7dab84eae1
6f9b223ba330ff3bb22e048348df1309930c31b0
refs/heads/master
2021-08-16T15:42:39.163958
2017-11-17T10:47:20
2017-11-17T10:47:20
111,359,369
0
1
null
null
null
null
UTF-8
C++
false
false
4,889
cpp
#include "xlsxinfo.h" XlsxInfo::XlsxInfo() { } void XlsxInfo::copyFile(const QString &arg_source, const QString &arg_target) { QFile::copy(arg_source,arg_target); } QString XlsxInfo::getApkName() { QString apkName; QString filePath; QStringList strList; QStringList splitResult; apkName=""; ...
[ "chorushechang@126.com" ]
chorushechang@126.com
4a77dc1b5f6bc2e1ea22ac2e1edcea983e8930b9
4f0fc889b8f53a446d13bfc291858d3b882ffb66
/libraries/chain/include/enudex/chain/assert_evaluator.hpp
b0142d0b341eb0c0bcfd9db337411dac0b9a4aab
[ "MIT" ]
permissive
hwlsniper/enudex-core
8492c90a895c3c4459fac2e465e230efe2d306b9
6a01603557e1ab83446a492b4eec4cc3c446f1e0
refs/heads/master
2021-04-05T23:54:58.221979
2018-03-11T02:07:57
2018-03-11T02:07:57
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,622
hpp
/* * Copyright (c) 2015 Cryptonomex, Inc., and contributors. * * The MIT License * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the...
[ "admin@enumivo.org" ]
admin@enumivo.org
9260e944436354e9905c9ab2316904dde69b9b76
2d5a651995ca6ba53b169b5e58ef75159715e886
/Source/Core/Numeric/SVDecomposer.cpp
17e28aa64c0fbcb8c468219e07e0a04676e62542
[ "BSD-3-Clause" ]
permissive
GoTamura/KVS
4a4aabd5dac5c5362b7404f4d9b50ae33bb0cbb6
121ede0b9b81da56e9ea698a45ccfd71ff64ed41
refs/heads/develop
2021-06-12T05:27:34.959934
2019-04-11T23:57:26
2019-04-11T23:57:26
181,405,935
0
0
BSD-3-Clause
2019-04-15T03:29:11
2019-04-15T03:29:09
null
UTF-8
C++
false
false
17,128
cpp
/*****************************************************************************/ /** * @file SVDecomposer.cpp * @author Naohisa Sakamoto */ /*---------------------------------------------------------------------------- * * Copyright (c) Visualization Laboratory, Kyoto University. * All rights reserved. * S...
[ "naohisa.sakamoto@gmail.com" ]
naohisa.sakamoto@gmail.com
05f5f514c557eb53821d2306e2087c2be7b05e5b
758624fa8ca121c885005c8e89873738262f6b36
/calamity/src/utils/io/file.hpp
559030dba3e06c3f0d836da7a8805da46ea5c12e
[ "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
ClayCore/calamity
11bba42a20d60234d720a6c3830f19d5371da31e
ddc9226648e4457531db33c27d67229f6f538455
refs/heads/master
2023-07-12T09:21:23.700001
2021-08-21T13:05:21
2021-08-21T13:05:21
390,212,098
1
0
BSD-3-Clause
2021-08-15T10:27:18
2021-07-28T04:25:20
C++
UTF-8
C++
false
false
174
hpp
#pragma once #include "zcommon.hpp" namespace Calamity::File { std::optional<std::vector<std::string>> load_file(std::string file_path); } // namespace Calamity::File
[ "claymorealt@op.pl" ]
claymorealt@op.pl
9a84f119614825741de750570c7cc209fb1ec409
c99cdc49376de34f73543ddf21a5730ca45888fe
/11000.cpp
d36e8bc6d1fe9d30e5e5444ff7fbd42418317760
[]
no_license
ParkSale/Boj
6dda75b47bc5b0938f1756a56e2432f3a05f0ca6
5d98f8024a2bf84e3aa86c50de8cdd55466e51e1
refs/heads/master
2020-09-18T18:24:46.408515
2020-07-29T06:01:56
2020-07-29T06:01:56
224,163,776
0
0
null
null
null
null
UTF-8
C++
false
false
865
cpp
#include <bits/stdc++.h> using namespace std; typedef pair<int, int> pii; struct info { int x, y; bool operator < (const info& a) const { return y > a.y; } }; priority_queue<info> pq; int N; pii arr[200005]; int main() { ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); cin >> N; for (int i = 1, a, b; i <= N; ...
[ "34956785+ParkSale@users.noreply.github.com" ]
34956785+ParkSale@users.noreply.github.com
a7ff318b2a28ca356096570cb1896f522f887b4c
d76f25f09c37703f17056db0c6a8f68d625b1b48
/8_2021/23.08.2021/cpp_14.cpp
824be4e3cffe20b2d95c26aa38896a8ede7715c3
[]
no_license
kingmadridli/Staj_1
a87fbed8bcbb4cb57f98fcafc824136b9c786c4a
0e466f802dcec31961f67f24414f93092206288b
refs/heads/main
2023-08-21T23:58:56.638234
2021-10-16T11:40:54
2021-10-16T11:40:54
400,750,623
0
0
null
null
null
null
ISO-8859-9
C++
false
false
673
cpp
#include <iostream> using namespace std; // For Döngüsü int main(){ /* int a = 50; int b = 30; cout<<a++<<endl; // Önce yazdır sonra artır. cout<<++b<<endl; // Önce artır sonra yazdır. cout<<a; // artırılmış hali */ /* int i; for (i=1;i<=10;i++) // i, 1 den 10 kadar 1'er 'er artaracak şeki...
[ "59164210+kingmadridli@users.noreply.github.com" ]
59164210+kingmadridli@users.noreply.github.com
1a45f1f0f5c20fddee7093bb3f8213498d9697cf
d40c63146b7311db2e0f5aef61929f58f1dfd78d
/depends/src/subversion-1.9.7/subversion/bindings/javahl/native/SVNClient.cpp
7801ea053896392fe63947f9b0fbd3f1abdc89d3
[ "Apache-2.0", "MIT", "LicenseRef-scancode-unicode", "HPND-Markus-Kuhn", "BSD-3-Clause", "LicenseRef-scancode-other-permissive", "X11", "LicenseRef-scancode-unknown-license-reference" ]
permissive
sleepingwit/jal123
4bce06c979067647420691daf9fb531f4d71bfd9
1bbbd4ac5b71e233a34f885c7e6bd2a74dfc6770
refs/heads/master
2020-03-15T15:58:19.413180
2018-05-15T09:40:46
2018-05-15T09:40:46
132,225,270
0
0
null
null
null
null
UTF-8
C++
false
false
61,042
cpp
/** * @copyright * ==================================================================== * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright owners...
[ "sleepingwit@outlook.com" ]
sleepingwit@outlook.com
f79b1e58ab2e02a2110b9799605f730a880fce12
300a2cadeab3a55cbb01a2a6f4642a8af522158a
/UltrasonicStructSplit/UltrasonicStructSplit.h
a8f1fc9dd85947c9bbaf880f4a6eba2dd265dc05
[]
no_license
FAUtonOHM2017/aadc2017
2adb934ae0e3576ce085cc8411df181a231eb6df
481fff7b713e518a7156339a499293d3455228ba
refs/heads/master
2021-08-14T14:23:37.973854
2017-11-16T00:29:26
2017-11-16T00:29:26
110,901,650
1
0
null
null
null
null
UTF-8
C++
false
false
6,845
h
/** * Copyright (c) Audi Autonomous Driving Cup. TEAM FAUtonOHM. 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 li...
[ "andreas.doll@fau.de" ]
andreas.doll@fau.de
a7ba8d3ff7eb66bd385e7de1dc7d1348fa3f999c
fafdf1e62cf622035ee82666ba6ae7108127d140
/kynapse7/include/kypdg/boundary/boundarysimplifypolyline.h
9213c6506e2f15c71f8652952cb4c10c6db75836
[]
no_license
saerich/RaiderZ-Evolved-SDK
7f18942ddc6c566d47c3a6222c03fad7543738a4
b576e6757b6a781a656be7ba31eb0cf5e8a23391
refs/heads/master
2023-02-12T03:21:26.442348
2020-08-30T15:39:54
2020-08-30T15:39:54
281,213,173
1
2
null
null
null
null
UTF-8
C++
false
false
2,838
h
/* * Copyright 2010 Autodesk, Inc. All rights reserved. * Use of this software is subject to the terms of the Autodesk license agreement provided at the time of installation or download, * or which otherwise accompanies this software in either electronic or hard copy form. */ // primary contact: GUAL - secondary...
[ "fabs1996@live.co.uk" ]
fabs1996@live.co.uk
551d5dae8b62d78ad94c9cccdea697cee4eecee5
107c4be4a71129f7c301d6797f0a8838e2bb8c01
/Mars Exploration Simulator/Events/Assign.cpp
1304faa33053d950bc7c594df3f50b73833508f8
[ "MIT" ]
permissive
mohamednabilabdelfattah/Mars-Exploration_Simulator
9965b70904b4e01537dca9d22c02dae7c3e9ce58
5b4183e7c5656bef0aab833153acd141daa29ec8
refs/heads/master
2023-07-28T07:02:59.170037
2021-09-17T03:13:03
2021-09-17T03:13:03
408,034,003
1
0
null
null
null
null
UTF-8
C++
false
false
316
cpp
#include"Assign.h" //constructor Assign::Assign(int eV) :Event(eV) {} //destructor Assign::~Assign() {} //execute void Assign::execute(MarsStation* ms) { while (ms->assignEmergencyMission(getEventDay())); while (ms->assignMountainousMission(getEventDay())); while (ms->assignPolarMission(getEventDay())); }
[ "mohamed.nabi.5596@gmail.com" ]
mohamed.nabi.5596@gmail.com
40e2ec46cde6b5a885d1b0387430849e44841434
dfe8243fa713292ab2e7a8f87ad76f36c6b2d9e7
/include/menu.h
4312d3766bee73dc33d6e5911a055944127b4966
[]
no_license
heytensai/herotown
44b280ad3eea3db31cfb9d5c90d37640247f45e5
8468e8bec8b93abf8f1baf8e2f22ad08ab05618a
refs/heads/master
2021-01-22T07:32:46.700673
2014-12-30T05:56:12
2014-12-30T05:56:12
null
0
0
null
null
null
null
UTF-8
C++
false
false
503
h
#ifndef MENU_H #define MENU_H #include "globals.h" #include "video.h" class Menu { protected: Video *video; public: bool running; int result; Menu(Video *video); void render(); void event_loop(); }; class ScoreMenu : public Menu { public: int score1; int score2; ScoreMenu(Video *video); void render(); ...
[ "tensai@zmonkey.org" ]
tensai@zmonkey.org
690a5b2e1a809249c4b16e6ca9162048ea14912e
7752c7ea2dcf00ffd23db5a08d4074d5c291ae34
/ancho-master/code/IE/anchocommons/AnchoCommons/JSValueWrapper.hpp
193065b9b79d8f3533e53331ecb2a13594ca27ba
[ "LicenseRef-scancode-other-permissive" ]
permissive
GreatRepos/analysisfile
6a513cdb65714f43727f635db75542c93d9477a2
d05532f52abf195b00933f6bdd2afe417e44b4e8
refs/heads/master
2020-12-28T17:23:51.887166
2014-03-13T20:28:44
2014-03-13T20:28:44
null
0
0
null
null
null
null
UTF-8
C++
false
false
13,327
hpp
#pragma once #include <AnchoCommons/detail/JSValueIterators.hpp> #include <map> #include <sstream> #include <algorithm> #include <iterator> #include <Exceptions.h> namespace Ancho { namespace Utils { namespace detail { inline CComVariant getMember(CComVariant &aObject, const std::wstring &aProperty) ...
[ "yingkailiang0920@gmail.com" ]
yingkailiang0920@gmail.com
d5012f7250c89c4512d2e5674325307595e0d34a
f0ee987789f5a6fe8f104890e95ee56e53f5b9b2
/child-CURRENT_RELEASE_v13.08-r/Child/Code/MeshElements/meshElements.h
d8dc4df324a0c429d0bff1a60cfdc03996f2182a
[]
no_license
echoi/Coupling_SNAC_CHILD
457c01adc439e6beb257ac8a33915d5db9a5591b
b888c668084a3172ffccdcc5c4b8e7fff7c503f2
refs/heads/master
2021-01-01T18:34:00.403660
2015-10-26T13:48:18
2015-10-26T13:48:18
19,891,618
1
2
null
null
null
null
UTF-8
C++
false
false
53,355
h
//-*-c++-*- /*************************************************************************/\ /** ** @file meshElements.h ** @brief Header file for mesh elements tNode, tEdge, ** and tTriangle. Each of these mesh elements is ** implemented as an object, as described below. ** (formerly called grid...
[ "eunseo@Mohr.ceri.memphis.edu" ]
eunseo@Mohr.ceri.memphis.edu
9e14626237f3a3578093f2b22b47c7f2dea016d6
4dc8ba6b2ae4ec978310c918c1b23e6a7d45e450
/src/GPIO/RPi4GPIO.cpp
ef00d31ce0e89433ed20cf99573fec7fdfb2a1a4
[ "MIT" ]
permissive
mitchdz/Smart-Doorbell
42a2cf526b951384f7976bfb5d76144807de008f
cbc04691a65d37ce1a19cba2138d2f8363acf290
refs/heads/main
2023-04-05T14:21:33.555921
2021-02-17T21:51:30
2021-02-17T21:51:30
337,545,958
0
0
MIT
2021-02-09T21:50:34
2021-02-09T21:50:33
null
UTF-8
C++
false
false
2,138
cpp
/* * MIT License * * Copyright (c) 2021 Lena Voytek * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modi...
[ "dvoytek@email.arizona.edu" ]
dvoytek@email.arizona.edu
e2871707e20c329e3c8d5c0a7d40406ab409a406
e582ee445ead5726d297e95742bb696e4c2ed3e7
/ColonizingGame.cpp
791403a671ad74de08faed7dcca53d8894b18ad6
[]
no_license
aljazk/ColonizingGame
2d8742b350b50dbd953c25f739499379971ef837
d39c49364b3bacd387239d9f8cc7b2f4fddf2136
refs/heads/master
2022-12-14T16:51:49.525472
2020-09-09T20:47:52
2020-09-09T20:47:52
294,226,005
0
0
null
null
null
null
UTF-8
C++
false
false
858
cpp
// ColonizingGame.cpp : This file contains the 'main' function. Program execution begins and ends there. // #include <iostream> #include "Window.h" int main() { Window window; window.Run(); return 0; } // Run program: Ctrl + F5 or Debug > Start Without Debugging menu // Debug program: F5 or Debug >...
[ "aljaz.konecnik@gmail.com" ]
aljaz.konecnik@gmail.com
c6703c14f5981226fe499ee5dd2e34e553769c83
c208946c65e9ecd381448c3b4b94ceda29940f4b
/Project1/Pawn.h
27e857ec87024afeda941b8528759fa3823c1f5e
[]
no_license
StanleyAlbayeros/BattleChess3D
b30ac61ba8941f02559fe76181e90442a713c20e
6c9ffb78131ab0cc891997649b2b729837b314a1
refs/heads/master
2023-06-24T21:22:57.652300
2017-10-16T03:46:23
2017-10-16T03:46:23
null
0
0
null
null
null
null
UTF-8
C++
false
false
199
h
#pragma once #include "Pieces.h" class Pawn : public Pieces { public: bool debugMode; Pawn(bool debug, Position pos); ~Pawn(); private: string pieceName = "Pawn"; //string pieceID = "P"; };
[ "drkztan@gmail.com" ]
drkztan@gmail.com
19c34277ad00f39eaff28544ad72b43e983b2a7e
e741f43e6f28669f1330faa422bbf44c496b63b4
/old/session12Permutations/c++map.cc
a7c81ec1592572b64b85a1bfbac929f45f4063d8
[]
no_license
StevensDeptECE/CPE593
d5ee7816a42d9db112a9618fb95c14922ccd8e75
3ca8115e84287a2afd18d27976720c159ab056a2
refs/heads/master
2023-04-26T21:07:47.252333
2023-04-19T01:25:09
2023-04-19T01:25:09
102,521,068
50
51
null
2023-03-05T17:45:52
2017-09-05T19:22:17
C++
UTF-8
C++
false
false
429
cc
#include <map> #include <string> #include <iostream> using namespace std; int main() { map<string, double> stock; stock["IBM"] = 119.5; stock["BIDU"] = 138; stock["AAPL"] = 152; for (map<string,double>::iterator i = stock.begin(); i != stock.end(); ++i) cout << i->first << " ==> " << i->second << '\n'; cout <...
[ "Dov.Kruger@gmail.com" ]
Dov.Kruger@gmail.com
4588f2051db29b27c1659d53df3e02d3b8ced88e
90a1ad5c2b9fd6a221b91fe2a163c47c8ddd8ee6
/GlarekEngineProject/Engine/Engine/Source/Game/Event/EventDispatcher.cpp
4439406b6cebd304d03e541e241fac3b7e7a87df
[]
no_license
yananliu000/Projects
1e5f04a9c66707f9bacb448795ba690e2dbd88b6
37d5ff68f7c19b2f71ec766f8cb7156d9d6241f5
refs/heads/master
2022-11-16T09:46:08.157540
2020-07-09T21:26:47
2020-07-09T21:26:47
256,191,532
0
0
null
null
null
null
UTF-8
C++
false
false
1,742
cpp
#include "EventDispatcher.h" size_t Engine::EventDispatcher::AddEventListener(u32 id, EventCallback callback) { //find the vec associated with the event auto listenersItr = m_eventListeners.find(id); if (listenersItr == m_eventListeners.end()) //not find in the map { m_eventListeners.emplace(id, std::vector<Even...
[ "42784645+yananliu000@users.noreply.github.com" ]
42784645+yananliu000@users.noreply.github.com
02fb1aa3c9694ab2d57f2581d9a49bde12d0ba75
faa932aa4c28315ee8175c3307b1b5cf53ac8d43
/LongestPrefix.cpp
04718d75f26ea427eb8d303965a73bf996bc9442
[]
no_license
bsarvan/code_algorithms
2daad99da90894d830f5fc38d647cfae49141821
43855386c3646bd84effacef3362b925835d6ba0
refs/heads/master
2023-06-09T12:39:56.112624
2021-06-27T14:15:55
2021-06-27T14:15:55
380,757,573
0
0
null
null
null
null
UTF-8
C++
false
false
1,572
cpp
// // main.cpp // LongestPrefix // // Created by bsarvan on 26/01/18. // Copyright © 2018 bsarvan. All rights reserved. // #include <iostream> #include <vector> using namespace std; /* Function to find the Longest Unique Prefix */ string uniquePrefixUtil(string str1, string str2) { string result; size_t ...
[ "bharat.sarvan@LM-ILB-BHARATHS.local" ]
bharat.sarvan@LM-ILB-BHARATHS.local
d529d69aca17f9b5c8062226236c86ebdb3f1e74
8e817f7ea712deacadffa87614681157fef71827
/smql/Tree.cpp
474f6c56f05b874161f3ffbfcf9269f98de1145e
[]
no_license
wenj/db
0518298cf14442eb891071909d9292e80292bbc4
5ac6e45d023319aa696f658f0839cc889949f20f
refs/heads/master
2021-09-02T11:36:10.090138
2018-01-02T09:01:52
2018-01-02T09:01:52
110,957,722
1
0
null
null
null
null
UTF-8
C++
false
false
306
cpp
// // Created by lenovo on 2017/12/20. // #include "Tree.h" const int Tree::OP_GE = 1; const int Tree::OP_GT = Tree::OP_GE + 1; const int Tree::OP_EQ = Tree::OP_GT + 1; const int Tree::OP_LT = Tree::OP_EQ + 1; const int Tree::OP_LE = Tree::OP_LT + 1; const int Tree::OP_NE = Tree::OP_LE + 1;
[ "zhanghuimeng1997@gmail.com" ]
zhanghuimeng1997@gmail.com
42b7a2bd1efbf454c0d5b610a8940a50de7daf5b
0eff74b05b60098333ad66cf801bdd93becc9ea4
/second/download/collectd/gumtree/collectd_repos_function_788_collectd-5.7.1.cpp
aa4a24f6bf5749f174388dd89ef5a07bcc926397
[]
no_license
niuxu18/logTracker-old
97543445ea7e414ed40bdc681239365d33418975
f2b060f13a0295387fe02187543db124916eb446
refs/heads/master
2021-09-13T21:39:37.686481
2017-12-11T03:36:34
2017-12-11T03:36:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
55
cpp
void dnstop_set_pcap_obj(pcap_t *po) { pcap_obj = po; }
[ "993273596@qq.com" ]
993273596@qq.com
ba34f10aa9dbca19e4e1c4ee3fa5b2fec787a603
bff9ee7f0b96ac71e609a50c4b81375768541aab
/deps/src/boost_1_65_1/libs/asio/test/latency/coroutine.hpp
e1f02b423c67e92bb5ec194b4b8a6f3946dbebe5
[ "BSL-1.0", "BSD-3-Clause" ]
permissive
rohitativy/turicreate
d7850f848b7ccac80e57e8042dafefc8b949b12b
1c31ee2d008a1e9eba029bafef6036151510f1ec
refs/heads/master
2020-03-10T02:38:23.052555
2018-04-11T02:20:16
2018-04-11T02:20:16
129,141,488
1
0
BSD-3-Clause
2018-04-11T19:06:32
2018-04-11T19:06:31
null
UTF-8
C++
false
false
2,189
hpp
// // coroutine.hpp // ~~~~~~~~~~~~~ // // Copyright (c) 2003-2017 Christopher M. Kohlhoff (chris at kohlhoff dot com) // // 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) // #ifndef COROUTINE_HPP #define COROUTINE_H...
[ "znation@apple.com" ]
znation@apple.com
468480be244427d73dcc1a73794edcd606a8ce3d
475b86242448df8787daa2b1a08dc272cbbf73a0
/tokenizer/seq_stream.h
ac44ed2124cd90a53db498383b047874c8caf504
[ "MIT" ]
permissive
schwa-lab/libschwa-python
81e0e061bf63c0765e086c05805f60bc4f91fe4e
aebe5b0cf91e55b9e054ecff46a6e74fcd19f490
refs/heads/develop
2020-06-06T05:13:07.991702
2014-09-04T03:28:34
2014-09-04T03:28:34
17,269,031
5
0
null
2014-09-04T01:56:19
2014-02-27T23:39:45
Python
UTF-8
C++
false
false
2,140
h
/* -*- Mode: C++; indent-tabs-mode: nil -*- */ #ifndef SEQ_STREAM_H_ #define SEQ_STREAM_H_ #include "_python.h" #include <vector> #include <schwa/_base.h> #include "pystream.h" namespace schwa { namespace tokenizer { using PyVector = std::vector<PyObject *>; class PySeqStream : public PyStream { p...
[ "tim.dawborn@gmail.com" ]
tim.dawborn@gmail.com
5909b3d5a793cbac6f5dc90a75acdab3f03bb416
a03b73a7e665d6a6063f687bea3d4b58cd153606
/aten/src/ATen/native/ConvUtils.h
96ed0e591a088f2d0f1d086e0c97db6c2aea7201
[ "BSD-2-Clause", "BSD-3-Clause", "LicenseRef-scancode-generic-cla", "Apache-2.0" ]
permissive
joshionkar23/pytorch
8fa5909a1944f5edda9e90433b03b6d4fb588ade
b894dc06de3e0750d9db8bd20b92429f6d873fa1
refs/heads/master
2020-12-28T02:22:36.189506
2020-02-04T04:46:09
2020-02-04T04:47:51
238,146,856
1
0
NOASSERTION
2020-02-04T07:21:13
2020-02-04T07:21:12
null
UTF-8
C++
false
false
3,507
h
#pragma once namespace at { namespace native { // --------------------------------------------------------------------- // // Math // // --------------------------------------------------------------------- constexpr int input_batch_size_dim = 0; // also grad_input constexpr int input_channels_dim = 1; constexpr in...
[ "facebook-github-bot@users.noreply.github.com" ]
facebook-github-bot@users.noreply.github.com
9f4519a56e904a3297c9dc6ab03557562294454b
f7abe020be31ecd16757719b49f30c6059276d16
/src/MessageStack.cpp
7542573676494a5621dee7535289176b003246e6
[ "FSFAP" ]
permissive
alevar/AdaptiveVision
15eedf6d63cc924e28a61653bc28548dc8d64852
0009b7b8698182a59a6ff4832cba222519e623c2
refs/heads/master
2020-02-26T13:43:27.124926
2016-09-13T17:14:11
2016-09-13T17:14:11
45,806,607
1
1
null
null
null
null
UTF-8
C++
false
false
1,102
cpp
/*================================================== ==================================================*/ #include <iostream> #include <sstream> #include <vector> #include <sstream> #include <arpa/inet.h> #include <stdlib.h> #include "MessageStack.h" #include "Message.h" #include "MessageOpCode.h" #include "MessageTy...
[ "alevar@gmail.com" ]
alevar@gmail.com
f84391513b5f5929c5f020fbe0fd774c72ac5eef
28690c8767e907ad83304a6b58fec76c6ba1f46c
/ThirdPartyLibs/include/CGAL/Arr_linear_traits_2.h
847b0487c40b5833123ce0235a89a376a12b27ff
[]
no_license
haisenzhao/SmartCFS
c9d7e2f73cde25a5957d1c3268cc5ddbbe7f5af2
2c066792dab2ca99b02bc035e77d09b4b5619aa2
refs/heads/master
2023-08-20T17:51:37.254851
2021-09-27T20:55:36
2021-09-27T20:55:36
271,935,428
7
0
null
null
null
null
UTF-8
C++
false
false
62,569
h
// Copyright (c) 2006,2007,2009,2010,2011 Tel-Aviv University (Israel). // All rights reserved. // // This file is part of CGAL (www.cgal.org). // 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 Licens...
[ "haisenzhao@gmail.com" ]
haisenzhao@gmail.com
eb263b0451b9ad0a64251fc1d146e894fbcf5406
93427e5015233aea8284ab7dc37a4b59b9d6c500
/template/template.hpp
12444e9c452a5246aec3a0d40f3aea52b60b831e
[ "CC0-1.0" ]
permissive
zxc123qwe456asd789/library
fd978a387c8dd805ef1a7ffc1118272c6878b64a
13c01442cc5082da181acdaa414554ace30b6ae3
refs/heads/master
2023-05-28T22:50:47.466753
2021-06-12T04:10:24
2021-06-12T04:10:24
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,209
hpp
#pragma once using namespace std; // intrinstic #include <immintrin.h> #include <algorithm> #include <array> #include <bitset> #include <cassert> #include <cctype> #include <cfenv> #include <cfloat> #include <chrono> #include <cinttypes> #include <climits> #include <cmath> #include <complex> #include <cstdarg> #inclu...
[ "suteakadapyon3@gmail.com" ]
suteakadapyon3@gmail.com
59024e3ae6ad9ab891510275befbf04684bed83d
3cd4cc83515c335728b7c16e7610f25dd8e087fe
/examples/Examples/Chap10/vtkTestClass.h
b61939af35aa9d609871ec8bcce04927d95efc0f
[]
no_license
liuyaoxinneo/VTK
a223cf1f05639299ce6afae23c19d2989d55578b
90dc403896aef1ba828e413950e4ffe3ab041eb6
refs/heads/master
2021-05-08T08:02:22.252992
2017-10-15T13:55:37
2017-10-15T13:55:37
106,976,917
1
1
null
null
null
null
GB18030
C++
false
false
1,057
h
/********************************************************************** 文件名: vtkTestClass.h Copyright (c) 张晓东, 罗火灵. All rights reserved. 更多信息请访问: http://www.vtkchina.org (VTK中国) http://blog.csdn.net/www_doling_net (东灵工作室) **********************************************************************/ #ifndef __...
[ "neo19941120@hotmail.com" ]
neo19941120@hotmail.com
bd3f3f8bd41fcb3cf04dc58fdc722c5be3f11391
0d709da61a4684f1aabe3bdb8edf78be238e2e27
/Exam - Mar 2020/02.MemoryMonitor/main.cpp
5173ca08108e62743c7e1dd41d8b65325441d7f1
[]
no_license
Vikadie/Cpp-codes
f1f947e104049fc90f3c46ab83d244cac351882c
c59cc576f8d839a0d74bcd66862d527e70b3aee6
refs/heads/master
2022-12-12T23:02:45.605465
2020-09-06T17:34:59
2020-09-06T17:34:59
283,164,981
1
0
null
null
null
null
UTF-8
C++
false
false
335
cpp
#include <iostream> #include <string> #include "CommandExecutor.h" int main() { int commands = 0; std::string input; std::cin >> commands; std::cin.ignore(); CommandExecutor commandExecutor; for(int i = 0; i < commands; ++i) { getline(std::cin, input); commandExecutor.extractCommand(input); }...
[ "68245263+Vikadie@users.noreply.github.com" ]
68245263+Vikadie@users.noreply.github.com
e0311409e95960738fa431314058b2df1ec76949
f25efd73c7196f3edcc8f8263390d10e095fb5e8
/ElevatorSimulation/elevator.h
318140eea55e4d67f46ff23454a0949ea456958b
[]
no_license
phongnh23/elevator-simulation
5270c91a7db2055f674963c5e4a87d5be1e9694b
063f42fde6ed551f74b049aac7ffc8513ce3c0fd
refs/heads/master
2020-03-29T18:23:46.382116
2018-09-26T01:31:53
2018-09-26T01:31:53
150,209,714
0
0
null
null
null
null
UTF-8
C++
false
false
2,225
h
#ifndef ELEVATOR_H #define ELEVATOR_H #include <QWidget> #include <QPushButton> #include "elevatorthread.h" namespace Ui { class Elevator; } class Elevator : public QWidget { Q_OBJECT public: explicit Elevator(QWidget *parent = 0, int toNumber = 1); ~Elevator(); int getCurrentFloor(); void setC...
[ "phongnh23@viettel.com.vn" ]
phongnh23@viettel.com.vn
112f3f23da2bc9e5ea4403d7d8412623054d9720
2b67670a7ce2d34be25a60ca97d131216a3aba3d
/core/src/db/merge/MergeAdaptiveStrategy.cpp
6b948a8737e1221a6c07c27cacb4d9b969c6290b
[ "Apache-2.0", "BSD-3-Clause", "MIT", "JSON", "LGPL-2.1-only", "LicenseRef-scancode-unknown-license-reference", "Zlib", "LicenseRef-scancode-public-domain" ]
permissive
zilliztech/mishards-cloud
3485ec276c5f3f954e624ad6ace64582c6f870c2
9469cc4aca1b7627857505e7297c32283f1dfad8
refs/heads/master
2023-04-03T16:36:49.722201
2021-03-30T08:17:50
2021-03-30T08:17:50
219,909,270
1
1
Apache-2.0
2021-03-30T08:17:50
2019-11-06T04:06:18
C++
UTF-8
C++
false
false
3,016
cpp
// Copyright (C) 2019-2020 Zilliz. 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 l...
[ "noreply@github.com" ]
noreply@github.com
9a717071280c8838ec2e7c38eaa92b890ac19e79
e0f09befa235125ea4c9a54869982d0300a2f609
/library/include/sml/SarsaGradient.hpp
7f235e192c838369b450234b7709ee4f44f12854
[]
no_license
matthieu637/smile
8b22695a38fa31d7238a2c4c87896ef452bc68dc
610f70c0b1daec132aa3a607d69e496302a60653
refs/heads/master
2021-01-17T13:25:28.744544
2016-08-01T13:42:19
2016-08-01T13:42:19
8,015,428
0
0
null
null
null
null
UTF-8
C++
false
false
6,994
hpp
#ifndef SARSAGRADIENT_HPP #define SARSAGRADIENT_HPP /// ///\file SarsaGradient.hpp ///\brief Algorithme par descente de gradient de QLearning avec des fonctions d'approximation /// #include <boost/numeric/ublas/vector.hpp> #include <sml/RLGradientDescent.hpp> #include <simu/MCar.hpp> #include <algorithm> namespace s...
[ "contact@matthieu-zimmer.net" ]
contact@matthieu-zimmer.net
307459128f09b8b3d7609702462d0767b00ea4b8
3bdf849c236e3efe5a5799aeb1a4022d4b3b463c
/include/logger/impl/utils.h
7bb6a33c52229fb4ce79a1eed45845a3b0c23379
[]
no_license
code-dreamer/QtLogger
aa0a98cec22e1611747068b307b2e600a717f8e0
b82861d53e3c1e8a3e235195e1ea0bb4849cb69c
refs/heads/master
2021-01-10T18:40:35.762445
2015-01-22T09:58:35
2015-01-22T09:58:35
29,597,474
0
0
null
null
null
null
UTF-8
C++
false
false
2,722
h
#pragma once #ifdef UNUSED # error "UNUSED already defined" #else # define UNUSED(identifier) /* identifier */ #endif #define DISABLE_COPY_ASSIGN(ClassName) \ private: \ ClassName(const ClassName&); \ ClassName(const ClassName&&); \ ClassName& operator=(const ClassName&); \ ClassNa...
[ "andrey.lankin.work@gmail.com" ]
andrey.lankin.work@gmail.com
c18081051697b8ea35f65ea0cb0c6a65d96cccfa
f6851f1c37012d6443c76542f87f637dcdef3de6
/C-CTP/src/QuantBox.C2CTP/QuantBox.C2CTP.cpp
362a5ab587eb34c701aa21d00891df8fb04d38aa
[ "BSD-3-Clause" ]
permissive
anoval/CTP
1b8992c76ade9ea890a4df29d293bb9254914e81
7ad506724f81026bb55cabf9c7a8e7d757c284f5
refs/heads/master
2021-01-16T18:58:48.293744
2012-12-04T16:31:08
2012-12-04T16:31:08
null
0
0
null
null
null
null
GB18030
C++
false
false
9,664
cpp
// QuantBox.C2CTP.cpp : 定义 DLL 应用程序的导出函数。 // #include "stdafx.h" #include "QuantBox.C2CTP.h" #include "MdUserApi.h" #include "TraderApi.h" #include "CTPMsgQueue.h" inline CCTPMsgQueue* CTP_GetQueue(void* pMsgQueue) { return static_cast<CCTPMsgQueue*>(pMsgQueue); } inline CMdUserApi* MD_GetApi(void* ...
[ "wu-kan@163.com" ]
wu-kan@163.com
b5665f1bc084eb7614e008a189c626e60d15bbbc
1497386b0fe450e6c3881c8c6d52d9e6ad9117ab
/trunk/CrypTool/DlgFactorisationDemo.cpp
a989ee127eb89bcd8da8ea8743579c74c0236c81
[ "Apache-2.0" ]
permissive
flomar/CrypTool-VS2015
403f538d6cad9b2f16fbf8846d94456c0944569b
6468257af2e1002418882f22a9ed9fabddde096d
refs/heads/master
2021-01-21T14:39:58.113648
2017-02-22T14:10:19
2017-02-22T14:10:19
57,972,666
0
5
null
null
null
null
ISO-8859-1
C++
false
false
31,798
cpp
/************************************************************************** Copyright [2009] [CrypTool Team] This file is part of CrypTool. 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 a...
[ "florian@marchal.de" ]
florian@marchal.de
b4cbda9313dac1db53c8907c42f35c798d29fbe1
625b56ea2aa30484b875c65bf2fc295c0d95e8cb
/Sources/Stats/py_stats.hpp
32799f97ed9af7364f41f7d28c63a638f4031d9e
[ "Apache-2.0" ]
permissive
ORNL-QCI/netket
996c981f2c9e854473c6c7d852e67823d90fce6e
8974f93cf33d8984fb08aafdfe273b2c99a78059
refs/heads/master
2022-01-31T05:29:03.750747
2019-07-23T02:20:21
2019-07-23T02:20:21
197,837,025
1
0
Apache-2.0
2019-07-19T20:22:29
2019-07-19T20:22:28
null
UTF-8
C++
false
false
1,845
hpp
#ifndef NETKET_PYSTATS_HPP #define NETKET_PYSTATS_HPP #include <pybind11/pybind11.h> #include "common_types.hpp" #include "obs_manager.hpp" namespace py = pybind11; namespace netket { namespace detail { py::dict GetItem(const ObsManager& self, const std::string& name) { py::dict dict; self.InsertAllStats(name...
[ "damian.hofmann@mpsd.mpg.de" ]
damian.hofmann@mpsd.mpg.de
39f8113abd3043a1a3ef7a77b5d87de26999bddf
63f40225cd0b7cea5391efc717984db0a4017854
/test-suite/generated-src/cpp/test_duration.hpp
4ea5bcca894a0caa86cbc9ebf63e75d3be9cbada
[ "Apache-2.0" ]
permissive
Wattpad/djinni
5d78ee51c629bdecf2b219cb5b958b52eedfa9c2
9bdbe6b3523ff0f12b5eab3f9122d8388823b04c
refs/heads/master
2020-04-06T06:33:52.751727
2016-05-30T21:44:18
2016-05-30T21:44:18
28,932,971
7
0
null
2016-05-30T21:44:18
2015-01-07T20:37:38
C++
UTF-8
C++
false
false
1,949
hpp
// AUTOGENERATED FILE - DO NOT MODIFY! // This file generated by Djinni from duration.djinni #pragma once #include <chrono> #include <cstdint> #include <experimental/optional> #include <string> class TestDuration { public: virtual ~TestDuration() {} static std::string hoursString(std::chrono::duration<int32...
[ "miro.knejp@gmail.com" ]
miro.knejp@gmail.com
217fb35b7f6a2baf5e8179a73bb5212112e5c0d8
865d7a7f4e69d3f2e19a1107ce3ca82be9c7e04b
/哈夫曼编码/哈夫曼编码.cpp
f9d6b8675e0f257f4b4485c05ebca072501a721f
[]
no_license
qinyingwu/Huffman
261afedfdb3ee329db75fbaa5f6b913d0047b15e
715a0801ef20d3a53fc77a13b7711e0a05f3e0bd
refs/heads/master
2020-07-03T09:29:31.190231
2019-08-12T06:00:07
2019-08-12T06:00:07
201,866,680
0
0
null
null
null
null
GB18030
C++
false
false
3,127
cpp
// 哈夫曼编码.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include <iostream> #include<stdlib.h> #include <queue> #include <stack> #include <string> #include "stdafx.h" #include <fstream> using namespace std; int fff = 0; string readFileContent(string str) { std::ifstream fin(str); if (!fin.is_open()) { exit(1); } s...
[ "774405003@qq.com" ]
774405003@qq.com
d2befca356e91be991770a9ae41e8eb70735e4ac
707eb97c810fe49094c9b39c3918af73ea3c92a9
/fboss/agent/hw/sai/store/SaiStore.h
fb4f0148e12939c0f094fdcdb56f6ff28177474f
[ "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
chmodawk/fboss
e178f27c30223bbac466ff536dc3776ed121bf1b
a9b9c054b59b1435e2b7f6ff50cf675c3e2a0ac1
refs/heads/master
2023-03-12T10:53:16.469977
2021-03-08T11:35:30
2021-03-08T11:37:30
null
0
0
null
null
null
null
UTF-8
C++
false
false
18,829
h
/* * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. An additional grant * of patent rights can be found in the PATENTS file in the same directory. * */ #pra...
[ "facebook-github-bot@users.noreply.github.com" ]
facebook-github-bot@users.noreply.github.com
c7ce7232bbfe16a2d360a4e5d84a164673f22210
a09400aa22a27c7859030ec470b5ddee93e0fdf0
/stalkersoc/source/control_run_attack.cpp
e4808af10277491d23581512be5215bc655b88fb
[]
no_license
BearIvan/Stalker
4f1af7a9d6fc5ed1597ff13bd4a34382e7fdaab1
c0008c5103049ce356793b37a9d5890a996eed23
refs/heads/master
2022-04-04T02:07:11.747666
2020-02-16T10:51:57
2020-02-16T10:51:57
160,668,112
1
1
null
null
null
null
UTF-8
C++
false
false
4,503
cpp
#include "StdAfx.h" #include "ai/monsters/control_run_attack.h" #include "ai/monsters/BaseMonster/base_monster.h" #include "ai/monsters/monster_velocity_space.h" #include "ai/monsters/control_animation_base.h" #include "ai/monsters/control_direction_base.h" #include "ai/monsters/control_movement_base.h" void CControlR...
[ "i-sobolevskiy@mail.ru" ]
i-sobolevskiy@mail.ru
752860344eaee86ca519a859f5caa132aff6f87c
aa903ef99df7b688e2639f304550bb96a57ea7af
/Day6_IntermediateCPP/Project1/String.cpp
ac37e8f957508e00c5aecdf79f07eaa0fedec43b
[]
no_license
Ashish-Surve/Learn_C-CPP
f4a4f98b33d775362beebb4aeb91b7407124e18c
9e7cd7239a96d7af70b10f5b3d19dac58a8ce7d5
refs/heads/master
2020-12-13T20:00:10.478308
2020-02-13T12:17:35
2020-02-13T12:17:35
234,510,149
0
0
null
null
null
null
UTF-8
C++
false
false
1,006
cpp
#include"String.h" #include<iostream> using namespace std; String::String(const char * c) { cout << "inside String parameterised" << endl; Len = strlen(c); Name = new char[Len + 1]; strcpy_s(Name, Len + 1, c); } String::String() { cout << "inside String default" << endl; Len = 0; Name = new char[1]; *Name =...
[ "ashish.surve@outlook.in" ]
ashish.surve@outlook.in
ff7ac10c40d066e0c16d55faaf308f14b834d0dd
0f52b2074afa3f1a99942ad5473da3786bf4f4cf
/lab2/timeit.cpp
f54ea72f9be1c3d2aae18946d2ce23564ed1eb1d
[]
no_license
pokachopotun/msu_m118_ivanov
350a5f9000565a1b3739b6ffcd4ec7c68150cf78
2a58e006c174f59b94e2b4582943ebf3adc4a9bd
refs/heads/master
2022-12-12T22:44:13.440398
2020-09-04T10:08:07
2020-09-04T10:08:07
149,507,569
0
0
null
null
null
null
UTF-8
C++
false
false
1,018
cpp
#include <papi.h> #include <iostream> #include <memory> #include <testsized.h> #include <chrono> using namespace std; typedef std::chrono::high_resolution_clock Clock; const int numEvents = 1; const int reps = 1; void timeit(int mSize, int bSize, const string& mode){ double worktime = 0; for(int i=0 ;i < reps; i+...
[ "mr.salixnew@gmail.com" ]
mr.salixnew@gmail.com
852380c69990d02376f8afb85a852ebc807dac44
a18898bce8afba8ff6107413745239c447ee55b5
/04/ex03/IMateriaSource.hpp
75ce52cfd412c4ba07523e88b040aa90f9459364
[]
no_license
nesvoboda/piscine_cpp
7d19b6783b51787fbc4f5085fb71a6ae407f93f0
854cb7062b175c6631147a95a954de8cfe0bdeeb
refs/heads/master
2022-12-30T21:25:06.599826
2020-10-20T10:42:42
2020-10-20T10:42:42
286,800,642
0
1
null
null
null
null
UTF-8
C++
false
false
1,193
hpp
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* IMateriaSource.hpp :+: :+: :+: ...
[ "ashishae@student.42.fr" ]
ashishae@student.42.fr
3621fa8e950d50a8adcad8c32e052778a79e8413
8501c150e044c0d9fa72be9f2d583f8ca4188b69
/libs/common/delay.hpp
1a4fd75ebb238bac99e277c4b150efdb407be49b
[ "Apache-2.0", "CC-BY-4.0" ]
permissive
utsavjnn/iroha
7234fc88eacff8a3e265928fe2eff0c8c629eda0
072bf4d0fb0fc505feb4b102944c6bd89830a50c
refs/heads/master
2022-12-06T19:49:54.911117
2020-07-09T18:40:20
2020-07-10T19:22:03
278,109,080
4
0
Apache-2.0
2020-07-08T14:18:44
2020-07-08T14:18:43
null
UTF-8
C++
false
false
6,853
hpp
/** * Copyright Soramitsu Co., Ltd. All Rights Reserved. * Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. * SPDX-License-Identifier: Apache-2.0 */ #ifndef IROHA_DELAY_HPP #define IROHA_DELAY_HPP #include <rxcpp/operators/rx-delay.hpp> namespace iroha { /** * This class is mostly the s...
[ "andrei@soramitsu.co.jp" ]
andrei@soramitsu.co.jp
cf0ad796dd2f30bd540b99da475364647bfad7b2
db96b049c8e27f723fcb2f3a99291e631f1a1801
/src/algo/sequence/unit_test/unit_test_align_cleanup.cpp
8a982d117fc74de00e311446c70bd0cd43c0a97e
[]
no_license
Watch-Later/ncbi-cxx-toolkit-public
1c3a2502b21c7c5cee2c20c39e37861351bd2c05
39eede0aea59742ca4d346a6411b709a8566b269
refs/heads/master
2023-08-15T14:54:41.973806
2021-10-04T04:03:02
2021-10-04T04:03:02
null
0
0
null
null
null
null
UTF-8
C++
false
false
9,828
cpp
/* $Id$ * =========================================================================== * * PUBLIC DOMAIN NOTICE * National Center for Biotechnology Information * * This software/database is a "United States Government Work" under the * terms of the United States Copyrig...
[ "ludwigf@78c7ea69-d796-4a43-9a09-de51944f1b03" ]
ludwigf@78c7ea69-d796-4a43-9a09-de51944f1b03
5daac50b096a5af8a014fe80355914922d3c6769
91fd8f1aeecdf3b619c2b59e23d7261d51a046c1
/프로그래머스/2017 팁스타운/예상 대진표.cpp
eceab1972a047175f0d40fdab47c4bb1d7ef1302
[ "MIT" ]
permissive
jm199seo/coding-test-practice
d1f2dab03b5a8873dc2eb4d6a2de1d84c6c01bf0
e18f9b0636f870047f04d0579aa42a20fe8153a8
refs/heads/master
2023-01-03T06:58:52.299338
2020-10-22T20:04:12
2020-10-22T20:04:12
297,982,850
1
0
null
null
null
null
UTF-8
C++
false
false
781
cpp
#include <bits/stdc++.h> using namespace std; // https://programmers.co.kr/learn/courses/30/lessons/12985 int solution(int n, int a, int b) { int answer = 1; if (a > b) { int temp = b; b = a; a = temp; } while (n / 2 > 1) { n = n / 2; if (b - a < 2) { ...
[ "jm199seo@vt.edu" ]
jm199seo@vt.edu
26226bf6bd1eecc86d2a0e4c867d0895b6c09049
3bea155d88e1bf4984795153b0f365e4eeaeb455
/src/users/customer.cpp
06e7583f8bd968f7fe2a10c6cd2017d3a690b6e6
[]
no_license
youssef7ussien/ECommerceSystem-Cpp
c0a43f7695eafcd059b0e1ce1429e2d519a231e8
6ea92b068479245aa12fc6dc43da5e7b770665ce
refs/heads/master
2023-04-01T23:31:10.827893
2021-03-31T01:06:12
2021-03-31T01:06:12
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,128
cpp
#include "customer.h" #include <ctime> #include <iomanip> #include <fstream> #include <iostream> using namespace std; PurchaseData::PurchaseData() { name=address=phoneNumber=email=country=""; } string PurchaseData::getName() const { return name; } void PurchaseData::setName(string name) { this->name=name...
[ "youssef12468@gmail.com" ]
youssef12468@gmail.com
cf9561ee08400fcd438aae4a31f9416daf68c5a2
c3e8096995748151e010ef3984418e30dce25e0e
/testing/share/Testing/test_data/HronTurekFsi/fluid/0/motionU
28420096889162c0bff3662601d3169fcd6f7f1c
[ "LicenseRef-scancode-unknown-license-reference", "NCSA" ]
permissive
anilkunwar/ElmerFoamFSI
ebf26615930d25710330abd700e52cb5273672da
b042d74cd42aa80f58c6d5c605b0e46d92258fcf
refs/heads/master
2020-06-28T21:02:57.870856
2016-09-24T01:00:22
2016-09-24T01:00:22
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,612
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | foam-extend: Open Source CFD | | \\ / O peration | Version: 3.1 | ...
[ "mtcampbe@illinoisrocstar.com" ]
mtcampbe@illinoisrocstar.com
926142994f1d7be3dc4a7f408f5cb7ca07613d75
6732486464a2cdcb0816180badeac6a49ca5cc2d
/differential_amplifier_LGT8F328P/differential_amplifier_LGT8F328P.ino
6fd3357298a2983103f15baa61f326f88f17419c
[]
no_license
spiderock98/Arduino
5de2664fe4c7bf00915a5249d75e6e8e6808b064
7d64ab1f165edc1e199e6d47f8725d598d3f4c9f
refs/heads/master
2022-04-29T13:42:27.742269
2021-05-22T14:52:18
2021-05-22T14:52:18
140,645,921
0
0
null
2022-03-27T16:18:02
2018-07-12T01:40:49
C++
UTF-8
C++
false
false
638
ino
//============================================ // Differential Amplifier demo for LGT8F328x // by dbuezas // Using new differential_amplifier library. // Differential read from all analog pin combinations //============================================ #include "differential_amplifier.h" void setup() { Serial.begin(...
[ "5751062057@st.utc2.edu.vn" ]
5751062057@st.utc2.edu.vn
3aa98708060f6484261e91e9993f5a13a664ae66
65f427dad9fedca750aad7dcfeff3840d5f0c1e2
/CH13.35/StrVector.h
0dc40ed120d5764e6fffd639346588086a49f7ff
[]
no_license
wuzhipeng2014/CPP-Primer
412b8f44d70dc6cb0aa1f217f1e1050c0cee1107
ff8d90f1fb78680c415c18a64f0b2ae5eacb11f8
refs/heads/master
2020-06-12T13:40:06.357780
2015-07-14T01:59:33
2015-07-14T01:59:33
39,045,880
0
0
null
null
null
null
GB18030
C++
false
false
1,226
h
#pragma once #define _SCL_SECURE_NO_WARNINGS #include <string> #include <memory> using namespace std; class StrVector { public: StrVector(); ~StrVector(); //拷贝控制成员 StrVector(const StrVector &); //拷贝构造函数 StrVector& operator=(const StrVector &); //拷贝赋值运算符 StrVector(StrVector &&); //移动构造函数 StrVector& ope...
[ "798288416@qq.com" ]
798288416@qq.com
c444e1c88ff65b39f5f70a026eb2a30e9dfb2983
cf9c4f10e2db6508a4784eb56d63c87000047e78
/src/SOFilterDebuger/DebugModule.cpp
11f60c0d54a45ecedcc577074febc432807c3450
[ "MIT" ]
permissive
wakare/Leviathan
86f578bebb0b9100920d981ef6c67672a241b94b
8a488f014d6235c5c6e6422c9f53c82635b7ebf7
refs/heads/master
2021-06-26T17:25:28.927589
2020-10-11T15:12:53
2020-10-11T15:12:53
151,736,145
3
0
null
null
null
null
UTF-8
C++
false
false
703
cpp
#include "DebugModule.h" namespace SOFilter { DebugModule::DebugModule() : m_debug_state(EDS_UNKNOWN) { auto _debug_task = [this](CoPullType<int>& sink) { }; DoAsyncTask(_debug_task); } void DebugModule::DebugStart() { _debugStateChange(EDS_START); } void DebugModule::DebugStop() { _debugSta...
[ "wakarenokaze@gmail.com" ]
wakarenokaze@gmail.com
47b6d0cf84d8df3d4d5d53bc77eaa177009f74f3
691d74ae7d6b6769fead7d2a95f94b8453a4acd2
/Learn Advanced C++ Programming/Operator Overloading/Overloading Plus/Complex.cpp
acc6f5ebe766ab3e2aeeadab17c6b6b4fd0cd790
[]
no_license
karlit0/Learn-Advanced-C-Programming---John-Purcell
fc91dc95e87b6fd318b2d60b8e148b00c40a410a
3319810e2207e127182619015675df8b19b8fc14
refs/heads/master
2023-01-20T04:32:20.584933
2020-11-25T19:44:41
2020-11-25T19:44:41
305,679,747
0
0
null
null
null
null
UTF-8
C++
false
false
869
cpp
#include "Complex.h" ostream& operator<<(ostream& Out, const Complex& C) { Out << "(" << C.GetReal() << ", " << C.GetImaginary() << ")"; return Out; } Complex operator+(const Complex& C1, const Complex& C2) { return Complex(C1.GetReal() + C2.GetReal(), C1.GetImaginary() + C2.GetImaginary()); } Complex operator+(c...
[ "astipanovic23@gmail.com" ]
astipanovic23@gmail.com
a086b59bc164d637928e9b7c747e8abd5fd65c0d
c6fa53212eb03017f9e72fad36dbf705b27cc797
/DQM/TrackerCommon/plugins/DetectorStateFilter.h
ec4afd2e280b491bf9bd29ae84eade87ff8edf7a
[]
no_license
gem-sw/cmssw
a31fc4ef2233b2157e1e7cbe9a0d9e6c2795b608
5893ef29c12b2718b3c1385e821170f91afb5446
refs/heads/CMSSW_6_2_X_SLHC
2022-04-29T04:43:51.786496
2015-12-16T16:09:31
2015-12-16T16:09:31
12,892,177
2
4
null
2018-11-22T13:40:31
2013-09-17T10:10:26
C++
UTF-8
C++
false
false
521
h
#ifndef DetectorStateFilter_H #define DetectorStateFilter_H #include "FWCore/Framework/interface/EDFilter.h" #include "FWCore/ParameterSet/interface/ParameterSet.h" class DetectorStateFilter : public edm::EDFilter { public: DetectorStateFilter( const edm::ParameterSet & ); ~DetectorStateFilter(); private: boo...
[ "sha1-66dec20152d9caa90fb44e3138a83d284b0c6de4@cern.ch" ]
sha1-66dec20152d9caa90fb44e3138a83d284b0c6de4@cern.ch
0eb376b6a05fd8f6fed11eee5cda3226cdc942de
c74e77aed37c97ad459a876720e4e2848bb75d60
/0-99/3/(6461331)[OK]A[ b'Shortest path of the king' ].cpp
15f263a5ce7c8ba0fbc0d37c7c16d4ea53a685b9
[]
no_license
yashar-sb-sb/my-codeforces-submissions
aebecf4e906a955f066db43cb97b478d218a720e
a044fccb2e2b2411a4fbd40c3788df2487c5e747
refs/heads/master
2021-01-21T21:06:06.327357
2017-11-14T21:20:28
2017-11-14T21:28:39
98,517,002
1
1
null
null
null
null
UTF-8
C++
false
false
709
cpp
#include<iostream> #include<vector> #include<algorithm> #include<functional> #include<map> #include<cmath> #include<queue> #include<stack> #include<sstream> #include<iomanip> #include<bitset> #include<string> using namespace std; typedef long long LL; typedef unsigned long long uLL; typedef long doub...
[ "yashar_sb_sb@yahoo.com" ]
yashar_sb_sb@yahoo.com
3994e94f11225efda520bb8065135e1a3c6a4d87
2a985fd5bfce31e0d41706b4d0df2071ff84ecc9
/POJ/2381/9333395_WA.cpp
f8c19b5c855c4b029d10aa9ce11a6799a241789a
[]
no_license
liuguojun/OnlineJudge
527d6ecd1c879ff6c5be838c08ae2283e479c2c9
06fe122ce5551ca36107f05ec2e9da8ccfde59ed
refs/heads/master
2021-01-22T11:11:33.576712
2012-10-15T14:36:34
2012-10-15T14:36:34
5,849,474
0
1
null
2014-10-13T17:04:19
2012-09-18T00:50:26
C++
UTF-8
C++
false
false
796
cpp
#include <iostream> #include <bitset> using namespace std; int flag[16000010] = {0}; int main() { int a, c, m, R0; cin >> a >> c >> m >> R0; int max = -1, R1, i; while( true ) { R1 = (a*R0 + c) % m; if( flag[R1] ) break; else { ...
[ "liuguojun.pku@gmail.com" ]
liuguojun.pku@gmail.com
ea8c05f620bbc3063c8cb5db61dca8d91b8b2c41
5c519a25471506c2a84546367c2569fb2d01b6b6
/math/primitives.h
ecc54017109ca09e6b8c8e7dc759e8861edd164e
[]
no_license
MightyPowerNuke/math
4ebf5420e90c2b2aad6d72e666a29e8a9025091d
4e33e2bc9d325841318195fdcaa4889e4ad2522b
refs/heads/master
2023-08-15T21:47:31.127708
2021-10-11T19:57:18
2021-10-11T19:57:18
400,864,352
0
0
null
null
null
null
UTF-8
C++
false
false
3,365
h
#pragma once #include <array> #include "vector.h" #include "point.h" namespace geom { /*Line value struct. Contains a point (origin point) P and a direction vector v.*/ struct Line { ::mpn::Point3 P; ::mpn::Vector3 v; constexpr Line() noexcept : P(0,0,0), v(0,0,0) { } constexpr Line(const ::mpn::Point3& ...
[ "vsomos@gmail.com" ]
vsomos@gmail.com
39e5ef583f532ccd37f5a3813dc6b5773d8b4ec9
d0c44dd3da2ef8c0ff835982a437946cbf4d2940
/cmake-build-debug/programs_tiling/function14171/function14171_schedule_3/function14171_schedule_3_wrapper.cpp
cc0b44c904387dedbdf075a4840dbee386368cfe
[]
no_license
IsraMekki/tiramisu_code_generator
8b3f1d63cff62ba9f5242c019058d5a3119184a3
5a259d8e244af452e5301126683fa4320c2047a3
refs/heads/master
2020-04-29T17:27:57.987172
2019-04-23T16:50:32
2019-04-23T16:50:32
176,297,755
1
2
null
null
null
null
UTF-8
C++
false
false
1,473
cpp
#include "Halide.h" #include "function14171_schedule_3_wrapper.h" #include "tiramisu/utils.h" #include <cstdlib> #include <iostream> #include <time.h> #include <fstream> #include <chrono> #define MAX_RAND 200 int main(int, char **){ Halide::Buffer<int32_t> buf00(64); Halide::Buffer<int32_t> buf01(64); ...
[ "ei_mekki@esi.dz" ]
ei_mekki@esi.dz
094bf81ad9e729074398df2f43e07377a8ca0b80
bf2536ee42d1104ef8f8f986093c751fc4b12f82
/On-Line_Game-master/OnlineTagGame/PacketStream.cpp
8b7f65beadd5831292d48e8d1d834a05ac63d54a
[]
no_license
ahmada505/OnlineGaming
3af6efc4c62f615395527ca5480d1c898d00b731
b45b850dad71165eb5f11fd567b5a0e046ec3f71
refs/heads/master
2020-04-25T05:09:04.417158
2019-02-25T15:37:17
2019-02-25T15:37:17
172,532,866
0
0
null
null
null
null
UTF-8
C++
false
false
668
cpp
#include "PacketStream.h" void PacketStream::writeInt(int dataIn) { outputStream << dataIn << ""; } void PacketStream::readInt(int &dataOut) { inputStream >> dataOut; } void PacketStream::writeString(std::string dataIn) { outputStream << dataIn << ""; } void PacketStream::readString(std::string &dataOut)...
[ "anessahmad20@gmail.com" ]
anessahmad20@gmail.com
1dc8f1b2b67210244dd3f761ae8f82fea3c74bca
e5ac268ec52905657c0b916ebb7ffaf74888871b
/dx11tut10/dx11tut10/Engine/Engine/d3dclass.h
f9dce9d2a37134c19a7a7e4fa228fb08e9ca78f4
[]
no_license
sungjae96/directx
8fb53fd6571c5eadde51649f0cff4d431c35bfb6
1c0510672e59861f6592f2acd35203ee915ba691
refs/heads/master
2020-07-26T21:33:17.543520
2019-10-27T09:24:42
2019-10-27T09:24:42
208,770,532
0
0
null
null
null
null
UTF-8
C++
false
false
2,026
h
//////////////////////////////////////////////////////////////////////////////// // Filename: d3dclass.h //////////////////////////////////////////////////////////////////////////////// #ifndef _D3DCLASS_H_ #define _D3DCLASS_H_ ///////////// // LINKING // ///////////// #pragma comment(lib, "dxgi.lib") #pragma comment...
[ "suungjae9612@naver.com" ]
suungjae9612@naver.com
b43c457b595ee900e826571a09a84d7820c25755
d03d052c0ca220d06ec17d170e2b272f4e935a0c
/gen/mojo/services/files/interfaces/ioctl.mojom-common.h
22b54dd94dd11ab64fa3950c13e11ca7c9b6d0ed
[ "Apache-2.0" ]
permissive
amplab/ray-artifacts
f7ae0298fee371d9b33a40c00dae05c4442dc211
6954850f8ef581927df94be90313c1e783cd2e81
refs/heads/master
2023-07-07T20:45:43.526694
2016-08-06T19:53:55
2016-08-06T19:53:55
65,099,400
0
2
null
null
null
null
UTF-8
C++
false
false
1,907
h
// NOTE: This file was generated by the Mojo bindings generator. #ifndef MOJO_SERVICES_FILES_INTERFACES_IOCTL_MOJOM_COMMON_H_ #define MOJO_SERVICES_FILES_INTERFACES_IOCTL_MOJOM_COMMON_H_ #include <stdint.h> #include <iosfwd> #include "mojo/public/cpp/bindings/array.h" #include "mojo/public/cpp/bindings/callback.h" #i...
[ "pcmoritz@gmail.com" ]
pcmoritz@gmail.com
03bd663dd764890be2987024d02a74536802651e
483b059128e71bbb158443da0bf95ce2ecff92e7
/de_stroyer/hooks.h
063bff220cb32e0f22fe168f701f7e42f0f4e9a0
[]
no_license
txz62582/niger
ecbbac53556ce7edb18bd5a6fbd781e35698f3d6
44b30659c77f5a1c40ce1faa11cad73525a5f343
refs/heads/master
2021-01-18T18:36:29.830853
2017-06-17T07:49:22
2017-06-17T07:49:22
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,095
h
#pragma once typedef bool( __stdcall *CreateMoveFn )(float, CUserCmd*); extern CreateMoveFn oCreateMove; enum ClientFrameStage_t { FRAME_UNDEFINED = -1, FRAME_START, FRAME_NET_UPDATE_START, FRAME_NET_UPDATE_POSTDATAUPDATE_START, FRAME_NET_UPDATE_POSTDATAUPDATE_END, FRAME_NET_UPDATE_END, FRAME_REND...
[ "noreply@github.com" ]
noreply@github.com
55436291ea8b1e89369fc3ddc0807668c8d23389
5e9e0adef44a1618af987f07bf4363842660277a
/AngryBirds/source/AngryBirds.Desktop.OpenGL/Button.cpp
d8d573f490281d2e92bb1afb27e75b790adf47ca
[]
no_license
rodrigobmg/Angry-Birds
cf7462c5c38d9b3074f1753d96390a22f5e5ddda
0625646bc1e1d131a05e395bda60471eb4f74d04
refs/heads/master
2020-11-29T12:57:48.601554
2016-03-11T03:43:01
2016-03-11T03:43:01
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,302
cpp
#include "stdafx.h" #include "Button.h" /** * @method Button::init() * @desc inititalizes the button renderer and screen space coordinates */ void Button::init(TiXmlElement *buttonElement) { buttonElement->QueryFloatAttribute("screenX", &x); buttonElement->QueryFloatAttribute("screenY", &y); float imgWid, im...
[ "njain@fiea.ucf.edu" ]
njain@fiea.ucf.edu
11d140982d873ebf0da6bf5a4486a9e892cff891
899516cf6838c9b9e2397fb17b2d4040757835e0
/filetreeview.cpp
11a218862fbcb73414e9b9f13d856339acbce42f
[ "MIT" ]
permissive
Liyinghui1/videoWidget
b3f81332828831f1311b3d60aab2e79f9d9e3662
dae03c3e7b4c1b18f25343d16139e1a729003cb6
refs/heads/master
2021-05-23T00:09:40.142019
2020-04-05T11:56:31
2020-04-05T11:56:31
253,149,753
0
0
null
null
null
null
UTF-8
C++
false
false
693
cpp
#include "FileTreeView.h" #include<QPushButton> #include<QMouseEvent> #include<QDebug> #include<QFileInfo> #include<QFileSystemModel> CFileTreeView::CFileTreeView() { model= new QFileSystemModel; model->setRootPath("C:\\"); this->setModel(model); } void CFileTreeView::mousePressEvent(QMouseE...
[ "noreply@github.com" ]
noreply@github.com
8daee52f3fd88a3134f9c46ccf2f4c7c49e072bc
38e46b75230bebc8212626d3debefaa7c0cfd0bc
/src/array4d.cpp
84456ccb539da5f4362baed9e28ea7d8515af726
[]
no_license
vcmman/libcnn
0a052f99ff8679d80ef6786bc241bc84b08b9051
43f418715810822de6860ca578c0f177b3d1a486
refs/heads/master
2021-01-18T00:09:17.200212
2015-11-16T08:04:24
2015-11-16T08:04:24
49,413,537
0
1
null
2016-01-11T08:50:34
2016-01-11T08:50:31
null
UTF-8
C++
false
false
3,028
cpp
#include <iostream> #include "array4d.hpp" #include "inst_template.hpp" using namespace libcnn; namespace libcnn { /* default constructor */ template<typename DT> Array4D<DT>::Array4D(): value_(nullptr), shape_(std::vector<int>(4, 0)), dim0_(0), dim1_(0), dim2_(0), dim3_(0) {} /* copy construnctor */ template<ty...
[ "lsh@lsh-ubuntu-laptop.(none)" ]
lsh@lsh-ubuntu-laptop.(none)
ab23d0201a2d7f94289387d6b4f4c7b4b58649b0
c7c77ecdb2a33ee387147f068a6772961a5adc78
/stromx/cvimgproc/WarpAffine.cpp
c2111497699440fe346f69a2aabc06f4bec0bb0f
[ "Apache-2.0" ]
permissive
uboot/stromx-opencv
b38d8a3a192f3ed1f1d9d87341f0817024debf32
c7de6353905fee8870f8bf700363e0868ab17b78
refs/heads/master
2020-05-22T01:31:04.138296
2018-02-08T15:19:05
2018-02-08T15:19:05
52,387,716
0
0
null
null
null
null
UTF-8
C++
false
false
15,201
cpp
#include "stromx/cvimgproc/WarpAffine.h" #include "stromx/cvimgproc/Locale.h" #include "stromx/cvimgproc/Utility.h" #include <stromx/cvsupport/Image.h> #include <stromx/cvsupport/Matrix.h> #include <stromx/cvsupport/Utilities.h> #include <stromx/runtime/DataContainer.h> #include <stromx/runtime/DataProvider.h> #includ...
[ "matz.fuchs@gmx.at" ]
matz.fuchs@gmx.at
f84595fffe2751ec157d2d96842553bdace40f45
be821060cc8c977d9d873a4c78635a8f21df8ee4
/in_one_weekend+multithreading/material.h
707c6a8c6aa5b9688cec5833dbf36b554c856bdc
[]
no_license
scriobhh/raytracing_in_one_weekend
d354e9773632a1788fa05ffeb5e4c79ae3d37c24
2cd3f3f5f00ce5a0d70328c82593c44916848537
refs/heads/master
2023-08-24T15:30:34.400123
2021-10-12T14:19:12
2021-10-12T14:19:12
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,329
h
#ifndef MATERIALH #define MATERIALH #include "hitable.h" #include "util.h" class material { public: virtual bool scatter(const ray& r_in, const hit_record& rec, rgb& attenuation, ray& scattered) const = 0; }; point reflect(const point& v, const point& normal) { // the normal is the midpoint of the angle of reflect...
[ "darren.delaney.2018@mumail.ie" ]
darren.delaney.2018@mumail.ie
b79af887e96bc9088abfd818737529a2647a6547
046ef54cc9fd54d4dcccd6255684edce28d0afab
/src/fastqreader.h
9275b27aa8b7816630db3526b99feaf6d8144b48
[ "MIT" ]
permissive
OpenGene/defastq
d7510c2a1a58d0e2e173b6e9a0cf2ec2663f1bba
d037affcdc28463dc670ea773846d795fc6e586b
refs/heads/main
2023-08-11T07:24:30.123071
2021-09-28T01:49:33
2021-09-28T01:49:33
398,289,322
6
0
null
null
null
null
UTF-8
C++
false
false
2,176
h
/* MIT License Copyright (c) 2021 Shifu Chen <chen@haplox.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, m...
[ "chen@haplox.com" ]
chen@haplox.com
0bcfd70283a39b26344ad3d934f53ee5349c4163
15a35df4de841aa5c504dc4f8778581c00397c87
/Server1/Engine/Log/Logger.cpp
4df293558c1ae2a2fefed13dc1afc70ff61edd14
[]
no_license
binbin88115/server
b6197fef8f35276ff7bdf471a025091d65f96fa9
e3c178db3b6c6552c60b007cac8ffaa6d3c43c10
refs/heads/master
2021-01-15T13:49:38.647852
2014-05-05T12:47:20
2014-05-05T12:47:20
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,248
cpp
#include "Logger.h" #include <stdarg.h> #include <string> #include <log4cxx/logger.h> #include <log4cxx/propertyconfigurator.h> #include <log4cxx/helpers/exception.h> using namespace log4cxx; using namespace log4cxx::helpers; #define msgFormatA(buf,msg)\ do{\ va_list ap;\ va_start(ap, msg);\ vsprintf_s(buf,sizeof(buf)...
[ "jjl_2009_hi@163.com" ]
jjl_2009_hi@163.com
d7f28899b0f7b19b6fea0736cba35dab17d06ce3
cf6c6ffd42d8186c842c80238ce42479807a8c15
/src/Game/GameActor.cpp
52ae984495528d476751921dc63ca70d37cf0581
[]
no_license
schlenkibus/Always-On-Static-2D
fbe13f820cc4384a29acee290cedbc1d70d81878
f4bad6d6a5be9bc972f4c1c0fe167986e3a8f292
refs/heads/master
2021-09-06T20:01:07.954608
2018-02-10T18:26:38
2018-02-10T18:26:38
118,633,698
1
0
null
null
null
null
UTF-8
C++
false
false
1,604
cpp
#include <SFML/Graphics/RenderWindow.hpp> #include <SFML/Window/Keyboard.hpp> #include <iostream> #include "GameActor.h" #include "../Box2D/PhysicsWorld.h" GameActor::GameActor(PhysicsWorld& w, sf::Texture& tex, sf::Vector2f pos, std::string name, bool staticActor) : m_texture{tex}, ...
[ "justus.scheil@parteimail.de" ]
justus.scheil@parteimail.de
b75288b97b0b640959dea89cd98ad7cd29f987a6
78bec4bf1516360edb966c653fd5b68e4b20e57a
/Mercado/src/Estabelecimento.cpp
968d7f871d0bf1c82193de17b0747ae340dd5cd8
[]
no_license
artoop/LP1IMD
ae18a8942af8623f24600259b832a9988994a7ed
622829d09e97a25cd3c3f1e63fdbc4759cd5c4ce
refs/heads/master
2022-11-20T21:34:52.340801
2020-07-20T13:47:18
2020-07-20T13:47:18
272,798,777
0
0
null
null
null
null
UTF-8
C++
false
false
3,743
cpp
#include "Estabelecimento.hpp" #include <iostream> #include <iomanip> Estabelecimento::Estabelecimento() { } Estabelecimento::Estabelecimento(const std::string& arquivo) { this->arquivo = arquivo; ler_arquivo(); } Estabelecimento::~Estabelecimento() { } std::string Estabelecimento::unidade_to_string(...
[ "arturbprocopio@gmail.com" ]
arturbprocopio@gmail.com
ee72525adf8f367aa11cbd53f79a1de4db32498b
41f9175f449a5a1f1e45339d92f1f74476e37d1e
/C-C/lanqiao/判断闰年.cpp
11976d0bda4b4e11315aed4c79394e03a2b68f16
[]
no_license
Vicebery/Algorithm-Programs
10753b6344156c42d8673bc0196fb475626dd327
80628aabcd2a203907ccb645984b92c1e05eddfc
refs/heads/master
2021-06-02T21:42:58.696910
2020-08-21T03:06:05
2020-08-21T03:06:05
58,551,580
0
0
null
null
null
null
UTF-8
C++
false
false
177
cpp
#include"iostream" using namespace std; int main() { int y; cin>>y; if(y%400==0||(y%4==0&&y%100!=0)) cout<<"yes"; else cout<<"no"; return 0; }
[ "Vicebery@163.com" ]
Vicebery@163.com
83c285c655d10cb0ff1405015092a760b1a17ea0
3900a8feacf56a2db64c631f822c44191a714dc4
/Examples/SDKLibrary/interface/server/portable/events/data_types/alarm_condition_type_data_t.cpp
123748cbc5ecc34ef14669a653b53cccbdb4da4c
[ "MIT" ]
permissive
JayeshThamke/robot-examples
fc45f61d638001f2358a1b08c7543aa4f3b10664
afc6b8b10809988b03663d703203625927e66e8f
refs/heads/master
2020-03-08T17:18:09.409824
2018-03-29T20:41:10
2018-03-29T20:41:10
128,265,254
1
0
null
2018-04-05T21:16:55
2018-04-05T21:16:55
null
UTF-8
C++
false
false
15,491
cpp
/* ------------------------------------------------------------------------------------------------------------------ COPYRIGHT (c) 2009 - 2017 HONEYWELL INC., ALL RIGHTS RESERVED This software is a copyrighted work and/or information protected a...
[ "Andrew.Cullen@beeond.net" ]
Andrew.Cullen@beeond.net
6f274f8f9d2030c600b3bf32721b123f2e085b5b
be4fd7c1bf5b5d6a998e31ebf00194e25100b662
/landTest.cpp
2951d84d7d753064a0d066157894330c661ce779
[]
no_license
kirkosyn/C-project
53de1c442888c6ffcc78707e7ccb59c50c19c977
0d2070b2844e1d49d7e4146401c0599ea89d4f88
refs/heads/master
2020-03-11T16:02:04.085184
2018-04-18T18:19:58
2018-04-18T18:19:58
null
0
0
null
null
null
null
WINDOWS-1250
C++
false
false
4,714
cpp
#include <iostream> #include <fstream> #include <string> #include <vector> #include "GeographicArea.h" #include "WaterArea.h" #include "LandArea.h" #include "Country.h" #include "Tests.h" ///funkcja zapisująca stan obiektu klasy WaterArea do pliku void writeToFileTests::waterAreaTest() { std::fstream file; file.open...
[ "kokoska300@op.pl" ]
kokoska300@op.pl
7a1c859f8cfa6af53276b5498fcc39b08760f9ee
f90920085074e79a37048155750b80e5e884c5d2
/tsrc/testdriver/siptester/src/TCmdSendReferWithinDialog.cpp
d5753157735bdc1a393e91b8514132696fadda71
[]
no_license
piashishi/mce
fec6847fc9b4e01c43defdedf62ef68f55deba8e
8c0f20e0ebd607fb35812fd02f63a83affd37d74
refs/heads/master
2021-01-25T06:06:18.042653
2016-08-13T15:38:09
2016-08-13T15:38:09
26,538,858
1
1
null
null
null
null
UTF-8
C++
false
false
2,337
cpp
/* * Copyright (c) 2004 Nokia Corporation and/or its subsidiary(-ies). * All rights reserved. * This component and the accompanying materials are made available * under the terms of "Eclipse Public License v1.0" * which accompanies this distribution, and is available * at the URL "http://www.eclipse.org/legal/epl-v10.h...
[ "piashishi@qq.com" ]
piashishi@qq.com
d1f191bcf2cbcbec6a62c49c986591250a6c68db
b3656c674b8c55f10586a63e7ba0da1c89b6087b
/lscvm/lscvm-mem.cpp
db94f80343f67c147d5ef20f98303a71fa56a976
[]
no_license
zhiayang/cddc19
e30975413643c7ebfd82d55564b138dc1515df24
c1374630d61865a641d2788c8efdff9608b004c3
refs/heads/master
2020-05-30T14:40:54.098874
2019-06-15T01:42:37
2019-06-15T01:42:37
189,796,877
1
0
null
null
null
null
UTF-8
C++
false
false
3,830
cpp
// lscvm-memoryinator.cpp #include <stdio.h> #include <string.h> #include <assert.h> #include <map> #include <vector> #include <string> #include <iostream> std::string createNumber(int num) { if(num < 0) { return "a" + createNumber(-num) + "S"; } else if(num < 10) { return std::string(1, (char) (num + 'a'))...
[ "zhiayang@gmail.com" ]
zhiayang@gmail.com
a2e7b2452bab0d31f25f727b8ecee039acc83e99
b2f864c29fceeb2ba4371ede89dfaab898bd588b
/FORTRESS/shlee_fortress.cpp
16edf961d16be2666ec9db0f54ba2d1f3ebbe094
[]
no_license
kdw808/algorithm-study
6d13e7da8bdef9ee964b9c57f37e829b1675610b
cdf49c68f642df58c261cc29ed4ec28b03407755
refs/heads/master
2020-05-22T07:00:24.338378
2017-01-08T01:10:59
2017-01-08T01:10:59
60,958,955
5
5
null
2016-11-21T16:07:17
2016-06-12T09:33:02
Java
UTF-8
C++
false
false
2,058
cpp
#include <stdbool.h> #include <iostream> #include <cstdlib> #include <cmath> #include <vector> #include <algorithm> using namespace std; #define N_MAX 100 #define R_MAX 20000 struct wall_t { float x; float y; float r; int height; vector<wall_t> childs; void add(wall_t rhs) { for (vector<wall_t>::size_type...
[ "shlee.mars@gmail.com" ]
shlee.mars@gmail.com
e99a443d3e43d686742a291f1ccee330295ac48b
0c420e8b97af7a1dacb668b1b8ef1180a8d47588
/Backup2306/EvCoreHeaders/EvFramework/PropertyGridProperty.h
33fdbe7a782b4a4e32c84fb100a638ae0c71e71b
[]
no_license
Spritutu/Halcon_develop
9da18019b3fefac60f81ed94d9ce0f6b04ce7bbe
f2ea3292e7a13d65cab5cb5a4d507978ca593b66
refs/heads/master
2022-11-04T22:17:35.137845
2020-06-22T17:30:19
2020-06-22T17:30:19
null
0
0
null
null
null
null
UTF-8
C++
false
false
735
h
/// PropertyGridProperty.h : interface of the CPropertyGridProperty /// Udupa; April'2012 #pragma once #include "AfxPropertyGridCtrl.h" class CPropertyGridProperty : public CMFCPropertyGridProperty { public: CPropertyGridProperty(const CString& strGroupName, DWORD_PTR dwData=0, BOOL bIsValueList=FALSE); CPropertyG...
[ "huynhbuutu@gmail.com" ]
huynhbuutu@gmail.com
80f7a54b461c1601fe995e680dfbd20ebbd0821f
7033873dd70098ef984893db807626f8b3b69516
/Tombol.cpp
79f23089171729ae5f67adfa24a95bea191d55b8
[]
no_license
anung-git/cpp_class
4b7d150167be5c5a6f68361c2056bd5509c356ce
40048a0b8cb8fb6fe41374037f5d2e5de51ead1e
refs/heads/master
2021-01-16T04:19:46.112862
2020-02-25T15:44:12
2020-02-25T15:44:12
242,974,782
0
0
null
null
null
null
UTF-8
C++
false
false
271
cpp
#include <Arduino.h> Tombol::Tombol(const int up, const int down, const int menu) { pinMode(up,INPUT_PULLUP); pinMode(down,INPUT_PULLUP); pinMode(menu,INPUT_PULLUP); Tombol::down=down; Tombol::up=up; Tombol::menu=menu; } Tombol::~Tombol() { }
[ "anung93@ymail.com" ]
anung93@ymail.com
e559400451f690666d447461cc0e5855cc57579c
8ab4d1ac3e46c132530a5f37595b2d28fd5e394b
/source/server/admin/stats_handler.cc
0a9bd56257a438e118e923ec401bad264e4db8c1
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
apurvsibal/envoy
1a4ac01f214320d78fd0a7981e0141590d19383b
4533ea1897c278477836c72ad5a124148aff4d10
refs/heads/main
2023-05-27T23:36:25.262312
2021-06-18T21:45:11
2021-06-18T21:45:11
378,596,727
2
0
Apache-2.0
2021-06-20T08:35:17
2021-06-20T08:35:17
null
UTF-8
C++
false
false
11,767
cc
#include "source/server/admin/stats_handler.h" #include "envoy/admin/v3/mutex_stats.pb.h" #include "source/common/common/empty_string.h" #include "source/common/html/utility.h" #include "source/common/http/headers.h" #include "source/common/http/utility.h" #include "source/server/admin/prometheus_stats.h" #include "s...
[ "noreply@github.com" ]
noreply@github.com
793493b13a0fdd548d28c5c139ccab635e1a344f
a4055bb38028fdce22a1939bc12c89572ded2f2d
/ESPixelStick/src/output/OutputTM1814Uart.hpp
96a54b2b52ac16cf75dbb18b771a144fda81d8eb
[]
no_license
aaronmefford/ESPixelStick
f1add1b66ef2988b3481685ee77844722652979e
76d60f089f8446db4ddcd24a3a30aad493510362
refs/heads/master
2022-08-11T18:32:14.779996
2022-07-19T00:06:38
2022-07-19T00:06:38
112,758,010
0
0
null
2022-07-19T00:06:39
2017-12-01T15:54:10
C++
UTF-8
C++
false
false
2,495
hpp
#pragma once /* * OutputTM1814Uart.h - TM1814 driver code for ESPixelStick UART * * Project: ESPixelStick - An ESP8266 / ESP32 and E1.31 based pixel driver * Copyright (c) 2015, 2022 Shelby Merrick * http://www.forkineye.com * * This program is provided free for you to use in any way that you wish, * subject to the l...
[ "MartinMueller2003@yahoo.com" ]
MartinMueller2003@yahoo.com
1b624912610c6a14df9f9edc3540b4d940166840
5e669e02bb0e685df1f4d52f9f68c8f2045e7e74
/goteras-reto/main.cpp
960b2f8dc8c6663ebf19bd6d21ae3b3bf21f2118
[]
no_license
kgrafico/problema-goteras-c
759ead494f9dfcbb406a0a2dd930e5fd5e0e65b3
fcd90a0e0f82102bda1f191de841fbdfac17aa6f
refs/heads/master
2022-03-09T09:59:39.813977
2019-10-03T10:34:57
2019-10-03T10:34:57
null
0
0
null
null
null
null
UTF-8
C++
false
false
709
cpp
// Problema <216> <goteras> // // https://www.aceptaelreto.com // // <Carolina Chamorro Saldaña> //--------------------------------------------------------- #include <iostream> using namespace std; void casoDePrueba() { int seconds, hours, min, sec; cout << "1: " << endl; cin >> seconds; hours = ...
[ "carolina.chamorro@securitasdirect.es" ]
carolina.chamorro@securitasdirect.es
a6998c4a6d80c2eee962efc8ad4394638cc4dd7d
395d1860e82bc75ccc04b91c4b9a8fa46276d9bb
/Source/Vision/Runtime/EnginePlugins/Havok/HavokPhysicsEnginePlugin/vHavokSerialize.cpp
7f271a621082c2edabf1f6847b4a11389dbf05e9
[]
no_license
Hakhyun-Kim/projectanarchy
28ba7370050000a12e4305faa11d5deb77c330a1
ccea719afcb03967a68a169730b59e8a8a6c45f8
refs/heads/master
2021-06-03T04:41:22.814866
2013-11-07T07:21:03
2013-11-07T07:21:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,672
cpp
/* * * Confidential Information of Telekinesys Research Limited (t/a Havok). Not for disclosure or distribution without Havok's * prior written consent. This software contains code, techniques and know-how which is confidential and proprietary to Havok. * Product and Trade Secret source code contains trade secrets ...
[ "joel.van.eenwyk@havok.com" ]
joel.van.eenwyk@havok.com
2a8587aca04b97ff71d6643424586f7f155bdae6
7d6e81d77da55dce2e895d7d787f9a529039995b
/array1.cpp
4f370cbaaf0f80aaba4af22e5ee0d3b698a2a862
[]
no_license
andyanidas/TeachingMgl
65dc88088ecc2ad6529b96c674fcdd09f42801f5
1305923c9e43789db09b1ec520139db21811cc3a
refs/heads/main
2023-04-24T19:08:04.587445
2021-05-20T16:14:59
2021-05-20T16:14:59
331,643,983
0
1
null
null
null
null
UTF-8
C++
false
false
775
cpp
#include<iostream> using namespace std; //array int main(){ int arr[5] = {1,2}; //toonii tsugluulga {1,2,3,4,5} cout<<arr[2]<<endl; // '\0' -> null element buyu hooson char ug[5] = {'H','e','l','o'}; cout<<ug[0]; cout<<ug[1]; ug[2] = 'm'; //{'H','e','m','o'}; cout<<ug[2]; cout<<ug[2]; cou...
[ "noreply@github.com" ]
noreply@github.com
f0de5ae4e8071f61edae613bca76a65ea7686528
97d6161b8bd9dbe5d8a2610bf2428355b25117ad
/NodeMCU2AllJoyn/MQTTDSB/BridgeRT/WidgetAction.cpp
69d2983389de2a5a719035bc0ac84f579ce12c23
[ "MIT" ]
permissive
JohnMasen/NodeMCU-WindowsIoT-AllJoyn
fe96319e23f787bd7dbceee90de8655c0f6c677f
c130158ffdf67a485b562d0db15f062514fd42fe
refs/heads/master
2021-01-22T04:48:44.011785
2015-09-16T10:20:02
2015-09-16T10:20:02
42,281,761
1
0
null
null
null
null
UTF-8
C++
false
false
8,788
cpp
// // Copyright (c) 2015, Microsoft Corporation // // Permission to use, copy, modify, and/or distribute this software for any // purpose with or without fee is hereby granted, provided that the above // copyright notice and this permission notice appear in all copies. // // THE SOFTWARE IS PROVIDED "AS IS" AND THE...
[ "bucherjiang@msn.com" ]
bucherjiang@msn.com
0cd124a5947c64a75bbe528a3a41afb4d39846fb
b888cb86601a4e28a033386bc1c8516318528f52
/BattleTank/Source/BattleTank/TankPlayerController.cpp
da4ac8f152ca06e24b814362d798e8a32fb93c57
[]
no_license
Skyrix012/BattleTank_04
84d25da9f224cdf35641e280325cf14cebeb80d7
7d2f260bbc1b8996d0a0c040d3b8cdf4d0e9280e
refs/heads/master
2020-03-08T12:35:10.722978
2018-05-03T22:54:27
2018-05-03T22:54:27
128,130,225
0
0
null
null
null
null
UTF-8
C++
false
false
1,903
cpp
// Fill out your copyright notice in the Description page of Project Settings. #include "TankPlayerController.h" #include "BattleTank.h" void ATankPlayerController::BeginPlay() { Super::BeginPlay(); auto ControlledTank = GetControlledTank(); if (!ControlledTank) { UE_LOG(LogTemp, Warning, TEXT("PLayerControll...
[ "jk-012@hotmail.com" ]
jk-012@hotmail.com
82c7c54b67f2cfad70c4eee22475d2ddbc7d0063
f8f14b69daa92751826d6cc9843773dbb372fcb3
/maemo/gui/libmobkvmsg.cpp
3cbeffc0eb76f9d40e0956b4e957397622dc9632
[]
no_license
nickjalbert/rage
bfcda8b362d6b0c423006b2d51438d54978fe5de
7677f9d4fbb6b5020a7ef7c3357e9dba9c1ad313
refs/heads/master
2021-05-26T13:02:42.044440
2010-05-17T21:41:19
2010-05-17T21:41:19
603,052
0
0
null
null
null
null
UTF-8
C++
false
false
2,893
cpp
#include "libmobkvmsg.h" #ifdef __MAEMO5__ void ConnectionEventCallback(ConIcConnection* /*connection*/, ConIcConnectionEvent* event, gpointer user_data) { ConnectionType *data = (ConnectionType*)user_data; bool connected = (con_ic_connection_event_get_status(event) == ...
[ "brho@cs.berkeley.edu" ]
brho@cs.berkeley.edu
47711bffdd4fc16afa5639c9180ce5073b8dbbbe
e016b0b04a6db80b0218a4f095e6aa4ea6fcd01c
/Classes/Native/mscorlib_System_Predicate_1_gen3989486669.h
78722cc43518b01faf7b586be10904e45cc5b650
[ "MIT" ]
permissive
rockarts/MountainTopo3D
5a39905c66da87db42f1d94afa0ec20576ea68de
2994b28dabb4e4f61189274a030b0710075306ea
refs/heads/master
2021-01-13T06:03:01.054404
2017-06-22T01:12:52
2017-06-22T01:12:52
95,056,244
1
1
null
null
null
null
UTF-8
C++
false
false
851
h
#pragma once #include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> #include "mscorlib_System_MulticastDelegate3201952435.h" // Mapbox.VectorTile.Geometry.InteralClipperLib.InternalClipper/OutRec struct OutRec_t1251549258; // System.IAsyncResult stru...
[ "stevenrockarts@gmail.com" ]
stevenrockarts@gmail.com
cfb7e948eb2f93bcb935ca44d521098894692e7b
ac68e95eef155951a5ec57abb2e6432ea451ff30
/boyview.cpp
75b8f015650498ee592680edc551868d0d023933
[]
no_license
nazib07/RestaurantManagement
601f3a4a84e0e74485d6ee002f965494eced5fb8
f4921a7b6112a648b096702d6c619d9cca41649b
refs/heads/master
2020-05-22T01:17:31.409310
2018-12-27T16:39:23
2018-12-27T16:39:23
24,441,525
0
0
null
null
null
null
UTF-8
C++
false
false
467
cpp
#include "boyview.h" #include "ui_boyview.h" boyView::boyView(QWidget *parent) : QWidget(parent), ui(new Ui::boyView) { ui->setupUi(this); } boyView::~boyView() { delete ui; } void boyView::setBoy(Boys *boy) { ui->lbl_address->setText(boy->getAddress()); ui->lbl_mobile->setT...
[ "nazib.cse@gmail.com" ]
nazib.cse@gmail.com
90f8de86c441c9e5c921576b04d3922ea0818b7f
235b388c17045e2ddb118f27a6efd6baf9a62a35
/ogl-master/tutorial10_transparency/tutorial10.cpp
078696b72177ee57b016af48678181abdf84fb10
[]
no_license
Enmoren/SoftSys3DGraphics
8e26cb609d06fa0d5308386700e712101cdff027
6a894569205d6c539ea084dee2cdf7cba2e7cd39
refs/heads/master
2020-05-04T04:30:09.289900
2019-05-09T16:28:57
2019-05-09T16:28:57
178,966,553
4
0
null
null
null
null
UTF-8
C++
false
false
8,227
cpp
// Include standard headers #include <stdio.h> #include <stdlib.h> #include <vector> // Include GLEW #include <GL/glew.h> // Include GLFW #include <GLFW/glfw3.h> GLFWwindow* window; // Include GLM #include <glm/glm.hpp> #include <glm/gtc/matrix_transform.hpp> using namespace glm; #include <common/s...
[ "enmo.ren@students.olin.edu" ]
enmo.ren@students.olin.edu
793b3cb84983a721be7f29b5cd9b01a7417e63a7
eab2bb94baabfc5c36266e0cfa2950d90988b094
/Land/main.cpp
dd1dcd9b74d59aeca93a1299bec4d4473fd2b071
[]
no_license
EmbeddedSystemClass/Land_Meter_C
129dffba988da243a84b3f6cbf7820ca1a1a3d6e
fc4ac382bc1c8310acd4ef969a08b1c9e453770a
refs/heads/master
2021-01-04T19:35:51.483089
2018-09-05T21:11:17
2018-09-05T21:11:17
null
0
0
null
null
null
null
UTF-8
C++
false
false
375
cpp
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ /* * File: main.cpp * Author: zls * * Created on May 12, 2017, 10:13 AM */ #include <cstdlib> using namespace std; /* * ...
[ "jackw2050@gmail.com" ]
jackw2050@gmail.com
d67fb33e5c39c2f2b2f37fb22b42038a56798836
afe94d3675f1d4ad2274cfd5f9eab0f378877bf1
/lesson_03/12_OOP_Simplest/main.cpp
9a665fe59cfc339a307257d2fd53711dee43b90f
[]
no_license
Chuvi-w/cpp
d807f51fcc9431997dbe97244b4ebf5c177e3258
be3066bfa4844f4bc08bac981f51f3ce628a4f2a
refs/heads/master
2021-01-17T21:39:26.340626
2015-08-29T10:47:13
2015-08-29T10:47:13
42,061,059
1
0
null
2015-09-07T15:38:46
2015-09-07T15:38:45
null
UTF-8
C++
false
false
2,191
cpp
// Объявление класса // ----------------- #include <iostream> // c++ 11 M_PI не определена в режиме __STRICT_ANSI__ //#undef __STRICT_ANSI__ //const double M_PI = 4.0 * atan(1); #include <cmath> //#include <math.h> // Храним координаты точек как // 2 отдельных массива //--> const int POINTS = 100; double x[POINTS], y[...
[ "super.denis@gmail.com" ]
super.denis@gmail.com
25b1185fdee39bb7d96f86c3297577a0fba9d35c
f7dc806f341ef5dbb0e11252a4693003a66853d5
/core/os/time_enums.h
a61bdaa73cc5c0991ba635a235f77b5ff655fe42
[ "LicenseRef-scancode-free-unknown", "MIT", "CC-BY-4.0", "OFL-1.1", "Bison-exception-2.2", "CC0-1.0", "LicenseRef-scancode-nvidia-2002", "LicenseRef-scancode-other-permissive", "GPL-3.0-only", "LicenseRef-scancode-unknown-license-reference", "Unlicense", "BSL-1.0", "Apache-2.0", "BSD-3-Clau...
permissive
godotengine/godot
8a2419750f4851d1426a8f3bcb52cac5c86f23c2
970be7afdc111ccc7459d7ef3560de70e6d08c80
refs/heads/master
2023-08-21T14:37:00.262883
2023-08-21T06:26:15
2023-08-21T06:26:15
15,634,981
68,852
18,388
MIT
2023-09-14T21:42:16
2014-01-04T16:05:36
C++
UTF-8
C++
false
false
2,819
h
/**************************************************************************/ /* time_enums.h */ /**************************************************************************/ /* This file is part of: */ /* ...
[ "arnfranke@yahoo.com" ]
arnfranke@yahoo.com
05ab6892178ed7178b59137f53aac5466853459b
ad39d17ee31f015502be9c61c890899b84767f8e
/InputMethod/frminput.h
1b15f53649eea4c6e9b33d37dbcef93dc4f4db08
[]
no_license
radtek/CombineAuthenticateHost
9e8c7c1be9d16c8076cb0dd156cdcdf080a27854
d158dc633caaf7fd3b1e081d3b13334d9ff73a9b
refs/heads/master
2021-05-29T05:41:37.719860
2015-06-17T05:23:22
2015-06-17T05:23:22
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,836
h
#ifndef FRMINPUT_H #define FRMINPUT_H #include <QWidget> #include <QMouseEvent> #include <QLabel> #include <QLineEdit> #include <QComboBox> #include <QTextEdit> #include <QPlainTextEdit> #include <QTextBrowser> #include <QtSql> #include <QPushButton> #include <QTimer> namespace Ui { class frmInput; } class frmIn...
[ "1274388603@qq.com" ]
1274388603@qq.com
e1d7d38db72bc5b9a9c65d61504cafeffefd4264
948d555823c2d123601ff6c149869be377521282
/SDK/SoT_BP_FishingFish_WildSplash_05_parameters.hpp
17cc324bfac7fa2d634cd376d8afd0f572a074ef
[]
no_license
besimbicer89/SoT-SDK
2acf79303c65edab01107ab4511e9b9af8ab9743
3a4c6f3b77c1045b7ef0cddd064350056ef7d252
refs/heads/master
2022-04-24T01:03:37.163407
2020-04-27T12:45:47
2020-04-27T12:45:47
null
0
0
null
null
null
null
UTF-8
C++
false
false
516
hpp
#pragma once // SeaOfThieves (1.6.4) SDK #ifdef _MSC_VER #pragma pack(push, 0x8) #endif #include "../SDK.hpp" namespace SDK { //--------------------------------------------------------------------------- //Parameters //--------------------------------------------------------------------------- // Function BP_Fish...
[ "getpeyton@gmail.com" ]
getpeyton@gmail.com