blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 201 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 7 100 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 260
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 11.4k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 17
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 80
values | src_encoding stringclasses 28
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 8 9.86M | extension stringclasses 52
values | content stringlengths 8 9.86M | authors listlengths 1 1 | author stringlengths 0 119 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
8e307367d5ebd3b9674789e03a8ad2da87f8c33f | d0f7a8ed6473959d7119a78c986f509d565bacaf | /bufferCircular/bufferCircular.cpp | 873239f0928e67bbd2a41bfba03980666dfb9001 | [] | no_license | sudhamadhuri/Challenge3 | 807377bf7ae84d6dea9c184fb3761ea98be3fba2 | 24fac9774a7228069e12dbaa23cde1e5e8845150 | refs/heads/master | 2016-09-10T19:46:00.545337 | 2014-12-29T16:19:01 | 2014-12-29T16:19:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,081 | cpp | // bufferCircular.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <boost/thread/mutex.hpp>
#include <boost/thread/condition.hpp>
#include <boost/circular_buffer.hpp>
#include "Circbuffer.h"
#include "Consumer.h"
template<class Buffer>
void fifo_test(Buffer* buffer) {
... | [
"sudhamk91@gmail.com"
] | sudhamk91@gmail.com |
740a307d34fb75338a29b033ca6ac76ba1a3dcb0 | 601ef8f84521f8d99786fa530ab97b4a7a6fbf49 | /algoritmos/estructura_de_datos/trie/trie_metodo_delete/trie_repaso.cpp | 3c4f937c6405fa0ddeef37f068eb1949c5a040c4 | [] | no_license | HugoAlejandro2002/Algoritmica-2 | 4cfe1adb3cdff9758c43ae0c3887cc992548661a | 1252965bb8ce0a4ab7f8740eebab6e81f10b9a2a | refs/heads/main | 2023-07-15T21:43:40.637203 | 2021-09-02T13:34:17 | 2021-09-02T13:34:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,145 | cpp | #include <bits/stdc++.h>
using namespace std;
struct node {
char currentCharacter;
bool isWord = false;
int contadorLetras = 0;
// int priority = 0;
struct node *children[10]; // [null,null,null,......,null]
}*trie;
// Inicializar
void init() {
trie = new node(); // I... | [
"dylanchambifi@gmail.com"
] | dylanchambifi@gmail.com |
ba85c914cc9913f56d6c849abb114d234051413a | 70950c7e1a6233c42ae80c79f998761c3eb01024 | /CodeForces/461 DIV 2 A.cpp | 4f05c1da738a08fbc094d939f3d66e37dd4264ab | [] | no_license | karimelghazouly/CompetitiveProgramming | be54f9cf0f70d131bb44025077eb852539e5c405 | f1e1beb23b1301e154cdec4f12ddaf08b7cfe514 | refs/heads/master | 2021-09-14T00:33:44.856073 | 2018-05-06T17:52:58 | 2018-05-06T17:52:58 | 100,038,836 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 414 | cpp | #include <bits/stdc++.h>
using namespace std;
int main()
{
ios::sync_with_stdio(false);
cin.tie(0); cout.tie(0);
//while(1)
//{
int x,y;
cin>>x>>y;
//x=rand()%10; y=rand()%10;
//cout<<"x = "<<x<<" y = "<<y<<endl;
y--;
int diff=x-y;
if(diff<0||diff%2... | [
"karimelghazouly@gmail.com"
] | karimelghazouly@gmail.com |
93753c4497fdf700944b65f566b3610ef8668d09 | 6ced41da926682548df646099662e79d7a6022c5 | /aws-cpp-sdk-quicksight/include/aws/quicksight/model/RestoreAnalysisResult.h | 9a560bc48290aae1daa68b7bbe32d01db06379d1 | [
"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 | 5,097 | h | /**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/quicksight/QuickSight_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceRe... | [
"aws-sdk-cpp-automation@github.com"
] | aws-sdk-cpp-automation@github.com |
f93241648cec5c5bcfec2970eb029bb533ee3e0d | 98448b1558327a0f05c5efdb85308d52891336b5 | /Eigen/src/misc/Solve.h | 7f70d60afbd348be857c772c4f9398fd2051336f | [
"GPL-1.0-or-later",
"Apache-2.0",
"GPL-2.0-only"
] | permissive | gnina/gnina | 6aaf681824800a8e794f499224c05da7ade1d3ef | da19662b9d34b6e2ba640fd115746ba6f6f932e5 | refs/heads/master | 2023-09-04T12:55:35.150558 | 2023-08-31T14:59:27 | 2023-08-31T14:59:27 | 45,548,146 | 467 | 146 | Apache-2.0 | 2023-08-31T14:59:29 | 2015-11-04T15:29:17 | C++ | UTF-8 | C++ | false | false | 2,485 | h | // This file is part of Eigen, a lightweight C++ template library
// for linear algebra.
//
// Copyright (C) 2009 Benoit Jacob <jacob.benoit.1@gmail.com>
//
// This Source Code Form is subject to the terms of the Mozilla
// Public License v. 2.0. If a copy of the MPL was not distributed
// with this file, You can obtai... | [
"dkoes@pitt.edu"
] | dkoes@pitt.edu |
ec999d7ea1750ffb35aab1a4ff56d867018b1ddf | bb7a3421c17dc5ddcb2987729af55c694faab1d4 | /Sa/Bll/StudentPointManager.h | cecb4cc0ebd54b6d47839a436860df19e0d9c0f4 | [
"MIT"
] | permissive | saeedmaghdam/StudentClassScoreCPP | f082cecb30786f6510a5a721076db227a6d7d79e | aa5b7d57b9a3c91521622cddeae247833e17a931 | refs/heads/master | 2023-02-21T08:50:38.543007 | 2021-01-24T19:44:57 | 2021-01-24T19:53:56 | 332,539,966 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,611 | h | #ifndef Bll_StudentPointManager
#define Bll_StudentPointManager
#include <string>
#include "../Model/StudentPoint.h"
using namespace std;
namespace Sa{
namespace Bll{
class StudentPointManager{
public:
void Insert(Sa::Model::StudentPoint studentPoint){
Sa::Helper::File db = Sa::Helper::File(dbName);
... | [
"me.register@outlook.com"
] | me.register@outlook.com |
bade818404bd2ed8bc34e1eb2dfb56feeef07e39 | bc377fcafd15b5186163bf937e80c5088d23a112 | /pds2/lab5/05.01/src/peca.cpp | 0e558ab16a1ae0f595df17b4e39ca376d64072a8 | [] | no_license | guilhermealbm/CC-UFMG | 9ec885da17e773a40db6b913dcf51092f95902a7 | 667cc012e3f3788c8babf5c4c9fd9106ee812a2a | refs/heads/master | 2022-08-09T19:31:23.272393 | 2022-07-20T21:23:13 | 2022-07-20T21:23:13 | 195,878,712 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 384 | cpp | #include "../include/peca.h"
#include <iostream>
Peca::Peca(int x, int y, std::string color) {
this->x = x;
this->y = y;
this->color = color;
}
int Peca::getX(){
return this->x;
}
void Peca::setX(int x){
this->x = x;
}
int Peca::getY(){
return this->y;
}
void Peca::setY(int y){
this->y ... | [
"gui.miranda.13@gmail.com"
] | gui.miranda.13@gmail.com |
39693716d07f58ecfdf0203f6ce3ed7ebf05598d | 2d75e17aeba62a8c14ddfd9702d566778dbeea7f | /UVa 10038.cpp | 16dbc07d73f71fd2f53b8af3c60a42bf2aec1c2f | [] | no_license | f0x-mulder/UVa-solutions | ac47ecfb5ceb20bffaaa3b13ec852e43ca560c26 | 7c6903ea1fa48bcd77926aee97010e11188e042e | refs/heads/master | 2020-04-21T21:40:54.037581 | 2019-11-28T14:45:54 | 2019-11-28T14:45:54 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 511 | cpp | #include <bits/stdc++.h>
using namespace std;
int main() {
int n;
while (scanf("%d", &n) != EOF) {
vector<bool> v(n, false);
int last = 0;
int curr = 0;
for (int i = 0; i < n; i++) {
cin >> curr;
if (i != 0) {
int diff = abs(curr - last);
if (diff <= n - 1) v[diff] = true;
}
last = curr;
... | [
"noreply@github.com"
] | noreply@github.com |
8344b268063db2562af43b7a3d8645adabf0d8ce | 44aa76e2dbf8c8dbe83b8c54ea8cdcee7031f5ac | /Multi-threading/Future.cpp | ef209ae98d18467e989fd7c82dbb532aed8feb71 | [
"MIT"
] | permissive | Avelyev/Cplusplus | b66ab98b7e35e0e47ad827645878db2a60e5606f | 3e9f99e8421ea6f747a6b00302deafffe1f930b6 | refs/heads/master | 2021-01-21T21:57:32.165827 | 2017-06-22T19:09:42 | 2017-06-22T19:09:42 | 95,136,290 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,562 | cpp | /*****************************************************************************
* This example demonstrates how to create and work with multiple threads of program and use future
*
* Этот пример демонстрирует создание и работу с несколькими потоками в программе с использованием future
*
* Code&Robots site: http://... | [
"eugene@codrob.ru"
] | eugene@codrob.ru |
c281dafe07b3fb3a2a3e6856a834b5bc3fd7a44f | d0c44dd3da2ef8c0ff835982a437946cbf4d2940 | /cmake-build-debug/programs_tiling/function13813/function13813_schedule_4/function13813_schedule_4.cpp | 2779982142229f83f6d40d905399388b8432bd77 | [] | no_license | IsraMekki/tiramisu_code_generator | 8b3f1d63cff62ba9f5242c019058d5a3119184a3 | 5a259d8e244af452e5301126683fa4320c2047a3 | refs/heads/master | 2020-04-29T17:27:57.987172 | 2019-04-23T16:50:32 | 2019-04-23T16:50:32 | 176,297,755 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,091 | cpp | #include <tiramisu/tiramisu.h>
using namespace tiramisu;
int main(int argc, char **argv){
tiramisu::init("function13813_schedule_4");
constant c0("c0", 65536), c1("c1", 1024);
var i0("i0", 0, c0), i1("i1", 0, c1), i01("i01"), i02("i02"), i03("i03"), i04("i04");
input input00("input00", {i0}, p_int3... | [
"ei_mekki@esi.dz"
] | ei_mekki@esi.dz |
6a13b9840573dabd6a30bd7f193b689693f48197 | 870d759b359de1e393452e4d280a2fd199fb95b5 | /UiLib/Layout/UIVerticalLayout.cpp | 17ec0f47255943fa3a40b7742e338486ab39d4b0 | [] | no_license | yuechuanbingzhi163/UPIM | 8ff40d58f14a6d615725b3432b50489f1e723d05 | b02053b107fd662311620ac34f4b5eb55a37d46f | refs/heads/master | 2023-03-20T19:00:30.040607 | 2016-07-20T00:55:28 | 2016-07-20T00:55:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,096 | cpp | #include "stdafx.h"
#include "UIVerticalLayout.h"
namespace DuiLib
{
CVerticalLayoutUI::CVerticalLayoutUI() : m_iSepHeight(0), m_uButtonState(0), m_bImmMode(false)
{
ptLastMouse.x = ptLastMouse.y = 0;
::ZeroMemory(&m_rcNewPos, sizeof(m_rcNewPos));
}
LPCTSTR CVerticalLayoutUI::GetClass() const
{
return _T("... | [
"lhbabyblue@163.com"
] | lhbabyblue@163.com |
9869f9b841cee44ea953663eb74f026eb85f575f | 311e0608b4005865b90eb153d961b8758ba6de28 | /LAB 7/ShortestRoute3.cpp | c6b8df3e5b1f45db297ea80102d5366cbab3a137 | [] | no_license | JPL4494/DVC-COMSC200 | e71c9c46b33bd4886932ee87c0be31e581cb8c3e | c76a7f087b353ba16fdac9a1b0ba27e972daa5f0 | refs/heads/master | 2020-03-19T00:25:03.075887 | 2018-05-30T19:23:33 | 2018-05-30T19:23:33 | 135,479,290 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,122 | cpp | /*
Lab 7b, The third version of the shortest route Program
Programmer: Joshua Long
Editor used: Notepad
Compiler used: CodeBlocks
*/
#include<iostream>
using std::cout;
using std::endl;
using std::ostream;
#include<string>
using std::string;
class Route;
class Leg
{
const string city1;
const... | [
"noreply@github.com"
] | noreply@github.com |
680932de60418dd29fb9af35b8572356037335bf | 51c1c5e9b8489ef8afa029b162aaf4c8f8bda7fc | /easyshadow/src/libshadow/Sprite.h | c8b400799b0639421bdb9c6617045266870a617e | [
"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 | 428 | h | #ifndef _EASYSHADOW_SPRITE_H_
#define _EASYSHADOW_SPRITE_H_
#include <ee/Sprite.h>
namespace eshadow
{
class Symbol;
class Sprite : public ee::Sprite
{
public:
Sprite(const Sprite& spr);
Sprite& operator = (const Sprite& spr);
Sprite(const s2::SymPtr& sym, uint32_t id = -1);
static ee::SprPtr Create(const std:... | [
"zhuguang@ejoy.com"
] | zhuguang@ejoy.com |
a87ed24c9e6c84d2e9499f02043927fa4df59a33 | ee5be159d1373382a9389b9b3d0afc9fd9ef9773 | /include/libflatarray/detail/destroy_functor.hpp | 1fd47f1f961e84aee9bcaaac085fd0f70c6e792d | [
"BSL-1.0"
] | permissive | zhulianhua/libflatarray | 78de4aa8b6708b38f3b8f4d91fec64f9e9bba9f8 | 9e7d3e105ada33424130ecc4b5ced781ef65a40d | refs/heads/master | 2021-01-21T18:33:15.263886 | 2017-03-23T06:56:12 | 2017-03-23T06:56:12 | 92,053,234 | 0 | 1 | null | 2017-05-22T12:53:26 | 2017-05-22T12:53:26 | null | UTF-8 | C++ | false | false | 3,007 | hpp | /**
* Copyright 2016-2017 Andreas Schäfer
*
* Distributed under the Boost Software License, Version 1.0. (See accompanying
* file LICENSE or copy at http://www.boost.org/LICENSE_1_0.txt)
*/
#ifndef FLAT_ARRAY_DETAIL_DESTROY_FUNCTOR_HPP
#define FLAT_ARRAY_DETAIL_DESTROY_FUNCTOR_HPP
#include <libflatarray/config.h... | [
"gentryx@gmx.de"
] | gentryx@gmx.de |
5b3efe38794a188fd1ddcd33b3ae1643f969d88f | b2097f2c200768ce0b4b9bb397ab766f7752558e | /Attack.cpp | 9aeea364e7ae7f405aeeb9f52f82c52c46f57035 | [] | no_license | dhairyaagrawal/zork-project | a8a45859dfa941b679404932545b88555ed67e67 | c6c77bb7e4783169955ab20c0dbb957d0672c847 | refs/heads/master | 2020-04-04T15:30:07.346364 | 2019-10-01T18:57:07 | 2019-10-01T18:57:07 | 156,040,070 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 141 | cpp | /*
* Attack.cpp
*
* Created on: Nov 4, 2018
* Author: Dhairya
*/
#include "Attack.hpp"
Attack::Attack() {}
Attack::~Attack() {}
| [
"dhairyaagrawal@gmail.com"
] | dhairyaagrawal@gmail.com |
7903bf92dcded9627d7f412251cf8548220190e1 | e51562372a36b4729033bf19a4daf7ca7e462e30 | /hdu-4828-2 Accepted.cpp | df7e40d407b186191f75e0bd54674165a9c0dffb | [] | no_license | sl1296/acm-code | 72cd755e5c63dfdf9d0202cb14a183ccff3d9576 | 50f6b9ea865e33d9af5882acd0f2a05c9252c1f8 | refs/heads/master | 2020-08-22T11:56:17.002467 | 2019-11-09T11:08:25 | 2019-11-09T11:08:25 | 216,388,381 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 597 | cpp |
#include <cstdio>
#define ll __int64
#define mod 1000000007
ll jc[2000010],res[1000010];
void exgcd(__int64 a,__int64 b,__int64 &x,__int64 &y){
if (b==0){
x=1,y=0;
return;
}
exgcd(b,a%b,y,x);
y-=a/b*x;
}
int main(){
int n,t,i,z;
ll a,b;
jc[0]=1;
for(i=1;i<2000005;i++)jc[... | [
"guocl0729@163.com"
] | guocl0729@163.com |
af928675759a8f639bbf5b7394a8b60f946a2e75 | 791e96a1388d22fb777fe7b5b99d507b967ed9fb | /Desktop/code/C++_codes/C_pro_codes/Alphabets/o.cpp | 1ce45a4fd1c16feb57bbdd62a02136c74b42d4f5 | [] | no_license | baggamrohithraj/Alpha_auto | 23d01b94304f7fec3b205c12199ffa320622b4d0 | c5c013e43978b084852f2fe286d07ff371d67e6a | refs/heads/main | 2022-12-24T06:36:01.403357 | 2020-10-11T09:21:50 | 2020-10-11T09:21:50 | 303,070,434 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 406 | cpp | #include<iostream>
using namespace std;
time() {
for(int k=0;k<89999900;k++) {
k++;
k--;
}
}
int main() {
int n=5;
int i,j,k;
cout<<"\t ";
for(i=0;i<n-3;i++) {
time();
cout<<" * ";
}
cout<<endl;
for(i=0;i<n;i++) {
time();
cout<<"\t*";
for(j=0;j<n+2;j++) {
cout<<" ";
}
time();
cout<<"*... | [
"rohithrajbaggam@gmail.com"
] | rohithrajbaggam@gmail.com |
fed751de07ff0f656e894403f7c7b4421b44e5a3 | 13a1091034461938ca5a3872b93a90a03c08e0b2 | /Engine/Source/Shared/System/Renderer/RsRenderState.cpp | bed956f8c5e3933d1f20ef17081c21a53c187bd8 | [
"LicenseRef-scancode-public-domain",
"Zlib",
"MIT",
"BSD-3-Clause"
] | permissive | Kimau/Psybrus | 48bcd404a65e69a32bb5f8b2d1dce4e495d38b78 | c9cd7ce4f1aa1e3b9a0fc4f32942e05a95291202 | refs/heads/develop | 2020-05-20T22:25:28.289005 | 2015-12-14T02:19:23 | 2015-12-14T02:19:23 | 47,588,608 | 0 | 0 | null | 2015-12-08T00:41:38 | 2015-12-08T00:41:37 | null | UTF-8 | C++ | false | false | 8,560 | cpp | /**************************************************************************
*
* File: RsRenderState.cpp
* Author: Neil Richardson
* Ver/Date:
* Description:
* Render state creation and management.
*
*
*
*
**************************************************************************/
#include "System/Renderer/RsRe... | [
"neilo@neilo.gd"
] | neilo@neilo.gd |
383e6a3c2657a45b08d7112b8b779a9345a8b32c | 140d78334109e02590f04769ec154180b2eaf78d | /aws-cpp-sdk-clouddirectory/source/model/BatchListIndexResponse.cpp | 88d306ba28a7b9240a5df81b9122712bef72e3ad | [
"Apache-2.0",
"MIT",
"JSON"
] | permissive | coderTong/aws-sdk-cpp | da140feb7e5495366a8d2a6a02cf8b28ba820ff6 | 5cd0c0a03b667c5a0bd17394924abe73d4b3754a | refs/heads/master | 2021-07-08T07:04:40.181622 | 2017-08-22T21:50:00 | 2017-08-22T21:50:00 | 101,145,374 | 0 | 1 | Apache-2.0 | 2021-05-04T21:06:36 | 2017-08-23T06:24:37 | C++ | UTF-8 | C++ | false | false | 2,514 | cpp | /*
* Copyright 2010-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" fil... | [
"henso@amazon.com"
] | henso@amazon.com |
f717ce0f40623c0cb110dfe07f166ea3a06858fb | f2e1ef881c5835fce122f8076f484c0475bff9df | /src/LuminoEngine/src/Font/TextLayoutEngine.cpp | d938521ba6ab8b821a72e00eb403bbd91e9c69ce | [
"MIT"
] | permissive | lp249839965/Lumino | def5d41f32d4a3f3c87966719fd5ded954b348cc | 94b1919f1579610fc6034c371cf96e7e8517c5e9 | refs/heads/master | 2023-02-13T09:33:22.868358 | 2020-12-22T15:30:55 | 2020-12-22T15:30:55 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,318 | cpp |
#include "Internal.hpp"
#include <LuminoEngine/Graphics/Bitmap.hpp>
#include <LuminoEngine/Font/Font.hpp>
#include "../../LuminoCore/src/Text/UnicodeUtils.hpp"
#include "TextLayoutEngine.hpp"
namespace ln {
namespace detail {
//==============================================================================
// TextLa... | [
"lriki.net@gmail.com"
] | lriki.net@gmail.com |
c51e96f4335c707e902adde298195b5cfbb7d581 | 6765928eced9da30e7af8f47a254a0925342cfe9 | /交换最大数最小数位置.cpp | 678119e50216a10bd69ab5116e0c9161502ed93d | [] | no_license | Zzzhouxiaochen/Zzzhouxiaochen | f3304c955b89c1c6afb17767be6c2fddc8ae7660 | e2195d3ac869a90df1f815202204c175babfa032 | refs/heads/master | 2020-04-12T18:43:57.259437 | 2019-05-20T01:17:24 | 2019-05-20T01:17:24 | 162,688,924 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 774 | cpp | #define _CRT_SECURE_NO_WARNINGS
#include<stdlib.h>
#include<stdio.h>
int main()
{
int a[20], max, min, i, j=0, k=0, n;
printf("请输入数据个数:\n");
scanf("%d", &n);
printf("请输入数据:\n");
for ( i = 0; i < n; i++)
{
scanf("%d", &a[i]);
}
min = a[0]; //求最小数
for (i = 1; i < n; i++)
{
if (a[i] < min)
{
min = a[... | [
"zxc2890326540@163.com"
] | zxc2890326540@163.com |
69dc71bf6d8d2609b6b70da6a6d0dc8a5d1c6bd1 | 2d6a8a21cf01d13c552b82d043561c5c5eb09bbc | /students/kondrat'ev_a/lr_3/lr_3.h | 11a80b2fa1232befff4ff5ba47cd8405c17046e6 | [] | no_license | leti-fkti-1381/2013-1381-sem-4 | 1fd42b812ab3e34ff7e49915099111c32715a422 | b40e5985841b73f0661161e71911a590b8801fce | refs/heads/master | 2016-09-11T04:55:28.208734 | 2013-06-11T19:11:53 | 2013-06-11T19:11:53 | 8,007,891 | 0 | 2 | null | 2013-02-04T14:47:36 | 2013-02-04T13:39:58 | null | WINDOWS-1251 | C++ | false | false | 2,208 | h | #ifndef _lr_3_
#define _lr_3_
#include <vector>
#include <limits>
using namespace std;
//---------------------------------------------------------------
const int max_amount = 100; // Максимальное количество элементов
const int max_value = 100; // Максимальное значение элемента
//------------------------------------... | [
"alskondr@yandex.ru"
] | alskondr@yandex.ru |
1d4665d14eacdc143533764177fe5ef33cd1463b | e2f184fd6489d0ff2573179919d1cda308b42382 | /Add_by_two.cpp | b6e86391cb75a7bafac2a80c4bc2ef039e51d312 | [] | no_license | Haeun-Oh/Programmers | 35c881cc5b3b3c5e12fa1df9bce90dec4df70794 | e071d10f69d09db54c193391258027fd47abebdd | refs/heads/main | 2023-06-08T08:26:03.605916 | 2021-06-30T15:03:12 | 2021-06-30T15:03:12 | 323,313,624 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 441 | cpp | #include <string>
#include <vector>
#include <algorithm>
#include <set>
using namespace std;
vector<int> solution(vector<int> numbers) {
set<int>s;
set<int>::iterator iter;
vector<int>vec;
for(int i=0;i<numbers.size()-1;i++){
for (int j=i+1;j<numbers.size();j++)
s.insert(numbers[i]+nu... | [
"noreply@github.com"
] | noreply@github.com |
4e82bfc47c304a5b3104f98045929f30a3083198 | 8f680f6a7f1bf550ad39bcfa37f613dd57062f55 | /src/basics/perfect_forwarding/integer.hpp | 47c4399d8853e83701f0b08d234ec0bf15d2b2bc | [] | no_license | Hdbcoding/cpp_scratchpad | 6cd85a816f7f1251b3ac6cd66479785cc8cf9151 | 230cdcbf544c68c392be51abd8e12112be6bd292 | refs/heads/master | 2023-03-07T03:34:45.012358 | 2021-02-21T17:34:06 | 2021-02-21T17:34:06 | 277,338,529 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 902 | hpp |
class integer
{
int *v;
public:
// rule of 3 -> { destructor, copy constructor, copy assignment operator }
// e.g., if you need custom implementation for one of those three, you need all three
// rule of 5 -> { destructor, copy constructor, copy assignment operator, move constructor, move assign... | [
"henry.byrd@claricode.com"
] | henry.byrd@claricode.com |
fd7f7542ff1a35983a3c989b00063c50b3adb109 | 299648a8c633728662d0b7651cd98afdc28db902 | /src/thirdparty/sentry-native/external/crashpad/snapshot/linux/process_reader_linux_test.cc | 73e350dbf8d1c2981e65106262cb1e6860950373 | [
"Apache-2.0",
"MIT",
"BSD-3-Clause"
] | permissive | aardvarkxr/aardvark | 2978277b34c2c3894d6aafc4c590f3bda50f4d43 | 300d0d5e9b872ed839fae932c56eff566967d24b | refs/heads/master | 2023-01-12T18:42:10.705028 | 2021-08-18T04:09:02 | 2021-08-18T04:09:02 | 182,431,653 | 183 | 25 | BSD-3-Clause | 2023-01-07T12:42:14 | 2019-04-20T16:55:30 | TypeScript | UTF-8 | C++ | false | false | 27,451 | cc | // Copyright 2017 The Crashpad 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 ... | [
"joe@valvesoftware.com"
] | joe@valvesoftware.com |
982f7eb427e30a2025ab871ea190da3b9c8c784c | 834408da4e7dfe7b353b9dfdc1a33eb5121ba830 | /engine/include/core/Id.h | fa4c9487ccfacd9bcc2f5bfde96e34920253e4b9 | [
"MIT"
] | permissive | jsandham/PhysicsEngine | c99b2cc6da76d5ec14a1aecfaacf974f6fb9e8e0 | 69b488828763310d9b22603669d11de7211ada42 | refs/heads/master | 2023-08-08T21:11:18.708136 | 2023-07-22T19:41:20 | 2023-07-22T19:41:20 | 132,405,936 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 863 | h | #ifndef ID_H__
#define ID_H__
#include <functional>
namespace PhysicsEngine
{
class Id
{
private:
int mId;
public:
Id();
Id(int id);
~Id();
Id &operator=(const Id &id);
bool operator==(const Id &id) const;
bool operator!=(const Id &id) const;
bool operator<(const Id &id) const;
... | [
"jsandham@uwaterloo.ca"
] | jsandham@uwaterloo.ca |
deb83f3a4188c51ab36d911d58a5f9c669f942cf | 1d5d650014ac3dd142965906cf2b4fdbe34afb63 | /abc173/abc173_a.cpp | bbf713ee8ec756cf69f027c4cfb9199e9c8d4e91 | [] | no_license | tks3210/Atcoder | c1b88654762273693bd41db417811169780c0161 | 593dda88e13f703bdb3b4c3e6d795bc425e29416 | refs/heads/master | 2021-07-02T17:46:00.099867 | 2020-12-19T07:57:14 | 2020-12-19T07:57:14 | 146,293,715 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 692 | cpp | #include <bits/stdc++.h>
using namespace std;
#define MOD 1000000007
#define rep(i, n) for(int i = 0; i < (int)(n); i++)
#define rep1(i, n) for(int i = 1; i <= (int)(n); i++)
#define showmap(is, js, x) {rep(i, is){rep(j, js){cout << x[i][j] << " ";}cout << endl;}}
#define show(x) {for(auto i: x){cout << i << " ";} cout... | [
"fujinaga.3210.takashi@gmail.com"
] | fujinaga.3210.takashi@gmail.com |
61c1d50f02cef254bf8765c147366ac2f3c3618f | 56e02f5a7fad092f2aef94f182d4b4e58b19bcb6 | /Source/Tools/Toolbox/SystemUI/Widgets.cpp | e6eb7cbd12d56ceeb193dad7ead8e144d3ca0578 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | bin601/rbfx | 4a53c6f8ab6a39b553e1e3997480d94833131c3e | 92c4369964ab35b9180c338b2cf63a56578c990b | refs/heads/master | 2020-07-09T16:26:58.120546 | 2019-08-21T11:25:49 | 2019-08-21T11:25:49 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 16,242 | cpp | //
// Copyright (c) 2017-2019 the rbfx project.
//
// 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, mer... | [
"rokups@zoho.com"
] | rokups@zoho.com |
cb86049de645a5b1c37b1a3fadc17d36a7e0d919 | f75eefba63cf4e11e268c5c91e10df0af96d98e3 | /Source/NoesisGui/Classes/GeneratedClasses/NoesisGuiBinding.h | 3613ccf1028de9aef087a7311479866ca1065b31 | [] | no_license | bibleuspro/UE4Plugin | 7468b4a175ecd37c00e77953a2b0b97cde61ad2a | 1e09fa2b327f33e21dfd8d8351ce6eea5cdb78f5 | refs/heads/master | 2021-01-11T02:37:42.648194 | 2016-10-20T10:49:06 | 2016-10-20T10:49:06 | 70,951,187 | 0 | 0 | null | 2016-10-14T22:20:26 | 2016-10-14T22:20:26 | null | UTF-8 | C++ | false | false | 2,884 | h | ////////////////////////////////////////////////////////////////////////////////////////////////////
// Noesis Engine - http://www.noesisengine.com
// Copyright (c) 2009-2010 Noesis Technologies S.L. All Rights Reserved.
///////////////////////////////////////////////////////////////////////////////////////////////////... | [
"hcpizzi@hotmail.com"
] | hcpizzi@hotmail.com |
1ced7bca860ea2ec40ccbd27ae34f961d87f63a0 | 2e0e6bbeac7ee292c122ee6bfce8891c346f2142 | /LabTest1P2.cpp | 804b44803b4353a5d9834b57154e06989b358f43 | [] | no_license | MichaelKBailey/ComputerSciencePrograms | ecc31fb8dc5c44fc6977a65d5b861d9bb2755803 | f7671fabd6c5b244e76be033acdc4c122f350a9a | refs/heads/master | 2020-04-09T09:03:59.674964 | 2018-12-03T16:41:09 | 2018-12-03T16:41:09 | 160,219,796 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,032 | cpp | /*
Michael Bailey
Assignment: LabTest1
This program will draw a poly-line
*/
#include <iostream>
#include "graph1.h"
using namespace std;
void getData(int* no_points, int* x, int* y, int*r, int* g, int* b);
int* drawPolyLine(int *x, int *y, int no_points);
void colorPolyLine(int* objects, int no_points... | [
"noreply@github.com"
] | noreply@github.com |
83a6587ea7c0ade204059cdb2cd8945609b073d3 | e3c8f2e177eb73ee8a23b32c369ec7b870833eae | /ChatApplication/GeneratedFiles/Debug/moc_MyTextEdit.cpp | f67b13ab478558f143dec18ffcfabe2ef88aec90 | [] | no_license | Codrin18/OOP | d99c763f8a08a21f63886f334ff55d46a338de11 | e13bf7243295a6006b1472961206ab32ac5162c3 | refs/heads/master | 2020-04-26T04:22:55.478861 | 2019-06-12T07:44:22 | 2019-06-12T07:44:22 | 173,300,073 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,966 | cpp | /****************************************************************************
** Meta object code from reading C++ file 'MyTextEdit.h'
**
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.12.3)
**
** WARNING! All changes made in this file will be lost!
***************************************************... | [
"noreply@github.com"
] | noreply@github.com |
58e11823a4620591c307db3de4efb96d96ab4773 | 5c2a9346540261fe4df7e30585afbfadb3c42811 | /系统--Final 1.0/Book.h | 305d96e217003aa0c053c4894e17fa6975d7eeb8 | [] | no_license | lbtxdy/library-manegerment-system | 7ccba598a910c69a12ffd212980218c63c637673 | 947ffc36e584a07964658050b7a916f75ad7f8db | refs/heads/master | 2020-05-17T00:27:49.666047 | 2015-06-27T04:09:26 | 2015-06-27T04:09:26 | 38,146,076 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 191 | h | #ifndef _Book_H_
#define _Book_H_
#include<string>
using namespace std;
class Book
{
protected:
string name;
string ISBN;
string Area;
bool CanBorrow;
bool Borrowed;
};
#endif
| [
"lbtxdy@qq.com"
] | lbtxdy@qq.com |
f97e92b40cc092df62bbeb5a7bd8847fe46055fa | 94f3e5f98a635ae663634fb663023dfda14fe393 | /leetcode/leetcode/GetNumberOfK.h | 510fc39409cb87c04e497e07fe91230acf5dfc29 | [] | no_license | shaugier/leetcode | 0816789a40c28c7665bf499b563126be005fd343 | 062611485eb9a9c13f372aec0671991a5cecd0b4 | refs/heads/master | 2021-01-10T03:47:43.083837 | 2016-03-07T08:40:37 | 2016-03-07T08:40:37 | 45,114,894 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 457 | h | #include"leethead2.h"
class Solution35 {
public:
int GetNumberOfK(vector<int> data, int k) {
stringstream ss;
string numbers;
for (int i = 0; i < data.size(); i++)
{
ss << data[i];
numbers = numbers + ss.str();
ss.str("");
}
int result = 0;
ss.clear();
ss << k;
char pivot = (ss.str()).fron... | [
"shaugier@qq.com"
] | shaugier@qq.com |
d17090518bff8a05e00e67dc57ad898533ad651c | 725104e743ab6c99e6dcfd4e749c069af4c9cdc9 | /LeetCodeTestSolutions/Ex031-LongestValidParentheses.cpp | 9a9c656b20f6e89b3e6070133c9255634bbf841f | [] | no_license | Msudyc/LeetCodePartCpp | 7306af23a1921e0c52fc29d12b32fad337a62174 | 0204709753fdaeee6fa222f70fa11ff9bd1f6e6d | refs/heads/master | 2021-01-15T10:25:49.839340 | 2014-11-09T04:05:49 | 2014-11-09T04:05:49 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,152 | cpp | /*
Given a string containing just the characters '(' and
')', find the length of the longest valid (well-formed)
parentheses substring.
For "(()", the longest valid parentheses substring is "()",
which has length = 2.
Another example is ")()())", where the longest valid
parentheses substring is "()()", which has... | [
"msudyc@gmail.com"
] | msudyc@gmail.com |
aefb8ad87a8f853a4dbdd8511e0849e168f96f34 | 2f9f3ad110563ec3db62d2d74c3c120137c73df1 | /cstudy/datatypetest1/datatypetest1/datatypetest1.cpp | c1503398603038004d52f8b1a90452e237b2b84f | [] | no_license | D-Gun/DoNotAfraid | 293cb94ad6cff1ffc9b28ff7cb488b3f411759c6 | 11860df5394586b312d8f6ee31d6a4edcf5aefd1 | refs/heads/master | 2023-07-26T18:48:18.991958 | 2021-09-05T14:07:21 | 2021-09-05T14:07:21 | 320,894,909 | 0 | 0 | null | 2021-01-08T00:51:11 | 2020-12-12T18:16:00 | C# | UTF-8 | C++ | false | false | 1,138 | cpp | // datatypetest1.cpp : 이 파일에는 'main' 함수가 포함됩니다. 거기서 프로그램 실행이 시작되고 종료됩니다.
//
#include <iostream>
int main()
{
std::cout << "Hello World!\n";
std::cout << 'H\n';
std::cout << 123+456;
}
// 프로그램 실행: <Ctrl+F5> 또는 [디버그] > [디버깅하지 않고 시작] 메뉴
// 프로그램 디버그: <F5> 키 또는 [디버그] > [디버깅 시작] 메뉴
// 시작을 위한 팁:
// 1. [솔루션... | [
"daegeungim7301@gmail.com"
] | daegeungim7301@gmail.com |
f9c20d8027ec4641cdc5c45685cbea09c376d76b | 3bd07bb9e3e4f5e33767ba5ff025cfa3fb8c91dd | /4_1/mainwindow.h | dbbe41089fd87838cc00e328ca302f8d81146f00 | [] | no_license | Andrew-Chernyavski/hw_1_2 | a00d1633937bc2d924972bdab83e4fbe3057ecff | 98031f976503e2f780cc00234537196b2e2daa45 | refs/heads/master | 2016-08-03T07:24:45.646391 | 2012-05-24T20:31:40 | 2012-05-24T20:31:40 | 3,538,239 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 368 | h | #ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
private slots:
void on_horizontalScrollBar_valueChanged(int value);
private:
... | [
"andrew-chernyavski@yandex.ru"
] | andrew-chernyavski@yandex.ru |
9f15168113f7beb0fd323cdf6ca45b72cd66258b | 83309645c3d7eaf945861020e452e7ad27b12aec | /textured_rect.cpp | 3ce4e49642b472a5a29ab261fe68a0f095e405b1 | [] | no_license | Dm94st/Space-Invaders | b53ff242da4867699bcfcff124aa9ef1e21d5208 | f9af654791b9027cab5e4e543ac1643fc938284f | refs/heads/master | 2020-04-05T12:11:15.985010 | 2017-07-22T13:46:38 | 2017-07-22T20:37:36 | 68,703,882 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,514 | cpp | #include "textured_rect.hpp"
#include <QPainter>
#include <QPaintEngine>
#include <Qtime>
#include <math.h>
TexturedRect::~TexturedRect()
{
delete m_program;
delete m_vertexShader;
delete m_fragmentShader;
m_vbo.destroy();
}
bool TexturedRect::Initialize(QOpenGLFunctions * functions)
{
m_f... | [
"stavitsky94@gmail.com"
] | stavitsky94@gmail.com |
088f3c90e68c1657e66ac9a83168f234b99c5650 | 3336be60a936dc52095126932efd4d623bf909ea | /emb.h | 40a827965388f786372fee3212c3605e850296ae | [] | no_license | Amrf000/PIAutotest | f92318c02137b8ca473a52ed6b89db165bd1d6f2 | aeaf75dbcd616cf22438ca8008f8afab47e19b2c | refs/heads/master | 2020-04-26T19:08:06.504664 | 2019-03-25T14:26:24 | 2019-03-25T14:26:24 | 173,764,589 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 882 | h | #ifndef EMB_H
#define EMB_H
#include <functional>
#ifdef _DEBUG
#undef _DEBUG
#pragma push_macro("slots")
#undef slots
#include "Python.h"
#pragma pop_macro("slots")
#define _DEBUG
#else
#pragma push_macro("slots")
#undef slots
#include "Python.h"
#pragma pop_macro("slots")
#endif
namespace emb
{
typedef std::functio... | [
"1138824393@qq.com"
] | 1138824393@qq.com |
c0051057ba694f34a7e0b8c058a5e82a135b1e90 | eb43dfffd3a353acbe57b76d3a0e89754773825a | /partition_list.cpp | 3695243c882496a9d0446831a3a702d2cac932f2 | [] | no_license | deekookee/lintcode | d85a2bac0df10fe70ae3b755f8b9dc07d7fb90ad | f3e9ce5f981851872492ad48c86e8179824778c2 | refs/heads/master | 2021-01-15T23:50:11.831424 | 2016-01-05T04:47:54 | 2016-01-05T04:47:54 | 32,809,299 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,052 | cpp | /**
* Definition of ListNode
* class ListNode {
* public:
* int val;
* ListNode *next;
* ListNode(int val) {
* this->val = val;
* this->next = NULL;
* }
* }
*/
class Solution {
public:
/**
* @param head: The first node of linked list.
* @param x: an integer
... | [
"deekookee@gmail.com"
] | deekookee@gmail.com |
c626a025b4ae26886fc3872f0f89b5ba8090b0d4 | b9ac3f216183e3fc7f52845598c8b8e4eee2497d | /xls/data_structures/graph_contraction_test.cc | 68d91feb9417c2c958dc598ed273a9a3f19dbe93 | [
"Apache-2.0"
] | permissive | google/xls | ba225b411161836889a41c6d0e3a2fc09edc25ef | c2f3c725a9b54802119173a82412dc7a0bdf5a2e | refs/heads/main | 2023-09-02T06:56:27.410732 | 2023-09-01T22:27:04 | 2023-09-01T22:28:01 | 262,163,993 | 1,003 | 152 | Apache-2.0 | 2023-08-31T14:47:44 | 2020-05-07T21:38:30 | C++ | UTF-8 | C++ | false | false | 12,597 | cc | // Copyright 2021 The XLS Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed t... | [
"copybara-worker@google.com"
] | copybara-worker@google.com |
a3ac86e682ded990260831c68424ec2159142459 | dcaecb02a39e6a9a6cc3d0514006010f00d800ee | /C++/Ordenamiento.cpp | 4cd244b168b940df0f53b57acfc2f77a363ee227 | [] | no_license | jhoel100/PracticaIS | c9a6463c1a4004f8d09337d160c25a524875dbf0 | 1a312f3cc0092da6d3c801a6ca4a21b451f494fe | refs/heads/master | 2022-12-17T19:40:57.794064 | 2020-09-23T03:27:50 | 2020-09-23T03:27:50 | 297,837,399 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,379 | cpp | //g++ orden.cpp -std=c++11 -lpthread -o orden.out
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <algorithm>
#include <iostream>
#include <math.h>
#include <chrono>
#include <time.h>
#include <bits/stdc++.h>
#include <fstream>
#include <thread>
using namespace std;
void imprim... | [
"taparajoel@hotmail.com"
] | taparajoel@hotmail.com |
58d842882a1782c0e410fadde55c74e359e717de | 230b7714d61bbbc9a75dd9adc487706dffbf301e | /content/common/mime_sniffing_throttle.h | 539fecb883692655afd17a633e1f85fe64dc696c | [
"BSD-3-Clause"
] | permissive | byte4byte/cloudretro | efe4f8275f267e553ba82068c91ed801d02637a7 | 4d6e047d4726c1d3d1d119dfb55c8b0f29f6b39a | refs/heads/master | 2023-02-22T02:59:29.357795 | 2021-01-25T02:32:24 | 2021-01-25T02:32:24 | 197,294,750 | 1 | 2 | BSD-3-Clause | 2019-09-11T19:35:45 | 2019-07-17T01:48:48 | null | UTF-8 | C++ | false | false | 1,531 | h | // Copyright 2018 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 CONTENT_COMMON_MIME_SNIFFING_THROTTLE_H_
#define CONTENT_COMMON_MIME_SNIFFING_THROTTLE_H_
#include "base/memory/weak_ptr.h"
#include "content/com... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
22af5315f371560479cfacd7ec9b4c793a2ec2b2 | d9bb656bd11f85e6419ebd786aec6fe3f917cb73 | /modules/io/pass_thru.cpp | 0a851baa7c3b4bd9c02bb06a674d909a1ba968ba | [
"BSD-2-Clause"
] | permissive | spiralgenetics/biograph | 55a91703a70429568107209ce20e71f6b96577df | 5f40198e95b0626ae143e021ec97884de634e61d | refs/heads/main | 2023-08-30T18:04:55.636103 | 2021-10-31T00:50:48 | 2021-10-31T00:51:08 | 386,059,959 | 21 | 10 | NOASSERTION | 2021-07-22T23:28:45 | 2021-07-14T19:52:15 | HTML | UTF-8 | C++ | false | false | 197 | cpp | #include "modules/io/pass_thru.h"
#include <stdarg.h>
void pass_thru_writable::print(const char* format, ...)
{
va_list args;
va_start(args, format);
m_in.print(format, args);
va_end(args);
}
| [
"rob@spiralgenetics.com"
] | rob@spiralgenetics.com |
56cd134e3fff3211a0515aff5dda9c19a02ddd1d | 1164e110181e49c66f1e09fef6a27b5ac8e8621c | /libs/oef-core/include/oef-core/tasks/utils.hpp | 26867857f3145ce8644dfb4df0d48072279c6beb | [
"Apache-2.0"
] | permissive | fetchai/ledger | 3d560d7f75282bc4c4f08c97a9954100bf6e7257 | c49fb154ec148518d72d4a8f3d2e9b020160d5dd | refs/heads/master | 2021-11-25T06:44:22.761854 | 2021-11-18T09:21:19 | 2021-11-18T09:21:19 | 117,567,381 | 82 | 55 | Apache-2.0 | 2021-11-18T09:28:30 | 2018-01-15T16:15:05 | C++ | UTF-8 | C++ | false | false | 4,940 | hpp | #pragma once
//------------------------------------------------------------------------------
//
// Copyright 2018-2020 Fetch.AI Limited
//
// 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 Licen... | [
"42541508+fetch-bot@users.noreply.github.com"
] | 42541508+fetch-bot@users.noreply.github.com |
50989a92a711b504eb0e9892095bdbe49725a5e2 | 164ffe077dde59373ad9fadcfd727f279a1cfe93 | /jni_build/jni/include/external/protobuf/src/google/protobuf/compiler/objectivec/objectivec_field.cc | f73a1851aab3a7d85367d4c61e150c02c786f920 | [] | no_license | Basofe/Community_Based_Repository_Traffic_Signs | 524a4cfc77dc6ed3b279556e4201ba63ee8cf6bd | a20da440a21ed5160baae4d283c5880b8ba8e83c | refs/heads/master | 2021-01-22T21:17:37.392145 | 2017-09-28T21:35:58 | 2017-09-28T21:35:58 | 85,407,197 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 17,851 | cc | // Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc. All rights reserved.
// https://developers.google.com/protocol-buffers/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
... | [
"helder_m_p_novais@hotmail.com"
] | helder_m_p_novais@hotmail.com |
3434bd9be3e3221be935a4248992a44fa05c0f2a | 03c5a90740816ce6070b95d6ced4691ae2766470 | /lib/LuaPlugin.cpp | 9227281e53462cbf1e39eb8622a3188b17f050de | [
"MIT"
] | permissive | handicraftsman/particlebot | 201c79665b750323f3f7884d433d4850356dd412 | 9ebb404ec98c2721a04a5ffc3e005b551ec0a808 | refs/heads/master | 2021-04-25T18:51:39.121230 | 2018-03-30T20:14:36 | 2018-03-30T20:14:36 | 121,540,864 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 31,556 | cpp | #define PB_PLUGIN
#include "include.hpp"
static std::string find_path_to_plugin(std::string name) {
const std::vector<std::string> paths {
"./pb-" + name + ".lua",
"./pb-" + name + "/main.lua",
"../pb-" + name + ".lua",
"../pb-" + name + "/main.lua",
"/usr/share/pb-" + name + ".lua",
"/usr/s... | [
"nickolay02@inbox.ru"
] | nickolay02@inbox.ru |
ed8a5ef99e478cb97faef13f248274be681931cc | 4677b50a043e6d2c6f734d266baefe41bb851c1f | /system/core/fs_mgr/fs_mgr_overlayfs.cpp | 9a94d79124829444d62bcecb1638403d953102a4 | [] | no_license | Cryolin/aosp_system_core | d7e322682f6aeda0a8eb71f2cef70767102d2645 | ff00ca6dfd3c9dcf6188779debcb14a2d2394b10 | refs/heads/main | 2023-06-19T09:44:05.158533 | 2021-07-18T13:04:16 | 2021-07-18T13:04:16 | 387,176,707 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 59,306 | cpp | /*
* Copyright (C) 2018 The Android Open Source Project
*
* 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 app... | [
"siyu@mail.ustc.edu.cn"
] | siyu@mail.ustc.edu.cn |
422808e0e5fddb0a97f16e08fb75b8a26296e27d | befaf0dfc5880d18f42e1fa7e39e27f8d2f8dde9 | /SDK/SCUM_CoreUObject_classes.hpp | 69f0c11c74a780c7ad42a39923f497ed62a60c6c | [] | 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 | 21,891 | hpp | #pragma once
// SCUM (0.1.17.8320) SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
#include "SCUM_CoreUObject_structs.hpp"
namespace SDK
{
//---------------------------------------------------------------------------
//Classes
//---------------------------------------------------------------------------
// Cla... | [
"igromanru@yahoo.de"
] | igromanru@yahoo.de |
b31fbebc05a9a7bedd685fabbe5ee52d974694fb | c9244ef34e21509984f37dd60b6d1f6e7c92506a | /hw3/src/db/dbCmd.cpp | 7eccc004ba309b241f6cd47a52ea5426e49503f9 | [] | no_license | Kenchu123/DSnP | 2d56bed53ff10817d2efddad93148a97effe106b | 8540dfaaad70ce21ddc1daf33db94575cb4cf6fb | refs/heads/master | 2023-02-16T01:10:38.208961 | 2021-01-03T06:33:59 | 2021-01-03T06:33:59 | 207,793,323 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 10,293 | cpp | /****************************************************************************
FileName [ dbCmd.cpp ]
PackageName [ db ]
Synopsis [ Define database commands ]
Author [ Chung-Yang (Ric) Huang ]
Copyright [ Copyleft(c) 2015-present LaDs(III), GIEE, NTU, Taiwan ]
********************************... | [
"k88913n@gmail.com"
] | k88913n@gmail.com |
615911ce6dfb978ac3a0b842fb4dabffe6d1915b | abcab8cbc42fe8059c3927f03f86db2995ab5eeb | /out/include/sys/thread/Lock.h | 69eb1cfda76de39524e6a07b9b321c910c3f3d72 | [
"MIT"
] | permissive | sonygod/pb | 8fb6a8d2152637f203c35e1d77629cbdec92931c | a1bdc04c74bd91c71e96feb9f673075e780cbc81 | refs/heads/master | 2020-08-16T19:13:17.999773 | 2020-06-06T03:38:05 | 2020-06-06T03:38:05 | 215,273,448 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | true | 2,132 | h | // Generated by Haxe 4.1.0-rc.1+0545ce110
#ifndef INCLUDED_sys_thread_Lock
#define INCLUDED_sys_thread_Lock
#ifndef HXCPP_H
#include <hxcpp.h>
#endif
HX_DECLARE_STACK_FRAME(_hx_pos_f17acceeafd9582a_30_new)
HX_DECLARE_CLASS2(sys,thread,Lock)
namespace sys{
namespace thread{
class HXCPP_CLASS_ATTRIBUTES Lock_obj : p... | [
"sonygodx@gmail.com"
] | sonygodx@gmail.com |
322ff2aff3d8a7588f253a3aa69dd04ce5c54007 | 6a82b383545f4500df5c26afd17cf03e0e89d292 | /opendnp3/DNP3/ClassCounter.h | 9738df4a203520ff8b2a1ebdb4d8de62946c525c | [] | no_license | nitesh-agsft/internal-projects | 98f8de64c981601219ce07d80905a5d505beb310 | c2bd16857a9701795b4ad1ba932a0fa63577c98c | refs/heads/master | 2021-01-16T17:39:00.655783 | 2017-10-09T13:02:25 | 2017-10-09T13:02:25 | 100,011,951 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,753 | h | //
// Licensed to Green Energy Corp (www.greenenergycorp.com) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. Green Enery Corp licenses this file
// to you under the Apache License, Version 2.0 (the
// "... | [
"nitesh@agsft.com"
] | nitesh@agsft.com |
ef02bd76025f308b4a5bba4ecf6cbdbcf58df40d | 0fee103f9ed82978144d9741e46882c7df9eedb1 | /UOJ/UNR5/Day1/B.cpp | 2719893179197e0fbbba9204880cd2cb17201532 | [] | no_license | Flying2019/testgit | 2776b6bc3a5839a005726ff108fb69d971065871 | 86a42bb1d4bfd65b5471373f03162270013da2af | refs/heads/main | 2023-07-15T00:57:55.321869 | 2021-08-21T01:16:53 | 2021-08-21T01:16:53 | 302,891,112 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,971 | cpp | #include<iostream>
#include<cstdio>
#include<cstring>
#include<vector>
#include<algorithm>
#define N 3010
#define pb push_back
#define S(x) ((int)x.size())
#define MP make_pair
#define fi first
#define se second
#define mod 998244353
using namespace std;
int n;
vector<int>g[N];
namespace Root{
int siz[N],mx,rt;
... | [
"815375530@qq.com"
] | 815375530@qq.com |
a90f1a906cb4aed512ab762b8e4a5013a153fbc5 | 5bf8868cbf5c7da6f14fefb8cc0fd4d968fe9e7f | /Tests/Parser/main.cpp | 254e8347484bbbce7f22323d269163d29582a60b | [
"BSD-2-Clause",
"LicenseRef-scancode-unknown-license-reference",
"BSD-3-Clause-LBNL"
] | permissive | mrowan137/amrex | 13ae249c00d775eff87c0392d8b27efaf0cc4812 | 3aa6b21d1f1ed9c51c7aa93692d90c1ee6a17a82 | refs/heads/master | 2022-03-18T15:57:09.287381 | 2022-02-15T01:59:33 | 2022-02-15T01:59:33 | 219,851,095 | 0 | 0 | NOASSERTION | 2019-11-05T21:10:03 | 2019-11-05T21:10:03 | null | UTF-8 | C++ | false | false | 21,027 | cpp | #include <AMReX.H>
#include <AMReX_Parser.H>
#include <AMReX_IParser.H>
#include <map>
using namespace amrex;
static int max_stack_size = 0;
static int test_number = 0;
template <typename F>
int test1 (std::string const& f,
std::map<std::string,Real> const& constants,
Vector<std::string> const&... | [
"noreply@github.com"
] | noreply@github.com |
04bd594d804fa57793cf884eb2ee61bea9620f1f | 886d4b1d6f8e919c6491a0030a3e65c6b17a793c | /viewer/MsnhViewerNodeCfg.h | 850e9afb1d5bfbbf26a1f467eba4e013cd1fe6ef | [
"MIT"
] | permissive | wishgale/Msnhnet | 0ef7c29f3dad592f2ea2dca93dc5034f4ac23597 | 95522102b57e3cee679875ddf7766c032fde5655 | refs/heads/master | 2022-11-28T15:58:13.415871 | 2020-08-06T07:36:00 | 2020-08-06T07:36:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,123 | h | #ifndef MSNHVIEWERNODECFG_H
#define MSNHVIEWERNODECFG_H
#include <MsnhViewerView.h>
#include <MsnhViewerColorTabel.h>
#include <MsnhViewerNodeCreator.h>
namespace MsnhViewer
{
class NodeCfg
{
public:
static void configNodes()
{
NodeCreator::instance().addItem("Inputs",
{
... | [
"noreply@github.com"
] | noreply@github.com |
699d54ff5b28760c90e1ab7ec8ce7ea5cdd9f50e | be54dd706789c6911e3c33de52ac1677258c9fba | /sketchbook/libraries/IrDistCom/IrDistCom.cpp | 9a7c0f63e1b7b3a70ca4aca4b66296d12def3153 | [] | no_license | hdlam91/master | 851ad2346a863b6df631618d693d789f586ac6fd | 5f2b58944c2f2a7556bbb3f63eb2b382fa24e5f3 | refs/heads/master | 2021-05-28T19:16:17.978726 | 2015-06-14T20:30:07 | 2015-06-14T20:30:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,820 | cpp | /*
Chirp Ir communication and distance library v0.1
by Christian Skjetne
*/
#include <Wire.h>
#include "Arduino.h"
#include "IrDistCom.h"
#define front_com_pin 4
#define back_com_pin 5
uint8_t IrDistCom::irdistcom_addr_front = 0xF;
uint8_t IrDistCom::irdistcom_addr_back = 0xB;
IrDistCom::IrDistC... | [
"hongdang@stud.ntnu.no"
] | hongdang@stud.ntnu.no |
074cb6c6f2dfa1a326bd9392e9ba6970bfeb39e1 | 9da899bf6541c6a0514219377fea97df9907f0ae | /Runtime/Engine/Private/Animation/AnimNode_SequencePlayer.cpp | b086ea6ef5241bc212984874e019a5d3575a88e0 | [] | no_license | peichangliang123/UE4 | 1aa4df3418c077dd8f82439ecc808cd2e6de4551 | 20e38f42edc251ee96905ed8e96e1be667bc14a5 | refs/heads/master | 2023-08-17T11:31:53.304431 | 2021-09-15T00:31:03 | 2021-09-15T00:31:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,944 | cpp | // Copyright Epic Games, Inc. All Rights Reserved.
#include "Animation/AnimNode_SequencePlayer.h"
#include "AnimEncoding.h"
#include "Animation/AnimInstanceProxy.h"
#include "Animation/AnimTrace.h"
#include "Animation/AnimPoseSearchProvider.h"
#define LOCTEXT_NAMESPACE "AnimNode_SequencePlayer"
////////////////////... | [
"ouczbs@qq.com"
] | ouczbs@qq.com |
5e4853177cc25d22bdcc693b96390fa7efabec0c | 47a1e9e7b5c595936b0d654c532a60c6a9896730 | /4_CH_AP.ino | b1895c537fcfdfe399017433f3481644fc82c511 | [] | no_license | dhavalkalariya09/Smart-Home-Automation | 5fe8edbf3a70f2253f87ae051bfb44400f77b6a4 | fbae7e327bc1eb68e584ac9086cf3f5a98492df1 | refs/heads/master | 2020-12-29T19:18:22.269972 | 2020-02-06T14:12:25 | 2020-02-06T14:12:25 | 238,702,212 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,825 | ino |
// Load Wi-Fi library
#include <WiFi.h>
// Replace with your network credentials
// to create its own wifi network
const char* ssid = "ESP32-Access-Point";
const char* password = "123456789";
// Set web server port number to 80
WiFiServer server(80);
// Variable to store the HTTP request
String hea... | [
"noreply@github.com"
] | noreply@github.com |
0f12f4720ab91bd53098d7dddf2aa2b734532392 | 95be4d40a5ca1f2e56d3827c402cf2dc6ff424c5 | /CArrayDec.cpp | 088088dd48f11f7850e86c298c14cbef8fef0691 | [
"MIT"
] | permissive | damifi/LZW-Algorithm | 12e2287860a07382191079701a29f82fd7e476a6 | 37813db8e7522e847db8af0119e1bade533c1aa0 | refs/heads/main | 2023-07-18T14:54:08.731343 | 2021-09-09T08:59:57 | 2021-09-09T08:59:57 | 404,653,185 | 0 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 1,615 | cpp | ///*
// * CArrayDec.cpp
// *
// * Created on: 14.06.2014
// * Author: Daniel Fischer
// */
#include "CArrayDec.hpp"
#include <vector>
#include <exception>
#include <iostream>
CArrayDec::CArrayDec()
{
for(int i=0;i<256;i++)
{
m_symbolTable[i].setSymbol(intToString(i));
}
}
int CArrayDec... | [
"noreply@github.com"
] | noreply@github.com |
fc542c1a3475e5507e79abe575297ccd61cf6381 | 7e1ad1571278b1e886045313255cdd697ff04dd8 | /C++/二叉树 —— 树的子结构.cpp | 2aee8232ffbbb6530ad62296bcb906d5faf0bd10 | [] | no_license | shanyuqin/SuanFa | 262a62a015945c1e9c7643b5bc4f163e6d3f7ef8 | a943d0cda51a457a8d8f62e87348d8490357db44 | refs/heads/master | 2021-03-07T07:48:51.107403 | 2020-03-12T10:46:28 | 2020-03-12T10:46:28 | 246,252,885 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 899 | cpp | //两个二叉树A和B,判断B是不是A的子结构
#include<stack>
#include<exception>
struct BinaryTreeNode
{
int m_value;
BinaryTreeNode *m_left;
BinaryTreeNode *m_right;
};
bool DoesTree1HaveTree2(BinaryTreeNode *p1 ,BinaryTreeNode *p2){
if (p2 == NULL)
return true;
if (p1 == NULL)
return false;
if (p... | [
""
] | |
e40853d1af6bbc7c81b60a887a7b6da2940552c7 | 9f0d25223ba97bb3930c342e7709aab9d9007844 | /include/nocopy/archive.hpp | 68f019e8ebd43d43937742e609ad00ddadccd9a8 | [
"Apache-2.0",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | mikezackles/nocopy | 9a5118038385da67d121178c80ff58305af7e337 | 7ddae640e88b2bc2ab3b1130d16616da2f673c2a | refs/heads/master | 2021-03-24T13:15:08.241089 | 2016-11-12T18:31:54 | 2016-11-12T18:31:54 | 62,241,637 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,153 | hpp | #ifndef UUID_06CEC703_2131_48E7_BC79_F84A9F0F44BB
#define UUID_06CEC703_2131_48E7_BC79_F84A9F0F44BB
#include <nocopy/fwd/archive.hpp>
#include <nocopy/detail/align_to.hpp>
#include <nocopy/detail/lambda_overload.hpp>
#include <nocopy/detail/narrow_cast.hpp>
#include <nocopy/detail/reference.hpp>
#include <nocopy/deta... | [
"mikezackles@gmail.com"
] | mikezackles@gmail.com |
11c6016cd5ed6864341063d5284d17438916eb4a | 44ca6eaf7ae36a87973ccbe56896ce9312e8bdc1 | /Include/gsmGPRS.h | 461d4de2467656bf6633de90f086981b7ac1842e | [] | no_license | kenzanin/GSM---AVR | 433b5703cb927008061f273d481c0516330f2c6e | 5bf0fcf762311bc022b870292e681d0fd78a5f4c | refs/heads/master | 2020-12-14T01:12:00.774613 | 2013-11-27T18:28:23 | 2013-11-27T18:28:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,459 | h | /*AVR SOURCE FILES FOR GSM,SERIAL FUNCTIONALITY *
* Copyright (C) 2010 Justin Downs of GRounND LAB *
* www.GroundLab.cc 1% *
* *
* This program is free software... | [
"Justin@grndlab.com"
] | Justin@grndlab.com |
b9a0ee91fd545dbbfbacc974240f55a320ca490d | 93740492b18828c5a3fdffd8855b4401fa86e868 | /u_phi_1_transform.hpp | 55f46d293c8cd3e6b2f8f5c595fc6d5a4e59942b | [] | no_license | idosavion/fast-matrix-multiplication | 908265897018e6dd684fa1666a6702d15c8565ab | 25e7e1d39ddfb4bbbb7042cc368762e7b415aaf3 | refs/heads/master | 2022-01-04T14:35:26.490775 | 2020-01-18T16:37:23 | 2020-01-18T16:37:23 | 189,715,142 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 202 | hpp |
#pragma once
#include <iostream>
#include <cmath>
#include "mkl.h"
void u_phi_1_transform(double* original_a, double* transformed_a, int size, int steps_left, double* work);
| [
"elayeek@gmail.com"
] | elayeek@gmail.com |
7557dff758354fadfc5f04e5c5e57b60dcc0b473 | bd1fea86d862456a2ec9f56d57f8948456d55ee6 | /000/106/928/CWE590_Free_Memory_Not_on_Heap__delete_array_wchar_t_declare_66b.cpp | b5b614c2b1987dd2e2191c10894fafbea3cccb25 | [] | no_license | CU-0xff/juliet-cpp | d62b8485104d8a9160f29213368324c946f38274 | d8586a217bc94cbcfeeec5d39b12d02e9c6045a2 | refs/heads/master | 2021-03-07T15:44:19.446957 | 2020-03-10T12:45:40 | 2020-03-10T12:45:40 | 246,275,244 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,273 | cpp | /* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE590_Free_Memory_Not_on_Heap__delete_array_wchar_t_declare_66b.cpp
Label Definition File: CWE590_Free_Memory_Not_on_Heap__delete_array.label.xml
Template File: sources-sink-66b.tmpl.cpp
*/
/*
* @description
* CWE: 590 Free Memory Not on Heap
* BadSource: declare Data b... | [
"frank@fischer.com.mt"
] | frank@fischer.com.mt |
ee4783a1716c0a1cdae042c7feffb6c0d5ed806c | 13a06ef97a2e820302bb7061abc6d2137758fee1 | /AshEngine/include/OpenGL/OpenGLRenderer.h | 3e468cb91d17f95a38b7a91b729dceae635a595a | [
"MIT"
] | permissive | haoxiaoshuai01/3dshow | 65c5f94116a610f9613ad068b73288a962dc09d6 | 1f060dca01e2ec1edc93ddf6601743dea7f22707 | refs/heads/main | 2023-08-30T03:13:56.450437 | 2021-07-26T10:06:36 | 2021-07-26T10:06:36 | 388,115,006 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 742 | h | #pragma once
#include <OpenGLScene.h>
class OpenGLRenderer: public QObject {
Q_OBJECT
public:
OpenGLRenderer(QObject* parent = 0);
OpenGLRenderer(const OpenGLRenderer& renderer);
bool hasErrorLog();
QString errorLog();
bool reloadShaders();
void reloadFrameBuffers();
uint32_t picki... | [
"15227916361@163.com"
] | 15227916361@163.com |
986956c4864e8394e7956f416c158082d0b1d430 | c95abab9b3b0a836d2d5ed882d166dc99e913954 | /Ejercicios Timus/2012_Andres.cpp | a1f1c4b36f2e13e8a3fcd98f451da0ae761b2e06 | [] | no_license | valehp/OCI_2020 | 54e361311173f28da5911480c013247a19ff1732 | 62914eaafae4553d59f59220410b227fa95115f9 | refs/heads/main | 2023-01-29T06:26:08.668598 | 2020-12-04T21:41:55 | 2020-12-04T21:41:55 | 300,446,721 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 139 | cpp | #include <iostream>
using namespace std;
int main() {
int n;
cin >> n;
if(n>=7)cout <<"YES\n";
else cout << "NO\n";
return 0;
} | [
"noreply@github.com"
] | noreply@github.com |
a7f9d7d5e25fa79682784cca870a3bd72f8f9ee4 | c6e285a6203b03d21755dd55bd13e8d3a8bd42fc | /src/LaplacianScorer.cpp | 68fe3e64244792396d6472f0a3c88aed93f75ade | [
"MIT"
] | permissive | CamaraLab/RayleighSelection | fd7b5263360ce3ef611507ca7373dadc778a44af | f25e83a81cb4e9d8027c3b8e75dbf85c0c7f163e | refs/heads/master | 2021-12-12T09:23:57.310041 | 2021-08-12T17:50:54 | 2021-08-12T17:50:54 | 114,267,839 | 10 | 5 | MIT | 2021-08-11T18:13:31 | 2017-12-14T15:40:36 | R | UTF-8 | C++ | false | false | 10,239 | cpp | //' Computes and samples 0 and 1-dimensional laplacian scores.
//'
//' Builds an object to compute and sample values for the combinatorial laplacian score of functions
//' defined on the set of points underlying a given simplicial complex. Takes in data about the complex and
//' its 0- (and possibly 1-) dimensional lap... | [
"artur.bicalho.s@gmail.com"
] | artur.bicalho.s@gmail.com |
59b2f3de6efce482e4ee9d572fbcc3910dd79505 | b18adf09556fa66a9db188684c69ea48849bb01b | /Elsov/SkyFrame/HardwareTest/TranceiverForm.cpp | fcd6a5a273b60168a4481fcfa6efc1bdcb5dafe8 | [] | no_license | zzfd97/projects | d78e3fa6418db1a5a2580edcaef1f2e197d5bf8c | f8e7ceae143317d9e8461f3de8cfccdd7627c3ee | refs/heads/master | 2022-01-12T19:56:48.014510 | 2019-04-05T05:30:31 | 2019-04-05T05:30:31 | null | 0 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 3,853 | cpp | // TranceiverForm.cpp : implementation file
//
#include "stdafx.h"
#include "TranceiverForm.h"
#include "Attached.h"
#include "Tranceiver.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
//////////////////////////////////////////////////////////////////... | [
"hp@kozhevnikov.org"
] | hp@kozhevnikov.org |
b852c8818b9fd6c189aa101a8b7a0ed4cd4cce3d | bb6ebff7a7f6140903d37905c350954ff6599091 | /net/cert/cert_verify_proc_nss.h | d9971cf34c8bf9620200bc2dce3ea89cac3c3f35 | [
"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 | 1,676 | h | // 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.
#ifndef NET_CERT_CERT_VERIFY_PROC_NSS_H_
#define NET_CERT_CERT_VERIFY_PROC_NSS_H_
#include <certt.h>
#include "net/base/net_export.h"
#include "net/... | [
"mrobbeloth@pdiarm.com"
] | mrobbeloth@pdiarm.com |
06bb1fae6fc629eb05b74f791b00c941d984e338 | 5a60d60fca2c2b8b44d602aca7016afb625bc628 | /aws-cpp-sdk-iotevents/include/aws/iotevents/model/ListInputRoutingsResult.h | 06e913b7b6a3a58bd606d34e8ee17d8ebc09fda6 | [
"Apache-2.0",
"MIT",
"JSON"
] | permissive | yuatpocketgems/aws-sdk-cpp | afaa0bb91b75082b63236cfc0126225c12771ed0 | a0dcbc69c6000577ff0e8171de998ccdc2159c88 | refs/heads/master | 2023-01-23T10:03:50.077672 | 2023-01-04T22:42:53 | 2023-01-04T22:42:53 | 134,497,260 | 0 | 1 | null | 2018-05-23T01:47:14 | 2018-05-23T01:47:14 | null | UTF-8 | C++ | false | false | 4,264 | h | /**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/iotevents/IoTEvents_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSVector.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/iotevents/model/RoutedResource... | [
"aws-sdk-cpp-automation@github.com"
] | aws-sdk-cpp-automation@github.com |
2b721eaa43bb8186d6d16c95ddc4d610946577ad | 029462827b95625e0b72f1dada384c49106ac409 | /dellve_cudnn_benchmark/include/CuDNN/ConvolutionBwdDataAlgoPerf.hpp | 53366aaab3584ea072bb32aff3a685b3422c9ae3 | [
"MIT"
] | permissive | dellve/dellve_cudnn | c05c993bacfe721f6a34e3ec83aaa9d7e09ec11c | 61491953f3f3953539e6060ccf18c303e7a3c1fd | refs/heads/master | 2021-01-22T23:15:58.258731 | 2017-05-02T16:45:49 | 2017-05-02T16:45:49 | 89,177,551 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 282 | hpp | #ifndef PYCUDNN_CONVOLUTION_BWD_DATA_ALGO_PERF_HPP
#define PYCUDNN_CONVOLUTION_BWD_DATA_ALGO_PERF_HPP
#include <cudnn.h>
namespace CuDNN {
typedef cudnnConvolutionBwdDataAlgoPerf_t ConvolutionBwdDataAlgoPerf;
} // PyCuDNN
#endif // PYCUDNN_CONVOLUTION_BWD_DATA_ALGO_PERF_HPP
| [
"jayeshjo1@utexas.edu"
] | jayeshjo1@utexas.edu |
6ed2a2dbd3fd1f1745861abeced55eedf2da1936 | 5621fa1ad956aba95995c474f35c09c78a4f008b | /volume11_1193.cpp | 6ff9ba4faee33ee9f17fc63db260f89a91e2660c | [] | no_license | tasogare66/atcoder | ea3e6cdcdd28f2c6be816d85e0b521d0cb94d6a3 | 16bc66ab3f72788f1a940be921edc681763f86f1 | refs/heads/master | 2020-05-09T14:33:30.659718 | 2020-04-14T14:09:37 | 2020-04-14T14:09:37 | 181,196,939 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,817 | cpp | //http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=1193&lang=jp
//連鎖消滅パズル
#include <bits/stdc++.h>
#if LOCAL
#include "dump.hpp"
#else
#define dump(...)
#endif
using namespace std;
using ll=long long;
const ll LINF = 0x1fffffffffffffff;
#define FOR(i,a,b) for(ll i=(a);i<(b);++i)
#define REP(i,n) FOR(i,0,n)
temp... | [
"tasogare66@gmai.com"
] | tasogare66@gmai.com |
20a6fcafc0523e5f59b36be149a334f9ef3fe6f3 | 0c861bd330a647984077430a1af63f549f06085a | /configuration.h | 3b8760fa38db94e8f4484506cd1fc566ede3da11 | [] | no_license | derjust/sqlspruch | 7fba5bd7fa6e5c54f291a1c8704addd94167dd5d | 3dfed8cb4ebef7bbb8bda8c2597cc5de4be94f66 | refs/heads/master | 2021-01-12T12:13:36.729394 | 2006-10-16T15:30:42 | 2006-10-16T15:30:42 | 72,374,048 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 404 | h | #include "unistd.h"
#include <cstdlib>
#include <qstring.h>
#include <iostream>
using namespace std;
class TConfig
{
private:
QString myHost;
QString myUsername;
QString myPassword;
QString myError;
unsigned int myZeilenumbruch;
public:
TConfig(int argc, char **argv);
QString GetUsername();
QString GetPasswo... | [
"derjust@users.noreply.github.com"
] | derjust@users.noreply.github.com |
696237b87ed6efae1a01f0f640ad56b94e3c9523 | 06cc6e99ee1d0a6ad120763ad004c38d757b77cd | /Timus/1654.cpp | 1f10524b7e10e8ffa8251aa8a65374d091990e2b | [] | no_license | MaicolGomez/ACM | 0eddec0ba8325c6bdc07721acc57a361c03c4588 | ff23b2c24daa5df1cc864b134886ff81a6d488c7 | refs/heads/master | 2020-03-06T20:57:14.628666 | 2018-03-28T01:46:27 | 2018-03-28T01:51:08 | 127,066,787 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,159 | cpp | #include<cstdio>
#include<iostream>
#include<cstring>
#include<vector>
#include<cmath>
#include<algorithm>
#include<climits>
#include<set>
#include<deque>
#include<queue>
#include<map>
#include<climits>
#include<string>
#include<stack>
#include<sstream>
using namespace std;
#define pi (2.0*acos(0.0))
#define eps 1e-6
#... | [
"maycolgo@gmail.com"
] | maycolgo@gmail.com |
0ada146cd126d3055baa5414c8b8e115cdfc2419 | f7cbe3ca5cdbbf18cbff04ea8f9f06fa9ac5be59 | /suwhoanlim/6.DFS/11403_findRoute.cpp | 4a4e4ce6b1c7192f76117bcde4eaea9c016b40bc | [] | no_license | I-ll-Go-Rythm/2021_winter_study | 4fd822c96469e68ced6d01f31169bf39b48ef0cd | 9040022f9d1d13feef433b22f7ee1352e064d1e9 | refs/heads/master | 2023-04-21T13:46:57.066861 | 2021-04-30T12:34:02 | 2021-04-30T12:34:02 | 332,349,909 | 1 | 0 | null | 2021-01-24T02:19:27 | 2021-01-24T02:18:33 | C++ | UTF-8 | C++ | false | false | 947 | cpp | // you need vis array to check whether the node was previously visited or not
// this code can be shortened but i am too lazy to do so
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int N;
vector<int> vec;
int arr[101][101];
int sol[101];
int vis[101];
void dfs(int from, int to) {
... | [
"ludence1029@gmail.com"
] | ludence1029@gmail.com |
32cd3325eff6b8c710ab791f04fe03e00b922e7d | c2aba0372ecdeff34f79471f69c4eec320be1b28 | /pset09/asst/a9.h | e7c2181ecd07f47eb3b8dc946e1b641dce1ed036 | [] | no_license | nicholaslocascio/6865 | 471b917d0135641ab09ad42d797f4277a9a253ca | c7f98b38ee08942ef989dcbcc2c65f45bd62af7c | refs/heads/master | 2020-05-20T05:59:12.826908 | 2015-04-23T00:40:04 | 2015-04-23T00:40:04 | 30,370,882 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 787 | h | #ifndef _A9_H_
#define _A9_H_
#include <iostream>
#include <cmath>
#include <Halide.h>
#include <image_io.h>
using std::string;
using std::map;
using std::cout;
using std::cerr;
using std::endl;
void apply_auto_schedule(Func F);
Image<uint8_t> SmoothGradNormalized(void);
Image<uint8_t> WavyRGB(void);
Image<uint8_t> ... | [
"nicholasjlocascio@gmail.com"
] | nicholasjlocascio@gmail.com |
efe0ce6cb2bf621a9606ca5bfc7d0710ad728151 | e5d80ba4a33aa6a2c6069fdf661e258be4552887 | /src/samples/game/android/app/src/main/cpp/bindings.cpp | 13d0ff4e4eb21c61c75824c538259fce924c646a | [
"Zlib"
] | permissive | sjmerel/ck | 56fc91b805ee3a1b1db8bb7e0f01918570db9388 | 5d4cb073ec95968bc1b461dfddf5a4a89e5d4c31 | refs/heads/master | 2023-03-16T05:33:18.183543 | 2020-02-23T19:05:22 | 2020-02-23T19:05:22 | 242,427,476 | 24 | 12 | Zlib | 2021-06-21T06:35:05 | 2020-02-22T23:36:49 | C++ | UTF-8 | C++ | false | false | 1,268 | cpp | #include <jni.h>
#include "../../../../../game.h"
extern "C"
{
void
Java_com_crickettechnology_game_GameActivity_nativeCreate(JNIEnv* env, jclass, jobject activity)
{
gamePrintf("game create\n");
gameInit(env, activity);
}
void
Java_com_crickettechnology_game_GameRenderer_nativeGlInit(JNIEnv* env, jclass)
{
... | [
"steve@focusmotion.io"
] | steve@focusmotion.io |
bbd3bd8997523e1caaf036e574b2c2f9fb2ef1a0 | d6f4fe10f2b06486f166e8610a59f668c7a41186 | /Base/cxx/vtkImageZoom2D.cxx | 14cf3bf58c3e231bf2c19f1bcff526aa14522882 | [] | no_license | nagyistge/slicer2-nohistory | 8a765097be776cbaa4ed1a4dbc297b12b0f8490e | 2e3a0018010bf5ce9416aed5b5554868b24e9295 | refs/heads/master | 2021-01-18T10:55:51.892791 | 2011-02-23T16:49:01 | 2011-02-23T16:49:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,167 | cxx | /*=auto=========================================================================
Portions (c) Copyright 2005 Brigham and Women's Hospital (BWH) All Rights Reserved.
See Doc/copyright/copyright.txt
or http://www.slicer.org/copyright/copyright.txt for details.
Program: 3D Slicer
Module: $RCSfile: vtkIma... | [
"pieper@bwh.harvard.edu"
] | pieper@bwh.harvard.edu |
f4d178b026ac3c1cb5136a0040f4c56bfba8c966 | 1431976f2643e5bd94a33d774314a733b0e3c96f | /fnc1.cpp | 03c764df5acfcb9af7ab4a8ff1c2352d8886e760 | [] | no_license | mohsinenur/UVaOnlineJudge | d9a4297893e16d54d320b2010d6661acb7b1aae0 | 21b12b1d00be0f31a9c6f9f941ccaa8543f48ea5 | refs/heads/master | 2021-08-08T23:26:20.197703 | 2017-11-11T15:58:07 | 2017-11-11T15:58:07 | 110,358,606 | 0 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 202 | cpp | #include<bits/stdc++.h>
using namespace std;
void nameP(char w[100]){
cout << "My name is " << w << endl;
}
€
int main()
{
char w[100];
cin.getline(w,100);
nameP(w);
return 0;
}
| [
"follow.mohsin@gmail.com"
] | follow.mohsin@gmail.com |
963230b70556ba635430d1afb9395a5a7a944a39 | 8da0a2eb756ec80cc3d706360bd7d87d6715bd19 | /Programs/Arrays/MatrixMultiply.cpp | 49626c9110946f55a7d82fde8ff1b83e8ea9739b | [] | no_license | Lordhacker756/CompetativeCoding | 34c4a44c9668960fcf5f81b01d5792cd8254d185 | 925dc39e00427d25f3f6d6d82556f55c8d1b5604 | refs/heads/main | 2023-08-15T00:40:35.166713 | 2021-10-07T06:33:57 | 2021-10-07T06:33:57 | 410,946,350 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,285 | cpp | // Code for multiplying two matrices!😎
#include <iostream>
using namespace std;
int main()
{
int n1, n2, n3;
cin >> n1 >> n2 >> n3;
int m1[n1][n2];
int m2[n2][n3];
// Taking Inputs for both matrices
for (int i = 0; i < n1; i++)
{
for (int j = 0; j < n2; j++)
{
c... | [
"utkarshmishra2001@gmail.com"
] | utkarshmishra2001@gmail.com |
b4bc05d810166c63e94e9455f31dc448f8758d3c | d7ace509f6ce64003e3b63e13f581cc8bc86dc1b | /include/GafferUIBindings/NodeGadgetBinding.inl | 26341a4025282b09905013540d2248f0a881c28b | [
"BSD-3-Clause"
] | permissive | ldmoser/gaffer | b9cfd842c0dfde14b0dc2c9fd41fe116a85638f8 | 2987bc772765f47ce7414bd129c92a1c9b16b18a | refs/heads/master | 2021-01-18T20:35:41.445317 | 2014-07-04T15:43:41 | 2014-07-04T15:43:41 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,593 | inl | //////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2014, Image Engine Design 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:
//
// ... | [
"thehaddonyoof@gmail.com"
] | thehaddonyoof@gmail.com |
e139b688fa2d0d48201345215e9d55bed72d0a48 | 3e5f3f010ccaa347ae32cb31a791e924c2ee73ae | /src/trac_ik_lib/src/trac_ik.cpp | 1e7659226fbf719e080cd01e33af0d8ee7c3757e | [] | no_license | brianzhan/trac_ik1 | c6ce9126a77a90ef47d2e3ba8a760e08f50d8cae | 5add2d3ea135d6d496c0bdb0ecbe11549bac4083 | refs/heads/master | 2021-04-30T22:47:06.257812 | 2016-02-10T01:49:40 | 2016-02-10T01:49:40 | 51,415,030 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 17,899 | cpp | /********************************************************************************
Copyright (c) 2015, TRACLabs, 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:
1. Redistributions of source cod... | [
"brian.zhan@u.northwestern.edu"
] | brian.zhan@u.northwestern.edu |
e5c2c78d2cc2b6d9085638e1a58829f0c5494122 | 9d497b51303f46268866a303a93b24a0e764cdbf | /src/xzero/StringUtil.cc | 32ad13a50739cf50e1b4488a6835359114e61491 | [
"MIT"
] | permissive | klevler/x0 | 8abf236905f0ee046cdb509b7f196fecd69d3691 | 62896da39d4808853a8702c9ae7186e5a5ac2a27 | refs/heads/master | 2021-01-24T09:01:48.455199 | 2016-09-19T22:13:52 | 2016-09-19T22:13:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,543 | cc | // This file is part of the "x0" project, http://github.com/christianparpart/x0>
// (c) 2009-2016 Christian Parpart <trapni@gmail.com>
//
// Licensed under the MIT License (the "License"); you may not use this
// file except in compliance with the License. You may obtain a copy of
// the License at: http://opensource... | [
"trapni@gmail.com"
] | trapni@gmail.com |
dc66ebb05796800bb17beeb9975d3def028c8d4c | 8502fc2c0fafea5faa0c12ae60b139401a31528d | /KeDeiTFT/3.5inch/int_number_add_reduce/int_number_add_reduce.ino | 7fea840be1e1449061d0a906653f367afd2a2777 | [] | no_license | osoyoo/driver | b5e8b32d2dd271729f1d2859b94ca184486edf26 | 37f1f9f4e48a37bcaa664bfa8389a768d160c0db | refs/heads/master | 2023-04-03T01:53:25.406631 | 2023-03-22T09:15:15 | 2023-03-22T09:15:15 | 89,325,918 | 2 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 2,229 | ino | #include <KeDei_TFT.h>
#include <KeDei_TP.h>
#include "KeDei_font.h"
#include "KeDei_button.h"
#define backcolor 0xf800
//LCD class object is TFT
TFTLCD TFT;
//Font class object is font
Font font;
//Touchuscreem TP class object is tp
TP tp;
//Two Button class object is Button1,Button2
Button Button1,Button2;
int va... | [
"yujian_ca@hotmail.com"
] | yujian_ca@hotmail.com |
518c0766b6d87591a3d95d32a19c494ee85065ce | 94aa2f1a183f4800777e99f7b03e67a5e732e4d0 | /src/lib/tls/tls_callbacks.cpp | f25f392b330d15eb58c5f0be0ce233a354b13e3c | [
"BSD-2-Clause"
] | permissive | Bulat-Ziganshin/botan | e7e71bf4b2cbff9560cc2eaed39edd46a5e1f0b2 | d90c21b69cf0457782e5862c7b87d6e72dea1c40 | refs/heads/master | 2021-01-12T03:44:45.926033 | 2017-01-07T02:28:39 | 2017-01-07T02:28:39 | 78,261,867 | 1 | 0 | null | 2017-01-07T06:00:17 | 2017-01-07T06:00:17 | null | UTF-8 | C++ | false | false | 1,672 | cpp | /*
* TLS Callbacks
* (C) 2016 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/tls_callbacks.h>
#include <botan/tls_policy.h>
#include <botan/x509path.h>
#include <botan/ocsp.h>
#include <botan/certstor.h>
namespace Botan {
TLS::Callbacks::~Callbacks() {}
void T... | [
"jack@randombit.net"
] | jack@randombit.net |
008dd714ddf450daab84e9b42dbe0374cf36bd6b | 10d41367e7ec3f5d4074ceabae024b3ded3b4a13 | /c++/src/connect/services/timeline.hpp | 8c5420a329f1919e715b8ea2d7ebe97af9f0f994 | [] | no_license | avtomaton/blast-ncbi | fb88c01df0a0f721dc942b7e00bb2cab22d3cac6 | a76cdd948affcc2c5c1c1ae6fc1481098e650d2d | refs/heads/master | 2021-01-01T06:27:01.871908 | 2015-03-06T09:39:43 | 2015-03-06T09:39:43 | 31,762,500 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,299 | hpp | #ifndef CONNECT_SERVICES__TIMELINE_HPP
#define CONNECT_SERVICES__TIMELINE_HPP
/* $Id: timeline.hpp 447459 2014-09-25 20:43:06Z kazimird $
* ===========================================================================
*
* PUBLIC DOMAIN NOTICE
* National Center for Biotechnol... | [
"avtomaton@gmail.com"
] | avtomaton@gmail.com |
4326b3afa681bd5b3576ae98d580dd29ea35d0e4 | 24893618660f768d9c411c0723ccbe822a628913 | /Mammoth/TSE/MissionProperties.cpp | 258efd3cdca871cd778da997d6667717764603dc | [
"LicenseRef-scancode-warranty-disclaimer"
] | no_license | kronosaur/TranscendenceDev | da4940b77dd1e2846f8d1bfa83e349b1277e506d | a53798ed0f23cbbafa69b85dc1b9ec26b1d5bdda | refs/heads/master | 2023-07-09T11:17:37.539313 | 2023-07-01T05:05:49 | 2023-07-01T05:05:49 | 164,558,909 | 31 | 14 | NOASSERTION | 2022-05-12T21:06:30 | 2019-01-08T04:15:34 | C++ | UTF-8 | C++ | false | false | 6,342 | cpp | // MissionProperties.cpp
//
// CMission class
// Copyright (c) 2019 Kronosaur Productions, LLC. All Rights Reserved.
#include "PreComp.h"
#define PROPERTY_ACCEPTED_ON CONSTLIT("acceptedOn")
#define PROPERTY_COMPLETED_ON CONSTLIT("completedOn")
#define PROPERTY_DEBRIEFER_ID CONSTLIT("debrieferID")
#define ... | [
"public@neurohack.com"
] | public@neurohack.com |
6a5d21ad4d7c058ce18f8d911ecd20a75b2851e7 | 2419faef76f0364e2b2248d14350ca4ed2e1f99e | /d03/ex04/ScavTrap.cpp | 9894dae5e86f6dd3241172692ee00830f4f6908b | [] | no_license | bgoncharov/42_CPP_Piscine | e2cd1f45f2d698fc2ff7d22e03c56030c5272a31 | f41afd948c921d80f9993c154f9d0ee9806fe695 | refs/heads/master | 2020-08-20T19:35:52.877690 | 2019-11-24T01:55:01 | 2019-11-24T01:55:01 | 216,058,896 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,617 | cpp | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ScavTrap.cpp :+: :+: :+: ... | [
"bora4bora@gmail.com"
] | bora4bora@gmail.com |
e5f39c5a69758955536be82b436a16008a7ecddb | 960f1f5141539d528401a27f430300cfb8519a03 | /src/modules/planning/state_lattice/include/state_lattice/primitive_generator.hpp | 0602787bb3946cbb0d53de9c7f89a77f12383071 | [
"MIT"
] | permissive | LiYang412/robotnav | 493da43575a4063bd4848560db665570f91b2d9e | ec66655ab90164a3261f291bf91ae844364d35af | refs/heads/master | 2023-03-03T22:52:08.497195 | 2020-10-18T15:27:16 | 2020-10-18T15:27:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,570 | hpp | /*
* primitive_generator.hpp
*
* Created on: Oct 21, 2018 23:46
* Description:
*
* Copyright (c) 2018 Ruixiang Du (rdu)
*/
#ifndef PRIMITIVE_GENERATOR_HPP
#define PRIMITIVE_GENERATOR_HPP
#include <cstdint>
#include "state_lattice/motion_primitive.hpp"
#include "state_lattice/details/point_kinematics.hpp"
... | [
"ruixiang.du@gmail.com"
] | ruixiang.du@gmail.com |
013121c05215bf39788ce3e86d91325f9771e22c | d266eb7b6ba92c7658b563975c14b64d4e5d50cc | /libs/guibase/arrowsettingcontainer.h | 3c63ac617e56346b1741340f3f346d31698ff0e8 | [] | no_license | scharlton2/prepost-gui | 5c0a7d45c1f7156513d63e915d19f71233f15f88 | 007fdfcaf4d3e42b606e8edad8285b6de2bfd440 | refs/heads/master | 2023-08-31T01:54:11.798622 | 2022-12-26T01:51:06 | 2022-12-26T01:51:06 | 68,759,445 | 0 | 0 | null | 2020-05-14T22:28:47 | 2016-09-20T22:47:28 | C++ | UTF-8 | C++ | false | false | 1,905 | h | #ifndef ARROWSETTINGCONTAINER_H
#define ARROWSETTINGCONTAINER_H
#include "guibase_global.h"
#include "scalarbarsetting.h"
#include <misc/colorcontainer.h>
#include <misc/compositecontainer.h>
#include <misc/doublecontainer.h>
#include <misc/enumcontainert.h>
#include <misc/intcontainer.h>
#include <misc/stringcontain... | [
"kskinoue@gmail.com"
] | kskinoue@gmail.com |
0d0b9b24035022aef3568432b8ec13603cec82bf | 124e7b896952812492265cae6a9ffabd58b5e315 | /Lib/Arduino/libraries/MiiGenericModem/MiiGenericModem.cpp | b771f0a5ff8e7f366c498556187389e1dfab6a38 | [] | no_license | sjhoeksma/Mii | f42b3cab329a7226eb2126fc55e0fdeae8f20419 | 7014e9417c16afb0f8f0ca415cedd844b3fd8ebf | refs/heads/master | 2021-01-17T15:58:53.510719 | 2017-02-24T18:56:51 | 2017-02-24T18:56:51 | 82,954,770 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 21,053 | cpp | #include <MiiGenericModem.h>
#if defined MPIDE
#include <peripheral/int.h>
#define memcpy_P memcpy
#define ATOMIC_BLOCK_START unsigned int __status = INTDisableInterrupts(); {
#define ATOMIC_BLOCK_END } INTRestoreInterrupts(__status);
#elif defined ARDUINO
#include <util/atomic.h>
#define ATOMIC_BLOCK_START ATOMIC... | [
"sierk@hoeksma.org"
] | sierk@hoeksma.org |
894ce2ecb1809a45ddd6a9d01089973f13208348 | d49f9912788a9e3bba936731955e53b69596a3fd | /models/break.h | abaa29b58395dda63899215e93ff297fddd52a0a | [] | no_license | ChechenItza/Daily-Planner | 9f6af0dcb3512a059c9783b36f0cd12b69a7f532 | 61b2978bc2057f1010a60a6ca391aebaf84f8daf | refs/heads/master | 2022-11-09T16:27:47.272176 | 2020-06-28T13:30:59 | 2020-06-28T13:30:59 | 99,214,353 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 138 | h | #ifndef BREAK_H
#define BREAK_H
class QTime;
struct Break
{
QTime start_time;
QTime end_time;
int id;
};
#endif // BREAK_H
| [
"artka.kazaktar@gmail.com"
] | artka.kazaktar@gmail.com |
88718161c9b47e954d3020e3b6cdeadf3c5bb74b | 88fe84c79e5740b4aaa068df6a70e35841a68d25 | /awkward-cpp/src/cpu-kernels/awkward_IndexedArray_flatten_none2empty.cpp | 92365f80803f21b660fa05909c8f584dbb0302b8 | [
"BSD-3-Clause"
] | permissive | scikit-hep/awkward | 176f56182a936270e163eab92ea18368c2bdc1be | 519bba6ed2eec4e227994d2fd1a62b2a51f15e20 | refs/heads/main | 2023-09-02T20:19:10.175088 | 2023-09-01T20:13:25 | 2023-09-01T20:13:25 | 202,413,762 | 208 | 22 | BSD-3-Clause | 2023-09-14T17:19:29 | 2019-08-14T19:32:12 | Python | UTF-8 | C++ | false | false | 1,934 | cpp | // BSD 3-Clause License; see https://github.com/scikit-hep/awkward-1.0/blob/main/LICENSE
#define FILENAME(line) FILENAME_FOR_EXCEPTIONS_C("src/cpu-kernels/awkward_IndexedArray_flatten_none2empty.cpp", line)
#include "awkward/kernels.h"
template <typename T, typename C>
ERROR awkward_IndexedArray_flatten_none2empty(
... | [
"noreply@github.com"
] | noreply@github.com |
9d5e7f5ed72a3106fe68346398a097e58463d190 | a8efa18d98e651f7186e898507f78e3ca46c6583 | /threadpool/threadpool.h | 169587421f8e9d75ceae511739c357f73e6e6bcf | [] | no_license | yyt12345/summerbiubiu | 8f2b8f09bc823464c2f70dc7742165e07e114b48 | b16262b6beff2c638a59dc6cf5078d29c4b61d57 | refs/heads/master | 2021-03-06T22:35:32.984869 | 2020-05-18T02:51:33 | 2020-05-18T02:51:33 | 246,229,574 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 774 | h | #include <thread>
#include <mutex>
#include <condition_variable>
#include <queue>
#include <functional>
typedef struct task {
void* (*run)();
//void* (*run)(void* args);
//void* arg;
struct task* next;
}task_t;
class threadpool
{
int counter;//已有线程数
int idle;//空闲线程数
int Max_threads;//最大可容纳线程数
... | [
"noreply@github.com"
] | noreply@github.com |
6658f57a6b74585759cc109994a8984578dfb1a1 | c2427408a4c5265595f1365d44454bdb38a0bf4e | /src/htmlstruct/ref.h | 6d0926497fe6bd89ac75f67291f940f23ee6325e | [] | no_license | Patrickxzm/P_Arthur | 07265bea5c30fa70275f564720bd020b2f865d94 | 5c0ee965a0116638befb3f92cb38d38f7cf28ffa | refs/heads/master | 2021-05-16T02:42:16.103559 | 2016-11-25T02:37:46 | 2016-11-25T02:37:46 | 20,324,464 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 734 | h | #ifndef _PAT_REF_H_102402
#define _PAT_REF_H_102402
#include <string>
#include <ostream>
using std::ostream;
using std::string;
class CRef {
public:
CRef(const string &url, int pos, const string &tag);
virtual ~CRef();
void addref(const char* ref);
const string& url() const
{
return _url;
}
const string &urls... | [
"ZhengmaoXIE@gmail.com"
] | ZhengmaoXIE@gmail.com |
61ccc4df083d468a275d6101a80e337aadc6245f | 8c1009ebbfc34777c677d410aada9e80364fa20d | /src/UI/Node.cpp | d0a78419e2cd1774b3259787cf7a14092facd365 | [
"MIT"
] | permissive | makzyt4/dungeon-saga | 3403daafafb6d2dbee34833b1c8d8132059014db | a367d35fe2c4404a380e61f5b363e4a812cfa2c5 | refs/heads/master | 2021-04-15T07:21:05.438581 | 2018-04-27T08:22:25 | 2018-04-27T08:22:25 | 126,694,751 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 650 | cpp | #include "../../include/UI/Node.hpp"
ds::Node::Node() {
state = MenuState::Normal;
mouseHoverAction = [](){};
mousePressedAction = [](){};
mouseReleasedAction = [](){};
}
void ds::Node::listen(sf::Event* event) {
onMouseHoverAction(event);
onMouseReleasedAction(event);
onMousePressedAction... | [
"maksymilian.zytkiewicz@gmail.com"
] | maksymilian.zytkiewicz@gmail.com |
db9d29495bd91fb6ece71ea8e6a52bb5f8ad8a28 | 711e5c8b643dd2a93fbcbada982d7ad489fb0169 | /XPSP1/NT/base/fs/utils/dfrg/dataiocl.cpp | 62ce458400d19b84ea94215de3476eb3f3305dcb | [] | no_license | aurantst/windows-XP-SP1 | 629a7763c082fd04d3b881e0d32a1cfbd523b5ce | d521b6360fcff4294ae6c5651c539f1b9a6cbb49 | refs/heads/master | 2023-03-21T01:08:39.870106 | 2020-09-28T08:10:11 | 2020-09-28T08:10:11 | null | 0 | 0 | null | null | null | null | IBM852 | C++ | false | false | 7,523 | cpp | /**************************************************************************************************
FILENAME: DataIoClient.cpp
COPYRIGHTę 2001 Microsoft Corporation and Executive Software International, Inc.
*/
#define INC_OLE2
#include "stdafx.h"
#ifndef SNAPIN
#include <windows.h>
#endif
#include... | [
"112426112@qq.com"
] | 112426112@qq.com |
aa0cae78dc45c3feab862f2bc7d148f4d3c1591d | 5ec3126fa503c5ed2c0bcd6dbf487d3df1a4c95c | /src/rpcrawtransaction.cpp | 548e0443c26cc5c656b1dba2d0b2d0dd6e34e71a | [
"MIT"
] | permissive | voxpopulidev/voxpopulicoin | f964cee9964a476668ffc382bd48de44ac395b30 | 6f49fa21f7bef0284a22a77c2679d10f99213b08 | refs/heads/master | 2021-01-13T02:27:05.749931 | 2014-10-12T00:26:22 | 2014-10-12T00:26:22 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 20,288 | cpp | // Copyright (c) 2010 Satoshi Nakamoto
// Copyright (c) 2009-2012 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include <boost/assign/list_of.hpp>
#include "base58.h"
#include "bitcoinrpc.h"
#inclu... | [
"voxpopulidev@yahoo.fr"
] | voxpopulidev@yahoo.fr |
b10c6a21e047ff1ca1249e3e34147fbd7be9eece | 093ac11d988780897665ba042eb357bbd0cb1b8e | /init/init_sec.cpp | 72befaba7566e687d78e55bb807e087daccc2807 | [] | no_license | SmatMan/android_device_samsung_universal7880-common | 30bcfd6b5352ac342b9d83c8236113587b5ddf7f | 86c9e0bc7b50eba0927f8cffb8774d53ecbe1951 | refs/heads/master | 2021-02-24T21:33:23.006007 | 2020-03-06T14:38:11 | 2020-03-06T14:38:11 | 245,442,109 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,918 | cpp | #include <stdio.h>
#include <stdlib.h>
#include <android-base/logging.h>
#include <android-base/properties.h>
#define _REALLY_INCLUDE_SYS__SYSTEM_PROPERTIES_H_
#include <sys/_system_properties.h>
#include "property_service.h"
#include "vendor_init.h"
#include "init_sec.h"
#define MODEL_NAME_LEN 5 // e.g. "A520F"
... | [
"gamingajun10@gmail.com"
] | gamingajun10@gmail.com |
fc99a1e7da041c378f1bb703c4cb6bbd5b84f163 | 14bab044fc7c0b7c97a6198ce9173de2264141f7 | /source/fir/Types/ArrayType.cpp | e0f574592292ce93650f9a67303cb57dc7be41dc | [
"Apache-2.0"
] | permissive | firecrackerz/flax | 462d458302600eba9805bf98b9256e99272d5173 | dc31d76ae6ac4b6702c1b0ca0232294a124bc386 | refs/heads/master | 2020-06-06T12:33:44.481296 | 2019-04-28T16:05:07 | 2019-04-28T16:05:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,319 | cpp | // Type.cpp
// Copyright (c) 2014 - 2016, zhiayang@gmail.com
// Licensed under the Apache License Version 2.0.
#include "ir/type.h"
namespace fir
{
ArrayType::ArrayType(Type* elm, size_t num) : Type(TypeKind::Array)
{
this->arrayElementType = elm;
this->arraySize = num;
}
ArrayType* ArrayType::get(Type* elem... | [
"zhiayang@gmail.com"
] | zhiayang@gmail.com |
946c7f79040210323d3f2d37f45417eb8ec52697 | b01b8d2fd68d8af15758f3fc1bec1cefe61825e3 | /src/Face.h | d4e73270a52815fa1b26474e6965e5f0b2b5d3ea | [
"BSD-2-Clause"
] | permissive | danheeks/HeeksCAM | 5989cafc832880154033617354578c40306cacde | eb54f5c402effd74aa97fee4041ab303bafd1a7e | refs/heads/master | 2020-12-29T02:24:59.490386 | 2018-10-11T12:40:18 | 2018-10-11T12:40:18 | 32,216,858 | 6 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 2,928 | h | // Face.h
// Copyright (c) 2009, Dan Heeks
// This program is released under the BSD license. See the file COPYING for details.
#pragma once
class CEdge;
class CLoop;
class CShape;
class CNurbSurfaceParams;
class CFace:public HeeksObj{
private:
TopoDS_Face m_topods_face;
#if _DEBUG
double m_pos_x;
... | [
"danheeks@gmail.com"
] | danheeks@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.