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
986 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
3.89k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
23 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
145 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
122 values
content
stringlengths
3
10.4M
authors
listlengths
1
1
author_id
stringlengths
0
158
75085833ea1367286331e46ce31d4ed9aadf6283
7c63a96fad4257f4959ffeba0868059fc96566fb
/cpp/std-17/m_bancila-modern_cpp_programming_cookbook/ch_01-core_lang/01-auto_keyword.cpp
c9142e5e8e3625db574d09a10e14b37ffdfc860f
[ "MIT" ]
permissive
ordinary-developer/education
b426148f5690f48e0ed4853adfc3740bd038b72c
526e5cf86f90eab68063bb7c75744226f2c54b8d
refs/heads/master
2023-08-31T14:42:37.237690
2023-08-30T18:15:18
2023-08-30T18:15:18
91,232,306
8
0
null
null
null
null
UTF-8
C++
false
false
5,087
cpp
// region [how to do it] #include <iostream> #include <typeinfo> #include <cassert> #include <initializer_list> namespace example_01 { void run() { static_assert(true); auto i = 42; auto d = 42.5; auto s = "text"; auto v = {1, 2, 3}; int i2 = 42; double d2 = 42.5; char const* s2 = "tex...
[ "merely.ordinary.developer@gmail.com" ]
merely.ordinary.developer@gmail.com
244c5a3748d59cddc50bc1edf6c96b8318b2fad7
0eff74b05b60098333ad66cf801bdd93becc9ea4
/second/download/git/gumtree/git_new_log_2709.cpp
f3367127fc3ea934fcf3c74d72810c122edabffc
[]
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
35
cpp
die(_("unrecognized width:%s"), s);
[ "993273596@qq.com" ]
993273596@qq.com
26427a5e08f62cf3d49d7be5f99aa690531d4407
2bb27dc9bd3067deebb82f7c57fdac02a915d0d4
/src/checkpoints.cpp
5fdc2aee1fce64e782f785ded937fdf9d8eddd5d
[ "MIT" ]
permissive
bedri/proxynode
e46504844abd3f1772c16f37342bce1ca1f8c30a
5b42796d008a5976703b2c2adcfcafc639c64c8f
refs/heads/master
2020-05-19T13:14:45.538666
2019-05-05T08:36:00
2019-05-05T08:36:00
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,470
cpp
// Copyright (c) 2009-2014 The Bitcoin developers // Copyright (c) 2014-2015 The Dash developers // Copyright (c) 2015-2017 The PIVX developers // Copyright (c) 2018 The Prx developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.p...
[ "root@m5079.contaboserver.net" ]
root@m5079.contaboserver.net
629d429407ef0e7a08c9c63c90e573fef16cd165
d1ba96b3467fea007f85a2a44ca8724329d195b7
/Final Submission/Sourcecode/Client/Debug/debug/moc_dialog.cpp
a42e3e6aa05c0cb06ac49dd256b84779bd487fe5
[]
no_license
Team-Chimera/Comm-Audio
9caa5c72adf75a2bfddfc06b9fc2766d08f6c370
5b6ea3e9419f5f7a026651dc994fbfb2f1c7d5f9
refs/heads/master
2016-09-06T04:12:27.576781
2015-04-09T05:37:10
2015-04-09T05:37:10
30,979,831
0
5
null
2015-04-09T05:37:10
2015-02-18T18:31:53
C
UTF-8
C++
false
false
3,307
cpp
/**************************************************************************** ** Meta object code from reading C++ file 'dialog.h' ** ** Created by: The Qt Meta Object Compiler version 67 (Qt 5.4.0) ** ** WARNING! All changes made in this file will be lost! **************************************************************...
[ "rhealauzon@gmail.com" ]
rhealauzon@gmail.com
b9afce1ab16e25e9f29f2ef4c4468f5750598d66
331af263b0a55ab97f32ea43777eb6bb0a69b620
/300. Longest Increasing Subsequence.cpp
80a2a828f80be13d69bf47e42eadb9813b836884
[]
no_license
yanjunp-cmu/LeetCode
3369683dd1d80b94726ab398083dbc377d4ef82b
84dfcccb0fcb1debd45c982c132ba020e7e92d74
refs/heads/master
2020-07-12T08:11:53.560397
2020-01-17T17:48:13
2020-01-17T17:48:13
204,762,049
0
0
null
null
null
null
UTF-8
C++
false
false
457
cpp
class Solution { public: int lengthOfLIS(vector<int>& nums) { if(nums.empty()) return 0; vector<int> dp(nums.size(), 1); int result = 1; for (int i = 1; i < nums.size(); i++){ for (int j = 0; j < i; j++){ if(nums[j] < nums[i]){ dp[i] = ...
[ "yanjunp@andrew.cmu.edu" ]
yanjunp@andrew.cmu.edu
12ee2a96480c917b164e73ddbb93b59fc0f59f1b
fab03e072dd5a48eb22b5b4eba58960ee1f2b7d1
/src/irc.cpp
71427caf57178aee70794a67e5d2690bec6a139e
[ "MIT" ]
permissive
erfan007p/litecoinstake-source
8f3c825748b3648c7f35104a75fb7a445fc926a9
ad1ed4df8b4754e3ae819e357413a88bd3fd8967
refs/heads/master
2021-05-16T04:52:06.996080
2017-10-08T23:52:14
2017-10-08T23:52:14
106,218,611
0
0
null
null
null
null
UTF-8
C++
false
false
10,998
cpp
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "irc.h" #include "net.h" #include "strlcpy.h" #include "base58.h" using ...
[ "erfan007p@gmail.com" ]
erfan007p@gmail.com
20dce90ae5d5fbc226a524b2757c9f23b217b270
69a22b81c47cfeb711196dabe9299cb070578963
/DataProcess/ThreadManager.cpp
54c7735905a54ddde7ae2a6b99384729491b2537
[]
no_license
nhs635/Havana2
6610272c0d1aacfbb73f598792d5d506dbf89bf8
34e732a8804ceb6f12c9fe12d4bce524c3c66139
refs/heads/master
2023-08-21T22:26:27.201648
2023-08-03T05:17:08
2023-08-03T05:17:08
98,523,311
0
0
null
null
null
null
UTF-8
C++
false
false
1,369
cpp
#include <DataProcess/ThreadManager.h> ThreadManager::ThreadManager(const char* _threadID) : _running(false) { memset(threadID, 0, MAX_LENGTH); memcpy(threadID, _threadID, strlen(_threadID)); } ThreadManager::~ThreadManager() { if (_thread.joinable()) { _running = false; _thread.join()...
[ "nhs635@hanmail.net" ]
nhs635@hanmail.net
9424fed3d189f375b2c430a3bd828a575457bc64
9097b4172997abadd081a19789dc505f91759cea
/Sound Visualizer/Bar.hpp
b7f7da5ed0bc5eaf6503ec2bc0bec81ad5cdb99e
[]
no_license
veiyas/Sound-Visualizer
65a0d14ca175560883a41d4a0d0566e43b0e785f
bde2ab6a16efc10e224e5d3f94226dd542b2d9f0
refs/heads/master
2020-07-27T10:56:01.925060
2019-10-16T21:20:14
2019-10-16T21:20:14
209,063,782
1
0
null
null
null
null
UTF-8
C++
false
false
635
hpp
#pragma once #include <GL/glew.h> #include <GLFW/glfw3.h> #include <glm/glm.hpp> #include "Constants.hpp" #include <vector> #include <memory> #include <iostream> class Bar { public: Bar(GLfloat x_coord, GLfloat height, GLfloat z_coord); ~Bar(); void render(); private: //OpenGL magic GLuint vao = 0; // Verte...
[ "david.rk97@gmail.com" ]
david.rk97@gmail.com
230f1ac4bfa289ee33b50ef4079aef99b2bf102b
1441bc7fee74a372af6ba63a8a4dc04100e6255c
/aria-HW/part_c.cpp
096d0398c594c302c8888ab6cf2c7ba6721b1c1d
[]
no_license
Chen-Yu-Qiang/class
b9931f9be9dbfc4156531c8cbbfa4b3b9b6740a2
46470e472eb74223d3cc69d3e0da31c4f63e6ce2
refs/heads/master
2023-07-13T14:41:46.858478
2021-08-29T04:41:34
2021-08-29T04:41:34
400,951,752
0
0
null
null
null
null
UTF-8
C++
false
false
1,657
cpp
#include "Aria.h" int main(int argc, char **argv) { ArRobot robot; ArSonarDevice sonar; robot.addRangeDevice(&sonar); Aria::init(); ArSimpleConnector connector(&argc, argv); if (!connector.connectRobot(&robot)) { printf("Could not connect to robot... exiting\n"); Aria::shutdown(); A...
[ "a@example.com" ]
a@example.com
0be06367f6d122f3f0bf74d50e58f18c0f700ba4
33546aee6429d5b8f19a02e14699b6ebb5b34af8
/src/ui/views/view_unittest.cc
6af6b3a1612a4d4a55e5a069c0014c15e01e0578
[ "BSD-3-Clause" ]
permissive
mYoda/CustomBrs
bdbf992c0db0bf2fd1821fa1fd0120ac77ffc011
493fc461eb7ea7321c51c6831fe737cfb21fdd3e
refs/heads/master
2022-11-22T09:11:37.873894
2022-11-10T10:02:49
2022-11-10T10:02:49
24,951,822
0
1
null
2022-11-02T14:39:34
2014-10-08T17:22:30
C++
UTF-8
C++
false
false
128,594
cc
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include <map> #include "base/memory/scoped_ptr.h" #include "base/rand_util.h" #include "base/strings/string_util.h" #include "base/strings/utf_strin...
[ "nechayukanton@gmail.com" ]
nechayukanton@gmail.com
9f94354c7165ea26f21b8c1035a7db0eb819cc35
3b72c7a278e150117b075b8b79f57fe0c7035325
/main.cpp
a9d814c322e8af98fced19d03992b132a18723cd
[]
no_license
matejanus/cpp_tetris
a332a63cd59fbaeda7067051fcd666f43f3d1f96
fb89edd5eb0c7b5bcc4e57599f5d0b1ee382f1ff
refs/heads/master
2020-12-14T15:27:35.119990
2020-01-20T21:51:23
2020-01-20T21:51:23
234,787,959
0
0
null
null
null
null
UTF-8
C++
false
false
9,087
cpp
#include <iostream> #include "includes/tetermino.hpp" #include <array> #include <curses.h> #include <chrono> #include <thread> #include <vector> #include <memory> #include <random> #include <stdio.h> using namespace std::chrono_literals; // std::array<std::string, 7> tetromino; const std::array<std::string, 7> tetro...
[ "mate.janus@gmail.com" ]
mate.janus@gmail.com
33f8ae8d68ef4f321e22c8cd662d6e921519e817
c6401d48085c920367e271032d6af5e48e7ab0c8
/StacksAndQueues/PriorityQueueNode.hpp
73d3507a7a2e00e6e02958a3cc4d68d2ccd73060
[ "MIT" ]
permissive
Bartleby2718/Introduction-To-Algorithms--CLRS-
bf4a0705ec154149065e2801614de6564e4e70be
cc1445e9cc926e9a021caad61d7ff56d57bdc6e2
refs/heads/master
2020-05-22T13:18:23.243475
2019-07-25T02:42:15
2019-07-25T02:42:58
186,355,777
2
0
null
null
null
null
UTF-8
C++
false
false
577
hpp
// // Created by bartl on 06/21/2019. // #ifndef STACKSANDQUEUES_PRIORITYQUEUENODE_H #define STACKSANDQUEUES_PRIORITYQUEUENODE_H template<class T> struct Node { unsigned index; T element; string toString() { return to_string(element) + "(index: " + to_string(index) + ")"; } }; template<c...
[ "bartleby2718@gmail.com" ]
bartleby2718@gmail.com
d48b1b4a5a0e4d70187070f5dec74d1e82074855
e52d6cf6d24dc646415e9c4ac8ad7c801f4554fa
/Nsplit/CRFsparse/util.h
39a407b7fb36b634b341843f64ef4e8b230f4298
[]
no_license
a061105/AugmentedLimitedMem
aaf5c70133732014a4b322cfe9b79037bbc12067
5aa84702bc5f7ecaa9f761c0779aadf89ad26fd5
refs/heads/master
2020-12-24T06:54:16.792123
2016-08-12T03:41:14
2016-08-12T03:41:14
53,838,399
0
0
null
null
null
null
UTF-8
C++
false
false
1,043
h
#ifndef UTIL #define UTIL #include<map> #include<vector> #include<string> #include<cmath> #include <iomanip> // std::setprecision #include <fstream> #include <set> using namespace std; void split(string str, string pattern, vector<string>& tokens); double maximum(double* values, int size); double maximum(doub...
[ "a061105@gmail.com" ]
a061105@gmail.com
b754ed3d07f3c1f7679b54780c265ac7ec9a6a22
0f5dbad0db4aabef3e86f9dd15cbce142f7775e2
/455A - Boredom.cpp
a451aa5304d37f8b1e5fddbadfb746eda6aca356
[]
no_license
OmarSalimMoussa/Competitive-Programming
fa8875867e516c98ea1c52b93be1129f3048222e
1ef6dfb53f53a6eb89435eaf3d1711c1803ffc97
refs/heads/master
2021-05-04T13:16:54.179911
2019-03-25T22:26:19
2019-03-25T22:26:19
120,310,269
0
0
null
null
null
null
UTF-8
C++
false
false
995
cpp
#include <bits/stdc++.h> #define ll long long #define ull unsigned long long #define over LONG_LONG_MAX ll inf = 1LL << 60; ll mod = 1000000007; double pi = acos(-1.0); using namespace std; ll w[100010]; vector<ll> a; ll dp[100010][2]; int n; ll solve(int pos, int last){ if(pos == a.size()) return ...
[ "noreply@github.com" ]
OmarSalimMoussa.noreply@github.com
92a3dff65a5c52dbd68ba8fdd4afe7e7faaab07a
64e4fabf9b43b6b02b14b9df7e1751732b30ad38
/src/chromium/gen/gen_combined/third_party/blink/public/mojom/frame/navigation_initiator.mojom-shared.cc
9f4748f65a7b20a5d2402d04e1f6be3b049fa6ac
[ "BSD-3-Clause" ]
permissive
ivan-kits/skia-opengl-emscripten
8a5ee0eab0214c84df3cd7eef37c8ba54acb045e
79573e1ee794061bdcfd88cacdb75243eff5f6f0
refs/heads/master
2023-02-03T16:39:20.556706
2020-12-25T14:00:49
2020-12-25T14:00:49
null
0
0
null
null
null
null
UTF-8
C++
false
false
9,679
cc
// Copyright 2016 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. #if defined(_MSC_VER) #pragma warning(push) #pragma warning(disable:4065) #endif #include "third_party/blink/public/mojom/frame/navigation_initiator.mojo...
[ "trofimov_d_a@magnit.ru" ]
trofimov_d_a@magnit.ru
923b681d1e3b359c140134d4c02d8afad1d8535f
719b9668d421765586405b8478927b026f7e0336
/projects/lang/runtime/runtime.cpp
136af4369f8b1f01bbb3f8f04607fcc3c3287492
[ "MIT" ]
permissive
yut148/taichi
f8208084483f1e2f7aad258fc1e046385d796576
fecb8557e80a294d98347d71b1ad0fd2f43865b0
refs/heads/master
2022-02-23T17:43:19.995584
2019-10-02T15:15:51
2019-10-02T15:15:51
null
0
0
null
null
null
null
UTF-8
C++
false
false
8,507
cpp
// This file will only be compiled with clang into llvm bitcode // Generated bitcode will likely get inline for performance. #include <type_traits> #include <atomic> #define FORCEINLINE __attribute__((always_inline)) #define STRUCT_FIELD(S, F) \ extern "C" decltype(S::F) S##_get_##F(S ...
[ "yuanmhu@gmail.com" ]
yuanmhu@gmail.com
8ab12cfbb0447560230698d0f7a93bd730e7b4f3
22c300690f403c57297fb3d7a1e7a9bf820b85cf
/src/controls/QskScrollView.cpp
a61be872408339eb622c80cc1a8343b23338c446
[ "BSD-3-Clause" ]
permissive
SammyEnigma/qskinny
8cf88ae5a7be791f0745b4aba5e5338d94879f99
db056e783754b7971d737a88ac86a7be97eea6d2
refs/heads/master
2023-08-24T23:16:53.923549
2023-04-11T12:56:39
2023-04-11T13:54:24
509,579,338
0
0
BSD-3-Clause
2023-09-14T06:48:12
2022-07-01T20:19:54
C++
UTF-8
C++
false
false
8,069
cpp
/****************************************************************************** * QSkinny - Copyright (C) 2016 Uwe Rathmann * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ #include "QskScrollView.h" #include "QskAnimationHint.h" #inclu...
[ "Uwe.Rathmann@tigertal.de" ]
Uwe.Rathmann@tigertal.de
bba455c6d42323289c38187b0c5ea2a45299f24a
60d041c38740b66deab427bc3c75572713dd04aa
/DXCore/syCollision.h
4cbf8a47ad93f85eb710b89a389bf0cc8625aa6f
[]
no_license
siyeon-lee/3dMax
08ca9a2b53733953c60bd288fbfbcb9acc2a352e
f2cb876eb134eaea411be20469be10e219489c6d
refs/heads/master
2022-03-05T02:20:34.789840
2019-11-01T09:04:09
2019-11-01T09:04:09
null
0
0
null
null
null
null
UTF-8
C++
false
false
413
h
#pragma once #include "syStd.h" class syCollision { public: syCollision(); ~syCollision(); public: static bool RectInPt(RECT rt, POINT pt); static bool RectInPt(RECT rt, syPoint pt); static bool RectInRect(RECT rt1, RECT rt2); static bool SphereInSphere(RECT rt1, RECT rt2); static bool SphereIn...
[ "noreply@github.com" ]
siyeon-lee.noreply@github.com
d8337f6d5fb0d2dad253755205f5b82ebb371c8c
73ee941896043f9b3e2ab40028d24ddd202f695f
/external/chromium_org/content/renderer/gpu/input_handler_proxy.cc
1f88e6278419d316e6f3872e392b5e0f14a207ab
[ "BSD-3-Clause" ]
permissive
CyFI-Lab-Public/RetroScope
d441ea28b33aceeb9888c330a54b033cd7d48b05
276b5b03d63f49235db74f2c501057abb9e79d89
refs/heads/master
2022-04-08T23:11:44.482107
2016-09-22T20:15:43
2016-09-22T20:15:43
58,890,600
5
3
null
null
null
null
UTF-8
C++
false
false
16,078
cc
// Copyright (c) 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 "content/renderer/gpu/input_handler_proxy.h" #include "base/debug/trace_event.h" #include "base/logging.h" #include "base/metrics/histogram....
[ "ProjectRetroScope@gmail.com" ]
ProjectRetroScope@gmail.com
2a33776f19fd712835758d387bfa794ae6eae7b9
30105cdf24a8ee004eb461b52e73f36372072c84
/modifikacije/2020 avgust/mod/queue.cpp
05f7bf48ded2256fdff51801f6b3f82592e1f9ea
[]
no_license
botuljina/ProcessorKernel
4136a1fd5390353b725b60dc8ee81ce046da65d4
d48cfe28dfa2633cde08eb3b7a98c96046caa9c4
refs/heads/master
2022-12-29T19:35:45.958675
2020-10-03T15:55:04
2020-10-03T15:55:04
256,285,852
0
0
null
null
null
null
UTF-8
C++
false
false
3,752
cpp
#include "queue.h" #include "Timer.h" #include <iostream.h> #include "sPrintf.h" #include "Thread.h" queue::queue() { #ifndef BCC_BLOCK_IGNORE lock(); #endif firstNode = 0; lastNode = 0; queueLen = 0; #ifndef BCC_BLOCK_IGNORE unlock(); #endif } int queue::isEmpty(){ if(firstNode == 0) return 1; else return 0...
[ "lsimovic140@gmail.com" ]
lsimovic140@gmail.com
5574c0b80e543a0068f7df92819476fb164dbc3e
4b62cd73e5c255f2b1b0512421c510c011be2ec6
/2019/roundB/Building_Palindromes.cpp
b7657c315a31b58975bd667cf74c8984d13123b7
[]
no_license
dishankgoel/KickStart-Solutions
a48cce9421b3427c344eeabe51db5d0a4e9060aa
d51dd6265d44becd8eaa6c04e7db7d15bc35ab21
refs/heads/master
2023-07-30T07:25:19.830062
2021-09-11T18:57:18
2021-09-11T18:57:18
356,865,770
0
0
null
null
null
null
UTF-8
C++
false
false
1,127
cpp
#include<bits/stdc++.h> #define ll long long using namespace std; ll test_case() { ll n, q; cin>>n>>q; string blocks; cin>>blocks; vector<vector<int>> dp(n, vector<int>(26, 0)); for(int i = 0; i < n; i++) { if(i == 0) { dp[0][blocks[0] - 'A'] = 1; } else { dp[i]...
[ "dishankgoel1729@gmail.com" ]
dishankgoel1729@gmail.com
48a05db09bbb3f86f408101869e51cbd0a771f61
7c713739a64b22af2256f07d75447acf178586ac
/Source.cpp
26c53f98834eca9a9813ea03665612702839d94a
[ "MIT" ]
permissive
kenjinote/SortingAlgorithmAnimations
10c7cd5f4b233377093aa8444ea07b2431ae2ad1
c42cc79c2c604c219ce2112bdc9ea6f126a1f1ad
refs/heads/master
2023-02-23T17:16:47.612291
2023-02-08T15:05:06
2023-02-08T15:05:06
59,730,507
3
1
null
null
null
null
UTF-8
C++
false
false
2,948
cpp
#pragma comment(linker,"\"/manifestdependency:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"") #include <windows.h> TCHAR szClassName[] = TEXT("Window"); void Update(HWND hWnd) { Sleep(5); InvalidateRect(hWnd, 0, 0...
[ "kenji256@gmail.com" ]
kenji256@gmail.com
fc25b35580685e5875ded9c4455970437a4f1626
d3d5089fa5c1ba5dea70d1f0de14d4d094b67e68
/devel_isolated/controller_manager_msgs/include/controller_manager_msgs/ListControllerTypesResponse.h
21dfb2a0cda9d9036fefabf5af3bdf73c362db27
[]
no_license
akingse/ros_package_ws
d5408451e2fafd3314d53994b94585f95f2612c7
1d1ad9e9aecc90fa9335f29a802dc342a2a96612
refs/heads/main
2023-03-04T20:41:57.232496
2021-02-08T14:17:26
2021-02-08T14:17:26
337,102,292
2
0
null
null
null
null
UTF-8
C++
false
false
7,122
h
// Generated by gencpp from file controller_manager_msgs/ListControllerTypesResponse.msg // DO NOT EDIT! #ifndef CONTROLLER_MANAGER_MSGS_MESSAGE_LISTCONTROLLERTYPESRESPONSE_H #define CONTROLLER_MANAGER_MSGS_MESSAGE_LISTCONTROLLERTYPESRESPONSE_H #include <string> #include <vector> #include <map> #include <ros/types...
[ "akingse@qq.com" ]
akingse@qq.com
c72546fa09fc13fa5e70eb7afdc73c46f638f37d
eb827d7993b146cf507b57a45e420fffdf641eef
/camps/lksh_winter2020/day4/src/gen.cpp
6dc0a5e989f5d58dff95773318a1ef513f8ad282
[]
no_license
khbminus/code2020
dfdbcae71d61d03d4457aad47ff7d4136e6fcc1e
a0d2230b0905df79ba78cb98353f4ba03f16e8b0
refs/heads/master
2023-07-16T16:08:20.629283
2021-08-29T20:35:14
2021-08-29T20:35:14
null
0
0
null
null
null
null
UTF-8
C++
false
false
313
cpp
#include <bits/stdc++.h> using namespace std; int main(){ mt19937 rnd(chrono::steady_clock::now().time_since_epoch().count()); int MAXN = 10; int MAXC = 100; int n = rnd() % MAXN + 1; cout << n << '\n'; for (int i = 0; i < n; i++) cout << rnd() % MAXC + 1 << " \n"[i + 1 == n]; }
[ "serega.haritontsev@gmail.com" ]
serega.haritontsev@gmail.com
adeff6bf8c16e9d1b83dbafc621b030bf0b61b8a
c50c96c7618122a2566322afa75c44eb25e67296
/sudokuboard.cc
c1ee87112cdc3644c962a659a9ec778a389b7a15
[]
no_license
easiruwa/Sudoku
6be0c2cc14859b2e9b8d5c766e033382e89633de
7fd071f66478250ead9c00fa29fb3c1c603f8de8
refs/heads/master
2021-01-13T13:18:09.400178
2016-11-02T16:33:29
2016-11-02T16:33:29
72,659,568
0
0
null
null
null
null
UTF-8
C++
false
false
2,235
cc
/************************************************************************ File: sudokuboard.cc Author: Eseosa Asiruwa Date: 2/21/16 Assignment: Lab 3 Implemenation of the sudokuboard class. ************************************************************************/ #include <iostream> #include "sud...
[ "easiruwa@hamilton.edu" ]
easiruwa@hamilton.edu
0b4d76ad7c57c7ce3ad081dba47b17d093c9d76d
8e63e4fd669ced86bf07b20be364da5a06bce70d
/SPOJ/BYTESE2 - The Great Ball.cpp
573575c43f2ef46363f334fdb9e5c33b779d214d
[]
no_license
AliOsm/CompetitiveProgramming
00a1e75a2635532651fcdfb0e478c009adf84032
af25b7f806e9c22a2176bfd05a1406ce5f1492c3
refs/heads/master
2023-03-07T01:17:25.555911
2023-02-10T09:09:17
2023-02-10T09:09:17
70,904,119
125
58
null
2021-02-27T13:13:18
2016-10-14T11:29:55
C++
UTF-8
C++
false
false
1,372
cpp
#include <stdio.h> #include <set> #include <algorithm> #include <memory.h> using namespace std; int const N = 1000; int n, seg[4 * N], lazy[4 * N]; pair<int, int> a[N]; set<int> st; int s, e; void pro(int idx, int l, int r) { seg[idx] += lazy[idx]; if(l != r) lazy[idx << 1] += lazy[idx], lazy[(idx << 1) + 1] ...
[ "aliosm1997@gmail.com" ]
aliosm1997@gmail.com
eb5219ac375fcf1a41a0b153db1b6f5be7f8925b
401bfbcc3cdd53b0f646ce61e1c3ecc81fff9a50
/src/cpp/record/Region.h
733c818d2e5b9507c318621a5b9753c01d068b19
[]
no_license
TU-Berlin-DIMA/tpch-gen
807d41c6b40c0d265b31a7a95c0d0f97094ed1b9
736d88323e12871025aa3a3f4966b995d683c7d9
refs/heads/master
2016-09-05T17:39:23.546219
2014-09-10T13:14:21
2014-09-10T13:14:21
13,740,341
2
1
null
null
null
null
UTF-8
C++
false
false
894
h
#ifndef REGION_H_ #define REGION_H_ #include "record/base/BaseRegion.h" namespace TPCHGen { // ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ // record type // ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ class Region: public BaseRegion { public: ...
[ "alexander.s.alexandrov@gmail.com" ]
alexander.s.alexandrov@gmail.com
d182a664e531d0a74a989a4e3c19fdee8b40850e
c969008ffeb3e4c6e21cd2cb86dd46b60b81840a
/Code/用0~2个的1,2,4,8,16合出N.cpp
0aaf823468999d0fe1b07d657fa3366282f13bca
[]
no_license
Crasader/Code_GSL
6b7ddd27b47133b5a1e5f5eade8ca61275deac00
dcd5ef0a204b7dc6b8c58939fb52a515b5689be8
refs/heads/master
2022-02-13T17:05:07.682256
2019-09-09T08:21:17
2019-09-09T08:21:17
null
0
0
null
null
null
null
GB18030
C++
false
false
3,106
cpp
// ConsoleApplication1.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include<iostream> #include<math.h> #include<time.h> #include<set> using namespace std; int nums[63];//num[i]表示2^i的个数,只有0,1,2三个取值 //回溯法 int IsOk(long long n, int *nums, int len) { long long sum = 0; for (int i = 0; i < len; i++) sum += nums[i]...
[ "153274152@qq.com" ]
153274152@qq.com
07bcfb268e18813ae167b515e654eeff721bcc2d
966a7bf92b7afb988c917d20483cd50b0d083cd7
/main.cpp
39cf35cfb3fd278cae25ba4cf6f7907cf3416ee9
[]
no_license
anhpham197/Chim_bay_SDL2
d456d5bbaa5c7ec22b86162e8acedf8b88c71c5f
794317d1193021bcaba960b8adc377fdb712c2ed
refs/heads/master
2022-07-03T14:39:05.308452
2020-05-13T17:24:34
2020-05-13T17:24:34
257,076,156
0
0
null
null
null
null
UTF-8
C++
false
false
11,966
cpp
#include "BaseObject.h" #include "CommonFunction.h" #include "character.h" #include "GameMap.h" #include "ImpTimer.h" #include "TextObject.h" #include "Enemy.h" #include "Explosion.h" #include <SDL.h> #include <Windows.h> BaseObject g_background; TTF_Font* font_time; // tao doi tuong font bool InitData() { ...
[ "19021219@vnu.edu.vn" ]
19021219@vnu.edu.vn
db89dc51f0129523e6f957678435931d62145b89
7b103608fd1715d15077763ed82b4f78e7aa3dab
/Introductory Problems/03_Repetitions.cpp
8528401f418fe32ccf41907f7a448a31ed9102d9
[]
no_license
ameya-shahu/CSES-Problem-Set
b9f352950d6febb921587acc0556599f13eb6b60
2be2bc4d9e48bf91bfd543996f1c579de9ff9cb4
refs/heads/master
2022-09-18T08:32:33.413929
2020-06-01T16:22:34
2020-06-01T16:22:34
268,145,220
0
0
null
null
null
null
UTF-8
C++
false
false
945
cpp
#include<bits/stdc++.h> #define REP(i,n) for (int i = 1; i <= n; i++) #define RREP(i,a,b) for (int i = a;i<b;i++) #define mod 1000000007 #define pb push_back #define mp make_pair #define ff first #define ss second #define ii pair<int,int> #define vi vector<int> #define vii vector<ii> #define lli long long int #define I...
[ "ameyashahu@gmail.com" ]
ameyashahu@gmail.com
69f928294b8db87e4c9c139740e2bb032a4bc4cb
082f6678d50622d95e5253edb3564f52b6e81481
/include/vsmc/gcd/dispatch_source.hpp
471c75237aad6452f7bd38794ca23d7ae17f68e9
[ "BSD-2-Clause" ]
permissive
Soledad89/vSMC
e78dc93dba7789190745636a1e913db579fb0816
b00886f8d0cee0687fea8fee05f37fb2a5bab1d8
refs/heads/master
2021-01-24T21:18:56.700290
2015-05-28T08:42:54
2015-05-28T08:42:54
null
0
0
null
null
null
null
UTF-8
C++
false
false
9,697
hpp
//============================================================================ // vSMC/include/vsmc/gcd/dispatch_source.hpp //---------------------------------------------------------------------------- // vSMC: Scalable Monte Carlo //-------------------------------------------------------------...
[ "zhouyan@me.com" ]
zhouyan@me.com
f78f14640114face0fbef0b8b36c2e815e9635ec
07c7953dbbf05a46cd260c96a515276915c1e493
/C++实现数据结构查找和排序/main.cpp
110070ab08bfd2760232ffe277944191cc38eeaa
[]
no_license
MasterLeen/cpp-
9e421f40bcaf407f793c18a4408b9edb8dc7ddd4
22a8f6c1688903c36c3eda533fe57b9ece22ccc9
refs/heads/master
2020-03-24T20:58:32.164225
2019-10-07T05:47:19
2019-10-07T05:47:19
143,006,802
1
0
null
2019-10-07T05:47:20
2018-07-31T11:44:37
C++
GB18030
C++
false
false
6,870
cpp
#include <iostream> #include <vector> #include <map> #include <string.h> #include <algorithm> #include <sstream>//stringstream must include the header using namespace std; void SeqFind(const int& tmp); void BinarySearch(const int& tmp); void LinerExploration(int & num,char *cp); void SearchStu(const int &num); int Hash...
[ "1763946255@qq.com" ]
1763946255@qq.com
0ff77464b00abb9eeb83c0fd73e0804499b81841
eee0588d6c92b1bc093716ac84969a47a8159e38
/Cluiche/DiaGraphicWithUITest/SimThreadStruct.h
0715e67ac15aed0c9b88a8e41b1e3ef8f990a874
[]
no_license
LenihanConor/Cluiche
bf919ef721d901ba2a23646e70444803e0fe5781
1b65c5861a2354a81fbf1ed63fb0e7620b635d0d
refs/heads/master
2023-06-28T19:45:52.811023
2023-06-20T18:20:58
2023-06-20T18:20:58
37,433,420
0
0
null
null
null
null
UTF-8
C++
false
false
868
h
#pragma once #include <DiaCore/Timer/TimeThreadLimiter.h> #include <DiaCore/Time/TimeServer.h> #include <DiaCore/Frame/FrameStream.h> #include <DiaInput/EventData.h> #include <DiaGraphics/Frame/FrameData.h> #include <DiaUI/IUISystem.h> struct SimThreadStruct { public: SimThreadStruct(bool& running, Dia::UI::I...
[ "lenihan.conor@gmail.com" ]
lenihan.conor@gmail.com
5ca95d7382764e50294cb4ae92a8aa804a1289e4
fd7416b2cecddc2b5d531c399f2265fa57d6ab4b
/libraries/trainers/optimization/tcc/MatrixSolution.tcc
c99d0e4d356bac23c925964af7fa659c580f4b58
[ "LicenseRef-scancode-unknown-license-reference", "MIT" ]
permissive
yaokeepmoving/ELL
0bb45c04eab0773e09eee8504ea2e36baa291ee6
993d5370f0f7a274e8dfd8f43220c792be46f314
refs/heads/master
2020-04-04T14:31:37.444718
2018-10-25T19:03:36
2018-10-25T19:03:36
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,532
tcc
//////////////////////////////////////////////////////////////////////////////////////////////////// // // Project: Embedded Learning Library (ELL) // File: MatrixSolution.tcc (optimization) // Authors: Ofer Dekel // //////////////////////////////////////////////////////////////////////////////////////////////...
[ "oferd@microsoft.com" ]
oferd@microsoft.com
9f78a7a7832c97c27d7501f0b7bb6b12c651343d
53c537c1064d7856d7d638753238eadb1479c13f
/install/include/cwru_action/cwru_baxter_cart_moveActionGoal.h
bd87f95f18ae31aa604d7d6723aebd7b54d34dc5
[]
no_license
dsb86/MobileRobotics
de8600b23a54cb3626a3a56f06a1fe766950a66e
986771e1bcfba9bc601ed6324dc544ae28e40b54
refs/heads/master
2021-01-10T12:21:39.010769
2016-01-27T04:46:43
2016-01-27T04:46:43
50,472,772
0
0
null
null
null
null
UTF-8
C++
false
false
11,422
h
// Generated by gencpp from file cwru_action/cwru_baxter_cart_moveActionGoal.msg // DO NOT EDIT! #ifndef CWRU_ACTION_MESSAGE_CWRU_BAXTER_CART_MOVEACTIONGOAL_H #define CWRU_ACTION_MESSAGE_CWRU_BAXTER_CART_MOVEACTIONGOAL_H #include <string> #include <vector> #include <map> #include <ros/types.h> #include <ros/serial...
[ "dsb86@case.edu" ]
dsb86@case.edu
5d2e0ab7b8f7ef361cbbea0578ac48d7b10c1497
d558f13a3e9c15e51e8aeff3cdbcbbd99df7166f
/C++/powcarettranslator/caretPow.cpp
94689a941a661d62916716fc9898735fa9433e30
[]
no_license
mehstruslehpy/Documents
3b52dc2b9506746b88eccb2afa2d591f4572b7a5
b40fa6d6944d6bf21ce99de6fbfd9b19f98bd763
refs/heads/master
2020-04-15T14:03:11.555203
2019-01-01T04:03:27
2019-01-01T04:03:27
58,814,859
0
0
null
null
null
null
UTF-8
C++
false
false
8,273
cpp
#include <iostream> #include <strings.h> #include <regex> #include <boost/algorithm/string/replace.hpp> #define NOT_FOUND string::npos ///the find method returns this if not found using namespace std; int caretPow(string inLine, int offsets[]) { //string inLine; //input string regex singleCaret (".*(\^).*"); ...
[ "williamvanskike@gmail.com" ]
williamvanskike@gmail.com
eb8d8915b88c49fd4917043c464b384d040a6954
9b2938d4ea17d29569ff5b4d2b0ed66783cddee9
/d-pong/paddle.h
b603b3631f735e637c4a61ec384f4285fe5701ed
[]
no_license
dmateos/scratch
87f8b6988630fb75655e2dda2d3e2e2f3df2d5a3
5d0092877527039bc70bcbd5e0671e5cb421f037
refs/heads/master
2021-01-16T18:29:33.304457
2016-01-27T15:04:37
2016-01-27T15:04:37
273,304
0
0
null
null
null
null
UTF-8
C++
false
false
121
h
#ifndef _PADDLE_H_ #define _PADDLE_H_ class Paddle { public: Paddle(); ~Paddle(); private: int x, y; }; #endif
[ "daniel@mateos.cc" ]
daniel@mateos.cc
92ab0e93b9978b2de344b853d96cf062ea9a1d26
ae1c6ad39b94b34b2312e7cc599321616016d767
/HighlightTextEditor/jni/highlight/cli/cmdlineoptions.h
3cd5679d872ab06db66c1f5a13814bebb1d49efb
[]
no_license
vbea/AideProjects
cd4481943229fd585841863bd7f66f98543e54d9
0d6dfc4bb1e8aea7b60483b0cbc23190f8e0f26d
refs/heads/master
2023-01-30T09:11:11.278783
2023-01-14T10:28:47
2023-01-14T10:28:47
200,463,935
24
9
null
null
null
null
UTF-8
C++
false
false
14,153
h
/*************************************************************************** cmdlineoptions.h - description ------------------- begin : Sun Nov 25 2001 copyright : (C) 2001-2010 by Andre Simon email : andre.sim...
[ "vbea@foxmail.com" ]
vbea@foxmail.com
494133e0120091ea2b466a480fa9282b16da98dd
0f2e24348a278522127df89124f3e9fde44fc536
/lapotop.cpp
5da62c822949578d8f05b13784b7ac53a888b1dc
[]
no_license
Jstrykow/projectC-
7a07ca75af10fc2dd34af219020ed8e6390e86d9
5d4076a4ddf56e0047be2e3b4f777810f32018c6
refs/heads/master
2021-02-09T19:44:33.362619
2020-03-02T08:26:28
2020-03-02T08:26:28
244,319,328
0
0
null
null
null
null
UTF-8
C++
false
false
1,212
cpp
#include <iostream> #include "laptop.h" #include "antywirus.h" #include <string> #include <cstdlib> #include <fstream> std::string Laptop::getmodel() { return model; } void Laptop::setmodel(std::string model1) { model = model1; } std::string Laptop::typ() { return "L"; } void Laptop::zapisz_komputer(std::str...
[ "jakub@strykowski.eu" ]
jakub@strykowski.eu
afe93c072eaf722a4b07b4debc5367e0a758dfa8
534e2e3d8d8bebd2366c0fee60886d84597ee0ef
/CF/CF 949B.cpp
2a316bb8d0abb2539d54ac1d8e29b3ebd9a1f019
[]
no_license
coldEr66/online-judge
a8844d3f35755adafd4f43a1f08ce56b6b870601
e85ec0750d92dd00133c93284085a0f5d8a11d36
refs/heads/master
2021-09-07T01:58:10.634492
2021-07-28T16:31:13
2021-07-28T16:31:13
128,494,315
0
0
null
null
null
null
UTF-8
C++
false
false
2,181
cpp
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef double lf; typedef pair<ll,ll> ii; #define REP(i,n) for(int i=0;i<n;i++) #define REP1(i,n) for(ll i=1;i<=n;i++) #define RST(i,n) memset(i,n,sizeof i) #define SZ(a) (int)a.size() #define ALL(a) a.begin(),a.end() #define F first #defin...
[ "seal1000402@gmail.com" ]
seal1000402@gmail.com
ce26026512813125ded1f93bde9cab6b036083f5
0eff74b05b60098333ad66cf801bdd93becc9ea4
/second/download/squid/gumtree/squid_repos_function_4480_squid-3.3.14.cpp
66b690bf0a8059661a9e7cf726a15f370f23b1e3
[]
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
484
cpp
void DestinationDomainLookup::LookupDone(const char *fqdn, const DnsLookupDetails &details, void *data) { ACLFilledChecklist *checklist = Filled((ACLChecklist*)data); assert (checklist->asyncState() == DestinationDomainLookup::Instance()); checklist->asyncInProgress(false); checklist->changeState (ACLC...
[ "993273596@qq.com" ]
993273596@qq.com
465b3613f8637344b2a8715e6ab6a8e7da97fd31
a3d6556180e74af7b555f8d47d3fea55b94bcbda
/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.h
71100e714257defbb6e92579353acce70e909674
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference", "GPL-1.0-or-later", "MIT", "LGPL-2.0-or-later", "BSD-3-Clause" ]
permissive
chromium/chromium
aaa9eda10115b50b0616d2f1aed5ef35d1d779d6
a401d6cf4f7bf0e2d2e964c512ebb923c3d8832c
refs/heads/main
2023-08-24T00:35:12.585945
2023-08-23T22:01:11
2023-08-23T22:01:11
120,360,765
17,408
7,102
BSD-3-Clause
2023-09-10T23:44:27
2018-02-05T20:55:32
null
UTF-8
C++
false
false
1,343
h
// Copyright 2020 The Abseil Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // https://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agr...
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
4be8963f422de923e3d0d8ab2c6ce2d11a08558d
d990692dd7afdbb2a235ad03ac5209b4f3bb0df9
/ipc/chromium/src/base/message_loop_unittest.cc
ed7b0c14da76539b80b2f18c9aebbe690b8daef7
[ "LicenseRef-scancode-unknown-license-reference", "BSD-3-Clause" ]
permissive
walkero-gr/timberwolf
5c33158a19dfeb3781c72c6732d45747d9a3c19e
90ca7da29b6089d1b14f5ff1d08e586aa2ec041f
refs/heads/master
2022-09-15T11:13:14.252767
2022-09-04T12:39:59
2022-09-04T12:39:59
291,531,351
0
0
NOASSERTION
2020-08-30T18:46:51
2020-08-30T18:46:51
null
UTF-8
C++
false
false
45,871
cc
// Copyright (c) 2006-2008 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 "base/logging.h" #include "base/message_loop.h" #include "base/platform_thread.h" #include "base/ref_counted.h" #include "base/thread.h"...
[ "benjamin@smedbergs.us" ]
benjamin@smedbergs.us
011193a50bfddee09b20f199e5a5035ff28b4e8b
6fa8376cc78f1586b7df3b4e3037daeab4828e3f
/test/TestCore/TestDifferentiability.cpp
ecc8c5b0cecd804285b014a5a538e44ce4b3877f
[ "MIT" ]
permissive
alexweav/BackpropFramework
99db0feb870698436d3cd1c7f06a6a2f60de46fe
2de396628180db1e6535037663497f9814e83039
refs/heads/master
2021-01-01T17:38:53.431150
2018-06-04T00:53:57
2018-06-04T00:53:57
98,120,105
1
0
MIT
2018-06-04T00:53:58
2017-07-23T19:21:50
C++
UTF-8
C++
false
false
981
cpp
#include "TestCore.h" TEST_F(DifferentiabilityTest, LeafNodesHaveDifferentiableTree) { EXPECT_TRUE(cons1->HasDifferentiableTree()); EXPECT_TRUE(cons2->HasDifferentiableTree()); } TEST_F(DifferentiabilityTest, ConstantChannelDifferentiable) { EXPECT_TRUE(cons1->Channels(0).IsDifferentiableFunctor()); E...
[ "alexander.weaver@ttu.edu" ]
alexander.weaver@ttu.edu
4d2ccecec054227ec8f74ccdd9b5c0a843cadb67
3e35cd073cd7a6627ab670eb03b2845a67a7f2c3
/include/gaia_network_httpserver.h
db2fd913001fa697aac8dd0bea3467f300aefad5
[]
no_license
sylarchen0906/GAIA
0db1613060432b3ad9c5e3d0201eeb2ec5863cb7
c4839827a85353c5dee18879ad8520582dd1ecbe
refs/heads/master
2020-05-26T21:34:30.691139
2017-02-17T15:24:50
2017-02-17T15:24:50
82,507,676
0
0
null
2017-02-20T02:22:28
2017-02-20T02:22:28
null
UTF-8
C++
false
false
1,802
h
#ifndef __GAIA_NETWORK_HTTPSERVER_H__ #define __GAIA_NETWORK_HTTPSERVER_H__ #include "gaia_type.h" #include "gaia_assert.h" //#include "gaia_sync_lock.h" //#include "gaia_sync_autolock.h" //#include "gaia_sync_lockrw.h" //#include "gaia_sync_autolockr.h" //#include "gaia_sync_autolockw.h" //#include "gaia_ctn_ref.h"...
[ "70601797@qq.com" ]
70601797@qq.com
29ccd19340040a4407098ed88c7ba05f7f35ee0a
f4f8e9b55f4ec4a6733bd71596c7206d1270094b
/tensorflow-yolo-ios/dependencies/eigen/doc/snippets/SparseMatrix_coeffs.cpp
532e59856d3c30017fd18ef2e7996dfe33ce0cbd
[ "MIT" ]
permissive
initialz/tensorflow-yolo-face-ios
1e71a73c9814a24fc3ca36a61f2abc7a4b32ad63
ba74cf39168d0128e91318e65a1b88ce4d65a167
refs/heads/master
2021-08-19T19:22:34.604864
2017-11-27T07:39:21
2017-11-27T07:39:21
112,151,522
0
0
null
null
null
null
UTF-8
C++
false
false
128
cpp
version https://git-lfs.github.com/spec/v1 oid sha256:792cca442007f942beda639f16b2cf736e7df3c1e42eb15d8d61b6c4c28088a5 size 411
[ "kaiwen.yuan1992@gmail.com" ]
kaiwen.yuan1992@gmail.com
354e9fb82a5067879b51a366794b722c2103b5e0
e433566a524fd56b871bdd93685e0b8f2985574c
/drone_project/drone_ws/devel/include/bebop_msgs/CommonCommonStateMassStorageInfoStateListChanged.h
9d890d53deafc68a473f6ba69c184393f624f88e
[]
no_license
JarrettPhilips/self_landing_drone
000b2f386302555f1876fbc38ada71d12451f8e0
7e497492941d9f642d4991c3fbc5be20e63f965e
refs/heads/master
2021-09-14T13:20:14.536053
2017-12-20T00:16:55
2017-12-20T00:16:55
null
0
0
null
null
null
null
UTF-8
C++
false
false
9,213
h
// Generated by gencpp from file bebop_msgs/CommonCommonStateMassStorageInfoStateListChanged.msg // DO NOT EDIT! #ifndef BEBOP_MSGS_MESSAGE_COMMONCOMMONSTATEMASSSTORAGEINFOSTATELISTCHANGED_H #define BEBOP_MSGS_MESSAGE_COMMONCOMMONSTATEMASSSTORAGEINFOSTATELISTCHANGED_H #include <string> #include <vector> #include <m...
[ "masc7859@colorado.edu" ]
masc7859@colorado.edu
de131b7d7b25bde07083279fcadcf000d5b65c0e
007867b4937f52de7746f79124ef104b2d183f5a
/计算几何/凸包/PKU 3348 Cows.cpp
f9d929ba327d78926bf29331795b9ed03afe8dba
[]
no_license
WhereIsHeroFrom/Algorithm
84dcee3174dbcd9e996442f07627a96c46f6c74a
6bf620d6219770db60b40d151eecd686955ab723
refs/heads/master
2023-08-05T14:05:48.385791
2021-10-06T00:21:39
2021-10-06T00:21:39
306,805,686
16
4
null
null
null
null
GB18030
C++
false
false
8,119
cpp
#include <iostream> #include <algorithm> #include <cstring> #include <cmath> #include <cstdlib> using namespace std; const int MAXP = 100010; const double eps = 1e-10; #define INT_POINT #ifdef INT_POINT typedef int PointType; typedef long long MultiplyType; // 由于乘法可能导致 int 溢出,所以需要定义一种乘法后的类型(平方、叉乘、点乘) #else typedef...
[ "menjitianya2007@163.com" ]
menjitianya2007@163.com
420b59b58d791c8bb4646c9509cb0a3aeda87ccf
fe6b0a0e981bb6fd356fc4467835dd1a52a0a49a
/Assets/StreamingAssets/Audio/GeneratedSoundBanks/Wwise_IDs.h
6a5e82966f247a3c8da41952eda3d999b3dfc1a7
[]
no_license
FruitPunchSamurai12/GJL
107883d0c89a099522ec86c7cd9479fa5925d517
912206f3eef2dc51248a0386703133e8f510e155
refs/heads/main
2023-08-09T21:03:30.383352
2021-09-16T12:37:19
2021-09-16T12:37:19
340,971,530
0
0
null
null
null
null
UTF-8
C++
false
false
5,291
h
///////////////////////////////////////////////////////////////////////////////////////////////////// // // Audiokinetic Wwise generated include file. Do not edit. // ///////////////////////////////////////////////////////////////////////////////////////////////////// #ifndef __WWISE_IDS_H__ #define __WWISE_IDS_H__ #...
[ "rbarry.audio@gmail.com" ]
rbarry.audio@gmail.com
460698bfb56bb298c9b40a562de8c86dab33dc40
770bf6029669a3b96830b160b61331870fcea9a3
/ÖRNEKLER/PG33-ClassKisiler/PG33-ClassKisiler/stdafx.cpp
de4faacc00dc5aaf0f8505a3fad31e882678b897
[]
no_license
mustafraca/Programlamaya-Giris-OrnekveOdevler
9f71729a1c3dfae966380d258b8ce09a023c11ba
4d7cb7dea3e0e2068fa53ada76afc7d383118455
refs/heads/master
2021-01-03T03:36:28.647172
2020-02-12T01:44:13
2020-02-12T01:44:13
239,903,855
0
0
null
null
null
null
UTF-8
C++
false
false
296
cpp
// stdafx.cpp : source file that includes just the standard includes // PG33-ClassKisiler.pch will be the pre-compiled header // stdafx.obj will contain the pre-compiled type information #include "stdafx.h" // TODO: reference any additional headers you need in STDAFX.H // and not in this file
[ "36599634+mustafraca@users.noreply.github.com" ]
36599634+mustafraca@users.noreply.github.com
f69d926dfaaa7ab744d962c75858c2353f063356
722732c3c575070f04d69896e094584b2e1c6b85
/BulletHellMaker/src/Editor/EMP/EditorMovablePointPanel.cpp
7442fd55cb929afb308b1c457a8785bd2b593c1d
[]
no_license
Miv99/BulletHellMaker
6c702bf01bbc3f31f3ef0fe9482b760bebbf1101
6ad7fafab763bd2241e5e669c95c53f60fe182b5
refs/heads/master
2021-11-29T18:41:40.026183
2021-11-14T21:36:47
2021-11-14T21:36:47
175,186,909
3
1
null
2020-08-20T03:44:00
2019-03-12T10:24:32
C++
UTF-8
C++
false
false
74,502
cpp
#include <Editor/EMP/EditorMovablePointPanel.h> #include <Mutex.h> #include <Config.h> #include <GuiConfig.h> #include <Util/StringUtils.h> #include <Editor/Util/EditorUtils.h> #include <Editor/EMPA/EditorMovablePointActionPanel.h> const std::string EditorMovablePointPanel::PROPERTIES_TAB_NAME = "MP Properties"; cons...
[ "treecam42@gmail.com" ]
treecam42@gmail.com
76c97e1308a0bb6d3dac1c0d32971db454766561
84202c9c5d843e4633e34927e2b63f18b9692b0c
/tests/src/protostar/math/RectPackTest.cpp
dcb10cb1a0af63ab2cd8e6412be86ef9c6ddc8a6
[ "Apache-2.0" ]
permissive
xgdwangdechao/galaxy
08acd323c5ce22a5401f310e3ad94c2fd76d386a
e4cede2a4f7c0aa0db421c2d65230e7ba4cb37b9
refs/heads/master
2022-12-03T13:02:47.444557
2020-08-18T11:40:11
2020-08-18T11:40:11
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,919
cpp
/// /// RectPackTest.cpp /// tests /// /// Refer to LICENSE.txt for more details. /// #include <gtest/gtest.h> #include <protostar/math/RectPack.hpp> TEST(RectPack, init) { pr::RectPack<int> p; p.init(100, 100); EXPECT_EQ(p.get_width(), 100); EXPECT_EQ(p.get_height(), 100); } TEST(RectPack, cant_fit) { pr::Rec...
[ "dev.dom.re@gmail.com" ]
dev.dom.re@gmail.com
b498ad87addb6697cbe381addd78d7602d1f2eb5
68bd064e7738c276551b220c2be7837b9b603e06
/psetggm/tests/test_xor.cpp
7a4c200204230beaacfa6457420a77eba2069c2a
[ "MIT" ]
permissive
dimakogan/checklist
15acfcd6db7167e28b4ae4e00f08a995b1ce43ce
cd0ba2a770fcb184417715f6cf1dd753e8d5bfa4
refs/heads/master
2023-05-05T09:55:08.835496
2021-05-25T22:53:05
2021-05-25T22:53:05
347,237,651
21
2
null
null
null
null
UTF-8
C++
false
false
589
cpp
#include <iostream> #include "../xor.h" int main() { int row_len = 31; uint8_t db[row_len * 7]; long long unsigned int idx1 = 3; long long unsigned int idx2 = 6; for (int i = 0; i < row_len; i++) { db[idx1*row_len + i] = 'X'; db[idx2*row_len + i] = 'X' ^ (uint8_t)i; } l...
[ "dkogan@cs.stanford.edu" ]
dkogan@cs.stanford.edu
7ce0cc1c17de7207ad01aed96ba2b423a9c82771
cefd6c17774b5c94240d57adccef57d9bba4a2e9
/WebKit/Source/WebCore/rendering/style/StyleGeneratedImage.cpp
6b59fe7c496425d60c81b4bc481301663eb2a4ce
[ "BSL-1.0", "BSD-2-Clause", "LGPL-2.0-only", "LGPL-2.1-only" ]
permissive
adzhou/oragle
9c054c25b24ff0a65cb9639bafd02aac2bcdce8b
5442d418b87d0da161429ffa5cb83777e9b38e4d
refs/heads/master
2022-11-01T05:04:59.368831
2014-03-12T15:50:08
2014-03-12T15:50:08
17,238,063
0
1
BSL-1.0
2022-10-18T04:23:53
2014-02-27T05:39:44
C++
UTF-8
C++
false
false
3,333
cpp
/* * Copyright (C) 2000 Lars Knoll (knoll@kde.org) * (C) 2000 Antti Koivisto (koivisto@kde.org) * (C) 2000 Dirk Mueller (mueller@kde.org) * Copyright (C) 2003, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it ...
[ "adzhou@hp.com" ]
adzhou@hp.com
9894fcb92c2ca3d82756857662db566d29fd4eab
dca9e5c65e79786df5da45d917eb2c2729cd45ab
/Assignment - Ik/ASS65.CPP
d5d2a0e4c929e486cb797d955efbf2545477813e
[]
no_license
raja21068/C-Programs-Beginners
792650260b359d6c0e5797c6775ff023e9801037
e16110d731dbb6cee346d086b7d1c3038a3a6adb
refs/heads/master
2021-07-25T03:27:39.254067
2017-11-06T05:30:40
2017-11-06T05:30:40
109,651,660
0
0
null
null
null
null
UTF-8
C++
false
false
283
cpp
#include <conio.h> #include <stdio.h> void main () { clrscr(); int a,b,c,d,e,f,g; printf("Enter two fraction numbers(a/b,c/d): "); scanf("%d/%d,%d/%d",&a,&b,&c,&d); e=b*d; f=e/b; g=e/d; printf("\n\nThe sum of %d/%d and %d/%d is: %d/%d",a,b,c,d,(a*f+c*g),e); getch(); }
[ "rajakumarlohano@gmail.com" ]
rajakumarlohano@gmail.com
d454888692befd09e36e2f270e6c837f8763d6b4
d68d11f044b324dfa94ca01f5d7110c445face7b
/src/AddyMasterInfo.cpp
19448ad3476982c8d40665607e0e2daf205f4943
[]
no_license
aabdelrazek/addypin
568e43753c9c36731798bcaebb28b6db08fe519c
2d1f72293f22d57080ad5a21fd6dbc520b3f965d
refs/heads/master
2021-01-18T01:42:53.306335
2015-03-03T04:06:19
2015-03-03T04:06:19
30,514,234
1
0
null
null
null
null
UTF-8
C++
false
false
2,729
cpp
/* * AddyMasterInfo.cpp * * Created on: 2015-02-14 * Author: aabdelrazek */ #include "inc/AddyMasterInfo.h" #include "utils/inc/strtk.hpp" #include <Wt/WApplication> #include "tinyxml/tinyxml.h" AddyMasterInfo::AddyMasterInfo(std::string email, std::string mpin, unsigned int maxEntries): mMasterPin(mpin...
[ "eng.afathy@gmail.com" ]
eng.afathy@gmail.com
d7c97d334a59ae58c154bf5276c0509b9be5ba6f
3f4197b01dbc1f065d759c79e603c7deb31a2599
/external/android/include/21/frameworks/av/include/media/stagefright/MediaCodec.h
54a4e8b6ed059f52bbffe0e714068220ba8e0d1b
[ "Apache-2.0" ]
permissive
nova-video-player/aos-avos
543477be60e8a2a546f027dd0a97b3bf170585e7
2b79168e639f8088ef5d1e3a8d09f5523c063801
refs/heads/nova
2023-08-09T21:09:13.446561
2023-07-07T20:00:31
2023-07-07T20:00:31
133,509,761
10
6
Apache-2.0
2020-02-05T22:19:25
2018-05-15T11:59:28
C
UTF-8
C++
false
false
10,079
h
/* * Copyright 2012, The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applica...
[ "noury@archos.com" ]
noury@archos.com
d4054098fed250945ffd0bf90263f148786ebd8c
cc1701cadaa3b0e138e30740f98d48264e2010bd
/chrome/browser/ui/app_list/search/chrome_search_result.cc
66aef456ccac88e7acc3a53ec1f3829f4130c1ae
[ "BSD-3-Clause" ]
permissive
dbuskariol-org/chromium
35d3d7a441009c6f8961227f1f7f7d4823a4207e
e91a999f13a0bda0aff594961762668196c4d22a
refs/heads/master
2023-05-03T10:50:11.717004
2020-06-26T03:33:12
2020-06-26T03:33:12
275,070,037
1
3
BSD-3-Clause
2020-06-26T04:04:30
2020-06-26T04:04:29
null
UTF-8
C++
false
false
6,020
cc
// Copyright 2018 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/ui/app_list/search/chrome_search_result.h" #include <map> #include "base/containers/adapters.h" #include "chrome/browser/ui/app...
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
767fef145cb258fb4c3b459a7f5080ea2b4abb78
260e5dec446d12a7dd3f32e331c1fde8157e5cea
/Indi/SDK/Indi_0003_Grace_parameters.hpp
8e4b7c359981fd8c3396630522f0da2e68836907
[]
no_license
jfmherokiller/TheOuterWorldsSdkDump
6e140fde4fcd1cade94ce0d7ea69f8a3f769e1c0
18a8c6b1f5d87bb1ad4334be4a9f22c52897f640
refs/heads/main
2023-08-30T09:27:17.723265
2021-09-17T00:24:52
2021-09-17T00:24:52
407,437,218
0
0
null
null
null
null
UTF-8
C++
false
false
473
hpp
#pragma once // TheOuterWorlds SDK #ifdef _MSC_VER #pragma pack(push, 0x8) #endif #include "Indi_0003_Grace_classes.hpp" namespace SDK { //--------------------------------------------------------------------------- //Parameters //--------------------------------------------------------------------------- // Funct...
[ "peterpan0413@live.com" ]
peterpan0413@live.com
24cf6215f7a2ce343d593095c39762360d01c8d4
43f8917847dbdcde3fc1007d59f34611cb916533
/armstrong using function.cpp
2974a3ff10439f2501e08311de71d60f8252c545
[]
no_license
harshsaini09/my-programs-of-C
9367f83f155aa819adc34010ba10dd67a5204d4d
7b33f34d399023212a6231330d161a9865168d47
refs/heads/master
2022-12-01T16:32:01.755678
2020-08-09T13:36:18
2020-08-09T13:36:18
209,030,526
0
0
null
null
null
null
UTF-8
C++
false
false
336
cpp
#include<stdio.h> int arm(int n) { int m,a,temp,sum=0; while(n!=0) { a=n%10; m=a*a*a; sum=sum+m; n/=10; } return sum; } main() { int n,temp; printf("enter a number \n"); scanf("%d",&n); temp=n; if (temp==arm(n)) printf("this is armstrong number "); else printf("this is not ar...
[ "noreply@github.com" ]
harshsaini09.noreply@github.com
30d68b76ef1462df8527e5fdf3e7e49684d7cc8e
df1a392cbf9dd781b209897e7913840a5a0f20b4
/src/io/BasicReaderWriter.cpp
a34b77c2062c3af6922dea8246643714309db13a
[ "MIT" ]
permissive
dlatikaynen/blooDot
e665491230d09be79f8a7517c22e55786af3fe1c
5ba6b0deac2c15a373715c479af80df2647a6bdc
refs/heads/master
2023-07-11T00:38:24.006063
2022-09-18T13:49:21
2022-09-18T13:49:21
200,548,112
4
0
MIT
2020-04-30T10:46:13
2019-08-04T22:34:54
C++
UTF-8
C++
false
false
4,427
cpp
#include "..\PreCompiledHeaders.h" #include "BasicReaderWriter.h" using namespace Microsoft::WRL; using namespace Windows::Storage; using namespace Windows::Storage::FileProperties; using namespace Windows::Storage::Streams; using namespace Windows::Foundation; using namespace Windows::ApplicationModel; using namespac...
[ "dlatikay@outlook.com" ]
dlatikay@outlook.com
d352516ad763e55f7533608e3b47f1a3c0d487d6
896bcdf42a98bde051097ebe3e68c44feba02f85
/做题/4.Stacks of Flapjacks.cpp
e004a9bde9600c53403c91cce6163c52a259398b
[]
no_license
BIT-zhangxin/AlogrithmLearning
4c13b5c24b6677172068a78e859a996cd5559112
6a68357adeb6fb6f8b7b2832676d5e2dbb3157f1
refs/heads/master
2020-06-24T00:32:41.029086
2019-07-25T09:01:42
2019-07-25T09:01:42
198,795,739
2
0
null
null
null
null
GB18030
C++
false
false
1,736
cpp
//#include <stdio.h> //#include <stdlib.h> //#include <string.h> // //int Left = 0; // //void find(int *A, int len); //void change(int *A, int x); //int check(int *A,int len); // //int cmp(const void *a, const void *b) //{ // return *(int*)a - *(int*)b; //} // //int main() //{ // char tmp; // int size = 0; // int A[35]...
[ "1047632321@qq.com" ]
1047632321@qq.com
1260d963ff0d1f56870bbddc47b204ee2aee6939
f85d6b88aa35c4ce2d4315dcaa247db071a92b52
/Direct3D/GamePlayManager/GamePlayManager.cpp
da484edc5ae815c7ca703b8fd4a0774d1ce4e4da
[]
no_license
junghoon88/dx11portfolio
279d3117550b0766a68836d12b032e25ddbcfec1
fbd2941c772162b7d9be75e6409fa9633bca415d
refs/heads/master
2020-03-26T06:40:05.006809
2018-09-21T13:13:52
2018-09-21T13:13:52
144,615,838
0
0
null
null
null
null
WINDOWS-1252
C++
false
false
617
cpp
#include "stdafx.h" #include "GamePlayManager.h" #include "../Executes/DrawStage.h" GamePlayManager::GamePlayManager(DrawStage * stage) : stage(stage) , playTime(0.0f) { enemyRespawnManager = new EnemyRespawnManager(stage); } GamePlayManager::~GamePlayManager() { SAFE_DELETE(enemyRespawnManager); } void GamePlay...
[ "theking14@hanmail.net" ]
theking14@hanmail.net
57bce22c8060fe3d7f62ef13c18fff7d1addea8a
ef8352507d8de42f12aa405cb6e2682eb30d77c5
/day9.cpp
891d1c1730a9beec69c16ecaa52fbc1f4b42af49
[]
no_license
RaduXD1/AoC_2019
1da184a002116fa2c9329fc05f9a3c7fb4af2389
49b63ec75ddb66f194244967f2c1d6755b04b5cd
refs/heads/master
2020-09-28T15:27:11.871830
2020-01-12T21:12:08
2020-01-12T21:12:08
226,805,556
0
0
null
null
null
null
UTF-8
C++
false
false
1,993
cpp
#include <bits/stdc++.h> using namespace std; ifstream fin("date.in"); ofstream fout("date.out"); long long n,b,i,sol,f[100],a[10000],v1,v2,ok,aux,nr,poz,base; int main() { while(fin>>b) a[++n]=b; base=1; for(i=1;i<=n;i++) { aux=a[i];nr=0; for(ok=1;ok<=7;ok++) f[ok]=0; ...
[ "noreply@github.com" ]
RaduXD1.noreply@github.com
fc5131a7c8affaff0ae8cbbc6b187c51136b7fe8
f81124e4a52878ceeb3e4b85afca44431ce68af2
/re20_2/processor16/65/U
16f8ea6bdd2e146b6d49f6d52a4857161b1ae231
[]
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
23,885
/*--------------------------------*- 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
3291f7226871babaf8b39d22a1796bc9a0e49ed0
03b011fa49f1d8ae4b14cd102931698e1ef74a59
/src/AM2320-WebGraph/AM2320-WebGraph.ino
4860c70cacafa44b64ba50f6180ec2f1b4889c5e
[ "MIT" ]
permissive
kzt206/AM2320-WebGraph
603dbc7ebb692ec36153980b87801115d217a0bf
efddc2907d7bdfcbfc329401415f83c6e234e220
refs/heads/master
2022-01-14T17:46:12.306651
2019-07-08T01:01:29
2019-07-08T01:01:29
null
0
0
null
null
null
null
UTF-8
C++
false
false
11,974
ino
#include <ESP8266WiFi.h> #include <ESP8266WiFiMulti.h> #include <ESP8266WebServer.h> #include <FS.h> #include <WebSocketsServer.h> #include <TimeLib.h> #include <AM2320.h> #include <Ticker.h> /************************************************ PARAMETERS ************************************************/ /* If you use t...
[ "shiguregaki@gmail.com" ]
shiguregaki@gmail.com
25125577ac9f2ee0778cc12d58930555427e62c4
591b536f8a4b434a8358b2e5d05f101cd0e74154
/pscx_emulator/pscx_disc.h
222a307b771bd9b5c51380ad342d31f670d5c00a
[]
no_license
oaleshina/pscx_emulator
67315b7dc275cfe44d20959cbf39377b6a67e9fa
af968ff2c0523fcd91322ef192f7869d4917d882
refs/heads/master
2022-09-29T11:17:37.871757
2022-04-18T16:26:07
2022-04-18T16:26:07
147,331,649
3
3
null
2022-04-21T12:37:10
2018-09-04T10:52:55
C
UTF-8
C++
false
false
3,866
h
#pragma once #include <fstream> #include "pscx_minutesecondframe.h" // Size of a CD sector in bytes. const size_t SECTOR_SIZE = 2352; // CD-ROM sector sync pattern: 10 0xff surrounded by two 0x00. Not // used in CD-DA audio tracks. const uint8_t SECTOR_SYNC_PATTERN[] = { 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,...
[ "oaleshina@nvidia.com" ]
oaleshina@nvidia.com
c072070230c2dd545b27a5497c1ea9d9c6983896
dde869518027fe29e5de7d04b7e41321ac5d0ba4
/cpp/glakkengine/src/Level/Level.cpp
99bc88efb6bd37a4b7cf4318e56acda22f0e6de0
[ "MIT" ]
permissive
ekroth/pool
0b91c81fac58bca6d1ead41ab6c971b7bd44ccd7
fb7e7602a8bea9b16451a75d23250f0c2b67f0d3
refs/heads/master
2021-06-06T09:53:55.253375
2016-09-07T23:41:30
2016-09-07T23:41:30
15,030,906
0
0
null
null
null
null
UTF-8
C++
false
false
1,505
cpp
/* Copyright (c) 2010-2011 Andrée Ekroth * See the file LICENSE.txt for copying permission. */ #include "Level/Level.hpp" #include "GameTime.hpp" #include "Graphics/IRenderer.hpp" #include "Level/LevelItem.hpp" using namespace kke; Level::Level (const std::string& name) : name(name), isLoaded(false) { } Level::~L...
[ "andree.ekroth@gmail.com" ]
andree.ekroth@gmail.com
e808e91cda6b847d5308cbb040042d6f83b305f4
c3ab70ef2061557515891efc520794690e3f3c14
/2661.cpp
f7a3a72ceb79ef42cbf77f422eeef882649aba1b
[]
no_license
maratonandoHard/SBC-ACM-ICPC-2017
9b1d8490422160d83b43f18d1d95aebfe65a78f1
437df9a35f5bfab289e87a151006386ff9aee1e8
refs/heads/master
2021-07-10T03:36:08.317454
2017-10-07T20:55:39
2017-10-07T20:55:39
105,375,726
0
0
null
null
null
null
UTF-8
C++
false
false
712
cpp
#include <iostream> #include <set> #include <math.h> using namespace std; typedef long long int ll; set<ll> primos_distintos_da_fatoracao(ll n) { set<ll> primos_distintos; while (n % 2 == 0) { primos_distintos.insert(2); n /= 2; } for (ll i = 3; n != 1 && i <= sqrt(n); i += 2) { ...
[ "noreply@github.com" ]
maratonandoHard.noreply@github.com
610a22d23bcab01521c0e0b6455bbc3e07b72a4b
060e3b90d7063e532de3d5a747b32c57b099dbb8
/src/scheduler/include/async_dependency_scheduler/multiqueue/mapping_queue_data.hpp
2199a2cdfcdd66e889052de5438b4f6dc3c80b33
[]
no_license
ZePedroResende/TEG-framework
f17540ed6cbdd23604ba5690952e08348a3fbab8
31b5e1d3b34b3a6163d4ddeeb35d3b3391e4d87e
refs/heads/master
2023-03-23T11:12:23.966236
2021-03-18T08:58:44
2021-03-18T08:58:44
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,104
hpp
#include <map> #include <queue> #include <vector> constexpr int empty = -1; constexpr int terminated = -2; constexpr int unavailable = -1; class MappingQueueData { public: MappingQueueData(int number_queue, int total) : mapping_queue_data(number_queue, empty), latest(-1), total(total) { for (int i = 0; i ...
[ "noreply@github.com" ]
ZePedroResende.noreply@github.com
66c4959707e157876dabac41ea2f3ce02f0bd690
634120df190b6262fccf699ac02538360fd9012d
/Develop/mdk/RealSpace3/TestRS3/main.cpp
c06b29a31517141bbc16c2f5babb6ca58f2c494a
[]
no_license
ktj007/Raiderz_Public
c906830cca5c644be384e68da205ee8abeb31369
a71421614ef5711740d154c961cbb3ba2a03f266
refs/heads/master
2021-06-08T03:37:10.065320
2016-11-28T07:50:57
2016-11-28T07:50:57
74,959,309
6
4
null
2016-11-28T09:53:49
2016-11-28T09:53:49
null
UHC
C++
false
false
5,357
cpp
#include "stdafx.h" #include <vector> #include <string> #include "MFileSystem.h" #include "MCrashDump.h" // 디버그 모드에서 실행 할 때 너무 느릴 경우 주석 처리하시면 됩니다. #include "vld.h" #pragma comment(lib,"vldmt.lib") #ifdef _DEBUG #pragma comment ( lib, "UnitTest++.vsnet2008d_NoException.lib" ) #else #pragma comment ( lib, "UnitTest++....
[ "espause0703@gmail.com" ]
espause0703@gmail.com
bdd65c011df54b0f79da0d42524ca6eaefdad354
90047daeb462598a924d76ddf4288e832e86417c
/net/tools/quic/quic_server_bin.cc
6fc25241361953002f831a73146ab0f638c0f8b0
[ "BSD-3-Clause" ]
permissive
massbrowser/android
99b8c21fa4552a13c06bbedd0f9c88dd4a4ad080
a9c4371682c9443d6e1d66005d4db61a24a9617c
refs/heads/master
2022-11-04T21:15:50.656802
2017-06-08T12:31:39
2017-06-08T12:31:39
93,747,579
2
2
BSD-3-Clause
2022-10-31T10:34:25
2017-06-08T12:36:07
null
UTF-8
C++
false
false
3,204
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. // // A binary wrapper for QuicServer. It listens forever on --port // (default 6121) until it's killed or ctrl-cd to death. #include <iostream> #includ...
[ "xElvis89x@gmail.com" ]
xElvis89x@gmail.com
46556d1ec840a903c5c48f6257d0b75ebf380308
188fb8ded33ad7a2f52f69975006bb38917437ef
/Fluid/processor4/0.04/U
8a48b8c9a960a9d6fc3ac74d01314767c0d8e744
[]
no_license
abarcaortega/Tuto_2
34a4721f14725c20471ff2dc8d22b52638b8a2b3
4a84c22efbb9cd2eaeda92883343b6910e0941e2
refs/heads/master
2020-08-05T16:11:57.674940
2019-10-04T09:56:09
2019-10-04T09:56:09
212,573,883
0
0
null
null
null
null
UTF-8
C++
false
false
18,680
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: dev | ...
[ "aldo.abarca.ortega@gmail.com" ]
aldo.abarca.ortega@gmail.com
97dd62fd08d23cd835da75c47bea75ac672544ef
0eff74b05b60098333ad66cf801bdd93becc9ea4
/second/download/git/gumtree/git_patch_hunk_2315.cpp
df3b1c46c04f8092ee1b5e018c7f19c3a5f75c24
[]
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
483
cpp
lock = lock_ref_sha1_basic(newrefname, NULL, NULL, NULL, 0, NULL, &err); if (!lock) { error("unable to rename '%s' to '%s': %s", oldrefname, newrefname, err.buf); strbuf_release(&err); goto rollback; } - hashcpy(lock->old_sha1, orig_sha1); + hashcpy(lock->old_oid.hash, orig_sha1); if (write_ref_to_lo...
[ "993273596@qq.com" ]
993273596@qq.com
d39b53288eeb6b7ff54a64e81e2d36c403d87868
66f382479a46b3c3f5fe614a52baa5ef52951cec
/DuiLib/Control/UIGifAnim.h
58f48fc65a4f0726a6b1a675ca22c2905e38d070
[ "MIT" ]
permissive
fawdlstty/DuiLib_Faw
80005af6b1e328818f66cdad47c06108c9ec2137
f16f9913f027555640ec17eeb077c5be446681ae
refs/heads/master
2023-08-22T22:51:58.377968
2023-05-03T13:13:51
2023-05-03T13:13:51
152,514,855
95
29
NOASSERTION
2023-08-06T15:09:06
2018-10-11T01:50:39
C++
UTF-8
C++
false
false
1,658
h
#ifndef GifAnimUI_h__ #define GifAnimUI_h__ #pragma once namespace DuiLib { class UILIB_API CGifAnimUI: public CControlUI { enum { EVENT_TIEM_ID = 100, }; DECLARE_DUICONTROL (CGifAnimUI) public: CGifAnimUI (void); virtual ~CGifAnimUI (void); faw::string_t GetClass () const; LPVOID GetInterface (f...
[ "f@fawdlstty.com" ]
f@fawdlstty.com
2fe381ed7cbbc2e7d3a00bce9ee161d47c425e41
ed8332a1512f81aced000cc8034acee41051f74d
/ZFramework3D/ZExpMapGenerateWarp.h
009d5543ede5777951916d8a1324043af646c463
[]
no_license
zzez12/ZFramework
cefd52aea8447d253334f34dc3246eb6bff4235d
347d68a96a030888ea7b0fc22c63bd3279a6279c
refs/heads/master
2021-01-19T02:39:21.808644
2016-07-04T02:17:12
2016-07-04T02:17:12
50,234,235
0
0
null
2016-07-04T02:18:38
2016-01-23T10:38:55
C++
UTF-8
C++
false
false
1,027
h
#pragma once #ifndef ZEXPMAPGENERATEWARP_H_ #define ZEXPMAPGENERATEWARP_H_ #include "GlobalDefs.h" #include "../Scene/Mesh3D.h" #include "../ExLib/expmap/ExpMapGenerator.h" #include "../ExLib/expmap/VFTriangleMesh.h" #include "ZMeshParser.h" namespace ZMeshSpace { class ZExpMapGenerateWarp { public: ZExpMapGene...
[ "zzez12@foxmail.com" ]
zzez12@foxmail.com
6d19e06f12a947d34d731b2cb580ef94b82c9ae6
f174607cab237e01c11de99fab7d9d9dec4fa380
/lab4/interpolations/netwon_interpolation.cpp
7090bfda7d4d44da7cdf64da3664ec73c827b447
[]
no_license
MatiXOfficial/MOwNiT
ff6c1c3c6df5c1fc8afd53bc6665ac554e2f80ae
7ddbd9add9617e566732447d2fc8956923942daf
refs/heads/master
2021-03-21T22:57:07.273833
2020-06-12T13:39:37
2020-06-12T13:39:37
247,333,529
1
1
null
null
null
null
UTF-8
C++
false
false
1,141
cpp
#include <vector> #include "../utils/point.h" std::vector<Point> newtonInterpolation(const std::vector<Point> &nodes, const std::vector<double> &pointsX) { int n = nodes.size(); std::vector< std::vector<double> > F(n, std::vector<double>()); for (Point node : nodes) { F[0].push_back(node.getY()...
[ "mateuszkocot99@gmail.com" ]
mateuszkocot99@gmail.com
659286c9e2e0e68464e2d370816e891273afbc4f
581f7c9d75a5ebc95264e56c2b2de9283e02afdc
/PICTest/PIC_main.cpp
a4c002153c064255988250734192031afe7525de
[]
no_license
skrcjstk/FluidSimulationWithOPT
22551e617748a381b8a51ab2fd242701a4f2ce4b
ea43536944f44659d9b5fda727c18ba6ef3a0100
refs/heads/master
2021-09-10T00:35:01.130681
2018-03-20T11:48:18
2018-03-20T11:48:18
108,535,626
0
0
null
null
null
null
UTF-8
C++
false
false
11,705
cpp
#include "GL/glew.h" #include "..\FluidSimulationWithOPT\Visualization\MiniGL.h" #include "..\FluidSimulationWithOPT\Visualization\Selection.h" #include "GL/glut.h" #include "..\FluidSimulationWithOPT\Visualization\PrimitiveBuffer.h" #include <iostream> #include <stdio.h> #include <stdlib.h> #include "PIC.h" #include "...
[ "skrcjstk@gmail.com" ]
skrcjstk@gmail.com
bc49a70c452a52d629d84713167ac80cece812fd
49db9830c7f183873c1394d8291e35d1289a08c6
/include/core/Thread.h
5147cbc007dddb24d7007485175ee09bce19d4f0
[ "Zlib" ]
permissive
DarthCoder117/Icicle-Engine
ef0f1d96cbbeea5f8cff395a963a6fe44064b64b
2aa3d56e7ca58f9d7e1ad946bda371495507b9b4
refs/heads/master
2020-12-26T16:27:29.568802
2015-03-04T01:19:19
2015-03-04T01:19:19
29,780,395
1
0
null
null
null
null
UTF-8
C++
false
false
1,312
h
#ifndef THREAD_H #define THREAD_H #include <IcicleCommon.h> namespace ice { namespace core { ///@brief Wrapper around thread implementation. ///The current implementation just wraps std::thread for portability. class Thread { public: Thread() {} template <typename F, typename... P> Thread(F&&...
[ "tanner@icicle-games.com" ]
tanner@icicle-games.com
cf8cab98a0252fab3e2dfd5887019a60d06f8d76
cac5943d4339b3877a1cc3ecaf7293ab5f5c97d0
/src/examples/07_module/circle.h
9da758a8c0c614070bf3473b6bdb50b93f3457ad
[ "MIT" ]
permissive
acc-cosc-1337-fall-2019/acc-cosc-1337-fall-2019-Fortress117
128aef7ffd0773f393ede8cb93e5aa48ca0ba078
76cfd56f0d4cb53bd2ce997fffb994bd30560ce2
refs/heads/master
2020-07-13T07:58:29.178211
2019-12-10T00:08:28
2019-12-10T00:08:28
205,038,730
1
0
null
null
null
null
UTF-8
C++
false
false
189
h
//circle.h #ifndef CIRCLE_H #define CIRCLE_H #include"../07_module/shape.h" namespace mod7ex { class Circle : public Shape { public: void draw() override; }; } #endif // ! CIRCLE_h
[ "arturo.gonzalez@austincc.edu" ]
arturo.gonzalez@austincc.edu
9d944ed318bdf37a448c0917273045a522298ca9
77403c90252ea0c41db72e1f6bccb2842f026897
/src/abstract/gatewayabstract.cpp
fe22aaad79ee38c4e05266b20db7d552f51c68e3
[]
no_license
lyarbean/qtrader
1c783340d9aa1827e3368548c38d17a08af0e4e4
2d64b6195a39cd64eb3e1d6375b1bfa33560eff3
refs/heads/master
2021-05-12T00:14:14.060284
2018-01-16T06:35:01
2018-01-16T06:35:01
117,529,572
1
0
null
null
null
null
UTF-8
C++
false
false
50
cpp
#include "gatewayabstract.h" using namespace oz;
[ "slbyan@gmail.com" ]
slbyan@gmail.com
64a5b740651a9acce14e11209a79d17207f45c4a
5be1e1c536c1ad0cb0e2d009ba64fd05e9785168
/Image.cpp
fdb64b960504d100a4fc73cfcadab975fab31730
[]
no_license
SahibpreetSinghSaini/Bootcamp-1
b7bea4cc8710c80111c0bc1ffad1f466be0693a7
8266c439c974e68edf7275bbae849d045fccc44e
refs/heads/main
2023-02-16T11:19:21.743856
2021-01-13T18:23:46
2021-01-13T18:23:46
329,395,089
0
0
null
null
null
null
UTF-8
C++
false
false
1,151
cpp
#include <opencv2/highgui/highgui.hpp> #include <opencv2/imgproc/imgproc.hpp> #include <iostream> using namespace cv; using namespace std; Mat rotate(Mat src, double angle){ Mat dst; Point2f pt(src.cols/2., src.rows/2.); // It Points to the Center of the Image Mat r = getRotationMatrix2D(pt, ang...
[ "noreply@github.com" ]
SahibpreetSinghSaini.noreply@github.com
01f0e5e3b761ae80802b4e6707c95774f0aa169e
c1b03b59b3974058e3dc4e3aa7a46a7ab9cc3b29
/src/module-wx.new/generated/Class_wx_WebViewFactory.h
4b2c3a296b31fb36465dc4e5d37277bb93682082
[]
no_license
gura-lang/gura
972725895c93c22e0ec87c17166df4d15bdbe338
03aff5e2b7fe4f761a16400ae7cc6fa7fec73a47
refs/heads/master
2021-01-25T08:04:38.269289
2020-05-09T12:42:23
2020-05-09T12:42:23
7,141,465
25
0
null
null
null
null
UTF-8
C++
false
false
1,791
h
//---------------------------------------------------------------------------- // wxWebViewFactory //---------------------------------------------------------------------------- #ifndef __CLASS_WX_WEBVIEWFACTORY_H__ #define __CLASS_WX_WEBVIEWFACTORY_H__ #include <wx/webview.h> Gura_BeginModuleScope(wx) //------------...
[ "ypsitau@nifty.com" ]
ypsitau@nifty.com
450d384474b11afdc9eba238116959aeeea6f1b7
4c955558d482b2a85153509b8ca63480ca00b6bf
/src/sycl/SYCLDataFormats/SiPixelDigiErrorsSYCL.cc
a0b5cd20b8e7c1d10c11d5b4c0fd086dba4a2e13
[ "LicenseRef-scancode-free-unknown", "Apache-2.0" ]
permissive
cms-patatrack/pixeltrack-standalone
a9080890b11e4ac58b712bb0e6b46970ad8ac7d8
8b7a333df8fe24a2399a0cabf34a24202f48ff7e
refs/heads/master
2023-08-19T04:19:10.014356
2023-08-17T20:16:57
2023-08-17T20:16:57
231,442,836
13
31
Apache-2.0
2023-09-04T17:31:45
2020-01-02T19:05:03
C++
UTF-8
C++
false
false
1,753
cc
#include "SYCLDataFormats/SiPixelDigiErrorsSYCL.h" #include "SYCLCore/device_unique_ptr.h" #include "SYCLCore/host_unique_ptr.h" #include <cassert> SiPixelDigiErrorsSYCL::SiPixelDigiErrorsSYCL(size_t maxFedWords, PixelFormatterErrors errors, sycl::queue stream) : formatterErrors_h(std::move(errors)) { error_d ...
[ "au99.perego@gmail.com" ]
au99.perego@gmail.com
a2196cadf50dbdab1a925651a21bc0c2c9636932
41921879b1eb3b50f97944fe6641eb91666da914
/syutil/syutil/SyUtilClasses.cpp
b1651d105e651545a557b47dc59a9621b234947b
[ "MIT" ]
permissive
siyuli/SYUtil
6b0562ab61fa344d774f392173013c0fe789f18f
b4eda55f40fec8ff87086af8b52c20f33ed3aab7
refs/heads/master
2021-01-10T03:24:20.991215
2020-10-09T13:44:39
2020-10-09T13:44:39
44,081,525
0
0
null
null
null
null
UTF-8
C++
false
false
3,359
cpp
//#include "SyBase.h" #include "SyUtilClasses.h" #include "SyThreadMisc.h" #include "SyUtilMisc.h" #include "SyAssert.h" #include "SyDebug.h" #include "SyNetwork.h" //#include "tp_p.h" START_UTIL_NS /////////////////////////////////////////////////////////////// // class CSyCleanUpBase //////////////////////////...
[ "siyuli@cisco.com" ]
siyuli@cisco.com
c5dee2584544de021b41875de5efea5de66c80a7
4716135a3130ddcd14cec7ef64825e5e248b70a1
/src/procedures/determine_characterisation.hpp
1e7df6cb380d027bf5ffa0be8567d5654b5cd736
[ "BSD-3-Clause" ]
permissive
Battery-Intelligence-Lab/SLIDE
2465ae09a15674e573374151edbe0b17297a89ba
847fec7aaeaefb916c51e5264aa8aa0dcfe72b20
refs/heads/master
2023-09-01T02:47:32.948438
2023-04-08T04:07:24
2023-04-08T04:07:24
185,216,614
26
8
NOASSERTION
2023-04-08T04:07:25
2019-05-06T14:47:40
C++
UTF-8
C++
false
false
2,229
hpp
/* * determine_characterisation.hpp * * Header file for the functions used to find the parameters which will match measured CCCV cycles. * This are the diffusion constants, rate constants and DC resistance. * * Copyright (c) 2019, The Chancellor, Masters and Scholars of the University * of Oxford, VITO nv, and t...
[ "volkan.kumtepeli@gmail.com" ]
volkan.kumtepeli@gmail.com
159a7300c181b9e0fa7444b191b2c9deab81b316
37a2f168a94ee7d6d9e9f2c3f0584ffafd2010c1
/src/ORBmatcher.cc
e59c96382452a5d4cc4af1a9bdcce2b9746dd031
[]
no_license
sebastinaa/ORB-SLAM3-Note
e5afcc7a730db60059c16aeff9edb021660e1f2f
ea8f03c61df729c1688b6f838f3e58a5f7cebef3
refs/heads/main
2023-03-24T18:31:07.074060
2021-03-11T04:41:49
2021-03-11T04:41:49
null
0
0
null
null
null
null
UTF-8
C++
false
false
89,954
cc
/** * This file is part of ORB-SLAM3 * * Copyright (C) 2017-2020 Carlos Campos, Richard Elvira, Juan J. Gómez Rodríguez, José M.M. Montiel and Juan D. Tardós, University of Zaragoza. * Copyright (C) 2014-2016 Raúl Mur-Artal, José M.M. Montiel and Juan D. Tardós, University of Zaragoza. * * ORB-SLAM3 is free software: y...
[ "noreply@github.com" ]
sebastinaa.noreply@github.com
afb2bad48acb7d5aad4a466de331fe92941db531
37f94ac61df71dba46c5a25f6d504410d884f3c2
/FileManager.h
4bc0ac19f2ff0614c1c82b437c1dfd683a8aa03c
[]
no_license
athithrao/awget
f6596537a530db412def8da4bd60ec4cc833fa39
f1f1a3c05d83aeadb557370520a22ab40650811c
refs/heads/master
2021-01-11T23:19:01.470573
2017-01-10T19:43:43
2017-01-10T19:43:43
78,566,202
0
0
null
null
null
null
UTF-8
C++
false
false
505
h
#ifndef FILE_MAN_P2_H #define FILE_MAN_P2_H #include <iostream> #include <string.h> #include <vector> #include <stdlib.h> #include <fstream> #include <cmath> #include <algorithm> #define MAX_PACKET_SIZE 1000 using namespace std; class FileManager { public: string filename; int numPackets; char **packets...
[ "noreply@github.com" ]
athithrao.noreply@github.com
71a558535bd3e7f25f1b1a9dae480b8e489dcce9
e76ea38dbe5774fccaf14e1a0090d9275cdaee08
/src/sync/engine/apply_control_data_updates_unittest.cc
f3d173cba912ec6c54c0101e06d7a938ac9c33dd
[ "BSD-3-Clause" ]
permissive
eurogiciel-oss/Tizen_Crosswalk
efc424807a5434df1d5c9e8ed51364974643707d
a68aed6e29bd157c95564e7af2e3a26191813e51
refs/heads/master
2021-01-18T19:19:04.527505
2014-02-06T13:43:21
2014-02-06T13:43:21
16,070,101
1
3
null
null
null
null
UTF-8
C++
false
false
38,941
cc
// Copyright 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "base/format_macros.h" #include "base/location.h" #include "base/memory/scoped_ptr.h" #include "base/strings/stringprintf.h" #include "sync/engin...
[ "ronan@fridu.net" ]
ronan@fridu.net
78d25c342848ec6cbcae42f5ab2065d701b9637e
07327b5e8b2831b12352bf7c6426bfda60129da7
/Include/10.0.14393.0/winrt/windows.media.streaming.adaptive.h
567656f316cf773c6d69c1f1543c75fc7216b154
[]
no_license
tpn/winsdk-10
ca279df0fce03f92036e90fb04196d6282a264b7
9b69fd26ac0c7d0b83d378dba01080e93349c2ed
refs/heads/master
2021-01-10T01:56:18.586459
2018-02-19T21:26:31
2018-02-19T21:29:50
44,352,845
218
432
null
null
null
null
UTF-8
C++
false
false
251,860
h
/* this ALWAYS GENERATED file contains the definitions for the interfaces */ /* File created by MIDL compiler version 8.01.0618 */ /* @@MIDL_FILE_HEADING( ) */ /* verify that the <rpcndr.h> version is high enough to compile this file*/ #ifndef __REQUIRED_RPCNDR_H_VERSION__ #define __REQUIRED_RPCNDR...
[ "trent@trent.me" ]
trent@trent.me
573171df081d8eabd701a6f87c79a8e8cffd121d
ffd84b61323d53863ae46872e16f55966f4e16ce
/ESP32-Firebase-Car/ESP32-Firebase-Car.ino
dcbbd480515db849d8454371c51161ee803ea798
[]
no_license
dtmkeng/Project_EE
c4bed255fa6608f806bcd69fb74205fd3a81e79e
4ca53945eecc3cecbcc55216461b208b79b3471b
refs/heads/master
2021-05-13T13:33:58.458871
2018-01-08T16:50:32
2018-01-08T16:50:32
116,710,518
0
0
null
null
null
null
UTF-8
C++
false
false
2,140
ino
#include <WiFi.h> #include <IOXhop_FirebaseESP32.h> #include <time.h> // Config Firebase #define FIREBASE_HOST "esp32-ccar.firebaseio.com" #define FIREBASE_AUTH "q5iEL3edyyzhS4QVT7VGfJ8PHpzpfWTaUNlsVNrC" // Config connect WiFi #define WIFI_SSID "DevTech" #define WIFI_PASSWORD "Alonesnon0" // Config time int timezon...
[ "nongrace6654@gmail.com" ]
nongrace6654@gmail.com
3d71859c9a08b365e82e8d3d3db4ab97298e25e1
7b35b2c1bebe204c0087704933406aa6e99a9640
/torch/csrc/jit/tensorexpr/kernel.cpp
2284fc018c402547b81c9fa0f556ad0255a9d107
[ "BSD-2-Clause", "BSD-3-Clause", "LicenseRef-scancode-generic-cla", "BSL-1.0", "Apache-2.0" ]
permissive
zpao/pytorch
b25e3740394291f608bc4447f6ceaae67760f27c
c06d2afa9903573cf1afd39547d3afd4aa6fca98
refs/heads/master
2023-06-21T18:13:14.674430
2021-05-26T17:32:29
2021-05-26T17:33:32
177,882,461
1
0
null
2019-03-26T23:12:46
2019-03-26T23:12:46
null
UTF-8
C++
false
false
104,604
cpp
#include <c10/util/variant.h> #include <torch/csrc/jit/tensorexpr/kernel.h> #include <ATen/ExpandUtils.h> #include <ATen/TensorGeometry.h> #include <c10/util/string_utils.h> #include <torch/csrc/jit/jit_log.h> #include <torch/csrc/jit/passes/utils/subgraph_utils.h> #include <torch/csrc/jit/tensorexpr/analysis.h> #incl...
[ "facebook-github-bot@users.noreply.github.com" ]
facebook-github-bot@users.noreply.github.com
86b89e680e24f31c681f82a592f5d01f0ec5ba84
21f6d92b229d90b539a31e89644cc25281399b18
/Hmwk/Assignment 4/Indiv. Problems/Problem5/main.cpp
ced275c7693278171e7f6e0285d9a0d53c09206e
[]
no_license
mkvarner/mv2504740
51809b69766dbd15821d25c1ee55061bc7396664
a5f46e745e426900eab1b8b61fb44555bd3e29da
refs/heads/master
2016-09-10T15:48:36.083729
2014-07-31T20:31:00
2014-07-31T20:31:00
null
0
0
null
null
null
null
UTF-8
C++
false
false
806
cpp
/* * File: main.cpp * Author: Megan Varner * Created on July 9, 2014, 7:51 PM * Distance traveled */ #include <iostream> using namespace std; int main() { float distance, speed, time; cout << "Speed of the vehicle in miles per hour: "; cin >> speed; while(speed <= 0) { cout << "Speed of the ve...
[ "megan.varner63@gmail.com" ]
megan.varner63@gmail.com
4f4d10208daa3b19c0a09dfcb80354b78217487a
efa4f4c16892758f1e12c698d800980673316c7d
/Źródło.cpp
79fffe274a17bbedb15920b8f4e2333b1c6e8376
[]
no_license
pokojskamartyna/Search_word_in_another_word
dfd426fa09611f701f30c377e91d01c4d54be6ad
12837eedc652208e5131a6dc3ae22c180b934897
refs/heads/master
2020-03-23T18:44:36.305565
2018-07-22T20:47:42
2018-07-22T20:47:42
141,929,358
0
0
null
null
null
null
UTF-8
C++
false
false
678
cpp
#include <iostream> #include <string> #include <boost> using namespace std; using namespace boost; string pojedynczeWyrazy[19] = { "ein", "zwei", "drei", "vier", "fuenf", "sechs", "sieben", "acht", "neun", "zehn", "zwanzig", "und", "dreizig", "vierzig", "fuenfzig", "sechzig", "siebzig", "achtzig", "neunzig" }...
[ "noreply@github.com" ]
pokojskamartyna.noreply@github.com
ced0f90f2f27dc7fa29893ddfcd8832948beacc3
a553f3918d3ef1f2098794ecc0dfd212916eee78
/averageimage.cpp
254baf376fc1e321f676786c062dc0f681707d9a
[]
no_license
jendralhxr/clumon
151b8735d05dfceb51c7cd815c93ff1fc3f67e4c
742ba7c9affa8855ba3fd4b52221dc37f7016c34
refs/heads/master
2021-06-26T21:05:09.914513
2021-01-20T04:00:09
2021-01-20T04:00:09
73,871,629
0
0
null
null
null
null
UTF-8
C++
false
false
1,608
cpp
#include <iostream> #include <iostream> #include <iomanip> #include <fstream> #include <opencv2/opencv.hpp> #include <opencv2/core/core.hpp> #include <opencv2/highgui/highgui.hpp> #include <math.h> using namespace std; using namespace cv; ofstream logfile; char filename[256]; Mat image, temp; int ima...
[ "jendral.hxr@gmail.com" ]
jendral.hxr@gmail.com
5a0b0e26768f15b7db5ac79a0193da51474748e9
cbfb8553a5c990c79e184149e236e1fa3e8ba943
/Leetcode/Array/2564_SubstringXORQueries.cpp
7c91b1f28e3c4e59227400c44c1e14b5ae3d9c96
[]
no_license
DancingOnAir/LeetCode
09c0b8c428216302be02447b257e7b9ca44c741b
62d5a81f9a774599368a91050bcf83e4ffab8f50
refs/heads/master
2023-05-09T01:59:58.943716
2023-05-04T01:10:42
2023-05-04T01:10:42
93,221,941
2
1
null
null
null
null
UTF-8
C++
false
false
1,463
cpp
#include <iostream> #include <vector> #include <string> #include <unordered_map> using namespace std; class Solution { public: vector<vector<int>> substringXorQueries(string s, vector<vector<int>>& queries) { unordered_map<int, vector<int>> seen; for (int i = s.size() - 1; i >= 0; --i) { ...
[ "taotong1984@hotmail.com" ]
taotong1984@hotmail.com
370b91086e3515fc9727468d7be8e8c8bdcc1a10
6b2a8dd202fdce77c971c412717e305e1caaac51
/solutions_5706278382862336_0/C++/Etienne/main.cpp
82f7cae96fbbda5bee3c6283b428deb6eff6d422
[]
no_license
alexandraback/datacollection
0bc67a9ace00abbc843f4912562f3a064992e0e9
076a7bc7693f3abf07bfdbdac838cb4ef65ccfcf
refs/heads/master
2021-01-24T18:27:24.417992
2017-05-23T09:23:38
2017-05-23T09:23:38
84,313,442
2
4
null
null
null
null
UTF-8
C++
false
false
965
cpp
#include <iostream> #include <list> #include <algorithm> #include <vector> #include <string> #include <stack> using namespace std; void testCase() { long long p, q; cin >> p; cin.ignore(); cin >> q; if(q == 0) { cout << " impossible" << endl; return; } ...
[ "eewestman@gmail.com" ]
eewestman@gmail.com
729d2f9cd541a35fd8dfd652c541160b1edf79c8
a81bfc4ebf924828d89f353d033bb7d654a999bf
/Invitation/Changsha/A.cpp
522f29b5f461d24d42f8086f2f88b69e3ae9f605
[]
no_license
someoneAlready/Summer-Code
2ce3f7c270e8deb9d1a0ed566762983d58806b20
cc576fb0412fe78905ee741df7ca2fc9c1caa23d
refs/heads/master
2021-05-26T14:34:49.923499
2013-10-16T10:59:53
2013-10-16T10:59:53
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,475
cpp
#include <iostream> #include <algorithm> #include <vector> #include <queue> #include <stack> #include <cstdio> #include <cstdlib> #include <cstring> #include <cmath> #include <climits> #include <ctime> using namespace std; #define rep(i, n) for (int i=0; i<(n); ++i) #define repf(i, a, b) for (int i=(a); ...
[ "cgangee@gmail.com" ]
cgangee@gmail.com
0bf1dd8d5cc09ac7ed78b3f77248881925485480
6cc0c6af410b84fea59bd970dd7ff66990711090
/PAnDA.h
4b992a6ee89e006065c294b0784343c632c7ce44
[]
no_license
mhoopmann/panda-ms
c955541fbfda65f1dbbf94334b0debfaf55a0d66
4e400093b5d362d6f0909d23892242e84a1272d2
refs/heads/master
2021-01-10T21:00:10.061400
2015-04-23T18:40:27
2015-04-23T18:40:27
34,474,460
0
0
null
null
null
null
UTF-8
C++
false
false
1,121
h
//#pragma once #ifndef _PANDA_H #define _PANDA_H #include "stdafx.h" #include "sqlite3.h" #include "cKronik.h" #include "MSReader.h" #include "Spectrum.h" #include <vector> using namespace std; typedef struct PPID{ int charge; float firstRT; float lastRT; float intensity; double monoMass;...
[ "maccoss@5c5e9a1d-dd6e-c237-9e86-5b6b01bd2de3" ]
maccoss@5c5e9a1d-dd6e-c237-9e86-5b6b01bd2de3
1e345dae2c14c2779f7005778ecc893bd67353d4
62df53f1123102cdc26290fdec3e202130b5c25b
/source/XYO/NetUse/License.hpp
657f7fb4e5132d3734dfd9b7b70e4190efff663c
[ "MIT" ]
permissive
g-stefan/net-use
fa25dc56f0f5bb645e32a4f747bf12ef183a3288
857f939140aa193e3de704e2771420f5dd1b22d9
refs/heads/main
2023-07-23T19:26:44.978271
2023-06-08T12:23:14
2023-06-08T12:23:14
203,877,110
0
1
null
null
null
null
UTF-8
C++
false
false
501
hpp
// Net Use // Copyright (c) 2020-2023 Grigore Stefan <g_stefan@yahoo.com> // MIT License (MIT) <http://opensource.org/licenses/MIT> // SPDX-FileCopyrightText: 2020-2023 Grigore Stefan <g_stefan@yahoo.com> // SPDX-License-Identifier: MIT #ifndef XYO_NetUse_LICENSE_HPP #define XYO_NetUse_LICENSE_HPP #ifndef XY...
[ "g_stefan@yahoo.com" ]
g_stefan@yahoo.com