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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
e40548c0c9c61f066172c003b46ca2502e797832 | 6d8a6e191b9ef070c054f3ab4326605ec637b71b | /code.cpp | 8688393c68bba0e268c941f2d55d8ecd7f98877c | [
"MIT"
] | permissive | itslakshaysharma/Permutation-of-two-given-strings | 2803d33ca929130b62168c6a483bed0395197938 | 8160e25349ea7ad151e9654db3dad75b27aed8e4 | refs/heads/master | 2021-01-07T13:26:57.182488 | 2020-02-19T19:41:41 | 2020-02-19T19:41:41 | 241,709,201 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 739 | cpp | #include <iostream>
#include <cstring>
using namespace std;
bool permutation(char *s1,char *s2){
int l1 = strlen(s1);
int l2 = strlen(s2);
if(l1 != l2){
return false;
}
int frequency[26] = {0};
for(int i = 0; i < l1; i++){
frequency[s1[i] - 'a']++;
}
for(... | [
"noreply@github.com"
] | itslakshaysharma.noreply@github.com |
8f3533c0fb695505a24e0df2907e635de387ae67 | a3323d60e4a299e1804d331400dbb4e7e777339f | /mqtt_esp8266_Red.ino | 89631a41ca782065dc719e517f274a604a032b3d | [] | no_license | annagk/IOT | bd9eb2427709ed65b30bedfaf21d356cf524e4c7 | 61d8c101ff2598c9e1832ea3b84779db11d5c7f6 | refs/heads/master | 2022-03-26T16:42:36.649165 | 2019-12-15T02:21:23 | 2019-12-15T02:21:23 | 208,913,802 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,851 | ino | /*
Basic ESP8266 MQTT example
This sketch demonstrates the capabilities of the pubsub library in combination
with the ESP8266 board/library.
It connects to an MQTT server then:
- publishes "hello world" to the topic "outTopic" every two seconds
- subscribes to the topic "inTopic", printing out any messages
... | [
"noreply@github.com"
] | annagk.noreply@github.com |
6745ac7552cd13b0fb0ac6c790a14e2bb71b9753 | 8c2f5d41a40a590924dda96b99341d20bfabf046 | /Data Structures/Recursion and BackTracking/SudokuSolver.cpp | ea33832fda3ff982e4c9e8acd68bd544c875d56f | [] | no_license | RNaveen99/graduation-codes | f57adb41614e479590cb66e8b250db679d466fe2 | e85f8ad676be44eccf9102fae649fa482f881654 | refs/heads/master | 2020-04-12T23:25:45.929369 | 2019-11-07T15:12:35 | 2019-11-07T15:12:35 | 162,819,187 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,275 | cpp | /*
* Developer : Naveen Rohilla
* Objective : Sudoku solver
*/
#include <bits/stdc++.h>
using namespace std;
#define N 9
// enter values of grid
void enterGrid(int arr[N][N]) {
for (int i = 0; i < N; i++) {
for (int j = 0; j < N; j++) {
cin >> arr[i][j];
}
}
}
// display sudoku grid
void displayGrid(in... | [
"naveenrohilla99@gmail.com"
] | naveenrohilla99@gmail.com |
ae36d43986994009f3b0dc62ec478b1aad11b3c8 | da83fc52dce0f5600401d789c1430e1d1ef497e9 | /Fade2/Fade2.ino | 9eebd149a28484114d62acf19f3e3c545e701043 | [] | no_license | jcheifetz/Ard | 893b373e6404cc65a4d92efb3cd7be599bfe0271 | 66810150ebd739688497335b575f99aec5d971f3 | refs/heads/master | 2021-01-21T12:06:40.010573 | 2019-05-29T11:07:54 | 2019-05-29T11:07:54 | 12,947,547 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,262 | ino | #define _BV(bit) (1 << (bit))
int sine256[] = {0,0,0,1,1,1,2,2,3,4,5,5,6,7,9,10,11,12,14,15,16,18,20,21,23,25,27,29,31,
33,35,37,39,42,44,46,49,51,54,56,59,62,64,67,70,73,76,78,81,84,87,90,93,96,99,102,105,108,111,115,118,121,124, 127,130,133,136,139,143,146,149,152,155,158,161,164,167,170,173,176,178,181,184,187,19... | [
"jonathan.cheifetz@gmail.com"
] | jonathan.cheifetz@gmail.com |
9d7055e648feedad65fbf508943ab54f04e96688 | 40065afaa516a8975b714842f2074a2fa9bee333 | /Google_Assistant_Home_Automation_Customised.ino | eb11cbaa4d34f84d5dffd7f6cb006b7c70665b13 | [] | no_license | SteveTheJobless/iot | 2b23271e036adbe674da3aed6b73276a5a8e49bd | df76abec223063abf0df990c35cbddc1ab590136 | refs/heads/master | 2023-06-07T06:14:56.028764 | 2021-06-22T07:32:39 | 2021-06-22T07:32:39 | 166,423,527 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,620 | ino | #include <ESP8266WiFi.h>
#include "Adafruit_MQTT.h"
#include "Adafruit_MQTT_Client.h"
#define Relay1 D1
#define Relay2 D2
#define Relay3 D3
#define Relay4 D4
#define A1 D5
#define A2 D6
#define A3 D7
#define A4 D8
#define WLAN_SSID "" // Your ... | [
"noreply@github.com"
] | SteveTheJobless.noreply@github.com |
ad824e24fe94d9704ba16f309b76beda1ea5e26f | 7afa2d3d7c818cbbe310895320ae2a8e9eead004 | /Development/Application/Storehouse/Storehouse/boost/include/boost/type_traits/detail/size_t_trait_undef.hpp | 9c93db8bf1e2e3ba40ba4e2264a75a3043a29302 | [] | no_license | SokolovaCo/Alfa-stock | 71639bce210027e9528ae2d76edf2884b959f431 | 4b3401235de62db8a81b79b65a297f78333c7dc7 | refs/heads/master | 2016-09-05T22:19:49.197238 | 2012-12-21T23:31:41 | 2012-12-21T23:31:41 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 494 | hpp |
// NO INCLUDE GUARDS, THE HEADER IS INTENDED FOR MULTIPLE INCLUSION
// Copyright Aleksey Gurtovoy 2002-2004
//
// 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)
// $Source$
// $Date: 2004-09-02 19:41:37 +0400 ... | [
"milchakv@rambler.ru"
] | milchakv@rambler.ru |
e9e91acb26d5cd6d85671ef1fad4cf8a2e7e3ce6 | 64f92900b4af2bb688f7108fe1483b362247e834 | /Homework_2/controls.cpp | aa9fe51124e066d78c0d294e1444f1cb9b72cb5a | [] | no_license | Homagn/X_557_2015_HS | 6df6f91e48d11e9d702d9fa841e46da570894871 | 83aba1e9659b15caf3ba8cfe7ca1d0a2077c389d | refs/heads/master | 2020-09-24T07:32:29.639088 | 2016-12-17T01:12:38 | 2016-12-17T01:12:38 | 67,567,380 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,471 | cpp | // Include GLFW
#include <GLFW/glfw3.h>
// stl
#include <iostream>
// glm
#include <glm/glm.hpp>
#include <glm/gtc/quaternion.hpp>
#include <glm/gtc/type_ptr.hpp>
#include <glm/gtc/matrix_transform.hpp>
#include <glm/gtx/rotate_vector.hpp>
#include <glm/gtc/matrix_inverse.hpp>
// local
#include "controls.h"
#inc... | [
"homagnisaha@gmail.com"
] | homagnisaha@gmail.com |
b18bbcd40dec48d4654437a05aeb03c5f731be6b | da659826948d5791b789cace7f5d3eced7851701 | /generate_with_function.hpp | 5585851a13509109775bd21496b810fff1ec75d3 | [] | no_license | aaronjosephs/compiletime_integer_lists | b66923a4f5b15a52c6ad16237c19d239f9cf4c52 | 37fe7b6f16cc641b6f045159f402674b23775dee | refs/heads/master | 2020-04-06T04:48:42.902259 | 2013-10-10T05:26:56 | 2013-10-10T05:26:56 | 13,419,513 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 993 | hpp | #include <array>
template <bool B, size_t Count, int Current, int Gen(const int &), int ... Nums>
struct generator_with_function;
template <size_t Count, int Current, int Gen(const int &), int ... Results>
struct generator_with_function<false,Count,Current, Gen, Results...>
{
constexpr static std::array<int,C... | [
"ajoseph4@binghamton.edu"
] | ajoseph4@binghamton.edu |
cab5961657da06cf31652cb9962721931a3c20d6 | 1b3cd3453331bb704ef2f68f3ed5b6d49a870b38 | /Tree/TreeRecursive.cpp | d138749caef21a54a30dd6746af76bb9c7bdd176 | [] | no_license | abaran803/DSA-by-Narsimha | b6e66718895674c632c1d9d5e5cf703421b3b140 | c462b598fd1039219bd6a86f60906aa5b3aafd54 | refs/heads/master | 2022-12-23T20:09:00.732355 | 2020-09-17T17:34:41 | 2020-09-17T17:34:41 | 296,397,244 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,526 | cpp | #include<iostream>
#include<queue>
using namespace std;
struct Node
{
int data;
Node* left;
Node* right;
};
Node* CreateNewNode(int data)
{
Node* temp = new Node();
temp->data = data;
temp->left = temp->right = NULL;
return temp;
}
void PreOrder(Node* curr)
{
if(curr)
{
cout << curr->data << " ";
PreOrd... | [
"abaran803@gmail.com"
] | abaran803@gmail.com |
c563b52bcecd72b0d17640628e438c0cbd1360e8 | f8400142426f9142eb89adac98002e3f39329480 | /src/qt/sendcoinsdialog.cpp | 1c4ac6eb18e84f450028b38d1412b63a85090980 | [
"MIT"
] | permissive | xeonchain/XEON-Chain | 8b35a1bc69cada836702fd30b27245a749991dba | 735aa1ec8e296e0c8cb38ef2c421b1fcf9c22f95 | refs/heads/master | 2021-05-09T02:10:06.213200 | 2018-01-27T20:49:50 | 2018-01-27T20:49:50 | 119,156,066 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 34,772 | cpp | // Copyright (c) 2011-2016 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "sendcoinsdialog.h"
#include "ui_sendcoinsdialog.h"
#include "addresstablemodel.h"
#include "bitcoinunits.h"
#inclu... | [
"root@yihaa.io"
] | root@yihaa.io |
3f1e8902f9cf4b485e7b909708b6db1ce34da2b3 | 469fddc911ead296cba8b9f7526b6acfef1b3bb4 | /provided.h | 3f411da3ff261524813c731a51285f70cbbd116a | [] | no_license | luisfrias2314/Maps | 4b2036f195549b51032363277ee32f16e25b8bce | 2056642740df300574ab73c734530aeb69fb9265 | refs/heads/main | 2023-02-22T08:45:43.658805 | 2021-01-28T22:34:20 | 2021-01-28T22:34:20 | 333,973,682 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,098 | h | #ifndef PROVIDED_INCLUDED
#define PROVIDED_INCLUDED
// YOU MUST MAKE NO CHANGES TO THIS FILE!
#include <iostream>
#include <sstream>
#include <string>
#include <vector>
#include <list>
enum DeliveryResult
{
DELIVERY_SUCCESS, NO_ROUTE, BAD_COORD
};
struct GeoCoord
{
GeoCoord(std::string lat, std::string lon)
... | [
"noreply@github.com"
] | luisfrias2314.noreply@github.com |
33ca9ffba0d4857af74b06b61e3eab17b418ad59 | 609135630f324baf4c5377e863d54480ccd0532c | /HashTable/HashTable/HashTable.hpp | cee2b1ce9f6d1ce184ab7a573581396f935c3fec | [] | no_license | wobuhuichangge/C-Plus-Plus | e715502609bb1df365a852e6209825983c56236f | 17b3e3e985f20aa2cd87f1611cf5696ef0ba84d3 | refs/heads/master | 2020-05-01T10:41:23.841424 | 2019-09-09T12:01:29 | 2019-09-09T12:01:29 | 177,426,080 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 2,047 | hpp | #pragma once
#include<iostream>
#include<vector>
//EMPTY表示此位置为空,EXIST表示此位置已经有元素,DELETE表示此位置元素已经删除
enum State{EMPTY,EXIST,DELETE};
template<class T>
class HashTable
{
struct Elem
{
T _val;
State _state;
};
public:
HashTable(size_t capacity = 10)
:_ht(capacity)
, _size(0)
{
for (size_t i = 0; i < capac... | [
"937008062@qq.com"
] | 937008062@qq.com |
ab080d09de80e2830b3da1593825b183f2f133cd | f8bca93309ac010d4246485c6c82a0323f18317d | /NetworkReader.cpp | 4fe736e80047ff73e2cb1eb97e30714a67b81860 | [] | no_license | willi-menapace/Domex | 50dc910d8c8f23ca4a47c08d3c2d401882346305 | 7bbef4d1cf0f862724d02d4d62b250d0b8617569 | refs/heads/master | 2020-07-01T09:23:18.722099 | 2019-08-07T21:24:20 | 2019-08-07T21:24:20 | 201,126,068 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 975 | cpp | /* Copyright (C) 2015 Willi Menapace <willi.menapace@gmail.com>, Simone Lorengo - All Rights Reserved
* Unauthorized copying of this file, via any medium is strictly prohibited
* Proprietary and confidential
* Written by Willi Menapace <willi.menapace@gmail.com>
*/
#include "NetworkReader.h"
#include "Glo... | [
"willi.menapace@gmail.com"
] | willi.menapace@gmail.com |
b6ef72e6a7b0f78df87dfcfc9e6b429c8287fd6a | 3b5aba828e7042faca7eb0c734a354f2a2652f8e | /port_operations/src/PortDoubleSplit.h | e940d0690c297bd9a70d1a485993037210e65d5f | [] | no_license | jexner/orocos_controllers | a71d953986c05c13d02744ba51e16f536a119ae8 | 524bcb9bcdea953dcbb771fed7cb2e8d77b7bd31 | refs/heads/hydro-devel | 2020-04-06T04:36:48.874031 | 2014-11-21T17:42:28 | 2014-11-21T17:42:28 | 64,388,814 | 0 | 0 | null | 2016-07-28T11:08:48 | 2016-07-28T11:08:48 | null | UTF-8 | C++ | false | false | 602 | h | // Copyright WUT 2014
#ifndef PortDoubleSplit_H_
#define PortDoubleSplit_H_
#include <rtt/TaskContext.hpp>
#include <rtt/Port.hpp>
#include <string>
#include <vector>
#include <Eigen/Dense>
class PortDoubleSplit : public RTT::TaskContext {
public:
PortDoubleSplit(const std::string& name);
virtual ~PortDoubleSpl... | [
"tomrobotics@gmail.com"
] | tomrobotics@gmail.com |
f6c2226260ccdc490078901c8e52dcce92fcee40 | d508027427b9a11a6bab0722479ee8d7b7eda72b | /3rd/include/3dsmax2010sdk/IRefTargContainer.h | 56ae1cf2a23ed435d794132a8148787c3fb4516b | [] | no_license | gaoyakun/atom3d | 421bc029ee005f501e0adb6daed778662eb73bac | 129adf3ceca175faa8acf715c05e3c8f099399fe | refs/heads/master | 2021-01-10T18:28:50.562540 | 2019-12-06T13:17:00 | 2019-12-06T13:17:00 | 56,327,530 | 5 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,292 | h | /**********************************************************************
*<
FILE: IRefTargContainer.h
DESCRIPTION: Defines IRefTargContainer class
A Reference Maker class that stores a variable list of ReferenceTarget* items.
All actions performed on this class are undoable.
CREATED BY: Larry Minton
HISTOR... | [
"80844871@qq.com"
] | 80844871@qq.com |
2854041c01e09f59235c6b4b9bff6cb8f532bc7a | c8b39acfd4a857dc15ed3375e0d93e75fa3f1f64 | /Engine/Source/Developer/Profiler/Private/Widgets/SHistogram.cpp | 3e8e5c3359855acc3b0d3575947457cf8b95bfef | [
"MIT",
"LicenseRef-scancode-proprietary-license"
] | permissive | windystrife/UnrealEngine_NVIDIAGameWorks | c3c7863083653caf1bc67d3ef104fb4b9f302e2a | b50e6338a7c5b26374d66306ebc7807541ff815e | refs/heads/4.18-GameWorks | 2023-03-11T02:50:08.471040 | 2022-01-13T20:50:29 | 2022-01-13T20:50:29 | 124,100,479 | 262 | 179 | MIT | 2022-12-16T05:36:38 | 2018-03-06T15:44:09 | C++ | UTF-8 | C++ | false | false | 6,105 | cpp | // Copyright 1998-2017 Epic Games, Inc. All Rights Reserved.
#include "Widgets/SHistogram.h"
#include "Fonts/SlateFontInfo.h"
#include "Misc/Paths.h"
#include "Rendering/DrawElements.h"
#include "Widgets/SOverlay.h"
#include "Fonts/FontMeasure.h"
#include "Framework/Application/SlateApplication.h"
#include "EditorStyl... | [
"tungnt.rec@gmail.com"
] | tungnt.rec@gmail.com |
08118cd090495a6d0d97f665754277da9b936477 | f0749232d54f17e3c321b0b90daaeb23b9faec82 | /Online Judge Code/[Other] Online-Judge-Solutions-master_from github/UVA/Contest Volumes/11799 - Horror Dash.cpp | 321c40a48d083274487b45836eaa53442d62fd4e | [] | no_license | tmuttaqueen/MyCodes | c9024a5b901e68e7c7466885eddbfcd31a5c9780 | 80ec40b26649029ad546ce8ce5bfec0b314b1f61 | refs/heads/master | 2020-04-18T22:20:51.845309 | 2019-05-16T18:11:02 | 2019-05-16T18:11:02 | 167,791,029 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 385 | cpp | #include <cstdio>
#include <algorithm>
using namespace std;
int main(){
int T,N,ans;
scanf("%d",&T);
for(int tc = 1;tc <= T;++tc){
scanf("%d",&N);
ans = 0;
for(int i = 0,x;i < N;++i){
scanf("%d",&x);
ans = max(ans,x);
}
... | [
"1505002.tm@ugrad.cse.buet.ac.bd"
] | 1505002.tm@ugrad.cse.buet.ac.bd |
395aa16c33378af54832eec6f730693495657202 | d758b6fc7c60d950b0ad1de56f1a94781d68521a | /RayCastManager.cpp | 7822cf39998fff98bc59d8292715103db6bfced1 | [] | no_license | Redbassist/FYP | 2df15441b4826dce9ac692ee62710bfc695ec61b | 51b0bd7880590401cbb6ac9e4a592da29e908a79 | refs/heads/master | 2021-01-10T16:09:27.941869 | 2016-04-27T19:31:13 | 2016-04-27T19:31:13 | 45,350,441 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,151 | cpp | #include "RayCastManager.h"
#include "Stalker.h"
#include "Player.h"
#include "EnemyPlayer.h"
static bool instanceFlag = false;
static RayCastManager* instance = NULL;
RayCastManager* RayCastManager::GetInstance() {
if (!instanceFlag) {
instance = new RayCastManager();
instanceFlag = true;
}
return instance;
}... | [
"mattgerig@gmail.com"
] | mattgerig@gmail.com |
bc5d09d39e4abadf2fd6d829353a04553d0a8c75 | 30d5368f25c185e9904bd3e5ceb754f40f18be21 | /Stack.cpp | 18ac6c3d3100164067fb2d6b8fef4a4ff733a577 | [] | no_license | Sanilh29/ExpressionTree | 7892a7cd34200433465c041781c09dc63324aa3f | 95859fe27cab03dd73f09aa2f24a275311439501 | refs/heads/master | 2020-05-20T15:04:59.069229 | 2017-03-20T20:20:32 | 2017-03-20T20:20:32 | 84,488,213 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 806 | cpp | //Sanil Hattangadi, 3/141/7
//stack methods and creates methods with algorithms
#include <cstring>
#include "Stack.h"
using namespace std;
Stack::Stack(){//constructor that sets head to null
head = NULL;
}
Stack::~Stack(){//deconstructor
Node* nextNode = head;//sets the nextnode to head
while (head != NULL){//... | [
"456570@SHS-10DCE4369.beaverton.k12.or.us"
] | 456570@SHS-10DCE4369.beaverton.k12.or.us |
d040fd803b3570e81d1e9978442afac3e7714cdf | fe39e4d1bca62d7bff7b6713b8b596d88f8aa354 | /src/plugins/3rdparty/LLVM/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/APSIntType.h | cb4f2ea3c5829ae8b898a2acb1379c120e03eac3 | [] | no_license | panpanSun/opencor | a29a806475f43adb0f64047631d4dc044f05e030 | 71449e1ecaa988ea8b6cfea7875d9f3593a8dc26 | refs/heads/master | 2020-12-24T11:53:33.902565 | 2013-04-20T18:59:29 | 2013-04-20T18:59:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,646 | h | //== APSIntType.h - Simple record of the type of APSInts --------*- C++ -*--==//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... | [
"agarny@hellix.com"
] | agarny@hellix.com |
dd519b646852bb4e02a6c8985ec0c04a3c465c80 | 3a0b544370e8b8e8c52f7b5dd97cec5e18ca3ea0 | /src/NodeRpcProxy/NodeRpcProxy.h | e6b3fbff28e8ce1f03bbe23da047478f5e4279f5 | [] | no_license | cryptonoteclub/adon-core | 278a3c1126aad27d514ac6f7678e844c99f04a92 | 5105fc79a4467880e315f0eef727bf4ce6243b9b | refs/heads/master | 2020-07-14T04:10:06.216628 | 2019-08-26T08:56:10 | 2019-08-26T08:56:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,760 | h | // Copyright (c) 2018-2019 Adon Network developers
// Copyright (c) 2011-2016 The Cryptonote developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#pragma once
#include <atomic>
#include <condition_variable>
... | [
"admin@adon.network"
] | admin@adon.network |
02512d0c2d07ecf502127eff97e20444ed8dda78 | a5499a23297171c2e7b81cd67e57c54eccd6a934 | /src/cinder2DInteractItem.cpp | aee83fe375a2a2974ab6c2fc64a6ea9b089ccf36 | [] | no_license | kourtin/Atelier | bec5f17a7c1b3c4124081f745752f0cd670f55b8 | 2327b5c7e4978b9dbfb6749c3e51ffa9faeab4ef | refs/heads/master | 2016-09-06T16:54:02.857885 | 2010-07-18T20:00:30 | 2010-07-18T20:00:30 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 891 | cpp |
#include <cinder/app/MouseEvent.h>
#include <cinder2DInteractItem.h>
#include <client.h>
namespace Atelier {
Cinder2DInteractItem::Cinder2DInteractItem() {
}
Cinder2DInteractItem::~Cinder2DInteractItem() {
}
bool Cinder2DInteractItem::detect_click_selection(ci::app::MouseEvent mouse_event) {
... | [
"patrick.l.tierney@gmail.com"
] | patrick.l.tierney@gmail.com |
129ef2ec219d99fa5218d4880de1b9f6a8380084 | c62611d69408397e3326464390e28a0e0ee84ad7 | /Editor/samplereditor/samplereditornew.hh | 771d59863f7e20f183b941570d8000e893455108 | [] | no_license | marcellfischbach/CobaltSKY | 80f5c202c5387f9e450510f31c245226e9d9eb65 | a4e8c1d59285276ca2a0b42009ef15518355578e | refs/heads/master | 2021-01-10T20:59:20.920563 | 2019-05-23T14:53:11 | 2019-05-23T14:53:11 | 94,755,831 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 600 | hh |
#pragma once
#include <samplereditor/samplereditorexport.hh>
#include <editor/assetmanager/contextmenu/contextmenuhandler.hh>
#include <editor/assetmanager/actions/new/assetmanagernewassetaction.hh>
class SamplerEditorContextMenuFactory : public asset::contextmenu::Handler::ItemFactory
{
public:
void Create(asset:... | [
"marcell.fischbach@amova.eu"
] | marcell.fischbach@amova.eu |
297ff91d907958be6509cd90f55552699d836578 | a5fc8263e09dea0562cada5fc67e65036c3a5495 | /UNIX_system_programming/PSU_2014_zappy/GraphicEngine/Client/get_next_line.cpp | 2ab79b65d0e2c4cd7586fc526cebfe521e6e9fa6 | [] | no_license | foo-foo/epitech-projects | c120ce4ad453e659b8c9fffd2216963da691d391 | 85e10703064df24390b5af764c8446d25ba7d93d | refs/heads/master | 2021-01-10T11:45:27.643909 | 2015-10-24T15:30:17 | 2015-10-24T15:30:17 | 43,205,202 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,493 | cpp | /*
** get_next_line.c for get_next_line in /home/rosain_f/Exo/getnextline
**
** Made by rosain_f
** Login <rosain_f@epitech.net>
**
** Started on Tue Feb 18 13:24:14 2014 rosain_f
// Last update Fri Jul 3 04:50:44 2015 Younes Iddahamou
*/
#include <unistd.h>
#include <stdio.h>
#include <cstdlib>
#include <cstring>... | [
"anatole.menichetti@epitech.eu"
] | anatole.menichetti@epitech.eu |
b260313a85d7164dbc0ee1b86943cefa5531cd9d | cd7d56b7181e5babca367beec021ad92e10555aa | /lib/misc/test-escape.cc | a2ecba93c73e313447a5d4d3fe438d90dfd64a17 | [] | no_license | Exifers/Libtree | 00b733603ed9b229e4a343c3d7a4b960a45f0b6e | 01141ddd7d2b6896970180099433144b145f036a | refs/heads/master | 2021-09-10T11:12:22.107131 | 2018-03-25T09:24:49 | 2018-03-25T09:24:49 | 125,089,703 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 321 | cc | /**
** Test code for misc/escape.hh.
*/
#include <iostream>
#include <sstream>
#include <misc/contract.hh>
#include <misc/escape.hh>
using misc::escape;
int main()
{
std::ostringstream s;
s << escape("\a\b\f\n\r\t\v\\\"") << escape('\a');
postcondition(s.str() == "\\007\\b\\f\\n\\r\\t\\v\\\\\\\"\\007");
}... | [
"renault@lrde.epita.fr"
] | renault@lrde.epita.fr |
ac604e7a9172ce1c0e6151ddab565fccf7014a3d | 805f9f72b1d7f02943601ca372c78b56afabad08 | /Segment Tree/Maximum_Pair_Sum.cpp | 56cd11c9708f232680bed520debfcd70ee7b8a93 | [] | no_license | aSpanefRost/CodingNInjas | 79644f16ca14fe8eb841c0ac86d705c08006d4c9 | dc5f73023410a4fdf926aa1e9dea39edb891dbf2 | refs/heads/main | 2023-04-21T08:58:36.413161 | 2021-05-03T18:36:50 | 2021-05-03T18:36:50 | 363,832,006 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,679 | cpp | // Maximum Pair Sum
// Send Feedback
// You are given a sequence A[1], A[2], ..., A[N], ( 0 ≤ A[i] ≤ 10^8 , 2 ≤ N ≤ 10^5 ). There are two types of operations and they are defined as follows:
// Update:
// This will be indicated in the input by a 'U' followed by space and then two integers i and x.
// U i x, 1 ≤ i ≤ N, ... | [
"noreply@github.com"
] | aSpanefRost.noreply@github.com |
efc788d8d612757ccfff5e23b84e4d846c40d1c1 | 97e2233be1e152174f2d7138bccdffd4b438ec35 | /src/odil/registry_0040.h | e0682ae1d958e5179036dd7a99d11969809e748e | [
"LicenseRef-scancode-cecill-b-en"
] | permissive | lamyj/odil | a5eea306c478bacd304fa6bd14808c65e5b059cd | 7e50e4eaccb5e7d6d6716705ff6252d342f60685 | refs/heads/master | 2022-11-21T07:09:24.547750 | 2022-04-23T07:21:52 | 2022-04-23T07:21:52 | 33,601,264 | 77 | 25 | NOASSERTION | 2022-09-12T19:55:28 | 2015-04-08T10:55:06 | C++ | UTF-8 | C++ | false | false | 18,539 | h | /*************************************************************************
* odil - Copyright (C) Universite de Strasbourg
* Distributed under the terms of the CeCILL-B license, as published by
* the CEA-CNRS-INRIA. Refer to the LICENSE file or to
* http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
* for... | [
"lamy@unistra.fr"
] | lamy@unistra.fr |
582e40ef8737696d965ab66759aa9cf37c79d138 | bfa2843c979ef57f789ca5e661cc9655dc8e1a93 | /ControllerWrapper.cpp | 025ace542f8e5b7e73675efc714ed7ebcdf684ea | [] | no_license | oofsamy/ControllerStatusXbox | f08ead77fdc337bea4b9ca227e4cd2e03cd5301c | d4839f3cfd267ff35cee25ab5d1894d9ddd64867 | refs/heads/main | 2023-08-20T01:08:07.474705 | 2021-10-10T14:08:50 | 2021-10-10T14:08:50 | 415,592,223 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 698 | cpp | #include <windows.h>
#include <Xinput.h>
#include "pch.h"
#include "ControllerWrapper.h"
Controller::Controller(int Num) {
ControllerNum = Num - 1;
}
XINPUT_STATE Controller::GetState() {
ZeroMemory(&ControllerState, sizeof(XINPUT_STATE));
XInputGetState(ControllerNum, &ControllerState);
return ControllerState... | [
"teamssglol@gmail.com"
] | teamssglol@gmail.com |
9c1af6e3ba50f65e7a23f615f8e663a3fe091605 | 9f520bcbde8a70e14d5870fd9a88c0989a8fcd61 | /pitzDaily/597/pa | 6c57853edee1096a3cc9a030256deb77d011c60b | [] | no_license | asAmrita/adjoinShapOptimization | 6d47c89fb14d090941da706bd7c39004f515cfea | 079cbec87529be37f81cca3ea8b28c50b9ceb8c5 | refs/heads/master | 2020-08-06T21:32:45.429939 | 2019-10-06T09:58:20 | 2019-10-06T09:58:20 | 213,144,901 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 104,873 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v1806 |
... | [
"as998@snu.edu.in"
] | as998@snu.edu.in | |
22241b296f01837376b3594d758a79dcc094c746 | 52507f7928ba44b7266eddf0f1a9bf6fae7322a4 | /SDK/BP_Greatsword_GatekeeperBlade_parameters.h | c8c93ad4582e81bddb9fa88647c30d7919bdcce1 | [] | no_license | LuaFan2/mordhau-sdk | 7268c9c65745b7af511429cfd3bf16aa109bc20c | ab10ad70bc80512e51a0319c2f9b5effddd47249 | refs/heads/master | 2022-11-30T08:14:30.825803 | 2020-08-13T16:31:27 | 2020-08-13T16:31:27 | 287,329,560 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,803 | h | #pragma once
#include "../SDK.h"
// Name: Mordhau, Version: 1.0.0
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
namespace SDK
{
//---------------------------------------------------------------------------
// Parameters
//---------------------------------------------------------------------------
// Function BP_... | [
"51294434+LuaFan2@users.noreply.github.com"
] | 51294434+LuaFan2@users.noreply.github.com |
e7870a701f8c9806100f9b97a78737a968d4031b | 44289ecb892b6f3df043bab40142cf8530ac2ba4 | /Sources/External/node/elastos/external/chromium_org/third_party/WebKit/Source/modules/modules_gyp/bindings/modules/v8/V8FetchEvent.h | fdbf9dff60e6012c5657a4b098d055198782bfaa | [
"Apache-2.0"
] | permissive | warrenween/Elastos | a6ef68d8fb699fd67234f376b171c1b57235ed02 | 5618eede26d464bdf739f9244344e3e87118d7fe | refs/heads/master | 2021-01-01T04:07:12.833674 | 2017-06-17T15:34:33 | 2017-06-17T15:34:33 | 97,120,576 | 2 | 1 | null | 2017-07-13T12:33:20 | 2017-07-13T12:33:20 | null | UTF-8 | C++ | false | false | 5,109 | h | // 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.
// This file has been auto-generated by code_generator_v8.py. DO NOT MODIFY!
#ifndef V8FetchEvent_h
#define V8FetchEvent_h
#include "bindings/core/v8/V8... | [
"gdsys@126.com"
] | gdsys@126.com |
2e3ee72128ff795a1013dc74f33bc6d2c1a790f8 | df726d6ea69ee6cee0a0c5f970524ea9c93e3c93 | /sketch_jan23a/sketch_jan23a.ino | 6a8e642ca03c14bf5e427052a388d793c32fb15d | [] | no_license | wakanafukuda/until_2016 | 88510dc07d22d63b0d30f83e5388c4fbe7e523ff | 853547adad2aca01e73476c0e8f570ef67a0ac7d | refs/heads/master | 2021-01-23T21:57:34.486508 | 2017-02-25T07:33:28 | 2017-02-25T07:33:28 | 83,055,149 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 245 | ino |
const int L1 = 5;
const int L2 = 6;
const int L3 = 7;
const int L4 = 8;
void setup(){
/*pinMode(L1,OUTPUT);
pinMode(L2,OUTPUT);
pinMode(L3,OUTPUT);
pinMode(L4,OUTPUT);*/
Serial.begin(9600);
}
void loop(){
Serial.println("123");
}
| [
"Wakana.Fukuda@mg4.seikyou.ne.jp"
] | Wakana.Fukuda@mg4.seikyou.ne.jp |
3e11481e179e32b848f4568376e457998981e7fc | 2d2271a6aab9cfedaf1bac0941630942fb86f1b9 | /Util/alcommon/include/qitype/metaobject.hpp | 591515b57bab0bf9dd2fc732a441e985833dac35 | [
"BSD-2-Clause"
] | permissive | TJArk-Robotics/coderelease_2017 | c13e4d6af20b8afe7da3a3a8e8dcda46ca053393 | 10d743ea83fc24c0f694415746156fc7bc5c0ab2 | refs/heads/master | 2021-05-05T00:38:14.840804 | 2018-02-13T04:38:05 | 2018-02-13T04:38:05 | 119,549,285 | 17 | 11 | null | null | null | null | UTF-8 | C++ | false | false | 6,297 | hpp | #pragma once
/*
** Copyright (C) 2013 Aldebaran Robotics
** See COPYING for the license
*/
#ifndef _QITYPE_METAOBJECT_HPP_
#define _QITYPE_METAOBJECT_HPP_
#include <qitype/metamethod.hpp>
#include <qitype/metasignal.hpp>
#include <qitype/metaproperty.hpp>
#ifdef _MSC_VER
# pragma warning( push )
# pragma warning... | [
"1542952921@qq.com"
] | 1542952921@qq.com |
0090149a3550aea2f180284d3940b316be67a285 | ca56965a4b410ad1e66da520b3a9d859a402fb09 | /gazebo/gazebo/rendering/ViewController.hh | 7b8998a73bb4a373dc74e7cccd818a0b52c839f7 | [
"Apache-2.0"
] | permissive | UWARG/simSPIKE | 46866b0a33b364e91fc4fda3662a03ae4652e4e5 | 69a5da0f409816e318a16da4e1a2b7b3efab6364 | refs/heads/master | 2021-05-04T10:32:15.667935 | 2016-11-06T04:17:38 | 2016-11-06T04:17:38 | 48,701,706 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,814 | hh | /*
* Copyright (C) 2012-2014 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... | [
"mehatfie@gmail.com"
] | mehatfie@gmail.com |
a9f90299b7ba085a09b574eec2a55aa929983fc6 | 81369aeb55c24f0341bbf2095eb4ba0f79264a39 | /SDL_Chess/SDL_Chess/Board.h | b90b13723ac25462c501c58bbcf7c9f63895b158 | [] | no_license | Chefkoch85/SDL_Test | 4bfd692deddd02134f3e4b3f45ed39ec1a6792c1 | f4f9a72ce0cb1e421735d5be7881056f983c4c8b | refs/heads/master | 2021-01-10T18:13:37.738371 | 2016-01-24T10:48:51 | 2016-01-24T10:48:51 | 50,282,977 | 0 | 0 | null | null | null | null | ISO-8859-3 | C++ | false | false | 2,899 | h | #pragma once
#include <Entity.h>
#include <CollisionRect.h>
#include <vector>
#include "Figure.h"
#include <iostream>
namespace CKT
{
namespace GAME
{
class CBoard : public CEntity
{
public:
struct SFieldData
{
eFigures FigureType;
eWhere Player;
int curFigureIndex;
CFigure* curFigure;
... | [
"schoene-m@freenet.de"
] | schoene-m@freenet.de |
4ef3e7a3eb6230d98d8854a04c021add7bfc3d82 | 2277375bd4a554d23da334dddd091a36138f5cae | /ThirdParty/Havok/Source/Geometry/Collide/DataStructures/Planar/Geometry/hkcdPlanarGeometry.inl | 1a762d7076790a91602346f5b1de4805efa5c537 | [] | no_license | kevinmore/Project-Nebula | 9a0553ccf8bdc1b4bb5e2588fc94516d9e3532bc | f6d284d4879ae1ea1bd30c5775ef8733cfafa71d | refs/heads/master | 2022-10-22T03:55:42.596618 | 2020-06-19T09:07:07 | 2020-06-19T09:07:07 | 25,372,691 | 6 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 2,405 | inl | /*
*
* Confidential Information of Telekinesys Research Limited (t/a Havok). Not for disclosure or distribution without Havok's
* prior written consent. This software contains code, techniques and know-how which is confidential and proprietary to Havok.
* Product and Trade Secret source code contains trade secrets ... | [
"dingfengyu@gmail.com"
] | dingfengyu@gmail.com |
0c1f4769967ad37146a8ffcf6b9f379dc199420c | 7c58563ebef7991fc8ffcd7672bc47e97e22899e | /ublox_dgnss_node/include/ublox_dgnss_node/ubx/nav/ubx_nav_pvt.hpp | d2cf0a8d251d8b611164ac79820c063b51155dd9 | [
"Apache-2.0"
] | permissive | rossvonfange/ublox_dgnss | 195aad966075e6eb96c23b307274a15bbe75322a | bb2b4829b8180fae05d6f8f9a0c6f04f072e356d | refs/heads/main | 2023-06-23T18:18:50.926335 | 2021-07-26T05:45:15 | 2021-07-26T05:45:15 | 446,557,131 | 1 | 0 | Apache-2.0 | 2022-01-10T19:33:34 | 2022-01-10T19:33:33 | null | UTF-8 | C++ | false | false | 9,206 | hpp | // Copyright 2021 Australian Robotics Supplies & Technology
//
// 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 a... | [
"nick.hortovanyi@gmail.com"
] | nick.hortovanyi@gmail.com |
23b943c667d70b9f513a7dc6ee6cec05f386a81a | 6499b38172ef0f86be100d024d7ed4e74f6aa2bc | /Engine/Entity.h | 70980b67b1723064fa7b31563fd6e36f1467219d | [] | no_license | ralphsmith80/Game_Engine | a76ab08b0a3834571658915f7c52c71fbce3a01a | 6ad9544638c247de0ead285a5e36b244949cf036 | refs/heads/master | 2020-05-20T09:27:08.919374 | 2012-11-03T20:13:06 | 2012-11-03T20:13:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,451 | h | /*
* Entity.h
* Advanced2D
*
* Created by Ralph Smith on 6/20/10.
* Copyright 2010 Ralph Smith. All rights reserved.
*
*/
#include "Advanced2D.h"
#ifndef __ENTITY_H__
#define __ENTITY_H__
namespace Advanced2D {
enum RenderType {
RENDER2D = 0,
RENDER3D = 1
};
class Entity {
private:
int ID;
... | [
"ralphsmith80@gmail.com"
] | ralphsmith80@gmail.com |
ba54a9251ac0ea4730c95c18e27c8e7f5398c9d1 | 4f37081ed62e44afa0b2465388a8adf9b5490b13 | /content/renderer/input/render_widget_input_handler.cc | ab2968bbb446182e8383959bbc59fb6ab59057c6 | [
"BSD-3-Clause"
] | permissive | zowhair/chromium | 05b9eed58a680941c3595d52c3c77b620ef2c3ac | d84d5ef83e401ec210fcb14a92803bf339e1ccce | refs/heads/master | 2023-03-04T23:15:10.914156 | 2018-03-15T11:27:44 | 2018-03-15T11:27:44 | 125,359,706 | 1 | 0 | null | 2018-03-15T11:50:44 | 2018-03-15T11:50:43 | null | UTF-8 | C++ | false | false | 21,231 | cc | // Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/renderer/input/render_widget_input_handler.h"
#include <stddef.h>
#include <stdint.h>
#include <utility>
#include "base/auto_reset.h"
... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
7395be9a928b2a7be602cfc26d8a8e762feebff3 | b2c2de30aec8f6cd84162f9fdf3ab23614b6d963 | /opencv/sources/modules/ocl/test/test_arithm.cpp | 3ef1de93d32472ad089e4d7daf325817d751e78a | [
"BSD-3-Clause"
] | permissive | ASeoighe/5thYearProject | aeaecde5eb289bcc09f570cb8815fcda2b2367a6 | 772aff2b30f04261691171a1039c417c386785c4 | refs/heads/master | 2021-09-14T11:41:11.701841 | 2018-04-24T22:30:41 | 2018-04-24T22:30:41 | 112,224,159 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 54,186 | cpp | ///////////////////////////////////////////////////////////////////////////////////////
//
// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
//
// By downloading, copying, installing or using the software you agree to this license.
// If you do not agree to this license, do not download, install,
... | [
"aaronjoyce2@gmail.com"
] | aaronjoyce2@gmail.com |
888f0d8f02fcecf2237a624200be9adf3bb8b42c | 9daa4fd83138e900501a2b6d517153e770139526 | /cpp_module04/ex02/Cat.hpp | 859ad82abcb5283d3dcc4c3bd4ecc6fc551474d8 | [] | no_license | Mgeorg1/42_cpp_module | 2a73268b663bc1e321165014c05095f62c634433 | 4bd34a6c77ebc15bccd951117447f277f1729d07 | refs/heads/master | 2023-07-01T21:49:10.583803 | 2021-08-09T18:50:37 | 2021-08-09T18:50:37 | 374,203,756 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 424 | hpp | #ifndef CAT_HPP
# define CAT_HPP
# include "Animal.hpp"
# include "Brain.hpp"
#include <sstream>
class Cat : public Animal
{
private:
Brain *brain;
public:
Cat();
Cat(std::string const &name);
Cat(Cat const ©);
Cat &operator=(Cat const ©);
virtual void makeSound() const;
virtual ~Cat();
std::string get... | [
"georgy.mezin@yandex.ru"
] | georgy.mezin@yandex.ru |
56e088528e4a69143baaf09acb123ef96378ed22 | d645bef8bf1baee0850619b303d93a0dd80a79fa | /set_time.cpp | ba71b497b018b185b043527e64bfd177774a3533 | [
"MIT"
] | permissive | rasa/savetime | 4603e27fcf9b06802a6f67443950a8d97dfc28d9 | e25b7114f1c65a32f7d3b505b378ebea462bf9a7 | refs/heads/master | 2021-01-19T19:54:25.651692 | 2015-03-26T17:38:25 | 2015-03-26T17:38:25 | 30,985,648 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,311 | cpp | // Copyright (c) 2005-2016 Ross Smith II. See Mit LICENSE in /LICENSE
#ifdef _MSC_VER
#pragma warning(disable:4996)
#endif
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN 1
#endif
#include "config.h"
#include <tchar.h>
#include <winsock2.h> /* include *before* windows */
#include <windows.h... | [
"ross@smithii.com"
] | ross@smithii.com |
4413b5793fb0fcefb5dfd11c2ee91f5e9bf42d75 | 9b26e6afd80f877f5e47b4725a6ff379bbf73a7e | /include/Box-Pistons-Orthogonal/AndersenBarostat.h | a76f7511bc6fe4973a460ead1f42a346b1c75546 | [
"MIT"
] | permissive | nhz2/Box-Pistons | b6b793c55166dda1fc15da973c58d6b44db00475 | 82cbec3544353aae9602be7712e2495252809c47 | refs/heads/master | 2020-09-22T04:56:31.730855 | 2020-01-15T20:12:39 | 2020-01-15T20:12:39 | 225,056,813 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,807 | h | /** \file
* \author Nathan Zimmerberg (nhz2@cornell.edu)
* \date 13 Jan 2020
* \brief Class to hold constant pressure AndersenBarostat parameters and helper functions
*/
#pragma once
#include "BoxPistonBase.h"
namespace boxpiston
{
/**Andersen Barostat.
parameters:
pressure(double): reference pressure
k(double... | [
"nhz2@cornell.edu"
] | nhz2@cornell.edu |
9e89b20bd041b822b73f74d32bf615f2a5714f89 | ef91f0c61520391ad25692c6adebff4aebe8dd09 | /Kernel/Sources/XLinuxIntlMgr.cpp | f637a1ce700bd06b271bcf4954810f2ce44f9a51 | [] | no_license | StephaneH/core-XToolbox | 77462b758dfae86f86aafb8a9c9e5b34215259c7 | c166b76bbd1dfba27c7863f203b158212028222e | refs/heads/master | 2021-01-19T06:52:37.703070 | 2014-11-17T13:35:24 | 2014-11-17T13:35:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 16,254 | cpp | /*
* This file is part of Wakanda software, licensed by 4D under
* (i) the GNU General Public License version 3 (GNU GPL v3), or
* (ii) the Affero General Public License version 3 (AGPL v3) or
* (iii) a commercial license.
* This file remains the exclusive property of 4D and/or its licensors
* and is protected by na... | [
"stephane.hamel@4d.com"
] | stephane.hamel@4d.com |
5d67d2819d0decac98b564ae232db1ddb932fde6 | 403b38ba0f055c284dec18266f674fba9854d8d6 | /Source/XD_CharacterActionDispatcher_Editor/Public/GraphEditor/ActionDispatcherEditor.h | d695d5459071ee0bd2f4d80a71eb54736cdc5aa9 | [] | no_license | Hengle/XD_CharacterActionDispatcher | 03d7abcdfc34d8bc1a98fcd65301ef73c16cab43 | 8eb6f48034de93faaf83ae33f593bb8270af17b3 | refs/heads/master | 2023-03-24T07:02:16.521841 | 2020-04-13T13:57:44 | 2020-04-13T13:57:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 480 | h | // Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include <BlueprintEditor.h>
class UActionDispatcherBlueprint;
/**
*
*/
class XD_CHARACTERACTIONDISPATCHER_EDITOR_API FActionDispatcherEditor : public FBlueprintEditor
{
public:
void InitActionDi... | [
"450614754@qq.com"
] | 450614754@qq.com |
b953b79cb735605bc61ae3f8076b409aa5f58e81 | c45d833e27e459e0bb42991ac3d9fc52a4773973 | /oop/poli multi/poli.cpp | c8405d3dc86a5811df22f2ef62169a16474f3547 | [] | no_license | ahmed-mera/c-and-c-plus-plus | 69ab838704586a59a1fa1071e5ec6827cd131713 | 7b2051d3cce50aec3cb9ac20bfdc839d63ce1322 | refs/heads/master | 2023-04-15T21:52:35.645510 | 2021-05-02T13:37:28 | 2021-05-02T13:37:28 | 320,067,388 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 803 | cpp | #include <iostream>
using namespace std;
class padre {
public:
/* padre (){
cout << " sono il custruttore del padre" << endl ;
}*/
void virtual messp (){
cout << " sono il padre\n";
}
};
class madre {
public:
/* padre (){
cout << " sono... | [
"ahmedmera81136@gmail.com"
] | ahmedmera81136@gmail.com |
d6f5559ec9b9ee2dd022f5842c6cc049481573c7 | c91ea605568c00f85956318a149bdbc226e75446 | /第四章/均值平移算法查找目标/均值平移算法查找目标/contentFinder.h | ac14b1062fe1044d8215aae92785444cd9f26a1c | [] | no_license | liuyukuan6/opencv | 905d22a9c920a433ca963824844e612d7a08d080 | bb4bd12417b474dcd40f9c2e53abadddb8f2a620 | refs/heads/master | 2020-09-16T10:11:59.183955 | 2019-12-15T14:46:51 | 2019-12-15T14:46:51 | 223,738,513 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 3,018 | h | #pragma once
#include <opencv2/highgui.hpp>
#include <opencv2/core.hpp>
#include <opencv2/imgproc.hpp>
#include "histogram.h"
class ContentFinder
{
private:
///<直方图参数,最多可以处理三个通道>
float hranges[2];//直方图每个维度(通道)上像素的范围(一般三个维度用同一个像素)
const float* ranges[3];//指针数组,存储每个维度(通道)上指向直方图像素的值范围的指针
int channels[... | [
"noreply@github.com"
] | liuyukuan6.noreply@github.com |
3f2a45e346eb94fedd7d6b98d710440797df80cf | 63d33f4fb31810cfe25a224c3abc3d510dadb2aa | /Array/targetPair.cpp | b515b83cace7ea10b2b7d64d71b8a302cd2b4efe | [] | no_license | abhisekmaiti19/Code-Diksha-DSA | 9a3d4e0da22a13029f8e684f4ae6cda857d5e625 | 6348e968e16c07128ab2466965dfccc225317d04 | refs/heads/main | 2023-05-06T07:25:30.855045 | 2021-04-04T15:24:43 | 2021-04-04T15:24:43 | 343,733,998 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 532 | cpp | #include<bits/stdc++.h>
using namespace std;
int main()
{
#ifndef ONLINE_JUDGE
freopen("input.txt","r",stdin);
freopen("output.txt","w",stdout);
#endif
int n;
cin>>n;
int arr[n];
int b;
cin>>b;
int count = 0;
for(int i=0;i<n;i++)
{
cin>>arr[i];
}
int left,right;
left = 0;
right =n-1;
while(left<ri... | [
"63227192+abhisekmaiti19@users.noreply.github.com"
] | 63227192+abhisekmaiti19@users.noreply.github.com |
f0dfae69b83547f0fe6effc39492e89193a0445c | 9879e00f3127dc3a1dfb4f5e4f145c8bf9325922 | /src/Object.cpp | c4d7fa94d582dd1a836762501248916f274b99a8 | [] | no_license | zabookey/RayTracer | bb27685bc846d4550e15dacb3b962668696a347e | 9f62bfa91a80ef574227032fd8bd95680d2934a3 | refs/heads/master | 2021-01-11T01:15:08.079456 | 2016-11-01T18:01:45 | 2016-11-01T18:01:45 | 70,735,905 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 618 | cpp | #include "Object.hpp"
#include<iostream>
using namespace std;
void Object::PrintObject(){
if(textured){
cout << "Object is textured" << endl;
cout << "Texture File: " << texture->filename << endl;
} else {
cout << "Color: (" << color.red << " " << color.green << " " << color.blue << "... | [
"booke038@syphax.cs.umn.edu"
] | booke038@syphax.cs.umn.edu |
276e64386ecb9b7d284768968242753e00aa7511 | 33b59f7ddb64b9464e68d281a8d2dd6dc1f63d47 | /source/octoon-graphics/OpenGL 30/gl30_framebuffer.cpp | d691327a2accc82cbabbd6d729e1e87b1a227a1e | [
"MIT"
] | permissive | superowner/octoon | 24913edde75963a1414728c07f679fe024552777 | 2957132f9b00927a7d177ae21db20c5c7233a56f | refs/heads/master | 2020-03-22T15:56:25.741567 | 2018-06-13T02:26:27 | 2018-06-13T02:26:27 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,298 | cpp | #include "gl30_framebuffer.h"
#include "gl30_texture.h"
#include "gl30_device.h"
namespace octoon
{
namespace graphics
{
OctoonImplementSubClass(GL30Framebuffer, GraphicsFramebuffer, "GL30Framebuffer")
OctoonImplementSubClass(GL30FramebufferLayout, GraphicsFramebufferLayout, "GL30FramebufferLayout")
GL30Fram... | [
"2221870259@qq.com"
] | 2221870259@qq.com |
3f62d96d99f933db88c0cfb3fd3329c29a71941f | b47582561d046df3710f41ec848a4e09b1ffedd1 | /20180731/nestClass.cc | b55e65a545de9421589f90454899ff43274d80e3 | [] | no_license | DLiuhui/CPP_EXERCISING | b2c436fc62c854cbf41aa082572b834b36216ea8 | 966e324a2ba1e02d7fa448032a3c9fc478156b98 | refs/heads/master | 2020-03-24T01:02:58.635573 | 2018-09-07T10:57:25 | 2018-09-07T10:57:25 | 142,320,283 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,357 | cc | ///
/// @file nestClass.cc
/// @author LiuhuiDing@gmail.com
/// @date 2018-07-31 18:11:32
///
#include "nestClass.h"
#include <iostream>
using std::cin;
using std::cout;
using std::endl;
//使用嵌套类的原因:
////1. 不希望嵌套类被直接访问, 实现信息的隐藏
////2. 嵌套类只为外部类服务
class Line::LineImpl //外部类
{
class Point
{
public:
Point(in... | [
"DDRHboluo@163.com"
] | DDRHboluo@163.com |
d1f3f5f515fb6cd3250e0e0caa5ee0ef8b0d2bb6 | 851ae48587149b26bc606afd440643330478dee4 | /example/atlas/export/f_aCont_RightTS3DMultiWalking.hh | e4575becc5cc0954156dee84975585250b7bc81d | [
"BSD-3-Clause"
] | permissive | chen4393/EE5355-Project | dc1dfa7e9f0178a8e993ab5b4e02544ec1041288 | bbc0f99239b5e129f08809a71eb2465a7a53f2e0 | refs/heads/master | 2021-01-19T23:47:50.506727 | 2017-04-10T19:23:05 | 2017-04-10T19:23:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 936 | hh | /*
* Automatically Generated from Mathematica.
* Wed 29 Mar 2017 17:57:38 GMT-04:00
*/
#ifndef F_ACONT_RIGHTTS3DMULTIWALKING_HH
#define F_ACONT_RIGHTTS3DMULTIWALKING_HH
#ifdef MATLAB_MEX_FILE
// No need for external definitions
#else // MATLAB_MEX_FILE
#include "math2mat.hpp"
#include "mdefs.hpp"
namespace Kine... | [
"ayonga27@gmail.com"
] | ayonga27@gmail.com |
ef482000f393a1e423c103883f86009474504172 | 16c264adee7ffb6bf87ed69e0a0a97b9fb8ca80c | /DataMgr/ForeignStorage/ForeignStorageCache.cpp | 43d41282fe2965dffd61cde95bc1a0b5c57f1486 | [
"Apache-2.0",
"LicenseRef-scancode-generic-cla"
] | permissive | fytzzh/omniscidb | 6d242ae366a920181b93a96384b864f35384a385 | 207bffd0b4e9f61f1d5bc512b8bdf1b26f533b0e | refs/heads/master | 2023-09-05T02:13:06.401220 | 2021-11-20T03:35:39 | 2021-11-22T21:54:50 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,575 | cpp | /*
* Copyright 2020 OmniSci, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed t... | [
"dev@aas.io"
] | dev@aas.io |
2e2af7ae9b9bed29e2aa2c6e77728ddc1e4c5e92 | ea93cf7b8354004fc8c27f69c687e039db76216e | /optparse.t.cpp | f84faf83cc24fccc428b79e20fe4167aeef9e74a | [] | no_license | mishag/optparse | f665fc044e75fa579860cbb95bca672b2aab6d70 | ebf24309ba598bc3b1ae620c480d9779c8d6a765 | refs/heads/master | 2020-03-17T16:47:08.273429 | 2018-05-17T05:23:40 | 2018-05-17T05:23:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,143 | cpp | #include <optparse.h>
#include <iostream>
int main(int argc, char * argv[])
{
OptionParser parser;
parser.addOption('v', Option::INT);
parser.addOption('l', Option::STRING);
parser.addOption('x', Option::DOUBLE);
parser.addOption('b', Option::BOOL);
int rc = parser.parse(argc, argv);
if ... | [
"misha.gurvich@gmail.com"
] | misha.gurvich@gmail.com |
1dd07286d231dcee34ea47a7fa08da5b21fbb4cf | 84df571e628affad1409bbb823206b78549abbcd | /code/DTUomapcpp/include/datatype.h | d54fa5678be0b36f78a5b5b0dd90ba504c47e0af | [] | no_license | hanhj/test | 62c10ecb3f941d96905acb7fa6d5d7d62022c9d9 | ea887c993dde1cc94691df8b51f2bcca3f14fc89 | refs/heads/master | 2023-01-10T06:43:25.873588 | 2020-11-11T11:58:54 | 2020-11-11T11:58:54 | 28,120,434 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 158,667 | h | /*
* datatype.h
*
* Created on: 2013-8-6
* Author: Administrator
*/
#ifndef DATATYPE_H_
#define DATATYPE_H_
#include "types.h"
#include "user.h"
#include "os.h"
#include "dspdatatype.h"
#define YXTAB 0
#define YCTAB 1
#define PARATAB 2
#define YKTAB 3
#define MAXYXDATA 1000 //
#define ... | [
"hanhj@zx-jy.com"
] | hanhj@zx-jy.com |
6eb806cc6f3161d423954c53de7560250d35661c | 2359c13c2b34b91518cceb23dc340dcfdbe4018c | /Source/FirstProjcet/Item.h | 5073e73159ef6df479177db9c2f7300e3b414de4 | [] | no_license | 3Hoo/G_UnrealEngine_FirstC--BasedGameProject | d87a0252e34aa4254ad7fe70cb347cf59643851c | 905e6224ca30785d359d44683d16a1fe878953e6 | refs/heads/master | 2023-09-03T00:09:12.041009 | 2021-11-18T07:26:27 | 2021-11-18T07:26:27 | 429,303,761 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,852 | h | // Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "FirstProjcet.h"
#include "GameFramework/Actor.h"
#include "Item.generated.h"
UCLASS()
class FIRSTPROJCET_API AItem : public AActor
{
GENERATED_BODY()
public:
// Sets default values for this actor's properties
... | [
"3ho.ent@gmail.com"
] | 3ho.ent@gmail.com |
69220643f93eb185ef205b09ab218eeeb3e6adfe | 1bd64cf611bb614c4d8d046b66e7343e544c590b | /zS3.h | 1f51f8a41f61b32f8f4cb4496fc8280fd46e7378 | [] | no_license | ankitkesarwani/3D-Tetris-Pop | 002a27c52d2cfe5ca3d45b729d76a5b7038388b8 | adf70f7b1dfb9e69c42c9d9f92a821178967ee5f | refs/heads/master | 2021-01-23T17:04:30.214368 | 2020-07-19T15:10:26 | 2020-07-19T15:10:26 | 102,756,637 | 1 | 0 | null | 2020-07-19T15:10:27 | 2017-09-07T15:50:18 | C | UTF-8 | C++ | false | false | 370 | h |
/*
* This is a subclass of Tetronimo. This block looks like a set of axis.
* Part of the 3D Tetris project designed by
* Matt Nulle, Camilla Tassi, and Jonathan Alvarez
*/
#pragma once
#include "Tetronimo.h"
#include <GL/glut.h>
class zS3piece :
public Tetronimo
{
public:
zS3piece(GLfloat init... | [
"noreply@github.com"
] | ankitkesarwani.noreply@github.com |
a726ef4f41590067cc8e3eceafbcfac72947832e | fa55342d92d087578e9261d61d4636c0e96af592 | /GameEngine.h | b94e692a370b33581a947e4f7d2f55fcbafcfe71 | [] | no_license | zjwgames/ConsoleRPG | c0bd21dbb433801f8f08e93fd63c9886bd60aa1e | ff6188943edd910cfc325ec7fa2cdf478ec01b3f | refs/heads/main | 2022-10-19T13:54:46.130472 | 2022-10-16T12:14:07 | 2022-10-16T12:14:07 | 201,951,612 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 681 | h | #ifndef GAMEENGINE_H
#define GAMEENGINE_H
#pragma once
#include <string>
using namespace std;
#include "Player.h"
#include "Level.h"
class GameEngine {
public:
// Parameterised constructor - initialises GameEngine with first level
GameEngine(string levelFileName);
void start(); //starts game - contains main ga... | [
"54030858+zjwgames@users.noreply.github.com"
] | 54030858+zjwgames@users.noreply.github.com |
6be2cb5f4d4fe2c7864e6e04a0465a4b07c2a58d | 79e0f8d64cb928ccc6a026b32dcbb3c8fcefa2de | /atom/browser/javascript_environment.cc | ddc29afcc4530967d92c32d92af25320743eb7a0 | [
"MIT"
] | permissive | mapbox/atom-shell | 939bca5dec3f6cf7460a3b34d0517e78ed0da928 | 2125a0be826170c3a84af1e75572b06402f3add9 | refs/heads/master | 2023-06-05T10:46:29.802386 | 2014-08-04T16:05:26 | 2014-08-04T16:05:26 | 22,614,165 | 1 | 6 | MIT | 2023-04-09T15:03:19 | 2014-08-04T17:58:00 | null | UTF-8 | C++ | false | false | 521 | cc | // Copyright (c) 2013 GitHub, Inc. All rights reserved.
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
#include "atom/browser/javascript_environment.h"
namespace atom {
JavascriptEnvironment::JavascriptEnvironment()
: isolate_(v8::Isolate::GetCurrent()),
... | [
"zcbenz@gmail.com"
] | zcbenz@gmail.com |
df8d212d500d9f7e96e08893795dd94b7334d90d | ba73c2f45aaddd6ef9f9018b5011188d18ec59d2 | /src/RKFitter/RKTrackFit.cpp | 7d6dda004d7b41602ecb414a8dbf585ab68e202b | [] | no_license | AESOPLITE/ANALYSIS_SOFT | e87bcbe6d39183bf39e269aa442f1a94dd9ade9c | f3b03080bc5bc08f0e4f05393f0f68636b7b5d42 | refs/heads/master | 2021-01-23T05:30:28.508740 | 2019-11-13T04:59:45 | 2019-11-13T04:59:45 | 86,309,045 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,677 | cpp | // RKTrackFit.cpp : Defines the entry point for the console application.
//
#define _USE_MATH_DEFINES
#include <cstdio>
#include <chrono>
#include <vector>
#include <cmath>
#include <string>
#include <random>
#include "FieldMap.h"
#include "RungeKutta4.h"
#include "TkrData.h"
#include "RKfitter.h"
#include "Histogra... | [
"rjohnson@ucsc.edu"
] | rjohnson@ucsc.edu |
1ffc3b931f402f456dbea9c8504c6c0d5b12e5ed | 877fff5bb313ccd23d1d01bf23b1e1f2b13bb85a | /app/src/main/cpp/dir521/dir3871/dir3872/dir3873/file4016.cpp | 79aedb29ce61ed735ba4d47c930c4d58dd9f8d21 | [] | no_license | tgeng/HugeProject | 829c3bdfb7cbaf57727c41263212d4a67e3eb93d | 4488d3b765e8827636ce5e878baacdf388710ef2 | refs/heads/master | 2022-08-21T16:58:54.161627 | 2020-05-28T01:54:03 | 2020-05-28T01:54:03 | 267,468,475 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 111 | cpp | #ifndef file4016
#error "macro file4016 must be defined"
#endif
static const char* file4016String = "file4016"; | [
"tgeng@google.com"
] | tgeng@google.com |
acfe7558164203a1e5309716cb129c7f36256d6e | f0567a87712abcda4052051a5c0123a9303b1c34 | /example2/src/main/main.cpp | c9331bb39ac6636c5e5e51fe029b34e169f71f90 | [
"Apache-2.0"
] | permissive | alan-leslie/cpp-dependencies | efac061c834351123dea016638edc50ed5eba251 | 6e845bec267ea15fef3770e92f2c80daad7b27e7 | refs/heads/master | 2020-06-25T12:32:09.143638 | 2019-07-28T16:13:27 | 2019-07-28T16:13:27 | 199,308,068 | 0 | 0 | null | 2019-07-28T15:59:14 | 2019-07-28T15:59:14 | null | UTF-8 | C++ | false | false | 40 | cpp | #include <UI/Display.h>
int main()
{
}
| [
"alanlesli@gmail.com"
] | alanlesli@gmail.com |
01a9160c6a63e050eb7ba844709a46d677bebeb8 | 8051a2ca41b34a42cfd14409b9b7faf58bd90fc8 | /demos/server/RuntimeData.cpp | 092d1e8012f05165e45b2e43757bb1d592f85e21 | [] | no_license | dgquintas/libmpplas | 450ab7667521ab5b9241ddd6986b4693be5440da | d2bd9b752e0131186dcac9b261c9bc28289acb42 | refs/heads/master | 2021-01-15T18:14:17.584013 | 2010-01-12T22:46:22 | 2010-01-12T22:46:22 | 3,952,498 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,032 | cpp |
template<typename T>
RuntimeData<T>::RuntimeData()
{
assert(!pthread_mutex_init(&_mutex, NULL));
}
template<typename T>
T& RuntimeData<T>::get(const clientId_t clientId, const varId_t varId) throw(NoSuchVariable) {
pthread_mutex_lock( &_mutex );
T* instance;
if( this->_contains(clientId, varId... | [
"dgquintas@ea26bf2b-611e-0410-8ca6-ad9ecb09ac58"
] | dgquintas@ea26bf2b-611e-0410-8ca6-ad9ecb09ac58 |
cee9eb81050de6c3bc1f75deed55c1ec20093aae | 9da7b17ab5b601735a8ec1a97853945185b76e7f | /olfaction-demo/src/perception_oru-port-kinetic/ndt_feature_reg/src/ndt_frame.cpp | 2b7be90a07a5221bac20deb471bfe2b0c86255ea | [] | no_license | AsifArain/ros-catkin-ws | 137556337b7ed08d23bbfd48dc52bc376d85fe2d | 75c75075138eeae2ba50076bb3f2007dd6735570 | refs/heads/master | 2023-03-09T10:24:10.824014 | 2018-07-03T16:32:20 | 2018-07-03T16:32:20 | 342,039,263 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,385 | cpp | //#include <sba/sba.h>
#include <Eigen/SVD>
#include <Eigen/LU>
#include <iostream>
#include <limits>
#include "opencv2/core/core.hpp"
#include "opencv2/features2d/features2d.hpp"
#include "opencv2/highgui/highgui.hpp"
#include <ndt_feature_reg/ndt_frame.h>
namespace ndt_feature_reg
{
PoseEstimator::PoseEstimator(int... | [
"asif.arain@oru.se"
] | asif.arain@oru.se |
460129c76b4b0c2a893c61f92711dee8115a3400 | fad4bd1b44c08ed8ae58e58d091d293bb0b83001 | /main.cpp | 01a702fa2a30b4d58110ba9ad2f52cd9a04f06ee | [] | no_license | DmitryKochetkov/mnist_network | 805dd30ff0d56e45470c3e85425f8ac069d20687 | 46b21a0abd8d3a98aa39c8ff9065c92eab5618a9 | refs/heads/master | 2022-11-19T10:06:06.791854 | 2020-07-02T07:30:00 | 2020-07-02T07:30:00 | 254,340,246 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,632 | cpp | #include <iostream>
#include "DataHandler.h"
#include "OutputFunctions.h"
#include "NeuralNetwork.h"
int main() {
mnist::DataHandler dataHandler;
dataHandler.readTrain(
"/home/dimedrol/Desktop/mnist/train-images-idx3-ubyte",
"/home/dimedrol/Desktop/mnist/train-labels.idx1-ubyte");
// ... | [
"dimitri.kochetkov@gmail.com"
] | dimitri.kochetkov@gmail.com |
b7ac5c2c2c4560ed77a20d5087dc57f2fc792eb0 | e1de1cc63a9325519ac1e070250bead0f22823ea | /textmagic-rest-cpp-v2/model/UploadMessageAttachmentResponse.h | 5652a8a24b4fb21309d4a5969989f5f993fc3f67 | [
"MIT"
] | permissive | WeilerWebServices/textmagic | 03abd875726a0d548f789aa06f6d1b392c1f4a2b | f7ad8cb2989bccb7afba9e30915f8575dd1b0b81 | refs/heads/master | 2023-01-28T03:55:52.739564 | 2020-12-14T04:17:59 | 2020-12-14T04:17:59 | 321,150,541 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,843 | h | /**
* TextMagic API
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* OpenAPI spec version: 2
*
*
* NOTE: This class is auto generated by the swagger code generator 2.4.8.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class man... | [
"nateweiler84@gmail.com"
] | nateweiler84@gmail.com |
f6ac49b6220ba566fe7252a149f66e7dd4c79c86 | b9cc08d339cb1707c128c6cc8cf2f058b524c2fb | /ChooView/LayoutSetingDlg.h | f60791e9b06ad115682d118b212a4a8895d29e4f | [] | no_license | dddgg9511/ImageViewer | 513ed4c25e23a02cf830ca65156c64f3514ae3fe | 85bb40a5658d51a9de27866d093fcce438bcc2ae | refs/heads/master | 2023-02-28T16:30:39.309833 | 2021-02-09T00:44:14 | 2021-02-09T00:44:14 | 337,251,522 | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 791 | h | #pragma once
#include "afxwin.h"
// LayoutSetingDlg dialog
class LayoutSetingDlg : public CDialogEx
{
DECLARE_DYNAMIC(LayoutSetingDlg)
public:
LayoutSetingDlg(const int& nMaxColumn, const int& nMaxRow, const int& nColumn,
const int& nRow, CWnd* pParent = NULL); // standard constructor
virtual ~LayoutS... | [
"ddgg9511@naver.com"
] | ddgg9511@naver.com |
43b1baf52d65d005730fd8adc4ae75503938e186 | 30e4531588e98674e2a58a3f4cb57c205244cc21 | /SourcesCodesExercicios/C++/UnB/test/B.cpp | 0fcc2bde4d9fe90c75073a4817557498e5c44061 | [] | no_license | danrleypereira/OO | 5b23bb5dabc24a4179277eee3d2a6f0c14aad70e | 3ce9398ccd54c369f7acff17f51b1ad1c3d5cc3c | refs/heads/master | 2022-06-01T04:48:37.476306 | 2022-04-13T22:14:15 | 2022-04-13T22:14:15 | 53,614,713 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 191 | cpp | #pragma once
#include "A.cpp"
#include <iostream>
class B: public A {
public:
void hello() {
std::cout << this->abc << std::endl;
}
void hue() {
std::cout << "bbrbrbrbr\n";
}
};
| [
"danrleywillian@gmail.com"
] | danrleywillian@gmail.com |
a73c481b7d89bf0271ea232eb77aad2302cbddc9 | e1522f45a46820f6ddbfcc699379821e7eb660af | /codeforces.com/Codeforces Ladder 1800-1899 (extra)/0385A.cpp | c87f5a535f230ac2112745f9cfe136dce4d119e9 | [] | no_license | dmkz/competitive-programming | 1b8afa76eefbdfd9d5766d5347e99b1bfc50761b | 8d02a5db78301cf34f5fdffd3fdf399c062961cb | refs/heads/master | 2023-08-21T00:09:21.754596 | 2023-08-13T13:21:48 | 2023-08-13T13:21:48 | 130,999,150 | 21 | 12 | null | 2023-02-16T17:43:53 | 2018-04-25T11:54:48 | C++ | UTF-8 | C++ | false | false | 425 | cpp | /*
Problem: 385A. Bear and Raspberry
Solution: brute force, implementation, O(n)
*/
#include <bits/stdc++.h>
int main() {
int n, c; scanf("%d %d", &n, &c);
int answ(0);
std::vector<int> d(n);
for (auto &it : d) {
scanf("%d", &it);
}
for (int i = 1; i < n; i++) {
if (d[i] ... | [
"dmkozyrev@rambler.ru"
] | dmkozyrev@rambler.ru |
244fa360dcd63413359bcb52f3c2a54e927382e0 | f6f346ba37deb395b87bc12bd96762460780e850 | /dbUtil.h | 63fb393b6da8340bae07612a3631888ad9d41603 | [] | no_license | zshwuhan/HotTopicPrediction | ee8ff3713533c98e324deb89e77edcd3e21dace7 | dde64225380a986755c4ecfa516b8409b835eef5 | refs/heads/master | 2021-01-01T17:34:56.358026 | 2015-06-17T10:56:36 | 2015-06-17T10:56:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,368 | h | #ifndef DBUTIL_H
#define DBUTIL_H
#include <mysql/mysql.h>
#include "global.h"
#include "logUtil.h"
using namespace std;
struct Word
{
string cont;
int wid;
string pos; //表示单词的词性
};
struct Status
{
long sid;
string cont;
long userid;
string datetime;
};
struct TagStatus{
long sid;
... | [
"yinzelong.leon@gmail.com"
] | yinzelong.leon@gmail.com |
b55f4d7e2c5a9e8536f7a713db88ec4630e6fbbe | bb6ebff7a7f6140903d37905c350954ff6599091 | /cc/output/gl_renderer.h | b798d55b27f723829e3f34ec4a494e2ea023bbe9 | [
"BSD-3-Clause"
] | permissive | PDi-Communication-Systems-Inc/lollipop_external_chromium_org | faa6602bd6bfd9b9b6277ce3cd16df0bd26e7f2f | ccadf4e63dd34be157281f53fe213d09a8c66d2c | refs/heads/master | 2022-12-23T18:07:04.568931 | 2016-04-11T16:03:36 | 2016-04-11T16:03:36 | 53,677,925 | 0 | 1 | BSD-3-Clause | 2022-12-09T23:46:46 | 2016-03-11T15:49:07 | C++ | UTF-8 | C++ | false | false | 18,304 | h | // Copyright 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CC_OUTPUT_GL_RENDERER_H_
#define CC_OUTPUT_GL_RENDERER_H_
#include "base/cancelable_callback.h"
#include "cc/base/cc_export.h"
#include "cc/base/... | [
"mrobbeloth@pdiarm.com"
] | mrobbeloth@pdiarm.com |
1a4bffd2c8f1547f5b212d80b01a38d597c9ab9d | 74ca0178cf1bdc367bf41c49accd428cee451d63 | /include/ECS/Detail/Reference.hpp | affe47cf27cebaa4a61ed5d9bdbe92f8784adc50 | [
"MIT"
] | permissive | Ethan13310/ECS | c3465c670493e5cc2ac8dccfb722f63edb9d71b6 | 63aae52624b6468a7db078fdf7c32dd4caecaa70 | refs/heads/master | 2021-06-15T22:09:10.811558 | 2021-04-02T11:06:57 | 2021-04-02T11:06:57 | 139,507,586 | 17 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 1,203 | hpp | // Copyright (c) 2021 Ethan Margaillan <contact@ethan.jp>.
// Licensed under the MIT License - https://raw.githubusercontent.com/Ethan13310/ECS/master/LICENSE
#pragma once
#include <functional>
#include <optional>
namespace ecs::detail
{
template <class T>
class Reference
{
public:
using Type = T;
Reference... | [
"ethan.margaillan@gmail.com"
] | ethan.margaillan@gmail.com |
b93a73b4e598a669e7d4616a0fd797051c49f6b9 | 6f874ccb136d411c8ec7f4faf806a108ffc76837 | /code/Windows-classic-samples/Samples/Win7Samples/netds/nap/sha/dll/ComponentInfo.h | 08055c936082f919fe18bd32f784d4eb6f9a2916 | [
"MIT"
] | permissive | JetAr/ZDoc | c0f97a8ad8fd1f6a40e687b886f6c25bb89b6435 | e81a3adc354ec33345e9a3303f381dcb1b02c19d | refs/heads/master | 2022-07-26T23:06:12.021611 | 2021-07-11T13:45:57 | 2021-07-11T13:45:57 | 33,112,803 | 8 | 8 | null | null | null | null | UTF-8 | C++ | false | false | 2,227 | h | // ComponentInfo.h : Declaration of the CComponentInfo
#pragma once
#include "resource.h" // main symbols
#include "napcommon.h"
EXTERN_C const CLSID CLSID_ComponentInfo;
#ifdef __cplusplus
typedef class ComponentInfo ComponentInfo;
#else
typedef struct ComponentInfo ComponentInfo;
#endif /* __cplusplus */
#... | [
"126.org@gmail.com"
] | 126.org@gmail.com |
70c2bc72dfa28d73d2669c4ada0c2138d608a0cd | 61cd8c253bff2ea1c236980a15cc5ce228469f6c | /rdbModel/Tables/Table.h | 501507e91759fd69dbccc70fa8f8d7428dfbdaa2 | [
"BSD-3-Clause"
] | permissive | fermi-lat/rdbModel | 9be1e4bf89c7caeba74cd2780b050071577458ac | b7d0846a2736ff2fb202f4c0c6c50c4f4467ded9 | refs/heads/master | 2022-02-13T23:49:49.594918 | 2019-08-27T17:30:17 | 2019-08-27T17:30:17 | 103,187,059 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,754 | h | // $Header: /nfs/slac/g/glast/ground/cvs/rdbModel/rdbModel/Tables/Table.h,v 1.18 2006/10/12 22:44:49 jrb Exp $
#ifndef RDBMODEL_TABLE_H
#define RDBMODEL_TABLE_H
#include <vector>
#include <string>
#include <iostream>
#include "rdbModel/Management/Visitor.h"
#include "rdbModel/Tables/Column.h"
namespace rdbModel {
/... | [
""
] | |
a6ad236203ef668754949cb40e463e41994a8528 | d7012e56e93b95ee6ef4c174438c126fbdf267a3 | /Random/old/52.cpp | 96c4a887034c75cc38f282c8fab6488fc4e0d342 | [] | no_license | jestupinanb/Contest | 87b7bee3dbb3a74d72c0afd66c831931f83abff0 | 463dc37d8936bbeb09977d1d17796a88c3a0d189 | refs/heads/master | 2021-07-21T12:23:39.798451 | 2021-07-14T22:23:41 | 2021-07-14T22:23:41 | 235,777,522 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,159 | cpp | #define _CRT_SECURE_NO_WARNINGS
#include <bits/stdc++.h>
int main()
{
//freopen("in.txt", "r", stdin);
int n;
std::cin >> n;
std::vector<int> numOperations(n + 1, INT_MAX);
std::vector<int> betterOption(n + 1);
numOperations[1] = 0;
betterOption[1] = 1;
for (int i = 1; i <= n; i++)
{
for (int j = 0; j < 3; ... | [
"30636279+jestupinanb@users.noreply.github.com"
] | 30636279+jestupinanb@users.noreply.github.com |
7d6875e74d19421196ce5fdb225c3c6854ed36e1 | ad2d392f73f6e26b4f082fb0251b241a7ebf85a8 | /arc/109/b.cpp | 72c60e56bd573a20a4ddb81c95420f26ba626567 | [] | no_license | miyamotononno/atcoder | b293ac3b25397567aa93a179d1af34add492518b | cf29d48c7448464d33a9d7ad69affd771319fe3c | refs/heads/master | 2022-01-09T23:03:07.022772 | 2022-01-08T14:12:13 | 2022-01-08T14:12:13 | 187,175,157 | 0 | 0 | null | 2019-06-12T16:03:24 | 2019-05-17T08:11:58 | Python | UTF-8 | C++ | false | false | 792 | cpp | #include <algorithm>
#include <iostream>
#include <iomanip>
#include <cassert>
#include <cstring>
#include <string>
#include <vector>
#include <random>
#include <cmath>
#include <queue>
#include <cmath>
#include <unordered_map>
#include <set>
#include <map>
#define INCANT cin.tie(0), cout.tie(0), ios::sync_with_stdio(0... | [
"miyamoto-nozomu@g.ecc.u-tokyo.ac.jp"
] | miyamoto-nozomu@g.ecc.u-tokyo.ac.jp |
5d5027528d74e4feece024f955bf80abe430eabe | d4371dc01d02fd5c21ced58683ae4f982a38110b | /code/modules/core/include/serialization/Serializable.h | 2eee37a8c076f1cba47c639deb129374d63bab4a | [
"MIT"
] | permissive | Eregerog/Modulith | a2aeb030444a4c1197fd7b7403b5b8c769f35a3b | ce6c153d28c64f24654ac7a2247bfe4992096090 | refs/heads/main | 2023-01-21T14:21:43.702785 | 2023-01-15T09:22:44 | 2023-01-15T09:22:44 | 318,228,599 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,691 | h | /**
* \brief
* \author Daniel Götz
*/
#pragma once
#include "CoreModule.h"
#include "SerializedObject.h"
namespace modulith{
/**
* Classes inheriting from dynamic serializable should provide functions for a specific type
* to trivially construct, serialize and deserialize
*/
class CORE_API ... | [
"danielgoetz3@gmx.de"
] | danielgoetz3@gmx.de |
6a5cdd355ab0909e11bbdb4d4fabaf2d239b7943 | d2d6aae454fd2042c39127e65fce4362aba67d97 | /build/Android/Release/EventApp/app/src/main/include/Fuse.Triggers.Actions.PlayTo.h | 015e69e5db1df4e54ec2d168b98dcb61450da096 | [] | no_license | Medbeji/Eventy | de88386ff9826b411b243d7719b22ff5493f18f5 | 521261bca5b00ba879e14a2992e6980b225c50d4 | refs/heads/master | 2021-01-23T00:34:16.273411 | 2017-09-24T21:16:34 | 2017-09-24T21:16:34 | 92,812,809 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 925 | h | // This file was generated based on '../../AppData/Local/Fusetools/Packages/Fuse.Triggers/0.46.1/actions/$.uno'.
// WARNING: Changes might be lost if you edit this file directly.
#pragma once
#include <Fuse.Triggers.Actions.PlaybackAction.h>
namespace g{namespace Fuse{namespace Triggers{namespace Actions{struct PlayTo... | [
"medbeji@MacBook-Pro-de-MedBeji.local"
] | medbeji@MacBook-Pro-de-MedBeji.local |
26bf7581634f53b6376f988850a238208a260395 | 157c466d9577b48400bd00bf4f3c4d7a48f71e20 | /Source/ProjectR/Lobby/OutdoorLobbyStateActor.cpp | 5615ead59f2f100d3b41fe5673fbe377afff59e8 | [] | no_license | SeungyulOh/OverlordSource | 55015d357297393c7315c798f6813a9daba28b15 | 2e2339183bf847663d8f1722ed0f932fed6c7516 | refs/heads/master | 2020-04-19T16:00:25.346619 | 2019-01-30T06:41:12 | 2019-01-30T06:41:12 | 168,291,223 | 8 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 4,790 | cpp | #include "ProjectR.h"
#include "OutdoorLobbyStateActor.h"
#include "Global/ColosseumManager.h"
#include "UtilFunctionIntegrated.h"
void AOutdoorLobbyStateActor::EnterSublevel()
{
Super::EnterSublevel();
UMapFunctionLibrary::LoadSubLevel(FName("Lobby_Out"), FName("LoadLobbyOutLevelCompleted") , this);
}
void AOut... | [
"happycap88@gmail.com"
] | happycap88@gmail.com |
5e6ffb73ea4ca29eb7dc1bafe53cfbec4c4a9234 | e5d0894c12ef32cbc2b1daba46095f7736672d4c | /OBJCXX/include/OBJCXX/Foundation/Classes/NSOutputStream.hpp | c400ed3247a50fac2d27a3b26d916ea7501e73a7 | [
"MIT"
] | permissive | DigiDNA/OBJCXX | 55bb10695a0d34a7bc037bae80482439d20599ba | c06938532a6729276b5b736996ff2a67e142ead1 | refs/heads/main | 2021-11-30T05:23:57.834090 | 2021-11-10T13:02:35 | 2021-11-10T13:02:35 | 51,866,499 | 1 | 1 | null | 2016-02-16T20:19:45 | 2016-02-16T20:19:45 | null | UTF-8 | C++ | false | false | 1,885 | hpp | /*******************************************************************************
* The MIT License (MIT)
*
* Copyright (c) 2015 Jean-David Gadina - www.xs-labs.com / www.digidna.net
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation f... | [
"macmade@xs-labs.com"
] | macmade@xs-labs.com |
7994b4c96f8d3afebf956e8a754c6b15baf322ca | 5b84ddffe58b82dd3282c4f3825f3a5601330993 | /enma_pe/pe_loadconfig.h | 97b810563d1bc5b78ed0dfbd93ed946bd074c732 | [
"BSD-3-Clause"
] | permissive | hmyit/enma_pe | fcbd3aa7a2f9925437b3c625e77d58cb34a9dda4 | aef9b98819d11bbcca3b38ad5d679bc9bc3ae73c | refs/heads/master | 2020-06-01T05:31:38.764184 | 2019-06-06T21:23:25 | 2019-06-06T21:23:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,944 | h | #pragma once
class pe_load_config_directory{
uint32_t size;
uint32_t timestamp;
uint16_t major_version;
uint16_t minor_version;
uint32_t global_flagsclear;
uint32_t global_flagsset;
uint32_t criticalsection_default_timeout;
uint64_t decommit_freeblock_threshold;
uint64_t ... | [
"jnastarot@yandex.ru"
] | jnastarot@yandex.ru |
cccae987b8ebe82bcefd2134b6555778b722aec2 | a889d08a10230950c11796d19f98e533ce2f2796 | /Platformer of epicness/Platformer of epicness/UIlayer.cpp | 7e8aade95005fc7a976811a2d227b3ed3874dcf3 | [] | no_license | renekeijzer/Platformer-of-epicness | 2d6f5c9e48596f99760e7318e4b6f56762616e7b | 6bdc06899fab6a56dda4cf20066ebd9068228a11 | refs/heads/master | 2016-09-05T20:55:39.232963 | 2014-11-17T22:42:47 | 2014-11-17T22:42:47 | 26,409,402 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 355 | cpp | #include "UIlayer.hpp"
UIlayer::UIlayer()
{
}
void UIlayer::add(sf::Drawable * draw){
drawableList.push_back(draw);
}
void UIlayer::Update(sf::Time gameTime){
if (active){
}
}
void UIlayer::Draw(sf::RenderWindow & window){
if (active){
for each (sf::Drawable * dr in drawableList){
window.draw(*dr);
... | [
"rene.keijzer@casema.nl"
] | rene.keijzer@casema.nl |
0ddfe4e5df5a2bae49ba068f225f235a334c1144 | 9f677e0c52a34fa233a5ca2de8fd9b920096088b | /third_party/chromium/base/task/thread_pool/thread_pool_impl.cc | 3150d2067b990484630e4bfeebac2dedf8a2f872 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | blockspacer/CXTPL | 86ec73d4e69de0e0b951d94da17321cfc62b538f | 586b146c6a68b79a310ba20d133a0ca6211f22cc | refs/heads/master | 2022-04-18T19:18:52.237072 | 2020-04-17T14:06:34 | 2020-04-17T14:06:34 | 208,968,178 | 13 | 22 | MIT | 2019-10-31T05:21:38 | 2019-09-17T05:41:29 | Python | UTF-8 | C++ | false | false | 16,586 | cc | // Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/task/thread_pool/thread_pool_impl.h"
#include <algorithm>
#include <string>
#include <utility>
#include "base/base_switches.h"
#include "... | [
"trofimov_d_a@magnit.ru"
] | trofimov_d_a@magnit.ru |
dcae9a4fb3abcd1e18da5c76ff749c75d8c5d278 | 2341d2b46d517b4476c66dddf861710a93745fab | /CST136SRS04/CST136SRS04/vectorCalc.h | 3117f3ed79cfc9c23779d57d3088077fad0534f6 | [
"MIT"
] | permissive | jaredmoit/CST136SRS04 | 03e9fa8c409299b8a44fb9823e9a382cabdefe69 | 249a7a6e5efab392354b706e94abc97f24887e9f | refs/heads/master | 2020-03-18T20:26:46.883740 | 2018-06-09T15:56:26 | 2018-06-09T15:56:26 | 135,216,406 | 0 | 0 | null | 2018-05-28T22:56:42 | 2018-05-28T22:56:42 | null | UTF-8 | C++ | false | false | 887 | h | #pragma once
#include "vectorCalc.h"
#include <array>
#include <algorithm>
#include <numeric>
#include <functional>
#include <vector>
#include "gps.h"
#include "haversine.h"
template <typename Func>
static constexpr auto vectorCalc(std::array<GPS::Location, 12> & islands, Func compareBy)
{
//vectors
std::vector<std:... | [
"jared.muralt@oit.edu"
] | jared.muralt@oit.edu |
40ff1e84b574d35bbbb98bae2599215028b06585 | f36dcad97ab5849a8ef55c79557ce77162849de0 | /MainWindows/frmconfig.h | 16bbdbbdab1e29e67241021eebcf9914de86976b | [
"Apache-2.0"
] | permissive | qiangzai00001/OfflineMapTest | b726744d21a7a5fd631c288d70969cac2ddfbd89 | b1a28214fa4882589b3cf399669240b0ec3fc225 | refs/heads/master | 2023-07-25T21:57:39.274329 | 2021-09-06T03:03:46 | 2021-09-06T03:03:46 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,552 | h | /**
* @file frmconfig.h
* @brief 系统配置界面类,主要是配置系统参数
* @author wangpengcheng (wangpengcheng2018@gmail.com)
* @version 1.0
* @date 2020-12-29 23:08:22
* @copyright Copyright (c) 2020 IRLSCU
*
* @par 修改日志:
* <table>
* <tr>
* <th> Commit date</th>
* <th> Version </th>
* <th> Author </... | [
"wangpengcheng2018@gmail.com"
] | wangpengcheng2018@gmail.com |
4dd99c8c2535e18dc0ba6ed85fdb52b179687057 | d71fad53d1149313e44c99e0be9d0c4f6a62a6f6 | /ChaosEngine/Source/ChaosCore/include/ChaosCore/Multithreading/Locks/SharedLock.h | da2392f6bd3809012fdc0192fb7b0e92e71da11d | [] | no_license | W1lliam/ChaosEngine | 217e3d5f77447b5c3b1323be52f0cfc2e52fc9ae | 2ed45d79c4546894b1276d8f09823d51540383ad | refs/heads/master | 2020-06-04T19:00:52.880249 | 2019-06-16T06:30:08 | 2019-06-16T06:30:08 | 192,155,302 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 877 | h | #pragma once
namespace Chaos::Locks
{
template<class Mutex>
class SharedLock
{
public:
SharedLock() = default;
SharedLock(Mutex& p_sharedMutex) : m_sharedMutex(&p_sharedMutex)
{
if(m_sharedMutex)
m_sharedMutex->lock_shared();
}
SharedLock(Mutex& p_sharedMutex, std::adopt_lock_t t) : m_sharedMut... | [
"williamzeus91@hotmail.com"
] | williamzeus91@hotmail.com |
542e0a4149fcdba68e880a1301688fbb3529d8f5 | bfafc1c4774df5e05b0b1b0ba1780aa6e4457945 | /racecar_ws/src/adi_tof_melodic/samples/DepthFrameReader/DepthFrameReader.cpp | 3ca229f064737a35c89bcef9c2d9766c35c01291 | [] | no_license | juchong/racecar_ws | 11b8c8c55509e004404881ff0c83acc9d2e0e613 | bf5b7a37e6d3d73fc1085b3d17779afe5ea3eba9 | refs/heads/master | 2020-06-20T17:47:50.302646 | 2019-10-01T20:53:07 | 2019-10-01T20:53:07 | 197,196,040 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,539 | cpp | #include <iostream>
#include "PicoZense_api.h"
using namespace std;
int main(int argc, char *argv[])
{
PsReturnStatus status;
int32_t deviceIndex = 0;
status = PsInitialize();
if (status != PsReturnStatus::PsRetOK)
{
cout << "PsInitialize failed!" << endl;
system("pause");
return -1;
}
int32_t deviceCou... | [
"niall.p.mullane@gmail.com"
] | niall.p.mullane@gmail.com |
404a51491aacc9562306f3e3fe6e07a59f82c5e3 | 97f421b3b015225b84477fafab09dca8ba875751 | /components/autofill/core/browser/test_autofill_manager.h | 4866514c49131020182dc7d98e9f89c42841117e | [
"BSD-3-Clause"
] | permissive | jdcrew/chromium | 32906dc2d1d492cf64e08afaafc1a47aee68890e | c18376793cafc3f2e775a18fa7910881877c989e | refs/heads/master | 2022-12-25T17:37:23.562928 | 2018-07-09T10:31:03 | 2018-07-09T10:31:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,630 | h | // Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_TEST_AUTOFILL_MANAGER_H_
#define COMPONENTS_AUTOFILL_CORE_BROWSER_TEST_AUTOFILL_MANAGER_H_
#include <memory>
#in... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
033120ebd876fc01cca3921692732a7337e0172c | 2f6f38206eb701193d8b177c0e46120a65655371 | /COJ-1074.cpp | 4374c15aa51a05be8103bb98d9c77d3159826e8f | [] | no_license | par9615/competitive-programming | 00bcc57292b8ccad11f0d7d4c123fb6f4601c314 | c217c8d74a04591763116ed7ab793e9ada830eb6 | refs/heads/master | 2023-01-24T10:12:21.944496 | 2022-12-06T23:22:10 | 2022-12-06T23:22:10 | 166,727,562 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 809 | cpp | #include <stdio.h>
#include <cstring>
int n, ans, col[12];
int row[30], ld[30], rd[30];
int canPlace(int c, int r)
{
return (!row[r] && !ld[c+r] && !rd[c-r+n-1]);
}
void backtrack(int c)
{
for(int r = 0; r < n; r++)
{
if(canPlace(c,r))
{
col[c] = r;
row[r] = ld[c+r] = rd[c-r+n-1] = true;
if(c == n-... | [
"par9615@gmail.com"
] | par9615@gmail.com |
616408117a3120c1bb35cf74be8ffa1320514140 | 15ef253d18835f00979ab6959d5872f7ccfc118a | /Apps/Playground/X11/App.cpp | db83e7b44000337c7d45499bc24c503aafff3a00 | [
"MIT",
"LicenseRef-scancode-nvidia-2002",
"BSD-3-Clause",
"LicenseRef-scancode-openssl",
"LicenseRef-scancode-unicode",
"NTP",
"CC0-1.0",
"curl",
"Zlib",
"NAIST-2003",
"LGPL-2.1-or-later",
"Artistic-2.0",
"LicenseRef-scancode-unknown-license-reference",
"LicenseRef-scancode-public-domain-d... | permissive | aurodev/BabylonNative | a8d37cef0c5ed51194df4cc46762803911b4b635 | a2cf1c76ce0a3879300d82bcaaccb03cc5587e01 | refs/heads/master | 2023-03-12T06:05:50.752936 | 2023-02-07T20:22:54 | 2023-02-07T20:22:54 | 205,402,119 | 1 | 0 | MIT | 2019-08-30T14:49:32 | 2019-08-30T14:49:32 | null | UTF-8 | C++ | false | false | 10,778 | cpp | #define XK_MISCELLANY
#define XK_LATIN1
#include <X11/keysymdef.h>
#include <X11/Xlib.h> // will include X11 which #defines None... Don't mess with order of includes.
#include <X11/Xutil.h>
#include <unistd.h> // syscall
#undef None
#include <filesystem>
#include <Babylon/AppRuntime.h>
#include <Babylon/Graphics/Devic... | [
"noreply@github.com"
] | aurodev.noreply@github.com |
5ffbe5bf769ad5512f64ba642750132dcb13753f | 84a2b48e1d93eb1f988ad0ec14e463e65143114e | /TeleDOC/mainwindow.cpp | 5da0fbc4aedc65c8454a6b276f00482f2adbcccf | [] | no_license | maanjum95/FYP | 96b93b5aff34d31a069407f814a827e486531957 | 2879636091b4eec62ae5e1f5b1cf66b6f5f6b535 | refs/heads/master | 2021-06-16T14:24:30.498139 | 2017-05-16T17:03:44 | 2017-05-16T17:03:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,225 | cpp | #include "mainwindow.h"
#include "ui_mainwindow.h"
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
ui->CustomPlot->xAxis->setVisible(false);
this->ppg_worker = new PPGWorker;
this->ppg_worker->moveToThread(&this->ppg_thread);
... | [
"ma.anjum95@gmail.com"
] | ma.anjum95@gmail.com |
0dd85f2cbaf9ae67788e336f809e7fd47092a34f | b38304787bb7ba6a2cdfa860fd27ee5294c34077 | /src/utils/primitive_importer.cpp | 6d42b6348c277ea5f58ff4264f70ffd98a9205f1 | [
"MIT",
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | AIS-Bonn/stillleben | fae76daaec345b917abb2a0027219cea912bd7da | 56a1c7d4bc1a11c2e6a6163e19f905b94abb101d | refs/heads/master | 2022-05-02T16:57:42.057910 | 2022-03-18T10:30:07 | 2022-03-18T10:30:07 | 246,433,715 | 57 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 2,128 | cpp | // Imports primitive meshes
// Author: Max Schwarz <max.schwarz@ais.uni-bonn.de>
#include "primitive_importer.h"
#include <Corrade/Utility/FormatStl.h>
#include <Corrade/Utility/String.h>
#include <Magnum/Trade/MeshData.h>
#include <Magnum/Trade/MaterialData.h>
#include <Magnum/Trade/ObjectData3D.h>
#include <Magnum... | [
"max.schwarz@online.de"
] | max.schwarz@online.de |
4fb0397f2e7da25b7da30bd9a9ffd0ecf54c0159 | e054d8a210460dfc057931470c47abdafdc18203 | /m1 C/task12.cpp | a83e58e3a00f580cfc5fdd09b31abf1e97d19461 | [] | no_license | TianYJ1/cs_2016_fall_33_Tian_Yajing | d6051fda20cdda06a615ffdc40c1396f66c7920e | f935930ab7500bf97b61a96b73d42adade94b44e | refs/heads/master | 2020-07-03T11:53:18.839930 | 2017-06-24T20:50:46 | 2017-06-24T20:50:46 | 74,174,593 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 437 | cpp | #include <stdio.h>
#include <string.h>
#define MAX 80
int main()
{
char arr[MAX + 1];
char max;
int len;
int i;
printf("Input a string:\n");
gets(arr);
max = '\0';
len = strlen(arr);
for(i=0; i<len; i++)
{
if(arr[i] > max)
{
... | [
"noreply@github.com"
] | TianYJ1.noreply@github.com |
d0fe7c25180ecf9d5cf3654f917239036a86bfa8 | 8b10888e09c961ab21ff26fa06e7fbbc9863bd49 | /src/evl_wire.h | ff323f231c67cec0b6608e2d4a95b1c3fc2f6e4f | [] | no_license | g-gaston/easyvlsimulator | f03987610bccf024871db1e40b0bfcc1cfc6810d | 4c99c6526c886ced36a22ceb6c983609d37b511b | refs/heads/master | 2020-04-02T05:45:53.544966 | 2016-06-27T19:53:32 | 2016-06-27T19:53:32 | 62,083,235 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 269 | h | #ifndef EVL_WIRE_H
#define EVL_WIRE_H
#include <string>
class Evl_wire {
std::string name;
int width;
public:
Evl_wire();
Evl_wire(std::string t, int l);
void set_name(std::string t);
void set_width(int l);
std::string get_name();
int get_width();
};
#endif
| [
"guillermogastonlorente@gmail.com"
] | guillermogastonlorente@gmail.com |
5fae6192be8b054d4635941dd11d63a02e4d60c3 | 01c2bcb738317be31a903e9944a89ef539467eac | /izpack-native-parent/src/main/native/COIOSHelper/src/WinLibEnv.h | d48edfe18e0d701673f2980a03aa90dbd0e02102 | [
"LicenseRef-scancode-free-unknown",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | izpack/izpack | a7bde7b94c298ace69f5d4cf869cacb23f8d7655 | ba03a416de83e5ea0ab1ff307f0909732d93777f | refs/heads/master | 2023-09-02T13:51:37.112314 | 2023-08-30T18:07:51 | 2023-08-30T18:25:59 | 4,624,165 | 269 | 220 | Apache-2.0 | 2023-09-11T16:28:38 | 2012-06-11T11:35:57 | Java | UTF-8 | C++ | false | false | 3,713 | h | #ifndef WINLIBENV_H
#define WINLIBENV_H
/*
* IzPack - Copyright 2001-2005 Julien Ponge, All Rights Reserved.
*
* http://izpack.org/
* http://izpack.codehaus.org/
*
* Copyright 2005 Klaus Bartz
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in complia... | [
"bonnefoa@poste.isima.fr"
] | bonnefoa@poste.isima.fr |
6d4856c57789b05ed81f0db8175f84a5e7ea3724 | c2794d5ad254e77fdb171de687fb207146251424 | /GameFrameWork/PP12.Vector2D/Game.h | b911c6c54277f6b0b396a5754610f7ef96763c3a | [] | no_license | khyeondo/GameFramWork.20171139 | d4c1bd4c46ee5e21c6d0f2c3b05f24e88dbb9294 | 8c679c517c7d457f374a4692f8d8fac646f871e5 | refs/heads/master | 2021-10-08T20:07:32.110828 | 2018-12-17T08:05:31 | 2018-12-17T08:05:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 844 | h | #pragma once
#include <vector>
#include "SDL.h"
#include "GameObject.h"
#include "Player.h"
#include "Enemy.h"
#include "TextureManager.h"
class Game
{
private:
SDL_Window* m_pWindow;
SDL_Renderer* m_pRenderer;
bool m_bRunning;
int m_currentFrame;
std::vector<GameObject*> m_gameObjects;
private:
Game() {}... | [
"20171139@vision.hoseo.edu"
] | 20171139@vision.hoseo.edu |
bfb790c5d67e36266ad513ea8fdfb2a8be1cc661 | 38beb7397b822e4e509fa720292a95fded885cb2 | /Source/ShooterGame/Private/UI/Common/Widgets/SShooterAlertDialog.h | 89a64b828ed8a659ae3f12d2abcd5b04ad08fb5e | [] | no_license | yw-dev/ASSGame | e8d13d3ab43765ce3e2934806a95da7e05d2d3d7 | bb4782996099e7f1422cad91b44692ecbe8acabd | refs/heads/master | 2023-01-30T07:34:04.749696 | 2020-11-30T10:31:16 | 2020-11-30T10:31:16 | 269,843,572 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 930 | h | // Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "SlateBasics.h"
#include "SlateExtras.h"
#include "ShooterStyle.h"
#include "ShooterGame.h"
#include "ShooterTypes.h"
/**
* Server/Client Message Alert View Widget.
* 消息弹出框
*/
class SShooterA... | [
"1775216@gmail.com"
] | 1775216@gmail.com |
a380ad26c141db4fa6a2705ea39a27b1a99febf3 | cc7c2ef9d888b1bd2e829ccb5919fc534c574aa2 | /Mentorship/daily-problem-set/1305F/F.cpp | 9afbb4c2c48ded9c0869f83bd9ea04c84a67cd9c | [] | no_license | anandhere8/practice | cdc450e359006c273d5399dcf2e9b2dd09fdddbb | a6ec670f514812ccd7113a395e10b1ae672dee9d | refs/heads/main | 2023-02-13T04:31:03.473515 | 2021-01-02T10:42:04 | 2021-01-02T10:42:04 | 310,651,254 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 889 | cpp | #include <bits/stdc++.h>
using namespace std;
set < long long > st;
void factors(long long x){
for(int i = 2; 1ll * i * i <= x; i++){
if(x % i == 0){
st.insert(i);
while(x % i == 0) x /= i;
}
}
if(x > 1) st.insert(x);
}
int main(){
mt19937 rng(chrono::steady_clock::now().time_since_epoch... | [
"anandhere8@gmail.com"
] | anandhere8@gmail.com |
87386f4387deb0e462b3d1e0f5647af64628eb34 | e1aee39a92f2db3c3e54e6f154de1f3db3dfb304 | /Bachelor/1st year/Object Oriented Programming/POO/Array.h | 788e188fa85c17d9c7001ef024f08a061a3c61f9 | [] | no_license | adriangotca98/Faculty | 2a1d3f41bf9fba0042d2f55f3bbd3f88a5026454 | 5fc53b754ed6a623af7921c095ee2ef15c73d5cd | refs/heads/master | 2021-07-08T09:25:13.231695 | 2021-01-12T22:12:34 | 2021-01-12T22:12:34 | 225,907,376 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 5,290 | h | #include "stdafx.h"
#include "ArrayIterator.h"
#include "Compare.h"
#include "Exceptions.h"
#pragma once
template<class T>
class Array
{
private:
T * * List; // lista cu pointeri la obiecte de tipul T*
int Capacity; // dimensiunea listei de pointeri
int Size; // cate elemente sunt in lista
public:
Array() {
// L... | [
"adriangotca98@gmail.com"
] | adriangotca98@gmail.com |
ba9c9dd2e600b5eb07c7e0a393a64d29e36f9fc9 | 2115bffdd8e53109138a24efa693e5c6a1343be4 | /SoftRP/ShaderContext.h | 9512c7b9b821c3cf33775e9837a98861c0d8b205 | [
"MIT"
] | permissive | loreStefani/SoftRP | 8c49fad9b464273041e2fe451ec38605a3503c18 | 2676145f74c734b272268820b1e1c503aa8ff765 | refs/heads/master | 2021-01-18T23:42:37.656522 | 2016-10-02T08:54:11 | 2016-10-02T08:54:11 | 45,831,932 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 979 | h | #ifndef SOFTRP_SHADER_CONTEXT_H_
#define SOFTRP_SHADER_CONTEXT_H_
namespace SoftRP {
class ConstantBuffer;
class TextureUnit;
/*
Concrete data type which represents the read-only context that a
shader can access during its execution.
*/
class ShaderContext {
public:
ShaderContext() = default;
virtual ~... | [
"lorelore2291@gmail.com"
] | lorelore2291@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.