blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 3 264 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 5 140 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 986
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 23
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 145
values | src_encoding stringclasses 34
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 3 10.4M | extension stringclasses 122
values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1a467d6f81812afea7edf9ddd07a5e596393724d | 592aaac1e6c292852b1e1c0e10d2bd28906740e7 | /Graphe.hpp | 4bb77fe7ea8b84f272aa44e16e66d5a6c7179abe | [] | no_license | LordCatzorz/GLO-2100-TP3 | 0adf9e09ec0018da7b1728f6e5b0b2b7cefb0774 | 27a00f802b79a116167901af255b367b7d34b1de | refs/heads/master | 2021-01-21T20:10:53.554171 | 2015-12-05T20:16:23 | 2015-12-05T20:16:23 | 46,994,455 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,395 | hpp | //
// Graphe.h
// Classe pour graphes orientés pondérés avec matrice d'adjacence
//
// Mario Marchand automne 2015.
//
#include "Graphe.h"
using namespace std;
//! \brief Constructeur sans paramètre
//! \post Un graphe vide est créé
template<typename T,typename N>
Graphe<T,N>::Graphe() : m_nbSommets(0)
{
}
//!... | [
"LordCatzorz@users.noreply.github.com"
] | LordCatzorz@users.noreply.github.com |
ae522007c5ab928a4a0539e582300471626e376e | 1c70b37ef62bd79b7abd5edd0a0ab95aa5999da9 | /main.cpp | 5100c8bd7f0f6d30b7c6b6a83c44c3dd9af4c0a9 | [] | no_license | eploentham/analogclick3 | d7acee8581a2a45d8ac0b498a6cf6ab143e626cc | f81dfb345e1dfb084ebbf648c12571f56f8c7687 | refs/heads/main | 2023-02-18T11:40:41.885472 | 2021-01-20T23:39:47 | 2021-01-20T23:39:47 | 331,461,626 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 374 | cpp | #include "mainwindow.h"
#include "analogclock.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
//MainWindow w;
//w.show();
analogclock clock;
clock.setWindowFlags(Qt::Window | Qt::FramelessWindowHint);
clock.setWindowState(clock.windowState()^Qt::WindowF... | [
"noreply@github.com"
] | eploentham.noreply@github.com |
b900c5278f7cfb6d1cb513eccdebcbef0d319bdf | 509cb2698bce113895eabeb8cfd596cc56ddc6bb | /gradesystem/teachermanagement.cpp | a834d68d4383b735de51fffe87adad1fafe50de7 | [] | no_license | freezingSword/gradesystem | e3c0c074a788dc0c874f2c130e3827b9996a7d0e | 42304a8b5130d7b2374487c3a31530717aa5c7f7 | refs/heads/master | 2020-05-04T17:01:40.720349 | 2019-04-03T12:33:47 | 2019-04-03T12:33:47 | 179,295,605 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 4,181 | cpp | #include "teachermanagement.h"
#include "QAbstractItemView"
teachermanagement::teachermanagement(QWidget *parent)
: QWidget(parent)
{
ui.setupUi(this);
ui.registerBox->hide();
ui.inputLine->setPlaceholderText("请输入学生学号或者学生姓名");
connect(ui.backBtn, &QPushButton::clicked, this, &teachermanagement::backSlot);
model =... | [
"17765080205@163.com"
] | 17765080205@163.com |
c7f0cbd57d2526c7a369815451040cf437bb7078 | 05982a796a413ebad8684cd594e26f49e873c9d9 | /code/C++Interview/constructor_explicit.h | e609ee90e2e9053aefda4924b9b97c4cd3d38d7d | [] | no_license | Meatlf/CPlusPlus | 6dd9c2689ca099f16018f8789339ac81aa998217 | 377de08eaeb783aa286f4f790a62af9d957e323b | refs/heads/master | 2021-01-04T10:26:36.167915 | 2020-09-02T12:03:42 | 2020-09-02T12:03:42 | 240,505,010 | 1 | 1 | null | null | null | null | GB18030 | C++ | false | false | 453 | h | #ifndef CONSTRUCTOR_EXPLICIT_H
#define CONSTRUCTOR_EXPLICIT_H
// 第6章 C++面向对象 面试题18 构造函数explicit与普通构造函数的区别
class CommonConstructor1
{
public:
CommonConstructor1(int n);
~CommonConstructor1();
private:
int num;
};
class ExplicitConstructor2
{
public:
explicit ExplicitConstructor2(int n); // expli... | [
"454779758@qq.com"
] | 454779758@qq.com |
474d85623fbaa9b96b27d573a83e0c863f03566b | 7e7b2f571b7e424cbc40149c8a259d264119246c | /c n cpp/stackincpp.cpp | 8e7012185055c92ea3e8830952b8e7ba782cd7a6 | [] | no_license | rahulrkroy/coding | d2aa90bd157e4e25f67d21468bc3d6a476de59bc | e088dbbe2f54d6a7e479ae2bd108b37dab64f682 | refs/heads/master | 2022-04-30T20:03:58.840687 | 2020-04-22T12:56:27 | 2020-04-22T12:56:27 | 236,187,162 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 359 | cpp | #include<bits/stdc++.h>
#include<stack>
using namespace std;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int i;
stack<int> s;
int a[]={1,2,3,4,5};
for(i=0;i<5;i++)
s.push(a[i]);
cout<<s.size()<<endl;
while(!s.empty())
{
cout<<s.top()<<endl;
s.po... | [
"rroy1045@gmail.com"
] | rroy1045@gmail.com |
19959021146870f8194ad89a190510f81b88e15d | d283a6926bf4665229c14643d7aee3bfc84661a5 | /2013_2014_IA_AterragensAvioes/GenSolucao.cpp | e2c5ff0717282b5472701a33da5033f4e8fba5c4 | [] | no_license | cmcmteixeira/IART | e40682dfb2aae77a7a1b3101dc96062c48d70189 | 84e58ed37cfb788efe96447500046ece45baddf4 | refs/heads/master | 2021-01-17T22:02:59.119257 | 2014-06-03T13:28:31 | 2014-06-03T13:28:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,700 | cpp | #include "GenSolucao.h"
#include <math.h>
#include <string>
#include <iostream>
#include <iomanip>
#include <string>
using namespace std;
#define JSON_AVIAO(nome_,hAterragem_,tempoOc_,intervInf_,intervSup_) "{\"nome\":"+'"'+nome_+'"'+",\"hAterragem\":"+to_string(hAterragem_)+ ",\"tempoOcup\":"+to_string(tempoOc_)+",\"i... | [
"pedro.cls93@gmail.com"
] | pedro.cls93@gmail.com |
7a622d702109b186d28f0ed4ef1599716b49e281 | 60c17786ad5e166ffd20ef81bd1ea2cfb4da0076 | /C/ATM/main.cpp | b9469d6a854ac38e8f0bf2d44c19260aee0ac25a | [] | no_license | caitlinsigler/SCUProjects | 80192552a20fb7885adf3293607fb329502181b9 | af9885892824d43419f6f5c984fa2a482edddd7d | refs/heads/master | 2020-04-12T17:02:15.112170 | 2019-08-02T22:06:33 | 2019-08-02T22:06:33 | 162,632,548 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 524 | cpp | //
// main.cpp
// ATM
//
// Created by Caitlin Sigler on 1/24/17.
// Copyright © 2017 Caitlin Sigler. All rights reserved.
//
#include <iostream>
#include "Atm.hpp"
using namespace std;
int main() {
Atm B (5,9);
Atm C (2,3);
BankAccount Bob (86, 86, 23, "bob");
cout<< B.operator+=(C);
cout<<... | [
"noreply@github.com"
] | caitlinsigler.noreply@github.com |
e7d9bcb49d031fec547591973eff37e406ffa645 | 6e090f047907e56f8401debc579d34f293576451 | /libs/pokerstove/peval/Rank.cpp | 0fae54d7b17968e024433e6699b70deddeb8d22a | [] | no_license | simonfang13/pokerstove | 2b6e0c5a2cfd326dccf9f6db0f722e179be59df3 | 8024b330ec9110e640b9ab27b16c7771e13525ac | refs/heads/master | 2020-12-25T00:09:47.142134 | 2013-05-18T02:19:40 | 2013-05-18T02:19:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,008 | cpp | /**
* Copyright (c) 2012 Andrew Prock. All rights reserved.
* $Id: Rank.cpp 2649 2012-06-30 04:53:24Z prock $
*/
#include <stdexcept>
#include "Rank.h"
using namespace std;
using namespace pokerstove;
Rank::Rank (const string& c)
{
fromString (c);
}
string Rank::str () const
{
switch (_rank)
{
case ... | [
"prock@cs.wisc.edu"
] | prock@cs.wisc.edu |
229f81ecbf1dab26cf26732e42fe49108907f83c | 80e0ffdc9cfd85c52a09a426b0f1a4a8b8a47f17 | /api_record.cpp | e47743f84a1daf08e8d65f364eee2674fdc225ad | [] | no_license | cwpearson/cupti | 66dd428780a365637dcfa51da022fc49947eb0f4 | 7b58c4c268a1e272900859e42c0406ae2b61cb10 | refs/heads/master | 2020-06-03T12:40:02.050627 | 2017-07-26T12:38:30 | 2017-07-26T12:38:30 | 94,129,464 | 8 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 1,404 | cpp | #include "api_record.hpp"
#include <cassert>
#include <boost/property_tree/json_parser.hpp>
#include <boost/property_tree/ptree.hpp>
using boost::property_tree::ptree;
using boost::property_tree::write_json;
const ApiRecord::id_type ApiRecord::noid =
reinterpret_cast<ApiRecord::id_type>(nullptr);
void ApiRecor... | [
"pearson@illinois.edu"
] | pearson@illinois.edu |
ee0d7c68ad59ac490d2cdf57e3f6e760ef0aed98 | acf61747bffde31ae4d85692f246befbd4df49dd | /hdu/a_2097.cpp | 7b2886e5a6b2f812c049ea9e34b9d824db6e6b07 | [] | no_license | BanBuDu0/code | 778b1f182feb7a8d54a57df3d1dbdf7a89a38d62 | 06ff86ed9634569972f628681c4e17723dd99381 | refs/heads/master | 2021-06-16T13:37:40.137764 | 2021-02-01T01:42:59 | 2021-02-01T01:42:59 | 134,948,543 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 661 | cpp | #include<iostream>
using namespace std;
int main(int argc, char const *argv[])
{
int num;
while(cin >> num && num != 0){
int reg[3] = {0};
int t = num;
while(t){
reg[0] += t % 10;
t /= 10;
}
t = num;
while(t){
reg[1] += t % 16;... | [
"1171871069@qq.com"
] | 1171871069@qq.com |
1252f9f5256b875a14b88be4200d6f600d14169e | 4433c23517a0b16fd17ae192e8cd8f46058814f6 | /CodeForces/461/A[ Appleman and Toastman ].cpp | 91ba4eb7dd4d0212c7ba76de79996e57ba28e325 | [] | no_license | navidkpr/Competitive-Programming | 103ca6c40a41658b053be86bd7a27a73e3d64d24 | e47400cf59dea3b224fe7f1007aded347e9320d1 | refs/heads/master | 2023-08-27T22:19:40.019391 | 2019-02-16T21:14:36 | 2019-02-16T21:14:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 381 | cpp | #include <iostream>
#include <algorithm>
using namespace std;
const int MAXN = 400*1000;
long long int arr[MAXN];
int main()
{
ios::sync_with_stdio(false);
int n;
cin >> n;
for (int i = 0; i < n; i++)
cin >> arr[i];
sort(arr, arr + n);
long long int sum = 0;
for (int i = 0; i < n; i++)
sum += arr[i] * (i ... | [
"navidkouchakipour@yahoo.com"
] | navidkouchakipour@yahoo.com |
9c4922ef23fbf7013aa53eb6425c7802d6d581c3 | 4b0de06b3f9cbf770a6d13fb2ffb1e95af2a79fd | /2_1.cpp | 4f026a1a8e1c6b312448fc7eeb822cd8ecdba671 | [] | no_license | armine94/pratasolutions | f3ed7227c69c5e191f2e2c57582332af1b10d801 | 8f25a53fea7bb77a9fc4ba969eaf1cbddda244f8 | refs/heads/master | 2020-03-16T15:40:31.787266 | 2019-03-17T14:42:33 | 2019-03-17T14:42:33 | 132,754,157 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 174 | cpp | #include <iostream>
int main()
{
std::cout<<"Gevorgyan Armine"<<std::endl;
std::cout<<"HH Loru marz gyux Antaramut 3 poxoc tun 38 "<<std::endl;
return 0;
}
| [
"vano.varderesyan@mail.ru"
] | vano.varderesyan@mail.ru |
a9834dc86668331cf50d81d84a6f79449621386c | 6b2a8dd202fdce77c971c412717e305e1caaac51 | /solutions_5756407898963968_0/C++/ntq/main.cpp | 09952a11b092cecfb66eaa510d4ecc906f024bad | [] | 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 | 997 | cpp | #include <iostream>
#include <vector>
using namespace std;
int main(){
int T; cin >> T;
for(int t=0; t<T; t++){
cout << "Case #" << t+1 << ": ";
int first_row; cin >> first_row;
int first_arrangement[4][4];
for(int row=0; row<4; row++){
for(int column=0; column<4; column++){
cin >> first_arrangemen... | [
"eewestman@gmail.com"
] | eewestman@gmail.com |
8ec8a894f54f027609ce4209657091cc7c16a91a | d877e7029c89dba8dd0492ced90a1b2d30295e9b | /tests/fuzzer/flatbuffers_monster_fuzzer.cc | 2b0504873503f1576bd0d66c39f3aa5eeaaee7d7 | [
"Apache-2.0"
] | permissive | geromeysmael-zip-owner-zip/flatbuffers | 9c6be50b56cb43f6cb9536828a08f1117baa7096 | a82c2820e21645d33b629092e0077c2d1e020017 | refs/heads/master | 2023-02-07T15:42:10.710881 | 2020-12-27T07:20:47 | 2020-12-27T07:20:47 | 324,704,693 | 0 | 0 | Apache-2.0 | 2020-12-27T07:22:42 | 2020-12-27T06:50:56 | C++ | UTF-8 | C++ | false | false | 3,524 | cc | /*
* Copyright 2014 Google Inc. 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 applica... | [
"noreply@github.com"
] | geromeysmael-zip-owner-zip.noreply@github.com |
e7bad4f229a6bbdb3085281c420a7086654f5cb7 | c5f1a804dbd1f5de123469dd5432633633e80597 | /GAMELIB/Graphics/SharedSkin.h | 56ed8268030c94f90f6351ec951ea7a7abbfea2a | [] | no_license | brosell/HTS-Games | 2d03a8988adc5c613dba1e249a7e0b409593ff11 | 3c7c1cc2ec4fe0ba7865f6eec5cec905faab5a3f | refs/heads/master | 2021-01-22T21:23:38.681074 | 2020-01-12T15:41:47 | 2020-01-12T15:41:47 | 85,423,760 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,744 | h | #ifndef SharedSkin_h
#define SharedSkin_h
#include "Graphics/Display.h"
#include "Graphics/Skin.h"
#include "Timer.h"
#include <vector>
#include <list>
#include <string>
using namespace std;
class SharableSkin;
class SharedSkin: public Skin, public TimerListener
{
public:
virtual HTexture currentFrame();
virtu... | [
"bert@rosell.net"
] | bert@rosell.net |
fe2ef61f1485658cdfd207bb235597bd9d23156e | 66c9ca26d25ec0686136600c93df1a6f2abf77c2 | /PaperFolderArduino_Code.ino | bba89115945935f1e17f70dcdafd0a59c9d363d3 | [] | no_license | dcrey123/Paper-Folding-Robot | 7dcd358d153232e0d3128b2dec78b02042b9c7eb | 7bddf760bf5fdcbda2ef79f6bb0568661fb4739a | refs/heads/main | 2023-03-20T02:51:08.491953 | 2021-03-13T05:18:31 | 2021-03-13T05:18:31 | 347,279,997 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,238 | ino | /* THE PAPER FOLDER. This program is the code for a robot that folds printer paper in hald hamburger style. */
#define WATCHLED 2
#define STARTBUTTON 3
#include <Servo.h>
Servo myservo_1; //microservo that rotates metal bar
Servo myservo_2; //microservo that rotates to lock end of metal bar
Servo myservo_3; //bigg... | [
"noreply@github.com"
] | dcrey123.noreply@github.com |
2793d82cfbb06501ed3d6e59518ad87b0dfbf20c | ac507e24073717f0f2f43480101be5db0213c2c4 | /pwiz/analysis/eharmony/Feature2PeptideMatcher.hpp | 150575f05a2c41196f21d7a30d0df4c51ede2e67 | [
"LicenseRef-scancode-free-unknown",
"Apache-2.0"
] | permissive | ProteoWizard/pwiz | 7adbd5a276b49d5f0271eb8cfddbd6d21ee31318 | f708f62d098c33ef60a76d92b038fde74361570a | refs/heads/master | 2023-08-27T20:42:37.708268 | 2023-08-25T18:30:50 | 2023-08-25T18:30:50 | 124,952,577 | 185 | 92 | Apache-2.0 | 2023-09-14T20:39:46 | 2018-03-12T21:16:01 | C# | UTF-8 | C++ | false | false | 2,782 | hpp | //
// $Id$
//
//
// Original author: Kate Hoff <katherine.hoff@proteowizard.org>
//
// Copyright 2009 Center for Applied Molecular Medicine
// University of Southern California, Los Angeles, CA
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with... | [
"khoff@ca36993f-311d-43bf-b7bd-f3fd426d09d2"
] | khoff@ca36993f-311d-43bf-b7bd-f3fd426d09d2 |
e5063a864583ce0228be28c4edd5b55763c301d2 | b8e4aabcff25ded8624dbea9bfd8342c2506e730 | /gKit/Widgets/nvSDLFont.cpp | 9f66f78ab01cac036fe596d1fcf00d3ec684f03b | [] | no_license | joelrandria/quickhull | 6e97f1549ae7c8087213e018d475e248652d5565 | 90518ecbf6e6c04274fb362b994242d468c5992a | refs/heads/master | 2016-09-06T18:17:35.762594 | 2015-07-17T15:09:25 | 2015-07-17T15:09:25 | 38,432,998 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,147 | cpp |
#include <math.h>
#include <cassert>
#include "SDLPlatform.h"
#include "SDLttfPlatform.h"
#include "IOFileSystem.h"
#include "Logger.h"
#include "Widgets/nvSDLFont.h"
namespace nv {
SdlFont::SdlFont( const char *filename, const int size )
:
UIFont(),
m_filename(filename),
m_size(size),
m_sdl_t... | [
"j.randrianandrasana@gmail.com"
] | j.randrianandrasana@gmail.com |
221a1871b50ba5c723dafbd59714ebd68d27d4fe | d0c44dd3da2ef8c0ff835982a437946cbf4d2940 | /cmake-build-debug/programs_tiling/function13979/function13979_schedule_2/function13979_schedule_2.cpp | d9bceb7567d1624c2d778b78a5742bbc219d995f | [] | no_license | IsraMekki/tiramisu_code_generator | 8b3f1d63cff62ba9f5242c019058d5a3119184a3 | 5a259d8e244af452e5301126683fa4320c2047a3 | refs/heads/master | 2020-04-29T17:27:57.987172 | 2019-04-23T16:50:32 | 2019-04-23T16:50:32 | 176,297,755 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 943 | cpp | #include <tiramisu/tiramisu.h>
using namespace tiramisu;
int main(int argc, char **argv){
tiramisu::init("function13979_schedule_2");
constant c0("c0", 524288), c1("c1", 128);
var i0("i0", 0, c0), i1("i1", 0, c1), i01("i01"), i02("i02"), i03("i03"), i04("i04");
input input00("input00", {i0}, p_int3... | [
"ei_mekki@esi.dz"
] | ei_mekki@esi.dz |
75764d1f0488dca74b3e0f660801ef33dbfbfe04 | fbe77e9e2a53a4600a1d9b00b5f2c29ee3e8c59a | /externals/binaryen/test/emscripten/tests/poppler/poppler/JArithmeticDecoder.cc | ec0778e64f436b5a4b4f2e6f4d384e3cacd5c02e | [
"MIT",
"NCSA",
"GPL-1.0-or-later",
"GPL-2.0-or-later",
"LGPL-2.0-or-later",
"GPL-2.0-only",
"Apache-2.0",
"BSD-3-Clause"
] | permissive | AcuteAngleCloud/Acute-Angle-Chain | 8d4a1ad714f6de1493954326e109b6af112561b9 | 5ea50bee042212ccff797ece5018c64f3f50ceff | refs/heads/master | 2021-04-26T21:52:25.560457 | 2020-03-21T07:29:06 | 2020-03-21T07:29:06 | 124,164,376 | 10 | 5 | MIT | 2020-07-16T07:14:45 | 2018-03-07T02:03:53 | C++ | UTF-8 | C++ | false | false | 7,136 | cc | //========================================================================
//
// JArithmeticDecoder.cc
//
// Copyright 2002-2004 Glyph & Cog, LLC
//
//========================================================================
#include <config.h>
#ifdef USE_GCC_PRAGMAS
#pragma implementation
#endif
#include "Object.h"
... | [
"caokun@acuteangle.cn"
] | caokun@acuteangle.cn |
6dee15e58f9ea7df5655ddce9be054ba950185c2 | 1f45bf1127ff868bf4d22753a65047d874c2ffb1 | /src/components/application_manager/include/application_manager/commands/hmi/navi_alert_maneuver_request.h | 1e2a39df94e63b4be1635cfaf1c09511f1790804 | [] | no_license | smartdevice475/sdl_core_v3.6_wince | 50207a89fa2bfe0487409e4ad3babae52e477b54 | 5fff3bd40f83517f89428895b3dbe069b0f2f262 | refs/heads/master | 2021-01-18T09:34:08.202701 | 2016-08-10T01:57:23 | 2016-08-10T01:57:23 | 55,580,033 | 2 | 0 | null | 2016-04-06T06:05:08 | 2016-04-06T06:05:08 | null | UTF-8 | C++ | false | false | 2,656 | h | /**
* Copyright (c) 2013, Ford Motor Company
* 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 condi... | [
"luwanjia@beyondsoft.com"
] | luwanjia@beyondsoft.com |
d00ce38a7a282513ef70b7524bf110694241817c | 9b6c0fe039f9ab81b8a88334b5f2545d75578ef6 | /src/qt/paymentserver.cpp | 6552a1c5d71bd44e8af333a679dc8e7ebc65d323 | [
"MIT"
] | permissive | cryptoandcoffee/DCUMN | a6bb174537299e85b1252b78413f648b1f87e9e3 | 85b873a90b3a2df6870d7ea74ea5087945e238bb | refs/heads/master | 2020-04-04T19:45:30.566019 | 2018-11-05T13:28:24 | 2018-11-05T13:28:24 | 156,219,379 | 0 | 0 | MIT | 2018-11-05T13:07:46 | 2018-11-05T13:07:46 | null | UTF-8 | C++ | false | false | 28,027 | cpp | // Copyright (c) 2011-2015 The Bitcoin Core developers
// Copyright (c) 2014-2017 The Dash Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "paymentserver.h"
#include "dcuunits.h"
#include "guiutil.h"
#i... | [
"admin@dogecoinultra.COM"
] | admin@dogecoinultra.COM |
12f37099cd1bc8506987ee7a5bce02d59acd3c20 | b6ed2145ed73919ec42f3d34ccb67a7ecc621b3a | /c++/DataStructures/5/5.15.cpp | ed201d94e0efb2d265257856f8ce0fc37e621404 | [] | no_license | gilsaia/college-study | 26d9813ab5e5f125618aec787c942e442b0fb630 | 66d2dda1b322077fd58abe56ba602da5260856be | refs/heads/master | 2021-06-03T06:23:05.770868 | 2019-09-22T14:22:22 | 2019-09-22T14:22:22 | 138,689,516 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 593 | cpp | #include<string>
#include<vector>
using namespace std;
size_t hashstr(const string &a)
{
size_t hashval=0;
for(char ch:a)
{
hashval=37*hashval+ch;
}
return hashval;
}
size_t findsubstr(string &root,string &find)
{
size_t tofind=hashstr(find);
int i=find.size();
for(int t=0;t+i<ro... | [
"794433219@qq.com"
] | 794433219@qq.com |
5083b158312aed74cea892a71add38df9d1a2e03 | 8a1dde5481b4e43f1e84a22a100523eb79ffd66d | /sourceCode/application/logic/model/imageScene/S_booleanKeyStatus.hpp | fb7e33fa005ee99fb6bbbbc50664b5e2842069eb | [
"LicenseRef-scancode-cecill-b-en"
] | permissive | lp-rep/stackprof-1 | dbd5ded997c14064664bcd7e7a75682810c5dd25 | 62d9cb96ad7dcdaa26b6383559f542cadc1c7af2 | refs/heads/main | 2023-07-19T14:06:58.461316 | 2021-09-16T12:38:37 | 2021-09-16T12:38:37 | 373,641,344 | 0 | 0 | NOASSERTION | 2021-06-03T21:06:55 | 2021-06-03T21:06:54 | null | UTF-8 | C++ | false | false | 1,979 | hpp | #ifndef S_BOOLEANKEYSTATUS_HPP
#define S_BOOLEANKEYSTATUS_HPP
#include <QtGlobal>
#include <QGuiApplication>
/*
https://doc.qt.io/qt-5/macos-issues.html
' Special Keys
To provide the expected behavior for Qt applications on macOS,
the Qt::Key_Meta, Qt::MetaModifier, and Qt::META enum values correspond to the... | [
"pourchet@ipgp.fr"
] | pourchet@ipgp.fr |
32370f60a9bc81e5022158a6bc640a83ac82aa5f | 85e7ac745ec2b3b0fb71849630a11359d588d79f | /sort.cpp | f82456d9d5fde4d80508783fcd7762859915ec38 | [] | no_license | lhaquoc/DS | f22a927342728592f2e5399b0c9b3ef068b72523 | 446dbcd9b99d48414db69dfebc8f9fcbdd05a21f | refs/heads/main | 2023-06-09T01:23:39.972493 | 2021-06-29T01:17:45 | 2021-06-29T01:17:45 | 346,310,191 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,081 | cpp | #include <iostream>
using namespace std;
void printArray(int s, int a[], int size) {
cout << s << ": ";
for(int i = 0; i < size; i++) {
cout << " " << a[i] << " ";
}
cout << endl;
}
void selectionSort(int a[], int n) {
}
void insertSort(int a[], int n) {
for(int i = 1; i < n; i++) {... | [
"38935979+lhaquoc@users.noreply.github.com"
] | 38935979+lhaquoc@users.noreply.github.com |
00ab24dd6ade11d7637ade1168b61188fe54c428 | e38ba502ebd86486f650f59d612a5a9fc19d904b | /TCPChatServer/BaseParseSection.cpp | 1c849098f9c43cd858ed01a5e10b1f848aecda28 | [] | no_license | limitofzero/ChatServer | eaa7d7c94b1def01ed702f599ec9b0d2c96b1892 | 6d072e4744177217dd1910185d9efcd43994ad74 | refs/heads/master | 2021-01-10T08:10:10.992399 | 2016-04-09T08:16:21 | 2016-04-09T08:16:21 | 53,189,057 | 0 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 674 | cpp | #include "BaseParseSection.h"
#include <boost/log/trivial.hpp>
JsonParser::BaseParseSection::BaseParseSection(
const Json::Value & root, const Json::Value & schemaDoc) :
jsValue(root),
valijsonParser(SchemaParser::kDraft4),
schemaAdapter(schemaDoc)
{
try
{
valijsonParser.populateSchema(schemaAdapter, schema);
... | [
"limitofzero@gmail.com"
] | limitofzero@gmail.com |
0b0f1350ac97c12380c21ebec0ea09aef8e13b36 | 9d851f5315bce6e24c8adcf6d2d2b834f288d2b2 | /chipyard/tools/chisel3/test_run_dir/LFSRMaxPeriod/202003062134216446281412177410151/VLFSRMaxPeriod.cpp | 473265dceff5ea824de3c184efb666c90c66bc5f | [
"BSD-3-Clause"
] | permissive | ajis01/systolicMM | b9830b4b00cb7f68d49fb039a5a53c04dcaf3e60 | d444d0b8cae525501911e8d3c8ad76dac7fb445c | refs/heads/master | 2021-08-17T22:54:34.204694 | 2020-03-18T03:31:59 | 2020-03-18T03:31:59 | 247,648,431 | 0 | 1 | null | 2021-03-29T22:26:24 | 2020-03-16T08:27:34 | C++ | UTF-8 | C++ | false | false | 14,021 | cpp | // Verilated -*- C++ -*-
// DESCRIPTION: Verilator output: Design implementation internals
// See VLFSRMaxPeriod.h for the primary calling header
#include "VLFSRMaxPeriod.h" // For This
#include "VLFSRMaxPeriod__Syms.h"
//--------------------
// STATIC VARIABLES
//--------------------
VL_CTOR_IMP(VLFSRMaxPerio... | [
"ajithkumar.sreekumar94@gmail.com"
] | ajithkumar.sreekumar94@gmail.com |
9510e98f6147c172e0b873e0c52e30db8e52c74c | bf8bd7606e57a3e01615b2ac41462c5fedccab94 | /spoj/8171.cpp | 30e444f0d98dc9d99766baed105d5647a6a8b7c0 | [] | no_license | jamyan99/project | 1618718ef476832df0ca2e5f31bb6e9c00b957c3 | bd9ea6bb1451368a4bf0f1b106f3bb54d6ac30e8 | refs/heads/master | 2020-03-23T19:26:24.511154 | 2018-07-23T14:52:23 | 2018-07-23T14:52:23 | 141,977,717 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 386 | cpp | #include <iostream>
using namespace std;
int main(){
int a, b;
cin >> a;
cin >> b;
// cin >> a >> b;
int max;
if (a > b){
max = a;
}else{
max = b;
}
int s = 0;
s = a + b;
cout << s << endl;
int n, i;
cin >> n;
int A[n];
for (i = ... | [
"jamyan_08@yahoo.com"
] | jamyan_08@yahoo.com |
d0a44fad7b4f73ba07202be382b4d0e2d6ffb67e | 0d5fc13c59178ae0bb9ca7126d3de42e80c9bba6 | /chessboard.h | 7697e44d4767fd948b8ce8f11b5eb69857890275 | [] | no_license | lpuiling/Chess | feb57956672acb17b66e3753ed0c734d31ffb3a5 | e844f25273d79a58aca85d193b985c6ce807348d | refs/heads/master | 2021-01-20T07:50:50.889905 | 2014-09-14T14:36:58 | 2014-09-14T14:36:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 634 | h | #ifndef CHESSBOARD_H
#define CHESSBOARD_H
#include <QWidget>
#include <QLabel>
class chessboard : public QWidget
{
Q_OBJECT
public:
static const int Rows = 8;
static const int Columns = 8;
explicit chessboard(QWidget *parent = 0):
QWidget (parent)
{
layout = new QGridLayout (this);
... | [
"lpuiling@umich.edu"
] | lpuiling@umich.edu |
aac8a95f534a5abccdaab7ba29063470573dda02 | 3fcf5423687e8ac776bcfea42d88f8cdc761cbb4 | /hospital/bll/SettingBLL.cpp | b2a83ad36cc3f4836377d587872e640ae0fe9454 | [] | no_license | suypcjiajia/demohttp | 3d70d9ad342cb8e46394f0b5c3df52c6d47a557f | d1c6a66ae6cd46a43333f54d3be331ccb7200348 | refs/heads/master | 2020-05-19T11:12:45.715476 | 2019-05-05T05:57:33 | 2019-05-05T05:57:33 | 184,985,943 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,428 | cpp | /*
*Description:配置业务接口
*Others:
*/
#include "com/RetJsonMsg.hpp"
#include "MyUtil.h"
#include "TMd5.h"
#include "SettingBLL.h"
#include <unistd.h>
#include <stdlib.h>
#include <sstream>
#include "log/Logger.h"
#include "TFile.h"
#include "TConvert.h"
#include "Config.h"
#include "MyAES.h"
#include "com/PostsAes.h"
... | [
"suypcjiajia@163.com"
] | suypcjiajia@163.com |
68f84e6519e81319d0120f417e5b73e1d9dd540e | d88781b030eeb82823d80dd3fa66612372fad4b2 | /src/Melkor/NeuralNetwork/RBFBPNTrainer.cpp | 1c22db6a90732ae9f6aeffc7edadc4772c0815ca | [] | no_license | julianchurchill/Melkor | 9796c5be211f9195ffd281c94687d5a7ab3b8f1b | 6671b1ccb490f21b39ff833622e6f599ce3e34b3 | refs/heads/master | 2021-01-01T19:10:07.891261 | 2014-07-25T20:50:28 | 2014-07-25T20:50:28 | null | 0 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 14,636 | cpp | #include "RBFBPNTrainer.h"
#include "CN.h"
#include <ctime>
// This training method is based on Adrian Cook's PhD thesis work
// This version uses the first two phases:
// 1. Competitive training of hidden nodes (unsupervised).
// 2. Output node training (supervised).
/** Train the neural network against a single inp... | [
"chewielouie03@gmail.com"
] | chewielouie03@gmail.com |
ae09ebc045733bb1bc473e9d6a05a22d1841e4e1 | 8dc84558f0058d90dfc4955e905dab1b22d12c08 | /third_party/webrtc/pc/rtp_receiver.cc | 60f5ea8659b5a1f0c35b4f93c17dbd0389dec8df | [
"LicenseRef-scancode-unknown-license-reference",
"BSD-3-Clause",
"LGPL-2.0-or-later",
"GPL-1.0-or-later",
"MIT",
"Apache-2.0",
"LicenseRef-scancode-google-patent-license-webm",
"LicenseRef-scancode-google-patent-license-webrtc",
"LicenseRef-scancode-takuya-ooura",
"LicenseRef-scancode-public-domai... | permissive | meniossin/src | 42a95cc6c4a9c71d43d62bc4311224ca1fd61e03 | 44f73f7e76119e5ab415d4593ac66485e65d700a | refs/heads/master | 2022-12-16T20:17:03.747113 | 2020-09-03T10:43:12 | 2020-09-03T10:43:12 | 263,710,168 | 1 | 0 | BSD-3-Clause | 2020-05-13T18:20:09 | 2020-05-13T18:20:08 | null | UTF-8 | C++ | false | false | 15,063 | cc | /*
* Copyright 2015 The WebRTC project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing ... | [
"arnaud@geometry.ee"
] | arnaud@geometry.ee |
74b94e56c8689b4f4d12a7d7e3ee379b69dd2dac | 267140cb56296b0308afb437303843a4a7189236 | /stdafx.h | 8c527414ae421e34665b284a7e9e6c984380f0be | [] | no_license | joshua3403/Network-Library-Class-Client- | 94c9a71e9f96bbdc8b973138568868f1d5c4f3e4 | 47edf07f7ea56e258bd283459a2901f05ebb854b | refs/heads/master | 2022-12-20T16:41:03.560526 | 2020-10-02T03:31:35 | 2020-10-02T03:31:35 | 296,841,571 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 566 | h | #pragma once
#define _WINSOCK_DEPRECATED_NO_WARNINGS
#define _CRT_SECURE_NO_WARNINGS
#pragma comment(lib, "DbgHelp.Lib")
#pragma comment(lib, "ImageHlp")
#pragma comment(lib, "psapi")
#include <WinSock2.h>
#include <stdlib.h>
#include <ws2tcpip.h>
#include <locale.h>
#include <Windows.h>
#include <time.h>
#include <p... | [
"joshua3403@gmail.com"
] | joshua3403@gmail.com |
b981caa247d49600bf7b5804bf69a93dc97ba2ec | 8a7accf6e7f11b359495fbb631bea3dbe4d3dcca | /src/main/native/driver/src/JCudaDriver_common.hpp | c1c896cb4b639cbe3b1105c043e615582cfbcd26 | [] | no_license | RoelVanderPaal/jcuda | aa47a7ac3a06bbed14c8e457a1ec1aec8985c2e7 | 7f860a16a1b58ba952177df0a369e0d820b660a7 | refs/heads/master | 2021-01-13T06:34:47.053161 | 2015-10-04T10:36:20 | 2015-10-04T10:36:20 | 43,371,541 | 0 | 0 | null | 2015-09-29T14:11:12 | 2015-09-29T14:11:10 | null | UTF-8 | C++ | false | false | 3,498 | hpp | /*
* JCuda - Java bindings for NVIDIA CUDA driver and runtime API
*
* Copyright (c) 2009-2015 Marco Hutter - http://www.jcuda.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 with... | [
"roel.vanderpaal@gmail.com"
] | roel.vanderpaal@gmail.com |
2f1ae64d6d68c00a43327db2a5aa345642eac124 | 3063d9109dbd02bef8f2b993a66cb2fd541bb92e | /KalmanFilter.cpp | 80e5694bf0870d54deeedfccf9d299cdf11cffbd | [] | no_license | mdmosley1/RobotSimQT | 9bc62bf50677063acc6dbe4ba9b2b96bdf12e431 | 028ab2bce1733105f9a4071825fb2483b687e934 | refs/heads/master | 2021-06-25T12:57:46.569702 | 2021-03-08T23:58:40 | 2021-03-08T23:58:40 | 204,336,182 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 3,049 | cpp | #include "KalmanFilter.h"
#include <iostream>
#include "yaml-cpp/yaml.h"
using namespace Eigen;
void KalmanFilter::Init()
{
// Load params from yaml file
YAML::Node config = YAML::LoadFile("config.yaml");
const double measStdDevX = config["measStdDevX"].as<double>();
const double measStdDevY = config[... | [
"mdmosley1@gmail.com"
] | mdmosley1@gmail.com |
78df4e71902fd14e554e2b53af1a0e76b53304ee | d8e8d5fdaa11ca2e1e1817cf7c1d5c6438cba789 | /Bootcamp 11/Pre Bootcamp Contest 11 (2)/O.cpp | 1d0025bf35757254896296be0f38254ea4db8f9f | [] | no_license | SafiyatulHoque/Bootcamp-NSU | 6e62827c5326fdcca61abe2957bc25b8159171f5 | c64af2c67409306830d49977629427344627d03c | refs/heads/master | 2023-08-23T11:00:48.481404 | 2021-10-23T17:50:09 | 2021-10-23T17:50:09 | 403,563,113 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 267 | cpp | #include<iostream>
#include<cmath>
using namespace std;
int main()
{
long long mod=1000000007;
int t;
cin>>t;
for(int i=0;i<t;i++)
{
long long n;
cin>>n;
cout<<"Case #"<<i+1<<": "<<pow(2,n-1)*n<<endl;
}
return 0;
}
| [
"safiyatulhoque2014@gmail.com"
] | safiyatulhoque2014@gmail.com |
3985b7f8f4de1d3ebd5b5939bb425bbb0f345e40 | ff383401324de6a733c57014925e1db9e153b822 | /Difficulty/Easy/[136] Single Number/solution.cpp | b78d82f9792c218dd86e857f4a038abd6eea5cb2 | [] | no_license | ForSign/Leetcode-1 | 7af7a74c9a5c01c7e67faa5f6e5874f4d3902565 | 9a2d41fb15304cc7aaff5a36aced5dc0ab6d3745 | refs/heads/master | 2023-03-15T20:21:07.254494 | 2020-10-14T08:04:24 | 2020-10-14T08:04:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 611 | cpp | /*
* @lc app=leetcode id=136 lang=cpp
*
* [136] Single Number
*/
// @lc code=start
class Solution {
public:
int singleNumber(vector<int>& nums) {
unordered_map<int, int> m;
int res = 0;
for (auto i : nums)
m[i]++;
for (auto p : m) {
if (p.second == 1) {
... | [
"15270989505@163.com"
] | 15270989505@163.com |
665c90e70499fb03bcefab7e2549fb16c768a201 | 8490d7340a0e1cf607e4a40b535b25b8c3f36f2c | /include/sock_base.h | ab115c216a5d10b06acce19fb69a3aeb9714dd7c | [] | no_license | webstorage119/proxy | 855c2cecc3e9c86e84807ee94e8ea64425e34da4 | 776eb8854dd1d24fa90486b1de82bebfd9f1183c | refs/heads/master | 2021-05-31T19:18:53.868999 | 2016-05-19T03:02:53 | 2016-05-19T03:02:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,892 | h | #ifndef __PROXY_SOCK_BASE_H__
#define __PROXY_SOCK_BASE_H__
#ifdef HAS_OPENSSL
#include <ssl_context.h>
#endif // HAS_OPENSSL
#ifdef HAS_LIBEVENT
#include <event.h>
#endif // HAS_LIBEVENT
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <errno.h>
#include <unistd.h>
#include <stdint.h>... | [
"xuecc@pci-suntektech.com"
] | xuecc@pci-suntektech.com |
33b33376c72dfc20de6101d5528ef24628c372a0 | 949633cd7f09a68b19304af14562b29514261ecc | /L1Trigger/CSCTrackFinder/src/core_2010_01_22/vpp_generated_constructor.cpp | 936a69db76c1d50154469af8dde77e0c932c2ec1 | [] | permissive | gsfs/cmssw | eabfe97b0594287ce25556e6b091956b72baad72 | fdbcb59c16cafd2a9b56177064bc0b6b93cc51dc | refs/heads/CMSSW_8_0_X | 2021-01-21T23:41:29.108786 | 2019-04-11T16:11:14 | 2019-04-11T16:11:14 | 226,406,411 | 0 | 0 | Apache-2.0 | 2019-12-06T20:39:25 | 2019-12-06T20:39:24 | null | UTF-8 | C++ | false | false | 449,580 | cpp | // This C++ source file was automatically generated
// by C++ model based on VPP library. Modification of this file
// is possible, but if you want to keep it in sync with the C++
// model, please modify the model and re-generate this file.
// VPP library web-page: http://www.phys.ufl.edu/~madorsky/vpp/
// Auth... | [
"giulio.eulisse@gmail.com"
] | giulio.eulisse@gmail.com |
f2e4153726e5e56a4f30483d4541d2326f3515e4 | 4ddfa685523dc3a7b800454e4873661d02ea9062 | /第5阶段-C++提高编程/02 STL初识/02 STL初识/03 STL初始-容器嵌套容器.cpp | 9c0c34ce41a430ca5b22aa9096b08beb2218c1eb | [] | no_license | yaoyaoz/c-Base | 9314d8ad9d6c2740546289cbddbc4b97e4f96f12 | c003c51266d68e21e8888732eb8412e4f92a8452 | refs/heads/master | 2022-04-05T05:16:31.248047 | 2020-01-04T14:57:58 | 2020-01-04T14:57:58 | 197,220,939 | 1 | 1 | null | null | null | null | GB18030 | C++ | false | false | 773 | cpp | #include<iostream>
using namespace std;
#include<vector>
int main()
{
vector<vector<int>> v;
//创建小容器
vector<int> v1;
vector<int> v2;
vector<int> v3;
vector<int> v4;
//向小容器中添加数据
for (int i = 0; i < 4; i++)
{
v1.push_back(i + 1);
v2.push_back(i + 2);
v3.push_back(i + 3);
v4.push_back(i + 4);
}
//将小... | [
"905440208@qq.com"
] | 905440208@qq.com |
7e9c3860991b3e0d2daeda3072e2fb88903e43a8 | 9fdb6486b12a6241fcad5daf5a70f0af10f0c050 | /src/masternodeconfig.h | 9a86bd2a074c2c921cddec1682a179fc0d0d5614 | [
"MIT"
] | permissive | QUAR-Network/QUAR-core | 95f49e5a5caeb4b0e6edb860de19a01837ec31c6 | e415ee0962939577da856cb05d335f3939ca17af | refs/heads/master | 2020-03-22T20:19:24.361867 | 2018-08-07T15:57:22 | 2018-08-07T15:57:22 | 140,589,771 | 0 | 6 | null | null | null | null | UTF-8 | C++ | false | false | 2,403 | h | // Copyright (c) 2014-2017 The Dash Core developers
// Copyright (c) 2017-2018 The Proton Core developers
// Copyright (c) 2018 The QUAR Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef SRC_MASTERNODEC... | [
"lucifercommunitychoice@gmail.com"
] | lucifercommunitychoice@gmail.com |
c73c73a67af16a0ba3e129f4f88692ae73d8adaa | 9fa363c042e4f7ba31d75f9535acb6dca69e79cb | /LCBCAdminSystem/AddUser.cpp | e306c22da5be7d0f681205356c2a1d045716b342 | [] | no_license | andreboyce/lcbcadminsystem | f30914132fdd100fa1e879b6f2648879a4f02b9f | 425af46bc3324289d23135f28f6ef6d8c702ba04 | refs/heads/main | 2023-03-14T15:34:08.496230 | 2021-03-11T11:10:49 | 2021-03-11T11:10:49 | 346,674,135 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 42 | cpp | #include "StdAfx.h"
#include "AddUser.h"
| [
"mobile@andreboyce.com"
] | mobile@andreboyce.com |
d229681d66293e2a62862e29dec179bb382c0138 | 214951a4b94cd13aa2bf181ed00eb1be308e36d2 | /sources/library/solvers/126.cpp | 6df73fe64541358a7e46e9db765b7def69c81c0a | [] | no_license | gcross/CodeQuest | a467d3443e09d1d239cea0719529cb91f8c1f7d5 | adbe674dcdf0415070835c47f9820604757e647c | refs/heads/master | 2021-01-22T07:10:44.022991 | 2012-02-01T00:12:49 | 2012-02-01T00:12:49 | 210,991 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 251 | cpp | #include <boost/function.hpp>
#include "codequest.hpp"
namespace CodeQuest {
using boost::function;
typedef function<code (const dynamic_operator_vector&,bool)> solver;
solver solver_126 = solveForFixedSize<dynamic_operator_vector,126>;
}
| [
"gcross@phys.washington.edu"
] | gcross@phys.washington.edu |
d032b01f3203e352db04a72f8e5452e71268a697 | c732666c24d86e0da4cd2c1ee12619e9c514e818 | /offline/01_03/02-17/2/10942.cpp | 30edf81b1ca471e0f7bb34ac359079ebf83a8fc6 | [] | no_license | Algostu/boradori | 032f71e9e58163d3e188856629a5de4afaa87b30 | 939d60e8652074e26ba08252217f7788cae9063c | refs/heads/master | 2023-04-22T03:57:26.823917 | 2021-04-06T23:09:36 | 2021-04-06T23:09:36 | 263,754,451 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 997 | cpp | #include <bits/stdc++.h>
using namespace std;
typedef vector<vector<int>> matrix;
int main(void){
int n, m;
cin >> n;
vector<int> a(n+1);
matrix dp(n+1, vector<int>(n+1, 1));
for(int i=1; i<=n; i++){
scanf("%d", &a[i]);
}
for(int d=1; d<=n/2; d++){
for(int mid = d+1; ... | [
"consistant1y@ajou.ac.kr"
] | consistant1y@ajou.ac.kr |
78ed0832e0c5c7bd0c607e339c75034f58def664 | 34b77eec7101ed4a888c19e5c86ca30ecaa899c6 | /bench/function/scalar/is_less_equal.cpp | 897358ecfc73b83b4d9610e3881a7985d45362ce | [
"BSL-1.0"
] | permissive | superbobry/boost.simd | e4b8fda847cf6cba26f03253ec7f175637ab521c | ec25208be6b76d5c9207621a9e5dff7f15a8791d | refs/heads/develop | 2021-01-15T19:44:11.224619 | 2016-06-10T10:30:39 | 2016-06-10T10:30:39 | 60,840,174 | 0 | 0 | null | 2016-06-10T10:29:49 | 2016-06-10T10:29:49 | null | UTF-8 | C++ | false | false | 1,345 | cpp | // -------------------------------------------------------------------------------------------------
// Copyright 2016 - NumScale SAS
//
// Distributed under the Boost Software License, Version 1.0.
// See accompanying file LICENSE.txt or copy at
// ... | [
"jtlapreste@gmail.com"
] | jtlapreste@gmail.com |
e23a44a9fb80c93f2ba430d83fc6e44b4e2b84bb | 871af513f48b95a0e44fabf8b628e50c4f705c70 | /day-001-100/day-034/problem-2/main.cpp | e9000456387e69d060e071a50646aef1bfaf4cc9 | [] | no_license | xingfeT/c-practice | 4212cddd357ef1da8a9ee3242d6326a7fb86f89c | f7339cb21d4d1952c2c9fede8bd467111b04cd57 | refs/heads/master | 2023-05-25T02:38:10.065249 | 2018-11-19T11:44:06 | 2018-11-19T11:44:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 961 | cpp | /*
* Create a program that continously request for grades to be entered and compute the average.
*
*/
#include <stdio.h>
#include <ctype.h>
struct Grade
{
float Current;
float Total;
float Average;
int TotalGrades;
};
inline Grade
CreateGrade();
inline float
ComputeAverageG(Grade *);
inline void
PrettyPrin... | [
"nkanedev@gmail.com"
] | nkanedev@gmail.com |
26e52edfa6df2f4b7e477d336dfec550f735b540 | bfec72816d2dcd280c25b88993d88fbb30a15b85 | /MAMR Game Server/Server/MapGroupKernel/Network/MsgSyndicate.cpp | 8530bc9d9d02f20365d58b8294c0d9bb0f6eafc2 | [] | no_license | jon-karve/MAMR-Game-Server | e5e48f859d102f119eba8695c128d4ad4a270773 | e170ad89100188124e892d7caf260520e834f7d4 | refs/heads/master | 2023-03-21T18:50:59.082395 | 2020-10-23T03:57:43 | 2020-10-23T03:57:43 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 29,573 | cpp | // MsgBetOutside.cpp: implementation of the CMsgAtk class.
// 仙剑修,2002.1.8
//////////////////////////////////////////////////////////////////////
#include "AllMsg.h"
#include "basefunc.h"
#include "../MapGroup.h"
#include "../SynManager.h"
//////////////////////////////////////////////////////////////////////
// Const... | [
"c_pollack@hotmail.com"
] | c_pollack@hotmail.com |
fcaedd090175e22a5cec7f287dccfb8ebbcfb8e4 | d1b03d4b061305018084b4dc21a4bdba35335c05 | /Plugins/SocketIOClient/Source/ThirdParty/asio/asio/include/asio/ssl/detail/io.hpp | 426a57c4450b20fbe1749d871f672e5a5866e6a5 | [
"Apache-2.0",
"MIT",
"BSL-1.0"
] | permissive | uetopia/ExampleGame | 004b9f1a6f93c725750a82b51cac8d8516c3b769 | 008ab5d3e817ef763fa42ed551715208682a7ecf | refs/heads/master | 2023-03-08T07:56:55.819372 | 2023-02-26T14:59:42 | 2023-02-26T14:59:42 | 205,035,752 | 36 | 16 | Apache-2.0 | 2020-05-23T22:14:35 | 2019-08-28T22:42:22 | C++ | UTF-8 | C++ | false | false | 11,412 | hpp | //
// ssl/detail/io.hpp
// ~~~~~~~~~~~~~~~~~
//
// Copyright (c) 2003-2019 Christopher M. Kohlhoff (chris at kohlhoff dot com)
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
#ifndef ASIO_SSL_DETAIL_IO_HPP
#d... | [
"ed@uetopia.com"
] | ed@uetopia.com |
97dad0a73e98b9aa533407716f56c27331dc47eb | 622df67006344be452e62f9b346ec438337f0cab | /cses/graphs/tp_bfs.cpp | b18be98090597fa4d5d80c2f03a0840697418444 | [] | no_license | arpu-nagar/Coding | 090981921cdeac70641fdb602ebfdad8b49d4867 | ec71c039784d423eae67b3a5c070c21117771edc | refs/heads/master | 2023-07-14T12:15:35.601131 | 2021-08-31T05:53:22 | 2021-08-31T05:53:22 | 252,650,938 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 411 | cpp | #include <bits/stdc++.h>
using namespace std;
using ll = long long int;
bool ok(ll a){
bool ans = true;
while(a){
int r = a%10;
if(r != 1 || r != 0) ans = false;
a/=10;
}
return ans;
}
int main(){
int t;
cin >> t;
while(t--){
ll a;
cin >> a;
if(ok(a)){
cout << a << endl;
continue;
}
for(i... | [
"arpnagar1@gmail.com"
] | arpnagar1@gmail.com |
19d5b1f1edcc4ebb06a03bd88f32c2b38a59bdb7 | 7e2a6bbaa038429d46631a1b41292bce14dc6d88 | /exnih/EnergyBounds.i.h | 8002fe5e54d44f69b8d2370e9ea3a2a8df05c4f6 | [] | no_license | eNorris/thesis | 6242c531cb3f9f330246458720ecd1a1559aa7e5 | b3b9ed0fcd52e5eb72cf3bbff1342191142bbfae | refs/heads/master | 2021-11-30T15:30:13.185279 | 2017-07-05T01:49:42 | 2017-07-05T01:49:42 | 53,451,637 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,061 | h | /*
* @file: EnergyBounds.cpp
* @author: Jordan P. Lefebvre, lefebvrejp@ornl.gov
*
* Created on August 22, 2013, 7:37 AM
*/
#include <algorithm>
#include "EnergyBounds.h"
namespace ScaleData {
template<class T>
EnergyBounds<T>::EnergyBounds() {
}
template<class T>
EnergyBounds<T>::EnergyBou... | [
"etnc6d@mst.edu"
] | etnc6d@mst.edu |
5e6f82a8b06d0f970a823d41108518cf3534cc05 | 94000d447528bd85d2c2abe4a787c370b00f7229 | /projects/chess/src/menu.cpp | be1e3d66d8cbe8bbdd283d44b4923cb8e06c55e2 | [] | no_license | elrinor/chaos-devices | 72ea8c55a2a8a77300d3dba402b316e0801d8338 | 40d30e059c8b9a2d80f28048e39634934c1d1f0b | refs/heads/master | 2023-08-05T01:39:38.908343 | 2021-09-17T18:33:16 | 2021-09-17T18:33:16 | 33,127,293 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,446 | cpp | #include <vector>
#include <string>
#include <sstream>
#include <list>
#include "client.h"
#include "mycurses.h"
#include "myutils.h"
#include "server.h"
#include "battle.h"
using namespace std;
string ServerName;
string ServerPort;
string Login;
string CurOpponent;
int MatchTime=0;
struct TOpponent... | [
"ru.elric@gmail.com"
] | ru.elric@gmail.com |
4de815342cbf9ae6137846d327fe59ae2b4a1012 | 6c61ce96359dfff1f0308ebb9e3237039ad688f7 | /Chp-05/Chp 05-Example/Page-161.cpp | 757ff45738b86830ee0445907209539b35d5601a | [] | no_license | MaxCurl002/Teach-Yourself-C | b9c386a0ad34149fee10ee4ae2068de3bfd1a322 | e9e5979b81e9e3c141c8213ab74151b6a9169fe7 | refs/heads/master | 2023-03-21T00:30:40.155190 | 2021-03-08T04:31:52 | 2021-03-08T04:31:52 | 344,351,006 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 251 | cpp |
#include <stdio.h>
int main ()
{
char text[][80]={"when", "in", "the", "course", "of", "human", "events", ""};
int i,j;
for(i=0;text[i][0];i++)
for(j=0;text[i][j];j++)
{
printf("%c ",text[i][j]);
}
return 0;
}
| [
"abhijit0191paul@gmail.com"
] | abhijit0191paul@gmail.com |
1e89108a37ec9079cccac4edf25ebd0c5667ef1d | 7f1f862bc9412536cfe33c6070f7ff333c45bcd4 | /pdb/mytable.cpp | 9d0d5514fd8cd2e6c1d572a61012c773db63cdbe | [] | no_license | ra2003/pdb | c5afffddb822f0b4a34c2f5b3782ed17e49f8139 | 3a8e230467b0039cb8b980fdfb64f1e0da10c17c | refs/heads/master | 2021-05-26T19:53:45.947143 | 2013-10-01T12:32:47 | 2013-10-01T12:32:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 31,671 | cpp | //
/*
This file is part of project pdb.
pdb is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License.
pdb is distributed in the hope that it will be useful,
but WITHOU... | [
"me@amironov.com"
] | me@amironov.com |
1773e41ab2456d6b2e4ed1d1ad518c5dd02c61c4 | 1df0f2dd40099cdc146dc82ee353e7ea4e563af2 | /mallard/SceneTreeItem.cpp | 358fb5757269bd9482facbb29fda02c125e19396 | [] | no_license | chuckbruno/aphid | 1d0b2637414a03feee91b4c8909dd5d421d229d4 | f07c216f3fda0798ee3f96cd9decb35719098b01 | refs/heads/master | 2021-01-01T18:10:17.713198 | 2017-07-25T02:37:15 | 2017-07-25T02:37:15 | 98,267,729 | 0 | 1 | null | 2017-07-25T05:30:27 | 2017-07-25T05:30:27 | null | UTF-8 | C++ | false | false | 3,369 | cpp | /*
* SceneTreeItem.cpp
* mallard
*
* Created by jian zhang on 1/18/14.
* Copyright 2014 __MyCompanyName__. All rights reserved.
*
*/
#include <QStringList>
#include "SceneTreeItem.h"
//! [0]
SceneTreeItem::SceneTreeItem(const QVector<QVariant> &data, SceneTreeItem *parent)
{
parentItem = parent;
i... | [
"zhangmdev@gmail.com"
] | zhangmdev@gmail.com |
8c0f5eb6a46ed7dd6e826a30cfdf8ec7c6ae5418 | ba73c355eaf88b2a4d984145e306b83cf53da9b8 | /controller/openflow_messages/of_message_echo_request.cpp | be19772aafaf90bec6b3f3bd5a5f3a759cd4c051 | [
"BSD-3-Clause"
] | permissive | zteo-phd-software/ironstack | cd0d10e2666fd0e829e8cfaea24fcd49cc2adaf0 | 649f82ddcbb82831796fa2a1e1d1b8cc0f94a8e0 | refs/heads/master | 2020-02-26T15:38:23.943187 | 2016-09-30T18:42:19 | 2016-09-30T18:42:19 | 69,498,904 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,713 | cpp | #include "of_message_echo_request.h"
using namespace std;
bool of_message_echo_request::display_content = false;
// constructor
of_message_echo_request::of_message_echo_request() {
clear();
}
// clears the object
void of_message_echo_request::clear() {
of_message::clear();
msg_type = OFPT_ECHO_REQUEST;
data.clea... | [
"zhiyuan.teo@gmail.com"
] | zhiyuan.teo@gmail.com |
df500a069448a65e83deb8cae43402543e2d345a | e0db5a1d7beb3927b2712cce6a565511c816b657 | /qu3e/src/dynamics/q3ContactManagerOcl.h | 3f5ce7e3289b025fe63bd4a10e855229db80986d | [
"Zlib",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | zlondrej/rigid-body-simulation | c58bf2aa611b0e4b80c9bce5966df93b751f8918 | b10abda1ecb0124ffe93596866c943aaa078dea4 | refs/heads/master | 2021-05-31T15:27:17.624650 | 2016-05-25T20:40:18 | 2016-05-25T20:40:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,630 | h | //--------------------------------------------------------------------------------------------------
/**
@file q3ContactManagerOcl.h
@author Ondřej Janošík
@date 13/5/2016
Copyright (c) 2014 Randy Gaul http://www.randygaul.net
This software is provided 'as-is', without any express or implied
warra... | [
"j.ondra14@gmail.com"
] | j.ondra14@gmail.com |
e905a4c27b50d9e29e4df900a188df5bf24d6c7f | 359590f39bc97c0d1af3fd62bf7f82607be8fa31 | /src/model/tracksearchresultmodel.cpp | 225c1e0512d2a61b0b2f80d027de534c3b935e0b | [] | no_license | danielwolney/SQtify | 24eb66c2eca26fd9aa69d10c2e76926aeb09408f | b6531862677511c6bd251f74932645b84d7f43db | refs/heads/main | 2023-02-09T09:11:25.617311 | 2020-12-19T15:08:26 | 2020-12-19T15:08:26 | 321,770,828 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,169 | cpp | #include "tracksearchresultmodel.h"
#include <QJsonValue>
#include <QJsonObject>
#include "api/searchresult.h"
TrackSearchResultModel::TrackSearchResultModel(SearchResult *result, QObject *parent)
: QAbstractListModel(parent),
m_searchResult(Q_NULLPTR),
m_count(0)
{
setSearchResult(result);
}
int ... | [
"danielwolney@gmail.com"
] | danielwolney@gmail.com |
b34458814d6da07b4109d4f68e05f148350c24b4 | 7fe3e44cf771a7a811890a7d2ac78ed6708ddedf | /Engine/source/environment/waterBlock.cpp | b6f81f5ece4976b801e72d33483b603bee6727e6 | [] | no_license | konradkiss/meshloop | 988ee721fb6463fbfece183c70f678c047215dd5 | 25b98ce223d21e232593a6c4dc2d6d863aace02c | refs/heads/master | 2021-03-19T13:36:21.104735 | 2015-05-21T13:00:55 | 2015-05-21T13:00:55 | 36,012,137 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 20,972 | cpp | //-----------------------------------------------------------------------------
// Torque 3D
// Copyright (C) GarageGames.com, Inc.
//-----------------------------------------------------------------------------
#include "platform/platform.h"
#include "environment/waterBlock.h"
#include "core/util/safeDelete.... | [
"konrad@konradkiss.com"
] | konrad@konradkiss.com |
83b11d064b467edd09051c6f5aac66bf6bf8046a | e6581e760f20a75a0c2135e10f9bf2d0b1dabd37 | /Code Framework/Actions/SELECT.cpp | 946987a275e69340a3ccf4a24352c9d375ff2c45 | [] | no_license | tokaalokda/LogicSimulator | 74f4d86c3381e600e00a19e9d05b0edcb26ea3d9 | 6093d6d242801c0f8764b5c16889e0b9c12a153e | refs/heads/main | 2023-04-06T09:37:37.428674 | 2023-03-21T09:19:43 | 2023-03-21T09:19:43 | 321,353,472 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,049 | cpp | #include "SELECT.h"
#include "..\ApplicationManager.h"
Select::Select(ApplicationManager* pApp, int x, int y) :Action(pApp)
{
Cx = x;
Cy = y;
}
Select::~Select(void)
{
}
void Select::Execute()
{
//Get a Pointer to the user Interfaces
UI* pUI = pManager->GetUI();
bool found = false;
int... | [
"noreply@github.com"
] | tokaalokda.noreply@github.com |
e32657f7a831e9701cb439126924c9ee5333e770 | 786de89be635eb21295070a6a3452f3a7fe6712c | /ImgAlgos/tags/V00-03-80/src/NDArrAverage.cpp | e0ef553148ae52ad4cc1e73636f00c647a0f36c8 | [] | no_license | connectthefuture/psdmrepo | 85267cfe8d54564f99e17035efe931077c8f7a37 | f32870a987a7493e7bf0f0a5c1712a5a030ef199 | refs/heads/master | 2021-01-13T03:26:35.494026 | 2015-09-03T22:22:11 | 2015-09-03T22:22:11 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 15,716 | cpp | //--------------------------------------------------------------------------
// File and Version Information:
// $Id$
//
// Description:
// Class NDArrAverage...
//
// Author List:
// Mikhail S. Dubrovin
//
//------------------------------------------------------------------------
//-----------------------
// Th... | [
"dubrovin@SLAC.STANFORD.EDU@b967ad99-d558-0410-b138-e0f6c56caec7"
] | dubrovin@SLAC.STANFORD.EDU@b967ad99-d558-0410-b138-e0f6c56caec7 |
9e98761b5d785e66c0af8b35a0a30b7e65846146 | e5d5fa28999bcc6c642bb42dda93afd38e272b81 | /UVA/119 - Greedy Gift Givers/solve1.cc | d6a99e97af861b5e1d480801b16f469278b44609 | [] | no_license | chiahsun/problem_solving | cd3105969983d16d3d5d416d4a0d5797d4b58e91 | 559fafa92dd5516058bdcea82a438eadf5aa1ede | refs/heads/master | 2023-02-05T06:11:27.536617 | 2023-01-26T10:51:23 | 2023-01-26T10:51:23 | 30,732,382 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,034 | cc | #include <cstdio>
#include <string>
#include <map>
std::string name[10+5];
char buf[50];
int main() {
int nMan;
bool first = true;
while (scanf("%d", &nMan) == 1) {
for (int i = 0; i < nMan; ++i) {
scanf("%s", buf);
name[i] = buf;
}
std::map<std::string, int... | [
"chiahsun0814@gmail.com"
] | chiahsun0814@gmail.com |
b02c25b848819527a0371988b09400744dc3ee0c | 0281da0280617479e0db7e1849697adf74db956f | /Source/IslandProject/PositionReporter.h | 012c6cea5676c117d52906da766450185c1322da | [] | no_license | Wais1/IslandProject | 9024b065588fb3482d1e25eac1c3027b203d227c | 22b2677a3fb64a3e4fe7c32d783413b7e37c4506 | refs/heads/master | 2022-02-05T17:51:37.073177 | 2018-08-04T15:26:51 | 2018-08-04T15:26:51 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 686 | h | // Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "Components/ActorComponent.h"
#include "PositionReporter.generated.h"
UCLASS( ClassGroup=(Custom), meta=(BlueprintSpawnableComponent) )
class ISLANDPROJECT_API UPositionReporter : public UAc... | [
"waisibrahim77@gmail.com"
] | waisibrahim77@gmail.com |
0e18d2a12d31aa03e5e125984517bf21387cc473 | 6a25010aeaed80f68fe454bfc467a8a5694a71ba | /pThread/pthreadCreationTermination.cpp | 265a5ec2341bf745d828a39808c57ae3d8bf682a | [] | no_license | ellenzinc/multiThreadingLearning | ee13e4cf3b012bca19879db79c4065b777f9f471 | 92d8c9f37a4c26ffb7606d5fc8da87025b07d19a | refs/heads/master | 2016-08-11T08:11:40.316654 | 2016-01-03T20:33:44 | 2016-01-03T20:33:44 | 48,921,836 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 630 | cpp | #include <iostream>
#include <pthread.h>
const int NUM_THREADS = 5;
void *printHello(void *threadid) {
long tid;
tid = (long) threadid;
printf("Hello World! it's me, thread #%ld!\n", tid);
pthread_exit(NULL);
}
int main() {
pthread_t threads[NUM_THREADS];
int rc;
long t;
for (t = 0; t... | [
"whnzinc@gmail.com"
] | whnzinc@gmail.com |
9bb387afb1db7420beb30b7100ca7e0a1a9203fc | 31475b58b676a174d89b3130f869656366dc3078 | /fm_game/camera/camera_base.h | 921d354da58321c40e99a328aaf4331183f78401 | [] | no_license | cooper-zhzhang/engine | ed694d15b5d065d990828e43e499de9fa141fc47 | b19b45316220fae2a1d00052297957268c415045 | refs/heads/master | 2021-06-21T07:09:37.355174 | 2017-07-18T14:51:45 | 2017-07-18T14:51:45 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 655 | h | #pragma once
#include "../public/module.h"
#include "../visual/i_camera.h"
#include "../public/i_core.h"
#include "global.h"
#include "../visual/i_scene.h"
class CameraBase: public IEntity
{
bool m_enable;
virtual void OnEnable(){}
virtual void OnDisable(){}
protected:
PERSISTID m_bindobj;
public:
inline ICamera... | [
"1542971595@qq.com"
] | 1542971595@qq.com |
1df6b00b995796584aa83c4f6ee31c0382785542 | 8fd68e8d3abe85e1b9d869b536155532a849c72a | /CppVhdAPI/nviddiaoptimusfixer.hxx | e8bcb33b690b06c8c3e84745f6e9db53350328bd | [
"Zlib"
] | permissive | WildGenie/VirtualGameSandbox | 41e6cb4d9c5246c34a5567254af85a6987f89103 | 58ae134c23edad5db23d178e3b7d68ddf11c5ffd | refs/heads/master | 2021-01-11T02:13:11.975926 | 2016-10-15T13:12:00 | 2016-10-15T13:12:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 109 | hxx | #pragma once
void FixNvidiaOptimusNotChainingGamesCleanUp(void);
void FixNvidiaOptimusNotChainingGames(void); | [
"githubio@gz0.nl"
] | githubio@gz0.nl |
6a1f4480e386a52c71f489276220c43de9a1d87e | a996afb15b00bee94c61363bd55e98286cbcc824 | /src/path_recorder/src/path_player_node.cpp | bc084e5e9c2a1e9293315753abf83bf0f724a16b | [] | no_license | SchwartzSkipper/test_ws | 0fb87a938467b1ef0ca8555ba2b14b5ff9d1183f | 45c16a8f6bfc8e277e4e34eb482cbfc77558fe09 | refs/heads/master | 2021-05-13T19:33:40.517776 | 2018-08-01T13:49:07 | 2018-08-01T13:49:07 | 116,894,361 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 5,259 | cpp | /* Path player
* Project: Scheduling System
* Author: Lilan Pan
* Date:
* * Created on: 3/8/2017
* * Add a function for reversing the path: ?
* Copyright (c) 2017 HRG
*/
#include <ros/ros.h>
#include <geometry_msgs/Pose.h>
#include <geometry_msgs/PoseStamped.h>
#include <scheduling_msgs/PathStampWithID.h>
#inclu... | [
"garypursuit@gmail.com"
] | garypursuit@gmail.com |
cb628e1c187b6441d092e0c8bd48427745025b3c | 17923ed1390886b49c7061a14a5d0eb0ef60181d | /src/vex/events/ThreadEventsBehaviour.cpp | dbc0a57e439d3ace7bed80123a05fbed72e62979 | [] | no_license | giovannic/vexjine | 188100a75f8acc25ef0e2dd87d6e76fa309dedaa | 21b0998451a38d29299e946b773262f6359a8299 | refs/heads/master | 2016-09-09T20:35:08.547285 | 2014-06-26T12:46:20 | 2014-06-26T12:46:20 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 33,364 | cpp |
/*
* ThreadEventsBehaviour.cpp
*
* Created on: 18 Oct 2011
* Author: root
*/
#include "Constants.h"
#include "ThreadEventsBehaviour.h"
#include "Statistics.h"
#include "ThreadState.h"
#include "Time.h"
#include "Timers.h"
#include "DebugUtil.h"
#include "ThreadManager.h"
#include "ThreadManagerRegistry.h"
... | [
"giovanni.charles@gmail.com"
] | giovanni.charles@gmail.com |
671a057aad1037acf06428f3558e0d6882eb5edd | 2c22e768adefb3fd516567cec9b5fca9280e48d0 | /Original Tiling System/main.cpp | 226bbead102fee100047340935ad259e21224e5f | [] | no_license | chrispaclark/FundComp2-SemesterProject | 8434a36333cc97909677585b4464b5589b2b0011 | 5a44a59ae3eba31c121a7fd36911982d7dfdd3f4 | refs/heads/master | 2020-12-25T22:31:40.729782 | 2014-03-24T21:10:04 | 2014-03-24T21:10:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 482 | cpp | // Experiment.h
// Driver Program for Project files
#include <iostream>
#include <string>
#include <cstdlib>
#include <fstream>
#include "SDL.h"
#include "SDL_image.h"
#include "SDL_ttf.h"
#include "SDL_mixer.h"
#include "GameEngine.h"
#include "Functions.h"
#include "Tile.h"
using namespace std;
// For some reason... | [
"tderanek@nd.edu"
] | tderanek@nd.edu |
a01cc755f08639fc4e9d6035bcf114a47c1db25a | 6b4835a9d3575ef922d2b68bab4969290f28cd15 | /Actividades/Actividad5/QuintaActividad.cpp | d6e771d043242f2b0e0bd0058e1195b6b338fc4a | [] | no_license | Robertoc10/portafolio_00087619 | 1e2e736fa12690358d105fadea03ef83a85f2e35 | 4a5bd9bad61d34931314dbc3a7ece7b3990e754f | refs/heads/master | 2020-07-09T02:29:48.308910 | 2019-11-20T03:06:19 | 2019-11-20T03:06:19 | 203,849,073 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 352 | cpp | #include <iostream>
using namespace std;
int multi(int , int );
int main()
{
int n1,n2,m;
cout << "Introduzca primer numero: ";
cin >> n1;
cout << "Introduzca segundo numero: ";
cin >> n2;
m=multi(n1,n2);
cout << "multiplicacion: " << m << endl;
}
int multi(int a, int b)
{
if (b==1){
return a;
}else{
... | [
"00087619@uca.edu.sv"
] | 00087619@uca.edu.sv |
8270cb84c8339cdd40879dfd6ff23c25e1d3854f | 5d7cfa6b635dc03748cb688d3347f261cad687f5 | /Big_clock.ino | 3d6abcc26e1dc62662440f86b029a1a330261262 | [] | no_license | snoopy3921/Big-clock | 3f30ec57ccbe78c6828910509e458a37e57e24bd | 8462ea0306fe5d8004a82ce03f1b5005bea76465 | refs/heads/main | 2023-02-20T07:52:01.867809 | 2021-01-25T16:56:11 | 2021-01-25T16:56:11 | 332,013,673 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,178 | ino | #include "DHT.h"
#include "FastLED.h"
#include "Mau.h"
#include "Clock.h"
#include <Wire.h>
#include "RTClib.h"
#include <SoftwareSerial.h>
#define DHTPIN 4
#define DHTTYPE DHT11 // DHT 11// what digital pin we're connected to
RTC_DS1307 rtc;
DHT dht(DHTPIN, DHTTYPE);
char daysOfTheWeek[7][12] = {... | [
"noreply@github.com"
] | snoopy3921.noreply@github.com |
831c6d89d0a597d01b0ee924a033ddee949df9a2 | 4cf900087f707fa1adc1cdfc78a228dddbaeafb8 | /src/header/ThreadPool.hpp | 3f9b4198e47b21018c63a81c91b11bbf2d0a6884 | [] | no_license | Alexis-Sola/TetravexResolver | 7cff36386454cd800ee3a8fa9bd61c06733a036e | bdf3fa6d68feb4d6b508d35b230f79234095ebec | refs/heads/master | 2023-03-01T08:56:33.994834 | 2021-02-12T11:15:04 | 2021-02-12T11:15:04 | 313,733,221 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 947 | hpp | #ifndef THREADPOOL_HPP
#define THREADPOOL_HPP
#include "Piece.hpp"
#include "Plateau.hpp"
#include <vector>
#include <iostream>
#include <mutex>
#include <thread>
#include <condition_variable>
#include<thread>
#include<mutex>
#include<unistd.h>
#include<queue>
#include <future>
using namespace std;
... | [
"alexis.sola@etu.univ-amu.fr"
] | alexis.sola@etu.univ-amu.fr |
e73244c1c1b725da92fd04b6755d7120f4415b87 | a594fccd0726c449db9a887c54074718bd682b47 | /if else/number.cpp | ea6b64ff7e9d86ef37949b0b653d85e596976b88 | [] | no_license | RippandT/schoolCaseStudies | 85fe0720f6dadb528aa96eb800040ae1981de9ee | 1149a1c33e2ab413a1e5f0353ed9558781a6e669 | refs/heads/master | 2020-09-16T15:59:07.432774 | 2019-11-24T23:07:03 | 2019-11-24T23:07:03 | 223,818,115 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 496 | cpp | #include <iostream>
using namespace std;
int main(int argc, char** argv) {
int num;
cout << "Enter an integer: ";
cin >> num;
if (num > 0){ // positive integer
cout << "You've entered a positive integer: " << num << endl;
}
else if (num < 0){ // negative integer
cout << "You've entered a neg... | [
"noreply@github.com"
] | RippandT.noreply@github.com |
71a13c93c81831dbaccd9b63cbbd087cfc95ac69 | 09ecec5da451481281cd79f781656bb0dc624190 | /01 – Memory allocation, pointers/01 – Moar brainz!/Zombie.cpp | 8e796a5600b2c00442d8d68d38c959255a22195b | [] | no_license | levensta/CPP-study | c5a441c14f53f5d6ee9a7083248826a6b5d26593 | a0bf2a6abc1626f9d4b77eff7bcc04bbedfa1498 | refs/heads/master | 2023-07-25T07:49:01.317675 | 2021-09-08T17:49:15 | 2021-09-08T17:49:15 | 392,414,875 | 0 | 1 | null | 2021-08-19T16:33:36 | 2021-08-03T18:22:24 | C++ | UTF-8 | C++ | false | false | 355 | cpp | //
// Created by Lorent Evenstar on 8/10/21.
//
#include "Zombie.hpp"
Zombie::Zombie() : _name("levensta") {}
Zombie::~Zombie() {
std::cout << this->_name << " is deeeeaaaad" << std::endl;
}
void Zombie::announce() {
std::cout << this->_name << " BraiiiiiiinnnzzzZ..." << std::endl;
}
void Zombie::setName(std::st... | [
"levensta@student.21-school.ru"
] | levensta@student.21-school.ru |
58318238ab7fdba6e01e6567787f632a17115d9e | cee84f1ab7692440f8ea1f931e5c9a629392521b | /blok1/JUCE eind/Source/bal.h | a47907eb53f2bbdbfd95f0040417aa63b451a298 | [] | no_license | milanwijnmaalen/SOGM | 411cea9c04a4ae5424ea20df416a4574fc8e491b | 148e55bae9958b725d4f77fa84542708a8ed8f5e | refs/heads/master | 2020-06-03T02:19:07.791912 | 2015-03-17T16:38:33 | 2015-03-17T16:38:33 | 23,910,299 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 320 | h | #pragma once
#include "oscillator.h";
class bal : public oscillator
{
public:
bal();
void setX(int x);
void setY(int y);
void setvisible(bool);
bool getvisible();
float getX();
float getY();
void setGradientId(int);
int getGradientId();
private:
int x = 0;
int y = 0;
int gradid;
bool visible = false;
};
| [
"milan.wijnmaalen@student-kmt.hku.nl"
] | milan.wijnmaalen@student-kmt.hku.nl |
57d4cdb1c44418e9c0ed674499d948fb5bd7c828 | 747b983e59b1655df0523d0f9339d67d8308b0d5 | /20180803/teach_refer_code/src/template/variadicTmplate.cc | 7642a68bdc0db5072e4c82328511c69c571db58d | [] | no_license | Crazywhat/cpp_learning | 7ee8c320b0d6252fffdbcf62de994b8669842fc3 | 0533c473d9410df15eaeb6ee46ae5bdc2d84c2a0 | refs/heads/master | 2020-03-23T19:19:05.192840 | 2018-08-16T15:49:49 | 2018-08-16T15:49:49 | 141,968,574 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,616 | cc | ///
/// @file variadicTmplate.cc
/// @author lemon(haohb13@gmail.com)
/// @date 2018-08-03 11:19:57
///
#include <iostream>
using std::cout;
using std::endl;
template <typename... Args> //Args 称为模板参数包, 在声明的时候,...在左边的
void display(Args... args) //args称为函数参数包, 在使用时,需要展开参数包,...在右边
{
cout << sizeof...(Arg... | [
"jianggepi@126.com"
] | jianggepi@126.com |
31f99d6b4b31a625860e0e809257521f6d2189a1 | 88df598ec4798695b75cde4a729b0d9c84e017cb | /Server2/serial.cpp | 705fad220996649b75888dcbb8c4114bdb7eb4e4 | [] | no_license | IonelaRadu/IEPLab | ecaaeacfcd0d3f1d57bf6ec95bb2470109d362c8 | 70e9b6b36b25f64181e5314b74bb029e5d4ad952 | refs/heads/master | 2021-08-14T11:35:42.276914 | 2017-11-15T14:44:30 | 2017-11-15T14:44:30 | 105,072,958 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 21 | cpp | #include "serial.h"
| [
"b414"
] | b414 |
63a54283e17a73deb50e6d857ae2f53a1f5016f4 | e35662ac047bbd21561753c9a8ebe2e64296d8fa | /windows/runner/main.cpp | ebe255bdbdf4c60f86361ef6d0300dc8a9839696 | [] | no_license | MavaniVijay/max_quiz_app | 45525ee7522127a170be5203e7b729866b8f5b26 | ee97da7206f9597e9bf50c552416119b084b540f | refs/heads/master | 2023-07-22T18:28:24.091526 | 2021-09-01T05:59:23 | 2021-09-01T05:59:23 | 401,950,223 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,222 | cpp | #include <flutter/dart_project.h>
#include <flutter/flutter_view_controller.h>
#include <windows.h>
#include "flutter_window.h"
#include "run_loop.h"
#include "utils.h"
int APIENTRY wWinMain(_In_ HINSTANCE instance, _In_opt_ HINSTANCE prev,
_In_ wchar_t *command_line, _In_ int show_command) {
... | [
"vijaymavani36@gmail.com"
] | vijaymavani36@gmail.com |
32001872b603164129e548e7afae13002d61bac6 | eee0588d6c92b1bc093716ac84969a47a8159e38 | /Dia/DiaMaths/Core/HalfFloat.cpp | 9c6f016ec9bc100bbc2d61dd3929209f9e7c7d4b | [] | no_license | LenihanConor/Cluiche | bf919ef721d901ba2a23646e70444803e0fe5781 | 1b65c5861a2354a81fbf1ed63fb0e7620b635d0d | refs/heads/master | 2023-06-28T19:45:52.811023 | 2023-06-20T18:20:58 | 2023-06-20T18:20:58 | 37,433,420 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,451 | cpp |
#include "DiaMaths/Core/HalfFloat.h"
#include "DiaMaths/Core/MathsDefines.h"
namespace Dia
{
namespace Maths
{
const unsigned short HalfFloat::lookupTable[1 << 9] =
{
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0... | [
"lenihan.conor@gmail.com"
] | lenihan.conor@gmail.com |
f40127dd6ec3ae5f4e2b2cade6a1e344ad293111 | 1c92f8f8ebca92bf0cdb1ab9771be08471807e98 | /Code/ciaiy/week5/test.cpp | 762b4a8402894f5eb7e818403b30afd383ba4779 | [] | no_license | LittlePandaBears/LinuxStudy | 795bbeec20a69de9d96514cf4eda891ce156f2a9 | 2b99b7bba955a89af366533411acb48febeccf97 | refs/heads/master | 2020-04-02T04:44:43.447814 | 2019-11-24T15:58:28 | 2019-11-24T15:58:28 | 154,032,552 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 135 | cpp | #include <iostream>
int main(void) {
int a[3];
std::cout<<a << std::endl;
std::cout<<a + 1 << std::endl;
return 0;
} | [
"root@大红红的surface.localdomain"
] | root@大红红的surface.localdomain |
db0cc1982c8ce10f5a8d1320f97a59021f12779b | 30e1dc84fe8c54d26ef4a1aff000a83af6f612be | /src/external/aws-sdk-cpp/aws-cpp-sdk-s3/source/model/ObjectLockLegalHold.cpp | 571cf0110e97a3c94f86926f9d4c68000a6999c7 | [
"JSON",
"MIT",
"Apache-2.0",
"BSD-3-Clause"
] | permissive | Sitispeaks/turicreate | 0bda7c21ee97f5ae7dc09502f6a72abcb729536d | d42280b16cb466a608e7e723d8edfbe5977253b6 | refs/heads/main | 2023-05-19T17:55:21.938724 | 2021-06-14T17:53:17 | 2021-06-14T17:53:17 | 385,034,849 | 1 | 0 | BSD-3-Clause | 2021-07-11T19:23:21 | 2021-07-11T19:23:20 | null | UTF-8 | C++ | false | false | 2,033 | cpp | /*
* 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... | [
"noreply@github.com"
] | Sitispeaks.noreply@github.com |
2e86fda3f525b09bd00546f64151ccab394b0129 | 2956f75c05d08ed190cfcc932a1eb6698e214584 | /cob_object_categorization/common/include/object_categorization/SharedImageGlobalConstants.h | 40a0faeca1b0323252beb54b6850adb9977b306e | [] | no_license | ipa-rmb/cob_object_perception | 09c7b22831fd62fd1383e114ea6e30a693461ce8 | 9e4bae25ef55406d90edb379f3e9b9b590bb5e0b | refs/heads/indigo_dev | 2020-12-25T13:34:08.338426 | 2019-05-03T09:41:38 | 2019-05-03T09:41:38 | 3,763,695 | 1 | 4 | null | 2019-03-25T09:06:20 | 2012-03-19T12:44:51 | C++ | UTF-8 | C++ | false | false | 2,368 | h | #ifndef __SHAREDIMAGEGLOBALCONSTANTS_H__
#define __SHAREDIMAGEGLOBALCONSTANTS_H__
#include <string>
#include <opencv2/opencv.hpp>
using namespace std;
#ifdef __JBK_OBEN__
static const string calibConfigurationFilesDirectory = "C:/Entwicklung/vision/Files/Vision/ObjectDetection/DemonstratorVision/JBKCalibration/";
#e... | [
"Richard.Bormann@ipa.fraunhofer.de"
] | Richard.Bormann@ipa.fraunhofer.de |
d412e4e81713e64323cfc6f455bbb6455bd09b25 | 26a7e9b9d32d365886669d911778985013c46826 | /Table.h | a5212cf310bb3876538b51c9c704b95a32feb6d6 | [] | no_license | tyler-coleman/lyric-search | 3289a713158f1b5c769dec09b1c0b241a52e4534 | 6f3ff798e054c182ca8e150080e053c10d005818 | refs/heads/master | 2020-03-09T08:13:45.670777 | 2018-04-08T21:54:00 | 2018-04-08T21:54:00 | 128,683,974 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,704 | h | #include <vector>
#include "Song.h"
#include <string>
#include <iostream>
#include "util.h"
using namespace std;
// struct that contains frequency for a given word in a specified song
struct word_occurrence {
string song;
string artist;
int frequency;
};
// comprises each index of hash table
struct hash... | [
"[himattthisistyler@gmail.com]"
] | [himattthisistyler@gmail.com] |
529bf8daba039a60fac6d74ad8d4b4c7957c9c72 | 1038d0511ab29f6bc2e50c5328823730e49bc4c5 | /campaign.hxx | 5fdc428a04c8e804075fe4d71ba561981652b116 | [] | no_license | johanneslochmann/datacollector | 9a23f8186ac247d13af50af4a365946259dd228c | 77b7d675ef8a15fda0bd6b512026a8f1afffc616 | refs/heads/master | 2021-01-10T09:52:08.135378 | 2016-02-19T20:07:38 | 2016-02-19T20:07:38 | 45,186,142 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 830 | hxx | #pragma once
#include "storable.hxx"
#include <QString>
#include <QDate>
class Campaign;
using CampaignSPtr = std::shared_ptr<Campaign>;
using CampaignSPtrVector = std::vector<CampaignSPtr>;
class Campaign : public Storable
{
public:
Campaign();
QString name() const;
QDate begin() const;
QDate end(... | [
"johannes.lochmann@gmail.com"
] | johannes.lochmann@gmail.com |
281c7fcee725110b28cfdd19fc673647b860d75c | 8457ed858b9194ff7a3e23adbbea89521bfe5c89 | /HalfTimeBuild/GTMK Game Jam 2020_BackUpThisFolder_ButDontShipItWithYourGame/il2cppOutput/Generics9.cpp | fe7a370fefb9721573057b0ec1b6a6f7dffb55f9 | [] | no_license | Yernemm/GMTK-Game-Jam-2020 | 9dd017796727324c487104449c1eb1a815032461 | 18cb86c0dae2832ae7dd7bc2911ae6b52a274beb | refs/heads/master | 2022-11-18T08:15:23.692086 | 2020-07-12T15:33:30 | 2020-07-12T15:33:30 | 278,729,303 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,817,016 | 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... | [
"yrnemmizer@gmail.com"
] | yrnemmizer@gmail.com |
6761a79bab4d1db1fff0e64f4a0e972524c35dd7 | 87310d9032b3780c95f3d6bf70aa08f3c3b99ab5 | /boost_python/class/class/class.cpp | 0bce93ebf455bec3453a2c007d96fa0eeba1c737 | [] | no_license | afcarl/tutorials-seiya-kumada | 57095046d88612ab3f2c9eec2ef2dacb5b0a9a1b | 463222d188e1b409b035483da9382e2cc23f1f94 | refs/heads/master | 2020-03-21T05:47:27.185364 | 2017-03-08T14:03:23 | 2017-03-08T14:03:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 951 | cpp | /*
* classPriv.h
* class
*
* Created by Seiya KUMADA on 2017/03/02.
* Copyright (c) 2017年 kumada. All rights reserved.
*
*/
#include <boost/python.hpp>
class accumulator {
public:
int operator()(int v) {
v_ += v;
return v_;
}
int value() const {
return v_;
}
privat... | [
"seiya.kumada@cct-inc.co.jp"
] | seiya.kumada@cct-inc.co.jp |
d45b090f1506df6d40ac9daed0eb650fbc7fc8d6 | 0da8f1f7460041759d7ff3a3f1b6339769fc9eb1 | /Coordinates.cpp | 0f67f1bacca467e572893dc7649b72cd5f032a93 | [] | no_license | lukasz-kukulka/ship_simulator | 96bb82f52c95ef4ff4a90a18d889361f4113dd2c | 9204282de548a57afa5496f918c433c5a79236d8 | refs/heads/master | 2023-05-01T06:53:30.818482 | 2021-05-21T16:08:27 | 2021-05-21T16:08:27 | 347,585,631 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 748 | cpp | #include "Coordinates.hpp"
Coordinates::Coordinates(std::size_t positionX,
std::size_t positionY) : positionX_(positionX), positionY_(positionY)
{
}
bool Coordinates::operator==(const Coordinates& coordinates) const{
if (positionX_ == coordinates.positionX_ && positionY_ == coordinate... | [
"qqla83@gmail.com"
] | qqla83@gmail.com |
749d9e79a1788d1c1329baec04e3fad5d2fb4bce | 2e884bb704a558dbf132bfaf93b8e70f2ccb81fc | /sbnanalysis/ana/LEETruthSelection/Util.h | 3830c2a207f11089191153c17ca5b4f56fcd4882 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | gavarela/sbncode | 09ebe496d63a7c871adb078765f9352c45a09f05 | c4999354d02e73136ec265ce3aa44719be9fe995 | refs/heads/master | 2020-03-26T09:59:00.411617 | 2018-09-18T22:06:53 | 2018-09-18T22:06:53 | 144,775,537 | 0 | 0 | null | 2018-08-14T21:50:22 | 2018-08-14T21:50:22 | null | UTF-8 | C++ | false | false | 2,846 | h | #ifndef __sbnanalysis_ana_LEETruthSelection_Utils__
#define __sbnanalysis_ana_LEETruthSelection_Utils__
/**
* \file Util.h
* \brief Utilities for the LEE truth selection
*
* Author: A. Mastbaum <mastbaum@uchicago.edu>
*/
#include <string>
#include "nusimdata/SimulationBase/MCTruth.h"
#include "lardataobj/MCBase/... | [
"mastbaum@uchicago.edu"
] | mastbaum@uchicago.edu |
67f33f6f78fa9fc95026b9a840612a36d64bf9c6 | e8ffb6a293a3c25b760a6784e0b0f852290d175e | /UVA Solutions/10222-Decode the mad .cpp | 03e9deb2f19dbdee7ef1de3485990ef9c7e19c43 | [] | no_license | lutfullahillabib/ACM-SOLUTION | cd8fa2db281a7b7736d42961174c9ca6e311d897 | 9b60fe8b72a0cfd27238f1372d028184baa015cb | refs/heads/master | 2022-01-12T05:08:20.359827 | 2018-10-31T20:44:14 | 2018-10-31T20:44:14 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,313 | cpp | #include <iostream>
#include <vector>
#include <list>
#include <map>
#include <set>
#include <queue>
#include <stack>
#include <string>
#include <cstring>
#include <cmath>
#include <climits>
#include <algorithm>
#include <cstdio>
#include <cstdlib>
#include <sstream>
#include <fstream>
#define s(n) scanf("%d",... | [
"rctushar07@gmail.com"
] | rctushar07@gmail.com |
d0c30145998ce9f79da2c2caa6d4b7d48fdb62e5 | b40c2f34f2685f64c73be49376cbea900176f575 | /student_class.cpp | d7971c4a4b6b713ae57e94f67328e8d382360791 | [] | no_license | sysu19351073/StudentClass | 4c5604c1e02c53d45362f3cc2a1f1c680139027f | a767ca02ec617f07435115eee1c7638859e5e8d8 | refs/heads/master | 2021-05-18T13:10:28.327270 | 2020-03-30T09:17:56 | 2020-03-30T09:17:56 | 251,256,155 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 618 | cpp | #include<iostream>
#include"student_class.h"
#include"student.h"
using namespace std;
int student_class()
{
string coursename[3] = { "Robotics","C++","Math" };
double grade1[3] = { 100.0,99.9,98.8 };
double grade2[3] = { 99.9,100.0,98.8 };
double grade3[3] = { 99.9,98.8,100.0 };
string name1 = "Bob";
... | [
"noreply@github.com"
] | sysu19351073.noreply@github.com |
7480479a32da944397db746b1b1a10b1b00d2f90 | f30b085251affa4e7f20d728251d52936ef1e737 | /Game_Mario/SoundBuffer.h | 6bdceec4428cb5e5d160d4310c64b0c10e9083d1 | [] | no_license | pvdk276/Game_Mario | 2642cbdb8f8988981d375176e36a093e8aff9c0d | 7ce58cce6896a9b57a5d5f845b91335a55c20c23 | refs/heads/master | 2021-01-15T13:36:40.926245 | 2016-01-05T03:20:47 | 2016-01-05T03:20:47 | 42,218,679 | 0 | 0 | null | 2016-01-01T07:36:08 | 2015-09-10T03:02:42 | C++ | UTF-8 | C++ | false | false | 348 | h | #pragma once
#include <dsound.h>
#include "dsutil.h"
class DXSoundBuffer
{
private:
LPDIRECTSOUNDBUFFER _soundBuffer;
LPDIRECTSOUND8 _pDS;
public:
DXSoundBuffer(LPDIRECTSOUND8 pDS);
bool LoadWaveToSoundBuffer(std::string wavFilename);
LPDIRECTSOUNDBUFFER getSoundBuffer();
void Play();
void PlayLoop();
void Sto... | [
"voduycuong93@gmail.com"
] | voduycuong93@gmail.com |
763441498f986c0f9fcfd583a03322170ebab6e5 | 858df19465b0ec408f91ec5d7fab80a571ac5429 | /Samples/hotel/hotelMIS/HOpType.h | 767a3eedd8965ba747074c42d0ed5dbc700baae1 | [
"MIT"
] | permissive | imxingquan/hotelMIS | 59eba812025e5cbd2890dc388487980389a4c2fa | f0da91dd5b4ffbe7d69a7038206a329e065d4c94 | refs/heads/master | 2020-09-20T17:42:27.191987 | 2019-12-15T11:01:12 | 2019-12-15T11:01:12 | 224,550,279 | 12 | 2 | null | null | null | null | GB18030 | C++ | false | false | 1,463 | h | /*--
Company: 大连西数网络技术有限公司
Author: 邢泉 QQ:402059985
Email: support@idcwest.net booma999@hotmail.com
Description:
Revision History:
Author Date Description
------ ---- ------------
邢泉 04/23/05 v1.2
邢泉 08/28/05 v1.3
--*/
#ifndef HOPTYPE_H_HEADER_INCLUDED_BDA4CBEF
#define HOPTYPE_H_HEADER_INCLUDED_BDA4CBEF... | [
"402059985@qq.com"
] | 402059985@qq.com |
a9118005e81f383c9438afd54f6b76b38c512043 | b9b8862e5e21b285d0f95008ace3769141ba755d | /tpe/plugin/src/SDFFeatures_TEST.cc | 78cd9724989d1a2b93abbfffad2eadbb5fcf5f38 | [
"Apache-2.0"
] | permissive | vatanaksoytezer/ign-physics | 61d29576cc4036224ca45ca8eccc91e1e85f317f | 9d5cc9abd29488fd2d2f2ff0d6b3e5ac0e13d392 | refs/heads/main | 2023-07-11T02:08:22.906603 | 2021-07-10T01:50:15 | 2021-07-10T01:50:15 | 385,698,216 | 0 | 0 | NOASSERTION | 2021-07-13T18:21:28 | 2021-07-13T18:21:27 | null | UTF-8 | C++ | false | false | 17,612 | cc | /*
* Copyright (C) 2020 Open Source Robotics 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 appl... | [
"noreply@github.com"
] | vatanaksoytezer.noreply@github.com |
887b80d3ca33bcdb6350e0aa77d11ef08d65d6ef | 069955d5396a453a3e0c4e88ffe2355255c700d5 | /Manchester.Taks/Manchester.CollectDataPz.h | 0ae9b9257964121d548fbb36390d74ac4dc59ed0 | [] | no_license | Rossheper/ElcusCpp | e33bf5d5c7576415ee181d661bab92681be0c955 | 61c1955eaa80dde54739683d51a48640f74e438d | refs/heads/master | 2021-01-01T03:49:14.045221 | 2016-04-24T10:05:16 | 2016-04-24T10:05:16 | 56,965,288 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 356 | h | #pragma once
using namespace System;
using namespace System::Collections::Generic;
namespace ManchesterTask{
public ref class CollectDataPz
{
private:
static const char row_mpn = 3;
static const char col_mpn = 3;
public:
CollectDataPz(void);
Dictionary<String^,Dictionary<String^,String^>^> ^GridFieldsData... | [
"slepov50@gmail.com"
] | slepov50@gmail.com |
391e61e2ab93b16a4258cc3bcfedc535582194c2 | d5f75adf5603927396bdecf3e4afae292143ddf9 | /paddle/phi/tests/api/test_pten_tensor.cc | 590717b8d7b77a1937ff897339e7ab7430a024f8 | [
"Apache-2.0"
] | permissive | jiweibo/Paddle | 8faaaa1ff0beaf97ef7fb367f6c9fcc065f42fc4 | 605a2f0052e0ffb2fab3a4cf4f3bf1965aa7eb74 | refs/heads/develop | 2023-07-21T03:36:05.367977 | 2022-06-24T02:31:11 | 2022-06-24T02:31:11 | 196,316,126 | 3 | 2 | Apache-2.0 | 2023-04-04T02:42:53 | 2019-07-11T03:51:12 | Python | UTF-8 | C++ | false | false | 8,755 | cc | // Copyright (c) 2021 PaddlePaddle 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... | [
"noreply@github.com"
] | jiweibo.noreply@github.com |
63efcc5724d4c8dff5af9001eb76688383505c5f | 59dab696dde6cbd7deaa24b48576ef27eeee8a7a | /src/Shared/Player/Player.h | 6efa87116ab03378d68bf221bca380860e91f18f | [] | no_license | jskd/collection-jeu | 549d79466c7194c8b48d8014bf16b52b404c63d1 | 64a0b3c6f98a2965b85c9aefb86b90610f494108 | refs/heads/master | 2021-09-20T16:00:17.132405 | 2018-08-11T14:52:52 | 2018-08-11T14:52:52 | 105,377,618 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 333 | h | #ifndef PLAYER_H
#define PLAYER_H
#include "PlayerAction.h"
#include <string>
#include <SFML/Graphics.hpp>
class Player{
public:
Player(std::string name);
virtual ~Player();
const std::string getName();
virtual PlayerAction choiceAction(bool haveEvent, sf::Event e)= 0;
private:
const std::string _name;... | [
"jerome.skoda@hotmail.fr"
] | jerome.skoda@hotmail.fr |
853a6f076059e587273ec4634bfb0120887a2c0e | b733c21fabbe6958e199289a802e15c79ed581bd | /text_editor/text_editor/Document.hpp | b9523cfa387a7bf67420c78fc5fc07b6778068c9 | [] | no_license | selekzioner/OOP | 018f5ccfe7f8ea9a662f129e7609883e55553e5a | be630d8a6bd1f51bb7a742fa3c8a114add12c24a | refs/heads/main | 2023-02-19T00:30:18.728255 | 2021-01-24T10:40:04 | 2021-01-24T10:40:04 | 329,226,597 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 973 | hpp | #pragma once
#include <string>
#include <iostream>
class Document final {
public:
Document() = default;
explicit Document(std::istream& input) {
std::getline(input, str_);
}
Document(const Document& another) {
str_ = another.str_;
}
void insert(const std::string& buffer, const size_t idx) ... | [
"noreply@github.com"
] | selekzioner.noreply@github.com |
d6ce00394af6abc667df07541d1cee8c7f28a48d | f4792198543e1cbe1af2df498cd912701c2895eb | /cpp03/ex03/FragTrap.hpp | 101855822a0cc6bcd863a65b27f3d7faad699075 | [] | no_license | cozytk/cpp | 05a35fd7d33e08632d6925fdbb20cee55a87064c | cabc60376115d9e19ed0144ce8843d64531de22d | refs/heads/master | 2023-04-02T17:08:29.868094 | 2021-04-07T15:02:48 | 2021-04-07T15:02:48 | 344,410,703 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 412 | hpp | #ifndef FRAG_TRAP_HPP
# define FRAG_TRAP_HPP
# include <string>
# include <iostream>
# include "ClapTrap.hpp"
class FragTrap : public ClapTrap
{
private:
/* declare member variable */
public:
FragTrap();
FragTrap(const std::string);
FragTrap(const FragTrap& copy);
FragTrap& operator=(const FragTrap& obj);
virt... | [
"cozytk@github.com"
] | cozytk@github.com |
a3a328b75ee04fa7d8ab89907349eee0415dfb0e | 399b5e377fdd741fe6e7b845b70491b9ce2cccfd | /LLVM_src/libcxx/test/std/experimental/func/func.searchers/func.searchers.boyer_moore/hash.pass.cpp | c1546706ec390e9c626ca5e95f3b7ad430ee9969 | [
"NCSA",
"LLVM-exception",
"MIT",
"Apache-2.0"
] | permissive | zslwyuan/LLVM-9-for-Light-HLS | 6ebdd03769c6b55e5eec923cb89e4a8efc7dc9ab | ec6973122a0e65d963356e0fb2bff7488150087c | refs/heads/master | 2021-06-30T20:12:46.289053 | 2020-12-07T07:52:19 | 2020-12-07T07:52:19 | 203,967,206 | 1 | 3 | null | 2019-10-29T14:45:36 | 2019-08-23T09:25:42 | C++ | UTF-8 | C++ | false | false | 6,082 | cpp | //===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===---------------------------... | [
"tliang@connect.ust.hk"
] | tliang@connect.ust.hk |
3ea4a6b866c1d236bd5870bf9d17bde857724eed | 4bf566a13d1b9f74cd1a0b1edc12700ee20c9971 | /cfd/euler3d_cpu.cpp | efb0cc5e6869ee71018a7a46984effc5f72614d5 | [] | no_license | UFRGS-CAROL/carol-fi-codes | 0d4569bfc206701046c3473c07e7f94b86ed0f63 | 302a3d624915fa3d5e72d5ca5839e85d8a8f45e6 | refs/heads/master | 2021-07-05T22:16:12.800325 | 2018-08-20T12:52:03 | 2018-08-20T12:52:03 | 145,416,676 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 19,179 | cpp | // Copyright 2009, Andrew Corrigan, acorriga@gmu.edu
// This code is from the AIAA-2009-4001 paper
#include <iostream>
#include <fstream>
#ifdef OMP_OFFLOAD
#pragma omp declare target
#endif
#include <cmath>
#ifdef OMP_OFFLOAD
#pragma omp end declare target
#endif
#include <omp.h>
struct float3 { float x, y, z; };
... | [
"dagoliveira@inf.ufrgs.br"
] | dagoliveira@inf.ufrgs.br |
55e7e3d24a6f613503d62c0e7260ff09868fa56d | ebffabb3068b4e7f9f5c09c7b912daa3ba78f9d2 | /2486.cpp | 744b9fa01e08bcebdc828adec814f20b07a0f260 | [
"Apache-2.0"
] | permissive | Graziele-Rodrigues/URI | aff21474f87a8e7625285bd1a4b5e0eb4c78f894 | bea5893eb2a378284e19fe3e187c4a94c4587c44 | refs/heads/master | 2022-12-16T07:11:35.608129 | 2020-09-20T17:35:35 | 2020-09-20T17:35:35 | 295,040,013 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,053 | cpp | #include <bits/stdc++.h>
using namespace std;
int main() {
int N, M;
string linguagem, traducao, name;
cin.tie(0);
ios_base::sync_with_stdio(false);
//Ativa ou desativa a sincronização de todos os fluxos padrão
//com seus fluxos C padrão correspondentes, se for chamado antes que o programa execute... | [
"c.graziele.rodrigues@gmail.com"
] | c.graziele.rodrigues@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.