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 905
values | visit_date timestamp[us]date 2015-08-09 11:21:18 2023-09-06 10:45:07 | revision_date timestamp[us]date 1997-09-14 05:04:47 2023-09-17 19:19:19 | committer_date timestamp[us]date 1997-09-14 05:04:47 2023-09-06 06:22:19 | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 22
values | gha_event_created_at timestamp[us]date 2012-06-07 00:51:45 2023-09-14 21:58:39 ⌀ | gha_created_at timestamp[us]date 2008-03-27 23:40:48 2023-08-21 23:17:38 ⌀ | gha_language stringclasses 141
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 115
values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
010c222b33f8de4dfd92ba4a5a70e65cbabbf6a7 | 915ac708aeac53125f29bef90c2c047eaed4940e | /Anaconda/pkgs/pyodbc-2.1.9/src/connection.cpp | d195f385e44289f26e42c59f4dc347bab288448e | [] | no_license | bopopescu/newGitTest | c8c480ddd585ef416a5ccb63cbc43e3019f92534 | 5a19f7d01d417a34170a8f760a76e6a8bb7c9274 | refs/heads/master | 2021-05-31T17:00:26.656450 | 2016-06-08T06:43:52 | 2016-06-08T06:43:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 31,626 | cpp |
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
// documentation files (the "Software"), to deal in the Software without restriction, including without limitation the
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copi... | [
"arvindchari88@gmail.com"
] | arvindchari88@gmail.com |
503f79b1dbb450b8fb7708cff0685f3717c84d84 | 51c1c5e9b8489ef8afa029b162aaf4c8f8bda7fc | /easyanim/src/easyanim/frame/MainFrame.h | 98c020649ef9544ca18e3e0141389b65a6f6a1b2 | [
"MIT"
] | permissive | aimoonchen/easyeditor | 3e5c77f0173a40a802fd73d7b741c064095d83e6 | 9dabdbfb8ad7b00c992d997d6662752130d5a02d | refs/heads/master | 2021-04-26T23:06:27.016240 | 2018-02-12T02:28:50 | 2018-02-12T02:28:50 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,077 | h | #pragma once
#include <wx/wx.h>
#include "view/Utility.h"
class wxSplitterWindow;
namespace eanim
{
class MainFrame : public wxFrame
{
public:
MainFrame(const wxString& title);
private:
void onNew(wxCommandEvent& event);
void onOpen(wxCommandEvent& event);
void onSave(wxCommandEvent& event);
void onS... | [
"zhuguang@ejoy.com"
] | zhuguang@ejoy.com |
6c2ec5cb6a101229977a77f0305ab3ff8456e728 | 647d7796bc68f7da2ea96a7c90e6195a2abcf999 | /contractwidget/FunctionWidget.h | 76afcfd4a9820ad936507c8f0c2394f6d3af5be9 | [] | no_license | BlockLink/IDE-Qt | 4ede6b3c8c9d382b1d0b8d9d0effc55a94337cb6 | 53b250270d6e846a3a6b3fb2a6c8bae5cda2e2ab | refs/heads/master | 2020-03-20T09:28:35.401277 | 2018-07-11T05:25:56 | 2018-07-11T05:25:56 | 137,338,346 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 605 | h | #ifndef FUNCTIONWIDGET_H
#define FUNCTIONWIDGET_H
#include <QWidget>
namespace Ui {
class FunctionWidget;
}
class FunctionWidget : public QWidget
{
Q_OBJECT
public:
explicit FunctionWidget(QWidget *parent = 0);
~FunctionWidget();
signals:
public:
void RefreshContractAddr(const QString &addr);
publi... | [
"47029316@qq.com"
] | 47029316@qq.com |
09281cf089dd7b5b4dc912abd432da65d888f6f2 | df0aa0dd7ffc0765d21fc076015b9830ef025fa0 | /lab1/01_potega.cpp | 80dd83e58f8a202e94f0c86bfdb75714ac0c6a2b | [
"MIT"
] | permissive | Machina123/OOProgramming | 0b8fe74716d3efd577bbdac3edb50469f3c17afa | 419a33f6eb5ca93bdddd44ac6381c69252b76d20 | refs/heads/master | 2020-03-31T21:06:34.118233 | 2018-11-21T18:58:41 | 2018-11-21T18:58:41 | 152,567,867 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 348 | cpp | #include <iostream>
void potega(float *);
void potega_ref(float &);
int main() {
float x = 5.0f;
potega(&x);
std::cout << "x=" << x << std::endl;
x = 5.0f;
potega_ref(x);
std::cout << "x=" << x << std::endl;
return 0;
}
void potega(float * x) {
*x = (*x) * (*x) * (*x) * (*x);
}
void potega_ref(float & ... | [
"machina123@boun.cr"
] | machina123@boun.cr |
900e24bfc398db3c7882b72501abba172954dafa | 1787588a5ebcaa184f2a067903a653a245d03e9d | /arc002/a/main.cpp | ba4ea0f2cbddcfa4605e56d1d1517580764c62e4 | [] | no_license | ebisenttt/atcoder | a3576658eac148372561a6838c081952744f4dee | edfb13c4eb240f5650651cd66fd925496f678257 | refs/heads/main | 2023-06-17T22:54:20.138588 | 2021-07-16T07:43:03 | 2021-07-16T07:43:03 | 313,921,901 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 612 | cpp | #include <bits/stdc++.h>
using namespace std;
#define REP(i, n) for(int i = 0; i < n; i++)
#define FOR(i, m, n) for(int i = m; i < n; i++)
#define ALL(x) (x).begin(),(x).end()
#define SIZE(x) ((ll)(x).size()
#define MAX(x) *max_element(ALL(x))
#define MIN(x) *min_element(ALL(x))
#define INF 1e9
typedef long long ll;
t... | [
"vamos.nippon.2010@gmail.com"
] | vamos.nippon.2010@gmail.com |
d875b95421e6d0af40db253e02e54797979afd95 | d137db9815e985f611ce2870d98cfc96aa89cd00 | /Taiga 4 Engine/logic_particle.cpp | ef5e6492fe0ae086a6d05148539140894fea3687 | [] | no_license | Tenebrie/Taiga-4-Engine | 0df9052196be4b7346154242902f2e3b837cb6f4 | 32fc7e3e452af9cb5e50f21d35d0413fcac1d4e1 | refs/heads/master | 2021-05-31T13:22:51.190694 | 2016-04-03T17:58:08 | 2016-04-03T17:58:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,984 | cpp |
#include "main.h"
#include "logic.h"
#include "game.h"
#include "camera.h"
#include "weather.h"
#include "math.h"
#include "particle.h"
#include "settings.h"
float cloudTimer = 0.00f;
float weatherTimer = 0.00f;
float particleTimer = 0.00f;
void cGameLogic::updateParticles(int elapsedTime)
{
int id;
float randVal;
... | [
"kos94ok@gmail.com"
] | kos94ok@gmail.com |
145d51f4422bf41942bc9276a87c4ccbf967a9de | 3dae113e380c6773822b8d01d10001a3ecd7aaea | /mayaplugin/src/utils.cpp | 4aab65e7bba2cd4f323518f7afa7c1698ae1c4d5 | [] | no_license | sbarthelemy/libalmath | dd13cee4b612bea12cce8c1c35ccf3e643f7ccbe | b96f82297033cb3f71d2c4858fae279c3d7ed758 | refs/heads/master | 2020-06-24T00:39:24.142037 | 2017-09-21T14:32:04 | 2018-02-22T10:10:57 | 96,911,726 | 0 | 0 | null | 2017-07-11T16:01:27 | 2017-07-11T16:01:27 | null | UTF-8 | C++ | false | false | 14,926 | cpp | #include "utils.h"
#include <maya/MFileIO.h>
#include <maya/MGlobal.h>
#include <maya/MNamespace.h>
#include <maya/MItDag.h>
#include <maya/MPointArray.h>
#include <maya/MDoubleArray.h>
#include <maya/MFnNurbsCurve.h>
#include <fstream>
namespace SBRMP {
// Doc about MString and encoding
// http://help.autodesk.com/... | [
"sbarthelemy@aldebaran-robotics.com"
] | sbarthelemy@aldebaran-robotics.com |
8ddb86ab6fea083c3f6d89d8bfdc49068e1d1396 | ed804a29ed92bfa9b0195e16649842e860b56cb4 | /TensorEngine/TensorEngine/TensorNode.h | 2b3b82ee5c19a174a187f427df45e3af63e28f43 | [] | no_license | xiaoyaolanyun/QuantumTensorEngine | b5e3180c8d85305654783cab732ed1923cd30282 | c6081b3f2a8a4e6cd541613f921f4b1a4a8ae035 | refs/heads/master | 2020-04-07T13:24:31.790451 | 2018-11-20T15:05:57 | 2018-11-20T15:05:57 | 158,406,298 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,466 | h | #ifndef TENSOR_NODE_H
#define TENSOR_NODE_H
#include <complex>
#include <vector>
#include <map>
#include <exception>
using std::map;
using std::complex;
using std::vector;
using std::exception;
using std::pair;
typedef double qdata_t;
typedef size_t qsize_t;
typedef size_t qsize_t;
typedef complex<qdata_t> qcomplex_da... | [
"369038080@qq.com"
] | 369038080@qq.com |
c677a7c2237b720b5c68a733fc046c70798602d3 | cfeac52f970e8901871bd02d9acb7de66b9fb6b4 | /generated/src/aws-cpp-sdk-forecastquery/source/ForecastQueryServiceRequest.cpp | 11191a3b284cfa099a5e18e668ea3097d71af97f | [
"Apache-2.0",
"MIT",
"JSON"
] | permissive | aws/aws-sdk-cpp | aff116ddf9ca2b41e45c47dba1c2b7754935c585 | 9a7606a6c98e13c759032c2e920c7c64a6a35264 | refs/heads/main | 2023-08-25T11:16:55.982089 | 2023-08-24T18:14:53 | 2023-08-24T18:14:53 | 35,440,404 | 1,681 | 1,133 | Apache-2.0 | 2023-09-12T15:59:33 | 2015-05-11T17:57:32 | null | UTF-8 | C++ | false | false | 287 | cpp | /**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/forecastquery/ForecastQueryServiceRequest.h>
namespace Aws
{
namespace ForecastQueryService
{
} // namespace ForecastQueryService
} // namespace Aws
| [
"sdavtaker@users.noreply.github.com"
] | sdavtaker@users.noreply.github.com |
62723e215cc88ab92edca46ce23b3680fe779924 | 197d3b55039c01d3122a899ae3548a6c556e20df | /Schrage2.cpp | 411b1e6d90f9e07d6f00a03d652b998cb6df288f | [] | no_license | tadekj87/Schrage2 | 24e966971b99db8a7ff4333ed7a51f9685dc6c92 | de82669cc5cb9307fedd632c6c3f8c9b5d5ebfc7 | refs/heads/master | 2021-04-24T04:27:22.260778 | 2020-03-31T20:18:13 | 2020-03-31T20:18:13 | 250,076,949 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,433 | cpp | //Schrage2.cpp : Ten plik zawiera funkcję „main”.W nim rozpoczyna się i kończy wykonywanie programu.
// Grupa: WT 13: Junak Tadeusz, Karol Kędzia
#include <iostream>
#include <fstream>
#include <queue>
#include <vector>
using namespace std;
struct strukturaZadania
{
int r,p,q; // termin dostępności r (punkt), c... | [
"156414@student.pwr.edu.pl"
] | 156414@student.pwr.edu.pl |
ce6833646b2ebbcc59f17b49fa2b81db45831e1a | 1286c5b3d37b0785e99073c8234b44df47561f5a | /2020/0307_ABC158/F.cpp | a4fdefcfdeccd68603871ebd5a7ab951f6b448ff | [
"MIT"
] | permissive | kazunetakahashi/atcoder | 930cb5a0f4378914cc643de2f0596a5de7e4a417 | 16ce65829ccc180260b19316e276c2fcf6606c53 | refs/heads/master | 2022-02-15T19:12:10.224368 | 2022-01-29T06:38:42 | 2022-01-29T06:38:42 | 26,685,318 | 7 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 17,328 | cpp | #define DEBUG 1
/**
* File : F.cpp
* Author : Kazune Takahashi
* Created : 6/19/2020, 12:05:07 AM
* Powered by Visual Studio Code
*/
#include <algorithm>
#include <bitset>
#include <cassert>
#include <cctype>
#include <chrono>
#include <climits>
#include <cmath>
#include <complex>
#include <cstdint>
#include <... | [
"kazunetakahashi@gmail.com"
] | kazunetakahashi@gmail.com |
a98cf2240620d97ab41f1917d75b16b013e859a1 | 0c98ea8b4d860692cda46d1b1b190b3512f880db | /operations.cpp | 2da6b5b5b055a281f2be7b55e0bc7c65614f2c83 | [] | no_license | Hybin/Shuuseki | b56f6b15d196effbcaf271b8a45aa7dea00c0daf | edb33a4ef9ba96a73f4fdf34fa059a7cc2f1b090 | refs/heads/master | 2020-03-19T13:03:00.200523 | 2018-07-04T06:36:45 | 2018-07-04T06:36:45 | 136,557,290 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,900 | cpp | //
// Created by Hybin on 2018/6/9.
//
#include <iostream>
#include <vector>
#include <sstream>
#include "include/Corpus.h"
using namespace std;
string project;
map<string, map<string, vector<vector<int>>>> indexes;
int create(const string &corpusName)
{
if (check(corpusName)) {
cerr << "-Shuuseki: The ... | [
"hhb8550@live.com"
] | hhb8550@live.com |
5d094e867012fa6b32593abae3c2ff0ede49b633 | 30fe760333a4fe87863b8f7a6cea035e236b869b | /数据结构与算法/算法竞赛入门经典/Code/第三章 数组和字符串/蛇形填数.cpp | 8ab11e13ce2914fa064c61248de0a944ed6a6417 | [] | no_license | Floral/Study | 782e1028abed4eba6c7dcc773b01834752fe32f1 | e023fe907a9a1e5330d5283f81ed3e5af0d8f124 | refs/heads/master | 2021-12-15T00:03:44.412499 | 2021-11-23T13:37:43 | 2021-11-23T13:37:43 | 184,597,375 | 5 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 863 | cpp | #include<stdio.h>
#include<string.h>
#define maxm 20
#define maxn 20
int matrix[maxm][maxn];
int main()
{
int i=1,n;
int x,y;
memset(matrix,0,sizeof(matrix)); //矩阵全部置零
scanf("%d",&n);
x=0,y=n-1;
matrix[x][y]=1;
while(i<n*n)
{
/* code */
while(x<n-1 && !matrix[x+1][y])... | [
"lqw1825830267@gmail.com"
] | lqw1825830267@gmail.com |
616dde253783200f889c7115d084710fccf89a75 | 7b0d12c1a7c31ba3bad0aedb550109df2da74e71 | /parser.cpp | 9b8963fe78932af7515ae9070122d01490c1ac84 | [] | no_license | BSC-RM/slurm_simulator_deepest | 210dc1f52c9c99b2d6c5f1fd86c68bc2c8ed5d8c | 4f1fe75c196430cb4e46aa627967d3108052fe24 | refs/heads/master | 2023-03-29T11:14:52.244816 | 2020-04-07T16:21:40 | 2020-04-07T16:21:40 | 352,705,480 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,604 | cpp | #include <iostream>
#include <fstream>
#include <sstream>
#include <algorithm>
#include <string>
#include <vector>
#define MIN_RUNTIME 60
using namespace std;
int CM = 0, ESB = 0, DAM = 0, jobs = 0;
int globalWaitTime = 0, globalResponseTime = 0;
double globalSlowDown = 0, globalBoundedSlowDown = 0;
vector <int> wa... | [
"renan.fischeresilva@bsc.es"
] | renan.fischeresilva@bsc.es |
3107f85966d29ace932ef12c6d867b6e265e34b5 | dd6147bf9433298a64bbceb7fdccaa4cc477fba6 | /8304/Altukhov/lab4-7/Memento.cpp | bc649905a13d678b4907c651c495824d6ae7484b | [] | no_license | moevm/oop | 64a89677879341a3e8e91ba6d719ab598dcabb49 | faffa7e14003b13c658ccf8853d6189b51ee30e6 | refs/heads/master | 2023-03-16T15:48:35.226647 | 2020-06-08T16:16:31 | 2020-06-08T16:16:31 | 85,785,460 | 42 | 304 | null | 2023-03-06T23:46:08 | 2017-03-22T04:37:01 | C++ | WINDOWS-1251 | C++ | false | false | 3,174 | cpp | #include "Memento.h"
void Memento::getInfoFromBase(Base* base, bool myTurn)
{
Memento* mem = const_cast<Memento*>(this);
base->fillMemento(mem, myTurn);
}
void Memento::getInfoFromField(Field* field)
{
Memento* mem = const_cast<Memento*>(this);
field->fillMemento(mem);
}
void Memento::saveToFile(std::string& fil... | [
"alexandr-altukhov2013@yandex.ru"
] | alexandr-altukhov2013@yandex.ru |
a84b6fdb51c8bd11b3829b12dadd726fe0057aec | 3438e8c139a5833836a91140af412311aebf9e86 | /services/ui/service.cc | c7190433b8f67aaf9d4b768cf0a7a06558d76d98 | [
"BSD-3-Clause"
] | permissive | Exstream-OpenSource/Chromium | 345b4336b2fbc1d5609ac5a67dbf361812b84f54 | 718ca933938a85c6d5548c5fad97ea7ca1128751 | refs/heads/master | 2022-12-21T20:07:40.786370 | 2016-10-18T04:53:43 | 2016-10-18T04:53:43 | 71,210,435 | 0 | 2 | BSD-3-Clause | 2022-12-18T12:14:22 | 2016-10-18T04:58:13 | null | UTF-8 | C++ | false | false | 13,988 | cc | // Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "services/ui/service.h"
#include <set>
#include "base/bind.h"
#include "base/command_line.h"
#include "base/memory/ptr_util.h"
#include "base/m... | [
"support@opentext.com"
] | support@opentext.com |
ac6bf760161fe2edfbc7435a2b973adefd730b4e | 8042163dbac5ddf47f078b4d14f4eb6fe1da030d | /tensorflow/compiler/mlir/xla/transforms/lhlo_legalize_to_gpu.cc | f0eb3cc1a0fd3032d7fea8e3288ff6d2de299a44 | [
"Apache-2.0"
] | permissive | AITutorials/tensorflow | 4513de8db4e9bb74b784f5ba865ef8a573b9efc1 | 6bee0d45f8228f2498f53bd6dec0a691f53b3c7b | refs/heads/master | 2022-07-29T13:37:23.749388 | 2020-06-11T17:47:26 | 2020-06-11T17:57:06 | 271,615,051 | 3 | 0 | Apache-2.0 | 2020-06-11T18:07:11 | 2020-06-11T18:07:10 | null | UTF-8 | C++ | false | false | 8,407 | cc | /* Copyright 2019 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or a... | [
"gardener@tensorflow.org"
] | gardener@tensorflow.org |
83ae490cdb1628684e1f254bc6d1b16d44ad08dc | edf415acc17ca8e9df0e4ec22a8c2a1f224b9da5 | /MainGame/particles/ParticleBatch.cpp | 37f9e9dd2b37a3f37d21fd70414b924205f978d4 | [
"MIT",
"Unlicense",
"LicenseRef-scancode-public-domain"
] | permissive | JoaoBaptMG/ReboundTheGame | 149fe1d5a509ccc1a21620bed12ce662ce31f102 | 48c3d8b81de1f7fa7c622c3f815860257ccdba8e | refs/heads/master | 2021-01-11T15:18:15.475448 | 2019-09-29T12:55:07 | 2019-09-29T12:55:07 | 80,321,381 | 64 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 8,232 | cpp | //
// Copyright (c) 2016-2018 João Baptista de Paula e Silva.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, cop... | [
"jbaptistapsilva@yahoo.com.br"
] | jbaptistapsilva@yahoo.com.br |
9b1e6df14e0d731fae1a36f042531c8807d18825 | 3aca856b8a0dbc2c4cb6a4fdd38e6514c95aa437 | /src/world/chunk/Face.hpp | c503aaa2208e6ecdd8bcf83de92d8307509f4acc | [] | no_license | bauhaus93/blocks | 2d612fafe7e7a847c43f0aa78c1b8f2e20dc92f4 | 8b55d79752fd836e3619128169292e67c9281f8f | refs/heads/master | 2021-03-22T04:21:17.198170 | 2018-12-03T18:37:06 | 2018-12-03T18:37:06 | 118,833,320 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 788 | hpp | /* Copyright 2018 Jakob Fischer <JakobFischer93@gmail.com> */
#pragma once
#include <iostream>
#include <cstdint>
#include "logger/GlobalLogger.hpp"
#include "utility/Point2.hpp"
#include "world/BlockType.hpp"
#include "world/Direction.hpp"
namespace blocks {
class Face {
public:
Face(BlockTyp... | [
"jakobfischer93@gmail.com"
] | jakobfischer93@gmail.com |
254deb25e454ae02f21158e3a9865548f5d1ee09 | 7bbb435bc5539fd82eb0ae1ae1065cff099606ab | /5SD803_Assignment1_DataStructures_2020_v3/source/binary_search_tree.h | 29b25f583946dce33ae709060772265628fdad7f | [] | no_license | LilithOstrowska/LLandBS | 5a54fa4cea46e503a6a56635b94b9387d02cec1f | 0320630ab14417cedf6c40a5809cf175ccf7b1b6 | refs/heads/main | 2023-01-15T18:43:54.762705 | 2020-11-10T09:03:22 | 2020-11-10T09:03:22 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,086 | h | // binary_search_tree.h
#ifndef BINARY_SEARCH_TREE_H_INCLUDED
#define BINARY_SEARCH_TREE_H_INCLUDED
#include "linked_list.h"
// note: implementation required for pass
class binary_search_tree
{
binary_search_tree(binary_search_tree &&rhs) = delete;
binary_search_tree(const binary_search_tree &rhs) = delete;
... | [
"43043232+Dragonborn98760@users.noreply.github.com"
] | 43043232+Dragonborn98760@users.noreply.github.com |
dac68b0884b745579d07583003e4a15b239d2863 | 6b40e9cba1dd06cd31a289adff90e9ea622387ac | /Develop/Server/GameServerOck/main/GMessageID.h | ece378b40f088afcf33f0b799bd97e41853e0585 | [] | no_license | AmesianX/SHZPublicDev | c70a84f9170438256bc9b2a4d397d22c9c0e1fb9 | 0f53e3b94a34cef1bc32a06c80730b0d8afaef7d | refs/heads/master | 2022-02-09T07:34:44.339038 | 2014-06-09T09:20:04 | 2014-06-09T09:20:04 | null | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 3,728 | h | #ifndef _GMESSAGE_ID_H
#define _GMESSAGE_ID_H
#include "GDef.h"
class GLuaResult;
class GEntityPlayer;
/// 메세지 ID
enum GMessageID
{
GMSG_UNKNOWN = 0,
// AI에서 사용하는 이벤트
GMSG_AI_EVT_THINK, ///< 뭔가 주위상황이 바뀌어졌을 때 AI가 뭔가 다음 액션을 취하기를 원할때 발생
GMSG_AI_EVT_TRY_ATTACKED, ///< 공격을 시도 당했다.
GMSG_AI_EVT_AT... | [
"shzdev@8fd9ef21-cdc5-48af-8625-ea2f38c673c4"
] | shzdev@8fd9ef21-cdc5-48af-8625-ea2f38c673c4 |
d8a46af3c20e691f793f314a6b0470ed83249629 | 92ba72fb43edf46f1942491d2e43851482c32cb0 | /zyy/104.cpp | 36c85714389d54b144fb08c73454ead84c58cdd5 | [] | no_license | iujaypuppy/LeetCode | 53f7cabf2c5c4b2f8d4d857987313254d965e447 | 3072f7b4f9847dc2d8a1830acb140ad5fd807188 | refs/heads/master | 2020-06-27T22:30:13.413558 | 2017-12-01T01:21:39 | 2017-12-01T01:21:39 | 97,072,879 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 670 | 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:
void maxDepthRecursive(TreeNode *root, int level, int &max) {
if (root == NULL) {
... | [
"tomsun.0.7@gmail.com"
] | tomsun.0.7@gmail.com |
724819a6fdf520b8180e107bdfdf0da27bc9eabe | 8177a677bb39dd60f3a6f1f5219aa556647eeebf | /src/multiplicative_mistake_slack_window/multiplicative_mistake_slack_window.cpp | 707a4244faa194748904a4f5da0519385954db0a | [] | no_license | gilikarni/Summing | 30b0258e45c01a08f9170f2ff6b46fd0bdfda0db | a6c8e5f5d8a6668ad495b183ae1407316d638819 | refs/heads/master | 2021-01-20T14:22:29.457927 | 2017-08-31T06:27:36 | 2017-08-31T06:28:10 | 90,594,517 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,881 | cpp | /* Includes: */
#include "multiplicative_mistake_slack_window.h"
#include <cmath>
#include "../utils.h"
/* Namespace: */
/* Macros: */
#define minus_inf -1
/* Globals */
std::ofstream MultiplicativeMistakeSlackSumming_outputFile;
/* Constructors: */
MultiplicativeMistakeSlackSumming::MultiplicativeMistakeSlackSu... | [
"gilikarni@campus.technion.ac.il"
] | gilikarni@campus.technion.ac.il |
4471b04a07db3cfdb629f6df6bcffb1cab3d0a4b | b1af8bb863a6730e6e4e93129efbad89d33cf509 | /SDK/SCUM_Geek_Goggels_functions.cpp | eb6e37e20285b6437d8fc71d517f2af4b87084ea | [] | no_license | frankie-11/SCUM_SDK7.13.2020 | b3bbd8fb9b6c03120b865a6254eca6a2389ea654 | 7b48bcf9e8088aa8917c07dd6756eac90e3f693a | refs/heads/master | 2022-11-16T05:48:55.729087 | 2020-07-13T23:48:50 | 2020-07-13T23:48:50 | 279,433,512 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 3,086 | cpp | // SCUM (4.24) SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
#include "../SDK.hpp"
namespace SDK
{
//---------------------------------------------------------------------------
//Functions
//---------------------------------------------------------------------------
// Function ConZ.ClothesItem.UpdateMaterial... | [
"60810131+frankie-11@users.noreply.github.com"
] | 60810131+frankie-11@users.noreply.github.com |
5789517c34ebe81c4b5ba038c38363e84fe4c2f7 | fcad81ce487257da992904a7547c7df68ac854ca | /bulk/detail/cuda_launcher/parameter_ptr.hpp | ca7f781aae6818d5127126bcb84cc4e660796599 | [] | no_license | jaredhoberock/bulk | efcccc0dc5d335d26e4b9296c08daa9f4443f71b | e31eedaf7a44bd0841d7f41bcb73e0fc11544aa1 | refs/heads/master | 2020-04-06T07:12:38.072648 | 2019-10-04T13:48:57 | 2019-10-04T13:48:57 | 10,181,786 | 31 | 6 | null | 2019-10-04T13:48:58 | 2013-05-20T20:55:45 | C++ | UTF-8 | C++ | false | false | 2,770 | hpp | /*
* Copyright 2008-2013 NVIDIA 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://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable... | [
"jaredhoberock@gmail.com"
] | jaredhoberock@gmail.com |
de4380312180bee09442227d137f15bb51abdf47 | eea5f4d19b56fca79621af2f2854854eab405780 | /libraries/SFE_MMA8452Q/SFE_MMA8452Q.h | 3131bd244b52582c5458d0838725b9d8060daba7 | [] | no_license | lingjiekong/TeambarqArduino | 26bbd96e305a30c2c20288707eb618cd6ab129c9 | 39d951a42ce8351d6f6ff67090b37ec547fda603 | refs/heads/master | 2016-09-12T18:36:14.239358 | 2016-06-01T22:15:05 | 2016-06-01T22:15:05 | 58,331,887 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,148 | h | /******************************************************************************
SFE_MMA8452Q.h
SFE_MMA8452Q Library Header File
Jim Lindblom @ SparkFun Electronics
Original Creation Date: June 3, 2014
https://github.com/sparkfun/MMA8452_Accelerometer
This file prototypes the MMA8452Q class, implemented in SFE_M... | [
"konglingjie.007@gmail.com"
] | konglingjie.007@gmail.com |
bad1b39b6483d426398213218c33ee19ecf402bd | 1cb31fed8f65ea398429f69a1e88243395a1da8b | /include/ama/tensor/index.hpp | c4182fc495803d89665abfcfe25831aa3126b76d | [] | no_license | mattiapenati/amanita | 6ac5a9b85591ed00f07bc61c9eeaed1fa7ab2fe8 | c5c16d1f17e71151ce1d8e6972ddff6cec3c7305 | refs/heads/master | 2021-01-23T07:03:01.958404 | 2011-02-20T20:30:19 | 2011-02-20T20:30:19 | 240,369,107 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,786 | hpp | /*
* Copyright (c) 2011, Mattia Penati <mattia.penati@gmail.com>
* 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 not... | [
"mattia.penati@localhost"
] | mattia.penati@localhost |
a22f68f87dfeef1f2f0a3ebbee8c9287621535bf | fbf65dd3bc2030496d990519ff3b9582201aa5b6 | /src/Integrator/WhittedIntegrator.h | a4a5adec26b580d9d2ebdb48ded949772013eb27 | [] | no_license | CXUtk/CrystalEngine | 1ae871011ec37345811a57b95309c05013fc28e6 | cc72ab0a57c99a3e2c6255df83b30bb6132677e4 | refs/heads/master | 2023-04-21T23:11:27.314475 | 2021-05-10T18:31:21 | 2021-05-10T18:31:21 | 339,526,716 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 684 | h | #pragma once
#include "SamplerIntegrator.h"
#include <Utils/Random.h>
#include "Textures/CubemapTexture.h"
class WhittedIntegrator : public SamplerIntegrator {
public:
WhittedIntegrator(std::shared_ptr<Camera> camera, std::shared_ptr<Sampler> sampler, std::shared_ptr<CubemapTexture> skybox, int maxDepth);
~Wh... | [
"2237367067@qq.com"
] | 2237367067@qq.com |
ae8177b2be8538cb75449ecb8182eae0b6845d2e | f8a5d7afd88afb58420d213f4968df8e7feed36e | /BinarySearchTree/Source.cpp | 6e00c345b070c6dfc50b409908889c3c19db1bca | [] | no_license | lnwpeach/cpp-BinarySearchTree | 24400a8967ac31f1a2efb248c67934871eedf243 | 2753a5a283d0f99064475780b8fc502791652a43 | refs/heads/master | 2023-01-20T16:28:46.931543 | 2020-11-27T09:38:50 | 2020-11-27T09:38:50 | 316,458,856 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,177 | cpp | #include "Header.h"
string line(50, '=');
int menu();
int menuPrint();
int menuFind();
int main(){
BinarySearchTree<int> a(-999);
int ch ,ch2 ,ch3 , element, find;
do {
ch = menu();
if (ch == 1) {
cout << "Enter Element : ";
cin >> element;
a.insert(element);
}
else if (ch == 2) {... | [
"pichayuth.c@gmail.com"
] | pichayuth.c@gmail.com |
f354a7f05156c050c080017f82f110a37f63ae38 | 77a1e8b6e3181b097a196bda951ae5ed05115729 | /libraries/wasm-jit/Include/WAST/WAST.h | 92ed856800cc44e0900c2ba222b311b60504688b | [
"BSD-3-Clause",
"MIT",
"Apache-2.0"
] | permissive | yinchengtsinghua/EOSIOChineseCPP | 04888f80cb7a946fb54c2494137868cb86685ff1 | dceabf6315ab8c9a064c76e943b2b44037165a85 | refs/heads/master | 2020-04-18T01:20:58.685186 | 2019-01-23T04:17:07 | 2019-01-23T04:17:07 | 167,115,462 | 21 | 11 | null | null | null | null | UTF-8 | C++ | false | false | 1,424 | h |
//此源码被清华学神尹成大魔王专业翻译分析并修改
//尹成QQ77025077
//尹成微信18510341407
//尹成所在QQ群721929980
//尹成邮箱 yinc13@mails.tsinghua.edu.cn
//尹成毕业于清华大学,微软区块链领域全球最有价值专家
//https://mvp.microsoft.com/zh-cn/PublicProfile/4033620
#pragma once
#ifndef WAST_API
#define WAST_API DLL_IMPORT
#endif
#include "Inline/BasicTypes.h"
#include "Runtime/Runti... | [
"openaichain"
] | openaichain |
56f8a339ab15c0c51695a40e749b464ec8ca7827 | 168d3b8de78c0dbc02a3ed14697de71669b4fa45 | /ga/module/encoder-x264/encoder-x264.cpp | ef346c01df232ed0c2d8d0140a6158c3e2518030 | [] | no_license | hush-z/gaminganywhere | 7ea410967f0d1661dd89b7945a4cf60da5c1634e | 78959501c6185fa4dbf29c54db96d3df9e63c478 | refs/heads/master | 2021-01-15T18:08:33.150280 | 2015-06-25T01:41:58 | 2015-06-25T01:41:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 19,890 | cpp | /*
* Copyright (c) 2013-2014 Chun-Ying Huang
*
* This file is part of GamingAnywhere (GA).
*
* GA is free software; you can redistribute it and/or modify it
* under the terms of the 3-clause BSD License as published by the
* Free Software Foundation: http://directory.fsf.org/wiki/License:BSD_3Clause
*
* GA is ... | [
"chuang@ntou.edu.tw"
] | chuang@ntou.edu.tw |
7d9d476fdf176e2af057a4bd9368e9bb1e46ed08 | 50a56ae2412be295b074dfea324c9dc5fba6de30 | /hdu/5835.cpp | 0bc98332e9fb3267fed14a356309b4b74b6c6982 | [] | no_license | xbhoneybee/ACM_ICPC | f92f8cace72935de285d84a4bfb42cc402bdcc5e | 1bb892e5a4cf0cc1e9f9511e768b99fba7a639eb | refs/heads/master | 2020-12-04T02:30:35.005974 | 2018-05-03T12:00:09 | 2018-05-03T12:00:09 | 66,524,703 | 1 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,297 | cpp | #include <iostream>
#include <algorithm>
#include <stdio.h>
#include <string>
#include <cmath>
#include <string.h>
#include <set>
#include <queue>
#include <cctype>
#include <map>
#include <stack>
#define inf 1000000000000000000
#define ll long long
#define LL long long
#define iosfalse ios::sync_with_stdio(false);
usi... | [
"qq383441907@outlook.com"
] | qq383441907@outlook.com |
e3ed2b1336cdd73143b79663b645d4ce8fd371ea | 35c68dcf18d134ce7d87b716a9183d48f39f0861 | /src/core/os/lnx/wayland/waylandWindowSystemWsa.h | 819b3f4b54fe04ef46d9e2f22806490f3edd423e | [
"MIT"
] | permissive | hustwarhd/pal | 858367d8c6c7ef602c3b4d93ceaea445690a3854 | b88de6c975d81881686d709803f130b264c8d58c | refs/heads/master | 2020-04-02T09:29:14.919314 | 2018-10-17T02:29:02 | 2018-10-17T02:31:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,007 | h | /*
***********************************************************************************************************************
*
* Copyright (c) 2018 Advanced Micro Devices, Inc. All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated ... | [
"jacob.he@amd.com"
] | jacob.he@amd.com |
e6e840e87aa6808f82f07ccdd21ec3fc20a2d8d1 | 0bd63ea82005e5e1d4b1e015b164e6bfdc410a9d | /CDrawTool.h | 268ea76a0095f39249e9add81aac9958f88ad010 | [] | no_license | tonymin/DrawTool | 442ef62d74b43d8032a0911001ae27e5464fe44d | 9c22caede19c22a519336e11eda36e9ad68bf03b | refs/heads/master | 2022-11-08T23:27:30.854092 | 2020-05-22T21:58:04 | 2020-05-22T21:58:04 | 266,177,019 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 491 | h | #pragma once
#include <QtWidgets/QMainWindow>
#include "ui_DrawTool.h"
#include <QPointer>
namespace Core {
namespace Graphics {
class CGraphicsView;
}
}
namespace Core {
class CDrawTool : public QMainWindow
{
Q_OBJECT
public:
CDrawTool(QWidget *parent = Q_NULLPTR);
private:
void createToolBar();
private slo... | [
"22283515+tonymin@user.noreply.github.com"
] | 22283515+tonymin@user.noreply.github.com |
ecf27fd1be367f34f43d485926785ba692e5db7e | cf9b89b4b70f43f46eb7f1aa1198f76e42dc5e39 | /ShrinkPlanet/Sphere.cpp | dbe87f0cec2cab1537c59b8154dedfa4457259f9 | [] | no_license | J-Kyu/ComputerGraphicsTermProject | 1ce39eda2b59366e8370ad2db5208cd938c991ca | 5ff90c48ab38b68dd55a4c32e2a36f1d64ac328e | refs/heads/master | 2022-11-10T03:26:57.769330 | 2020-06-20T08:03:58 | 2020-06-20T08:03:58 | 267,842,888 | 0 | 1 | null | 2020-06-20T08:03:59 | 2020-05-29T11:38:46 | C | UTF-8 | C++ | false | false | 2,355 | cpp | #include "Sphere.h"
void Sphere::CalVertices() {
get_sphere_3d(vertices);
}
void Sphere::get_sphere_3d(vector<GLfloat>& p) {
double theta0;
double theta1;
double y0;
double rst0;
double y1;
double rst1;
double phi0;
double phi1;
double cp0;
double sp0;
double cp1;
double sp1;
float vx0, vy0, vz0, ... | [
"wjstkdrb91@naver.com"
] | wjstkdrb91@naver.com |
3d97186935a76f27b125d0ee9985169fa28cfafd | 4258a21020932d0849a95c182aa8086a0467e641 | /sdk/verify/live555/sample/mixer/inc/dla/I6E/mid_ipu_detect.h | ed441cef2e2aabff73e2f2179d1bf7a09b805def | [] | no_license | sengeiou/Democode-TAKOYAKI-BETA001-0312 | a04647412764b57532a1b8ca02a1b4966a5a5395 | 0c3261e5c067314d2ac4f858399fff8cc2793f01 | refs/heads/master | 2022-05-24T09:48:13.816615 | 2020-04-13T10:47:24 | 2020-04-13T10:47:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,786 | h | #ifndef _MID_IPU_DETECT_H_
#define _MID_IPU_DETECT_H_
#include "mid_ipu_interface.h"
#include "mid_dla.h"
#include <string.h>
#include <fstream>
#include <iostream>
#include <iomanip>
#include <map>
#include <vector>
#define LABEL_CLASS_COUNT (1200)
#define LABEL_NAME_MAX_SIZE (60)
using namespace std;
st... | [
"zhaozhenhong5@aliyun.com"
] | zhaozhenhong5@aliyun.com |
b371dc3c81729a777df9c074e173eeb24e00c621 | 6fc4f7c1f9ab41026449e9b331621095923b2c8e | /tracing.h | ccbbe1ea0d3de1e91b7d7bd2fae1e9d53efe19dc | [
"BSD-3-Clause"
] | permissive | lettuRL/libcacc | 3f0d93d6358de7f7f9970e473aa56d956f600737 | b9fdcd39bd13ec7ad1a29802d884b68c1ea6b3d7 | refs/heads/master | 2023-06-11T11:38:27.832174 | 2018-12-17T21:25:54 | 2018-12-17T21:25:54 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,617 | h | /*
* Copyright (C) 2015-2018, Nils Moehrle
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-Clause license. See the LICENSE.txt file for details.
*/
#ifndef CACC_TRACING_HEADER
#define CACC_TRACING_HEADER
#include "bvh_tree.h"
#include "primitives.h"
CACC... | [
"nils@kuenstle-moehrle.de"
] | nils@kuenstle-moehrle.de |
1962027a4e7a5fc86873acd8ec20f197a2620083 | 1f63dde39fcc5f8be29f2acb947c41f1b6f1683e | /Boss2D/addon/webrtc-jumpingyang001_for_boss/logging/rtc_event_log/rtc_event_log2rtp_dump.cc | 47f0f5944073c19ebe41c26eef4bd161bb1bf447 | [
"MIT",
"BSD-3-Clause",
"LicenseRef-scancode-google-patent-license-webm",
"LicenseRef-scancode-google-patent-license-webrtc",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | koobonil/Boss2D | 09ca948823e0df5a5a53b64a10033c4f3665483a | e5eb355b57228a701495f2660f137bd05628c202 | refs/heads/master | 2022-10-20T09:02:51.341143 | 2019-07-18T02:13:44 | 2019-07-18T02:13:44 | 105,999,368 | 7 | 2 | MIT | 2022-10-04T23:31:12 | 2017-10-06T11:57:07 | C++ | UTF-8 | C++ | false | false | 7,850 | cc | /*
* Copyright (c) 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 contribut... | [
"slacealic@nate.com"
] | slacealic@nate.com |
ec8853d821d5d935d87437eb244356189b44f325 | 30beea17e89863591576f1dd3dee4372e9c5945f | /Breakout/src/BallObject.cpp | 2c1a2230256bf6ff789ced67ee61d0e570969d7e | [] | no_license | MagnoVJ/Breakout | 30dcdeabad12c09426e60a85eaa76d76b15fdbbe | 62787c2de726898e8fed0edda743eed33d233fac | refs/heads/master | 2021-01-13T09:22:17.270642 | 2016-11-16T06:13:08 | 2016-11-16T06:13:08 | 69,750,532 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,525 | cpp | #include "BallObject.h"
BallObject::BallObject() : GameObject(), radius(12.5f), stuck(true), sticky(GL_FALSE), passThrough(GL_FALSE) { }
BallObject::BallObject(glm::vec2 pos, GLfloat radius, glm::vec2 velocity, Texture2D sprite)
: GameObject(pos, glm::vec2(radius * 2, radius * 2), sprite, glm::vec3(1.0f), velocity)... | [
"magnovj@gmail.com"
] | magnovj@gmail.com |
553d35c3cba08bca6764166a520a022f92ad3901 | 275ec6905a664e6d50f6f7593d62066740b241a0 | /stl/foreach2.cpp | 09ff93190529bf8a8103eccdec29413c916a757c | [] | no_license | huangjiahua/cppLearningFiles | 0f135624d5d7d2256e8fd55146a408170737b603 | 7000ac6111b33c880a66c2c3cc2e4f41390aff9e | refs/heads/master | 2021-09-10T15:11:48.991007 | 2018-03-28T08:57:41 | 2018-03-28T08:57:41 | 122,352,150 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 355 | cpp | #include <vector>
#include <algorithm>
#include <iostream>
using namespace std;
class PrintInt {
public:
void operator() (int elem) const {
cout << elem << ' ';
}
};
int main()
{
vector<int> coll;
for (int i = 1; i <= 9; ++i)
coll.push_back(i);
for_each(coll.cbegin(), coll.cend()... | [
"hjh4477@outlook.com"
] | hjh4477@outlook.com |
35af57b89ac9ddba627e6482f91c9cb54995e609 | dac70221ae783796868881a66c1b9dc5572ae6ae | /Source of PBO/adx_pack/vehicles/dc3/CfgPatches.hpp | 2581910b5579c6855b49cc88e3a6675be17f56b5 | [
"Unlicense"
] | permissive | ADXTeam/DayZADX | 787ed2e71249c7fef2d7996ecf3ff59affc48b99 | 97924bc18ed374df854f2aa5eee0ae960bb47811 | refs/heads/master | 2020-04-06T06:43:27.579217 | 2013-11-08T15:20:20 | 2013-11-08T15:20:20 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 139 | hpp | class CfgPatches {
class ori_dc3 {
units[] = {"dc3"};
weapons[] = {};
requiredVersion = 1.0;
requiredAddons[] = {"CAAir"};
};
};
| [
"keveltv@gmail.com"
] | keveltv@gmail.com |
0806acfdee950d1760f59484822d6a6224dec60b | cc8f6dd6f67058d3389b90ca0c7ddfe7e8916289 | /Chapter9/MoneyFactory.h | f8325dbf01f8cd432f13c59bbc61a58976fa4618 | [] | no_license | zhb94430/TDD-Part1 | ef6f050e60a4a6cb050c1a258b139c7a3bc9e772 | ca009d3bfdce927018b12fc17adda36587a1e14b | refs/heads/main | 2023-06-03T22:38:56.717677 | 2021-06-18T20:22:19 | 2021-06-18T20:22:19 | 373,364,841 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 193 | h | #pragma once
#include "Money.h"
#include "Dollar.h"
#include "Franc.h"
class MoneyFactory
{
public:
MoneyFactory(){};
static Money* dollar(int amount);
static Money* franc(int amount);
}; | [
"zhan2385@umn.edu"
] | zhan2385@umn.edu |
d8fbec3ad4d399e0728c87f47cf16233cfd27c33 | d5b9801ebaa288fc05e3c1823dae8e0f7f276a84 | /src/libs/perfMeasurement/PMManager.cpp | dd3b2c56e8bfcb4fea135397ca6a0b8240c706b4 | [] | no_license | hkeeble/torcs-adaptive | 5b112f0c7b001301830780c5b9162339574b6404 | e125334a3547082781198ef49b7007d72d7daa26 | refs/heads/master | 2020-04-12T17:44:52.175581 | 2014-08-06T10:53:24 | 2014-08-06T10:53:24 | 13,444,893 | 6 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,742 | cpp | /*
File: PMManager.cpp
Author: Henri Keeble
Desc: Definitions for a performance measurement manager class.
*/
#include "perfMeasurement\PMManager.h"
#include "Util.h"
namespace perfMeasurement
{
PMManager* PMManager::instance = nullptr;
PMManager* PMManager::Get()
{
if (instance)
return instance;
else
... | [
"henrikeeble@btinternet.com"
] | henrikeeble@btinternet.com |
44f4fa72f3f3d7f2be534421c5e9d37fb8d0466c | 0f7a4119185aff6f48907e8a5b2666d91a47c56b | /sstd_utility/windows_boost/boost/archive/iterators/escape.hpp | 62f043d0c4f6c8ed62faffbf8ef42ab4d1e8d15c | [] | no_license | jixhua/QQmlQuickBook | 6636c77e9553a86f09cd59a2e89a83eaa9f153b6 | 782799ec3426291be0b0a2e37dc3e209006f0415 | refs/heads/master | 2021-09-28T13:02:48.880908 | 2018-11-17T10:43:47 | 2018-11-17T10:43:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,089 | hpp | #ifndef BOOST_ARCHIVE_ITERATORS_ESCAPE_HPP
#define BOOST_ARCHIVE_ITERATORS_ESCAPE_HPP
// MS compatible compilers support #pragma once
#if defined(_MSC_VER)
# pragma once
#endif
/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
// escape.hpp
// (C) Copyright 2002 Robert Ramey - http://... | [
"nanguazhude@vip.qq.com"
] | nanguazhude@vip.qq.com |
2653767e54adadfe1c74145031d2c7674cfce94c | d303b8a2f1009adb8b95bfe2ecd953204c846a74 | /forum3/forum3/Rational.cpp | 830a13163474050efdedbfd2080540c984c4a554 | [] | no_license | codeserfer/2-term | 20552cfb996ae246bbc3a84fca67b5e692cd3cee | 27330770ebe4724b49f58eda453af13305ffeb9a | refs/heads/master | 2021-01-10T20:07:19.995451 | 2014-02-04T21:52:27 | 2014-02-04T21:52:27 | null | 0 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 1,748 | cpp | #include "stdafx.h"
#include "Rational.h"
#include <iostream>
Rational::Rational(void) {
n=0;
m=0;
}
Rational::Rational (int m=0, int n=1) {
if (n==0) throw (0);
save (m, n);
}
int Rational::del (int a, int b) {
int min=0;
if (a<b) min=a;
else min=b;
for (int i=2; i<=min; i++) if (a%i==0 &&... | [
"admin@codeserfer.com"
] | admin@codeserfer.com |
8ef3b9b3ad9be04957dea04388ea2845c4c131fe | 5b41e312db8aeb5532ba59498c93e2ec1dccd4ff | /Tools/Simulator/Simulator/CSocketConnectionForm.cpp | 12c6f1399481c90f9e43fb8b2cd0144c815acf2b | [] | no_license | frankilfrancis/KPO_HMI_vs17 | 10d96c6cb4aebffb83254e6ca38fe6d1033eba79 | de49aa55eccd8a7abc165f6057088a28426a1ceb | refs/heads/master | 2020-04-15T16:40:14.366351 | 2019-11-14T15:33:25 | 2019-11-14T15:33:25 | 164,845,188 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 20,346 | cpp | #include "StdAfx.h"
#include "CSocketConnectionForm.h"
#include "CXmlInterConnInfoSave.h"
#include "CXmlInterConnInfoOpen.h"
#include "CLogWriterWrapper.h"
#include "CInterConfigWrapper.h"
#include "CAppSetting.h"
using namespace simulator;
//-------------------------------------------------------------------------
S... | [
"52784069+FrankilPacha@users.noreply.github.com"
] | 52784069+FrankilPacha@users.noreply.github.com |
494981ae3e0b885debe72f18aeba22bbf02320ed | 3c0d18b8723d67b8495eb6cb81d95d36341b573b | /Codeforces/Links and pearls.cpp | 9267786bc6a5c173ca0780868cd0d99bb74cda66 | [] | no_license | tahmid108/Tahmid-s-Codes | c3128b5b4843ad888e80b57a565739bc742a88ed | ff80ee6d9de4c961a55353b4ded447c6e9bd7431 | refs/heads/master | 2023-02-13T18:10:13.388262 | 2021-01-08T15:38:52 | 2021-01-08T15:38:52 | 327,944,373 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 332 | cpp | #include<bits/stdc++.h>
using namespace std;
int main()
{
string s;
long long count=0,count1=0;
getline(cin,s);
for(int i=0;i<s.size();i++)
{
if(s[i]=='-')
count++;
else if(s[i]=='o')
count1++;
}
if(count1==0){
cout<<"YES"<<endl;
return 0;
}
if(count%count1==0)
cout<<"YES"<<endl;
else
cout<<"N... | [
"rahman1607108@stud.kuet.ac.bd"
] | rahman1607108@stud.kuet.ac.bd |
682d8b8cd1b693e2b12a82548e291b6958b7fc0d | 4af5e11cf315bfe10c74e8a20e09a85c8a6d2b45 | /src/genetic/individual.cc | aac2a7b624f46beba105f77e6d918929d9f0cdd7 | [] | no_license | qwazerty/genetic-smb-nes | 3594239d0fc8452f588b2dd01ac3055077c3b5cf | 5e27bcad814b191bc903cac24b48519cd22d23ba | refs/heads/master | 2016-09-05T16:26:18.260928 | 2013-05-14T05:15:12 | 2013-05-14T05:15:12 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,532 | cc | #include <iostream>
#include <fstream>
#include <sstream>
#include <vector>
#include <unistd.h>
#include <csignal>
#include "gene.hh"
#include "individual.hh"
#include "variables.hh"
Individual::Individual ()
{
for (int i = 0; i < 500; ++i)
genome_.push_back (Gene ());
}
Individual::Individual (std::vecto... | [
"precursor.qwaz@hotmail.fr"
] | precursor.qwaz@hotmail.fr |
6aed645df15f7bec1364aa1205b7ccc1a1c242e2 | b6526dbf7f28598b0a228d4bacc66dfde9d1c2e7 | /preorderTraversal/preorderTraversal.cpp | ccd17c1c4ffc233203fa8b4feb0b3fc9f58d2380 | [] | no_license | zzfan/leetCode | 421d2250502891871933cde5b73d9d3339b0d471 | 64f5cf7ddb73a892ffbd0bf8dfddd03c2e7493cd | refs/heads/master | 2020-05-30T14:46:00.828283 | 2016-09-07T02:58:23 | 2016-09-07T02:58:23 | 56,552,920 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,263 | cpp | /*************************************************************************
> File Name: preorderTraversal.cpp
> Author: zzfan
> Mail: zzfan@mail.ustc.edu.cn
> Created Time: Wed 08 Jun 2016 06:00:58 PM HKT
************************************************************************/
#include <iostream>
#include <vect... | [
"zzfan@mail.ustc.edu.cn"
] | zzfan@mail.ustc.edu.cn |
b8def156252698f695dc8ab637cc6542ee8a6989 | a2ba072a87ab830f5343022ed11b4ac365f58ef0 | / urt-bumpy-q3map2 --username twentyseven@urbanterror.info/libs/entitylib.cpp | c58a7dcdf43e1367951ad56ab04d056eccbf9c34 | [] | no_license | Garey27/urt-bumpy-q3map2 | 7d0849fc8eb333d9007213b641138e8517aa092a | fcc567a04facada74f60306c01e68f410cb5a111 | refs/heads/master | 2021-01-10T17:24:51.991794 | 2010-06-22T13:19:24 | 2010-06-22T13:19:24 | 43,057,943 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 26 | cpp |
#include "entitylib.h"
| [
"twentyseven@urbanterror.info"
] | twentyseven@urbanterror.info |
1740bbfaaa9a06bc84ceafb90aaf7f3b3c2cc265 | d65f80d89a30f2c9dc7663684ed7b724124ff7e5 | /src/geom/Shape/Quad.h | eac86e7755e0bfd60d084cc680933ab9f8d8e1d1 | [
"Zlib"
] | permissive | Alan-FGR/mud | e53313bef4ed7f5785af99d19134d806743f4fe8 | 7186841f9b33d0f95eda6798508906ca54318bd0 | refs/heads/master | 2020-03-19T08:17:29.188638 | 2018-06-05T14:37:35 | 2018-06-05T14:37:35 | 136,191,736 | 0 | 0 | null | 2018-06-05T14:42:32 | 2018-06-05T14:42:32 | null | UTF-8 | C++ | false | false | 818 | h | // Copyright (c) 2018 Hugo Amiard hugo.amiard@laposte.net
// This software is provided 'as-is' under the zlib License, see the LICENSE.txt file.
// This notice and the license may not be removed or altered from any source distribution.
#pragma once
#include <geom/Generated/Forward.h>
#include <geom/Shape/ProcShape... | [
"hugo.amiard@laposte.net"
] | hugo.amiard@laposte.net |
28ad3a75d73bddbf7cdbae79435ea4321e7131e0 | 28e9f79335a6e88ea9a020f80f24e0f715b64ad7 | /dependencies/framework/GL_core_tools/source/texture.cpp | 90c51ce88a4c488fc8aebdc83f83bd439a9a71b5 | [
"MIT"
] | permissive | crest01/ShapeGenetics | 701a0702dacb38660da3471bd187f590edfc3c5e | 7321f6484be668317ad763c0ca5e4d6cbfef8cd1 | refs/heads/master | 2021-01-12T01:59:29.067964 | 2019-05-20T21:08:47 | 2019-05-20T21:08:47 | 78,453,093 | 18 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,787 | cpp |
#include "error.h"
#include "texture.h"
namespace GL
{
GLuint TextureObjectNamespace::gen()
{
GLuint id;
glGenTextures(1, &id);
checkError();
return id;
}
void TextureObjectNamespace::del(GLuint name)
{
glDeleteTextures(1, &name);
checkError();
}
Texture createTexture2D(GLsizei width, GLsize... | [
"karl.haubenwallner@student.tugraz.at"
] | karl.haubenwallner@student.tugraz.at |
d6f711f322620e1f2991f1b9c295743172b095f6 | 92095ddf166b17c30ec1b4c0f179be5f36f8df60 | /DS6/BigInteger/BigIntegerInVector.h | 7eac1528939e9bf0e946f048e2dafdb2455f0065 | [] | no_license | blackeywong/DataStructure | d9adb065ea1fdf3fcc20b8dd58da223c37578542 | a158d8dd69ac58f53fd237e9c4d50441dbd9b682 | refs/heads/master | 2021-05-23T00:10:01.029878 | 2020-08-04T06:07:04 | 2020-08-04T06:07:04 | 253,150,081 | 1 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,999 | h | #pragma once
#ifndef _BIGINTEGERINVECTOR_H
#define _BIGINTEGERINVECTOR_H
#include <vector>
#include <algorithm>
#include <string>
#include <iostream>
using namespace std;
//数据结构算法与应用-C++语言描述 第六章
//Exercise 69
//use vector to store digits of every digit. sign: 1(positive) or -1(negative)
class BigInteger {
public:
Bi... | [
"blackeywong@hotmail.com"
] | blackeywong@hotmail.com |
a4032bdc71bffe2870e694fb3209bf078ad692fa | a06c382657910483ba6af54efaf3ce0779ed39ad | /src/ED/TXYZ-save.cpp | 67f7306dc9b74920fce1d05350ea0d4d4d652cdc | [] | no_license | chaeyeunpark/are-neural-quantum-states-good | 8d546312ee5976df7ddd5d6ab4bb851329599140 | a37ba05856d33f648c78351a38c1517f8233f978 | refs/heads/main | 2023-07-14T18:13:00.312904 | 2021-09-01T21:10:14 | 2021-09-01T21:10:14 | 361,696,144 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,032 | cpp | #include <iostream>
#include <fstream>
#include <ios>
#include <cereal/archives/binary.hpp>
#include <tbb/tbb.h>
#include "ParallelMV.hpp"
#include "Basis/TIBasisZ2.hpp"
#include "TITXYZ.hpp"
#include "TITXYZSto.hpp"
#include "ArpackSolver.hpp"
int main(int argc, char* argv[])
{
int N;
if(argc != 2)
{
printf... | [
"kaeri17@gmail.com"
] | kaeri17@gmail.com |
3c35df3c654fee98e292b77e43a70567b2cf3de3 | a6094c9c6d19a0878eb379bb8f8b09243072ba73 | /lmm-p2654-Accepted-s546832.cpp | 20d626b7af40cfa1f5b44a5a682021eb7d3ee10a | [] | no_license | pedris11s/coj-solutions | c6b0c806a560d1058f32edb77bc702d575b355c3 | e26da6887109697afa4703f900dc38a301c94835 | refs/heads/master | 2020-09-26T07:25:40.728954 | 2019-12-05T22:51:07 | 2019-12-05T22:51:07 | 226,202,753 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 295 | cpp | #include <iostream>
using namespace std;
const int C[2] = {4, 7};
int main()
{
int K;
cin >> K;
int e = 1;
while ((1 << e) - 2 < K)
e++;
e--;
K -= ((1 << e) - 1);
for (int i = e - 1 ; i > -1 ; i--)
cout << C[((1 << i) & K) != 0];
return 0;
} | [
"ptorres@factorclick.cl"
] | ptorres@factorclick.cl |
f59e06f275396b398914ab2e06641a4dc9ad99f6 | 65e68eb4601830bc2a519ce5bbf31fd385dc84db | /blue-iron-greyhound/BackgroundMusicComponent.h | e87e35e8cece32acd96636e1ee6bee0d6b5d2a03 | [] | no_license | Cmadden09/Year-3-Games-Project | 00225f55e8ba64e75d5cfee267628b9f570a2686 | 143a50e51eaa0f0698be9e78c7d084cfc72b85dd | refs/heads/master | 2020-04-21T21:55:42.838305 | 2019-02-10T11:36:33 | 2019-02-10T11:36:33 | 169,894,410 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 513 | h | #pragma once
#include "GameObject.h"
#include "Component.h"
#include "IrrKlangAudioSystem.h"
class BackgroundMusicComponent : public Component
{
public:
BackgroundMusicComponent() {}
BackgroundMusicComponent(std::string name);
~BackgroundMusicComponent() {};
void init();
void update(double dt);
void setAudio... | [
"chloe_madden@live.com"
] | chloe_madden@live.com |
73aa6000aad64ab3a36641b8fa673adbc88d4e3b | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/git/gumtree/git_new_hunk_317.cpp | 6db7d1d5d898aae16a9f59154d2799c7bbbce6e6 | [] | 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 | 708 | cpp | #include "cache.h"
#include "builtin.h"
#include "parse-options.h"
#include "lockfile.h"
#include "apply.h"
static const char * const apply_usage[] = {
N_("git apply [<options>] [<patch>...]"),
NULL
};
static struct lock_file lock_file;
int cmd_apply(int argc, const char **argv, const char *prefix)
{
int force_ap... | [
"993273596@qq.com"
] | 993273596@qq.com |
4214fc19e622872590cc334e65bfe306e88c5830 | 3efc50ba20499cc9948473ee9ed2ccfce257d79a | /data/code-jam/files/32016_ziyu_24484_1_extracted_product.cpp | fc0b675ff18b32551e9dc80f9b06f0d8bffe982b | [] | no_license | arthurherbout/crypto_code_detection | 7e10ed03238278690d2d9acaa90fab73e52bab86 | 3c9ff8a4b2e4d341a069956a6259bf9f731adfc0 | refs/heads/master | 2020-07-29T15:34:31.380731 | 2019-12-20T13:52:39 | 2019-12-20T13:52:39 | 209,857,592 | 9 | 4 | null | 2019-12-20T13:52:42 | 2019-09-20T18:35:35 | C | UTF-8 | C++ | false | false | 573 | cpp | #include <iostream>
#include <vector>
using namespace std;
int main()
{
int casenum;
cin>>casenum;
int n;
vector<long long >v1;
vector<long long>v2;
int cnt = 0;
while(casenum--){
cin>>n;
v1 = v2 = vector<long long >(n,0);
for(int i=0;i<n;++i){
cin>> v1[i];
}
for(int... | [
"arthurherbout@gmail.com"
] | arthurherbout@gmail.com |
1098be670e646710fc657e18116a9da2aec6e37e | eb7967adbd7bcb3fd5ba79a7a6fe2462d3fe05e9 | /RootAna_CMEbias/checkTrack/checkTrack/MyxAODAnalysis.h | 9175b9f32b9c35fd8e698352bc61ff54b9b98a7c | [] | no_license | MingliangZhou/PhD_ProdCode | 40c1428c81df5ff78493cb037b3aa5fe8fc1e2a7 | 369c8f98d686179a9408665b68b47a302906d248 | refs/heads/master | 2020-04-27T15:01:03.875244 | 2019-03-08T00:00:33 | 2019-03-08T00:00:33 | 174,428,812 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 4,252 | h | #ifndef checkTrack_MyxAODAnalysis_H
#define checkTrack_MyxAODAnalysis_H
#include <EventLoop/Algorithm.h>
// include files for using the trigger tools
#include "TrigConfxAOD/xAODConfigTool.h"
#include "TrigDecisionTool/TrigDecisionTool.h"
#include "xAODRootAccess/Init.h"
#include "xAODRootAccess/TEvent.h"
#include "... | [
"MingliangZhou@Mingliangs-MacBook-Pro.local"
] | MingliangZhou@Mingliangs-MacBook-Pro.local |
05cf90c55ea91eede1686d2499a421990f316f64 | 0e487326b48e85a6c82ed922e41b13dee30f67a5 | /SBFT/threshsign/bench/lib/IThresholdSchemeBenchmark.h | 6f0997408c0b3d59a154829acdf7d0e2011eb512 | [
"LicenseRef-scancode-generic-cla",
"Apache-2.0"
] | permissive | pyruvic-acid/Polaris | f21bf75190b0f68d5e4f00197c961c91e631c546 | 5acb68deaa46e6c63a21fff0c0115480fb127454 | refs/heads/master | 2020-12-31T23:03:07.207748 | 2020-02-09T05:36:08 | 2020-02-09T05:36:08 | 239,066,728 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 3,360 | h | // Concord
//
// Copyright (c) 2018 VMware, Inc. All Rights Reserved.
//
// This product is licensed to you under the Apache 2.0 license (the "License").
// You may not use this product except in compliance with the Apache 2.0 License.
//
// This product may include a number of subcomponents with separate copyright
// ... | [
"CH3COCOOH@protonmail.com"
] | CH3COCOOH@protonmail.com |
20b57ee8b61ef0e3064c1c018c2edeb8d21e3a89 | 684ce0a66322b0a6ea8b729c8a9822109d69f31d | /UVAOJ/101.cpp | 6bff33e2f72fff8b6185f75416f8dff91c5908b2 | [] | no_license | w0lker/ACM | b4c53c389b66e7522feb6fe8f9bd0dee3140db3a | 7d70350d03588fdf5e13c68478f91ec1e46613b4 | refs/heads/master | 2020-12-11T05:23:28.112483 | 2014-02-14T04:48:11 | 2014-02-14T04:48:11 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 3,286 | cpp | /**
基本实现功能了,但是运行时间太长。
**/
#include <iostream>
#include <vector>
#include <string>
#include <map>
using std::cout;
using std::cin;
using std::endl;
using std::vector;
using std::string;
using std::map;
struct Block{
Block(int i):num(i),up(NULL),down(NULL){}
int num;
Block *up;
Block *down;
};
struct Pile{
Pile(Bl... | [
"dlut200803001@163.com"
] | dlut200803001@163.com |
0f794357a56b20b8fbcc6162d0d0ee1f15522e0c | 21dd586bcdcacda1ad925fbf5c911ab1124491ce | /src/parser.cpp | f1ba7d206fe8f6fda126b274bfe072aa614c86e1 | [] | no_license | Uriegas/Moodle_C- | f2bb4b9bdbbfdf1dc128ffa69f8dd1534837e849 | ec27f921cb552db6e55a1ff652da2bc8cf3f4c02 | refs/heads/master | 2022-11-27T03:15:44.757158 | 2020-08-11T00:35:12 | 2020-08-11T00:35:12 | 278,945,324 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 23,605 | cpp | #include "../include/parser.h"
//<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<COMMENTS SECTION>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
//Author: Jesus Eduardo Uriegas Ibarra
//Lexer_Token Parser -> String Formula Analyzer
//The code is divided into:
//Enums and Struct
//Support functions
//lexer_part_1 function tokenizer... | [
"1930526@upv.edu.mx"
] | 1930526@upv.edu.mx |
8913c29c4ca3a14e1b2a917bc6d916e6a2051388 | 8b191d8eb25af95c679f14b09a32f72764ae2bba | /백준/11722-가장 긴 감소하는 부분수열.cpp | b64a8702e2a06b632d74f1d67476000124026e74 | [] | no_license | cocobisc/PS | 08cd56b57ba95f4384ecbcaec3682263eeb6730f | 11ca5540632715a3c56eaee389a1946bf935ea0e | refs/heads/master | 2020-12-15T20:43:49.231103 | 2020-11-08T10:09:20 | 2020-11-08T10:09:20 | 235,249,407 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 365 | cpp | #include <bits/stdc++.h>
using namespace std;
int n, arr[1000];
int main() {
cin >> n;
for (int i = 0; i < n; i++) cin >> arr[i];
vector<int> v;
reverse(arr, arr + n);
for(int i=0;i<n;i++) {
int idx = lower_bound(v.begin(), v.end(), arr[i]) - v.begin();
if(idx == v.size()) v.push_back(arr[i]);
else v[idx] =... | [
"xmfhs99@gmail.com"
] | xmfhs99@gmail.com |
5e6428bc4665089ade01d6184bc02efde020cbbd | 9390daeb67b447edb709de60762b3cc836370118 | /Tesseract.framework/Versions/A/Headers/bbgrid.h | 7639a0de1b1b5f08c887a549e314ad2ca5dc9f9e | [
"MIT"
] | permissive | JamesFator/OCR-Wand | 2d32eb0a3d0027206344b5f2ffb59c47066e71a4 | e5905f7cb7447b7bfa5c5b8d79a3998558a6a36c | refs/heads/master | 2020-03-10T10:24:50.882042 | 2018-04-13T02:17:17 | 2018-04-13T02:17:17 | 129,332,359 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 30,188 | h | ///////////////////////////////////////////////////////////////////////
// File: bbgrid.h
// Description: Class to hold BLOBNBOXs in a grid for fast access
// to neighbours.
// Author: Ray Smith
// Created: Wed Jun 06 17:22:01 PDT 2007
//
// (C) Copyright 2007, Google Inc.
// Licensed under... | [
"jamesfator@gmail.com"
] | jamesfator@gmail.com |
523750195a6d57dd0e43d85967dad2a85014a592 | 66862c422fda8b0de8c4a6f9d24eced028805283 | /cmake-3.17.5/Source/cmProcessTools.h | 21d59c463d1424462c6fd287a2cdeebbb0c6405c | [
"BSD-3-Clause",
"MIT"
] | permissive | zhh2005757/slambook2_in_Docker | 57ed4af958b730e6f767cd202717e28144107cdb | f0e71327d196cdad3b3c10d96eacdf95240d528b | refs/heads/main | 2023-09-01T03:26:37.542232 | 2021-10-27T11:45:47 | 2021-10-27T11:45:47 | 416,666,234 | 17 | 6 | MIT | 2021-10-13T09:51:00 | 2021-10-13T09:12:15 | null | UTF-8 | C++ | false | false | 2,617 | h | /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
#ifndef cmProcessTools_h
#define cmProcessTools_h
#include "cmConfigure.h" // IWYU pragma: keep
#include <cstring>
#include <iosfwd>
#include <string>
#include "cmProces... | [
"594353397@qq.com"
] | 594353397@qq.com |
4ee60efec02f1086a37c5084bd7fc17e96b34c56 | c34c2ca7ff4c3c77f712109c69aa926595cb00ad | /ChessProject/loadsave.cpp | d7bfbc1bb2881e5a4bb80410eca473eed02dfe1a | [] | no_license | FOSS-Pulchowk/Chess960 | 093ce194f795f7100d890f64ec63da0abf2cb1d0 | 16c21dcff4b33bae8506e4539c60644992592d5f | refs/heads/master | 2020-04-28T15:11:03.382909 | 2019-03-08T03:59:38 | 2019-03-08T03:59:38 | 175,363,824 | 2 | 1 | null | 2019-03-13T06:54:53 | 2019-03-13T06:54:53 | null | UTF-8 | C++ | false | false | 1,880 | cpp | #include "piece.h"
#include "chess.h"
#include "board.h"
#include<fstream>
void Chess::check()
{
string color, piece;
string file_name;
cout << "Type file name to be saved(no extension):";
getline(cin, filename);
file_name += ".dat";
std:: ofstream ofs(file_name);
if (ofs.is_open())
{
// ... | [
"devakabhattarai327@gmail.com"
] | devakabhattarai327@gmail.com |
1e1e5aa688817fb817595beb06fa670c8c9219d1 | 6b50e35b60a7972ff3c3ac60a1d928b43591901c | /SignalProcessing/LDA_Truong_Tung/jni/openvibe/include/openvibe/kernel/player/ovIMessageWithData.h | 8531101adc7d116e05eec7a966a20447f8659883 | [] | no_license | damvanhuong/eeglab411 | 4a384fe06a3f5a9767c4dc222d9946640b168875 | 0aca0e64cd8e90dcde7dd021078fa14b2d61f0c9 | refs/heads/master | 2020-12-28T20:19:50.682128 | 2015-05-06T10:36:07 | 2015-05-06T10:36:07 | 35,154,165 | 1 | 0 | null | 2015-05-06T10:48:11 | 2015-05-06T10:48:10 | null | UTF-8 | C++ | false | false | 7,599 | h | #ifndef __OpenViBE_Kernel_Player_IMessageWithData_H__
#define __OpenViBE_Kernel_Player_IMessageWithData_H__
#include "../ovIKernelObject.h"
namespace OpenViBE
{
namespace Kernel
{
/**
* \class IMessageWithData
* \author Loic Mahe (Inria)
* \date 2013-10-02
* \brief A type of message that can contain d... | [
"nguyenhaitruonghp@gmail.com"
] | nguyenhaitruonghp@gmail.com |
63811f2fdbc48d2d34b0f46e0d7fed6fd27d0c85 | 32983d47a0715deec9da6651910961582b68e459 | /Semester1/Laba4/Variant10/Variant10.cpp | 2a98b2c3b4988e542c920bccd3b171fc12384edd | [] | no_license | afrochonsp/OAiP | 8729dc6b3350e889d05b3a9c33aea5f56e606374 | 7d967c605c0916349b8f2ddffe9a6d4082c41af9 | refs/heads/main | 2023-07-15T10:15:11.078463 | 2021-08-20T23:15:05 | 2021-08-20T23:15:05 | 398,412,278 | 0 | 0 | null | 2021-08-20T22:59:18 | 2021-08-20T22:18:44 | null | UTF-8 | C++ | false | false | 1,516 | cpp | #include <iostream>
#include <cmath>
using namespace std;
int Factorial(int);
float Y(float, float);
float S(float, float);
float DistanceYS(float, float);
void Out_Rez(float(*function)(float, float), float, float, float, float);
int main()
{
system("chcp 1251");
system("cls");
Start:
float b = 1, n = 10, h = 0.... | [
"afrochonsp@gmail.com"
] | afrochonsp@gmail.com |
a6719c22e21fb5d71317e234b1267493f84d1ca8 | b3710dfdd0eeb3e28d3a4c666af5df6558a03553 | /cgodeps/godot_engine/servers/navigation_server_3d.h | c34bd2391b49d4ca5b352fce0826624b55e63578 | [
"MIT",
"LicenseRef-scancode-free-unknown",
"CC-BY-3.0",
"OFL-1.1",
"BSD-3-Clause",
"Bitstream-Vera",
"FTL",
"MPL-2.0",
"Zlib",
"LicenseRef-scancode-nvidia-2002",
"BSL-1.0",
"Apache-2.0",
"LicenseRef-scancode-public-domain",
"BSD-2-Clause",
"CC-BY-4.0"
] | permissive | gabstv/godot-go | 5befd7539ef35a9e459046644dd4b246a0db1ad9 | e0e7f07e1e44716e18330f063c9b3fd3c2468d31 | refs/heads/master | 2021-05-21T23:48:25.434825 | 2020-08-27T16:52:18 | 2020-08-27T16:52:18 | 252,864,512 | 10 | 3 | MIT | 2020-08-27T16:52:20 | 2020-04-03T23:26:52 | C++ | UTF-8 | C++ | false | false | 8,393 | h | /*************************************************************************/
/* navigation_server_3d.h */
/*************************************************************************/
/* This file is part of: */
/* ... | [
"gabs@gabs.tv"
] | gabs@gabs.tv |
9af2016910352356d79876c2052a1030e1e11459 | 09882ac9f3d0949cadc9743544f24a7b12f962fd | /src/stream/cookie.cpp | df472dcb2f460a24ad785df2e5cc0c5848b7adfb | [] | no_license | ousttrue/w3m1 | ddcc240c5d9017ce78dd41cca3197c6bd191f0a1 | eaf5969cdacb3f9ae19e1fa32a652c88695fbf4c | refs/heads/master | 2022-12-08T23:58:04.264222 | 2020-09-03T13:30:24 | 2020-09-03T13:30:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 28,308 | cpp | /*
* References for version 0 cookie:
* [NETACAPE] http://www.netscape.com/newsref/std/cookie_spec.html
*
* References for version 1 cookie:
* [RFC 2109] http://www.ics.uci.edu/pub/ietf/http/rfc2109.txt
* [DRAFT 12] http://www.ics.uci.edu/p... | [
"ousttrue@gmail.com"
] | ousttrue@gmail.com |
8df07ac7c1e762c09d9b0636333991f9246460ec | 093d964b2b1d231c9c34dd3910ccd9e52a579b17 | /libraries/converter/src/converter/Latex2util.hpp | 92441e3bed4fac86563b21c0d00d4862f35f01f0 | [] | no_license | MarcAntoine-Arnaud/xml2epub | a550e50b6b1ae3efea9f1785c725e7bdcc30b188 | f21eb50e1560e5c261c36a4e39906f608cf74dc9 | refs/heads/master | 2021-01-13T01:50:06.175407 | 2013-04-07T11:54:41 | 2013-04-07T11:54:41 | 9,261,722 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 236 | hpp | #include <iostream>
namespace xml2epub {
void latex2pdf( std::istream& input, std::string& pdf_path );
void latex2svg( std::istream& input, std::ostream& output );
void pdf2svg( const std::string& pdf_path, std::ostream& output );
}
| [
"arnaud.marcantoine@gmail.com"
] | arnaud.marcantoine@gmail.com |
4000808cb5e49c5fb0e67b74673f3140a12d7631 | b28305dab0be0e03765c62b97bcd7f49a4f8073d | /base/android/jni_android.cc | aae65a65c132f20f28af357d26764983183c3930 | [
"BSD-3-Clause"
] | permissive | svarvel/browser-android-tabs | 9e5e27e0a6e302a12fe784ca06123e5ce090ced5 | bd198b4c7a1aca2f3e91f33005d881f42a8d0c3f | refs/heads/base-72.0.3626.105 | 2020-04-24T12:16:31.442851 | 2019-08-02T19:15:36 | 2019-08-02T19:15:36 | 171,950,555 | 1 | 2 | NOASSERTION | 2019-08-02T19:15:37 | 2019-02-21T21:47:44 | null | UTF-8 | C++ | false | false | 9,840 | cc | // Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/android/jni_android.h"
#include <stddef.h>
#include <sys/prctl.h>
#include <map>
#include "base/android/java_exception_reporter.h"
#... | [
"artem@brave.com"
] | artem@brave.com |
3edd8d850884dda1591c1e457daa63482b5643c7 | 8a850de5174a7019c310a8fcbfb4fd21412ca2f1 | /Logger.ino | fa0e6ee4186983cb562e329ba8f9e1cc9ef9fb32 | [] | no_license | avoronkov17/Logger | 91fbd0d0d176fafc27cf1dc6a80784389a8e6523 | 9f1408fc053acd05644b37594ff3df94dd0ade85 | refs/heads/main | 2023-03-18T22:52:25.776903 | 2021-03-09T08:52:38 | 2021-03-09T08:52:38 | 339,735,328 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,511 | ino | #include <UIPEthernet.h>
#include <avr/wdt.h>
#include "settings.h"
#include "shared_code.h"
#include "parameters.h"
#define LINK_OFF 1
#define ERR_LINK 2
#define ETHERNET_ERROR 3 /* Не удалось инициализировать Ethernet */
#define UDP_RECEIVER_ERROR 4 /* Ошибка инициализации UDP приёмника*/
#... | [
"den2011chs8@gmail.com"
] | den2011chs8@gmail.com |
8ad2695383403faf6460ed1c03b1038fb0fc85c2 | ed91c77afaeb0e075da38153aa89c6ee8382d3fc | /mediasoup-client/deps/webrtc/src/pc/test/fake_audio_capture_module_unittest.cc | 63b41cddedc031881ae1e20bc93bafe8911ae963 | [
"MIT",
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference",
"LicenseRef-scancode-google-patent-license-webrtc",
"LicenseRef-scancode-google-patent-license-webm"
] | permissive | whatisor/mediasoup-client-android | 37bf1aeaadc8db642cff449a26545bf15da27539 | dc3d812974991d9b94efbc303aa2deb358928546 | refs/heads/master | 2023-04-26T12:24:18.355241 | 2023-01-02T16:55:19 | 2023-01-02T16:55:19 | 243,833,549 | 0 | 0 | MIT | 2020-02-28T18:56:36 | 2020-02-28T18:56:36 | null | UTF-8 | C++ | false | false | 7,076 | cc | /*
* Copyright 2012 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 ... | [
"wuhaiyang1213@gmail.com"
] | wuhaiyang1213@gmail.com |
3bd1bdf74ad5513232de74d122232bbb8dddec98 | 1b85451b46622e5e294498270131acfa8e6d8bc6 | /trunk/src/kernel/srs_kernel_ts.hpp | 06042acab3d7afa3fb6c50588652535d85074e42 | [] | no_license | shilonghai/srs-minor-bug-fix | 1af5335b35f58cfe8c8f7f9985626013e03f7e15 | 22af15d82f73d1a2a4367e123cd3394af34cb422 | refs/heads/master | 2021-01-23T22:30:29.463692 | 2017-09-09T07:28:41 | 2017-09-09T07:28:41 | 102,935,499 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 75,542 | hpp | /*
The MIT License (MIT)
Copyright (c) 2013-2015 SRS(ossrs)
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merg... | [
"shilonghai@gmail.com"
] | shilonghai@gmail.com |
3c6f6b9ced50ab3d5c784782f5784e80c294ec91 | 9967320e2d4028aaad295b2101192f99d57ba7b1 | /Proyectos_en_C++/Algoritmos_y_Estructura_de_Datos_1/Unidad_10/Cajas2/CajaBotellas.cpp | 2be85c8de3d5e860358e105219a360fff4b06a76 | [] | no_license | AlfredoGonzalez76/Programacion | d2c241e1d006db13019e338f07e6941ddc5b6cef | ce9f656df97752e498cc3c405bf7bb6c397f1bce | refs/heads/main | 2023-03-01T20:08:04.520220 | 2021-02-09T23:09:16 | 2021-02-09T23:09:16 | 337,551,605 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 391 | cpp | //archivo CajaBotellas.cpp
#include "CajaBotellas.h"
#include <iostream>
using std::cout;
using std::endl;
CajaBotellas::CajaBotellas(int nro)
{
nrobotellas=nro;
}
double CajaBotellas::volumen(void)
{
return 0.85 * Caja::volumen(); //ojo no olvidar :: para invocar volumen() de Caja
}
CajaBotellas::~CajaBotellas(v... | [
"pologonza2002@gmail.com"
] | pologonza2002@gmail.com |
14fc42f79cf62818edcbf31b18ff71bc2a78c993 | 3c6c684ae317ba74fd669f5cba9b64ea321bb586 | /Source/SIMPLib/Plugin/SIMPLibPlugin.cpp | 656cf7c2ff2e01f3520a027c17630cfe86a2064a | [
"BSD-3-Clause"
] | permissive | imikejackson/SIMPL | 6bdbe330adda6fb41d2d73993463b1aeda55c0f5 | f61686691d977c234d23320be714e11243e72231 | refs/heads/develop | 2023-07-11T19:28:10.639852 | 2023-06-28T17:44:52 | 2023-06-28T17:44:52 | 89,543,705 | 0 | 1 | null | 2017-04-28T21:36:26 | 2017-04-27T01:49:05 | C++ | UTF-8 | C++ | false | false | 4,877 | cpp | /* ============================================================================
* Copyright (c) 2009-2016 BlueQuartz Software, LLC
*
* 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... | [
"mike.jackson@bluequartz.net"
] | mike.jackson@bluequartz.net |
5b89da8d05dd07d7ea62b851fb963e209e2442f4 | cc1701cadaa3b0e138e30740f98d48264e2010bd | /ash/quick_answers/ui/user_consent_view.cc | bf0fa8d4947d11afcc6455d04ccbca5927573db2 | [
"BSD-3-Clause"
] | permissive | dbuskariol-org/chromium | 35d3d7a441009c6f8961227f1f7f7d4823a4207e | e91a999f13a0bda0aff594961762668196c4d22a | refs/heads/master | 2023-05-03T10:50:11.717004 | 2020-06-26T03:33:12 | 2020-06-26T03:33:12 | 275,070,037 | 1 | 3 | BSD-3-Clause | 2020-06-26T04:04:30 | 2020-06-26T04:04:29 | null | UTF-8 | C++ | false | false | 13,985 | cc | // Copyright 2020 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 "ash/quick_answers/ui/user_consent_view.h"
#include "ash/accessibility/accessibility_controller_impl.h"
#include "ash/public/cpp/vector_icons/ve... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
5006370a67535344e242aae41fbcd5e6925f8cde | a565dc8a731c4166548d3e3bf8156c149d793162 | /PLATFORM/TI_EVM_3530/SRC/Ctlpnl/Cplmain/cplglobl.h | 26ea5b2ee615a0489f400035d08454e9ffe46316 | [] | no_license | radtek/MTI_WINCE317_BSP | eaaf3147d3de9a731a011b61f30d938dc48be5b5 | 32ea5df0f2918036f4b53a4b3aabecb113213cc6 | refs/heads/master | 2021-12-08T13:09:24.823090 | 2016-03-17T15:27:44 | 2016-03-17T15:30:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,230 | h | //
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// Use of this sample source code is subject to the terms of the Microsoft
// license agreement under which you licensed this sample source code. If
// you did not accept the terms of the license agreement, you are not
// authorized to use this samp... | [
"ruslan.sirota@micronet-inc.com"
] | ruslan.sirota@micronet-inc.com |
b36ba4a4f6809a200f447b1892ad3eb6b6223b9a | a1fbf16243026331187b6df903ed4f69e5e8c110 | /cs/engine/xrGame/game_cl_single.h | 23eef71424fd3c351220042c9a83e7b200cadd42 | [
"LicenseRef-scancode-warranty-disclaimer",
"BSD-2-Clause"
] | permissive | OpenXRay/xray-15 | ca0031cf1893616e0c9795c670d5d9f57ca9beff | 1390dfb08ed20997d7e8c95147ea8e8cb71f5e86 | refs/heads/xd_dev | 2023-07-17T23:42:14.693841 | 2021-09-01T23:25:34 | 2021-09-01T23:25:34 | 23,224,089 | 64 | 23 | NOASSERTION | 2019-04-03T17:50:18 | 2014-08-22T12:09:41 | C++ | UTF-8 | C++ | false | false | 1,199 | h | #pragma once
#include "game_cl_base.h"
class game_cl_Single :public game_cl_GameState
{
typedef game_cl_GameState inherited;
public :
game_cl_Single ();
virtual CUIGameCustom* createGameUI ();
virtual char* getTeamSection (int Team);
virtual bool IsServerControlHits () {return true;};... | [
"paul-kv@yandex.ru"
] | paul-kv@yandex.ru |
206fd580c9421d56c4ed2cf0bbe54ff97708f524 | 400ff661684148cbb6aa99f4ebbc82bc551356d9 | /window/MFC/file-manager-demo/MFCApplication15/MyDirListView.cpp | 0df5dab8018f3f784f186ecae83181235afe73d4 | [] | no_license | csw201710/demo | 32d71f333dc7f78fab0e2ab53f6a7e051847eea3 | 386a56961e8099b632115015cbeec599765ead01 | refs/heads/master | 2021-08-26T08:03:49.055496 | 2021-08-18T11:22:45 | 2021-08-18T11:22:45 | 171,476,054 | 7 | 11 | null | null | null | null | GB18030 | C++ | false | false | 3,603 | cpp | // MyDirListView.cpp : 实现文件
//
#include "stdafx.h"
#include "MFCApplication15.h"
#include "MyDirListView.h"
// CMyDirListView
IMPLEMENT_DYNCREATE(CMyDirListView, CListView)
CMyDirListView::CMyDirListView()
{
}
CMyDirListView::~CMyDirListView()
{
}
BEGIN_MESSAGE_MAP(CMyDirListView, CListView... | [
"work@qq.com"
] | work@qq.com |
7f8c0670d66a6f4660216946eebb9fcf8c964b38 | befaf0dfc5880d18f42e1fa7e39e27f8d2f8dde9 | /SDK/SCUM_Pizza_classes.hpp | 7350881b2c083affdf31546c059de2fb50148fb7 | [] | no_license | cpkt9762/SCUM-SDK | 0b59c99748a9e131eb37e5e3d3b95ebc893d7024 | c0dbd67e10a288086120cde4f44d60eb12e12273 | refs/heads/master | 2020-03-28T00:04:48.016948 | 2018-09-04T13:32:38 | 2018-09-04T13:32:38 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 613 | hpp | #pragma once
// SCUM (0.1.17.8320) SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
#include "SCUM_Pizza_structs.hpp"
namespace SDK
{
//---------------------------------------------------------------------------
//Classes
//---------------------------------------------------------------------------
// Blueprint... | [
"igromanru@yahoo.de"
] | igromanru@yahoo.de |
9019f40777ec12da04481faaa2edf4dd73b62bbc | fdb963647dc9317947943874a51f58c1240f994c | /project/Framework/Effect/RendererEffect.cpp | 8fe4b8bc2942599d5f8fc2986e46022e848694fa | [
"MIT"
] | permissive | SomeTake/HF21MisotenH206 | 0f2e5e92a71ef4c89b43c4ebd8d3a0bf632f03b4 | 821d8d4ec8b40c236ac6b0e6e7ba5f89c06b950d | refs/heads/master | 2020-07-25T07:44:09.728095 | 2020-01-17T10:15:03 | 2020-01-17T10:15:03 | 208,212,885 | 0 | 2 | MIT | 2020-01-17T08:00:14 | 2019-09-13T07:02:16 | C++ | SHIFT_JIS | C++ | false | false | 3,187 | cpp | //=====================================
//
//描画エフェクト処理[RendererEffect.cpp]
//Author:GP12A332 21 立花雄太
//
//=====================================
#include "RendererEffect.h"
/**************************************
static変数
***************************************/
D3DXMATRIX RendererEffect::mtxView;
D3DXMATRIX RendererEf... | [
"yuta.tachibana0310@gmail.com"
] | yuta.tachibana0310@gmail.com |
5d9fceb0f4e550aa06436e9289c0b1dc6d497d63 | 6ced41da926682548df646099662e79d7a6022c5 | /aws-cpp-sdk-apprunner/source/model/CreateVpcConnectorRequest.cpp | 8e5cca44db13945e59e306373c8951189a9af05e | [
"Apache-2.0",
"MIT",
"JSON"
] | permissive | irods/aws-sdk-cpp | 139104843de529f615defa4f6b8e20bc95a6be05 | 2c7fb1a048c96713a28b730e1f48096bd231e932 | refs/heads/main | 2023-07-25T12:12:04.363757 | 2022-08-26T15:33:31 | 2022-08-26T15:33:31 | 141,315,346 | 0 | 1 | Apache-2.0 | 2022-08-26T17:45:09 | 2018-07-17T16:24:06 | C++ | UTF-8 | C++ | false | false | 2,094 | cpp | /**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/apprunner/model/CreateVpcConnectorRequest.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::AppRunner::Model;
using namespace Aws::Utils::Json;... | [
"aws-sdk-cpp-automation@github.com"
] | aws-sdk-cpp-automation@github.com |
030707ea2d92f4f80d8286e3b98170e269111c9d | 03aac7ce536cb55ac6e4423cd02e5ea7990b6906 | /CleverManagerV3/common/sqlcom/sqlexportdlg.cpp | 55ba68bb84f260238b63e1a1ac69875de68e3809 | [] | no_license | tbbug/CleverManagerV3 | 32f359546346efdef070e60068cb498f38baae37 | 26f000939164b6defe66736394328200c77bf417 | refs/heads/master | 2023-03-16T02:06:48.681239 | 2020-05-15T03:25:56 | 2020-05-15T03:25:56 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,774 | cpp | /*
* log_exportdlg.cpp
* 导出窗口
*
* Created on: 2017年10月11日
* Author: Lzy
*/
#include "sqlexportdlg.h"
#include "ui_sqlexportdlg.h"
SqlExportDlg::SqlExportDlg(QWidget *parent) :
QDialog(parent),
ui(new Ui::SqlExportDlg)
{
ui->setupUi(this);
groupBox_background_icon(this);
this->setWindow... | [
"luozhiyong131@qq.com"
] | luozhiyong131@qq.com |
c621045420ad4751684ead8ac3413e3ee7bb770f | 747e2d79f77c64094de69df9128a4943c170d171 | /StageServer/Protocol/FromServer.cpp | 6472fafa0f99cd08305b60816c85c836ec828013 | [
"MIT"
] | permissive | Teles1/LuniaAsio | 8854b6d59e5b2622dec8eb0d74c4e4a6cafc76a1 | 62e404442cdb6e5523fc6e7a5b0f64a4471180ed | refs/heads/main | 2023-06-14T00:39:11.740469 | 2021-07-05T23:29:44 | 2021-07-05T23:29:44 | 383,286,395 | 0 | 0 | MIT | 2021-07-05T23:29:45 | 2021-07-05T23:26:46 | C++ | WINDOWS-1252 | C++ | false | false | 279,942 | cpp | #include <StageServer/Protocol/FromServer.h>
namespace Lunia
{
namespace XRated
{
namespace StageServer
{
namespace Protocol
{
namespace FromServer {
// Error
// //////////////////////////////////////////////////////////////////////////////////
... | [
"mteleshenrique@gmail.com"
] | mteleshenrique@gmail.com |
494c135329b358c6f63504d0b972bd2d05e6e325 | 08b8cf38e1936e8cec27f84af0d3727321cec9c4 | /data/crawl/wget/old_hunk_1993.cpp | 794843166c8b0c74113cbcde54b950b21c8d8ae4 | [] | no_license | ccdxc/logSurvey | eaf28e9c2d6307140b17986d5c05106d1fd8e943 | 6b80226e1667c1e0760ab39160893ee19b0e9fb1 | refs/heads/master | 2022-01-07T21:31:55.446839 | 2018-04-21T14:12:43 | 2018-04-21T14:12:43 | null | 0 | 0 | null | null | null | null | ISO-8859-3 | C++ | false | false | 413 | cpp | # Es la función bind(2), que asigna una dirección a un socket.
# Me parece que decir lo de la función es mejor. (nl)
#
#: src/ftp.c:712
#, c-format
msgid "Bind error (%s).\n"
msgstr "Error en la llamada `bind' (%s).\n"
# Ya no está "prohibido" usar esta palabra. sv
#: src/ftp.c:718
msgid "Invalid PORT.\n"
msgstr "PUER... | [
"993273596@qq.com"
] | 993273596@qq.com |
e1028bb8b650d7e0c4db57385dc8be6217e143af | 08e1accf8db12b0e88f698138c9d51e2b25e25e9 | /DXEngine/Include/Component/Text.h | 64a93335fbe3f5443e8fa57fda19d5c3c6a03d63 | [] | no_license | yoari89/Direct3D | a6b4579143805a12d1bb416e4bfda896ea894aad | 3f12d13297149d411a77b607dfa9905436ec8c77 | refs/heads/master | 2020-04-15T10:10:15.157318 | 2019-01-09T09:03:48 | 2019-01-09T09:03:48 | 164,583,316 | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 2,641 | h | #pragma once
#include "Component/Component.h"
ENGINE_BEGIN
enum eTextRenderType
{
TYPE_UI,
TYPE_2D,
TYPE_MAX,
};
enum eTextAlignH
{
ALIGNH_LEFT,
ALIGNH_CENTER,
ALIGNH_RIGHT,
ALIGNH_MAX,
};
enum eTextAlignV
{
ALIGNV_TOP,
ALIGNV_CENTER,
ALIGNV_BOTTOM,
ALIGNV_MAX,
};
class ENGINE_DLL CText : public CCompone... | [
"yoari89@naver.com"
] | yoari89@naver.com |
29de8a0e6041373ee87fde75d182717c53bfdfb8 | 2fbf5b6d174c1c46eedd1b23f31af11a20ee49d6 | /Include/10.0.14393.0/winrt/Windows.ApplicationModel.socialinfo.h | f7aa0f0bd277a0da2ed205411cbacb2daafd6aef | [] | no_license | ojdkbuild/tools_toolchain_sdk10_1607 | f33e01ee825bed4cf09db88844658de9fb84bc17 | a3b2cdc2d3e74f81484514056b17ccc031df6739 | refs/heads/master | 2021-08-30T07:23:14.674769 | 2017-12-16T18:04:05 | 2017-12-16T18:04:05 | 114,480,401 | 2 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 181,884 | h |
/* this ALWAYS GENERATED file contains the definitions for the interfaces */
/* File created by MIDL compiler version 8.01.0618 */
/* @@MIDL_FILE_HEADING( ) */
/* verify that the <rpcndr.h> version is high enough to compile this file*/
#ifndef __REQUIRED_RPCNDR_H_VERSION__
#define __REQUIRED_RPCNDR_H_VERSION__... | [
"akashche@redhat.com"
] | akashche@redhat.com |
598a128aec4b5dabbdcbbfc7174fff0f5be32e2a | 2118f611634fc050488801241f540b0be8fbea2f | /ObjectRectangle3D.h | 6019bc30f8f8e9642adc4856a9d71ac23dfa4587 | [] | no_license | valentinneagu/8-Ball-Pool-Game | 1f600db35b8c1ecc9318d532f7360e2749a142bc | fb6daf98505a9d021e1012ddefcafd836f9804b4 | refs/heads/master | 2020-05-06T13:53:25.920663 | 2019-04-08T14:04:23 | 2019-04-08T14:04:23 | 180,161,540 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 225 | h | #pragma once
#include <string>
#include <include/glm.h>
#include <Core/GPU/Mesh.h>
namespace ObjectRectangle3D
{
Mesh* CreateRectangle3D(std::string name,
float heigth, float width,
float length, glm::vec3 color);
};
| [
"daniel.neagu0109@gmail.com"
] | daniel.neagu0109@gmail.com |
100e8eba6a006e2da6be619cfd6940e72d1f977e | 4d63cfc921504ec1ae6ce2c4aa1579e941b41ee1 | /erle_classes/erle_classes63.cpp | 2bb15346a8956e7d7d53f18007d8343431770757 | [] | no_license | WitoldKaczor/cpp_repo | ca9891060b3600173b7e66e96dcfdc957fdc7946 | ca766c15a323d736e20a9b5bfcadbde990efb302 | refs/heads/master | 2022-09-24T16:06:52.734690 | 2020-06-07T15:57:26 | 2020-06-07T15:57:26 | 254,033,583 | 0 | 0 | null | 2020-04-08T09:08:38 | 2020-04-08T08:48:00 | null | UTF-8 | C++ | false | false | 213 | cpp | #include <iostream>
//Take input in variable and display same value by pointer.
int main()
{
int var;
std::cin>>var;
int* ptr = &var;
std::cout<<"var "<< *ptr << " in address " << ptr;
} | [
"63341757+WitoldKaczor@users.noreply.github.com"
] | 63341757+WitoldKaczor@users.noreply.github.com |
95ed52c35fab0f1bd85f9fbe6ac6bca205fb9484 | 24bc4990e9d0bef6a42a6f86dc783785b10dbd42 | /ash/quick_pair/repository/fast_pair/device_address_map.h | 5ceb261bba62bf5fe3fef1d350d757480c84e157 | [
"BSD-3-Clause"
] | permissive | nwjs/chromium.src | 7736ce86a9a0b810449a3b80a4af15de9ef9115d | 454f26d09b2f6204c096b47f778705eab1e3ba46 | refs/heads/nw75 | 2023-08-31T08:01:39.796085 | 2023-04-19T17:25:53 | 2023-04-19T17:25:53 | 50,512,158 | 161 | 201 | BSD-3-Clause | 2023-05-08T03:19:09 | 2016-01-27T14:17:03 | null | UTF-8 | C++ | false | false | 3,526 | h | // Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_QUICK_PAIR_REPOSITORY_FAST_PAIR_DEVICE_ADDRESS_MAP_H_
#define ASH_QUICK_PAIR_REPOSITORY_FAST_PAIR_DEVICE_ADDRESS_MAP_H_
#include <string>
#include "ash/quick_pair... | [
"roger@nwjs.io"
] | roger@nwjs.io |
7b4abfec60395aa1f6d5fa07625bae0e56c95426 | 935fe8418680e02c35e0300cd3824d69eaa01772 | /lab1/q5.cpp | 485ab8e20fddd31d01c857891f87f5cdace49906 | [] | no_license | rlim/221 | 0dd7b1f9cf052f6023e9f20cf29afe59ceaa37b0 | 0b5fd94f205b6ad9e1bffc958a3dcc8886a26e12 | refs/heads/master | 2021-01-01T03:56:28.193566 | 2016-05-11T20:38:09 | 2016-05-11T20:38:09 | 58,578,510 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 519 | cpp | #include<iostream>
#include <stdlib.h>
#include <time.h>
using namespace std;
int main()
{ bool a = true;
while (a) {
int num;
cout << "Enter a number" << endl;
cin >> num;
srand(time(NULL));
int randomNum = rand()%20;
if (randomNum == num) {
a = false;
}
else {
cout << "That's the wrong numbe... | [
"ryanlim91@hotmail.com"
] | ryanlim91@hotmail.com |
bc9f5d8c584bfded58c6f3fb0de21b3910950527 | 169eaede72ea9e7cc208312d9cfa69a5529685b0 | /queen.h | 42a4a879b2f6f4c1005c5af39f4ee7539f02917f | [] | no_license | sdiwanji/chess-game | bbe15e0e8801ba1c651fa9c5485449d2cbda63dc | 2df471f8febf96a1966533a4c82e8791828b30af | refs/heads/master | 2020-12-03T05:09:08.551906 | 2017-06-29T05:01:28 | 2017-06-29T05:01:28 | 95,738,586 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,240 | h | //
// queen.h
// chess-game
//
// Created by Shaan Diwanji on 5/24/17.
// Copyright © 2017 Shaan Diwanji. All rights reserved.
//
#ifndef queen_h
#define queen_h
#include <cstdlib>
#include <string>
#include "coords.h"
using namespace std;
class queen: public piece{
private:
vector <coords> opts;
pub... | [
"sdiwanji@umich.edu"
] | sdiwanji@umich.edu |
04be3f9855d3ef908dbb34b6dd764da2026b5c02 | 4c23be1a0ca76f68e7146f7d098e26c2bbfb2650 | /ic8h18/0.007/GC6H13 | 01732e35e2f7cdd3e14319c219922a2eb07ec830 | [] | no_license | labsandy/OpenFOAM_workspace | a74b473903ddbd34b31dc93917e3719bc051e379 | 6e0193ad9dabd613acf40d6b3ec4c0536c90aed4 | refs/heads/master | 2022-02-25T02:36:04.164324 | 2019-08-23T02:27:16 | 2019-08-23T02:27:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 838 | /*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 6
\\/ M anipulation |
\*-------... | [
"jfeatherstone123@gmail.com"
] | jfeatherstone123@gmail.com | |
560d290b2297672614bf6dec34b53ad89431e255 | e56d100ce7e183df367d6e969844bd84f0079dee | /wzemcmbd/CrdWzemPrd/QryWzemPrd1NJob.h | 489c1060848e37970516b6ab3bfdccfe94766716 | [
"MIT"
] | permissive | mpsitech/wzem-WhizniumSBE-Engine-Monitor | 800b556dce0212a6f9ad7fbedbff4c87d9cb5421 | 2808427d328f45ad1e842e0455565eeb1a563adf | refs/heads/master | 2022-09-29T02:41:46.253166 | 2022-09-12T20:34:28 | 2022-09-12T20:34:28 | 282,705,563 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,816 | h | /**
* \file QryWzemPrd1NJob.h
* job handler for job QryWzemPrd1NJob (declarations)
* \copyright (C) 2016-2020 MPSI Technologies GmbH
* \author Alexander Wirthmueller (auto-generation)
* \date created: 1 Dec 2020
*/
// IP header --- ABOVE
#ifndef QRYWZEMPRD1NJOB_H
#define QRYWZEMPRD1NJOB_H
// IP include.spec ---... | [
"aw@mpsitech.com"
] | aw@mpsitech.com |
4f83b8560b30eff48d4e403cb94602e0b8a68fdc | 12cd044c57f4fb42362b28820d526e79684365f2 | /deps/fcl/include/fcl/primitive.h | 2a948c09202e543144a31ae0d39b8124806c3bcc | [
"Apache-2.0"
] | permissive | ci-group/gazebo | 29abd12997e7b8ce142c01410bdce4b46b97815f | 1e8bdf272217e74eeb49349da22a38d3275e5d72 | refs/heads/gazebo6-revolve | 2021-07-09T16:05:29.272321 | 2019-11-11T17:56:01 | 2019-11-11T17:56:01 | 82,048,176 | 3 | 2 | NOASSERTION | 2020-05-18T13:49:18 | 2017-02-15T10:22:37 | C++ | UTF-8 | C++ | false | false | 4,312 | h | /*
* Software License Agreement (BSD License)
*
* Copyright (c) 2011, Willow Garage, Inc.
* 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 mu... | [
"nkoenig@willowgarage.com"
] | nkoenig@willowgarage.com |
b46b76677b0f990d1189ecf64b6943d21d9eb2fe | 7eb820c26cda08cdc120339103c858ab5fbbce47 | /OpenGL/OpenGLTransformation/MyItemRenderer.cpp | ff5231096bec6305512b45ba717108d424ccc620 | [] | no_license | NitinRamesh25/Sample-Projects | 767248259c767c0a75b2283d8c2755c856d61ad5 | 7f90e8c76c4475486fbeef467d7dd37d8af0b6e4 | refs/heads/master | 2023-01-30T17:00:03.254860 | 2021-06-30T03:03:52 | 2021-06-30T03:03:52 | 227,961,042 | 0 | 0 | null | 2023-01-20T22:59:33 | 2019-12-14T03:36:50 | C++ | UTF-8 | C++ | false | false | 4,375 | cpp | #include "MyItemRenderer.h"
#include "MyItem.h"
#include <QDebug>
MyItemRenderer::MyItemRenderer()
{
initializeOpenGLFunctions();
createShader();
createBuffer();
}
QOpenGLFramebufferObject* MyItemRenderer::createFramebufferObject(const QSize &size)
{
QOpenGLFramebufferObjectFormat format;
format.... | [
"nitin.ramesh25@gmail.com"
] | nitin.ramesh25@gmail.com |
af655b84e39ecec4fe71cc35d5eb7ea01e2def2a | 40c9bff27086cab3a947f472dedf71ff95ef295e | /bateria.h | 02107a12e347e89d20c51b7ddd2c8386903707dd | [] | no_license | dominikrzesny/TelephoneBase | 536d67ce4093e3c5d2f53e666919e10dbf571873 | 06a405a3a692cfe4b5249329d70c136e962fa3e9 | refs/heads/master | 2022-09-08T08:42:31.690685 | 2020-05-31T13:31:01 | 2020-05-31T13:31:01 | 268,280,252 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 754 | h | #pragma once
#include <fstream>
#include <iostream>
#include <qfile.h>
#include <string>
using namespace std;
/// Podklasa telefonu
class Bateria{
private:
int poziom_naladowania; ///<Zmienna przechowujaca poziom naladowania baterii
int zywotnosc_baterii; ///< Zmienna przechowujaca zywotnosc baterii
publi... | [
"d.rzesny@stud.elka.pw.edu.pl"
] | d.rzesny@stud.elka.pw.edu.pl |
1529d8b42e5e0fd71fb5cb334c67ef594f39b72c | d40efadec5724c236f1ec681ac811466fcf848d8 | /tags/fs2_open_3_5_3/code/mission/missiongoals.cpp | 9519daf021c7250c22135a4b57cba05feab53d91 | [] | no_license | svn2github/fs2open | 0fcbe9345fb54d2abbe45e61ef44a41fa7e02e15 | c6d35120e8372c2c74270c85a9e7d88709086278 | refs/heads/master | 2020-05-17T17:37:03.969697 | 2015-01-08T15:24:21 | 2015-01-08T15:24:21 | 14,258,345 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 48,986 | cpp | /*
* Copyright (C) Volition, Inc. 1999. All rights reserved.
*
* All source code herein is the property of Volition, Inc. You may not sell
* or otherwise commercially exploit the source or things you created based on the
* source.
*
*/
/*
* $Logfile: /Freespace2/code/Mission/MissionGoals.cpp $
* $Revision:... | [
"Goober5000@387891d4-d844-0410-90c0-e4c51a9137d3"
] | Goober5000@387891d4-d844-0410-90c0-e4c51a9137d3 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.