blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
6
201
content_id
stringlengths
40
40
detected_licenses
listlengths
0
26
license_type
stringclasses
2 values
repo_name
stringlengths
7
95
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
57 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
197k
639M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
11 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
34 values
src_encoding
stringclasses
18 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
11
9.86M
extension
stringclasses
27 values
content
stringlengths
11
9.86M
authors
listlengths
1
1
author
stringlengths
0
70
07893178797b2a59515d7cfbaa18d008397c6581
e7ec698e7153e8580ad19136a44fd60acc147836
/src/page/b_plus_tree_page.cpp
db886bbde517b60d69967bfff19498c6fb2f2329
[ "MIT" ]
permissive
awfeequdng/DatabaseBackendEngine
f641532b14107eb217404a5d7f9b10401fb5aafd
9cb22617a8de14ea6e6136614e6d91842aa06984
refs/heads/master
2021-09-24T11:02:39.031715
2018-10-07T01:23:03
2018-10-07T01:23:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,666
cpp
/** * b_plus_tree_page.cpp */ #include "page/b_plus_tree_page.h" namespace cmudb { /* * Helper methods to get/set page type * Page type enum class is defined in b_plus_tree_page.h */ bool BPlusTreePage::IsLeafPage() const { return (page_type_ == IndexPageType::LEAF_PAGE); } bool BPlusTreePage::IsRootPage()...
[ "xiayingp@gmail.com" ]
xiayingp@gmail.com
3f4ac0c200521f5b1e24aa445c87209ac1240086
de362ea0a23543fb0a39a9732be3f91958c9e4f9
/UnderGraduate/bin/debug/moc_DioPortUI.cpp
8b697a8e6517374fb9346061470116c9c644cff9
[]
no_license
looklucas/Control
341aa15d369928a68be932700a781e8cc8c85a37
751657b23d4f4ae73ddc8276070ba33bd9724db2
refs/heads/master
2022-12-09T21:04:24.786472
2019-06-19T06:43:58
2019-06-19T06:43:58
166,159,719
0
0
null
null
null
null
UTF-8
C++
false
false
4,350
cpp
/**************************************************************************** ** Meta object code from reading C++ file 'DioPortUI.h' ** ** Created by: The Qt Meta Object Compiler version 67 (Qt 5.11.2) ** ** WARNING! All changes made in this file will be lost! **********************************************************...
[ "daiqizheng@sjtu.edu.cn" ]
daiqizheng@sjtu.edu.cn
b27fdb7cae46d64dae857cc4f5cf6c0be0b634ab
56ace8049811f81bb3422c9ef8dffabd9b880ebd
/semester1/hw02/hw02_task02/hw.02_task.02.cpp
3452cf0dd559af1528f6190570c0613cd2e788b6
[]
no_license
ramntry/homeworks
eebb83b1d96a043e0024f9f9a9a5c488b9f48baf
09a211b0008d95aa877b0c1d83120190ea1cb0fc
refs/heads/master
2016-09-10T02:14:49.395055
2013-05-26T20:19:13
2013-05-26T20:19:13
2,675,593
1
0
null
null
null
null
UTF-8
C++
false
false
855
cpp
// author: Roman Tereshin // email: roman.tereshin@student.spbu.ru // hw 02, task 02 // Реализовать подсчет возведение в целую степень // (с логарифмической сложностью алгоритма) // [time start] 21:19 21.09.11 // [time estimate] 00:15 00 #include <iostream> using namespace std; template <class T> T pow(T base, ...
[ "ramntry@gmail.com" ]
ramntry@gmail.com
9ce36c4026a2d20e8227324a8836982c71f80491
b8969f45075c86526010d7be0c3129b66baed94e
/Adder.h
46cdc16eee0b693416fe1fe7db7941de783b85e8
[]
no_license
Paracefas/interactor-model
3d34f19ede203c7171cc6bfdfdcdf15689f86596
d1a40320109cc31ab57c3be0ab1047db7d79af57
refs/heads/master
2020-08-07T11:56:42.299962
2019-10-11T02:11:24
2019-10-11T02:11:24
213,440,951
0
0
null
null
null
null
UTF-8
C++
false
false
103
h
#pragma once class Adder { int m_count; public: Adder(); int Add(int); int GetCount(); };
[ "emanuelclur2001@outlook.com" ]
emanuelclur2001@outlook.com
ba3e2faf1e9da7916bac5c828ad40c5cfde34cab
5b3bf81b22f4eb78a1d9e801b2d1d6a48509a236
/codeforces/global_round_2/fret.cc
a6e771b030f66a1deb7cbee1711ba9a99f1b46fd
[]
no_license
okoks9011/problem_solving
42a0843cfdf58846090dff1a2762b6e02362d068
e86d86bb5e3856fcaaa5e20fe19194871d3981ca
refs/heads/master
2023-01-21T19:06:14.143000
2023-01-08T17:45:16
2023-01-08T17:45:16
141,427,667
1
1
null
null
null
null
UTF-8
C++
false
false
1,090
cc
#include <iostream> #include <vector> #include <algorithm> using namespace std; long long CountUnique(long long w, const vector<long long>& d, const vector<long long>& acc) { auto p = lower_bound(d.begin(), d.end(), w) - d.begin() - 1; long long result = 0; if (...
[ "okoks9011@gmail.com" ]
okoks9011@gmail.com
6c3e29c9a5be97924506f16a3dcc1d228768ebc4
1d26a2a5761a36279c293403a839536b6de911b7
/Crow/src/Platform/PlatformAPI.cpp
dd2f01a27c83360e6fe68be0d5cd915b262f82de
[ "Apache-2.0" ]
permissive
quesswho/Crow
919f97a1ff6a2d5da1d27c774c7a50672ad9ba01
c57df8fe6dc323acd2c5e7b14b0b65d34b4a6e94
refs/heads/master
2020-07-09T17:23:37.081282
2020-05-02T22:22:23
2020-05-02T22:22:23
204,032,891
0
0
null
null
null
null
UTF-8
C++
false
false
1,254
cpp
#include "PlatformAPI.h" #include "Crow/Application.h" namespace Crow { namespace Platform { ApplicationAPI PlatformAPI::s_ApplicationAPI; void PlatformAPI::ApplicationAPIInit(ApplicationAPI appApi) { switch(appApi) { case ApplicationAPI::GLFW: s_ApplicationAPI = ApplicationAPI::GLFW; GLF...
[ "sebastianmiles@live.com" ]
sebastianmiles@live.com
5385d4c596efe1410a4e9fe0853e710b39b0b0f4
ce5d5aa995e61c1df2c303e003ce1b882680d9a4
/vm.cpp
852feb02deca12c038f64d0669d447b86b71707e
[]
no_license
matiTechno/ic
770ccbe1855a915124f64a34086a209b27809320
0312a29eda1ebef6ef70c1a6e527c06afbe6528e
refs/heads/master
2020-09-08T17:59:22.247070
2020-02-03T15:28:59
2020-02-03T15:28:59
221,203,143
1
0
null
null
null
null
UTF-8
C++
false
false
15,667
cpp
#include "ic_impl.h" #define IC_STACK_SIZE (1024 * 1024) void ic_vm_init(ic_vm& vm) { vm.stack = (ic_data*)malloc(IC_STACK_SIZE * sizeof(ic_data)); } void ic_vm_free(ic_vm& vm) { free(vm.stack); } void ic_vm::push() { ++sp; assert(sp <= stack + IC_STACK_SIZE); } void ic_vm::push_many(int size) { ...
[ "mateusz.macieja8@gmail.com" ]
mateusz.macieja8@gmail.com
23ca988c0b8a51164b47758cd682c0c6d3dfc63d
b5ab8ab0eb0585ce4ed3650dfb0fdee2934ee0d8
/TMCDriver.h
6f2ffffd588756d6417ef4c7945561f26049702a
[]
no_license
wwkkww1983/Stretcher-Unit
6564359c21936a5336863231bf9e569f5f1b438c
365c1333d28b04bb35b67c320177e50d79473ff2
refs/heads/master
2022-06-12T03:28:08.183167
2020-05-04T05:49:54
2020-05-04T05:49:54
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,699
h
#ifndef TMCDRIVER_H_ #define TMCDRIVER_H_ class TMC2660 { public: void init(); //DRVCONF void slopeControlHigh(); void slopeControlLow(); void motorShortTimer(); //TS2G short to ground timer. (turns off power mosfets) void stepMode(); //RDSEL 0: step and dir i...
[ "zekeincapas@gmail.com" ]
zekeincapas@gmail.com
7d1ed56a00248f1c397d15636ff95441952686df
5e007aa448d05ef39b1c7731a92be2075df09801
/Test/UnitMovementFilterTest.cpp
9fdfca8b118517d89a09377f4324f853f0847721
[]
no_license
AlvaroChambi/ProjectAI
04a881047a1a7feabdd4850b09318c676e1686f1
b5a31d358d91a071ac857afb0c18ce25eb985687
refs/heads/develop
2020-04-03T23:31:43.567379
2016-09-19T10:03:14
2016-09-19T10:03:14
32,091,207
2
0
null
2016-09-12T19:40:59
2015-03-12T17:29:49
C++
UTF-8
C++
false
false
472
cpp
// // UnitMovementFilterTest.cpp // ProjectWar // // Created by Alvaro Chambi Campos on 8/6/16. // Copyright © 2016 Alvaro Chambi Campos. All rights reserved. // #include "gtest/gtest.h" #include "UnitFilter.h" #include "MockIterator.h" #include "MockMap.h" class UnitMovementFilterTest : public ::testing::Test {...
[ "alvaro.chambi.campos@gmail.com" ]
alvaro.chambi.campos@gmail.com
349ef8d8bb00fe3e56f0f7d5e8040e80c16d903d
de7e771699065ec21a340ada1060a3cf0bec3091
/demo/src/java/org/apache/lucene/demo/facet/SimpleSortedSetFacetsExample.cpp
fb5961262ce8f23262fef9fd8ca2c6810e9f0cf9
[]
no_license
sraihan73/Lucene-
0d7290bacba05c33b8d5762e0a2a30c1ec8cf110
1fe2b48428dcbd1feb3e10202ec991a5ca0d54f3
refs/heads/master
2020-03-31T07:23:46.505891
2018-12-08T14:57:54
2018-12-08T14:57:54
152,020,180
7
0
null
null
null
null
UTF-8
C++
false
false
6,112
cpp
using namespace std; #include "SimpleSortedSetFacetsExample.h" namespace org::apache::lucene::demo::facet { using WhitespaceAnalyzer = org::apache::lucene::analysis::core::WhitespaceAnalyzer; using Document = org::apache::lucene::document::Document; using DrillDownQuery = org::apache::lucene::facet::DrillDownQuer...
[ "smamunr@fedora.localdomain" ]
smamunr@fedora.localdomain
be6e8b925373f4db10b5d2e8116c68e67e3366b8
ab7ec9eab24f5a1ceeb33220ecaca36595ae5646
/CS216PA3 with bonus/Project3/WordLadder.h
56299551d3a4c4866c1b1cadf9533c5f2141e30b
[]
no_license
hacker41601/special-happiness
ca0cb8cbe88fdec584197118faa90f89a2ff1ab2
9cc36e6b76aed1f0c1689a74f95d7a7975523f4f
refs/heads/master
2022-05-28T13:14:39.998549
2020-05-01T21:25:44
2020-05-01T21:25:44
260,560,514
0
0
null
null
null
null
UTF-8
C++
false
false
1,158
h
/* * File: WordLadder.h * Course: CS216-003 * Project: Project 3 * Purpose: Declaration of WordLadder class */ #ifndef WORDLADDER_H #define WORDLADDER_H #include "Graph.h" #include <vector> #include <stack> #include <string> using namespace std; class WordLadder{ public: // default constructor WordLadder(); ...
[ "noreply@github.com" ]
noreply@github.com
3f56224b3e8961519cc5fa891cb19209e510b2cc
0f7d29777eee0ddd40a563b77df2a77d8a7aea3b
/src/Wallet.hpp
895f86e2a3ca20c3fe7c6c948bd28bf193aa17c9
[ "MIT" ]
permissive
rvillegasm/blocky
f5827c4604d3fb330ec27658d08e0d4e6c86e8df
ca12c4ca7197b7d03d7f360003c4bc1b87890391
refs/heads/main
2023-07-11T13:44:43.423524
2021-08-16T01:56:15
2021-08-16T01:56:15
392,487,660
0
0
null
null
null
null
UTF-8
C++
false
false
307
hpp
#pragma once #include "utils/SignatureKeypair.hpp" namespace blocky { class Wallet { private: utils::SignatureKeypair m_keypair = {}; public: Wallet() = default; [[nodiscard]] const utils::SignatureKeypair &getKeypair() const { return m_keypair; } }; }
[ "rafa.villegas.michel@gmail.com" ]
rafa.villegas.michel@gmail.com
39d605c2caa1c272705289bd86a3dd7e0a4b7c2b
b9264aa2552272b19ca393ba818f9dcb8d91da10
/hashmap/lib/seqan3/test/unit/core/algorithm/algorithm_result_generator_range_test.cpp
d106ca551f52a6936cfaea989d40484cf9994252
[ "BSD-3-Clause", "LicenseRef-scancode-free-unknown", "LicenseRef-scancode-public-domain", "CC0-1.0", "CC-BY-4.0", "MIT" ]
permissive
eaasna/low-memory-prefilter
c29b3aeb76f70afc4f26da3d9f063b0bc2e251e0
efa20dc8a95ce688d2a9d08773d120dff4cccbb6
refs/heads/master
2023-07-04T16:45:05.817237
2021-08-12T12:01:11
2021-08-12T12:01:11
383,427,746
0
0
BSD-3-Clause
2021-07-06T13:24:31
2021-07-06T10:22:54
C++
UTF-8
C++
false
false
4,490
cpp
// ----------------------------------------------------------------------------------------------------- // Copyright (c) 2006-2020, Knut Reinert & Freie Universität Berlin // Copyright (c) 2016-2020, Knut Reinert & MPI für molekulare Genetik // This file may be used, modified and/or redistributed under the terms of th...
[ "evelin.aasna@fu-berlin.de" ]
evelin.aasna@fu-berlin.de
6a8b5e9fcff0205d239ad6e1758f8118f966ccc5
2357c9b2e8f30801b45530dbd2f2f54449827a06
/Bento/src/bento/core/Entity.cpp
fde22c74c88fc11f2d2611b17056cc088b1fb4d3
[]
no_license
jonathanrpace/BentoCPP
9c9d7cdfd64918fe518d711f9fa9374652c428f0
4e81db3c6c64e6712ec546685f6adba39b64c4c3
refs/heads/master
2021-01-17T03:05:10.376561
2018-02-16T08:49:55
2018-02-16T08:49:55
43,240,519
0
0
null
null
null
null
UTF-8
C++
false
false
120
cpp
#include "Entity.h" namespace bento { Entity::Entity(std::string _name) : SceneObject(_name, typeid(Entity)) { } }
[ "jonathanrpace@hotmail.com" ]
jonathanrpace@hotmail.com
509a47bbffeea4e7a2ccc2c8024a22ab3de267da
78e649c37d6ed6635d480fc81d94e084f8d9c1cb
/CodingInterviewProblems/StringsAndArrays_Problem9.hpp
a5c360f6f5e20fd22a4633bb009873aaaa4a3e22
[]
no_license
Bukenberger/CodingInterviewProblems
eb08fb3d564485250daf007799127911d87fb050
d11366029f80d88a7e48a43c7ab463d5566cec26
refs/heads/main
2023-02-05T23:56:40.502318
2020-12-21T06:55:25
2020-12-21T06:55:25
322,975,541
0
1
null
null
null
null
UTF-8
C++
false
false
606
hpp
/* * @file StringsAndArrays_Problem9.hpp * @date 2020-12-19 * @author Teran Bukenberger * * @brief Contains function prototypes for the ninth problem of the Strings and Arrays category */ #ifndef __STRINGS_AND_ARRAYS_PROBLEM_9_HPP__ #define __STRINGS_AND_ARRAYS_PROBLEM_9_HPP__ #include <string> #include "...
[ "teranbukenberger@gmail.com" ]
teranbukenberger@gmail.com
3db51f7dc82ccb43de5e403556b26ac23bd1fc91
18c5b07a6d4f430eefa1fd12376d66050c22df74
/moc_filelineedit.cpp
e3ced78e57932e47fa0d5bf6caed44552f30a645
[]
no_license
KingSann/Project_lemon
921f13fead3b9f810643dd292b2c1eeeae04a483
21b7b8353d24cd431524d849c71f1c29bc595918
refs/heads/master
2020-03-20T19:55:42.187457
2018-07-10T00:59:14
2018-07-10T00:59:14
137,661,349
0
0
null
2018-06-17T14:32:08
2018-06-17T14:32:08
null
UTF-8
C++
false
false
3,416
cpp
/**************************************************************************** ** Meta object code from reading C++ file 'filelineedit.h' ** ** Created by: The Qt Meta Object Compiler version 67 (Qt 5.11.0) ** ** WARNING! All changes made in this file will be lost! *******************************************************...
[ "KingSann@foxmail.com" ]
KingSann@foxmail.com
2c6839dd118adef3ffd678da6f0cba172666009e
d1b2b8edcc725770488068bfa47baede1da7058c
/5 dynamic_programming/1 0-1_knapsack/4 Minimum_sum_partition/Min_diff_partition_subset.cpp
90bf6050ea5bd4aa4b12951cdc15b007b9e64488
[]
no_license
shubhamg199630/coding_interview_course
dbe060a2f33e21f3c7cbaeeff7571c80358aa2ea
6f06438758e87ee0e6c9d70a5b5e2d2c2aa5c2e5
refs/heads/main
2023-06-08T08:51:59.173107
2021-06-19T19:56:46
2021-06-19T19:56:46
326,496,520
0
1
null
null
null
null
UTF-8
C++
false
false
1,063
cpp
#include<bits/stdc++.h> using namespace std; bool dp[1001][1001]; bool subset_sum(int arr[], int n ,int sum) { for (int i=1;i<=n;i++) { for (int j=1;j<=sum;j++) { if(arr[i-1]<=j) dp[i][j]=dp[i-1][j]||dp[i-1][j-arr[i-1]]; else dp[i][j]=dp[i-1][j]; } } return dp[n][sum]; } void intialization_of_...
[ "shubhamg199630@gmail.com" ]
shubhamg199630@gmail.com
86c0dc1b98d4c8e072495a2448e4983d334ef9a8
1942a0d16bd48962e72aa21fad8d034fa9521a6c
/aws-cpp-sdk-cognito-sync/include/aws/cognito-sync/model/BulkPublishRequest.h
c51aeb5773ee4263ab7e229fae4c1b05d35765ff
[ "Apache-2.0", "JSON", "MIT" ]
permissive
yecol/aws-sdk-cpp
1aff09a21cfe618e272c2c06d358cfa0fb07cecf
0b1ea31e593d23b5db49ee39d0a11e5b98ab991e
refs/heads/master
2021-01-20T02:53:53.557861
2018-02-11T11:14:58
2018-02-11T11:14:58
83,822,910
0
1
null
2017-03-03T17:17:00
2017-03-03T17:17:00
null
UTF-8
C++
false
false
3,399
h
/* * Copyright 2010-2016 Amazon.com, Inc. or its affiliates. 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. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" fil...
[ "henso@amazon.com" ]
henso@amazon.com
9f9a20bd2f60ecddec11a7fa9f97a846ca8725cc
f81b774e5306ac01d2c6c1289d9e01b5264aae70
/content/common/service_manager/service_manager_connection_impl.cc
d1cad99be3a53640d5d035b3c28f9be9b805887f
[ "BSD-3-Clause" ]
permissive
waaberi/chromium
a4015160d8460233b33fe1304e8fd9960a3650a9
6549065bd785179608f7b8828da403f3ca5f7aab
refs/heads/master
2022-12-13T03:09:16.887475
2020-09-05T20:29:36
2020-09-05T20:29:36
293,153,821
1
1
BSD-3-Clause
2020-09-05T21:02:50
2020-09-05T21:02:49
null
UTF-8
C++
false
false
13,787
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. #include "content/common/service_manager/service_manager_connection_impl.h" #include <map> #include <queue> #include <utility> #include <vector> #includ...
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
e877327bf0027b5ad78b8bb6e647a28b55d12d77
09d9b50726c2e5cdc768c57930a84edc984d2a6e
/CSACADEMY/CS_round_55_A.cpp
3c7d0f96d6d644d351201e209b221063bfbc42a4
[]
no_license
omar-sharif03/Competitive-Programming
86b4e99f16a6711131d503eb8e99889daa92b53d
c8bc015af372eeb328c572d16038d0d0aac6bb6a
refs/heads/master
2022-11-15T08:22:08.474648
2020-07-15T12:30:53
2020-07-15T12:30:53
279,789,803
0
0
null
null
null
null
UTF-8
C++
false
false
343
cpp
#include<bits/stdc++.h> using namespace std; int room[110]; int main() { int n,m; cin>>n>>m; for(int i=1;i<=m;i++) cin>>room[i]; int a,b,c; for(int i=1;i<=n;i++){ cin>>a>>b; c=0; for(int j=1;j<=m;j++){ if(room[j]>=a and room[j]<=b)c++; } ...
[ "omar.sharif1303@gmail.com" ]
omar.sharif1303@gmail.com
6a261b087866665c9715f5e1aa111337c608d222
dc603c5e4b8c05b319359b6588e2eadbe3a0f745
/simple_navigation_goals/src/point_b_navigation_goal.cpp
facf63b40930ac11dd957718728e11f3303cd3a5
[]
no_license
japerezg86/warehouse_navigation
ebf01515085a56b57eb301f53d6882fa41c5a794
3c5100d80e361643255a77f59c1f0a2c37f1d83b
refs/heads/main
2023-04-18T15:12:16.905864
2021-05-02T17:32:10
2021-05-02T17:32:10
363,567,082
0
0
null
null
null
null
UTF-8
C++
false
false
1,498
cpp
#include <ros/ros.h> #include <move_base_msgs/MoveBaseAction.h> #include <actionlib/client/simple_action_client.h> using namespace std; typedef actionlib::SimpleActionClient<move_base_msgs::MoveBaseAction> MoveBaseClient; int main(int argc, char** argv){ ros::init(argc, argv, "point_b_navigation_goal"); //tell ...
[ "japerezg86@yahoo.com" ]
japerezg86@yahoo.com
19ed2e659710138c2f4d825a7a8f594a2d4e7b3a
6618549c2c3d1088c95532f075a77c222e0605d4
/trunk/angry_bus/Node.h
7db1000c49c46ca25ba556892d5564a060455351
[]
no_license
cpzhang/bus
56ba89eb34bbcc1eb80c4db3691f08b7e2e05ad8
705ef7d6145f974b707c1fe843764a4c39207dd5
refs/heads/master
2016-09-11T07:52:05.859263
2012-02-22T00:37:52
2012-02-22T00:37:52
2,634,123
0
0
null
null
null
null
UTF-8
C++
false
false
8,460
h
#ifndef _Node_ #define _Node_ #include <vector> #include <string> #include "Vector3.h" #include "Entity.h" #include "ITouch.h" enum eNodeType { eNodeType_Normal, eNodeType_Transformation, eNodeType_Button, eNodeType_Size, }; template <class T> class Node: public ITouch { public: Node(const std::str...
[ "297191409@qq.com" ]
297191409@qq.com
af3ace7b92c73c5c73d47f92ebb17e875b83829b
fb7efe44f4d9f30d623f880d0eb620f3a81f0fbd
/net/quic/core/frames/quic_padding_frame.h
93fb990c451570b9d9ba6418ee8b116de20dd758
[ "BSD-3-Clause" ]
permissive
wzyy2/chromium-browser
2644b0daf58f8b3caee8a6c09a2b448b2dfe059c
eb905f00a0f7e141e8d6c89be8fb26192a88c4b7
refs/heads/master
2022-11-23T20:25:08.120045
2018-01-16T06:41:26
2018-01-16T06:41:26
117,618,467
3
2
BSD-3-Clause
2022-11-20T22:03:57
2018-01-16T02:09:10
null
UTF-8
C++
false
false
939
h
// Copyright (c) 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. #ifndef NET_QUIC_CORE_FRAMES_QUIC_PADDING_FRAME_H_ #define NET_QUIC_CORE_FRAMES_QUIC_PADDING_FRAME_H_ #include <cstdint> #include <ostream> #include...
[ "jacob-chen@iotwrt.com" ]
jacob-chen@iotwrt.com
63c6f0c370760afa20e07f196694aebb86cf70f4
1a7b2722de0092fbee548d9d15649438e95e178c
/build-radar24-Desktop-Release/moc_qcustomplot.cpp
704e12a0760c4833bd9c3f7e1693be86028e6cab
[]
no_license
kimphg/rasPi
f82145fc76d7b71a91bcf0e20d185db14fe2e7c5
f16ba38e57398f9da44cad7716a8f392244926ea
refs/heads/master
2021-07-13T19:55:14.976334
2020-10-30T13:54:51
2020-10-30T13:54:51
74,934,939
0
0
null
null
null
null
UTF-8
C++
false
false
240,534
cpp
/**************************************************************************** ** Meta object code from reading C++ file 'qcustomplot.h' ** ** Created by: The Qt Meta Object Compiler version 67 (Qt 5.11.3) ** ** WARNING! All changes made in this file will be lost! ********************************************************...
[ "pkp013@gmail.com" ]
pkp013@gmail.com
8d1c0028a2547aa0f52df101a09379c3f8aa0cc2
f7aadc17e9dd13d4d5bc27cd3bd99c1f6c1e362c
/source/server/api_listener_impl.h
2e260666a8f19e1279a5ccf4b3a42136364972ce
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
lizan/envoy
c185b7658f685c0ed922e8c47292679bc3d04ecd
eb28b196a3fb82e98bdf349f503c80aa7e4c8c53
refs/heads/master
2023-03-16T21:27:22.454259
2023-03-11T00:02:52
2023-03-11T00:02:52
76,685,528
2
3
Apache-2.0
2020-10-24T07:36:03
2016-12-16T21:03:55
C++
UTF-8
C++
false
false
9,854
h
#pragma once #include <memory> #include <ostream> #include "envoy/config/core/v3/base.pb.h" #include "envoy/config/listener/v3/listener.pb.h" #include "envoy/network/connection.h" #include "envoy/network/filter.h" #include "envoy/network/socket.h" #include "envoy/server/api_listener.h" #include "envoy/server/filter_c...
[ "noreply@github.com" ]
noreply@github.com
1fa82df89068db26adb7718d7a77a5a882480b65
0400f3ae3051b5e34872e657e9260c0c6784d8d4
/Assignment 2/HW2PR2.cpp
eb60684dadd5aeafaa237414f20960ff88c68041
[]
no_license
pionoor/CSCE121
d4341b870db821214e8694aa8095634bd66d10ff
1eb8d4ebbc2a3145974459714f0b7498e9c52e45
refs/heads/master
2021-01-20T02:20:31.911785
2015-05-20T01:57:00
2015-05-20T01:57:00
35,919,690
0
0
null
null
null
null
UTF-8
C++
false
false
871
cpp
// // main.cpp // HW2PR1 // // Created by Noor Thabit on 2/7/13. // Copyright (c) 2013 Noor Thabit. All rights reserved. // #include <iostream> #include <math.h> using namespace std; double my_sqrt_1(double n) //creat a function accept double and return adouble { double x=n-1; double result = 1 + (1/2)*pow...
[ "pionoor@tamu.edu" ]
pionoor@tamu.edu
6dafb1709f149638caa18a42e0134cb622c96851
b5e8910a20789df489b4c2dff68f1a4f98c91d52
/SingleCoreLib/scl/UniqueId.h
336e4bd7d599ca9ec0ab82aa5e15ad488708c41a
[]
no_license
acoross/ComponentModel2
152fd27e3865ed833f7b99e660eb09f2a5a9d7c3
c8f182620dba3120b38c7d4af7de6beaac4a1a78
refs/heads/master
2021-01-23T00:53:18.470496
2017-06-16T16:41:23
2017-06-16T16:41:23
85,846,051
0
0
null
null
null
null
UTF-8
C++
false
false
180
h
#pragma once namespace scl { template <class T, class Siz = int> class UniqueId { public: static Siz Generate() { static Siz uid = 0; ++uid; return uid; } }; }
[ "acoross@gmail.com" ]
acoross@gmail.com
9286a55f04f0e2e8f4c7bd511e02f4c52c99f74f
f5ec6ba1baf301e08728d8892d2a35e59f20b718
/src/talkcoin-wallet.cpp
d5171eff6dda3a7141fd780e2725c112c6964635
[ "MIT" ]
permissive
bitcointalkcoin/bitcointalkcoin
26434eb812e9cedaf174fcafe0409fc4ed5a4c76
c9112c3b8ce05ee78fe69822035cc3d8bdbca903
refs/heads/master
2020-06-26T14:37:43.515919
2019-12-02T17:46:15
2019-12-02T17:46:15
199,659,333
0
1
MIT
2019-12-02T17:46:17
2019-07-30T13:41:31
C++
UTF-8
C++
false
false
4,635
cpp
// Copyright (c) 2016-2018 The Talkcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #if defined(HAVE_CONFIG_H) #include <config/talkcoin-config.h> #endif #include <chainparams.h> #include <chainparamsbase.h>...
[ "blockmecha@gmail.com" ]
blockmecha@gmail.com
11b96deb8736709de660495f1f98f3916dc4f88b
0365db07f7469678afaf922542176a3b73357736
/host/analyze_mjpeg.cpp
5b939743ec30767e6dcceb0521876dabed9e436f
[ "MIT" ]
permissive
zk1132/stm32f429idiscovery-usb-screen
9b26f6578d99f96ffb350bf7d283ef394996fbae
777603e3e0d752bc0eea0764eeb72e21c3ba6e9a
refs/heads/master
2021-01-12T04:34:22.498160
2016-10-02T23:18:02
2016-10-02T23:18:02
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,819
cpp
#include "stdafx.h" #include "jpeg.h" #include "stm32f4_discovery_usb_screen.h" // astyle --pad-oper --indent=spaces=2 --pad-header analyze_mjpeg.cpp using namespace std; #include <boost/algorithm/string.hpp> using namespace std; using namespace boost; using namespace boost::algorithm; using boost::asio::ip::tcp; u...
[ "rogerdahl@dahlsys.com" ]
rogerdahl@dahlsys.com
9fb76c7d3cf96b9fe20d9e1e8f2a10f0c9e29aeb
003675a2e2be3f835efd723626f0ee6d862e914f
/Codeforces/A/466A.cpp
5584cc9644565bcc0e8ffa5b49cc9349b86b37b0
[]
no_license
AkibShahrear/Competitive-Programming
6f4b26af1ae011d3cf45885dc86c4f64fca4334d
7fba94f669881dd7e7cb63b264c288c380c5d544
refs/heads/main
2023-08-12T16:57:41.020418
2021-10-18T19:49:44
2021-10-18T19:49:44
323,955,265
0
0
null
2020-12-23T17:17:59
2020-12-23T16:49:51
null
UTF-8
C++
false
false
404
cpp
#include<bits/stdc++.h> using namespace std; int main() { int n,m,a,b,p=0,k; cin>>n>>m>>a>>b; k=b/m; if(k==a) { cout<<n*a; } else if(k<a) { int j=(n/m)*b; int c=n%m; int l=c*a; if(l>b){ cout<<j+b; } else{ ...
[ "noreply@github.com" ]
noreply@github.com
5b76d2b6dbb8cd9ce3d23aee21717d75aa134317
d5343dc299a6185326f9af2aab69987a95108633
/src/channel_access/server/cas/convert.hpp
d210e9998ad4ab23b0d2f66761bc0785012b78c4
[ "MIT" ]
permissive
delta-accelerator/channel_access.server
e90b4017954b47f4d57fe78e32de29742c81df74
d5f0456bc37bbe80b9d105e84f9dc43a6b438b78
refs/heads/master
2023-02-27T19:41:12.386811
2022-08-16T12:51:54
2022-08-16T12:51:54
189,587,814
0
0
null
null
null
null
UTF-8
C++
false
false
1,108
hpp
#ifndef INCLUDE_GUARD_120C2201_BD9B_465C_B2BD_70FE4AA4A6BD #define INCLUDE_GUARD_120C2201_BD9B_465C_B2BD_70FE4AA4A6BD #include <Python.h> #include <casdef.h> namespace cas { /** Convert ExistsResponse enum value to pvExistsReturn value */ bool to_exist_return(PyObject* value, pvExistReturn& result); /** Convert A...
[ "andre.althaus@tu-dortmund.de" ]
andre.althaus@tu-dortmund.de
3df84a4828343df699e6734c430745b208531f78
ac0eac58bfff89e236ed152ba8853c672dfa0f17
/Laborator 2 - Gramatici/Gramatica.h
d09a73cad490b341fbbf35708df0640d61382f19
[]
no_license
robert-adrian99/FormalLanguagesAndCompilers
6e58b6806b73940fc444e6c86ddaf060a351a17c
f5d68906b5b7b6050a3561d398d053d2fe434c62
refs/heads/master
2022-04-12T12:24:03.273663
2020-03-12T18:31:37
2020-03-12T18:31:37
246,121,823
0
1
null
null
null
null
UTF-8
C++
false
false
480
h
#pragma once #include <iostream> #include <fstream> #include <vector> #include <random> #include <time.h> class Gramatica { public: Gramatica(); void citire(); void afisare(); int verificare(); void generare(bool optiune); private: void productiiAplicabile(const std::string& cuvantGenerat, std::vector<int>& pro...
[ "robertbucur2@gmail.com" ]
robertbucur2@gmail.com
bca3e7f30280e8392253449bc123dfa1f5c6a5bf
dd9ce079241a72419ba13db821f352df90c561d2
/Motor.cpp
04eacefff1e00d3ff92e361df5ed9b2521996301
[ "MIT" ]
permissive
Darival/hbridge-motor
f872e7ca288e7514afe13606fc81a503c56bad8b
5bed29577a84c55126ddac7af76b31e8ad73c094
refs/heads/master
2021-07-17T11:57:29.554868
2017-10-25T06:18:54
2017-10-25T06:18:54
108,227,641
1
0
null
null
null
null
UTF-8
C++
false
false
772
cpp
#include "Arduino.h" #include "Motor.h" Motor::Motor(int pinA, int pinB) { pinMode(pinA, OUTPUT); pinMode(pinB, OUTPUT); _pinA = pinA; _pinB = pinB; digitalWrite(_pinA, LOW); digitalWrite(_pinB, LOW); } void Motor::brake(){ digitalWrite(_pinA, LOW); digitalWrite(_pinB, LOW); } void Mot...
[ "darivalrcv@gmail.com" ]
darivalrcv@gmail.com
ab4e53cdf74faf9c7fdce9f69bfb261d7a987072
fea33fec45835f73155cba1b1ca8756115eafd50
/minicern/zebra/bknmparq.inc
095377719135b044e3b1b18094161049ce879b75
[]
no_license
vmc-project/geant3
f95a3e6451ec778d28962be8648af4d02a315f1e
0feb951e5504e2677e4d9919d50ed4497f3fcabf
refs/heads/master
2023-04-30T05:56:35.048796
2023-02-09T13:17:20
2023-02-09T13:17:20
84,311,188
8
11
null
2023-04-24T12:07:53
2017-03-08T11:03:56
Fortran
UTF-8
C++
false
false
497
inc
* * $Id$ * * $Log: bknmparq.inc,v $ * Revision 1.1.1.1 2002/06/16 15:18:49 hristov * Separate distribution of Geant3 * * Revision 1.1.1.1 1999/05/18 15:55:27 fca * AliRoot sources * * Revision 1.1.1.1 1996/03/06 10:46:56 mclareni * Zebra * * #ifndef CERNLIB_ZEBRA_BKNMPARQ_INC #define CERNLIB_ZEBRA_BKNMPARQ_INC *...
[ "Fons.Rademakers@cern.ch" ]
Fons.Rademakers@cern.ch
dacc4d59b7a4da1b448c053aa83a016c632f9baa
1e987bd8b8be0dc1c139fa6bf92e8229eb51da27
/maker/arduino/interface/digital_value_hardware.cc
efd17cd26b4d3fbfa6a3ceda528374ff7aa1c58d
[]
no_license
tszdanger/phd
c97091b4f1d7712a836f0c8e3c6f819d53bd0dd5
aab7f16bd1f3546f81e349fc6e2325fb17beb851
refs/heads/master
2023-01-01T00:54:20.136122
2020-10-21T18:07:42
2020-10-21T18:09:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
267
cc
#include <Arduino.h> #include <Arduino_interface_digital_value.h> namespace arduino { /* static */ DigitalValue DigitalValue::High() { return DigitalValue(HIGH); } /* static */ DigitalValue DigitalValue::Low() { return DigitalValue(LOW); } } // namespace arduino
[ "chrisc.101@gmail.com" ]
chrisc.101@gmail.com
43ae3189c32b6ac4a708fbbed9d7b9996ab7090a
a9c2e831585f1e66e9619e181743c1b99926f8c7
/ImageCropTest.cpp
f75d14be2ee3015efc75460fa650e040a0e755f6
[]
no_license
header-file/2D_Portfolio_6th
213186880744651427880716e98caecdbd8a5cb0
f746894446cd12d8d7d874c312204431276f3f0a
refs/heads/master
2020-06-02T02:22:43.816665
2019-06-09T12:38:01
2019-06-09T12:38:01
191,005,024
0
0
null
null
null
null
UTF-8
C++
false
false
832
cpp
#include "Game.h" #include "ImageCropTest.h" ImageCropTest::ImageCropTest() { } ImageCropTest::~ImageCropTest() { } bool ImageCropTest::Init() { _background = new Image; _background->Init(TEXT("Image/BackGround.bmp"), WINSIZEX, WINSIZEY); _offsetX = _offsetY = 0; return true; } void ImageCropTest::Release(...
[ "34476408+header-file@users.noreply.github.com" ]
34476408+header-file@users.noreply.github.com
d64bb5cdc30d6ee2524867643459af1766ea65d0
d04ca01b62c9df153f0bf16748c28cc262ffba09
/USACO/friday.cpp
810ee042204ce255caafdafa13e3797ef8f55b1b
[]
no_license
PradCoder/Programming-Contests
33ae9fc81e26dbb3671d3b674ed293576263fec8
afbedd8d5db22446391a1efe2f954859540e9193
refs/heads/master
2023-01-18T15:26:21.977623
2023-01-18T04:44:20
2023-01-18T04:44:20
140,637,968
0
0
null
null
null
null
UTF-8
C++
false
false
2,301
cpp
/* ID: 2010pes1 TASK: friday LANG: C++ */ #include "bits/stdc++.h" #include <cstdint> #define F first #define S second #define PG push_back #define PPB pop_back #define PF push_front #define MP make_pair #define REP0...
[ "amarasep@mcmaster.ca" ]
amarasep@mcmaster.ca
fc445c651c858eeeebf1cf2d8f6e49e503aa4a54
f812cd27b0568316e839f2ab4d6e82e47762db30
/Trabalho/3ºFase/Generator/Patch.cpp
469b22a707f0949da67cb3c9d25b81dd5cef49d4
[]
no_license
Komatsu52/CG
f52eccf841b1f58870db74ed99d3f62e28aeee25
9f9f25864f37e09065ffc26738d138a54f21143e
refs/heads/master
2021-02-12T17:53:40.340113
2020-06-18T05:42:20
2020-06-18T05:42:20
244,614,167
0
3
null
null
null
null
UTF-8
C++
false
false
4,598
cpp
#include "Patch.h" Patch :: Patch(){ } Patch :: Patch(vector<Point> p){ controlPoints = p; } void Patch :: multMatrixVector(float *m, float *v, float *res) { for(int i = 0; i < 4; ++i){ res[i] = 0; for(int j = 0; j < 4; ++j) res[i] += v[j] * m[i * 4 + j]; } } Patch ::Patch(in...
[ "gjaesteves@gmail.com" ]
gjaesteves@gmail.com
c2ec7e9e7994f3d5fd8590ce7254dfb8c4d1b1af
e4e9d9e089ce7b6987c542d359df5c74d9b19e2d
/TemSensor/Storage.h
489747e7ffdfb5170219e7b03ffeaff23d2eb837
[]
no_license
DZdream64/TemSensor
fcc4a76fc52345d5b6a68097ea5ea787921642b7
bf71e022fd1ddd99bf509e99f73438984c520329
refs/heads/master
2021-01-18T14:14:12.437597
2016-04-19T04:08:29
2016-04-19T04:08:29
56,556,702
0
0
null
2016-04-19T02:04:12
2016-04-19T02:04:11
null
UTF-8
C++
false
false
117
h
#pragma once class CStorage { public: CStorage(); virtual ~CStorage(); public: virtual int storageData() = 0; };
[ "1171750375@qq.com" ]
1171750375@qq.com
cfd4f195c055c29162163abc6e6bb92bcea227f6
789c924def388fb760985f5e39c2464385dac00c
/truss/main.cpp
7921d2c8b2244194adaacbae27814f546b287cdb
[]
no_license
iicalgorithms/Truss-decomposition
a2e3bf0f883643c2c5cd84c8d6f912f777672491
fe70fcb1ee5194e8e45b41190778a235178dcb53
refs/heads/master
2022-02-23T09:07:41.072301
2019-10-12T09:50:05
2019-10-12T09:50:05
189,707,340
0
0
null
null
null
null
UTF-8
C++
false
false
7,971
cpp
#include "Graph.h" #include <map> #include <algorithm> #include <fstream> #include <iostream> #include <string.h> #include <sstream> #include <stdlib.h> #include <time.h> #include <cmath> #include <vector> #include <map> #define random(x) rand()%x; using namespace std; int seed = 100; Graph G; int node_num ,edge_num ...
[ "1515848689@qq.com" ]
1515848689@qq.com
26c3ae62bfd349461b5d69bce7d9f21cc5395ee6
a9736224708f049c901292a1afa508356fed4a35
/tensorflow/compiler/mlir/tools/kernel_gen/transforms/tf_framework_legalize_to_llvm.cc
3f64642156953f1d442a5214af7bba66862cb4b6
[ "MIT", "Apache-2.0", "BSD-2-Clause" ]
permissive
rammya29/tensorflow
d2fae99544a87ef44ead761b3326bd6df12af46b
3795efc9294b52c123a266ebf14e60dad18f40a3
refs/heads/master
2023-06-22T21:09:23.465097
2021-07-14T06:53:27
2021-07-14T06:57:30
null
0
0
null
null
null
null
UTF-8
C++
false
false
19,367
cc
/* Copyright 2020 The TensorFlow Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or a...
[ "gardener@tensorflow.org" ]
gardener@tensorflow.org
d512741b750eb3a4091a2c1903db422fac1fd307
4b1ee3b6b7a23ab029e59e1744ec2f441c648863
/DEMCOMP/demcomp2/dem_comp2.cpp
7c29f550325fe5ccb2260d10861794dbbd2ba00a
[]
no_license
JimFawcett/CppBasicDemos
aa4d489befa7e4b5b5454c913ab889a5376658e7
77652c070e7ffa58b008a8afac9f32dd92e30a4f
refs/heads/master
2021-06-25T04:51:01.991278
2021-01-25T00:29:58
2021-01-25T00:29:58
195,317,448
2
0
null
null
null
null
UTF-8
C++
false
false
4,066
cpp
////////////////////////////////////////////////////////////////// // DEM_COMP2.CPP - demonstrates composition // // knows how to copy, assign, and destroy // // uses inefficient copy ctor design // ////////////////////////////////////////////////////...
[ "jfawcett@twcny.rr.com" ]
jfawcett@twcny.rr.com
d0ddf6b1193ac6714ed78f721bc24d3fa6c54c05
1210df674a4a6ec547f8a6f1e8b2ea0b72bfabf7
/C7/7_4/StdAfx.cpp
ffe25f652d79b2e74eef4f86dcd416944064498c
[]
no_license
20191864229/G29
05e911e6185afd4ba6a85c4864a16d1e638885bb
144902d98bc2329a5c28a81ae7a8a7457c47fdc2
refs/heads/master
2020-08-16T19:59:42.203215
2019-12-16T14:15:33
2019-12-16T14:15:33
215,545,241
0
0
null
2019-11-02T01:11:42
2019-10-16T12:40:58
C++
UTF-8
C++
false
false
282
cpp
// stdafx.cpp : source file that includes just the standard includes // 7_4.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
[ "851947392@qq.com" ]
851947392@qq.com
4b523e03fdc8b15eaa38ac658e5c8c693a1bf0ad
63fbcf1d489fad90573306b0bb73cae3c0182a98
/Common/Code/TypeVisualization.hpp
9707a3802a8ce6171a1548326d8fef992880f38e
[ "MIT" ]
permissive
jamiefang/internetmap
2b5515696329182ceeddf46058732b8c409ba77e
13bf01e8e1fde8db64ce8fd417a1c907783100ee
refs/heads/master
2020-09-12T15:40:53.628635
2019-03-01T23:31:31
2019-03-01T23:31:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
635
hpp
// // TypeVisualization.h // InternetMap // // Created by Nigel Brooke on 2013-01-30. // Copyright (c) 2013 Peer1. All rights reserved. // #ifndef __InternetMap__TypeVisualization__ #define __InternetMap__TypeVisualization__ #include "DefaultVisualization.hpp" class TypeVisualization : public DefaultVisualizatio...
[ "nigel@steamclocksw.com" ]
nigel@steamclocksw.com
a33e1f0821911a67b8f9c5179c5889c7f6db4da7
e5c0c066460aca04a208fef22d44f9a6d1305ebf
/hw2_2/main.cpp
c7b2cd5458658fbd398aab7f6a4d8ea8fcf9c297
[]
no_license
kamanov/cgcourseau2014autumn
453152f94a3653d4efc6802a431ac2147425f0b8
229d6cdef39664f58c618382abfa79514dec5835
refs/heads/master
2020-06-04T14:44:42.727836
2015-02-09T09:12:02
2015-02-09T09:12:02
29,933,839
0
0
null
null
null
null
UTF-8
C++
false
false
199
cpp
#include "widget.h" #include "glwidget.h" #include <QApplication> int main(int argc, char *argv[]) { QApplication a(argc, argv); Widget w; w.show(); return a.exec(); return 0; }
[ "karimamanov@gmail.com" ]
karimamanov@gmail.com
41cb15b26a2cc28c060023b9ab6d1a22027645bb
5530d7a83cf7e7538452f8073c5a8902a0ff1616
/_archive_cpp/source/synthese_additive_decisionnelle.h
38517d83724b821cc07e81c9852e85a00c0b72bf
[ "MIT" ]
permissive
overetou/synthe_alea
eb7aa430e55b35c6d405e431ae9fd17eaa3f1c68
3f1e6ba3eb90f70bc7a475f092d2d160089e758e
refs/heads/master
2020-03-27T03:54:59.243487
2018-11-04T15:45:32
2018-11-04T15:45:32
145,898,440
1
1
MIT
2018-09-10T08:51:01
2018-08-23T19:31:36
C++
UTF-8
C++
false
false
14,017
h
#pragma once #include <vector> #include <algorithm> #include <functional> #include <iostream> #include <fstream> #define PI 3.1427 namespace synthese_additive_decisionnelle { #pragma region Base de données // A FAIRE : // - paramètres pour caractériser les spectres // - organisation du fichier texte // Ajoute...
[ "adrien.salon@live.fr" ]
adrien.salon@live.fr
ee7eb2819d9253d0a6a866e184c7760e97b58bf0
a4c4751cfc24db0824d2d9424b60261582b0b96c
/RU/Files/day2_6/mixer-snappyHexMesh/system/removeZones.topoSetDict
b8f8409059de7e283d99a5f2ac3cc44b6b9cd058
[]
no_license
shubham2941/TwoDaysMeshingCourse
02bbca556583e84d5e59a95ea8f98a2542945588
26fffa34a3721b952fbc9d38e5c9308d08201902
refs/heads/master
2020-06-13T02:20:20.923521
2016-01-05T16:31:48
2016-01-05T16:31:48
null
0
0
null
null
null
null
UTF-8
C++
false
false
937
toposetdict
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: dev | ...
[ "matvey.kraposhin@sl-BIG.inicluster.ru" ]
matvey.kraposhin@sl-BIG.inicluster.ru
4d22ffae5c234dbd322296cc038d7e8f8c33d79a
3179943d68996d3ca2d81961be0ac207300b7e4a
/c-upgrade/pta-dsstart-2.cpp
167f530b1d108514fa0517ede3f2b55648fe6d1e
[]
no_license
xucaimao/netlesson
8425a925fa671fb9fd372610c19b499b0d8a6fc2
088004a9b758387ae6860e2a44b587b54dbbd525
refs/heads/master
2021-06-07T06:24:35.276948
2020-05-30T07:04:02
2020-05-30T07:04:02
110,668,572
0
0
null
null
null
null
UTF-8
C++
false
false
702
cpp
//中国大学MOOC-陈越、何钦铭-数据结构-起步能力自测题-2 素数对猜想 //write by xucaimao ;20171107-20:00 #include<cstdio> #include<cmath> const int maxn=100010; int prime[maxn]; int main(){ for(int i=2;i<maxn;i++) prime[i]=1; int sq=sqrt(maxn)+1; prime[0]=0; prime[1]=0; for(int i=2;i<sq;i++) for(int j=i*i;j<maxn;j+=i) prim...
[ "xcmgj@163.com" ]
xcmgj@163.com
dae561d3cad1b72d65ecf485bb73d9a6e5b14c4b
cd4c589986e0cb69c025a50091a6cb083b1c5586
/QuantumEngine/Entities/GameObjectManager.h
bcb29117bbfd987c24ddb1bb2767a1306c2d1240
[]
no_license
DarriusWright/QuantumEngine
245e41afbf2d3eb4284afeb094a1b39b3423f739
aa1660fb6cb4c3645dcff215438b1b19a68dae06
refs/heads/master
2016-09-06T05:30:11.874136
2014-12-14T07:58:53
2014-12-14T07:58:53
27,872,722
1
0
null
null
null
null
UTF-8
C++
false
false
802
h
#pragma once #include <RTTI.h> #include <ExportHeader.h> #include <Manager.h> #include <vector> #include <map> #include "GameObject.h" #define GAMEOBJECT GameObjectManager::getInstance() class GameObjectManager : public Manager { RTTI_DECLARATIONS(GameObjectManager, RTTI); public: ENGINE_SHARED ~GameObjectManager(...
[ "dwright@student.neumont.edu" ]
dwright@student.neumont.edu
59b9a6f8195324e7fc5f637d7d56740d79a969b3
88ae8695987ada722184307301e221e1ba3cc2fa
/third_party/crashpad/crashpad/util/linux/ptrace_broker_test.cc
0b9e917c943a14420885713d934dc91dde9bce4f
[ "Apache-2.0", "LGPL-2.0-or-later", "MIT", "GPL-1.0-or-later", "BSD-3-Clause" ]
permissive
iridium-browser/iridium-browser
71d9c5ff76e014e6900b825f67389ab0ccd01329
5ee297f53dc7f8e70183031cff62f37b0f19d25f
refs/heads/master
2023-08-03T16:44:16.844552
2023-07-20T15:17:00
2023-07-23T16:09:30
220,016,632
341
40
BSD-3-Clause
2021-08-13T13:54:45
2019-11-06T14:32:31
null
UTF-8
C++
false
false
8,568
cc
// Copyright 2017 The Crashpad 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 // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agre...
[ "jengelh@inai.de" ]
jengelh@inai.de
bacc0594b4b1bcdbb6e8ceffba3f142e561deb5c
5b0f0167080cc0684f507b0e50a872dca73d628f
/LeetCode/Check_Array_Formation_Through_Concatenation.cpp
47cf9631e9704603f2b25c2073c29d42b71dbd42
[]
no_license
donggan22/Algorithm
0918f522cfb0a7ddf67c8d888e242d655f4298cf
e8f988527c301fee1366180d197f3944caac7c76
refs/heads/main
2023-07-08T03:36:47.395275
2021-08-09T10:47:03
2021-08-09T10:47:03
323,762,785
0
0
null
null
null
null
UTF-8
C++
false
false
900
cpp
class Solution { public: bool canFormArray(vector<int>& arr, vector<vector<int>>& pieces) { if (arr.size() == 0) return false; unordered_map<int, int> m; for (int i = 0; i < arr.size(); i++) m.insert(make_pair(arr[i], i)); for (int i = 0; i < pieces.size(); i+...
[ "donggwan.koo@gmail.com" ]
donggwan.koo@gmail.com
41c99b4639b18f91d9acd054ec4d88da845add52
651bb470cf728abc1161da7dbee6099bff082ea3
/chardefs.inc
b4081e271b453df628aaf1c29d85569081e68a74
[]
no_license
glockwork/phMeter
5678d5bb2478e39a5814eba6c63d65c4fce38637
d037635390b26cbc4c511368cce6e2decc12a6ab
refs/heads/master
2020-12-30T23:34:09.083709
2011-01-25T19:08:19
2011-01-25T19:08:19
37,402,549
0
1
null
2015-06-14T06:55:54
2015-06-14T06:55:54
null
UTF-8
C++
false
false
223
inc
; Character descriptor structure .EQU CharCode = 0 .EQU CharWidth = 1 .EQU CharEntry = 2 ; Character set descriptor structure .EQU CharTable = 0 .EQU CharHeight = 2 .EQU CharDefaultWidth =3
[ "duane@duane-n-lisa.net" ]
duane@duane-n-lisa.net
0061815e53c872c96ecc1a235d0a7f83e960b8b6
019c446b2c8f8e902226851db1b31eb1e3c850d5
/oneEngine/oneGame/source/after/terrain/system/MemoryManager.cpp
739b22f92097c2357c04bf86676e6300f90e5eba
[ "FTL", "BSD-3-Clause" ]
permissive
skarik/1Engine
cc9b6f7cf81903b75663353926a23224b81d1389
9f53b4cb19a6b8bb3bf2e3a4104c73614ffd4359
refs/heads/master
2023-09-04T23:12:50.706308
2023-08-29T05:28:21
2023-08-29T05:28:21
109,445,379
9
2
BSD-3-Clause
2021-08-30T06:48:27
2017-11-03T21:41:51
C++
UTF-8
C++
false
false
5,706
cpp
#include "MemoryManager.h" #include "core/settings/CGameSettings.h" #include "after/terrain/data/Node.h" #include <iostream> #include <memory> #include <thread> //===============================================================================================// // Manager settings //================================...
[ "joshua.boren@borenlabs.com" ]
joshua.boren@borenlabs.com
976215d6f5cb4801c9cdb59f07191b08392905fc
ea1f01ce32671a1214dd7e0995bc131307e58476
/A4/GeometryNode.hpp
75cddb9cd187ccbaf16b135a1f687839c6a8e18c
[]
no_license
mismayil/cs488
65a729adfe9757a7c52d0609b381888d64b1f12b
d8938779bc0b1b1fd9ca5a5dd29d25f6e843a721
refs/heads/master
2021-01-10T06:45:50.215212
2015-12-31T19:27:13
2015-12-31T19:27:13
48,860,054
1
0
null
null
null
null
UTF-8
C++
false
false
319
hpp
#pragma once #include "SceneNode.hpp" #include "Primitive.hpp" #include "Material.hpp" class GeometryNode : public SceneNode { public: GeometryNode( const std::string & name, Primitive *prim, Material *mat = nullptr ); void setMaterial( Material *material ); Material *m_material; Primitive *m_primitive; };
[ "mismayil@uwaterloo.ca" ]
mismayil@uwaterloo.ca
e969085e55e814f28f4940ff3dd0ea6949fcee78
1a9462cf8bf332d5171afe1913fba9a0fec262f8
/externals/boost/boost/functional/detail/hash_float.hpp
07d19c3040636a130a93c0957d3d7e7a03b234d7
[ "BSD-2-Clause" ]
permissive
ugozapad/g-ray-engine
4184fd96cd06572eb7e847cc48fbed1d0ab5767a
6a28c26541a6f4d50b0ca666375ab45f815c9299
refs/heads/main
2023-06-24T06:45:37.003158
2021-07-23T01:16:34
2021-07-23T01:16:34
377,952,802
4
0
null
null
null
null
UTF-8
C++
false
false
3,663
hpp
// Copyright Daniel James 2005-2006. Use, modification, and distribution are // subject to the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // Based on Peter Dimov's proposal // http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2...
[ "hp1link2@gmail.com" ]
hp1link2@gmail.com
55d86ad99cc08478834634f2d5d598b3a1473b0a
04fee3ff94cde55400ee67352d16234bb5e62712
/7.20/source/Stu-27-爆零Starlight/massage.cpp
0da5cb840b091374ea29853f4b4f01a20428c598
[]
no_license
zsq001/oi-code
0bc09c839c9a27c7329c38e490c14bff0177b96e
56f4bfed78fb96ac5d4da50ccc2775489166e47a
refs/heads/master
2023-08-31T06:14:49.709105
2021-09-14T02:28:28
2021-09-14T02:28:28
218,049,685
1
0
null
null
null
null
UTF-8
C++
false
false
418
cpp
#include<bits/stdc++.h> using namespace std; int a1[10010],a2[10010]; int main(){ freopen("massage.in","r",stdin); freopen("massage.out","w",stdout); int n,q; cin>>n>>q; for(int i=1;i<=n;++i){ cin>>a1[i]>>a2[i]; } if(n==3&&q==1) cout<<"20\n1033-1039-1049-1249-1279-5279-5179-8179\n20\n1373-3373-3343-...
[ "15276671309@163.com" ]
15276671309@163.com
d8d1ad6f9cb5c5b3f1056d2a770fa81d4a84ad45
cf4605896cec9cea2c868d131e4a095c05a4fd1e
/C++/Ch4-C++/Ch4-14-swap-def.cpp
e6ab3d148fa0aa67150ca23f85fd840cdd494aa3
[]
no_license
alice2100chen/ourProgramming
1e5a57a3acecb005f63802471d76dfb581f70c86
a94818371ef86cf1eafaca22cf6cb451b0c50556
refs/heads/master
2020-04-20T00:31:50.823679
2020-01-06T14:26:49
2020-01-06T14:26:49
168,523,623
1
0
null
null
null
null
UTF-8
C++
false
false
491
cpp
#include <iostream> using namespace std; void swap(int a[], int i, int j){ int temp = a[i]; a[i] = a[j]; a[j] = temp; } void print_array(int arr[], int arr_len){ for(int i = 0; i < arr_len; i++){ cout << arr[i] << " "; } cout << endl; } int main(){ int num_visitors[7] = {70, 10, ...
[ "alice2100chen@gmail.com" ]
alice2100chen@gmail.com
87fd18dc7a0c813bc9fcd283f5591cde2e240716
a4a072ec59436e148121e87889714a68859da9da
/Src/Engine/3_Modules/Render/Assets/Material.h
f94ca71cf04edc08ae31612f0754a1641173e0ea
[]
no_license
morcosan/CYRED
3615441445bcfdfada3cd55533b3af4c1d14fac6
a65c7645148c522b2f14a5e447e1fe01ed3455bc
refs/heads/master
2021-03-23T07:25:30.131090
2016-05-10T20:49:47
2016-05-10T20:49:47
247,435,142
0
0
null
null
null
null
UTF-8
C++
false
false
1,805
h
// Copyright (c) 2015 Morco (www.morco.ro) // MIT License #pragma once #include "../../../1_Required/Required.h" #include "../../../2_BuildingBlocks/String/String.h" #include "../../../2_BuildingBlocks/Data/DataUnion.h" #include "../../../2_BuildingBlocks/Data/DataArray.h" #include "../../../2_BuildingBlocks/Asset.h"...
[ "morco.mail@gmail.com" ]
morco.mail@gmail.com
b3d10a882fbde1ef7b87dd839bb7339f5be497db
5da7329111ede9432df039182275ad6ae0e4693d
/2012-arduino/TCL_lighting/audio_board/audio_board.ino
8b5c251801a7deeed2acd1cca1c93de29966eecb
[]
no_license
JamesHagerman/Sensatron
6bca70d378362978a285b49a7dbc14f14cc88c1c
9773c23481f83636fc7bc9c2938ea37f4bdc272e
refs/heads/master
2021-01-20T17:32:55.191392
2018-09-25T04:37:47
2018-09-25T04:37:47
61,709,147
2
3
null
2016-06-22T10:22:17
2016-06-22T10:07:22
null
UTF-8
C++
false
false
3,323
ino
// Spectrum analyzer shield pins int spectrumStrobe = 8; int spectrumReset = 9; int spectrumAnalog = 4; //4 for left channel, 5 for right. //This holds the 15 bit RGB values for each LED. //You'll need one for each LED, we're using 25 LEDs here. //Note you've only got limited memory, so you can only control //Sever...
[ "james.hagerman@gmail.com" ]
james.hagerman@gmail.com
984f1dc9a30584bc111fbada107963e7afc54718
72f2992a3659ff746ba5ce65362acbe85a918df9
/apps-src/apps/external/zxing/qrcode/QRBitMatrixParser.h
f749c280c1cfdd8c0801a52ecefce0b14bd0a662
[ "BSD-2-Clause" ]
permissive
chongtianfeiyu/Rose
4742f06ee9ecd55f9717ac6378084ccf8bb02a15
412175b57265ba2cda1e33dd2047a5a989246747
refs/heads/main
2023-05-23T14:03:08.095087
2021-06-19T13:23:58
2021-06-19T14:00:25
391,238,554
0
1
BSD-2-Clause
2021-07-31T02:39:25
2021-07-31T02:39:24
null
UTF-8
C++
false
false
1,503
h
#pragma once /* * Copyright 2016 Nu-book Inc. * Copyright 2016 ZXing 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 * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless req...
[ "service@leagor.com" ]
service@leagor.com
cb17e88be81c3fe1c074988f3d824da59f56e6bf
0428c3b8086f12ebbc6de7967ee4437934e2146d
/misc/src/xml_parser.cpp
5ed1f917b536fe62ce6454a7b95e1644c15c5a0a
[]
no_license
cornway/stm32f4-dcmi-probe
e5cf112f83b09ea0d4af23660c12e78b101504e6
9cc677bdb092949d1212ec1fc831b7db3e485fbd
refs/heads/master
2020-04-28T03:16:52.112141
2019-03-11T05:23:51
2019-03-11T05:23:51
174,930,315
2
0
null
null
null
null
UTF-8
C++
false
false
101
cpp
#include "xml_parser.h" /* __weak void * operator new (uint32_t size) { return (void *)0; } */
[ "romanpustobayev@gmail.com" ]
romanpustobayev@gmail.com
e70b8d53ee7e3e340b0a10ccd797f320adcd245c
882238b7118ba2f7c2f8eb36212508203d0466a4
/generator/enum.h
3c972a63ac7203745dad060ac9781e33a75dad11
[ "MIT" ]
permissive
alisharifi01/hottentot
32c0184c9aa2248047eb03ca13d68dc8557b962b
e578a2185c473301076ece5634113ab663996a3e
refs/heads/master
2020-03-27T10:19:17.074850
2016-11-13T07:58:08
2016-11-13T07:58:08
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,458
h
/* The MIT License (MIT) * * Copyright (c) 2015 LabCrypto Org. * * 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...
[ "kam.cpp@gmail.com" ]
kam.cpp@gmail.com
a4a8494ad4213938c1ae44891e71a54dde3be884
3a77e7ffa78b51e1be18576f0c3e99048be8734f
/be/src/io/cache/block/block_file_segment.h
b462259931c831b1ce9b72f5bbdae01ca30e8a74
[ "OpenSSL", "Apache-2.0", "BSD-3-Clause", "LicenseRef-scancode-facebook-patent-rights-2", "PSF-2.0", "dtoa", "MIT", "GPL-2.0-only", "LicenseRef-scancode-public-domain" ]
permissive
yiguolei/incubator-doris
e73e2c44c7e3a3869d379555a29abfe48f97de6c
ada01b7ba6eac5d442b7701b78cea44235ed5017
refs/heads/master
2023-08-18T23:28:09.915740
2023-08-05T05:18:18
2023-08-05T05:18:44
160,305,067
1
1
Apache-2.0
2023-07-07T08:05:16
2018-12-04T05:43:20
Java
UTF-8
C++
false
false
6,264
h
// 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 ownership. The ASF licenses this file // to you under the Apache License, Version 2.0 (the // "License"); you may...
[ "noreply@github.com" ]
noreply@github.com
713acfd2fcafe2fb945ac8748f43d91238891e22
0cbdd9cd7c395cff651d4f895fa327d9e464ab38
/Src/KhaosMesh.cpp
45ca6c29502d8fe93d53cba611058e3bb929e366
[]
no_license
zengqh/khaos
128c332a7bf443761e03847da69c6eb9aa9c3b4e
929e60a8b72bf8e513200b9ce5837ec3e388bba4
refs/heads/master
2020-12-02T16:14:58.873539
2017-07-07T09:34:06
2017-07-07T09:34:06
96,522,956
0
0
null
null
null
null
GB18030
C++
false
false
18,203
cpp
#include "KhaosPreHeaders.h" #include "KhaosMesh.h" #include "KhaosRenderDevice.h" namespace Khaos { ////////////////////////////////////////////////////////////////////////// SubMesh::SubMesh() : m_primType(PT_TRIANGLELIST) { m_bvh = KHAOS_NEW AABBBVH; m_bvh->_init(this); } Sub...
[ "zengqh.mansion@gmail.com" ]
zengqh.mansion@gmail.com
cde57931fb89c42727a50a05b1eaa5b252e47a02
4c0a47abd546571c37e279c283738e825e1a4ac5
/syncd/ServiceMethodTable.cpp
2f5f5183510a1cf220039d0dfcbd2adfd917d109
[ "Apache-2.0" ]
permissive
tonytitus/sonic-sairedis
054167fe3eb69f1d8ed0fcccee4573b4e6ffa205
2347db590f3b1799eacedef7e1e7c9990cc11ca9
refs/heads/master
2021-07-18T13:17:48.497968
2020-07-31T17:22:34
2020-07-31T17:22:34
198,504,530
0
1
NOASSERTION
2019-07-23T20:35:35
2019-07-23T20:35:35
null
UTF-8
C++
false
false
2,622
cpp
#include "ServiceMethodTable.h" #include "swss/logger.h" #include <utility> using namespace syncd; ServiceMethodTable::SlotBase::SlotBase( _In_ sai_service_method_table_t smt): m_handler(nullptr), m_smt(smt) { SWSS_LOG_ENTER(); // empty } ServiceMethodTable::SlotBase::~SlotBase() { SWS...
[ "kcudnik@gmail.com" ]
kcudnik@gmail.com
1d628ac5b13c83e1a1a44d4f7139ad542e14030b
dcb75b10a352d9cfc0ae31f28679a2d56b10b875
/Source/Mordhau/StrikeMotion.h
2ac8703d57f6bf9becd4cbc5c8580695cc7a6e4a
[]
no_license
Net-Slayer/Mordhau_uSDK
df5a096c21eb43e910c9b90c69ece495384608e0
c4ff76b5d7462fc6ccad176bd8f1db2efdd2c910
refs/heads/master
2023-04-28T02:48:14.072100
2021-12-15T16:35:08
2021-12-15T16:35:08
301,417,546
3
1
null
2021-08-23T13:23:29
2020-10-05T13:26:39
C++
UTF-8
C++
false
false
2,454
h
// Fill out your copyright notice in the Description page of Project Settings. #pragma once #include "CoreMinimal.h" #include "Mordhau.h" #include "AttackMotion.h" #include "StrikeMotion.generated.h" /** * */ UCLASS() class MORDHAU_API UStrikeMotion : public UAttackMotion { GENERATED_BODY() public: UPROPERTY(Bl...
[ "talon_hq@outlook.com" ]
talon_hq@outlook.com
b2fe9dac32915bd258854533afaa16319181e9f8
8aaca4789239bd08f6422ec95de4782243fbb55e
/FCX/Plugins/Effekseer/Intermediate/Build/Win64/UE4Editor/Inc/EffekseerEd/EffekseerModelFactory.generated.h
53335dd81091e6b0aa373a2705b981ba3d89bc61
[]
no_license
mikemikeMyuta/Future-Creation-Exhibition
0e8572f20a5eff241a0241da5029399e83443714
d76795f26ad18e09d4bc2836784587476a8c47f1
refs/heads/master
2020-08-02T02:24:39.957952
2019-10-18T06:44:33
2019-10-18T06:44:33
211,202,171
0
0
null
null
null
null
UTF-8
C++
false
false
5,231
h
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved. /*=========================================================================== Generated code exported from UnrealHeaderTool. DO NOT modify this manually! Edit the corresponding .h files instead! ==============================================================...
[ "myuta.shusyoku@gmail.com" ]
myuta.shusyoku@gmail.com
81658eee6db9dad6c4db552577d67cbc6ca3b9cb
9dcf91bc705c1e7907afac96cfe8b07d86d1f637
/include/wm_navigation/WmGlobalNavigation.h
cb32eeffe6244728f83464592a208b965bc6d5f7
[ "BSD-3-Clause" ]
permissive
fmrico/WaterMellon
7dd47beca113d95836311e48827fef2beb778985
5d61914d9597118735e933e6d61a7e7872d83f5a
refs/heads/master
2021-01-10T11:42:55.551205
2015-10-27T22:08:42
2015-10-27T22:08:42
43,119,298
1
0
null
null
null
null
UTF-8
C++
false
false
4,021
h
/* * mapper.h * * Created on: 22/08/2015 * Author: paco */ #ifndef WMGLOBALNAVIGATION_H_ #define WMGLOBALNAVIGATION_H_ #include "ros/ros.h" #include <sensor_msgs/PointCloud2.h> #include <geometry_msgs/PoseWithCovarianceStamped.h> #include <tf/transform_listener.h> #include <tf/message_filter.h> #includ...
[ "fmrico@gmail.com" ]
fmrico@gmail.com
b797394de6d94fc0af6a9dcca68e55e4ecad1b9c
12a12837e4de40befdce2cae31f245298f1b34e7
/MyProject/Plugins/FirebaseFeatures/Source/ThirdParty/firebase_cpp_sdk/include/firebase/firestore/field_value.h
73e940ac1c0f79ceff49c7a568b9400c371fa8b5
[ "Apache-2.0" ]
permissive
Sergujest/softwareteam-unreal
fddb5f8016d464d4c07efa557e7d72c202725d94
f2aeec5544ef39312428bf7b911139ab368120cd
refs/heads/master
2023-06-13T02:03:32.030948
2021-07-09T14:09:17
2021-07-09T14:09:17
384,178,077
0
0
null
null
null
null
UTF-8
C++
false
false
12,377
h
/* * Copyright 2018 Google * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in w...
[ "kasim_optdcom@Kasims-MacBook-Pro.local" ]
kasim_optdcom@Kasims-MacBook-Pro.local
eb6ef4b6beb868077c35436bc064caf9617af2f8
12d28b5b3fa8b856f8604ca1307746d678affa69
/策略模式/strategy.h
56bcd5c564d1d4a5ede2fe06b4f4f80776ec91bf
[]
no_license
wangzhengyang/DesignPattern
d92c9c8f7aa0cae29f9ab0552af248f75550bdfd
cab3796603d942c22daff4e2fe9e11ab35c00110
refs/heads/master
2022-08-18T14:22:50.361881
2020-05-17T15:16:49
2020-05-17T15:16:49
255,211,328
0
0
null
null
null
null
UTF-8
C++
false
false
161
h
#ifndef _STRATEGY_H #define _STRATEGY_H class Strategy{ private: //... public: Strategy(){} virtual ~Strategy(){} virtual void Algorithm() = 0; }; #endif
[ "1484413135@qq.com" ]
1484413135@qq.com
9bb6fa1699511a3f6a1fbd69ed41ddb9e22c6dbc
013506d4dca645b54173ef269c2fa023f3ea1066
/P5/Scene.h
f6aca48c214399f2def30fc752dbbcae06a1a48e
[]
no_license
hjx201/cs3113-projectos
2d78e50978b88feb68bc0038cb2ad674069c00f6
cfbf9a3a3fe8f6939fd2754f673cfb1df54fbf00
refs/heads/master
2023-06-18T07:50:38.588123
2021-07-20T06:48:58
2021-07-20T06:48:58
267,763,850
0
1
null
null
null
null
UTF-8
C++
false
false
691
h
#pragma once #define GL_SILENCE_DEPRECATION #ifdef _WINDOWS #include <GL/glew.h> #endif #define GL_GLEXT_PROTOTYPES 1 #include <SDL.h> #include <SDL_opengl.h> #include "glm/mat4x4.hpp" #include "glm/gtc/matrix_transform.hpp" #include "ShaderProgram.h" #include "Util.h" #include "Entity.h" #include "Map.h" struct Ga...
[ "hjx201@nyu.edu" ]
hjx201@nyu.edu
61c4532608596185da6e48aa2555899f80f02257
d8371c58aa8ba6e31ecd40d97e0576bf9f366923
/include/general/allocation.h
29a7497200a81150c3f6fde5fc465f4fa541f100
[]
no_license
simmito/micmac-archeos
2499066b1652f9ba6a1e0391632f841333ffbcbf
9c66a1a656621b045173fa41874b39264ca39799
refs/heads/master
2021-01-15T21:35:26.952360
2013-07-17T15:36:36
2013-07-17T15:36:36
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,652
h
/*Header-MicMac-eLiSe-25/06/2007 MicMac : Multi Image Correspondances par Methodes Automatiques de Correlation eLiSe : ELements of an Image Software Environnement www.micmac.ign.fr Copyright : Institut Geographique National Author : Marc Pierrot Deseilligny Contributors : Gregoire Maille...
[ "romain.janvier@hotmail.fr" ]
romain.janvier@hotmail.fr
10e7a3db1782418e81456090bc58081689c9a968
7d71fa3604d4b0538f19ed284bc5c7d8b52515d2
/Clients/AG/AgOutlookAddIn/Outlook.cpp
f6f72b7ad318b2fd34ab6407bc330a8d74619614
[]
no_license
lineCode/ArchiveGit
18e5ddca06330018e4be8ab28c252af3220efdad
f9cf965cb7946faa91b64e95fbcf8ad47f438e8b
refs/heads/master
2020-12-02T09:59:37.220257
2016-01-20T23:55:26
2016-01-20T23:55:26
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,804
cpp
#include "stdafx.h" #include "resource.h" #include "Outlook.h" #include "MapiAdmin.h" // Note: Namespace class member has changed to _Namespace in Outlook 2000 and 2002 // #include "msoutl8.h" // Outlook 97 // #include "msoutl85.h" // Outlook 98 // #include "msoutl9.h" // Outlook 2000 // #include "msoutl.h" ...
[ "jim@facetofacesoftware.com" ]
jim@facetofacesoftware.com
b79e65fc586ca15bb23d36f567410e165cdd1cb9
eaae3bc291b9b8455e3f56650271655089fff997
/EFE Engine/include/scene/TileLayer.h
5c14b33a538b06f56d33354c1d8f1c99c4113467
[]
no_license
mifozski/EFE-Engine
59b6274830b68fa2e7f21b5d91de9d222297cbcb
32521a8f534e3ff863617bfb42360f8f568bacd0
refs/heads/master
2021-05-28T07:35:55.934515
2015-01-02T20:08:55
2015-01-02T20:08:55
null
0
0
null
null
null
null
UTF-8
C++
false
false
945
h
#ifndef EFE_TILELAYER_H #define EFE_TILELAYER_H #include <vector> #include "scene/Tile.h" #include "math/MathTypes.h" #include "system/SystemTypes.h" namespace efe { enum eTileLayerType { eTileLayerType_Normal, eTileLayerType_LastEnum }; typedef std::vector<cTile*> tTileVec; typedef tTileVec::iterator tTile...
[ "efa34@yahoo.com" ]
efa34@yahoo.com
cf37d9c6a12e2cadbc48bfa80a224ea9409c1cd5
36437a87c8110c0a0dd33fd28b312a6bbf1ef716
/others/pinhole_test.cpp
11782f16316abdb52c7da03bcabe8c9c91c83450
[]
no_license
hanebarla/RayTracing_Practice
17d5b0a03ad42af2cf7efa6fffe4a04c877eb13b
d05079ea02372e47abb3017692299464014d7a8d
refs/heads/master
2022-12-26T19:54:23.328483
2020-10-12T13:41:41
2020-10-12T13:41:41
298,297,250
0
0
null
null
null
null
UTF-8
C++
false
false
619
cpp
#include "libs\vec3.h" #include "libs\ray.h" #include "libs\image.h" #include "libs\camera.h" int main(){ Image img(512, 512); PinholeCamera cam(Vec3(0, 0, 0), Vec3(0, 0, -1), 1); for(int i=0; i<img.width; i++){ for(int j=0; j<img.height; j++){ double u = (2.0*i - img.widt...
[ "barla.wings@gmail.com" ]
barla.wings@gmail.com
d559e0f9b3d79dd66a2e1ff9648e3974ad4d1abd
ef03edfaaf3437b24d3492ac3865968fcfda7909
/src/DesignPatterns/src/C++/002-GOFPatterns/003-BehavioralPatterns/004-Strategy/TemplateOperationStrategy/sample.cpp
c7d322e5d149b5c319de31c6844bc5d3937cf8c5
[]
no_license
durmazmehmet/CSD-UML-Design-Patterns
c60a6a008ec1b2de0cf5bdce74bc1336c4ceeb63
ae25ec31452016025ff0407e6c6728322624b082
refs/heads/main
2023-07-25T23:02:24.703632
2021-08-31T23:18:19
2021-08-31T23:18:19
null
0
0
null
null
null
null
UTF-8
C++
false
false
419
cpp
#include <iostream> #include "IntOperationContext.h" #include "IntAddOperationStrategy.h" #include "IntAddWithValueOperationStrategy .h" using namespace std; #if 1 int main() { IntAddOperationStrategy as; IntAddWithValueOperationStrategy aws{ 3 }; IntOperationContext context{10, 20, as }; cout << context.execute...
[ "mehmet.durmaz@temax.us" ]
mehmet.durmaz@temax.us
9f64f557bd36653ac5fc3079221d23f24052773f
06f035b37775178a407866e8791b484b781bc114
/MyEngine/BumpMapShaderClass.cpp
9e9e22fa656cdb1193b53a57132749f5b2c3af8f
[]
no_license
yohan7979/ShaderSample
0cea2904a1a66cb3a1ff1b004b4a8330dd1d1787
0a5e5b8dd97e5d06386760eda03db9cf75278fd5
refs/heads/master
2022-04-18T10:50:16.854497
2020-04-17T14:47:12
2020-04-17T14:47:12
256,537,389
0
0
null
null
null
null
UHC
C++
false
false
9,026
cpp
#include "BumpMapShaderClass.h" BumpMapShaderClass::BumpMapShaderClass() : m_matrixBuffer(nullptr) , m_LightBuffer(nullptr) , m_sampleState(nullptr) { } BumpMapShaderClass::BumpMapShaderClass(const BumpMapShaderClass& other) { } BumpMapShaderClass::~BumpMapShaderClass() { } bool BumpMapShaderClass::Initialize...
[ "twiclok@naver.com" ]
twiclok@naver.com
adfd7a6a14b17d4470936ff80f2f6c6d7d59f1af
3884f4a95c1398d65e7a5ea41a40d586ed22e0f2
/tests/ocltst/log/oclTestLog.cpp
519833fd982e5d97c416c102b71dd4ea10c1cee9
[ "MIT" ]
permissive
mcdmaster/ROCm-OpenCL-Runtime
e06acfd8f978618653a9508a5c1a5df48798fa43
5deb874c013445b9e39e29607ff956af6d64f92c
refs/heads/main
2023-02-08T00:33:42.800012
2020-12-27T07:04:26
2020-12-27T07:04:26
324,706,912
0
0
MIT
2020-12-27T07:07:46
2020-12-27T07:07:45
null
UTF-8
C++
false
false
3,148
cpp
/* Copyright (c) 2010-present Advanced Micro Devices, Inc. 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, me...
[ "Vladislav.Sytchenko@amd.com" ]
Vladislav.Sytchenko@amd.com
a3e0e795c91fede0bf0f6ace87a8d4ffb9bbfd9c
1cf5f0ca5ba9422dfc56ecc524bb72fd56e28312
/CvGameCoreDLL/CvBuildingClasses.cpp
057ebbc542195c5ad49cd11b4c244c6e4038a4c5
[]
no_license
djcolumbia/Community-Patch-DLL
46ea6f334b0a8c7c214e2cb5e89f3fa97fcffdf7
a8a5c31bf86e327761ca9c3de3038e2a0b1c9ee7
refs/heads/master
2020-12-25T04:27:20.862151
2015-02-16T05:19:35
2015-02-16T05:19:35
null
0
0
null
null
null
null
WINDOWS-1252
C++
false
false
86,045
cpp
/* ------------------------------------------------------------------------------------------------------- © 1991-2012 Take-Two Interactive Software and its subsidiaries. Developed by Firaxis Games. Sid Meier's Civilization V, Civ, Civilization, 2K Games, Firaxis Games, Take-Two Interactive Software and their re...
[ "thewizardofwas@gmail.com" ]
thewizardofwas@gmail.com
756b6850ae09a618934e035517f99fb911046c65
de7e771699065ec21a340ada1060a3cf0bec3091
/spatial3d/src/java/org/apache/lucene/spatial3d/geom/GeoBaseCompositeMembershipShape.h
a18fe0bbfcd731a8f89393638bdeeb95cf7f4d81
[]
no_license
sraihan73/Lucene-
0d7290bacba05c33b8d5762e0a2a30c1ec8cf110
1fe2b48428dcbd1feb3e10202ec991a5ca0d54f3
refs/heads/master
2020-03-31T07:23:46.505891
2018-12-08T14:57:54
2018-12-08T14:57:54
152,020,180
7
0
null
null
null
null
UTF-8
C++
false
false
3,234
h
#pragma once #include "stringhelper.h" #include <limits> #include <memory> #include <type_traits> #include <typeinfo> /* * Licensed to the Syed Mamun Raihan (sraihan.com) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyri...
[ "smamunr@fedora.localdomain" ]
smamunr@fedora.localdomain
d01eb570ad6b1b5b8a0837cddb323339ba623c2d
d4a7a5a7e2868f5b3563b69d6e457e53d9f1c18e
/我的第一个c++程序.cpp
f57c616415469cd65299223817d62d1197d5d872
[]
no_license
cli851/noi
630328d2e08785caf2bc559618fa1c415a39f647
3245e8ea84486553ef24d05ab50aa81837d36657
refs/heads/master
2023-04-19T16:04:52.275245
2021-05-08T14:38:50
2021-05-08T14:38:50
null
0
0
null
null
null
null
GB18030
C++
false
false
237
cpp
#include<iostream> using namespace std; int main() { cout<<"春晓"<<endl; cout<<"春眠不觉晓,"<<endl; cout<<"处处蚊子咬,"<<endl; cout<<"夜来嗡嗡声,"<<endl; cout<<"脓包知多少。"<<endl; return 0; }
[ "aaron.now.coder@gmail.com" ]
aaron.now.coder@gmail.com
bf7794328260e51b312970306958109ce4ca68e8
48d5dbf4475448f5df6955f418d7c42468d2a165
/SDK/SoT_BP_Harpoon_classes.hpp
431547d1a77d80f7cee054584c02cb560d1595f5
[]
no_license
Outshynd/SoT-SDK-1
80140ba84fe9f2cdfd9a402b868099df4e8b8619
8c827fd86a5a51f3d4b8ee34d1608aef5ac4bcc4
refs/heads/master
2022-11-21T04:35:29.362290
2020-07-10T14:50:55
2020-07-10T14:50:55
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,298
hpp
#pragma once // Sea of Thieves (1.4.16) SDK #ifdef _MSC_VER #pragma pack(push, 0x8) #endif #include "SoT_BP_Harpoon_structs.hpp" namespace SDK { //--------------------------------------------------------------------------- //Classes //--------------------------------------------------------------------------- // ...
[ "53855178+Shat-sky@users.noreply.github.com" ]
53855178+Shat-sky@users.noreply.github.com
91150c232fd4047e36d70be6baef956f8bbb5aad
e8ed22a5cbdf2f00236612d9244f0b7c296ebe0f
/Source/Toon_Tanks/GameModes/TankGameModeBase.cpp
47aa1c7e0bf36435bf6572efa0d19e3191f51e0e
[]
no_license
MujibBasha/Tanks-War-Game
16903439f19d491e51b3651d5e91fa218500a876
2d0694a4e8ae44c7c216c00900d18abc6b44b29e
refs/heads/main
2023-01-23T19:30:20.020722
2020-11-30T07:53:27
2020-11-30T07:53:27
317,148,976
0
0
null
null
null
null
UTF-8
C++
false
false
1,838
cpp
// Fill out your copyright notice in the Description page of Project Settings. #include "TankGameModeBase.h" #include "Toon_Tanks/Pawns/PawnTank.h" #include "Toon_Tanks/Pawns/PawnTurret.h" #include "Kismet/GamePlayStatics.h" #include "Toon_Tanks/PlayerControllers/PlayerControllerBase.h" #include "TimerManager.h" vo...
[ "mjub451@gmail.com" ]
mjub451@gmail.com
21fc0388467caf112af742f3eeae53e66e56911c
32f71433eabc363fca0ea76f342c318ad3d2d8b3
/hdu/12411.cpp
a6efe1bbabaf1fa6a62e47d6c24476e86c6274f5
[ "WTFPL" ]
permissive
qxzg/My-acm
b7c01b06d4dbe0b9a4119f0fe553a929c6fa3ef8
9797fa5b8dd26ccacb35b17676a53ecd8ebf3d81
refs/heads/master
2023-07-10T15:36:58.422674
2023-07-04T07:13:14
2023-07-04T07:13:14
132,225,475
0
0
null
null
null
null
UTF-8
C++
false
false
1,529
cpp
////////////////////System Comment//////////////////// ////Welcome to Hangzhou Dianzi University Online Judge ////http://acm.hdu.edu.cn ////////////////////////////////////////////////////// ////Username: nicainicai ////Nickname: 你猜 ////Run ID: ////Submit time: 2016-02-28 18:42:27 ////Compiler: GUN C++ //////...
[ "out@qxzg.xyz" ]
out@qxzg.xyz
0aa869b2e8623b7b9fd11b3ca11511394a3f66d7
5470644b5f0834b9646649da365c96101a2f9b2a
/Sources/Elastos/Frameworks/Droid/Base/Core/inc/webkit/CCookieManager.h
b4a898ca02bae9fc32f579d5a1c754a4e5a70a81
[]
no_license
dothithuy/ElastosRDK5_0
42372da3c749170581b5ee9b3884f4a27ae81608
2cf231e9f09f8b3b8bcacb11080b4a87d047833f
refs/heads/master
2021-05-13T15:02:22.363934
2015-05-25T01:54:38
2015-05-25T01:54:38
116,755,452
1
0
null
2018-01-09T02:33:06
2018-01-09T02:33:06
null
UTF-8
C++
false
false
1,225
h
#ifndef __CCOOKIEMANAGER_H__ #define __CCOOKIEMANAGER_H__ #include "_CCookieManager.h" #include "webkit/CookieManager.h" using Elastos::Droid::Net::IWebAddress; namespace Elastos { namespace Droid { namespace Webkit { CarClass(CCookieManager), public CookieManager { public: CARAPI SetAcceptCookie( /* [...
[ "chen.yunzhi@kortide.com" ]
chen.yunzhi@kortide.com
074d9afdbca931dab2d0776ab45a5aca41c4ec67
0fb70d4dc8e3fbbd9233a26094976947c56f1f34
/HackerRank Problems/Solve_Me_First.cpp
532a357a8b488fdc92a12a6446673260f017b582
[]
no_license
ahmedemad9/CPP
86831b5554cfc922576e922b2e8eab92a8cb87ab
2791f05684d9c43c5ddd4f43ff72b4883ee056fc
refs/heads/main
2023-03-05T01:42:44.465075
2021-02-15T19:54:57
2021-02-15T19:54:57
339,190,356
0
0
null
null
null
null
UTF-8
C++
false
false
319
cpp
#include <cmath> #include <cstdio> #include <vector> #include <iostream> #include <algorithm> using namespace std; int solveMeFirst(int a,int b); int solveMeFirst(int a, int b) { return(a+b); } int main() { int num1, num2; int sum; cin>>num1>>num2; sum = solveMeFirst(num1,num2); cout<<sum; return 0; }
[ "noreply@github.com" ]
noreply@github.com
f8311ccca6742349d7a47425b23a71a23ca5a89e
aac8888a3258a2dc310fcc9de20e9b12ca3c1469
/main.cpp
e9344b6768c151f89e1ba7991e43dd0a63750b63
[]
no_license
data1213/temp_repository
b182189e696ca3f53c7ff6acb03a2a83b3dbc7d1
cd0eda3393c4febec93da01cc3fc3705c306a700
refs/heads/master
2020-05-19T07:31:46.051803
2019-05-04T14:42:26
2019-05-04T14:42:26
184,900,143
0
0
null
null
null
null
UTF-8
C++
false
false
245
cpp
#include "mainwindow.h" #include <QApplication> int main(int argc, char *argv[]) { QApplication a(argc, argv); // 主窗口对象 MainWindow w; //显式主窗口 w.show(); //进入阻塞模式 return a.exec(); }
[ "noreply@github.com" ]
noreply@github.com
50dda313388f2c191bcdb39d797f811a64b4a113
8f01f1f8003cbc0ad91ae1c28aa3bac7eba8e477
/src/game/server/ai_speech.cpp
19b03218d64311f27ad8605cbd9f2f646e16db50
[]
no_license
Demez/demez_source_2013
078aa1e7a64fe773f061ced1e9718320f377c6ba
8bc82ca51ed8716dc742f96fff7283e116ed8d1c
refs/heads/master
2020-06-27T22:32:02.598265
2020-05-05T02:20:41
2020-05-05T02:20:41
200,069,527
0
1
null
null
null
null
UTF-8
C++
false
false
26,689
cpp
//========= Copyright Valve Corporation, All rights reserved. ============// // // Purpose: // // $NoKeywords: $ //=============================================================================// #include "cbase.h" #include "ai_speech.h" #include "game.h" #include "engine/IEngineSound.h" #include "KeyValues.h" #inclu...
[ "demizexp@gmail.com" ]
demizexp@gmail.com
ff0ef350ed9bee28b7b87248c81d45636e86a859
ada0e80868447865811b0098381db0d43dd63852
/ProgrammingPractice/Code/C++ Learning/Functors/Example3.cpp
ab6bd1d56bcba9ad178c4d345fca8ab830d77cd0
[]
no_license
phantom7knight/ProgrammingPracticeSamples
a4bc2fd9fbfc94dbb36ab3e1bfff88c3405df7ab
a13db3ca2bc8ac7af2b87703908455a3d97b2dfe
refs/heads/master
2023-08-01T01:40:57.933518
2021-09-17T04:38:59
2021-09-17T04:38:59
250,716,167
0
0
null
null
null
null
UTF-8
C++
false
false
1,531
cpp
#include "../../../Helper Functions/Helper.hpp" //================================================================================================= //Lambda function example //================================================================================================= int main() { int m = 0; int n = 0; i...
[ "mail2rohitolety@gmail.com" ]
mail2rohitolety@gmail.com
8296d686fa7a1716a2d20c01b4352e7a2d1eafe1
cf64d8d2d02661f0635b6e44c4d0903965eebe2e
/Round 630 (Div. 2)/A.cpp
293a7b2bc506c778c47d66c1247586ef0726fc7b
[]
no_license
LavishGulati/Codeforces
469b741855ce863877e0f6eb725bbe63bef0b91b
59756c87e37f903a0e8c84060478207d09b1bad2
refs/heads/master
2023-08-30T22:46:23.533386
2023-08-21T11:26:18
2023-08-21T11:26:18
145,226,865
0
0
null
null
null
null
UTF-8
C++
false
false
1,158
cpp
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<long long, long long> pll; typedef pair<int, int> pii; typedef pair<int, bool> pib; #define pb push_back #define umap unordered_map #define uset unordered_set #define f first #define s second #define mp make_pair #define all(x) x.begin()...
[ "lavish00gulati@gmail.com" ]
lavish00gulati@gmail.com
ee72e5310eb0b5d0790d7b26cfeb640d207fe90f
fc94c4115d2382c75bc7f9c3255fe055864bb8be
/src/test/testutil.cpp
e4c7204a2d56421525cd5bbc005e98f50c362869
[ "LicenseRef-scancode-unknown-license-reference", "MIT" ]
permissive
cenut/ilcoin-master
21b4bad92a094df5a24226686a3408e0c5680cba
8bfc6f7e5e23bcf35840e1988bf19ec6096be9c2
refs/heads/master
2020-07-09T16:58:22.347829
2019-08-23T16:13:03
2019-08-23T16:13:03
204,027,887
0
1
null
2019-08-23T15:46:33
2019-08-23T15:46:32
null
UTF-8
C++
false
false
300
cpp
// Copyright (c) 2009-2016 The Ilcoin Core developers // All Rights Reserved. Ilgamos International 2017© #include "testutil.h" #ifdef WIN32 #include <shlobj.h> #endif #include <boost/filesystem.hpp> boost::filesystem::path GetTempPath() { return boost::filesystem::temp_directory_path(); }
[ "OTUS_MAC@OTUS-MAC.local" ]
OTUS_MAC@OTUS-MAC.local
d16b6bdc5de7df932f7066dfd19a6ba549dbc5b7
39e4103c8e217cae8a95f1067de08cc864d9c007
/project/shape/cone.cpp
927be1ed7822108ea100c90ef5d289cd56ca5db1
[]
no_license
jfreilich/CS123-Final
8924eb5e7befd4abed3037ddce1dfbb04260d50b
04adb1ce2912d8533c64175f068ba509ce1c3883
refs/heads/master
2020-06-13T23:05:18.873322
2012-12-17T04:19:46
2012-12-17T04:19:46
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,523
cpp
#include "cone.h" #include "Shape.h" Cone::Cone() :Shape(){ } void Cone::normal_vector(double points[9], double normal[9]){ double rt5=pow(5.0,0.5); for(int i =0;i<3;i++){ double x=points[3*i]; double y=points[3*i+1]; double z=points[3*i+2]; double r=pow(x*x+z*z,0.5); i...
[ "jfedor@cs.brown.edu" ]
jfedor@cs.brown.edu
d6bb8d4c4ce15fb7d5fd9774ce73bbe419ab9455
da00f367cf627944bf2e70fde1ac740c9cd50f42
/windows_ce_4_2_081231/WINCE420/PRIVATE/SERVERS/UPNP/UPNPCAPI/upnpcapi.cpp
9f862334dc8f5d3db80c2f528c854c7c60b7803e
[]
no_license
xiaoqgao/windows_ce_4_2_081231
9a5c427aa00f93ca8994cf80ec1777a309544a5d
2e397f2929a998e72034e3a350fc57d8dc10eaa9
refs/heads/master
2022-12-21T20:19:38.308851
2020-09-28T19:59:38
2020-09-28T19:59:38
null
0
0
null
null
null
null
UTF-8
C++
false
false
12,096
cpp
// // Copyright (c) Microsoft Corporation. All rights reserved. // // // This source code is licensed under Microsoft Shared Source License // Version 1.0 for Windows CE. // For a copy of the license visit http://go.microsoft.com/fwlink/?LinkId=3223. // #include <windows.h> #include <ssdppch.h> #include <upn...
[ "benjamin.barratt@icloud.com" ]
benjamin.barratt@icloud.com
0962c90609a2041754ed0bc8073e06e11da3991f
cce5e3f708b383ec64ba2f6b5367fd928a061e28
/LogReg.cpp
abae7c48e319cf1fccc7b8669d8249ea557e9912
[]
no_license
15831944/CPP_Machine_Learning
a5752a2987f9deb5678445fa574a9b56662833c5
d6c6cbb0ae38455d3b3198d909359e927284a5a6
refs/heads/master
2023-03-20T19:09:37.402013
2019-11-06T05:08:23
2019-11-06T05:08:23
null
0
0
null
null
null
null
GB18030
C++
false
false
3,902
cpp
#include "MatrixOpe.h" /** 梯度下降算法,主要是确定负梯度方向,步长,采用迭代的思想迭代n至收敛, 当目标函数是凸规划问题,那么局部最小值就是全局最小值 **/ int gradAscent_Log(Matrix x,Matrix y) { if(y.col!=1) { cout<<"logReg is two class"<<endl; return -1; } Matrix weights(x.col,y.col,0.1,"T"); Matrix xT = x.transposeMatrix(); float alph...
[ "gitea@fake.local" ]
gitea@fake.local
99c70f998479ca640799ec4eafde3120a5b82cc3
7939ba0be25a0819f1ab9bbd2510f4c865d3cc31
/src/inventoryController.cpp
27da9ec01ebbc4db22ce71fb1d642d72cf90f4af
[]
no_license
CaptainGobelin/BGS-dev
05697f34b4685a5b3c798d12c3ef86fc75cd2537
5dd7a0a17602943204035945effff3775df97e92
refs/heads/master
2021-01-01T05:47:48.736326
2014-09-23T12:52:10
2014-09-23T12:52:10
null
0
0
null
null
null
null
UTF-8
C++
false
false
544
cpp
#include "headers/inventoryController.h" InventoryController::InventoryController() {} int InventoryController::launch(Character &character) { //Juste display the inventory until you press I, Escape or Close inventoryScreen.display(character); GameInput input = this->inventoryScreen.recupInput(); while (input.get...
[ "captaingobelin@gmail.com" ]
captaingobelin@gmail.com
2cf8466c3192a2e55776bd65f0658c5bcc516aad
7481cd579dbd72999141a2533cfab5414a9af059
/src/training/actions/activate_action.h
826ee2a4c8b9e2d9049f6e62fbd45e3e24ac4fe3
[]
no_license
Omegastick/bots
36d9c99ede06aed54fc66b6a8bc0b493924e3c34
25342bbeec18c228bd1ec5350573a1e4bee11337
refs/heads/master
2022-04-13T20:36:46.847747
2020-04-14T12:09:07
2020-04-14T12:09:07
150,558,810
1
1
null
null
null
null
UTF-8
C++
false
false
282
h
#pragma once #include "training/actions/iaction.h" namespace ai { class IActivatable; class ActivateAction : public IAction { public: ActivateAction(IActivatable *module); ~ActivateAction(); virtual void act(std::vector<int> flags); IActivatable *module; }; }
[ "omegastick@hotmail.co.uk" ]
omegastick@hotmail.co.uk
1ca5bc0c1d5aea44940cc5cba8ca114e7e84ba26
26fc2b20f1e732b7902a261e359476e1a9995cc9
/FirstGame/Score.h
6d5217da0f930bb72f477b2ce9859438a0dac11f
[]
no_license
Astromonomical/Qt-Projects
738274f1332fcc60efd84c913eedb63284d31a4f
df87bc250d8fdd13c2c46857dcd425d44dc55ee9
refs/heads/master
2023-07-15T09:40:39.832476
2021-08-24T21:09:59
2021-08-24T21:09:59
null
0
0
null
null
null
null
UTF-8
C++
false
false
212
h
#pragma once #include <QGraphicsTextItem> #include <QFont> class Score : public QGraphicsTextItem { public: Score(QGraphicsItem *parent=Q_NULLPTR); void increase(); int getScore(); private: int score; };
[ "scottsimmons345@gmail.com" ]
scottsimmons345@gmail.com
13057dd1dd941d7691a0060306fd0ef213fcf9b0
b5106297fd9fe8e77cd6466ce6402fcf5d452c08
/useranalysis/online5_sync/src/myanalysis.cc
6aa8d1c0a8f052b71c97c307de351797e56b9a0a
[]
no_license
vihophong/brikenmacros-1
c8b1b7907987d93f0b79c8bb93f301c4e82bb82f
1162c1814668586bc3c0b94e2aaa6072c7717c22
refs/heads/main
2023-06-15T13:30:40.185037
2021-04-29T10:33:30
2021-04-29T10:33:30
null
0
0
null
null
null
null
UTF-8
C++
false
false
14,828
cc
/* ************************ DO NOT REMOVE ****************************** */ #include <iostream> #include <pmonitor/pmonitor.h> #include "myanalysis.h" #include <time.h> #include <libDataStruct.h> #include <bitset> #include <stdint.h> #include <vector> #include <map> #include <TSystem.h> #include <TROOT.h> #include ...
[ "hophongmc@gmail.com" ]
hophongmc@gmail.com
3b9b1332878914cd0f4e98fdd0e045c1fcae691c
00e69a7bc07b52878fbc43679f83dac715b5c7a9
/leetcode_solved/[editing]leetcode_1154_Day_of_the_Year.cpp
21f4d16891d4e37d4cfc4090cf7916dee3db55c8
[]
no_license
Ghost-2019/Algorithm
0589e3017c76d312d26e3433498379e75ad975fd
e4421bf5e900ff5fbe3035456b66bd18f0c30bbe
refs/heads/master
2022-04-17T00:31:04.963031
2020-04-12T06:16:21
2020-04-12T06:16:21
258,400,595
1
0
null
2020-04-24T03:59:37
2020-04-24T03:59:36
null
UTF-8
C++
false
false
75
cpp
class Solution { public: int dayOfYear(string date) { } };
[ "1460018362@qq.com" ]
1460018362@qq.com
d0ab55ffac5766c41bd410c81256d02593f556be
a5f35d0dfaddb561d3595c534b6b47f304dbb63d
/Source/BansheeCore/RenderAPI/BsTextureView.cpp
29a91b9b1c7fab699d9cae981e6e1205e96a1e41
[]
no_license
danielkrupinski/BansheeEngine
3ff835e59c909853684d4985bd21bcfa2ac86f75
ae820eb3c37b75f2998ddeaf7b35837ceb1bbc5e
refs/heads/master
2021-05-12T08:30:30.564763
2018-01-27T12:55:25
2018-01-27T12:55:25
117,285,819
1
0
null
2018-01-12T20:38:41
2018-01-12T20:38:41
null
UTF-8
C++
false
false
1,078
cpp
//********************************** Banshee Engine (www.banshee3d.com) **************************************************// //**************** Copyright (c) 2016 Marko Pintera (marko.pintera@gmail.com). All rights reserved. **********************// #include "RenderAPI/BsTextureView.h" #include "Image/BsTexture.h" nam...
[ "bearishsun@gmail.com" ]
bearishsun@gmail.com