blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
201
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
7
100
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
260 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
11.4k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
17 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
80 values
src_encoding
stringclasses
28 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
8
9.86M
extension
stringclasses
52 values
content
stringlengths
8
9.86M
authors
listlengths
1
1
author
stringlengths
0
119
838dbe78f1e3943ef2d9b67fc4fb31505fc6dfd2
8e09889e156b37d025e96b4d6ab8357bad382042
/source/source_game_baocao/SourceGame/Sound.cpp
10d4c184813499790e4b56e7dcdac2f1fd14c709
[]
no_license
hnqtin/CastleVania
5e6d36189279e5ddc969eb806a3b06718443dcdf
39715eb0cc780abe092b1e9c82fba108fa7b8cd1
refs/heads/master
2020-03-28T11:04:04.651190
2018-08-21T15:35:26
2018-08-21T15:35:26
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,773
cpp
#include "Sound.h" #if MEMORY_LEAK_DEBUG == 1 #include <vld.h> #endif WAVEFORMATEX Sound::bufferFormat_; DSBUFFERDESC Sound::bufferDescription_; LPDIRECTSOUND8 Sound::audioHandler_; HWND Sound::windowsHandler_; // ----------------------------------------------- // Name: T6_Sound::T6_Sound() // Desc: Get the audio Na...
[ "thangdang96@ea7db802-35ff-44dd-bbf9-911a299f04d8" ]
thangdang96@ea7db802-35ff-44dd-bbf9-911a299f04d8
c42dd04555194bcc627b95c5d1fadc5615ba9f31
499a4f2c530023a39ed7a0d2d6077d570c37e651
/SDK/RoCo_CinematicCamera_structs.hpp
f1259d44f4d6410b120cdacd52a7e253d05c73ad
[]
no_license
zH4x/RoCo-SDK
e552653bb513b579ab0b1ea62343365db476f998
6019053276aecca48b75edd58171876570fc6342
refs/heads/master
2023-05-06T20:57:27.585479
2021-05-23T06:44:59
2021-05-23T06:44:59
null
0
0
null
null
null
null
UTF-8
C++
false
false
10,326
hpp
#pragma once // Rogue Company (0.59) SDK #ifdef _MSC_VER #pragma pack(push, 0x8) #endif #include "RoCo_Basic.hpp" #include "RoCo_CinematicCamera_enums.hpp" #include "RoCo_Engine_classes.hpp" #include "RoCo_CoreUObject_classes.hpp" namespace SDK { //------------------------------------------------------------------...
[ "30532128+pubgsdk@users.noreply.github.com" ]
30532128+pubgsdk@users.noreply.github.com
3233a689f641bca304706af614c07ffbac535dd3
539c347f5c04ee50cfb5626f6e78f75026fe6be8
/AbstractFactory/AbstractFactory/MarinaraSauce.h
1d5d48ef4e5411f85215d2adc8887d3889ab5008
[]
no_license
fanghao6666/HeadFirstDesignPattenC-
46e8a34578df26568af87082760e2efa1f01d858
048311f2590d106ca88d28614576295b3aaa57df
refs/heads/master
2020-07-29T19:46:59.794218
2019-09-26T10:39:48
2019-09-26T10:39:48
209,937,452
0
1
null
null
null
null
UTF-8
C++
false
false
72
h
#pragma once #include "Sauce.h" class MarinaraSauce : public Sauce { };
[ "371729374@qq.com" ]
371729374@qq.com
351a25e3cdba2f63ca36aa1ac1b33a21f449e460
7487baa200db22dea823989ac539a31f4d5d784f
/src/Modules/Module.h
ba5c5b57aa445e4e7729c37f6fdd247ac485cc10
[]
no_license
korbdev/Krybot
ef2bc0c1cb0c076e02f00cf1072d38b88e8b4516
4da696435ba87896802a4e91452ed5c6df965bbd
refs/heads/master
2016-08-10T09:00:56.004546
2015-07-07T01:06:21
2015-07-07T01:06:21
36,465,000
0
0
null
null
null
null
UTF-8
C++
false
false
667
h
/* * Module.h * * Created on: 09.06.2015 * Author: rkorb */ #ifndef MODULE_H_ #define MODULE_H_ #include <string> #include <Communication/Message.h> #include <Communication/Connection.h> using namespace std; class Module{ protected: Connection* connection; bool running; thread t; public: Module():con...
[ "mail@rudolfkorb.de" ]
mail@rudolfkorb.de
07deee6abbde629d0944646dde674d15ebe82955
3ab8ea4fafe88677ae9c5c4177b54a5ae5e2fbbf
/双向链表/双向链表/DList.cpp
ae2dc28e93f8df5275cd93745eb4b0238914ab29
[]
no_license
ChunGang5/mygit
aed05fb61798c90edcebf0f6eadf530a1dc58e1f
5dd29a6404cc94ed04806cf00e71962484cc52c4
refs/heads/master
2021-07-18T05:20:53.400038
2020-06-11T14:48:07
2020-06-11T14:48:07
171,126,954
2
0
null
null
null
null
GB18030
C++
false
false
3,257
cpp
#include "DList.h" #include<assert.h> DListNode* BuyDListNode(int val) { DListNode* newNode = (DListNode*)new(DListNode); if (NULL == newNode) { assert(0); return NULL; } newNode->next = NULL; newNode->prev = NULL; newNode->val = val; return newNode; } DListNode* CreatDList() { DListNode* head = BuyDLis...
[ "1330431376@qq.com" ]
1330431376@qq.com
d78e46a8adf674edf6f182ddf4f50577125c33a6
5c059952f18d77441381e02632c531016b061ba6
/enbsim/config.h
578ec9cc180f941e5d388efb95e2987661b1ec5f
[ "Apache-2.0" ]
permissive
OpenNetworkingFoundation/xranc
24aaa38f4c5cb3cbf13273772616914f657a7e81
4ccd05599332ed65265ec6e8dd2f81a2cd29128f
refs/heads/master
2020-08-04T16:00:25.816598
2020-01-27T23:03:46
2020-01-27T23:03:46
212,194,822
3
3
Apache-2.0
2020-01-27T23:03:47
2019-10-01T20:37:24
C
UTF-8
C++
false
false
1,678
h
/* * Copyright 2017-present Open Networking Foundation * * 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 appli...
[ "shad@opennetworking.org" ]
shad@opennetworking.org
c76f87f3cf089f67347eb11a9c9094ffc2095e43
fe34aca1ddeeee075cc6d0b6ba726af9a64c1a16
/trunk/SMVS/StackWalker.h
48ea240ee38c6f26f8e1e52854aff8fee26f6118
[]
no_license
LearnerJason/SMVS
0c558874a27097940101ac6cec928f48e4c765c8
8105b2a8403b01ae467660cd5d6ea27e2ec2e5b2
refs/heads/master
2022-12-05T09:53:40.216127
2020-08-04T03:22:45
2020-08-04T03:22:45
284,647,830
2
0
null
null
null
null
UTF-8
C++
false
false
10,287
h
#ifndef __STACKWALKER_H__ #define __STACKWALKER_H__ #if defined(_MSC_VER) /********************************************************************** * * StackWalker.h * * * * LICENSE (http://www.opensource.org/licenses/bsd-license.php) * * Copyright (c) 2005-2009, Jochen Kalmbach * All rights ...
[ "to_jasoncheng@163.com" ]
to_jasoncheng@163.com
c0236c9eddc23f8edd86ffac9374d2cd9b4c1c2d
9ac8e8c2287ab7d634a82fd6a529bfb68a06f3fb
/Ch.19/Sketcher/Elements.cpp
3a2d1efa55f54fdcb602e7158d688431441a8cd4
[]
no_license
ktjones/BVC2010
9fedc88e3fc259258db064fedc434e4be8f8a682
5610c380a624e183cb21718a72a2621971fe6fde
refs/heads/master
2021-01-09T23:42:17.416378
2014-05-01T02:10:03
2014-05-01T02:10:21
null
0
0
null
null
null
null
UTF-8
C++
false
false
10,917
cpp
// Element.cpp : implementation file // #include "stdafx.h" #include "Sketcher.h" #include "Elements.h" #include <algorithm> #include <cmath> IMPLEMENT_SERIAL(CElement, CObject, VERSION_NUMBER) IMPLEMENT_SERIAL(CLine, CElement, VERSION_NUMBER) IMPLEMENT_SERIAL(CRectangle, CElement, VERSION_NUMBER) IMPLEMENT_SERIAL(CC...
[ "todd@ktjones.net" ]
todd@ktjones.net
b2d0766c593d87d6f3a89f691d614a6e7cc4c7bd
3b31bbc1074ba61c115209156413ffdf419cf9f8
/newnnfw/tools/nnapi_quickcheck/tests/gather_1.cpp
0d5b30eb6fa9b4b3e36fb344dffd250526b43957
[ "MIT", "Apache-2.0" ]
permissive
mojunsang26/Tizen-NN-Runtime
caa35a5aa8137fc8dfc376805c92ac333be9c06b
ff50aa626ef101483d03550533ac7110ddca5afc
refs/heads/master
2020-04-09T07:19:22.780932
2019-10-30T02:31:03
2019-10-30T02:31:03
160,150,527
0
0
Apache-2.0
2018-12-03T07:34:44
2018-12-03T07:34:44
null
UTF-8
C++
false
false
4,167
cpp
/* * Copyright (c) 2018 Samsung Electronics Co., Ltd. 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...
[ "lazineer@gmail.com" ]
lazineer@gmail.com
257233edcd09adde9ce833694a90de75f27c60ad
b9ddbb0e5e70d5ea428be072f40d9d668f563039
/src/constraint/constraint-equality.cpp
6a8eb459dfdee756c70c36f1ce92d264e7f70c60
[]
no_license
jkw0701/HQP_basic
e3cb191432a1d62adbd39ece670d51b11f515aba
298918c306e48d711e2c54acada25b1d375f58f1
refs/heads/master
2022-11-30T01:28:01.176926
2020-08-04T08:30:01
2020-08-04T08:30:01
284,919,216
2
1
null
null
null
null
UTF-8
C++
false
false
1,862
cpp
#include "constraint/constraint-equality.h" using namespace HQP::constraint; ConstraintEquality::ConstraintEquality(const std::string & name) : ConstraintBase(name) {} ConstraintEquality::ConstraintEquality(const std::string & name, const unsigned int rows, const unsigned int cols) : ConstraintBase(name, rows, c...
[ "jkw0701@snu.ac.kr" ]
jkw0701@snu.ac.kr
cb46bc0dc0eae5912153f7b4629927f6ed376fb6
873a38a120108e3c57c97cbd478dc8786adc7199
/Work/Direct3D 11/Code/Source/DXTextRenderer.cpp
34b3624eaabc8dd9cb7a53d593f4bbfbe000da87
[]
no_license
ab316/TrumpSuit
111106b29b3df2075e71de1b11996f92ff50ffb5
bd48d3c0489d66fdab1991aa2baf1ff750452883
refs/heads/master
2020-12-24T13:28:52.586503
2015-07-25T01:31:30
2015-07-25T01:31:30
39,667,523
0
0
null
null
null
null
UTF-8
C++
false
false
7,617
cpp
#include "DXStdafx.h" #include "DXTexture.h" #include "DX3DDriver.h" #include "DXGraphicsDriver.h" #include "DXBitmapFontFile.h" #include "DXSprite.h" #include "DXTextRenderer.h" namespace DXFramework { // DXFramework namespace begin CDXTextRenderer::CDXTextRenderer() : m_p3dDriver(nullptr), m_pBitmapFont...
[ "abdullahbaig456@gmail.com" ]
abdullahbaig456@gmail.com
4003049faa16098a8363e4045de9e3302afbf00e
6702a19fb2dded0e8cfa09870b20d86259b085d2
/SDKs/NoesisGUI/Include/NsGui/Underline.h
09bb961191f0e4211a1a8bfb58baf9552ff6c86e
[]
no_license
whztt07/IceCrystal
e1096f31b1032170b04c1af64c89109b555b94d0
288e18d179d0968327e29791462834f1ce9134e6
refs/heads/master
2023-08-31T15:02:01.193081
2021-10-06T12:17:44
2021-10-06T12:17:44
null
0
0
null
null
null
null
UTF-8
C++
false
false
993
h
//////////////////////////////////////////////////////////////////////////////////////////////////// // NoesisGUI - http://www.noesisengine.com // Copyright (c) Noesis Technologies S.L. All Rights Reserved. //////////////////////////////////////////////////////////////////////////////////////////////////// #ifn...
[ "1326050796@qq.com" ]
1326050796@qq.com
08e6d0189f6ff9f1910095d62da33d2dfb7ddd07
80f52a93aa300f0b7180ace7e42796232a80f235
/thrift/compiler/test/fixtures/complex-struct/gen-cpp2/module_metadata.cpp
408039db827dca5c675a7710892e8ae5fdbb6d3c
[ "Apache-2.0" ]
permissive
joway/fbthrift
b23b3299797cabf3e7f2367ce57f846f3257f170
e0d568ec7084502c653537a50f150428786d8037
refs/heads/master
2023-06-28T05:57:17.911824
2020-11-15T09:42:29
2020-11-15T09:43:48
313,297,638
0
0
Apache-2.0
2020-11-16T12:50:25
2020-11-16T12:39:03
null
UTF-8
C++
false
false
38,132
cpp
/** * Autogenerated by Thrift for src/module.thrift * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ #include <thrift/lib/cpp2/gen/module_metadata_cpp.h> #include "thrift/compiler/test/fixtures/complex-struct/gen-cpp2/module_metadata.h" namespace apache { namespace thrift { na...
[ "facebook-github-bot@users.noreply.github.com" ]
facebook-github-bot@users.noreply.github.com
9c63adc4b5e137aa6394067a649335fbe5291387
b74dea911cf644ab1b6a6c8c448708ee09e6581f
/SDK/platform/nxp_kinetis_e/sys/system_SKEAZ1284.cpp
1c692bbdca6d9fd1eb2bd129a13ccb1d1feaa9a0
[ "Unlicense" ]
permissive
ghsecuritylab/CppSDK
bbde19f9d85975dd12c366bba4874e96cd614202
50da768a887241d4e670b3ef73c041b21645620e
refs/heads/master
2021-02-28T14:02:58.205901
2018-08-23T15:08:15
2018-08-23T15:08:15
245,703,236
0
0
NOASSERTION
2020-03-07T20:47:45
2020-03-07T20:47:44
null
UTF-8
C++
false
false
11,398
cpp
/* ** ################################################################### ** Compilers: ARM Compiler ** Freescale C/C++ for Embedded ARM ** GNU C Compiler ** GNU C Compiler - CodeSourcery Sourcery G++ ** IA...
[ "morgoth.creator@gmail.com" ]
morgoth.creator@gmail.com
d1d036fb39778990e23aef9ae6c9ca025aacbf1d
cdea87e9889ce65e81d66c3f6df3199747c86609
/src/LZ4MetadataOnGPU.cpp
e9db96eee99c19795f7995c59556bcfd25a06000
[]
permissive
nsakharnykh/nvcomp
ebdfc4fbf9fcf2cb2c2b931e163cca65be1794f5
8640ba9d4f4916ff5e12fbbe3b03617518f551d4
refs/heads/main
2023-04-23T03:09:15.309774
2020-12-19T18:36:01
2020-12-19T18:36:01
323,417,590
0
0
BSD-3-Clause
2020-12-21T18:31:31
2020-12-21T18:31:31
null
UTF-8
C++
false
false
5,012
cpp
/* * Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * Redistributions of source code must retain the above copyright * notice, this list of co...
[ "dlasalle@nvidia.com" ]
dlasalle@nvidia.com
8e62f292341ad77836e946c768639c59d110ecfb
da9234381bb80e40ed777891c069d7b39e504244
/algorithm/geometryutils.h
31387a62b801a0204da6035660b9047b12fb4dfd
[]
no_license
JdeRobot/slam-visual_markers
c9ea9388f23f5eb4409a7fe22e871adc19774e74
0dee6fd7089faf7433a5cb8803fe33d9b2a3fcb0
refs/heads/master
2021-01-01T16:47:46.230412
2018-10-08T20:31:34
2018-10-08T20:31:34
97,924,083
1
0
null
2018-10-08T20:26:24
2017-07-21T08:19:36
C
UTF-8
C++
false
false
5,988
h
#ifndef GEOMETRYUTILS_H #define GEOMETRYUTILS_H #include <progeo/progeo.h> #include <opencv2/calib3d/calib3d.hpp> #include <eigen3/Eigen/Dense> namespace Ardrone { class Pose { private: HPoint3D m_Position; HPoint3D m_BaseFoa; HPoint3D m_Foa; float m_Roll; float m_P...
[ "samuel.martinm@gmail.com" ]
samuel.martinm@gmail.com
724671b4c301fb76ed99b6840b77cadb230d2ebf
ad5b72656f0da99443003984c1e646cb6b3e67ea
/src/common/transformations/tests/common_optimizations/convert_nms_gather_path_to_unsigned_test.cpp
629e9079522b62429d74bdf0039c0c371f4ddb53
[ "Apache-2.0" ]
permissive
novakale/openvino
9dfc89f2bc7ee0c9b4d899b4086d262f9205c4ae
544c1acd2be086c35e9f84a7b4359439515a0892
refs/heads/master
2022-12-31T08:04:48.124183
2022-12-16T09:05:34
2022-12-16T09:05:34
569,671,261
0
0
null
null
null
null
UTF-8
C++
false
false
11,108
cpp
// Copyright (C) 2018-2022 Intel Corporation // SPDX-License-Identifier: Apache-2.0 // #include <gtest/gtest.h> #include <ngraph/function.hpp> #include <ngraph/opsets/opset8.hpp> #include <ngraph/pass/manager.hpp> #include <transformations/common_optimizations/convert_nms_gather_path_to_unsigned.hpp> #include <transf...
[ "noreply@github.com" ]
noreply@github.com
2b50b1e873f60dbf4c2276cbf79673ba6e1880ed
ea8ca702551a1dfd09039a56ccb04692508829f6
/src/rpcserver.h
dfd20f96e5ec93dcabe4c9744c04d205e892679c
[ "MIT" ]
permissive
freecreators/freecreateors
04c589ec24272feb372c37c5da6cfb28db60db66
ef29609c99d4dddba761c964374cfa0e21939f23
refs/heads/master
2021-01-22T11:28:19.012441
2017-05-29T02:19:07
2017-05-29T02:19:07
92,698,667
3
0
null
null
null
null
UTF-8
C++
false
false
13,689
h
// Copyright (c) 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. #ifndef _BITCOINRPC_SERVER_H_ #define _BITCOINRPC_SERVER_H_ 1 #include "uint256.h" #in...
[ "lenovo@LAPTOP-D9O5PPS6" ]
lenovo@LAPTOP-D9O5PPS6
be9f0292fa62c0258bc478e80e7e5b8950d681fe
2a6c97e4bc7e329ae5fcea951c996d20c461fd74
/ExamplesAndPractice/FirstCPP/FirstCPP/main.cpp
a2b35790a16229f014e55a19d551cf1b05cbee1c
[]
no_license
EdgarVi/CptS-122
690d5760ffcd25fa37c7fbd13980d063d6f13d35
daddf23bfc473191df3d754ff3f74f283b0a052a
refs/heads/main
2023-01-23T18:47:50.792774
2020-12-10T23:56:57
2020-12-10T23:56:57
320,418,852
0
0
null
null
null
null
UTF-8
C++
false
false
1,298
cpp
#include <iostream> #include <string> using std::cin; using std::cout; using std::endl; using std::string; /* It is poor programming practice to use, using statements */ int function(int num[]); /* Function overloading? */ int add(int n1, int n2); double add(double n1, double n2); string add(string s1, string s2);...
[ "edgar.villasenor@wsu.edu" ]
edgar.villasenor@wsu.edu
4fd3e1ce27d2910b2e977189be8f93f79513f74f
3a77e7ffa78b51e1be18576f0c3e99048be8734f
/be/src/vec/exprs/vbitmap_predicate.h
bdb3ea2b00e0f7a0c3370159c0162d67604ee515
[ "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
2,356
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
e47be8fc8740fe3e429cae4446c26babe20e894f
7c677ef495a8475a8832ffd2724266c32dd294cd
/lab2_8/main.cpp
bde413d42cedaeade832229c58af4692be7efed4
[]
no_license
Userbot505/Labs_PSTU
0240fe9265fa5ed68d69cdce386b1523b8f8ff18
35cfb4338685d40e99727437956d7c5e0c94b597
refs/heads/master
2022-10-01T17:06:24.959730
2020-06-08T17:48:40
2020-06-08T17:48:40
null
0
0
null
null
null
null
WINDOWS-1251
C++
false
false
1,703
cpp
#include "Vector.h" #include "StVector.h" #include <Windows.h> int main() { SetConsoleCP(1251); // ввод русской кирилицы SetConsoleOutputCP(1251); // вывод русской кирилицы Group g; // доп перем Vector v; // группы StVector stV; // студенты int x; // доп перем string str; // доп перем while (tru...
[ "noreply@github.com" ]
noreply@github.com
fe8ffee7ca39ee12fdaf3b2a9a6dca31ac7ce7d6
3cc352b29b8042b4a9746796b851d8469ff9ff62
/src/kmers/naif_kmer/KmerFreqAffixesMap.h
ed8d32e103d588ee148e9392d279283265fdf78b
[ "BSD-3-Clause", "BSD-2-Clause" ]
permissive
CompRD/BroadCRD
1412faf3d1ffd9d1f9907a496cc22d59ea5ad185
303800297b32e993abd479d71bc4378f598314c5
refs/heads/master
2020-12-24T13:53:09.985406
2019-02-06T21:38:45
2019-02-06T21:38:45
34,069,434
4
0
null
null
null
null
UTF-8
C++
false
false
17,288
h
/////////////////////////////////////////////////////////////////////////////// // SOFTWARE COPYRIGHT NOTICE AGREEMENT // // This software and its documentation are copyright (2011) by the // // Broad Institute. All rights are reserved. This software is supplied // ...
[ "neil.weisenfeld@gmail.com" ]
neil.weisenfeld@gmail.com
00b1646922534b86bbc0eaf7d9715a9de8247c82
f4908233b0dcd8dbd1829d3c8d60d62fe6e6ff93
/billboards.cpp
2be772684d286f13ce1c56c8f5b09b457b07c223
[]
no_license
sachiin/algo-codes
2114b25f9c811814cce1172d10f47638fed5901f
3507099b5a3393a1261a77297c958d8abc0600a5
refs/heads/master
2021-01-17T05:21:00.891821
2013-06-03T20:21:09
2013-06-03T20:21:09
null
0
0
null
null
null
null
UTF-8
C++
false
false
725
cpp
#include<iostream> using namespace std; #include<cstdio> #include<vector> #include<algorithm> #include<climits> int main() { int N,K; cin >> N >> K; long long m; vector<long long> arr; for(int i =0;i<N;i++) { cin >> m; arr.push_back(m); } //vector<vector<long long > >dp(N+1,vector<long long>(K+1,0)); vector<long long> ...
[ "thesachiinn@gmail.com" ]
thesachiinn@gmail.com
d22985714b829204e3c7f16fb74e7e66dcaa0990
46412e20a683a80f6b7462dc12fb6d38a6da4b5d
/hardware/arduino_slave/arduino_slave.ino
a1882e3b964f06813db2a5f5e297e395d5788069
[]
no_license
sattarovvadim/iotmeetup
db09da9a09601879bce110a2755abd81000ba59f
acf9c7e96d48d8661281092cc634985e9c204f14
refs/heads/master
2022-12-15T05:35:24.074401
2020-08-19T16:33:12
2020-08-19T16:33:12
288,719,621
2
0
null
null
null
null
UTF-8
C++
false
false
4,542
ino
#include <Wire.h> #include <ArduinoJson.h> #include <Servo.h> #include "defines.h" // Номера пинов исполнительных узлов #define PIN_IN_PIR_DETECT 2 #define PIN_OUT_SIMPLE_LED 4 #define PIN_OUT_220V_SOCK 3 #define PIN_IN_IS_LIGHT 5 #define PIN_OUT_SONIC_TRIG 8 // Trig дальномера #define PIN_IN_SONIC_ECHO 9 // Echo дал...
[ "v.sattarov@fun-box.ru" ]
v.sattarov@fun-box.ru
8eff97d98c211c264b25689e56cb3d02f51a86ca
c49ea222f9c12b4bc5a318cef0edde7bd80ee289
/BankingSystemV2/LoginForm.cpp
2e2e6dfaabdab75913b97b81a43918c10c007a05
[]
no_license
bradbow/BankingSystem
042179adb46b375abddd0166e344fed666ff44f2
36d4128e3ff613f3424d1a28d6e9f2cb9cd6b3e9
refs/heads/master
2021-01-01T18:06:38.370763
2011-10-30T13:10:50
2011-10-30T13:10:50
2,629,659
2
0
null
null
null
null
UTF-8
C++
false
false
44
cpp
#include "StdAfx.h" #include "LoginForm.h"
[ "n6532365@.qut.edu.au" ]
n6532365@.qut.edu.au
2c045ea13640c538c36c641833d529bdc993d0c7
0a83e23b76d18a7dd7fc403b058bbb2bd7444a05
/cli.hpp
13a2da52df96932810978fcd86daa7d4045a3bb2
[]
no_license
orycohen/hole_filling
6af4b0208d4aa1699f425315c56044dc58c94350
8fb5a0fce4c708eb6d5436b7fe4945892ca5c029
refs/heads/master
2022-11-04T17:59:29.742695
2020-06-15T19:29:11
2020-06-15T19:29:11
272,522,048
0
0
null
null
null
null
UTF-8
C++
false
false
313
hpp
#ifndef cli_hpp #define cli_hpp #include <opencv2/opencv.hpp> // This funtion has the responsibility of printing the prompt void printPrompt(); // This function is given a command to execute int executeCommand(char *command); // A small welcome message and explaination. void welcome(); #endif /* cli_hpp */
[ "or.co.blog@gmail.com" ]
or.co.blog@gmail.com
69e4a3448126b94087f6400d38dd32516642656f
15f2d5148f302f2ba716b49cc14ea6dec0fed98c
/msl_expressions/autogenerated/include/Plans/Standards/Own/constraints/OwnStdSingleRobot1467383326416Constraints.h
dbea6640841a61d8f1ebdacfc10d24c9019f874e
[ "MIT" ]
permissive
dasys-lab/cnc-msl
20937039153e3335d36d2c45ac354bee471534e0
e55f40a0baebc754283f5cf130c36e31abf8ee64
refs/heads/master
2021-09-28T18:59:18.962448
2018-05-07T13:47:33
2018-05-07T13:47:33
null
0
0
null
null
null
null
UTF-8
C++
false
false
345
h
#ifndef OwnStdSingleRobotCONSTRAINT_H_ #define OwnStdSingleRobot_H_ #include "engine/BasicConstraint.h" #include <memory> using namespace std; using namespace alica; namespace alica { class ConstraintDescriptor; class RunningPlan; } namespace alicaAutogenerated { } /* namespace alica */ #endif /* OwnStdSin...
[ "cn@das-lab.net" ]
cn@das-lab.net
e50d856feb31ce67d59c187973ed1f17c298b154
8cbc8bf55e9b5cff587aab2d551b7540d5668b7c
/Kernel/JVM/internal/JavaClassFileParser.cpp
c3f170b822d001e8755bd6e363d2287c47a1acce
[]
no_license
mailmindlin/All-The-Mice
d07114c9bc4558572210dada9dd205aeccfd89c7
0757179f50b02462558d40e0c79d134533884f1e
refs/heads/master
2016-09-16T17:18:11.471930
2016-05-06T13:00:19
2016-05-06T13:00:19
42,206,622
1
0
null
2015-09-26T00:28:01
2015-09-09T21:48:02
C
UTF-8
C++
false
false
5,835
cpp
#include "JavaClassFileParser.h" #include <JVM/JavaClass.hpp> #include <JVM/ConstantPoolType.h> namespace JVM { static inline uint32_t get4(void*& p) { uint32_t result = *(reinterpret_cast<uint32_t*>(p)); p += 4; return result; } static inline uint16_t get2(void*& p) { uint16_t result = *(reinterpret_cast<ui...
[ "liamttlyrox@gmail.com" ]
liamttlyrox@gmail.com
0aa1d3fa3f09e66ef13c1f0ce020768fa06cc4bb
c30c3466c34c41b49e8c8b2791e0d44ae6277cb2
/Voronoi Villages/src.cpp
18c027d95a62629f83ef54dfc92addd266119db8
[]
no_license
theAnton-forks/Competitive-Programming-Portfolio
784eb9ff5441f1a81f5501d690f9094698bc34c7
fb3f099d7ecc37b9117d64faa4c1bdf89e1f18d2
refs/heads/master
2022-12-14T03:18:04.941318
2020-09-03T05:22:46
2020-09-03T05:22:46
null
0
0
null
null
null
null
UTF-8
C++
false
false
428
cpp
#include <bits/stdc++.h> typedef long long ll; const int maxn = 1e6 + 1e2; int val[maxn]; int res = 2000000000; int main(){ std::ios::sync_with_stdio(false); int n; std::cin >> n; for(int i = 0; i < n; i++){ std::cin >> val[i]; } std::sort(val, val + n); for(int i = 1; i < n - 1; i++){ res = std::min(...
[ "vlade.maksimovski@gmail.com" ]
vlade.maksimovski@gmail.com
faac80a8063818cc7bd76b25f95ee7d79c5081c9
38b9daafe39f937b39eefc30501939fd47f7e668
/tutorials/2WayCouplingOceanWave3D/EvalResults180628-Eta-ux-uy/26.4/uniform/time
045b77ebeab1324cd11f358ac0c7d95a9fa37f70
[]
no_license
rubynuaa/2-way-coupling
3a292840d9f56255f38c5e31c6b30fcb52d9e1cf
a820b57dd2cac1170b937f8411bc861392d8fbaa
refs/heads/master
2020-04-08T18:49:53.047796
2018-08-29T14:22:18
2018-08-29T14:22:18
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,005
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 3.0.1 | ...
[ "abenaz15@etudiant.mines-nantes.fr" ]
abenaz15@etudiant.mines-nantes.fr
8158e9f1758d6f952fb644477a55fa82de327f1f
785df77400157c058a934069298568e47950e40b
/applications/tools/discrete/curveList2d/curveList2d.cxx
86cafe4ee37d1880f96ef97eac77381258f27ee3
[]
no_license
amir5200fx/Tonb
cb108de09bf59c5c7e139435e0be008a888d99d5
ed679923dc4b2e69b12ffe621fc5a6c8e3652465
refs/heads/master
2023-08-31T08:59:00.366903
2023-08-31T07:42:24
2023-08-31T07:42:24
230,028,961
9
3
null
2023-07-20T16:53:31
2019-12-25T02:29:32
C++
UTF-8
C++
false
false
6,938
cxx
#include <Entity2d_Polygon.hxx> #include <Entity2d_Box.hxx> #include <Geo_ApprxCurve_System.hxx> #include <Geo2d_ApprxCurve.hxx> #include <Pln_Curve.hxx> #include <Global_Timer.hxx> #include <boost/archive/polymorphic_binary_iarchive.hpp> #include <boost/archive/polymorphic_binary_oarchive.hpp> #include <boost/archiv...
[ "aasoleimani86@gmail.com" ]
aasoleimani86@gmail.com
d102592c800e05bde7e119b802f86c66eaec41dd
dbd9dc5fb92e66281c5e4a00e4b44551afebe630
/Practica para PC1/CSatelite.hpp
5599e7ad889610b59dbcddaf8faf08f3855ff2c2
[]
no_license
Diego04s03/PROGRAMACION-II
118e8ab84ae487631e416d68e055a183d36609ce
b5fbb753cd8297d6724f6d15513749898c57f79f
refs/heads/main
2023-04-03T09:53:41.436052
2021-04-15T14:40:04
2021-04-15T14:40:04
352,253,193
3
0
null
null
null
null
UTF-8
C++
false
false
334
hpp
#pragma once #include<iostream> using namespace System; using namespace std; class Satelite { public: Satelite(); ~Satelite(); void mover(int,int); void pintar(); void borrar(); void setX(int); void setY(int); void setDX(int); void setDY(int); void setModelo(char); private: int x, y; int dx, dy; char m...
[ "Diego04s03@gmail.com" ]
Diego04s03@gmail.com
0943c82eae313187ad9b69b9fe201c670a6913ce
1754c9ca732121677ac6a9637db31419d32dbcf1
/dependencies/libsbml-vs2017-release-32/include/sbml/CompartmentType.h
447d54fe4a4fa8bcb45bf1c8d7ddb26cbf38bce7
[ "BSD-2-Clause" ]
permissive
sys-bio/Libstructural
1701e239e3f4f64674b86e9e1053e9c61fe868a7
fb698bcaeaef95f0d07c010f80c84d2cb6e93793
refs/heads/master
2021-09-14T17:54:17.538528
2018-05-16T21:12:24
2018-05-16T21:12:24
114,693,721
3
1
null
2017-12-18T22:25:11
2017-12-18T22:25:10
null
UTF-8
C++
false
false
33,126
h
/** * @file CompartmentType.h * @brief Definitions of CompartmentType and ListOfCompartmentTypes. * @author Ben Bornstein * * <!-------------------------------------------------------------------------- * This file is part of libSBML. Please visit http://sbml.org for more * information about SBML,...
[ "yosefmaru@gmail.com" ]
yosefmaru@gmail.com
d27e677c242187a374f17648f64ec52a07bb801d
875d985b24b3644836a2ba4ff9c0bd0f82b25013
/PA-2/BST and AVL/test3.cpp
8c183d3281b195a5a966319d6d3a8596771354b0
[]
no_license
FarrukhCyber/Data-Structures
3e8a2678911f6f1cff737b839718f9210cc45636
abae5edbb25227d18d148f08a3599a1a744507b6
refs/heads/main
2023-06-02T00:37:55.620705
2021-06-13T20:56:59
2021-06-13T20:56:59
376,631,775
0
0
null
null
null
null
UTF-8
C++
false
false
5,468
cpp
// Test file for AVL Tree Implementation #include <iostream> #include <cstdio> #include <cstdlib> #include <memory> #include "avl.hpp" using namespace std; int marks = 0; int total_values = 25; int values[25] = {55,43,26,82,93,04,39,95,50,6,62,17,21,49,77,5,32,60,88,16,44,72,80,8,36}; int TreeAfterAddition[25] = {4,5,...
[ "noreply@github.com" ]
noreply@github.com
f6943b64be077000749ed3fce1959e84bb7a97a2
768a640567c5e23269f7fe25757cb903d2b19e50
/Ortho.cpp
5294cc85a54b43a0ee3fb04cd57e2f9f93e8e7ec
[]
no_license
schleo13/Orthogonalisation
7803aa529de84ef78f2861d1bd34ea2a8b92ec88
6aab3f25d8cf1c7f0c4a36733946f61014c3c251
refs/heads/main
2023-08-22T17:30:11.248590
2021-10-22T12:17:50
2021-10-22T12:17:50
403,101,673
0
0
null
null
null
null
UTF-8
C++
false
false
8,849
cpp
#include "readMatrix.hpp" template<typename T> T matrixNormInfI(matrix<T> X){ matrix<T>mone (X.size1(),X.size2()); for(int vc = 0; vc < X.size2(); vc++) mone(vc,vc) = 1.0; matrix<T> mm = prod(trans(X),X); mm = mone-mm; vector<T> v(mm.size1()); for(int i = 0; i < mm.size1(); i++){...
[ "noreply@github.com" ]
noreply@github.com
ff773f2862d5276fe8eee35d1839443b7d18ddf5
5de16bedbdabbd552dcebdeec3d2be30b59c80e3
/Invert Binary Tree/solution.cpp
41b4d0596a24e28e11cdff4b2c18929abb33c87a
[]
no_license
kimjaspermui/LeetCode
39f6aa61a27e7bf2aac7de940941ec376f3640e8
c01002206fcc1b3ed35d1ba1e83dffdff5fc16a5
refs/heads/master
2020-12-02T07:51:49.508145
2018-07-15T04:21:48
2018-07-15T04:21:48
96,737,433
0
0
null
null
null
null
UTF-8
C++
false
false
642
cpp
/** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(int x) : val(x), left(NULL), right(NULL) {} * }; */ class Solution { public: TreeNode* invertTree(TreeNode* root) { // if null then retun null if (!root) {...
[ "kmui@ucsd.edu" ]
kmui@ucsd.edu
609467e5b1c03a564a83969072ed7b65012e3bda
979f022aec7a25402fb24a1fcddacb155dfa23cf
/mystarcraft/Client/UIRoot.h
8f377021975104fa7fa8c6e60202454b2bc03aee
[]
no_license
Kimdeokho/mystarproject
e0a2c5a53f767ede5a7c19f7bb532dee227d766e
d4828e807233e6a783e6b3a46be11efda7c2d978
refs/heads/master
2021-04-29T06:19:47.010767
2020-12-16T12:50:46
2020-12-16T12:50:46
78,000,948
0
0
null
null
null
null
UTF-8
C++
false
false
901
h
#pragma once #include "UI.h" class CUIRoot : public CUI { private: typedef list<CUI*>::iterator UI_ITER; list<CUI*> m_uilist; private: D3DXVECTOR2 m_vstart; D3DXVECTOR2 m_vend; float m_init_dt; float m_fspeed; bool m_is_entryanim; bool m_is_exitanim; bool m_entry_complete; bool m_exit_complete; ...
[ "ejzh57@gmail.com" ]
ejzh57@gmail.com
d2b188d7af660ae40295b5006e4af916fbf68aa9
9e3ff9b563d463683b194514f1ddc0ff82129393
/Main/wxWidgets/contrib/src/stc/scintilla/src/ViewStyle.h
fa23db322cd1bef2ef01da368a3f412813f8a698
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
sidihamady/Comet
b3d5179ea884b060fc875684a2efdf6a3ad97204
b1711a000aad1d632998e62181fbd7454d345e19
refs/heads/main
2023-05-29T03:14:01.934022
2022-04-17T21:56:39
2022-04-17T21:56:39
482,617,765
4
0
null
null
null
null
UTF-8
C++
false
false
3,042
h
// Scintilla source code edit control /** @file ViewStyle.h ** Store information on how the document is to be viewed. **/ // Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org> // The License.txt file describes the conditions under which this software may be distributed. #ifndef VIEWSTYLE_H #define VIE...
[ "sidi@lmop-su-e-shp.univ-lorraine.fr" ]
sidi@lmop-su-e-shp.univ-lorraine.fr
e584aec1e0aeb25ad0d3a651e2f277a0165dc345
a38d2dd386d337da5c1336602644efbafa007e9f
/Lab5/Lab5/main.cpp
47ce0eedcc27c84977d78b64a9740b2c9a8373f5
[]
no_license
ShadmanRohan/CSE225_practice
25af41864bf02fb7196b61e0eec568b748ccc6e1
33f8a077baa582edc93571e0459d8672939659f4
refs/heads/master
2020-04-01T23:49:43.249657
2018-10-19T11:56:42
2018-10-19T12:10:42
153,774,815
1
0
null
null
null
null
UTF-8
C++
false
false
1,778
cpp
#include <iostream> //#include "UnsortedType.h" //#include "UnsortedType.cpp" #include "UnsortedType.h" //#include "ItemType.h" //#include "ItemType.cpp" using namespace std; int main() { UnsortedType l; ItemType i[10]; i[0].Initialize(5); i[1].Initialize(7); i[2].Initialize(6); i[3].Initial...
[ "shadmanrohan@gmail.com" ]
shadmanrohan@gmail.com
5b83314ba948430d2311fa251d372abedcde7553
df5e68918b0122502b621ede7298fb3df7875672
/functional_factory/HotDrinkFactory.h
b1c15cb6582b38b546d1beadc3e459b0a4b9d2b8
[]
no_license
DesignPatternWorks/modern_cpp_design_patterns
dcd0d4ff44133a350c7210bdfb43a4e0d7b5ce1f
7812172bd1470d6824bb96bf8e2c5bf1b75688b9
refs/heads/master
2020-06-09T21:51:17.075472
2019-03-11T06:55:59
2019-03-11T06:55:59
null
0
0
null
null
null
null
UTF-8
C++
false
false
616
h
// // Created by lcmscheid on 14-02-2019. // #ifndef FUNCTIONAL_FACTORY_HOTDRINKFACTORY_H #define FUNCTIONAL_FACTORY_HOTDRINKFACTORY_H #include "HotDrink.h" class HotDrinkFactory { public: virtual std::unique_ptr<HotDrink> make() const = 0; }; class TeaFactory : public HotDrinkFactory { public: std::unique_...
[ "lcmscheid@gmail.com" ]
lcmscheid@gmail.com
5fbeb3ed586341aa2aea6cbf3fc4b356c8e559ed
cf47614d4c08f3e6e5abe82d041d53b50167cac8
/CS101_Autumn2020-21/Fibonacci/150_fibonacci.cpp
8218485ff0705aacb1ea99569ea3204300bcd299
[]
no_license
krishna-raj007/BodhiTree-Annotation
492d782dffe3744740f48c4c7e6bbf2ee2c0febd
28a6467038bac7710c4b3e3860a369ca0a6e31bf
refs/heads/master
2023-02-28T18:23:05.880438
2021-02-07T17:55:33
2021-02-07T17:55:33
299,254,966
0
0
null
null
null
null
UTF-8
C++
false
false
290
cpp
#include<simplecpp> main_program{ //Write your code here long long int n,k; cin>>n; cin>>k; long long int p=1,p1=0; for (int i=1; i<=n; i++){ p1=p1%k; cout<<p1<<endl; long long int temp=p; p=p+p1; p1=temp; } }
[ "krishna_raj007@yahoo.in" ]
krishna_raj007@yahoo.in
7aca81da86e890d0f75fe2666027737e71bc0afc
b209ace562b2fdcfc1e15fb4f95a872fedfd289a
/src/herder/Herder.h
e38027395d8319d44eb31d33be9c621aee665e6b
[ "BSD-3-Clause", "MIT", "BSL-1.0", "Apache-2.0", "LicenseRef-scancode-public-domain", "BSD-2-Clause" ]
permissive
SuperBlockChain/core
b0e8f58649f71747cd249da5835379b8a9728c1e
2216d02c548ab6700c950d6bf1da162f38ff26e2
refs/heads/master
2020-03-07T16:30:14.927588
2018-04-01T01:26:58
2018-04-01T01:26:58
127,584,504
0
0
null
null
null
null
UTF-8
C++
false
false
4,585
h
#pragma once // Copyright 2014 SuperBlockChain Development Foundation and contributors. Licensed // under the Apache License, Version 2.0. See the COPYING file at the root // of this distribution or at http://www.apache.org/licenses/LICENSE-2.0 #include "TxSetFrame.h" #include "lib/json/json-forwards.h" #include "ove...
[ "pierre@gmail.com" ]
pierre@gmail.com
20bf3d2848fe41fecf5b1817d052462694ac1657
a3d6556180e74af7b555f8d47d3fea55b94bcbda
/ui/views/examples/examples_color_mixer.cc
601f25622886c5ef909d9b3332aa57b096012ff7
[ "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
3,967
cc
// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "ui/views/examples/examples_color_mixer.h" #include "third_party/skia/include/core/SkColor.h" #include "ui/color/color_mixer.h" #include "ui/color/color_recipe.h" #in...
[ "chromium-scoped@luci-project-accounts.iam.gserviceaccount.com" ]
chromium-scoped@luci-project-accounts.iam.gserviceaccount.com
450b51d9d2afa9997df5e8bcee89604f201e7550
9c451121eaa5e0131110ad0b969d75d9e6630adb
/hdu/6000-6999/6287 口算训练.cpp
e1f41a192dfd7fd273954bd2b68e0c7d36750ccb
[]
no_license
tokitsu-kaze/ACM-Solved-Problems
69e16c562a1c72f2a0d044edd79c0ab949cc76e3
77af0182401904f8d2f8570578e13d004576ba9e
refs/heads/master
2023-09-01T11:25:12.946806
2023-08-25T03:26:50
2023-08-25T03:26:50
138,472,754
5
1
null
null
null
null
UTF-8
C++
false
false
4,884
cpp
#include <bits/stdc++.h> using namespace std; namespace fastIO{ #define BUF_SIZE 100000 #define OUT_SIZE 100000 //fread->read bool IOerror=0; // inline char nc(){char ch=getchar();if(ch==-1)IOerror=1;return ch;} inline char nc(){ static char buf[BUF_SIZE],*p1=buf+BUF_SIZE,*pend=buf+BUF_SIZE; if(p1==pend){ ...
[ "861794979@qq.com" ]
861794979@qq.com
74ec7b1743f044e3a7aadc0bb69f6bfc96ed3f46
6de9dc1cd719893d12bc3e5bbe3c5419667bec7e
/LinkedList/LeetCode 142. Linked List Cycle II(solve2).cpp
942c7193f6aad10ad3dfbb63f6eba9b53cf10d62
[]
no_license
ideask/CodeTraining
1208192fa1ecc9967e869cac19b9d3df40d25002
030e2a975ceb9fb675b064ae92f367d08fab9d00
refs/heads/master
2020-06-16T14:15:54.627148
2019-10-11T16:05:53
2019-10-11T16:05:53
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,132
cpp
#include <iostream> using namespace std; struct LinkNode{ int val; LinkNode *next; LinkNode(int x): val(x), next(NULL){}; }; class solution{ public: LinkNode *detectCycle(LinkNode *head){ LinkNode *SlowHead = head; LinkNode *FastHead = head; LinkNode *MeetHead = NULL; while(FastHead){ SlowHe...
[ "9982733@qq.com" ]
9982733@qq.com
89967a83aaaabeab843994b82bb802833b800f1c
085773150c69419e6b033d7360cd939cf1c35981
/src/robot.cpp
e11e6f75112302c6314079cb29b2f2c7075576d7
[]
no_license
daniel-lee-user/C-Robot
59669ae1f38daaed012ab179ed44586e7b31c094
66873ff6b0fa44a02a801c8d5d3d249fc2d7205e
refs/heads/master
2020-03-30T02:56:13.497459
2018-09-27T23:30:57
2018-09-27T23:30:57
150,659,186
0
0
null
null
null
null
UTF-8
C++
false
false
741
cpp
/* * robot.cpp * * Created on: Sep 16, 2018 * Author: Admin */ #include "Chassis.h" #include "Motor.h" #include "SmartMotor.h" #include "Shooter.h" #include <iostream> using namespace std; int main() { /* Chassis* testChassis = new Chassis(3, 4); testChassis -> moveStraight(1.0); testChassis -> wait(300...
[ "elucidation2@gmail.com" ]
elucidation2@gmail.com
355e0ed3f6e57c42d6f1df9eb1a8f6b32db86b32
40a2a72e0a09686fce0c5a1d14a7a1449038955f
/src/qe/qe.h
cf118bd0b18a87ed86d882fa4e42428375c88b28
[ "Apache-2.0" ]
permissive
moophis/CS222-Simple-Data-Management-System
0f10e31fca117fd97ff58f60b184f20f6e5ead5b
55b34eccc4d66c0c0ed201992fd0a2cd4e4711d5
refs/heads/master
2020-12-03T05:20:53.188138
2014-12-13T23:32:10
2014-12-13T23:32:10
24,794,600
0
0
null
null
null
null
UTF-8
C++
false
false
14,280
h
#ifndef _qe_h_ #define _qe_h_ #include <vector> #include <cfloat> #include <climits> #include "../rbf/rbfm.h" #include "../rm/rm.h" #include "../ix/ix.h" # define QE_EOF (-1) // end of the index scan using namespace std; typedef enum{ MIN = 0, MAX, SUM, AVG, COUNT } AggregateOp; enum { ERR_...
[ "moophis@gmail.com" ]
moophis@gmail.com
72dce498ccf98541bdaae94015875aae44a9f42a
b65d3857428281466507674f8ca4f376490c81a2
/src/Box2DWorld.cpp
a1af004051fb2864fcbfd232a57c20ffb14993d3
[]
no_license
DCurro/gtmiami
24f59311f1769c1b0f33cdee5c02a777f79a53a3
02727faa870e61ad9496e5b944ff3d945383e62b
refs/heads/master
2021-09-24T16:31:07.733654
2018-10-12T00:45:29
2018-10-12T00:45:29
107,069,651
0
0
null
null
null
null
UTF-8
C++
false
false
819
cpp
#include "Box2DWorld.hpp" #include <vector> #include <algorithm> #include "ClassChecker.hpp" #include "NavigationCell.hpp" #include "PlayEntity.hpp" Box2DWorld::Box2DWorld(const b2Vec2& gravity) : b2World(gravity) { } Box2DWorld::~Box2DWorld() { } #pragma Protected Methods void Box2DWorld::DrawJoint(b2Joint*...
[ "domenic.curro@gmail.com" ]
domenic.curro@gmail.com
17258ccdd3f62cecf47041002b9c6877a34db370
4f4ddc396fa1dfc874780895ca9b8ee4f7714222
/src/xtp/Samples/CommandBars/MSDI/SomeView.cpp
d5f687abdc0287cdfb34b04e7b51f607616159cf
[]
no_license
UtsavChokshiCNU/GenSym-Test2
3214145186d032a6b5a7486003cef40787786ba0
a48c806df56297019cfcb22862dd64609fdd8711
refs/heads/master
2021-01-23T23:14:03.559378
2017-09-09T14:20:09
2017-09-09T14:20:09
102,960,203
3
5
null
null
null
null
UTF-8
C++
false
false
3,020
cpp
// SomeView.cpp : implementation of the CSomeView class // // This file is a part of the XTREME TOOLKIT PRO MFC class library. // (c)1998-2011 Codejock Software, All Rights Reserved. // // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE // RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE ...
[ "utsavchokshi@Utsavs-MacBook-Pro.local" ]
utsavchokshi@Utsavs-MacBook-Pro.local
1baeb273038cfa991fe8fd7ace279baee9a13dd7
0f2a65e0d0f7a24c63ddd4d87a29c65dd95e743e
/src/visible.hpp
ba157cbcaf4ab7bd4e7e1cf031f6cbfb617ae168
[]
no_license
SondreHusevold/DungeonWarrior
bda016be46eefc4aaee517a8bb489753e20ffffd
2d8e1431e5c7596a37c06c5efa3cb8fe018d73c2
refs/heads/master
2021-06-21T19:51:01.972860
2017-08-17T14:06:10
2017-08-17T14:06:10
100,608,111
0
0
null
null
null
null
UTF-8
C++
false
false
1,698
hpp
#ifndef VISIBLE_HPP /* * Base klasse for alt som er synlig. * Har en char som representerer bildet, informasjon om elementet, metoder for å aktivere/deaktivere synlighet, beveglighet og tilgang. */ #define VISIBLE_HPP #include "position.hpp" #include <string> class visible:public position{ char icon_; std::st...
[ "sondrehusev@gmail.com" ]
sondrehusev@gmail.com
198adb5b2f4c5b5f024c23726614ed1185a2617c
028823a52e2ef93fd3a53d74ae6c5e459a2f954e
/omniWheelCareRobot/rosCode/devel/include/dobot/GetPTPCoordinateParamsRequest.h
33cd36b6a70b1c329cad5cdf1c913e55729c5fe6
[]
no_license
wzh1998/Care_Robot
fe6ac33f4762dfa996b70326ff8adb30965c5320
f416514348825b1a405718c93834906d7263f980
refs/heads/master
2022-11-07T19:40:19.235642
2021-09-05T15:11:44
2021-09-05T15:11:44
214,085,698
2
0
null
2022-10-18T19:25:13
2019-10-10T04:22:25
Makefile
UTF-8
C++
false
false
5,093
h
// Generated by gencpp from file dobot/GetPTPCoordinateParamsRequest.msg // DO NOT EDIT! #ifndef DOBOT_MESSAGE_GETPTPCOORDINATEPARAMSREQUEST_H #define DOBOT_MESSAGE_GETPTPCOORDINATEPARAMSREQUEST_H #include <string> #include <vector> #include <map> #include <ros/types.h> #include <ros/serialization.h> #include <ros...
[ "13001009107@yeah.net" ]
13001009107@yeah.net
4953d4fad6e9a0ba1459ce9e28afc97da85163ef
d3a4ba3b8a7003556bc3f384ce2fe475ec7a16a5
/copierworker.h
e5344755047cc4efedee57dd4250021797addb48
[]
no_license
dryajov/filecopier
1838f855b6a58f87fa4f1f5432f5b0645a9929a6
cb62399d7b11a58ac5cdf93dec23e5d51a81b0f5
refs/heads/master
2020-05-24T13:42:57.125910
2015-01-09T00:02:15
2015-01-09T00:02:15
29,211,341
0
0
null
null
null
null
UTF-8
C++
false
false
974
h
#ifndef COPIERWORKER_H #define COPIERWORKER_H #include <QObject> #include <QFile> #include <QMutex> #include <QWaitCondition> #include "engines/copyenginedefault.h" class CopierWorker : public QObject, ICopyEngineCallback { Q_OBJECT public: CopierWorker(QString source, QString dest, QString basePath = QStr...
[ "dmitriy.ryajov@bodybuilding.com" ]
dmitriy.ryajov@bodybuilding.com
c5ab0f23fc9c81abe4ee31c33fff89ad72a05054
f88f36f96e86f28a12d373e4c8ff4cbe2de9f8d0
/Algorithms/Algorithms/number.h
012339ff0700bf31eb6457e8bde703d56f2746fa
[]
no_license
dlyz/cp-algorithms
c6107d9f8d5b349abb7148d3bee12d8c2175089a
90d10bddfe7ee00dd7fa25937ae6c4484ef4651d
refs/heads/master
2021-01-01T17:49:33.888101
2017-11-07T12:39:51
2017-11-07T12:39:51
98,166,793
0
0
null
null
null
null
WINDOWS-1251
C++
false
false
1,729
h
#pragma once #include "header.h" template<typename T> T gcd(T a, T b) { return b ? gcd(b, a%b) : a; } template<typename T> T lcm(T a, T b) { return a/gcd(a, b)*b; } //до n включительно int GetPrimes(int n, vector<bool>& prime) { int cnt = 0; n++; prime.assign(n, true); if (n >= 0) prime[0] = false; if (n >= 1...
[ "lda@LYZDA" ]
lda@LYZDA
50fd34d9f839fa28c42606df263813b4e096f901
5bd1f7d195bcabd66c13136b372fa12ab42aef1b
/catkin_ws/devel/include/astar/GoToPosRequest.h
8ad30c0211ceb32af3c559962ce1959e72be286d
[]
no_license
Richardwang0326/sis_project
7533bbf870d64aae9ca992ca9d796b2f1e20b282
e22916e2db8ba37066c1a44f48eee47999267bc5
refs/heads/main
2023-02-07T16:23:46.964205
2020-12-18T02:45:43
2020-12-18T02:45:43
319,234,302
0
0
null
null
null
null
UTF-8
C++
false
false
4,576
h
// Generated by gencpp from file astar/GoToPosRequest.msg // DO NOT EDIT! #ifndef ASTAR_MESSAGE_GOTOPOSREQUEST_H #define ASTAR_MESSAGE_GOTOPOSREQUEST_H #include <string> #include <vector> #include <map> #include <ros/types.h> #include <ros/serialization.h> #include <ros/builtin_message_traits.h> #include <ros/mess...
[ "wolf.me04@nctu.edu.tw" ]
wolf.me04@nctu.edu.tw
cb62050b99a42105bd05a0f25916ee61eaf29962
799c01371abc94f433071e411005432fd30c0bc3
/Student XML/src/Exam.cpp
f0674711954fbe8a25b3caa5489af188532b8a67
[]
no_license
mushkoff/EGTprojects
02df58b42d951cb19d970fed3cb3436903b8f678
a7cb401cd5cd1a9225f47c69eac7264b5e3c7e69
refs/heads/master
2020-12-30T13:08:02.377710
2017-06-23T10:32:52
2017-06-23T10:32:52
91,326,599
1
0
null
null
null
null
WINDOWS-1252
C++
false
false
862
cpp
/* * Exam.cpp * * Created on: 26.05.2017 ã. * Author: user */ #include "Exam.h" Exam::Exam(string name, string teacher, double grade) { setName(name); setTeacher(teacher); setGrade(grade); } Exam::Exam() { setName(" "); setTeacher(" "); setGrade(0.0); } Exam::~Exam() { // TODO Auto-generated destru...
[ "michaelmushkoff@gmail.com" ]
michaelmushkoff@gmail.com
304cc1c6e01662eca155b722e29629f59abf7795
9eba93e5540436ba2e1f7935e0e9ab9a10353c86
/src/core/Debuger.cpp
151f74195daa089f93986caee992024313a4930c
[ "Unlicense" ]
permissive
stonedreamforest/what
fc5fd026849365f1c93cc3de584b197e8423d053
4256f849fe963e2c5cd0145fb1e7652ae2245768
refs/heads/master
2020-04-05T12:27:18.020181
2019-11-14T09:57:30
2019-11-14T09:57:30
156,870,621
4
1
null
null
null
null
UTF-8
C++
false
false
1,585
cpp
#include "Debuger.h" #pragma comment(lib,"ntdll.lib") EXTERN_C NTSYSAPI LONG NTAPI NtSuspendProcess(HANDLE ProcessHandle); EXTERN_C NTSYSAPI LONG NTAPI NtResumeProcess(HANDLE ProcessHandle); Debuger::Debuger() { } Debuger::~Debuger() { } void Debuger::run() { if (m_hProcess != nullptr) { NtResumeProcess(m_hPro...
[ "stonedreamforest@outlook.com" ]
stonedreamforest@outlook.com
278d2cc7d382f0c11d055896ff74e8d61fdaaeb7
e16a922542786c77bff0d4a981d494db59cd593c
/day05/ex00/Bureaucrat.hpp
fca21716790d3d0460045965616e1a2a04a4b24d
[]
no_license
vkaz/CPP_POOL-42
4cbe837c539fd33dd3658b91f32f1020928a259d
8b4b334a3ae47b408fbcea28ce534a9028b04616
refs/heads/master
2020-05-03T22:40:42.554339
2019-04-13T09:41:51
2019-04-13T09:41:51
178,847,734
0
0
null
null
null
null
UTF-8
C++
false
false
1,256
hpp
#ifndef BUREAUCRAT_HPP # define BUREAUCRAT_HPP # include <iostream> # include <string> # include <exception> class Bureaucrat { private: std::string _name; int _grade; public: Bureaucrat(); ~Bureaucrat(); Bureaucrat(Bureaucrat const &rhs); Bureaucrat(std::string name, int grade); B...
[ "vkaznodi@student.unit.ua" ]
vkaznodi@student.unit.ua
76d185810ae9ad6424c39a69b2b5377c6dac9d50
111c3ebecfa9eac954bde34b38450b0519c45b86
/SDK_Perso/include/EagleFM/FMBase/Header/FMEngineeringStructure/ADElement.h
88d0e13142102b26b5bca5df67b22c3b1db2864e
[]
no_license
1059444127/NH90
25db189bb4f3b7129a3c6d97acb415265339dab7
a97da9d49b4d520ad169845603fd47c5ed870797
refs/heads/master
2021-05-29T14:14:33.309737
2015-10-05T17:06:10
2015-10-05T17:06:10
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,666
h
#ifndef __ADElement_h__ #define __ADElement_h__ #include "Base.h" #include "FMDynamics/DynamicBody.h" #include "FMAerodynamics/AerodynamicBody.h" #include "FMEngineeringStructure/ControlSurface.h" #include "FMSpace/IBasicAtmosphere.h" #include <ed/vector.h> namespace EagleFM { class RigidBody; //структура-хранилищ...
[ "hashmaaal@gmail.com" ]
hashmaaal@gmail.com
3b0c2b4ee9812a47ecf75eb640c88a6dec36784f
67b7465ff4f3914db515ac4b23593760e32f8c2d
/Demo/main.cpp
ad1b4bfd7b706e387a8c27aa0c40e67693a2c80c
[]
no_license
VoyagerWho/Kalejdoskop
8ca2a9e979dd6f511011021de6c9d700fd3a0c59
4b200c0534039eedc9b9eb63f9acc7895dc23994
refs/heads/main
2023-05-08T19:06:53.394329
2021-05-28T17:45:37
2021-05-28T17:45:37
363,961,721
0
1
null
null
null
null
UTF-8
C++
false
false
5,249
cpp
#include <iostream> #include <SFML/Graphics.hpp> #include <SFML/System.hpp> #include "Classes/SidebarMenu.h" #include <cmath> #define M_PI 3.141592653589 void displayHandler(const sf::Texture& tex) { sf::RenderWindow window(sf::VideoMode(200, 200), "Display", sf::Style::Default); window.setFramerateLimit(30); s...
[ "blind002525@gmail.com" ]
blind002525@gmail.com
81e77b97cb0ad52cb115d56a3773da95b2be6e73
2a40195da63738b77a31ddab3c9a25c17f137c5a
/Adafruit_GFX/Adafruit_GFX.h
dc616275d6d0f60d7b8f18e1af062e7d8e5728b7
[ "BSD-3-Clause", "BSD-2-Clause" ]
permissive
TheGreenEngineersCompany/MOS
03216e978f1d8e4376906512a3d60079d9cf3d54
47e4e750eac55b9e0cf94fdcdbaba6bd7ecf8df6
refs/heads/master
2021-01-17T17:38:21.454435
2016-08-09T01:51:48
2016-08-09T01:51:48
62,985,143
0
0
null
null
null
null
UTF-8
C++
false
false
4,147
h
#ifndef _ADAFRUIT_GFX_H #define _ADAFRUIT_GFX_H #if ARDUINO >= 100 #include "Arduino.h" #include "Print.h" #else #include "WProgram.h" #endif #define adagfxswap(a, b) { int16_t t = a; a = b; b = t; } #if !defined(ESP8266) #define swap(a, b) adagfxswap(a, b) #endif class Adafruit_GFX : public ...
[ "noreply@github.com" ]
noreply@github.com
eed0d20fc2c9b71fedf72de57ffe886903e70dd4
41d3fe57d1695bdbfa24b6bdd08541a0a02986e9
/project/Recorder.h
89f3eb47c8e425a9f2c8d34d86396c58491a2d3c
[]
no_license
Kazahmedoff/projects
2c381dd4982b8389addc4e3cedae5b411f428b2e
fc64744e2b599ba7c8a40d363dbdaac00d4ad80f
refs/heads/master
2021-09-05T07:29:04.518543
2018-01-25T07:39:58
2018-01-25T07:39:58
68,916,811
0
0
null
null
null
null
UTF-8
C++
false
false
640
h
#pragma once #ifndef RECORDER_H #define RECORDER_H #include "Triangle.h" #include "Image.h" #include <list> using namespace std; using namespace Service::Modeling::Geometry; namespace Service { namespace Saving { class Recodrer : public exception { public: static bool WriteModelToBinarySTL(list<Triangle>...
[ "k.kazahmedoff@mail.ru" ]
k.kazahmedoff@mail.ru
2672dd564f679fe5d2f31d8b122a4a9661de3464
54a18855b0578bbad859de93b00b2c030336332f
/The C++ Standard Library/ch14/regextokeniter1.cc
ce813f538fa032ef50ccbfcd4e8dea2dd2702018
[ "LicenseRef-scancode-boost-original" ]
permissive
HuaTsai/Book-Auxiliary-Codes
42bc4600e62e857adaa424ab0ca948354eb3373b
30f92b95a4d43a18e89f96f80ef628aac64bbdbb
refs/heads/main
2023-07-02T22:00:58.004528
2021-08-08T09:45:49
2021-08-08T09:45:49
388,701,511
0
0
null
null
null
null
UTF-8
C++
false
false
1,105
cc
/* The following code example is taken from the book * "The C++ Standard Library - A Tutorial and Reference, 2nd Edition" * by Nicolai M. Josuttis, Addison-Wesley, 2012 * * (C) Copyright Nicolai M. Josuttis 2012. * Permission to copy, use, modify, sell and distribute this software * is granted provided this copyr...
[ "huatsai.eed07g@nctu.edu.tw" ]
huatsai.eed07g@nctu.edu.tw
d616320fb2b4a5abc8a7c8c4b0dac31b992b090c
b73db02ce2feec6bf3d48357db5562aea725767b
/src/libs/ecoscope/gep_scope_world_display.cpp
650b1fb5bf5c3ffd95efcb6d3aeeeb447a45a994
[]
no_license
FrankBlabu/GenePool
3b3669d61e9cd0771c49395d7f48b01620cc87db
0c087be6d0953df2054f241c5c4aa7b3b530a93a
refs/heads/master
2022-11-08T00:59:39.065995
2013-03-03T17:42:29
2013-03-03T17:42:29
275,880,460
0
0
null
null
null
null
UTF-8
C++
false
false
1,247
cpp
/* * gep_scope_world_display.cpp - Base class for displaying the worlds current content * * Frank Cieslok, Sep. 2011 */ #define GEP_DEBUG #include <GEPSystemDebug.h> #include <GEPSystemNotifier.h> #include <GEPSystemWorld.h> #include "GEPScopeWorldDisplay.h" namespace GEP { namespace Scope { //#***************...
[ "frankcieslok@gmail.com" ]
frankcieslok@gmail.com
981729d4207c5e968ec2ce13d707812b6056e4ee
3d608f0070da4cfce37da9159ffbc5918573caa5
/src/Intersection.cpp
a23fd053f1ca7c70e351d0ef9febcdcae10de363
[]
no_license
Abhishek2011992/CppND-Program-a-Concurrent-Traffic-Simulation-checkin
cd678aba632521a9b9dfc1dcf296d94a4ec7b088
4f994038dcb27c91ad7b2f41ca0c04a4dbc0ff49
refs/heads/main
2023-03-14T01:16:30.015063
2021-02-19T12:55:37
2021-02-19T12:55:37
340,361,970
0
0
null
null
null
null
UTF-8
C++
false
false
4,776
cpp
#include <iostream> #include <thread> #include <chrono> #include <future> #include <random> #include "Street.h" #include "Intersection.h" #include "Vehicle.h" /* Implementation of class "WaitingVehicles" */ int WaitingVehicles::getSize() { std::lock_guard<std::mutex> lock(_mutex); return _vehicles.size(); }...
[ "Jyothis.Jayaraj@aptiv.com" ]
Jyothis.Jayaraj@aptiv.com
48b92d2a4634a5be1a663e0cd3b5b56da89ba7ec
fec81bfe0453c5646e00c5d69874a71c579a103d
/blazemark/src/eigen/TSMatDMatMult.cpp
5a786a0f2ebc43672c6fd4c5704a08900eb1c860
[ "BSD-3-Clause" ]
permissive
parsa/blaze
801b0f619a53f8c07454b80d0a665ac0a3cf561d
6ce2d5d8951e9b367aad87cc55ac835b054b5964
refs/heads/master
2022-09-19T15:46:44.108364
2022-07-30T04:47:03
2022-07-30T04:47:03
105,918,096
52
7
null
null
null
null
UTF-8
C++
false
false
4,732
cpp
//================================================================================================= /*! // \file src/eigen/TSMatDMatMult.cpp // \brief Source file for the Eigen transpose sparse matrix/dense matrix multiplication kernel // // Copyright (C) 2012-2020 Klaus Iglberger - All Rights Reserved // // This f...
[ "klaus.iglberger@gmail.com" ]
klaus.iglberger@gmail.com
6a260d3c1f0b775c2364e46c406bde2e026524f1
4d5a3fbaeb32cfc1a291ef09199fac654a64537c
/Knight.hpp
1ac27440e056fd940c918c6f19e94d83227bda39
[]
no_license
gheaeckkseqrz/ChessIA
c83300a24ede4904c9ed861345feff621d779c65
1dc8d3fb752643b9f26f350939239d8dca44cae2
refs/heads/master
2016-09-01T19:48:50.564247
2013-12-05T21:34:55
2013-12-05T21:34:55
null
0
0
null
null
null
null
UTF-8
C++
false
false
565
hpp
// // Knight.hpp for ChessIA in /home/wilmot_p/PROG/C++/ChessIA // // Made by WILMOT Pierre // Login <wilmot@epitech.net> // // Started on Wed Dec 26 23:27:08 2012 WILMOT Pierre // Last update Wed Dec 26 23:56:28 2012 WILMOT Pierre // #ifndef __KNIGHT_HPP__ #define __KNIGHT_HPP__ #include <iostream> #include "Pi...
[ "pierre.wilmot@gmail.com" ]
pierre.wilmot@gmail.com
37c1b454c0796a35edb7c7e616b11333ad9c8978
61cbaba5fd849ad52c3c2ee8ee003554b6389a79
/il2cpp/Classes/Native/Assembly-CSharp.cpp
8d9fe33a0c479ab96f68eb7b001795d3e9ba5cc2
[]
no_license
wallstudio/UnityTest_2019_4_4
9b8c6a6df2b55733659bd7d90d5d686f8b1bdd61
6b30f321504b6377c36f703f1bbb1d8d9ec5ba11
refs/heads/master
2023-02-03T21:42:36.063139
2020-12-09T17:08:37
2020-12-09T17:08:37
310,818,733
0
0
null
null
null
null
UTF-8
C++
false
false
6,376
cpp
#include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <cstring> #include <string.h> #include <stdio.h> #include <cmath> #include <limits> #include <assert.h> #include <stdint.h> #include "codegen/il2cpp-codegen.h" #include "il2cpp-object-internals.h" // Syste...
[ "yukawallstudio@gmail.com" ]
yukawallstudio@gmail.com
1efd8dae68cacb1e19a8df85b694adcc1e1a12b2
20a40118f852dfae02f2b8931d7e2bf75e861733
/loginwidget.cpp
47df245f0d6f0f09314d2a5769db735e49006469
[]
no_license
diba-m/triQadvisor
5c37f46c2e39c3681f342c4c979cf2f5fa3f765b
7a7f83c24d453db954dd31c79e19d8adccf28c8e
refs/heads/master
2020-12-24T19:28:44.746282
2016-05-09T13:11:51
2016-05-09T13:11:51
57,897,602
0
0
null
null
null
null
UTF-8
C++
false
false
1,664
cpp
#include "loginwidget.h" LoginWidget::LoginWidget(){ QVBoxLayout* loginLayout = new QVBoxLayout; QMenuBar* menuBar = new QMenuBar(0); QMenu* fileMenu = menuBar->addMenu(tr("File")); fileMenu->addSeparator(); QAction* exitAction = fileMenu->addAction(tr("Exit")); connect...
[ "diba.m.88@gmail.com" ]
diba.m.88@gmail.com
42d0e0a38ed4b7a7a766af41d525158dcb4ad42c
c15373ce87ff810564456e8cbefce653692a8030
/src/footballcoind.cpp
a9f00e38e3cd42c0fec98ef2b01ad46b50e63a91
[ "MIT" ]
permissive
fbcoinone/footballcoin
e7f1ed7b2838f62c98531e8d1f04658cfb5421fe
00b47d5f969527a2e23bc885abbe54d5f9e4b0dc
refs/heads/master
2020-03-20T12:41:03.307288
2018-06-15T03:44:51
2018-06-15T03:44:51
137,437,792
0
0
null
null
null
null
UTF-8
C++
false
false
6,227
cpp
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2017 The FootBallcoin 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/footballcoin-config.h> #endif #...
[ "root@DESKTOP-E9SE4MD.localdomain" ]
root@DESKTOP-E9SE4MD.localdomain
bff58dd0424318844727bac3d64df7f89579b010
3e6140ed39a63a5104fa2a50c765cf0cb7194985
/Semana 3/Exercise 3 H3/Hotel.h
5fa478d329d5a3fdff18913e802e4dd9275c4220
[]
no_license
Bryammm06/Progra-2-2020-2
c35737d0ed7b267cf72a32dd4ce4536ed21ee6e8
0a301afc1647dca8c8a5f2f8b85a7a663f72c4df
refs/heads/master
2023-01-07T05:29:16.743368
2020-11-07T19:49:14
2020-11-07T19:49:14
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,661
h
#pragma once #include <iostream> #include <string> using namespace std; string hotelLocations[7] = { "Isla de la Cite", "San Luis", "Barrio Latino","Montmartre", "La Defensa", "Campos Eliseos","Plaza de la Concordia" }; string hotelNames[7] = { "Marriot", "Shell", "Portman", "Winston", "Paris","Trivago","Casa...
[ "jmascaro2000@gmail.com" ]
jmascaro2000@gmail.com
6fdc4ba6a4029e338defe6af1993724f135ade11
06ecc70c4680e0764ebc64031410a59944e4cc76
/IOHIDLib/IOHIDIUnknown.cpp
1cdffa0542e134f3d1e90c3db816d51de67ea2c8
[]
no_license
unofficial-opensource-apple/IOHIDFamily
b07744d67c85dfc552fe5b39060a8b850db1d457
dec587058f4b4ade009a1892b8e51b142eecb4ec
refs/heads/master
2020-12-24T13:29:35.535591
2014-10-30T20:55:30
2014-10-30T20:55:30
27,180,040
2
0
null
null
null
null
UTF-8
C++
false
false
3,380
cpp
/* * * @APPLE_LICENSE_HEADER_START@ * * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved. * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file...
[ "opensource@apple.com" ]
opensource@apple.com
d57dd4d01a91801114a8615f43756e013259014f
ba9322f7db02d797f6984298d892f74768193dcf
/mts/src/model/QueryMediaWorkflowExecutionListResult.cc
c79ac0e89f5d8856c372f52d31031ba12349ebc7
[ "Apache-2.0" ]
permissive
sdk-team/aliyun-openapi-cpp-sdk
e27f91996b3bad9226c86f74475b5a1a91806861
a27fc0000a2b061cd10df09cbe4fff9db4a7c707
refs/heads/master
2022-08-21T18:25:53.080066
2022-07-25T10:01:05
2022-07-25T10:01:05
183,356,893
3
0
null
2019-04-25T04:34:29
2019-04-25T04:34:28
null
UTF-8
C++
false
false
4,873
cc
/* * Copyright 2009-2017 Alibaba Cloud 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...
[ "yixiong.jxy@alibaba-inc.com" ]
yixiong.jxy@alibaba-inc.com
c6c504a967859832698f51949996d684d0f4a7db
306165cfe0649c719b27a386b786cc200abdc2f8
/Advanced Recursion/Merge Sort Code.cpp
57856dd3e9031b264d8865f8a38fa1e440e1846d
[]
no_license
EkanshMangal/Coding-Ninjas
3af046f237983bcaebabdaebe8664eb00e5f3b43
baeb58e6c8071c37ebca6957e5d7b9e92f9f83d1
refs/heads/master
2021-01-16T14:41:39.302884
2020-08-12T04:32:49
2020-08-12T04:32:49
243,156,722
0
0
null
null
null
null
UTF-8
C++
false
false
1,646
cpp
/* Merge Sort Code Sort an array A using Merge Sort. Change in the input array itself. So no need to return or print anything. Input format : Line 1 : Integer n i.e. Array size Line 2 : Array elements (separated by space) Output format : Array elements in increasing order (separated by space) Constraints : 1 <= n <= 10...
[ "ekanshmangal102@gmail.com" ]
ekanshmangal102@gmail.com
4494cccf32db79f01ac357285fb15b9d8ec1e5ce
43298fdf216663512904fe6a1d6894bf14907fb8
/HolyEditor/main.cpp
fde1fe02eef8959c4688758c93bb4577c978c56e
[]
no_license
q4a/holyspirit-trunk
06daf0cf7ad015c77ee901e39c9bf3c738a19933
b43da88736d375357027468216920cbb671765ba
refs/heads/master
2021-01-13T06:08:23.951764
2013-03-05T14:57:21
2013-03-05T14:57:21
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,918
cpp
//////////////////////////////////////////////////////////// // Headers //////////////////////////////////////////////////////////// #include "MainWindow.h" #include "MainWindow.moc" #include <QApplication> #include <QVBoxLayout> #include <QFrame> #include <QLabel> #include "Moteurs/moteurGraphique.h" #in...
[ "ig0rk0@02226d48-ee4e-0410-85af-ca5f3f0fcfbc" ]
ig0rk0@02226d48-ee4e-0410-85af-ca5f3f0fcfbc
3effcfdea6a42651513b5a07a8c28ad209007b1a
d0b9a07078c61942e4286e5eea68223a7a2649e9
/16708.cpp
d177e867810428559e7bb98cdabf52ea2366cd6a
[]
no_license
qjatn0120/BOJ_algorithm
3b82e030bc56fdbcf68c726e1fb4764e8e1218cd
ab3c03342a206c1c2d89561fe9bb885ed98b1a4f
refs/heads/master
2023-07-15T21:42:12.997079
2021-09-04T02:23:33
2021-09-04T02:23:33
287,887,189
0
0
null
null
null
null
UTF-8
C++
false
false
1,300
cpp
#include <bits/stdc++.h> using namespace std; int ans, init, board, n, m; vector <int> target; string str; bool visited[1 << 28]; void getAns(int state); int main(){ cin.tie(nullptr), ios::sync_with_stdio(false); for(int i = 0; i < 7; i++){ int tmp = 0; for(int j = 0; j < 4; j++) tmp |= (1 <...
[ "69745946+qjatn0120@users.noreply.github.com" ]
69745946+qjatn0120@users.noreply.github.com
1237d39312f050cf4d0e192cca9701c840f14829
167378226f891e834b5b7e61ead1d4146662e777
/include/suicore/uicontentcontrol.h
91f18419d28a707231e7710976419a8bd12ddeb9
[]
no_license
tfzxyinhao/sharpui
1017502dcb3afc985e2c057b7bb4243af82677fe
1d7a340192f89c9a7cf6dacfec2f1d38d6f2ea11
refs/heads/master
2021-01-18T11:12:43.149136
2012-10-12T16:44:44
2012-10-12T16:44:44
6,212,902
1
0
null
null
null
null
GB18030
C++
false
false
2,077
h
// 华勤科技版权所有 2010-2011 // // 文件名:uicontentcontrol.h // 功 能:实现窗口的基本操作,包括窗口属性的存取。 // // 作 者:汪荣 // 时 间:2010-07-02 // // ============================================================================ # ifndef _UICONTENTCONTROL_H_ # define _UICONTENTCONTROL_H_ #include <suicore/uicontrol.h> namespace suic { /// <summ...
[ "china0851@vip.qq.com" ]
china0851@vip.qq.com
41882d7f7f570499566d33f09284f8582c211e66
31b68b1851c12b48e1e83a16a572b57af8197153
/Dynamic_Programming_2/maximum_sum_rectangle.cpp
c5911d80c2358bb9f11da72f406bdf07a8229102
[]
no_license
Rohan7546/Coding_Ninjas_Competitive_Programming
40e77fba03e6cbb20e8d0679cb00a033bb839aaf
2506a9b8c32629b7610c66a32446e255a42e9e20
refs/heads/main
2023-06-27T02:36:59.564187
2021-07-21T08:45:25
2021-07-21T08:45:25
383,400,568
5
1
null
null
null
null
UTF-8
C++
false
false
1,400
cpp
/* Maximum Sum Rectangle Send Feedback Given a 2D array, find the maximum sum rectangle in it. In other words find maximum sum over all rectangles in the matrix. Input Format: First line of input will contain T(number of test case), each test case follows as. First line contains 2 numbers n and m denoting number ...
[ "noreply@github.com" ]
noreply@github.com
4f9725071c77fd8f0c4cb7364b7f08e996b7b22b
2f1a092537d8650cacbd274a3bd600e87a627e90
/thrift/compiler/test/fixtures/lazy_deserialization/gen-cpp2/terse_writes_data.h
4510cd04d91114ffdefbad281c45e80f7e69961e
[ "Apache-2.0" ]
permissive
ConnectionMaster/fbthrift
3aa7d095c00b04030fddbabffbf09a5adca29d42
d5d0fa3f72ee0eb4c7b955e9e04a25052678d740
refs/heads/master
2023-04-10T17:49:05.409858
2021-08-03T02:32:49
2021-08-03T02:33:57
187,603,239
1
1
Apache-2.0
2023-04-03T23:15:28
2019-05-20T08:49:29
C++
UTF-8
C++
false
false
1,728
h
/** * Autogenerated by Thrift for src/terse_writes.thrift * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ #pragma once #include <thrift/lib/cpp2/gen/module_data_h.h> #include "thrift/compiler/test/fixtures/lazy_deserialization/gen-cpp2/terse_writes_types.h" namespace apache...
[ "facebook-github-bot@users.noreply.github.com" ]
facebook-github-bot@users.noreply.github.com
d706bdd8c2fadf4b166e87acd26fa77706a188cd
9fad4848e43f4487730185e4f50e05a044f865ab
/src/content/shell/browser/shell_network_delegate.cc
db264abfa4786732098f53c27c00b87bb54de03f
[ "BSD-3-Clause" ]
permissive
dummas2008/chromium
d1b30da64f0630823cb97f58ec82825998dbb93e
82d2e84ce3ed8a00dc26c948219192c3229dfdaa
refs/heads/master
2020-12-31T07:18:45.026190
2016-04-14T03:17:45
2016-04-14T03:17:45
56,194,439
4
0
null
null
null
null
UTF-8
C++
false
false
3,901
cc
// Copyright 2013 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "content/shell/browser/shell_network_delegate.h" #include "base/command_line.h" #include "base/strings/string_util.h" #include "content/public/c...
[ "dummas@163.com" ]
dummas@163.com
7ad2667bbc1a897d642790c0de5ce3e33024baeb
58c5614f48b226f2f12e95bf5a9a85055d0bcae7
/src/TestBeamTransform.h
4fc9ff242ad28d8351ec7e2e2efb7da0b0bfd1e7
[]
no_license
StevenGreen1/CLICpix_TestBeamCode
e9911c7999bda94a6a9d01d5cc448b128253580e
1f1f7e99b9da37ff38ae9525be9ea144e7aca346
refs/heads/master
2018-01-08T08:23:55.849640
2015-09-24T12:52:41
2015-09-24T12:52:41
43,066,113
0
0
null
null
null
null
UTF-8
C++
false
false
3,036
h
// $Id: TestBeamTransform.h,v 1.2 2009-07-17 15:56:21 gligorov Exp $ #ifndef TESTBEAMTRANSFORM_H #define TESTBEAMTRANSFORM_H 1 // Include files #include "TestBeamObject.h" #include "Parameters.h" #include "TestBeamEventElement.h" #include "TMatrixD.h" #include "TVectorD.h" #include "TMath.h" #include "Math/Point3D....
[ "sg1sg2sg3@hotmail.co.uk" ]
sg1sg2sg3@hotmail.co.uk
342c871468aefa0afdc7dee38a92b0c2c0b3bdf5
c08c0f95066f596a2e4db54e2a037e9b48fda643
/Source/Code/Triangulation/main.cpp
5325c369f28ecf2b80e0e72efdf9038de5de4212
[]
no_license
retallickj/flight-suite-alpha
6b69d089e03c0f6fa384b826f28bceaf37f49619
c7c2853ccb2ac7ebc21c5be0683660eaf96beb3f
refs/heads/master
2021-01-23T07:20:44.827477
2013-04-29T08:06:44
2013-04-29T08:06:44
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,727
cpp
// multicamera vision.cpp : Defines the entry point for the console application. // #include "multicameratriangulator.h" #include <iostream> #include <fstream> #define EPSILON 0.1 #define ITERATIONS 10 #define FEED_ARG_OFFSET 2 #define POINTS_ARG 2 #define PARAM_ARG 3 #define WRITE_ARG 1 #define LARGE_NUMBER 99999...
[ "retallick.jake@gmail.com" ]
retallick.jake@gmail.com
ea7d9e548e4fdb97e0fd514152f01e9ac9101ecc
6a99fda0515cbaafbc840d4f38207758c65b24ad
/test/unit/IRTypeCheckerTest.cpp
36582f591f45068f86ec25c431d606a119c23312
[ "MIT" ]
permissive
CrackerCat/redex
58850cbb87df7bdf4b795dcfb55482bb106957a5
df5a2ba9b6942465e66dd141556b2ff0e828bc47
refs/heads/master
2022-01-23T19:26:27.434480
2022-01-03T19:23:06
2022-01-03T19:24:09
142,514,440
0
0
null
2018-07-27T01:53:26
2018-07-27T01:53:26
null
UTF-8
C++
false
false
86,328
cpp
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #include <gmock/gmock.h> #include <gtest/gtest.h> #include <limits> #include <sstream> #include <string> #include <unordered_set>...
[ "facebook-github-bot@users.noreply.github.com" ]
facebook-github-bot@users.noreply.github.com
98f47f4fb6eaa41a98ce54724f1152af5179ad9d
c51febc209233a9160f41913d895415704d2391f
/library/ATF/LPD3DTRANSFORMDATA.hpp
5b51c15ad0dad904f97c8ae48309d4bc22c8affc
[ "MIT" ]
permissive
roussukke/Yorozuya
81f81e5e759ecae02c793e65d6c3acc504091bc3
d9a44592b0714da1aebf492b64fdcb3fa072afe5
refs/heads/master
2023-07-08T03:23:00.584855
2023-06-29T08:20:25
2023-06-29T08:20:25
463,330,454
0
0
MIT
2022-02-24T23:15:01
2022-02-24T23:15:00
null
UTF-8
C++
false
false
274
hpp
// This file auto generated by plugin for ida pro. Generated code only for x64. Please, dont change manually #pragma once #include <common/common.h> #include <_D3DTRANSFORMDATA.hpp> START_ATF_NAMESPACE typedef _D3DTRANSFORMDATA *LPD3DTRANSFORMDATA; END_ATF_NAMESPACE
[ "b1ll.cipher@yandex.ru" ]
b1ll.cipher@yandex.ru
7d841f22b649f10b52f7fcb124c4da5c8d81389f
4af9bc5520bc6d52102a36db9cf7b594459d5fc3
/Demo/Intermediate/Build/Mac/UE4Editor/Inc/EpochDemo/EpochDemo.init.gen.cpp
0cfd7b3062d952bd428a6ead8eff15128f7ef16a
[]
no_license
Srose0712/Demos
13979df6bd48505f7e083728272929e9a86cfbe1
32e1b9cc18204981da3539f94448f648ccd67f7a
refs/heads/master
2020-06-28T16:57:09.375814
2019-08-16T16:27:26
2019-08-16T16:27:26
200,288,266
0
0
null
null
null
null
UTF-8
C++
false
false
1,100
cpp
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved. /*=========================================================================== Generated code exported from UnrealHeaderTool. DO NOT modify this manually! Edit the corresponding .h files instead! ==========================================================...
[ "sambrose0712@gmail.com" ]
sambrose0712@gmail.com
44a007a3359d4bc6037712059f72d69b85724d9f
33035c05aad9bca0b0cefd67529bdd70399a9e04
/src/boost_mpl_aux__numeric_op.hpp
cc5c173b7e23addafec78181a35caea08a80e216
[ "LicenseRef-scancode-unknown-license-reference", "BSL-1.0" ]
permissive
elvisbugs/BoostForArduino
7e2427ded5fd030231918524f6a91554085a8e64
b8c912bf671868e2182aa703ed34076c59acf474
refs/heads/master
2023-03-25T13:11:58.527671
2021-03-27T02:37:29
2021-03-27T02:37:29
null
0
0
null
null
null
null
UTF-8
C++
false
false
41
hpp
#include <boost/mpl/aux_/numeric_op.hpp>
[ "k@kekyo.net" ]
k@kekyo.net
0512ffdca7ca2c4a3816b44b1f7fe5320ee0a65c
6b2a8dd202fdce77c971c412717e305e1caaac51
/solutions_1483488_0/C++/fz1989/2012_q_C.cpp
fd6aae460ea20c066e65f54f3edbadc5e86b634f
[]
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
1,748
cpp
#include <cstdio> #include <cstdlib> #include <cstring> #include <iostream> using namespace std; const int maxn = 2000001; int parent[maxn], rank[maxn]; int T,A,B; int digs[10]; int findset(int now) { if (parent[now] != now) { parent[now] = findset(parent[now]); } return parent[now]; ...
[ "eewestman@gmail.com" ]
eewestman@gmail.com
a46b82342297c9db7a1ff1a18a1c1cd4d3f5278c
5bfaffd283b998ab89132f0a98879b12c29b290d
/lib/animations/graceful-enable-data.h
6f78350c19e6b8d68d93424dcbc3f1f2c4bfc5b5
[ "MIT" ]
permissive
dingjingmaster/platform-theme
a76ef4ed0a68831acf803ba070b7e37f4b909e71
ad597690284fee806cd0303c319c194711fc2551
refs/heads/main
2023-02-08T17:00:45.504743
2021-01-03T09:33:29
2021-01-03T09:33:29
320,217,306
0
0
null
null
null
null
UTF-8
C++
false
false
585
h
#ifndef GRACEFUL_ENABLE_DATA_H #define GRACEFUL_ENABLE_DATA_H #include "graceful-export.h" #include "graceful-widget-state-data.h" namespace Graceful { //* Enable data class GRACEFUL_EXPORT EnableData : public WidgetStateData { Q_OBJECT public: EnableData(QObject *parent, QWidget *target, int duration, bool s...
[ "dingjing@live.cn" ]
dingjing@live.cn
6282ba7a7f437dbe6f92e367b54448aefc8d956f
87d4f0499a8d792446d10753c088cb635188f47c
/PRO1/X01385_ca/S001-AC.cc
15a87e21a425c0db7155f7f645a60df494ea1f09
[]
no_license
lladruc/FIB
e08265cc6231aab8983ee0ff1343ac2266237427
da03b6aa0acce04fa61d52a51f3c7934b2d84820
refs/heads/master
2022-05-03T04:02:08.073880
2022-04-11T12:03:31
2022-04-11T12:03:31
33,666,272
0
2
null
null
null
null
UTF-8
C++
false
false
451
cc
#include <iostream> #include <vector> using namespace std; int ndiferents(const vector<int>& v){ int r=0; for(int i=0;i<v.size();++i){ bool unic = true; int j=i-1; while( j >= 0 and unic){ if(v[i] == v[j]) unic = false; --j; } if(unic) ++r; } return r; } int main(){ int n; ...
[ "Lladruc@Dru-MacBooks-Air-2.local" ]
Lladruc@Dru-MacBooks-Air-2.local
43f2d70ae70efef3cae962ee248315f939c68de4
4bb3b35e054643be978d66f10fbaf1b1ad6d0060
/src/routines/level1/xaxpy.hpp
caac871e888d57e51546a8068b89b2423291637b
[ "Apache-2.0" ]
permissive
lijian8/CLBlast
e2b4fefa39e127529c585848702929c6e9516bb8
115af8c78ed93894b1e3021d9612df89d2cef3d4
refs/heads/master
2020-12-24T09:52:37.511421
2016-09-25T08:44:31
2016-09-25T08:44:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,491
hpp
// ================================================================================================= // This file is part of the CLBlast project. The project is licensed under Apache Version 2.0. This // project loosely follows the Google C++ styleguide and uses a tab-size of two spaces and a max- // width of 100 char...
[ "web@cedricnugteren.nl" ]
web@cedricnugteren.nl
b42329c81c0a182fb6547596090a143702f1c223
d9a972a5e0e84f08d63113df382fcf4c6a455a81
/examples/ESP32_MultiTask/AsyncMT_ESP32WM_Config/AsyncMT_ESP32WM_Config.ino
f2d405f0eca62bec2cf2df3a285c7cdc8027ab8d
[ "MIT" ]
permissive
Pongsatorn-Tot/Blynk_Async_WM
5ae3d86844648d0c02a1181c692c91c70ea2ecb0
4180d269d21792f2d403577dbcc286a38b50e85b
refs/heads/master
2023-02-09T02:24:21.616370
2021-01-02T08:44:14
2021-01-02T08:44:14
null
0
0
null
null
null
null
UTF-8
C++
false
false
9,330
ino
/**************************************************************************************************************************** Async_ESP32WM_Config.ino For ESP32 boards Blynk_Async_WM is a library, using AsyncWebServer instead of (ESP8266)WebServer for the ESP8266/ESP32 to enable easy configuration/reconfig...
[ "noreply@github.com" ]
noreply@github.com
67fad154615cc1911e27dc506f3c1b8d483ab21d
207c6d618e70a7249f911cd43a58a5459afd9f96
/MyLogging/ThreadLoggerStream.cpp
8a034c70b95e2d843e0e2f08cd9533419dfb76ed
[]
no_license
dickyPro/MLogger
b9466c7d63c21f0bfe5c6fde482fd2692d366878
44745745fd8526605d52ccacb25c31d214623c9e
refs/heads/master
2021-07-25T02:51:49.673213
2017-11-06T14:29:34
2017-11-06T14:29:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
684
cpp
#include "ThreadLoggerStream.h" #include "LogItemQueue.h" #include "LogItem.h" using namespace logging; using namespace std; namespace logging { ThreadLoggerStream::ThreadLoggerStream(Priority pri): LoggerStream(pri),_isSubmitted(false) { } //当流结束之时,则将内容压缩到安全队列 ThreadLoggerStream::~ThreadLoggerStream() ...
[ "wonderspig@users.noreply.github.com" ]
wonderspig@users.noreply.github.com
4e2a5073f8d139f910a21fe56f931549d0a7ba40
23d01d942c97a31e46529c4371e98aa0c757ecd1
/hll/legion-realm/patch/runtime/legion/legion_types.h
6728c3cb871cab1e00fb89768142e272eb763e6c
[]
no_license
ModeladoFoundation/ocr-apps
f538bc31282f56d43a952610a8f4ec6bacd88e67
c0179d63574e7bb01f940aceaa7fe1c85fea5902
refs/heads/master
2021-09-02T23:41:54.190248
2017-08-30T01:48:39
2017-08-30T01:49:30
116,198,341
1
0
null
null
null
null
UTF-8
C++
false
false
76,605
h
/* Copyright 2017 Stanford University, NVIDIA Corporation * Portions Copyright 2017 Rice University, Intel Corporation * * 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://ww...
[ "sriraj@rice.edu" ]
sriraj@rice.edu
c961c3b323b8464068d3b96a1fecb3713202a368
0eff74b05b60098333ad66cf801bdd93becc9ea4
/second/download/squid/gumtree/squid_repos_function_3081_squid-3.5.27.cpp
c52222ae41bae665a0354f5ab82fb1ee9006bcf2
[]
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
358
cpp
bool StoreEntry::memoryCachable() { if (!checkCachable()) return 0; if (mem_obj == NULL) return 0; if (mem_obj->data_hdr.size() == 0) return 0; if (mem_obj->inmem_lo != 0) return 0; if (!Config.onoff.memory_cache_first && swap_status == SWAPOUT_DONE && refcount ==...
[ "993273596@qq.com" ]
993273596@qq.com
dedf9bc5a625dc30af4546217dd8f9b3ff2b96ff
ad273708d98b1f73b3855cc4317bca2e56456d15
/aws-cpp-sdk-medialive/include/aws/medialive/model/ImmediateModeScheduleActionStartSettings.h
95daa8e9a5d33d537801d915c843b6d546c7b167
[ "MIT", "Apache-2.0", "JSON" ]
permissive
novaquark/aws-sdk-cpp
b390f2e29f86f629f9efcf41c4990169b91f4f47
a0969508545bec9ae2864c9e1e2bb9aff109f90c
refs/heads/master
2022-08-28T18:28:12.742810
2020-05-27T15:46:18
2020-05-27T15:46:18
267,351,721
1
0
Apache-2.0
2020-05-27T15:08:16
2020-05-27T15:08:15
null
UTF-8
C++
false
false
1,497
h
/* * Copyright 2010-2017 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...
[ "aws-sdk-cpp-automation@github.com" ]
aws-sdk-cpp-automation@github.com
fada5a6b5c394df4567a22b8f292b05bc462dbe0
2ef3fa4b5d053f42dde1f0db8e9a7773418b08f3
/Engine/Timer.h
990ca36f8a8503edd0d59f69d4a421b323a7c211
[ "MIT" ]
permissive
GuillemArman/Project_Engine
1ee1d3e047f07bb5d73d0e4520b38ac4e9248b45
ddb376996818f07e7a34958f00a27501c2e4ff6c
refs/heads/master
2020-03-28T17:15:52.013198
2018-09-18T12:39:04
2018-09-18T12:39:04
148,773,026
0
0
null
null
null
null
UTF-8
C++
false
false
312
h
#ifndef __TIMER_H__ #define __TIMER_H__ #include "Globals.h" #include "SDL\include\SDL.h" class Timer { public: // Constructor Timer(); void Start(); void Stop(); Uint32 Read(); float ReadSec(); void Reset(); bool running; private: Uint32 started_at; Uint32 stopped_at; }; #endif //__TIMER_H__
[ "guillemarman8@gmail.com" ]
guillemarman8@gmail.com
18bc9d6a841a91dd55ce4e8163336b34f8477d39
c2d270aff0a4d939f43b6359ac2c564b2565be76
/src/ui/app_list/search/history.cc
0e432570be37823fc0aa63ea386c75518b9c2e34
[ "BSD-3-Clause" ]
permissive
bopopescu/QuicDep
dfa5c2b6aa29eb6f52b12486ff7f3757c808808d
bc86b705a6cf02d2eade4f3ea8cf5fe73ef52aa0
refs/heads/master
2022-04-26T04:36:55.675836
2020-04-29T21:29:26
2020-04-29T21:29:26
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,681
cc
// Copyright 2013 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "ui/app_list/search/history.h" #include <stddef.h> #include "ash/app_list/model/search/tokenized_string.h" #include "base/strings/string_util.h...
[ "rdeshm0@aptvm070-6.apt.emulab.net" ]
rdeshm0@aptvm070-6.apt.emulab.net
4d1bff65ed98f466dd976e166079041d57620a40
d8de0ad96cd86caa0c62362961007b7ba74025eb
/合并表记录.cpp
fa1d422ff307795a65daf328d22d5c2de6bb0247
[]
no_license
Giho-Lee/nowcoder-homework
e28f9bdd6e5e4a289059c13013b08d5dbe8eb2b7
dc57167d53f6619cc2adfc50550ae91ddcdc572e
refs/heads/main
2023-03-12T15:45:51.698525
2021-03-07T06:29:34
2021-03-07T06:29:34
344,794,797
0
0
null
null
null
null
UTF-8
C++
false
false
612
cpp
/* 题目:https://www.nowcoder.com/practice/de044e89123f4a7482bd2b214a685201 */ #include <iostream> #include <map> using namespace std; int main (int argc, char **argv) { int rows; cin >> rows; map<int, int> m; for (int i = 0; i < rows; i++) { int index, value; cin >> index >> value; ...
[ "giho.lee.amour@gmail.com" ]
giho.lee.amour@gmail.com
14fdd24802ed4eae8673957aa8a8011ed66f1008
5307d5d3d3760240358ad73529723fe9c7411b07
/src/pubkey.h
1be0edd18495b40123107d499db768afa5322b45
[ "MIT" ]
permissive
cruro/cruro
b75d4900c760c40d9641c3355350e9ed56723f84
80aa93365db5e6653bb8235fb61914ee4aa087e8
refs/heads/master
2020-06-18T10:31:58.958195
2019-07-12T14:39:43
2019-07-12T14:39:43
196,270,857
0
0
null
null
null
null
UTF-8
C++
false
false
7,637
h
// Copyright (c) 2009-2010 crury Nakamoto // Copyright (c) 2009-2018 The Cruro Core developers // Copyright (c) 2017 The Zcash developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_PUBKEY_H #define BITCOIN_P...
[ "“doctordeep@protonmail.com”" ]
“doctordeep@protonmail.com”
55218b9ad4b57575a6e731c0f35ccc3649b4dfaa
9554a5ea57823a76c25132fcfdfd20de324d9bd8
/includes/common/windows/MutexWindows.h
5dbbb4763498574fdfa7b499c76757ef2f9924cc
[]
no_license
suchet-q/epic_win
23b33fc7042ec1b02cd8245e7926178bec0a9957
f35756d3566af30215005873f4a3de6996464658
refs/heads/master
2021-01-23T21:35:04.696611
2013-11-24T22:23:08
2013-11-24T22:23:08
null
0
0
null
null
null
null
UTF-8
C++
false
false
258
h
#pragma once #include "windows/WindowsInclude.h" class MutexWindows { CRITICAL_SECTION _mutex; bool _init; public: MutexWindows(void); ~MutexWindows(void); bool initMutex(); bool Lock(); bool Unlock(); bool destroyMutex(); };
[ "gaetan.blery@epitech.eu" ]
gaetan.blery@epitech.eu
576de9dbd50b8c8ba85867df15df9bf0edc31013
14be5228d52d9a7e9db16de48d4b262ce33d6257
/Anno_2016_2017/Esercizi_2016_11_24/Esercizio_1.cpp
87d559974126b2f6c192de7694cc5e8618d73883
[]
no_license
a-pucci/GameDev-1anno-2016-2017
d7625be64b1878ab4e2155aea35c2f141265190a
0b1298c4524864db30f62c7a6483554786a64fe8
refs/heads/master
2021-06-20T13:36:53.455226
2019-02-26T20:33:21
2021-04-02T18:03:00
74,010,542
0
0
null
null
null
null
UTF-8
C++
false
false
844
cpp
#include <iostream> #include <string> using namespace std; int main() { int playerScore[10]; cout << "\t\tLEADERBOARD\n"; for(int i = 0; i < 10; i++) { cout << "\nInserire punteggio ottenuto dal Giocatore " << i+1 << ": "; cin >> playerScore[i]; } cout << "\n\n\tLISTA PUNTEGG...
[ "a_pucci@hotmail.it" ]
a_pucci@hotmail.it