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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
5404740fc677ff64f92fbcf6f24f9b5db9e2b323 | cd9a6efc565f8d05d21d57a7f4da39c955600d66 | /gym/index00_09/ioi2021_02/GK.cpp | 32f2368d7863969dcf609561961d7a0ec5019915 | [
"Apache-2.0"
] | permissive | Tanklong/IOI2021-training | d985ff981f35ebc26c949fe5c80eb08caf550492 | 4f21cef8eec47330e3db77a3d90cbe2309fa8294 | refs/heads/main | 2023-02-09T16:15:44.809189 | 2021-01-08T15:29:06 | 2021-01-08T15:29:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,151 | cpp | #include <bits/stdc++.h>
const int MAXN = 64;
typedef unsigned long long LL;
int n;
LL A[MAXN], S;
namespace huge {
void solve() {
LL iv = 1, t = A[0];
int dig = 0;
while (!(t & 1)) t >>= 1, ++dig;
for (int i = 0; i < 6; ++i)
iv = iv * (2 - iv * t);
for (int T = 0; T < (1 << dig); ++T) {
for (int i = ... | [
"daklqw@outlook.com"
] | daklqw@outlook.com |
cc60ea52dc9beace76302d4998ce9ec5993054b4 | 30bdd8ab897e056f0fb2f9937dcf2f608c1fd06a | /Codes/AC/1930.cpp | fc08eea91e04cea25e1215a7ed689645e6a32b76 | [] | no_license | thegamer1907/Code_Analysis | 0a2bb97a9fb5faf01d983c223d9715eb419b7519 | 48079e399321b585efc8a2c6a84c25e2e7a22a61 | refs/heads/master | 2020-05-27T01:20:55.921937 | 2019-11-20T11:15:11 | 2019-11-20T11:15:11 | 188,403,594 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 867 | cpp | #include <bits/stdc++.h>
using namespace std;
int const N = 2e5 + 1;
int n, k, arr[N];
map<long long, vector<int> > mp;
int main() {
#ifndef ONLINE_JUDGE
freopen("in", "r", stdin);
#endif
cin >> n >> k;
for(int i = 0; i < n; ++i) {
cin >> arr[i];
mp[arr[i]].push_back(i);
... | [
"harshitagar1907@gmail.com"
] | harshitagar1907@gmail.com |
fb52a100fbb64110ec71db76310c0a75cb45a56a | 07fc009c14f3147327f5349b7f023a60b8772a27 | /opgl1/src/snake/square.cpp | c8d888541f8c6dae8751600611169a5ae8810d0e | [] | no_license | bbugday/opgl | 8148d51504cac2ba8cf41820d85478224a477bf8 | 9d3ccbc62f928fa5522a30c140ab64a239aa087f | refs/heads/main | 2023-06-19T23:44:11.186207 | 2021-07-19T22:30:22 | 2021-07-19T22:30:22 | 381,774,329 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 449 | cpp | #ifdef SNAKE_GAME
#include "square.h"
#include <iostream>
float Square::velocity = SQUARE_LENGTH;
Square::Square(float x, float y, Direction direction) :
x(x), y(y), direction(direction)
{}
void Square::move()
{
switch (direction)
{
case Direction::LEFT:
x -= velocity;
break;
case Direction::RIGHT:
x +... | [
"bugdayberke@gmail.com"
] | bugdayberke@gmail.com |
2dde2632385ef5ff2cc14437b570cdbad8ada204 | 43c9cc505fadc0101f41f7b1833bc81ec9201aef | /C++ Example Programs/Object Pointers/Object Pointers/main.cpp | ccfbd1ce2cfab534a6b28db380cd8955945f2455 | [] | no_license | jrlauer/Cpp | 804a4217763ddfb67aeac0106276dfa5e2c5c238 | e42993de49bc89c345d275a69cf954bf58a9bf67 | refs/heads/master | 2020-04-04T12:47:13.379296 | 2018-11-03T01:17:44 | 2018-11-03T01:17:44 | 155,937,642 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 516 | cpp | //Object Pointer
#include <iostream>
using namespace std;
class P_example {
int num;
public:
void set_num(int val) {num = val;}
void show_num() {cout << num << "\n";}
};
int main() {
P_example ob, *p; //declare an object and pointer to it
ob.set_num(1); //call functions directly on ob
ob... | [
"noreply@github.com"
] | noreply@github.com |
565ea7d3e257adcea1b305c2b85062c116c9ca78 | 937e0495eec80ccc1985c2abee11b340e6225a19 | /FEP_2017/main_lec3.cpp | a54d069b1f70daa0902ba19f16b965d29e26c415 | [] | no_license | KaistLecture/FEProgramming2 | 1274bca44545c58abd1fe81fdf2e2ce13897717f | 60adcdbcac52d0c04f84f02dac3f462eac0cef1a | refs/heads/master | 2020-05-30T02:38:39.684834 | 2018-08-26T13:24:09 | 2018-08-26T13:24:09 | 39,418,062 | 8 | 9 | null | null | null | null | UTF-8 | C++ | false | false | 1,610 | cpp | #include <iostream>
#include <string>
#include <random>
#include <vector>
#define PI 3.141592
#define SQ(x) ((x)*(x))
#define MAX(a,b) (((a)>(b))?(a):(b))
int main() {
//vector
std::vector<int> v(5, 100);
v.push_back(10);
v.push_back(12);
v.push_back(15);
for (int i = 0; i < v.size(); ++i)
std::cout << i << ... | [
"keunho@business.kaist.ac.kr"
] | keunho@business.kaist.ac.kr |
fa56707bc733307dca372cfdc70bb63df87a355d | da998d8cddaef762aefb0ebee3c89783bd5afb06 | /8. Hashing/find_sum_subArr.cpp | f881c0521e8f33de5f9bf75b95f1f57706f83289 | [] | no_license | tanmay017/Data-Structure-and-Algorithms-Learning | 314d2c220de754e0350eece13ac0e48a9bf78153 | aa101a54860b706e7c0f8702f6f9e6ae4424967c | refs/heads/master | 2023-04-06T00:10:28.330284 | 2021-04-05T08:07:12 | 2021-04-05T08:07:12 | 353,626,082 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 647 | cpp | #include <bits/stdc++.h>
using namespace std;
class Solution
{
public:
bool isSum(int arr[], int n, int sum)
{
unordered_set<int> s;
int pre_sum = 0;
for (int i = 0; i < n; i++)
{
if (pre_sum == sum)
return true;
pre_sum += arr[i];
... | [
"tanmaychandra017@gmail.com"
] | tanmaychandra017@gmail.com |
b2358870b163b0b99d069a25b9e51e11e9e237b7 | 40cdb94b52db41bb7b06f0b304a554247a8c9754 | /Gpu_Rvd/header/cuda/cuda_knn.h | 26994d8b1364baee42805399cd0405fcc1a60bac | [
"MIT"
] | permissive | stormHan/gpu_rvd | adb86de5e2d236ac63476c8d598d4021deb9b2d5 | 4029bfa604117c723c712445b42842b4aa499db2 | refs/heads/master | 2020-06-23T03:13:14.648566 | 2017-03-29T12:40:34 | 2017-03-29T12:40:34 | 74,668,863 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,295 | h | /*
* GPU Knn Algorithm
*
*/
#ifndef H_CUDA_KNN
#define H_CUDA_KNN
#include <basic\common.h>
#include <basic\math_op.h>
#include <cuda\cuda_common.h>
#include <mesh\mesh.h>
#include "cuda.h"
namespace Gpu_Rvd{
/*
* \brief Use k-dtree to find K nearest neighbors.
*/
class CudaKNearestNeighbor{
public:
CudaK... | [
"stormhan1205@gmail.com"
] | stormhan1205@gmail.com |
cf94336d820bf7ed18b3a470be19692d50321008 | fd57ede0ba18642a730cc862c9e9059ec463320b | /ml/nn/driver/sample/SampleDriverAll.cpp | f4f18090b33f525833209bc140714aa659018fbc | [
"Apache-2.0"
] | permissive | kailaisi/android-29-framwork | a0c706fc104d62ea5951ca113f868021c6029cd2 | b7090eebdd77595e43b61294725b41310496ff04 | refs/heads/master | 2023-04-27T14:18:52.579620 | 2021-03-08T13:05:27 | 2021-03-08T13:05:27 | 254,380,637 | 1 | 1 | null | 2023-04-15T12:22:31 | 2020-04-09T13:35:49 | C++ | UTF-8 | C++ | false | false | 991 | cpp | /*
* Copyright (C) 2017 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 requir... | [
"541018378@qq.com"
] | 541018378@qq.com |
800b5a6315bbbf31db8ab66507e58310323ab6ab | b9e3370720076315a862fdeda8a7ded2b69d5b50 | /Il2CppOutputProject/Source/il2cppOutput/Il2CppCompilerCalculateTypeValues_33Table.cpp | 89a953103fab2c901e084ea410adb10414bd35ec | [] | no_license | Uchemantellem/Holonasty | f03e4419608982b84019030417a59c9fbc7bc0b4 | 4a41de88374dd4a8aeb947200657e03ce7b2bc5a | refs/heads/master | 2020-03-31T11:13:00.560084 | 2018-12-10T07:01:41 | 2018-12-10T07:01:41 | 152,167,866 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 197,017 | cpp | #include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <cstring>
#include <string.h>
#include <stdio.h>
#include <cmath>
#include <limits>
#include <assert.h>
#include <stdint.h>
#include "il2cpp-class-internals.h"
#include "codegen/il2cpp-codegen.h"
#include "i... | [
"tedk@umich.edu"
] | tedk@umich.edu |
cfe5d43d400392f4391311643e23149bfd20e115 | bbf397b8ad00577bd83b428ecdbcb0f15b0d6f24 | /FaTypes.cpp | 0bfa5e1557d2bc0f6be152466e69e5d148c30063 | [] | no_license | uralx74/Sweety | dc0755baa70bbb3492902b64d21ded569c84dc16 | b0c0844982cb3490a991280d72d6e1114fcbae21 | refs/heads/master | 2021-01-20T03:47:15.501372 | 2017-10-25T11:05:08 | 2017-10-25T11:05:08 | 89,585,144 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 906 | cpp | //---------------------------------------------------------------------------
#pragma hdrstop
#include "FaTypes.h"
/*
PackType::PackType()
{
} */
FaPack::FaPack() :
_faPackId(""),
_faPackTypeId(0)
{
}
String FaPack::getFaPackId()
{
return _faPackId;
}
/*String FaPack::getFaPackTypeCd()
{
retu... | [
"V.Ovchinnikov@esbt.loc"
] | V.Ovchinnikov@esbt.loc |
c0b2dbe480febcd42adc85bc40e45e157aac677d | b84d8e0c2fc309eb3ac1e5f1ed0b8b648d0bcd1e | /pri_cpp_rand/toc.h | daaf2ee9052053da1d1eaf3b36fe923db232d36c | [] | no_license | Peter-YE/Priority-Ordered-Update | 9872b6e60e97f9ec4c0793fa75a778c9b9b333e1 | 409bc4d6396a625f32f4783108c47006c43de40f | refs/heads/main | 2023-07-06T16:20:33.653411 | 2021-08-05T23:27:41 | 2021-08-05T23:27:41 | 376,520,977 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 469 | h | //
// Academic License - for use in teaching, academic research, and meeting
// course requirements at degree granting institutions only. Not for
// government, commercial, or other organizational use.
//
// toc.h
//
// Code generation for function 'toc'
//
#ifndef TOC_H
#define TOC_H
// Include files
#include "rtwt... | [
"yelianghong@gmail.com"
] | yelianghong@gmail.com |
308111789c6765587ccd9d13b62d65d52252f291 | 165a6328d6427b9b6a79d1b4b1da542a6e797fae | /tensorflow/compiler/jit/increase_dynamism_for_auto_jit_pass.cc | bd8719b7f1acb79e0b0cd91f2f0de0d66d8dab46 | [
"Apache-2.0"
] | permissive | AishwaryaVarma/tensorflow | 268a9410cc384500f1e67c9efd4144989003db60 | 46c6526f629b50dcf6e69e79c2d492027c23f223 | refs/heads/master | 2020-04-04T15:47:40.426902 | 2019-02-11T19:48:20 | 2019-02-11T19:48:20 | 156,052,281 | 0 | 0 | Apache-2.0 | 2019-02-11T19:48:22 | 2018-11-04T05:28:07 | C++ | UTF-8 | C++ | false | false | 12,192 | cc | /* Copyright 2018 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or a... | [
"gardener@tensorflow.org"
] | gardener@tensorflow.org |
efe196c3cd18efabdffe54d6465d2138468dcd5b | 5b4312ddc24f29538dce0444b7be81e17191c005 | /autoware.ai/1.12.0_cuda/install/autoware_can_msgs/include/autoware_can_msgs/CANData.h | 6a55a476cddad615323e11baadab0c74e6c7dbc7 | [
"MIT"
] | permissive | muyangren907/autoware | b842f1aeb2bfe7913fb2be002ea4fc426b4e9be2 | 5ae70f0cdaf5fc70b91cd727cf5b5f90bc399d38 | refs/heads/master | 2020-09-22T13:08:14.237380 | 2019-12-03T07:12:49 | 2019-12-03T07:12:49 | 225,167,473 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,601 | h | // Generated by gencpp from file autoware_can_msgs/CANData.msg
// DO NOT EDIT!
#ifndef AUTOWARE_CAN_MSGS_MESSAGE_CANDATA_H
#define AUTOWARE_CAN_MSGS_MESSAGE_CANDATA_H
#include <string>
#include <vector>
#include <map>
#include <ros/types.h>
#include <ros/serialization.h>
#include <ros/builtin_message_traits.h>
#in... | [
"907097904@qq.com"
] | 907097904@qq.com |
1a10d9df71926c52c58071e570c6b98f7e66ee7d | 9894d3a9056927f97be327942305882e25adf6fe | /Day 03/ex00/main.cpp | f287062958ba5e55ccfe7f02b951963b30819058 | [
"MIT"
] | permissive | akharrou/42-Piscine-CPP | 3c34585cbce5144cc3dd4452e72bd906fb6fbcc2 | 11c80e32f96718946134400435182629470f1439 | refs/heads/master | 2020-06-12T20:32:06.586570 | 2019-08-19T04:53:42 | 2019-08-19T04:53:42 | 194,416,333 | 2 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 4,795 | cpp | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.cpp :+: :+: :+: ... | [
"idev.aymen@gmail.com"
] | idev.aymen@gmail.com |
1b5b32a8abfa86e22cf6c85eefb72ccebc515e10 | 656ab73828ae36c320cc49034ffc10d909940fca | /arduino_repeater/arduino_repeater.ino | 91c861fc169ad86f3758b51b7aa7e152499ebe73 | [] | no_license | OctopusKat/UKHASnet_nodes | 6a4f2498363b0bad39a6f1ab63a9cf3fa2a16171 | f903b891235bb9a5a992c8ecf43ca14e8d009371 | refs/heads/master | 2021-01-17T12:08:04.904396 | 2014-04-30T21:52:25 | 2014-04-30T21:52:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,065 | ino | /*
UKHASnet rf69_repeater code
based on rf22_client.pde/ino from the RF22 library
*/
#include <SPI.h>
#include <string.h>
#include "RFM69Config.h"
#include "RFM69.h"
#include "LowPower.h"
//*************Node ID Setup ****************/
char id[] = "P5";
char location_string[] = "50.9387,-1.3979";
uint8_t rfm_power =... | [
"phildcrump@gmail.com"
] | phildcrump@gmail.com |
5425c86f0f951f27c626f8e5eedb413acffa3138 | f878e34dcc2f3a4535ef99aeab0f86924e16dcab | /libraries/arisenlib/core/arisen/crypto.hpp | 3c7cf261f58f10d0a034617e70244c7cafdf8441 | [
"MIT"
] | permissive | ArisenIO/arisen.cdt | e1f112a24468ea05bca43812dcc91b56d8ce51a2 | ae642eaaeb72097c8f7326f5c4b492d83cbe6d78 | refs/heads/master | 2021-02-09T18:35:41.398707 | 2020-12-10T17:54:06 | 2020-12-10T17:54:06 | 244,313,999 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,459 | hpp | /**
* @file
* @copyright defined in rsn/LICENSE
*/
#pragma once
#include "fixed_bytes.hpp"
#include "varint.hpp"
#include "serialize.hpp"
#include <array>
namespace arisen {
/**
* @defgroup public_key Public Key Type
* @ingroup core
* @ingroup types
* @brief Specifies public key type
... | [
"shikhars371@gmail.com"
] | shikhars371@gmail.com |
4ad19a0b2d1d029b0933e284389f13e1da1761c3 | 19c1253d63817149fd970b5f02f721c2a93b6d76 | /Password Cracking/key.hpp | b811149a55b010f43d5e4dec61c27887af6f8a80 | [] | no_license | GoGirish/Purdue-CS251 | 493a1cabb2b9f9d5ed09696ed11c5661f9ba58cc | 41b22dea0a46a5afeb168016b022505ff7e88fde | refs/heads/master | 2021-01-25T07:48:48.905431 | 2017-06-07T18:00:17 | 2017-06-07T18:00:17 | 93,664,013 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,587 | hpp | #ifndef KEY_HPP
#define KEY_HPP
#include <algorithm>
#include <array>
#include <cassert>
#include <iomanip>
#include <iostream>
#include <stdexcept>
#include <string>
#include <vector>
#ifdef C_IS_SET
#undef C_IS_SET
#endif
static constexpr int B=5; // number of bits per character
static constexpr int R=32; // size... | [
"girishg@purdue.edu"
] | girishg@purdue.edu |
097d4cbc654e99a8f5cf199abfdf0b643b3cb2b4 | 390f357fec98ab6c886ee504f27e7127869c419b | /最小距离.cpp | bc5bb988ae3fa0bda463170e59efa39fafda3ad3 | [] | no_license | baibaixue/acm | 696f9aa948465166c75fadba28851f7028ab00e1 | 07cac352d8dc23c2e3cf0b84f65fda6afbf3707e | refs/heads/master | 2021-07-04T07:51:37.380678 | 2020-11-06T15:00:14 | 2020-11-06T15:00:14 | 195,429,206 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 702 | cpp | #include<cstdio>
#include<iostream>
#include<algorithm>
#include<queue>
#include<string.h>
#include<vector>
#include<cmath>
#define maxn 55
using namespace std;
char s1[maxn];
char s2[maxn];
int dis[maxn];
int cmp(int a,int b){
return a>b;
}
int main(){
while(scanf("%s",&s1)!=EOF){
scanf("%s",&s2);
int k;
scanf... | [
"52575446+baibaixue@users.noreply.github.com"
] | 52575446+baibaixue@users.noreply.github.com |
c597bafa2efa33cb2aefd8ba6bcb6e14080c6ec0 | 0d4180498063d0b4a129170b5e885e79ab7de0b9 | /pipelines/StrainTensorPipeline.h | 80ed6e607260f8b29b544b4bd8e93cf2285f1417 | [] | no_license | CISMM/ImageTracker | dd0038feaca23de0cf4aa17db50e95b170b0ca31 | ad7efce0443daab8992721785edbb25cf9fe25ff | refs/heads/main | 2023-06-27T10:55:41.556083 | 2021-07-29T13:07:17 | 2021-07-29T13:07:17 | 390,725,337 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,226 | h | #pragma once
#include <string>
#include "itkImage.h"
#include "itkVector.h"
#include "CommonTypes.h"
#include "ItkVectorPipeline.h"
/**
* \class StrainTensorPipeline
* \brief Computes the strain tensor for a given 2D displacement field.
* Computes the Lagrangian strain tensor given a displacement field. A displ... | [
"beastwoo"
] | beastwoo |
754cc6f8de13925f623b590850cc6f14b35a0269 | 641fa8341d8c436ad24945bcbf8e7d7d1dd7dbb2 | /printing/backend/cups_printer.cc | 3cb80e0420fd825add92ae2fc70bfabddf1837f8 | [
"BSD-3-Clause"
] | permissive | massnetwork/mass-browser | 7de0dfc541cbac00ffa7308541394bac1e945b76 | 67526da9358734698c067b7775be491423884339 | refs/heads/master | 2022-12-07T09:01:31.027715 | 2017-01-19T14:29:18 | 2017-01-19T14:29:18 | 73,799,690 | 4 | 4 | BSD-3-Clause | 2022-11-26T11:53:23 | 2016-11-15T09:49:29 | null | UTF-8 | C++ | false | false | 7,762 | 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 "printing/backend/cups_printer.h"
#include <cups/cups.h>
#include <string>
#include <utility>
#include "base/files/file.h"
#include "base/file... | [
"xElvis89x@gmail.com"
] | xElvis89x@gmail.com |
281647dcddeef0dfa4fa5442e7aed5d6aee63ab1 | 4df1038d6511e221ac090f7113ca9cf741837edb | /week_09/day_4_gomoku_game_logic_with_unit_tests/Player.h | 3823cd2ed1958b38eb95b8b71aa14bad11cc120d | [] | no_license | greenfox-zerda-sparta/juliabaki | 86af6ef89b290cc968247e5dbe1dc7f57c8d357c | 82998e8105914375ed2927426d6b04f8fa280b38 | refs/heads/master | 2021-01-17T18:21:25.037633 | 2017-02-07T11:27:59 | 2017-02-07T11:27:59 | 71,350,696 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 189 | h | #ifndef PLAYER_H_
#define PLAYER_H_
#include "Stone.h"
class Player {
public:
Player();
Stone* placeStone(int coordinate_x, int coordinate_y);
~Player();
};
#endif /* PLAYER_H_ */
| [
"bakijulia@gmail.com"
] | bakijulia@gmail.com |
82d10f67cb12b67cdef9e5df7beefa4998cd330a | e0a5c8354120afa6f95f0a3e0a7eba9fac5f1dec | /task5/task5.cpp | 9553e2e68c6cde34ddadae4e06e0c16697096c3b | [] | no_license | VashchilkoAV/MPI | 03dc0d3d8a572a59ddf95223482578475917185e | a8d6925dbb86ce66d089fb0af1140c9349ed27ef | refs/heads/master | 2023-05-26T05:07:24.642470 | 2021-06-14T17:55:44 | 2021-06-14T17:55:44 | 354,052,218 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,391 | cpp | #include <mpi.h>
#include <fstream>
#include <iostream>
#include <string>
#include <vector>
#include <sstream>
#define MAX_TOKEN 1000*1000*1000
typedef std::vector<size_t> Number;
Number convertToNumber(const std::string& line) {
Number number;
for (int i = static_cast<int>(line.length()); i > 0; i-= 9) {
... | [
"vashchilko.av@phystech.edu"
] | vashchilko.av@phystech.edu |
3debf909ea40c95bb3580a2057f0f43b92538ce4 | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/CMake/CMake-gumtree/Kitware_CMake_new_hunk_126.cpp | 21056dd3fc368fc8d50478cc23d428fc7c38b7b1 | [] | no_license | niuxu18/logTracker-old | 97543445ea7e414ed40bdc681239365d33418975 | f2b060f13a0295387fe02187543db124916eb446 | refs/heads/master | 2021-09-13T21:39:37.686481 | 2017-12-11T03:36:34 | 2017-12-11T03:36:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 609 | cpp | int
archive_read_disk_set_atime_restored(struct archive *_a)
{
struct archive_read_disk *a = (struct archive_read_disk *)_a;
archive_check_magic(_a, ARCHIVE_READ_DISK_MAGIC,
ARCHIVE_STATE_ANY, "archive_read_disk_restore_atime");
#ifdef HAVE_UTIMES
a->flags |= ARCHIVE_READDISK_RESTORE_ATIME;
if (a->tree != NULL... | [
"993273596@qq.com"
] | 993273596@qq.com |
3c21f83a1bc010dfd4584d0383cb7bef467a9225 | 06bd829a0b316ff1a8b54b4fc1bb88c73a4fc68f | /二分法/457.经典二分查找问题.cpp | 5d0b0189b78a01781b803db651c6c93636f2e2ef | [] | no_license | LiuYu0521/lintcode | 148e763294f478f50858f8053cacf5478b5c60b4 | 97c90a2065c6bf6df76c43211af0db2da528b965 | refs/heads/master | 2021-01-22T21:53:32.924735 | 2017-08-13T02:51:25 | 2017-08-13T02:51:25 | 92,742,383 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 637 | cpp | class Solution {
public:
/**
* @param A an integer array sorted in ascending order
* @param target an integer
* @return an integer
*/
int findPosition(vector<int>& A, int target) {
// Write your code here
int left = 0;
int right = A.size() - 1;
int mid = left ... | [
"ly819933137@gmail.com"
] | ly819933137@gmail.com |
a8db7701d75d83ca4cbff9dc659725c50d5c70f4 | 79813a2689ae22b0315323f398337017639662bb | /src/modules/processes/NoOperation/NoOperationInstance.cpp | 24537fc50d7077202419160c4d5820e8c829b740 | [
"LicenseRef-scancode-other-permissive"
] | permissive | jackros1022/PCL-1 | 4b51b494c69e4d97182387aa84ead1a964798264 | 059423bc8a3d7946a628fe1913b805bc3633aea5 | refs/heads/master | 2021-01-23T05:09:19.844862 | 2017-02-08T11:53:24 | 2017-02-08T11:53:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,410 | cpp | // ____ ______ __
// / __ \ / ____// /
// / /_/ // / / /
// / ____// /___ / /___ PixInsight Class Library
// /_/ \____//_____/ PCL 02.01.01.0784
// ----------------------------------------------------------------------------
// Standard NoOperation Process Module Version 01.00.00.0269
// --------... | [
"juan.conejero@pixinsight.com"
] | juan.conejero@pixinsight.com |
3d8abe34b04ddf3d4f0b229b589902e4e181f9a0 | 6cfe7c65380924bfd6fe46a7b6cd5b006b333e96 | /source/digits_hits/src/GateEnergyEfficiency.cc | 4bb78d7f57448f94c97eae5297d1ed0f8938baab | [] | no_license | copernicus231/gatempi | 800eb61dd5de373d591e9cb49630172e1c4809b2 | b97c38418458dfd21e8d25887419f7967871782e | refs/heads/master | 2020-12-24T12:01:56.966710 | 2012-08-13T05:12:22 | 2012-08-13T05:12:22 | 5,534,931 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,666 | cc | /*----------------------
GATE version name: gate_v6
Copyright (C): OpenGATE Collaboration
This software is distributed under the terms
of the GNU Lesser General Public Licence (LGPL)
See GATE/LICENSE.txt for further details
----------------------*/
#include "GateEnergyEfficiency.hh"
#include "GateEnergyEffi... | [
"copernicus231@gmail.com"
] | copernicus231@gmail.com |
92bfdf14109d8b5d67538b6ca66f0fdfc00a93ad | 4091c9e7832c8c3fa2820fe8d9730b5647122678 | /DFS.cpp | 10972ea133f6d14e272a1ffe801a0638c1c6557d | [] | no_license | Shweta029/ADA-Assignment | 8c2abdbd63b4d3ab4a493407dc1eb365854f47c6 | 5ca5c0bb5e2d3ba704b91d81f1c9d84c1644ef1b | refs/heads/main | 2023-08-16T08:07:57.128979 | 2021-09-30T03:37:50 | 2021-09-30T03:37:50 | 411,906,617 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 492 | cpp | #include<stdio.h>
void DFS(int);
int G[10][10],visited[10],n;
int main()
{
int i,j;
printf("Enter number of vertices:");
scanf("%d",&n);
printf("\nEnter adjecency matrix of the graph:");
for(i=0;i<n;i++)
for(j=0;j<n;j++)
scanf("%d",&G[i][j]);
for(i=0;i<n;i++)
visited[i... | [
"noreply@github.com"
] | noreply@github.com |
27aad257255335638323147a2621d6a14b3131b7 | 60ccc97366c43b0f83275c2c7aabd569939f8a43 | /lcpfw/examples/tests/ipc_channel.cpp | 7b06ae2d56b3686c0c7b3ea39c4efc4b2a385fc2 | [] | no_license | VestasWey/mysite | d89c886c333e5aae31a04584e592bd108ead8dd3 | 41ea707007b688a3ef27eec55332500e369a191f | refs/heads/master | 2022-12-09T10:02:19.268154 | 2022-10-03T03:14:16 | 2022-10-03T03:14:16 | 118,091,757 | 1 | 1 | null | 2022-11-26T14:29:04 | 2018-01-19T07:22:23 | C++ | UTF-8 | C++ | false | false | 48 | cpp | #include "stdafx.h"
void ipc_example()
{
} | [
"Vestas.Wey@qq.com"
] | Vestas.Wey@qq.com |
1172e02a85613207ca59b955a76ffae88e870188 | db0de2afe7c2ad4748d6b115bfba9c378d2cb5b3 | /2048-2015-04-05/2048/Classes/GameScene.cpp | 64213cbe7d9be0008f0c96bd419bc63faf5c5386 | [] | no_license | adrianhihi/2048 | 40a50a16833986fb6070eb86f826c37a2792c8bc | 7cbee8812bd0176715a599f3a3cc8bce25bcdc36 | refs/heads/master | 2016-09-05T13:11:17.191609 | 2015-04-06T04:59:52 | 2015-04-06T04:59:52 | 33,467,179 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 13,547 | cpp | //
// GameScene.cpp
// Game2048
//
// Created by ZhaoLei on 2/6/15.
//
//
#include "GameScene.h"
#include <iostream>
#include <SimpleAudioEngine.h>
#include "GameOver.h"
using namespace CocosDenshion;
Scene * Game::createScene() {
auto scene = Scene::create();
auto layer = Game::create();
scene->addChil... | [
"haimobai@usc.edu"
] | haimobai@usc.edu |
4ae1e30d5690107e38661c086f53ae6645472c60 | d54d471eb9c77d21f6448f9b303d197e1b87a767 | /Sorting algorithms/DataSorted.h | c65e7842a4a47a4bb8fbd76b46b7953b4673de5d | [] | no_license | MananJMehta/OOPS-DSAs-and-CPP | 14b1812dbc2075df70ff2e25f1c9fc011b98adbe | 10e7c01dab9f6f9e4bf26c5e779caaf9e8f071b2 | refs/heads/master | 2021-01-17T08:07:01.898274 | 2017-03-07T08:58:44 | 2017-03-07T08:58:44 | 83,854,714 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 844 | h | //
// DataSorted.h
/*
* Assignment #12: Compare sorting algorithms
*
* CMPE 180-92 Data Structures and Algorithms in C++
* Department of Computer Engineering
* R. Mak, Nov. 20, 2016
*/
#ifndef DATASORTED_H_
#define DATASORTED_H_
#include "DataGenerator.h"
/**
* Generator for already sorted data.
*/
class D... | [
"noreply@github.com"
] | noreply@github.com |
a68d203d425116f028ca264ec56b5d9f534f2eda | 84ff28e829d51446f5d9295adf0ba7fc524dbfd7 | /project/src/Shader.cpp | ef1dcfecf7c4b471ac9b8a715d4996174d9fc390 | [
"MIT"
] | permissive | GCDemoScene/DemoScene | b506663d7470054715f0bd3a45ee299a330874ce | 65519d2a4b1498ef45cf825146c1525e4d0829cf | refs/heads/master | 2021-01-23T06:50:03.059911 | 2015-03-24T08:53:07 | 2015-03-24T08:53:07 | 29,699,390 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,824 | cpp | #include "Shader.hpp"
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
GLuint compileShader(GLenum shaderType, const char * sourceBuffer, int bufferSize)
{
GLuint shaderObject = glCreateShader(shaderType);
const char * sc[1] = { sourceBuffer };
glShaderSource(shaderObject, 1, ... | [
"angeline.guignard@gmail.com"
] | angeline.guignard@gmail.com |
e599764616c1612fb1ca5436ded3c897e79ca379 | c270db7c6783daca0a50b86f85d343fd22c93fd0 | /DearPyGui/src/core/AppItems/misc/mvItemPool.h | 5b5d839a85343d3b341987a2749a29aab6d6055b | [
"MIT"
] | permissive | htnminh/DearPyGui | fdabe58326cc8e1e59ecfca82075a28a835efac5 | bfbcb297f287295fae9766b21a53a99fbb0fe756 | refs/heads/master | 2023-07-10T09:49:05.294126 | 2021-08-21T07:07:28 | 2021-08-21T07:07:28 | 398,491,136 | 0 | 0 | MIT | 2021-08-21T07:06:40 | 2021-08-21T07:06:40 | null | UTF-8 | C++ | false | false | 2,287 | h | #pragma once
#include "mvItemRegistry.h"
namespace Marvel {
//-----------------------------------------------------------------------------
// mvItemSet
//-----------------------------------------------------------------------------
MV_REGISTER_WIDGET(mvItemSet, MV_ITEM_DESC_DEFAULT, StorageValueTypes::None, 1);... | [
"noreply@github.com"
] | noreply@github.com |
ad7c169028ec68e3b399272cfcfe99506f3992f8 | 0178c643685f0a3ef8626c50be44f3a8a47cce69 | /sequence1/src/backup/homotopy/homotopy_eth_main.cpp | f688222a73fb58acd0feff12de1fc30f1eb5e78b | [] | no_license | hfgong/trpl | a96234e6a060d3ff19d24b054988b9d9fb634410 | 896116e16a9035b1ad992b4e39a0925b414a69fd | refs/heads/master | 2020-03-30T14:08:13.663233 | 2011-03-04T16:09:41 | 2011-03-04T16:09:41 | 1,439,719 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 21,867 | cpp | #include <iostream>
#include <algorithm>
#include <vector>
#include <numeric>
#include <limits>
#include <boost/filesystem.hpp>
#include <boost/format.hpp>
#include <boost/lambda/lambda.hpp>
#include <boost/lambda/casts.hpp>
#include <boost/lambda/bind.hpp>
#include <boost/numeric/ublas/matrix.hpp>
#include <boost/n... | [
"haifeng@v03-64.vision"
] | haifeng@v03-64.vision |
63edef2e157bbfbd3c5c0a69bcc9d32c304f46bb | e9af6102d60621ab77f593e0e7fb3a23cd7c13ca | /Program/source/project/femmodel.cpp | 64814e98e6e604ae3311e8c98eea3e721efc3b6a | [] | no_license | NII-APP/NPO | 209390838c6dbdc0b6ce647d998936a75876faca | 5b5ced5b9a1b9c605243fdcf3440b95f23d5c42f | refs/heads/master | 2020-05-30T04:37:52.454852 | 2016-10-17T12:12:05 | 2016-10-17T12:12:05 | 25,005,665 | 2 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 13,138 | cpp | #include "femmodel.h"
#include <cassert>
#include <exception>
#include <QModelIndex>
#include <QDialog>
#include <fem.h>
#include "identity.h"
#include "application.h"
#include "project.h"
#include "kernel/eigenmodesfounder.h"
#include "gui/mainWindow/mainwindow.h"
FEMModel::FEMModel(const Project * p, QObject* pa... | [
"vornon@ya.ru"
] | vornon@ya.ru |
10df77871b5bfaa1d02d9f5840b6d2402a2ec292 | ea72d488e341dfabd8a44be40a44767b130eb753 | /libsparsembs/include/sparsembs/dynamic-simulators.h | 18f36651bc69fdc576848493c5002cdfe990de49 | [] | no_license | min-zhi/multibody-state-estimation | 351b1217131cb853c108385cc7e6a2a4be1a2c13 | 6d71da36cff1541dd2329fe2ec363d5de8d287ed | refs/heads/master | 2021-05-26T00:30:35.176963 | 2020-01-30T23:32:42 | 2020-01-30T23:33:41 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,963 | h | #pragma once
#include "sparsembs-common.h"
#include <list>
namespace sparsembs
{
using namespace Eigen;
struct TPointState
{
TPointState(
const mrpt::math::TPoint2D& _pos, const mrpt::math::TPoint2D _vel)
: pos(_pos), vel(_vel)
{
}
mrpt::math::TPoint2D pos, vel;
};
typedef std::pair<double, TPointState> ti... | [
"joseluisblancoc@gmail.com"
] | joseluisblancoc@gmail.com |
ff7ce28c15939134e8dce55c6f89ec1867c5873a | 1f15536b7bb6a4d5c9abe245445408d4d759ae7d | /Temp/StagingArea/Data/il2cppOutput/Bulk_mscorlib_1.cpp | aedd5d19ee66f46ab80e035d89ddbb9e3252b4ed | [] | no_license | rpierucci/HoopTactics | 4ab5136226743c13ee1537eff7d308d22d40ee1e | 19974973beb4eae55a6dd0143a1d6fe1fe4d203a | refs/heads/master | 2020-03-12T14:04:11.004525 | 2018-04-23T07:43:27 | 2018-04-23T07:43:27 | 130,658,091 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,985,274 | cpp | #include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <cstring>
#include <string.h>
#include <stdio.h>
#include <cmath>
#include <limits>
#include <assert.h>
#include <stdint.h>
#include "il2cpp-class-internals.h"
#include "codegen/il2cpp-codegen.h"
#include "il... | [
"pierucci.robert@gmail.com"
] | pierucci.robert@gmail.com |
90245b085f6d367c244199a16d1a72541493cf6c | e0860ba0e482209b5d2a0da0c8fbcbfa989526dd | /main_parser.cpp | 343034b98c79d21dd8fe60717c5485f6f14e6285 | [] | no_license | Shofuuu/Instrumentasi-Kendali-Proses-Industri-Parsing-dan-Merging | 5f511c15aa36d5673556ae22329f92f5113ec087 | 67d0cf05ae422aa89569774d3058ea582ef0930a | refs/heads/master | 2021-02-27T15:09:35.608257 | 2020-04-14T17:03:47 | 2020-04-14T17:03:47 | 245,614,247 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 437 | cpp | /**********************
Trainer KMDEI (Parser)
***********************/
#ifndef F_CPU
#define F_CPU 16000000UL
#endif
#include <Arduino.h>
#include "lib/parse_merger.h"
void setup(){Serial.begin(9600);}
void loop(){
if(Serial.available() > 0){
data = Serial.readString();
parse_string();
Serial.println("... | [
"noreply@github.com"
] | noreply@github.com |
8ddcda4da3ab7596985d8c989612c90bb688c0ca | 4f9e6f9df7015768b6db6d9961bbfdc0df1285df | /PlikZAdresatami.cpp | 7f2c7312506db17e13ae4ee8aa1b83f66a6f891a | [
"Unlicense"
] | permissive | Damian-Nykiel/KsiazkaAdresowaObiektowo | a026db99a6f26d9004b3815ad2724c8cb4890977 | 279a3a2b8f0e278197fdbf960ebe9dff087d7877 | refs/heads/master | 2022-10-18T06:20:27.472284 | 2020-06-11T11:18:19 | 2020-06-11T11:18:19 | 268,454,517 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,717 | cpp | #include "PlikZAdresatami.h"
bool PlikZAdresatami::dopiszAdresataDoPliku(Adresat adresat)
{
string liniaZDanymiAdresata = "";
fstream plikTekstowy;
plikTekstowy.open(pobierzNazwePliku().c_str(), ios::out | ios::app);
if (plikTekstowy.good() == true)
{
liniaZDanymiAdresata = zamienDaneAdres... | [
"nykiel.damian@gmail.com"
] | nykiel.damian@gmail.com |
7db47332c4bd1ea44fafc7c7fd69547dc758eb6e | 4f91cb25e5bce06baeac70d0236e408a05608e5c | /C++/MP_V6/Application de gestion de réservation du vol/ui_mainwindow.h | d48833d56ace9db16acf8583cd2bbc33e50ae69e | [] | no_license | sabri97/ShareWorks | 6987f768f77dbffabe0af7be484e7ef76573abbe | f5023957e02f2ecaaef652852f14822fcd36aa7a | refs/heads/main | 2023-04-04T00:42:02.625791 | 2021-04-11T14:50:10 | 2021-04-11T14:50:10 | 348,349,126 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,486 | h | /********************************************************************************
** Form generated from reading UI file 'mainwindow.ui'
**
** Created by: Qt User Interface Compiler version 5.2.0
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
****************************************... | [
"65515091+louaykaddoudi@users.noreply.github.com"
] | 65515091+louaykaddoudi@users.noreply.github.com |
3b56e69a02a0d2986cc26d37c5b38564201b0250 | 877ca805c7486c07240b532c5eaabbfc641b729e | /libmtd/Thread.cpp | 12bf627eea610ede45c426f12d197a15e9f37abf | [] | no_license | reaper2012/wdget | b7d1c35c94ca62e43d5550bc779e2d9053e5cc37 | 1bf9f92b5a0d5e84dac02bec145ebd22db13eb11 | refs/heads/master | 2021-01-22T23:53:45.268161 | 2015-05-14T09:31:06 | 2015-05-14T09:31:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,957 | cpp | #define USE_THREAD_H
#include "matrix.h"
namespace matrix {
/*************** class TMutex Object Impl ***************/
TMutex::TMutex(void)
{
pthread_mutex_init( &m_mutex, NULL );
}
TMutex::~TMutex(void)
{
pthread_mutex_destroy( &m_mutex );
}
void TMutex::Lock(void)
{
pthread_mutex_lock( &m_mutex );
}
void TMu... | [
"yunlong.lee@msn.com"
] | yunlong.lee@msn.com |
e58605a8c92710c961a3cffe6a78d25a346f71ad | 0d653408de7c08f1bef4dfba5c43431897097a4a | /cmajor/cmtrace/TraceNode.cpp | 36ab9110c3f63c0b2f332c807c2c8db96d037598 | [] | no_license | slaakko/cmajorm | 948268634b8dd3e00f86a5b5415bee894867b17c | 1f123fc367d14d3ef793eefab56ad98849ee0f25 | refs/heads/master | 2023-08-31T14:05:46.897333 | 2023-08-11T11:40:44 | 2023-08-11T11:40:44 | 166,633,055 | 7 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 795 | cpp | // =================================
// Copyright (c) 2022 Seppo Laakko
// Distributed under the MIT license
// =================================
#include <cmajor/cmtrace/TraceNode.hpp>
namespace cmtrace {
TraceNode::TraceNode() : parent(nullptr)
{
}
TraceNode::~TraceNode()
{
}
ContainerNode::ContainerNode()
{
}
... | [
"slaakko@gmail.com"
] | slaakko@gmail.com |
3efb225fe78ac695e87afeb5c8255a3018c07b1d | a1a8e3a296ca2ddbcff8b48b328aae60009f8f64 | /CommonIncludes.h | cf449a46e172fd306ac5f194b937b9bae3ebe35f | [] | no_license | gmachiraju/TumorKinetics | db65260a2940b355db0d93780e6cef575772a943 | 4c927419be8c602c9b25fb495b965f7ca01ff1c9 | refs/heads/master | 2021-01-11T00:32:31.237411 | 2016-10-26T23:56:41 | 2016-10-26T23:56:41 | 70,516,948 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 492 | h | #pragma once
#include <algorithm>
#include <assert.h>
#include <fstream>
#include <stdlib.h>
#include <stdio.h>
#include <iostream>
#include <string>
#include <sstream>
#include <GL/glew.h>
#include <GL/freeglut.h>
#include <glm/glm.hpp>
typedef glm::ivec2 Vector2i;
typedef glm::ivec3 Vector3i;
typedef ... | [
"gmachiraju@gmail.com"
] | gmachiraju@gmail.com |
ead72637dc1df07728f3848fe818e64bd42cee29 | 441b3c51fd905b888e0aa9de5d909d5de236c4d6 | /reading_log/renderarea.h | 9e918d2f35ad0fe45670e5787c0d9e0076df50cc | [] | no_license | abhinavagarwalla/reading_log | f4c95e19cbf3712827e427d1356df30bae319585 | 7fd72258422d31c9a29768bb98807d6af52f7d2c | refs/heads/master | 2020-12-24T13:52:45.308021 | 2014-08-13T15:18:11 | 2014-08-13T15:18:11 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 857 | h | #ifndef RENDERAREA_H
#define RENDERAREA_H
#include <QWidget>
#include "pose.h"
#include <QMutex>
class RenderArea : public QWidget
{
Q_OBJECT
Pose pose; // pose of the robot to be drawn
public:
explicit RenderArea(QWidget *parent = 0);
void changePose(Pose p) {pose = p; update();}
Pose getStartPos... | [
"navabhi174.gmail.com"
] | navabhi174.gmail.com |
688167aa8a4c6945fbc0cde49d1d8c9da62af2ee | 41388e75e9e198744c1d782ab0eba466589c5c01 | /chatProject/include/server/friendmodel.hpp | c8250a19cd6c2007d60d31d61a68a621b5e60bdc | [] | no_license | jony-xue/chat | 30f5759b0dcf48fd36205287484d2fdf4fd351ed | d3f8f4f1d6774a3e5cb5b2faed0bc1cc6c6bb15d | refs/heads/main | 2023-06-24T20:21:21.011915 | 2021-07-24T02:58:54 | 2021-07-24T02:58:54 | 388,066,542 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 319 | hpp | #ifndef FRIENDMODEL_H
#define FRIENDMODEL_H
#include"user.hpp"
#include<vector>
using namespace std;
//提供好友信息的操作接口方法
class FriendModel{
public:
//添加好友关系
void insert(int userid,int frinedid);
//返回用户好友列表
vector<User> query(int userid);
};
#endif | [
"noreply@github.com"
] | noreply@github.com |
28ec6ca6318747b308008a866d15d687d98e179c | d220641796d2ba46e1b275f09e9713bcce51f906 | /NG661DesignerSimulator/projets/ap2i_factory/include/representationparser.h | 26f6201c2acafb3f389046cc6eddccae807874ab | [] | no_license | AxelRICHARD/ng661designer | c0f98ed76dc77a2dac55d2caa424bba911de4960 | 410b70ab38035e528b7a40ac5e86e5fb0fbc58f7 | refs/heads/master | 2021-05-05T14:30:18.103534 | 2018-02-21T16:21:35 | 2018-02-21T16:21:35 | 118,460,308 | 0 | 0 | null | 2018-01-22T13:24:32 | 2018-01-22T13:24:32 | null | UTF-8 | C++ | false | false | 1,469 | h | /*******************************************************************************
* Copyright (c) 2015, 2016 Thales.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
*... | [
"maxime.dechatre@gmail.com"
] | maxime.dechatre@gmail.com |
b0ae0aaa2b4a337b294b9d643091c29930141ad4 | 77d715499eea2f1f01ad11f5eb0a35d5ee4b68de | /barista.h | 0fed997153783df8bae76850d28129e895330774 | [] | no_license | gibson-compsci/Barista_Drinks_cpp | 0b459c40b02ed779a5c58aeb83dc84c87098ac36 | 99f4627a78c90d168efae3b6cd5fedc095266b8a | refs/heads/master | 2021-01-10T20:57:06.702413 | 2015-02-17T16:04:44 | 2015-02-17T16:04:44 | 30,923,741 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,375 | h | /*
* File: barista.h
* Author: Cameron Gibson and John Zaidel
* gibso103 zaideljo
*
* header file for all classes related to project 2 of CSE335
*
* Created on January 29, 2015, 4:46 PM
*/
#ifndef BARISTA_H
#define BARISTA_H
#include<string>
using std::string;
#include<vector>
using st... | [
"gibson.compsci@gmail.com"
] | gibson.compsci@gmail.com |
df17a75717bf98869bdfdd512f4bd0caa308c5ba | c20fe6a9a08bd833aa43c78cf64b72ad0e09ace6 | /cc1.cpp | 91233633e6f60cda0c8ec3195f6ca74091a99faf | [] | no_license | mithlesh4257/C-Programs | 50a144b127f0560bd6903fdadeaacaa88576f461 | 9f09d9b37c29b5a80361441c05e7c67f67fb6564 | refs/heads/master | 2021-01-21T21:14:59.409810 | 2017-06-19T15:56:42 | 2017-06-19T15:56:42 | 94,793,714 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,921 | cpp | #include<iostream>
#include<cstdlib>
#include<cstring>
using namespace std;
int check_string_seq(char stack[]);
int co(char str[]);
int check_reports(char str[]);
int co(char str[]){
int c=0;
int k=strlen(str);
for(int i=0;i<k;i++){
if(str[i] == '.'){
c = c+1;
}... | [
"noreply@github.com"
] | noreply@github.com |
966d2fc465e22d18d62b76b220243d429d676620 | 036484cc21e143ec53f389da649f63b7ea9a9d6c | /Canfield.h | 6ca350c9fb5c2f53c8ff712ca17f99de4d3ea109 | [] | no_license | xCSxXenon/Canfield | a07d6429ba29d8e75db3026a0b7aff2f48ed8f3f | 8bf36f7ef0c9f345136b6ea1d88c922d7741db3a | refs/heads/master | 2020-08-01T11:56:47.832102 | 2019-09-26T03:19:32 | 2019-09-26T03:19:32 | 210,989,429 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,220 | h | /*********************************************************************
Author: Dana Vrajitoru, IUSB, CS
Class: C243 Data Structures
File name: canfield.h
Last updated: September 2018
Description: Implementation of the card game of Canfield using
stacks and queues.
*****... | [
"jordantaylorlewis@gmail.com"
] | jordantaylorlewis@gmail.com |
70cf8e3b609a184b37803329d58af797c8ee3f5c | 0f7da6410704d3682de7e4e2968355911ba0bd80 | /AVR/AVR/Trampoline.cpp | 7890723e2082b17879e0ee7e6652824486e3cf55 | [] | no_license | modulolabs/firmware | 21c95b2995dfd1e8a8a2662ed287bced5c65495e | 1f5bf96faac5b894de3654d3c7c86894703cc52b | refs/heads/master | 2020-04-09T10:11:23.956729 | 2015-12-06T23:38:31 | 2015-12-06T23:38:31 | 21,027,607 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 225 | cpp | /*
* Trampoline.cpp
*
* Created: 11/2/2015 12:08:58 PM
* Author: ekt
*/
void startApplication() __attribute__((section (".trampoline"))) __attribute__((naked));
void startApplication() {
asm("rjmp __ctors_start");
}
| [
"erin@rgba.net"
] | erin@rgba.net |
8e63745a6234781e24d6f3247c69cb09a6238450 | e9556f4bdce1d0f356d5085528f57b088500ee45 | /Stage 3/1. Looping statements/Factorial of a number.cpp | 168bd3a887d0c519a4d7c134f30956f177ad1563 | [] | no_license | anshulsisodia/Face-Prep-FACE-360-capsule | 3485cb46933a65fc5e358886ec140be098830c34 | 16079a1ba324b7e5a0b85578e3d3c16791cfe789 | refs/heads/main | 2023-07-13T02:02:44.978907 | 2021-08-15T16:50:22 | 2021-08-15T16:50:22 | 395,075,018 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 111 | cpp | #include<iostream>
int main()
{
int i,n,f=1;
std::cin>>n;
for(i=1;i<=n;i++)
f=f*i;
std::cout<<f;
}
| [
"noreply@github.com"
] | noreply@github.com |
7528f57bbedebdf26238585cccd9adc82a2210b8 | 29f2549998b45a046930f3b1c5e3024791b1be16 | /lib/System/Win32/DynamicLibrary.inc | 10e64aa990c95f281120fe26efe9675d028dfa00 | [
"NCSA"
] | permissive | fanfuqiang/iec-61131_new | eda210bd30a6a32e3d14c3d3e87f51b179124c72 | fde56fdefd60e33facaa07661e388ed6c916c763 | refs/heads/master | 2016-09-05T14:59:12.678870 | 2015-02-06T23:55:09 | 2015-02-06T23:55:09 | 30,048,552 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,260 | inc | //===- Win32/DynamicLibrary.cpp - Win32 DL Implementation -------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-----------------------------------------------------... | [
"feqin1023@gmail.com"
] | feqin1023@gmail.com |
546f61336ced4bc27effad396f30e3811b37c322 | cddbc68d18191f59c705918c635aa91fde2a7171 | /lab-3/main.cpp | 2db2f9ce8a48fa7b67ba7ba9eaa07d29d307b42c | [] | no_license | EarlOld/Practice | b1698530050596e3cae8d74ce8c2aae4c27358b3 | ad402312d3d1b60f5e9bbefbf0c0bdbb90e3482f | refs/heads/master | 2021-01-13T05:17:19.740191 | 2017-03-06T05:23:14 | 2017-03-06T05:23:14 | 81,321,650 | 2 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 338 | cpp | #include <iostream>
using namespace std;
int main()
{
system("color f0");
int a, b, c;
cout << "Enter the numbers(3):";
cin >> a >> b >> c;
int min = a;
if (b < min) {
min = b;
}
if (c < min) {
min = c;
}
cout << "Min: " << min << endl;
system("pause")... | [
"dimonsuper010@gmail.com"
] | dimonsuper010@gmail.com |
1c0315a4292be06d18ecc5c06ddc5a650a87face | a2f710cd235be3355359250f088798106d85a856 | /src/Nn/NeuralNetwork.hh | a857ca935dae610605578f46b2af8c1d71518d23 | [
"AFL-2.1",
"LicenseRef-scancode-unknown-license-reference",
"AFL-3.0"
] | permissive | jizhihang/squirrel | 7b3a9ee44eecad8fc18be9e01926631d1515d641 | cfbca81423d234cad9f4468d3326a391628c264a | refs/heads/master | 2020-07-18T21:38:58.131368 | 2016-05-11T15:15:53 | 2016-05-11T15:15:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,179 | hh | /*
* Copyright 2016 Alexander Richard
*
* This file is part of Squirrel.
*
* Licensed under the Academic Free License 3.0 (the "License").
* You may not use this file except in compliance with the License.
* You should have received a copy of the License along with Squirrel.
* If not, see <https://opensource.or... | [
"richard@iai.uni-bonn.de"
] | richard@iai.uni-bonn.de |
6e59e65fb5ec6d21bf00bb2f37eb541732e68a22 | 1ccddf3237a936de25715a9b3912e2d176f6e162 | /april/cmd/modules/amodactuator.h | 13e1620f71c87112168113a75d7187f68024325d | [
"BSD-3-Clause"
] | permissive | TNick/april | 7080fdc343d806bdedc7777f1ef18a0bd42a817a | 59f35adf4ffba8f5e59839add5e61f96bf42594e | refs/heads/master | 2016-09-11T02:46:12.070676 | 2013-06-12T13:24:18 | 2013-06-12T13:24:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,081 | h | /* ========================================================================= */
/* ------------------------------------------------------------------------- */
/*!
\file amodactuator.h
\date Apr 2013
\author TNick
\brief Contains the definition for AModActuator class
*//*
~~~~~~~~~~~~~~~~~~~~~~~~~~~... | [
"nicu.tofan@gmail.com"
] | nicu.tofan@gmail.com |
0ff3afac51e9136aceaa156d6d8b5f79a66e62ca | 393119ca8d67880a284b9b22909c3f2bb837f498 | /src/akari/core/nodes/python.h | dc88b0126e1f27e77a7cc171428f101f563bc269 | [] | no_license | Hengle/AkariRender-1 | e8c81aa1dc0e65d552841b43af689149661264c7 | 7082efdbe6585c5bb2fce2f9fcc04e24e1ca6e15 | refs/heads/master | 2023-01-01T13:47:56.813889 | 2020-10-18T23:34:38 | 2020-10-18T23:34:38 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,683 | h | // MIT License
//
// Copyright (c) 2020 椎名深雪
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge,... | [
"xiaochun.tong@mail.utoronto.ca"
] | xiaochun.tong@mail.utoronto.ca |
3ee38598fbf0540c17c727a85378c04aa8e8e92e | 653cd5ce4c7b3a84f502018b8ca79f5b7dee6db6 | /gui/src/main_gui/fsguiapp.cpp | 3ca61ca6ae9129a2dbcc08c060a055a05f4cbbd1 | [
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | krismuad/TOWNSEMU | dab4660c010aa170e607ff02e103415c33427912 | 49c098ecb4686a506a208e01271ed135c0c3c482 | refs/heads/master | 2023-02-17T01:08:23.329009 | 2021-01-18T09:04:24 | 2021-01-18T09:04:24 | 317,481,141 | 0 | 0 | BSD-3-Clause | 2020-12-01T08:54:48 | 2020-12-01T08:54:47 | null | UTF-8 | C++ | false | false | 35,990 | cpp | /* ////////////////////////////////////////////////////////////
File Name: fsguiapp.cpp
Copyright (c) 2017 Soji Yamakawa. All rights reserved.
http://www.ysflight.com
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
1. Re... | [
"PEB01130@nifty.com"
] | PEB01130@nifty.com |
a3bfc8e081cc72243155a5a7d6be680ef8e5c31a | 21831e62f72d5040c21c277ce14ce6688587a19a | /src/AsyncWaitMsg.cpp | ff507e6d26ac0a16ebe4a87724c344dbb71434f7 | [] | no_license | jjzhang166/MessageWait | b964a0857dc26e7e06c804a4960809ca03f467af | 178b68cbe6603a9e98eec3ba0332481514d6bc50 | refs/heads/master | 2021-06-25T10:39:47.642932 | 2015-06-19T11:44:36 | 2015-06-19T11:44:36 | 103,227,133 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 9,644 | cpp | #include "AsyncWaitMsg.h"
#include "Poco/Timestamp.h"
#include "Poco/Timer.h"
#include "Poco/Event.h"
#include "Poco/Mutex.h"
#include <iostream>
#include <assert.h>
#include <algorithm>
using Poco::Timestamp;
using Poco::Timer;
using Poco::TimerCallback;
using Poco::FastMutex;
using namespace std;
namespace
{
Poc... | [
"stallion5632@163.com"
] | stallion5632@163.com |
fa94a2cb0eb46b23d1f4eb2cdaa006a4b486cbf3 | 777a75e6ed0934c193aece9de4421f8d8db01aac | /src/Providers/UNIXProviders/IndicationService/UNIX_IndicationService_ZOS.hxx | 21c01d0172273c2b68f7f309b4bc73753012433d | [
"MIT"
] | permissive | brunolauze/openpegasus-providers-old | 20fc13958016e35dc4d87f93d1999db0eae9010a | b00f1aad575bae144b8538bf57ba5fd5582a4ec7 | refs/heads/master | 2021-01-01T20:05:44.559362 | 2014-04-30T17:50:06 | 2014-04-30T17:50:06 | 19,132,738 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 128 | hxx | #ifdef PEGASUS_OS_ZOS
#ifndef __UNIX_INDICATIONSERVICE_PRIVATE_H
#define __UNIX_INDICATIONSERVICE_PRIVATE_H
#endif
#endif
| [
"brunolauze@msn.com"
] | brunolauze@msn.com |
350aa5f86db8d00ff9c78d71e14ab8578edf2b1f | 3d8410e944606b861ce4d1862d2adbfb89b760c5 | /Backjoon/11053_가장긴증가하는부분수열/main.cpp | ea59d48412b68af4f38f12ae18b8f89c703aa18a | [] | no_license | YoungHo-Jo/algo | 3a743bcc92815c14f7146374e8abd067c592de7e | 47c1073703d3908971aaa583c29d0eb41c23600f | refs/heads/master | 2020-07-20T23:54:08.177615 | 2019-10-22T04:14:39 | 2019-10-22T04:14:39 | 206,727,550 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,664 | cpp | #include <iostream>
#include <vector>
#include <algorithm>
#include <functional>
using namespace std;
#define DEBUG
#ifdef DEBUG
#define D(x) x
#else
#define D(x)
#endif
int main(void) {
ios::sync_with_stdio(false);
int N;
cin >> N;
const int MAX = 1001;
vector<vector<int>> dp(MAX, vector<int>(2, 0));
v... | [
"zeroho.jo@gmail.com"
] | zeroho.jo@gmail.com |
cb3dc6b66355735f8ce3e04a475e08deb6787219 | 2cf2d55fdb4f3efa3b00bd05f4a4d4de620dc0a7 | /ServerSolution/LowLib/ProcessObject.h | c20d60c8042385f5564832043c9a859337a7aec3 | [] | no_license | jinsoojeong/ServerFrameworkProject1 | feb02b5a930e68909d6ab25a2cf43c7f45fdbdfc | 6f2cf29e5da5bf15fc2bc9156178b2f0dfa90a1e | refs/heads/master | 2022-03-14T15:42:05.390707 | 2019-11-12T10:50:28 | 2019-11-12T10:50:28 | 91,250,796 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 488 | h | #pragma once
class ProcessObject
{
public:
ProcessObject() : alloc_thread_count_(0) {};
virtual ~ProcessObject() {};
virtual bool Init() = 0;
virtual void DoWork(void* param) = 0;
virtual void EndWork() = 0;
void SetAllocThreadCount(DWORD thread_count)
{
DWORD& alloc_thread_count = const_cast<DWORD&>(alloc... | [
"man3273@daum.net"
] | man3273@daum.net |
1ec7677cd8195429bcc4c74de8e3d7516ea821ef | 1105f2b5f4fa0b37411738cd5d653ccc6617f9bb | /src/core/config.h | 1d150ecc8a24141ce58e8997165d0322f7f5b20f | [] | no_license | roc2/lgmx | 43f77702e9c519dc5b9f7f64b785a9ca034b07aa | 627893aeeabcd59f9c028c96f2886fec0d0cb53e | refs/heads/master | 2020-04-18T10:58:48.730984 | 2013-09-05T12:46:33 | 2013-09-05T12:46:33 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 254 | h | #ifndef CONFIG_H
#define CONFIG_H
#include <QString>
#define CONF_FILE "/.lgmxconfig"
class Config
{
private:
Config(const Config&);
Config& operator=(const Config&);
public:
Config();
~Config();
private:
QString conf_file;
};
#endif
| [
"lgmariano@gmail.com"
] | lgmariano@gmail.com |
d90fcec162b1017b678a079649450ea41b1c8e34 | 9a1b5f458d1bf9efdfa2cc61494ddecec14d4eff | /Sources/Uis/Inputs/UiInputGrabber.hpp | 3b43c1ae6cfa8d93a53ddd2d1c65ed7f17719c14 | [
"MIT"
] | permissive | LukePrzyb/Acid | ba36ef9839731a4a581800e89c79985374f38406 | ba7da3ffcc08791f047ec0f15317b3e0ba971850 | refs/heads/master | 2020-09-08T09:01:35.336741 | 2019-11-16T00:40:24 | 2019-11-16T00:40:24 | 221,086,385 | 0 | 0 | MIT | 2019-11-11T23:08:03 | 2019-11-11T23:08:02 | null | UTF-8 | C++ | false | false | 2,759 | hpp | #pragma once
#include "Devices/Joysticks.hpp"
#include "Devices/Keyboard.hpp"
#include "Devices/Mouse.hpp"
#include "Fonts/Text.hpp"
#include "Guis/Gui.hpp"
#include "Uis/UiObject.hpp"
#include "UiInputButton.hpp"
namespace acid {
class ACID_EXPORT UiInputGrabber : public UiObject {
public:
UiInputGrabber(UiObject *... | [
"mattparks5855@gmail.com"
] | mattparks5855@gmail.com |
57db9133467f9642892169e7142d3562e9e91ab2 | dd949f215d968f2ee69bf85571fd63e4f085a869 | /subarchitectures/default.sa/branches/avs-iros11/src/c++/def/components/ChainGraphInferencer/ChainGraphInferencer.h | 92d45f9171d5bd63ddcf9cf8d3686f83b43eebc5 | [] | no_license | marc-hanheide/cogx | a3fd395805f1b0ad7d713a05b9256312757b37a9 | cb9a9c9cdfeba02afac6a83d03b7c6bb778edb95 | refs/heads/master | 2022-03-16T23:36:21.951317 | 2013-12-10T23:49:07 | 2013-12-10T23:49:07 | 219,460,352 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 5,417 | h | /**
* @author Andrzej Pronobis
*
* Declaration of the conceptual::ChainGraphInferencer class.
*/
#ifndef DEFAULT_CHAINGRAPHINFERENCER_H
#define DEFAULT_CHAINGRAPHINFERENCER_H
#include <cast/architecture/ManagedComponent.hpp>
#include "VariableNameGenerator.h"
#include <DefaultData.hpp>
#include <ComaData.hpp>
#in... | [
"pronobis@9dca7cc1-ec4f-0410-aedc-c33437d64837"
] | pronobis@9dca7cc1-ec4f-0410-aedc-c33437d64837 |
e3a70b48d6a204898c2715e32433ea9d1ec77fc1 | 93b24e6296dade8306b88395648377e1b2a7bc8c | /client/wxWidgets/wx/gtk/dcmemory.h | a04635bcd600ec42cd5dda46a54512820a9ad695 | [] | no_license | dahahua/pap_wclinet | 79c5ac068cd93cbacca5b3d0b92e6c9cba11a893 | d0cde48be4d63df4c4072d4fde2e3ded28c5040f | refs/heads/master | 2022-01-19T21:41:22.000190 | 2013-10-12T04:27:59 | 2013-10-12T04:27:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,839 | h | /////////////////////////////////////////////////////////////////////////////
// Name: dcmemory.h
// Purpose:
// Author: Robert Roebling
// RCS-ID: $Id: dcmemory.h,v 1.16 2004/05/23 20:50:53 JS Exp $
// Copyright: (c) 1998 Robert Roebling
// Licence: wxWindows licence
/////////////////////... | [
"viticm@126.com"
] | viticm@126.com |
57b201cc4b066a21768c522f84604ad1903a4078 | 49250c0ef62660f04fadb71ea06cdddb1a82c727 | /tests/server.test.cpp | 940f21dd6b262c78a5d1c01d05fd567dea83333d | [
"BSD-2-Clause",
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | derofim/boost_server_example | fb22f29c1c306e403c759386cd3dfc14052068a9 | b524adbf842faa75fd5f5d46486dff605b96bfde | refs/heads/master | 2020-04-18T03:17:59.766866 | 2019-01-28T12:34:19 | 2019-01-28T12:34:19 | 167,193,719 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,507 | cpp | /*
* Copyright (c) 2019 Denis Trofimov (den.a.trofimov@yandex.ru)
* Distributed under the MIT License.
* See accompanying file LICENSE.md or copy at http://opensource.org/licenses/MIT
*/
#include "algo/CSV.hpp"
#include "algo/NetworkOperation.hpp"
#include "algo/StringUtils.hpp"
#include <algorithm>
#include <boost... | [
"derofim@yandex.ru"
] | derofim@yandex.ru |
962c41f20685b1bf250612e2586d46831c523a9f | c98496a81097f5234fbd76c972c7fba32a4f2284 | /QtCamera.h | 2cd71063662c5d4dcb7d021e1999e2f8ae09a5de | [
"MIT"
] | permissive | tsec/QtCamera | 7090b8ad80ad87227e8aefa0c19102013096a425 | cea13a419c77f40071a7168b5df6d21b54fd1a71 | refs/heads/master | 2020-11-26T21:42:49.386944 | 2019-08-08T05:58:26 | 2019-08-08T05:58:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,127 | h | /**********************************************************
Author: Qt君
微信公众号: Qt君(首发)
QQ群: 732271126
Email: 2088201923@qq.com
LICENSE: MIT
**********************************************************/
#ifndef QT_CAMERA_H
#define QT_CAMERA_H
#include <QCamera>
#include <QCameraInfo>
#include <QVideoWidget>
#include <QT... | [
"982381240@qq.com"
] | 982381240@qq.com |
1307ccbbcd1cec317206627e465ccd218006362b | 903855cbeb65affd6620ded59191c8a8b8d1df45 | /khusnutdinova/checkpoint/Stack/main.cpp | 048a4e015610a327d70c920cc3a9a2e8df6e2b92 | [
"MIT"
] | permissive | soomrack/MR2020 | 260b2ff093ab39c48d3cfa18e0c1c0b3859bd1e0 | 2de7289665dcdac4a436eb512f283780aa78cb76 | refs/heads/master | 2023-04-26T15:11:08.607185 | 2021-05-24T11:02:34 | 2021-05-24T11:02:34 | 293,246,956 | 4 | 0 | MIT | 2021-02-21T10:29:12 | 2020-09-06T09:50:17 | C++ | UTF-8 | C++ | false | false | 849 | cpp | #include <iostream>
const int ERR0R = 2147483647;
class Stack {
public:
int pop();
void push(const int value);
public:
Stack();
~Stack();
};
struct element {
int value;
struct element *next;
};
struct element *top;
int Stack::pop(){
if (top == nullptr){return ERROR;}
int temp = top ->... | [
"noreply@github.com"
] | noreply@github.com |
758784ca5e28c51e443caf4a0336c862cfada6ca | 1b97819a1a0b9e86ebca451b0589747f712096c3 | /leetcode/Word Ladder/Word Ladder/Solution.cpp | 88f96054ea7ff18ad16953bbcaf14f9a7da11421 | [] | no_license | icespeech/Practices | e6d8219048df7abbac327cb335bffb9c9d009019 | db6f531a0059dc527d79ddbe7d8c22cc56ef6401 | refs/heads/master | 2021-01-25T10:05:53.066064 | 2015-11-03T08:54:43 | 2015-11-03T08:54:43 | 37,235,851 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,966 | cpp | #include <unordered_map>
#include <vector>
#include <set>
#include "Solution.h"
using std::string;
using std::set;
bool stringAdj(const string& a, const string& b)
{
for (int i = 0, differ = 0; i < a.size(); ++i)
if (a[i] != b[i] && ++differ > 1) return false;
return true;
}
int Solution::ladderL... | [
"icespeech@gmail.com"
] | icespeech@gmail.com |
7b9d5984d14c39db26a7f9b9804dbc07eb571fcf | 3869e42b5f0355d5ce01e2f8945705ebe625f833 | /source/downloads/code/program.cpp | 52b24e295e7152b1d29a639d47742fa7449ca92f | [
"MIT"
] | permissive | navi7/blog | 6ce15bc374b25f0a93dad4e6d1af463763431024 | 4ffbe383a1cec53bc7833a88d0b7f3c41b8fe7a1 | refs/heads/master | 2020-05-26T19:33:22.161299 | 2013-03-03T22:03:36 | 2013-03-03T22:03:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 110 | cpp | #include <iostream>
int main() {
std::cout << "Hello from zombie programmer!\n";
return 0;
}
| [
"ivan.mesic@simplesource.hr"
] | ivan.mesic@simplesource.hr |
dee099474e904b32c86b69b8f59dc333734531f3 | a33aac97878b2cb15677be26e308cbc46e2862d2 | /program_data/PKU_raw/35/1.c | d811ad4ef42ec83fb51885646b21524c2eb88775 | [] | no_license | GabeOchieng/ggnn.tensorflow | f5d7d0bca52258336fc12c9de6ae38223f28f786 | 7c62c0e8427bea6c8bec2cebf157b6f1ea70a213 | refs/heads/master | 2022-05-30T11:17:42.278048 | 2020-05-02T11:33:31 | 2020-05-02T11:33:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 595 | c |
main()
{
int m,n,k,i,j;
int num[10][10],line[10],column[10];
scanf("%d,%d",&m,&n);
for(i=0;i<m;++i)
for(j=0;j<n;++j)
scanf("%d",&num[i][j]);
for(i=0;i<m;++i)
{
k=num[i][0];
line[i]=0;
for(j=0;j<n;++j)
if(num[i][j]>k)
{
k=num[i][j];
line[i]=j;
}
}
for(i=0;i<n;++i)... | [
"bdqnghi@gmail.com"
] | bdqnghi@gmail.com |
f0966801c641caa4881905ec72c87af89810a293 | 32a202cd54d58360337511fca6e9458ca63f92ab | /OpenGLStudy/src/opengl/factory/PositionColorGraphicComponentsFactory.cpp | dc795d348e6e7afeca28eda9d8eb5a1d3487ec30 | [] | no_license | jolotan416/OpenGLStudy | 3e937a39812f3ffdd44c8a0903a4deafdc739d01 | 5cd38dc92f682c468e450397a5bbd1382c179cde | refs/heads/master | 2023-07-12T17:11:22.132211 | 2021-08-08T10:44:02 | 2021-08-08T10:44:02 | 387,830,327 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 689 | cpp | #include <opengl/factory/PositionColorGraphicComponentsFactory.h>
namespace opengl {
namespace factory {
const std::string PositionColorGraphicComponentsFactory::VERTEX_SHADER_FILENAME = "res/shaders/position_color_vertex.shader";
const std::string PositionColorGraphicComponentsFactory::FRAGMENT_SHADER_FILENAME =... | [
"jolo.tan@dealgrocer.com"
] | jolo.tan@dealgrocer.com |
325a2d912df569d74b43653aae711ed526f8ee9a | 6507f58274314602b2d27b108632c6259f93f65e | /src/Kernel/System/Particle_Interaction_System/SimulationData_CudaSystem.cpp | b4f663c5daf266f8066ea7176f26bbbdf2c682fd | [] | no_license | edarles/PSB_Project | 51550181e24776b02653e78bd161e329e6cc744f | e9582476aba10763e374b0e48642bd7b3a1330c3 | refs/heads/master | 2021-06-21T20:44:38.340749 | 2013-05-28T14:37:08 | 2013-05-28T14:37:08 | 10,194,874 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,013 | cpp | #include "SimulationData_CudaSystem.h"
/**********************************************************************************/
/**********************************************************************************/
SimulationData_CudaSystem::SimulationData_CudaSystem():SimulationData_SimpleSystem()
{
}
/********************... | [
"emmanuelle.darles@univ-poitiers.fr"
] | emmanuelle.darles@univ-poitiers.fr |
215864857362f1e1eeb3e50af30e24b966e87688 | 1922196adcf662c5f6fb93666bac8862d70afd18 | /src/net.h | 8eb4a6448ea9c7a7450bc9219902c9f896562606 | [
"MIT"
] | permissive | ezehy/ebuxcore | 4559e035178cd945721eea37589812bbc4df196c | 9892cb6b496698fa33e44e660c409a486f7df581 | refs/heads/master | 2020-03-27T21:29:47.172757 | 2018-09-07T12:30:13 | 2018-09-07T12:30:13 | 147,149,238 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 21,093 | h | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2014 The Bitcoin developers
// Copyright (c) 2015-2017 The PIVX developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_NET_H
#define BITCO... | [
"noreply@github.com"
] | noreply@github.com |
43ad02c9c8ab91bde33597ad93b9183948f612fb | 2bca0b5ff6dbc80dd86df5e2c5e96474e8f8d123 | /Engine/Sources/resources/cResources.h | efa92b08f91a77b3497cd6c143dd4167888d37a8 | [] | no_license | Draver93/dx9Project | 3ed7bb35b795a44acda95bfd56f3ba0a066ce4de | 838ba2b6b1173634c5cd21e91c6059ee150dba91 | refs/heads/master | 2021-01-01T19:43:53.354952 | 2017-12-02T08:58:42 | 2017-12-02T08:58:42 | 98,660,686 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,124 | h | #ifndef C_RESOURCES_H
#define C_RESOURCES_H
#include <string>
#include <vector>
#include "../headers/directx.h"
//Обьект данного класса хранит все ресурсы связанные с указанным графическим окном
enum ResMemory { RT_DINAMIC, RT_STATIC };
class cVirtualResource
{
public:
virtual HRESULT release() = 0;
virtual HRES... | [
"draver39@gmail.com"
] | draver39@gmail.com |
213663ea98cebc21650bc842693d6b6f479cbc81 | e6559df51c2a14256962c3757073a491ea66de7c | /URI/1851 - Como Treinar Seu Dragão.cpp | 209fa2f7afe6e1dd10644a81a834bdfa1ba1d45a | [] | no_license | Maycon708/Maratona | c30eaedc3ee39d69582b0ed1a60f31ad8d666d43 | b6d07582544c230e67c23a20e1a1be99d4b47576 | refs/heads/master | 2020-04-25T23:37:53.992330 | 2019-02-28T17:10:25 | 2019-02-28T17:10:25 | 143,191,679 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,825 | cpp | #include <bits/stdc++.h>
#define INF 0x3F3F3F3F
#define rep(i, a, b) for ( i = int(a); i < int(b); i++)
#define pb push_back
#define pi 3.1415926535897932384626433832795028841971
#define debug(x) cout << #x << " = " << x << endl;
#define debug2(x,y) cout << #x << " = " << x << " --- " << #y << " " << y << "\n";
#defin... | [
"mayconalves@gea.inatel.br"
] | mayconalves@gea.inatel.br |
47a6b6e99c5830a5d9e0c454ad500cec30eee78a | 04b1803adb6653ecb7cb827c4f4aa616afacf629 | /ui/accelerated_widget_mac/accelerated_widget_mac.h | 44b1dfc6c720c254b267d4fe25a5015afbeefd08 | [
"BSD-3-Clause"
] | permissive | Samsung/Castanets | 240d9338e097b75b3f669604315b06f7cf129d64 | 4896f732fc747dfdcfcbac3d442f2d2d42df264a | refs/heads/castanets_76_dev | 2023-08-31T09:01:04.744346 | 2021-07-30T04:56:25 | 2021-08-11T05:45:21 | 125,484,161 | 58 | 49 | BSD-3-Clause | 2022-10-16T19:31:26 | 2018-03-16T08:07:37 | null | UTF-8 | C++ | false | false | 3,287 | 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.
#ifndef UI_ACCELERATED_WIDGET_MAC_ACCELERATED_WIDGET_MAC_H_
#define UI_ACCELERATED_WIDGET_MAC_ACCELERATED_WIDGET_MAC_H_
#include <vector>
#include "ui/a... | [
"sunny.nam@samsung.com"
] | sunny.nam@samsung.com |
200323dc0daf7949deb965f32cf027f90467ca52 | 38c10c01007624cd2056884f25e0d6ab85442194 | /chrome/browser/ui/webui/chromeos/imageburner/imageburner_ui.cc | 5340f4c5b98a9a3a1a9eef09cf4ac91765131de6 | [
"BSD-3-Clause"
] | permissive | zenoalbisser/chromium | 6ecf37b6c030c84f1b26282bc4ef95769c62a9b2 | e71f21b9b4b9b839f5093301974a45545dad2691 | refs/heads/master | 2022-12-25T14:23:18.568575 | 2016-07-14T21:49:52 | 2016-07-23T08:02:51 | 63,980,627 | 0 | 2 | BSD-3-Clause | 2022-12-12T12:43:41 | 2016-07-22T20:14:04 | null | UTF-8 | C++ | false | false | 909 | cc | // Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// TODO(crbug.com/427785): Remove this file, and related strings and
// constants after 2015-10-31.
#include "chrome/browser/ui/webui/chromeos/imag... | [
"zeno.albisser@hemispherian.com"
] | zeno.albisser@hemispherian.com |
cc9b58a3e490f0ee2e46c134b206ef7dc3ff388d | b6a501107657652e0f297f7c02b9e862f3ad2e1b | /Test/Expect/test077.h | 1fa01aa545580496126d02b714926337b7e74c41 | [
"SunPro",
"BSD-3-Clause",
"LicenseRef-scancode-fatfs",
"MIT",
"LicenseRef-scancode-public-domain"
] | permissive | totalspectrum/spin2cpp | 73a85b982c2c7296ad68a2b7b896c3577c8dd68e | 32944f77a140b01ac4444cf390debd44ad3a5f2c | refs/heads/master | 2023-09-01T02:19:09.982232 | 2023-08-31T00:56:02 | 2023-08-31T00:56:02 | 22,721,276 | 41 | 23 | NOASSERTION | 2023-09-12T18:38:31 | 2014-08-07T12:56:19 | C | UTF-8 | C++ | false | false | 338 | h | #ifndef test077_Class_Defined__
#define test077_Class_Defined__
#include <stdint.h>
class test077 {
public:
static const int Twof = 0x40000000;
static const int Onef = 0x3f800000;
static const int Threef = 0x40400000;
static const int Rootf = 0x3fb504f3;
static char dat[];
static int32_t * Dummy(void);
pr... | [
"ersmith@totalspectrum.ca"
] | ersmith@totalspectrum.ca |
842ee10a2cacaee5480c26118d345306444608f1 | 5456502f97627278cbd6e16d002d50f1de3da7bb | /headless/lib/headless_devtools_client_browsertest.cc | 984fd3524772c48439db44ab7ecc085377f0e238 | [
"BSD-3-Clause"
] | permissive | TrellixVulnTeam/Chromium_7C66 | 72d108a413909eb3bd36c73a6c2f98de1573b6e5 | c8649ab2a0f5a747369ed50351209a42f59672ee | refs/heads/master | 2023-03-16T12:51:40.231959 | 2017-12-20T10:38:26 | 2017-12-20T10:38:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 25,332 | 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 <memory>
#include "base/json/json_reader.h"
#include "content/public/browser/render_widget_host_view.h"
#include "content/public/browser... | [
"lixiaodonglove7@aliyun.com"
] | lixiaodonglove7@aliyun.com |
14af5537a6a4d4bfda51162cf117a4ebac4b690f | 291401bb1fa7f07e906f5d3551585101afbd848a | /Parser_if.h | e46dba44e1783f22026e4797ada3f9586ade5707 | [] | no_license | ljmotta/2019_2022_GenESyS | 65c1dad3ab077bcfa1f4f2ac92203362cf4b5841 | 2d3331ec1998c9ac0cd88b2a826472fcff48e795 | refs/heads/master | 2023-04-12T14:41:39.638474 | 2021-04-24T12:34:32 | 2021-04-24T12:34:32 | 350,146,492 | 1 | 0 | null | 2021-04-09T17:39:11 | 2021-03-21T23:28:32 | C++ | UTF-8 | C++ | false | false | 848 | h | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/*
* File: Parser_if.h
* Author: rafael.luiz.cancian
*
* Created on 23 de Agosto de 2018, 15:57
*/
#ifndef PARSER_IF_H
#defin... | [
"cancian@lisha.ufsc.br"
] | cancian@lisha.ufsc.br |
a4a854f526b63f3bf2b98d761a05a5a008cff0b6 | 16697450d50f66674643f957576259c52b3abac2 | /LeetCode/224/main.cpp | c596ff9c2d60e23b29d04adeb4bb88ab39d6e88c | [] | no_license | z1908144712/ExamCode | 1ae0e0ffe600ca23ad1a20e6a1f1bc8fd05707e7 | f9de7a2c5f9a91e3066f7b7d3716230ad49be45d | refs/heads/master | 2023-01-21T13:21:25.771074 | 2020-12-01T09:10:40 | 2020-12-01T09:10:40 | 295,437,393 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,153 | cpp | #include <iostream>
#include <vector>
using namespace std;
class Solution {
public:
int calculate(string s) {
if (s.size() == 0) {
return 0;
}
vector<char> ops;
vector<int> nums;
long num = -1, e = 1;
for (int i = s.size() - 1; i >= 0; i--) {
... | [
"z1908144712@163.com"
] | z1908144712@163.com |
856c11f328e592b73983a2b58065de7e2943cc4f | 638021514a26991089a9f0ba0dcc2560426bb650 | /Zadanie2.cpp | 9d8fc3bda6e58b225efdbfdc9972ca6b2add21fc | [] | no_license | ntlone/Lab3 | b19d35493812d15088912c5706842b737d2d693e | 6eb59e95ea1f253e43d151d39d9dca9c74c752f6 | refs/heads/master | 2021-01-20T18:24:20.458676 | 2016-06-05T01:05:46 | 2016-06-05T01:05:46 | 60,437,110 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 23,192 | cpp | #include "stdafx.h"
#include <GL\glut.h>
#include <iostream>
// tekstura "tęcza" o szerokości 512 tekseli
unsigned char spectrum_512[512 * 3] =
{
0xff, 0x3a, 0x01, 0xff, 0x3b, 0x01, 0xff, 0x3c, 0x01, 0xff, 0x3d, 0x01,
0xff, 0x3e, 0x01, 0xff, 0x3f, 0x01, 0xff, 0x40, 0x01, 0xfe, 0x42, 0x01,
0xfe, 0x43, 0x01, 0xfe, ... | [
"1355ath@gmail.com"
] | 1355ath@gmail.com |
15adea11d67f10c88e8d612654faa5f25701a37a | 0e5295110c7875c2cd2248ead952e2285309b298 | /LearnCplusplus/LearnPointer.cpp | 594fcb6307be40415bbb6a336af82a84f11ebef4 | [] | no_license | weichao-kooboo/LearnCplusplus | c6f7d7cbf521be9029722cd0417d6a4135e4ebe1 | 6866ac8307700384cf20c10d62dfb3bda8ff88d6 | refs/heads/master | 2020-11-23T20:07:40.187649 | 2020-05-11T10:47:27 | 2020-05-11T10:47:27 | 227,802,096 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 191 | cpp | #include "LearnPointer.h"
LearnPointer::LearnPointer()
{
}
LearnPointer::~LearnPointer()
{
}
void LearnPointer::run()
{
//获得原始指针
shared_ptr<PTest> p;
PTest *p1 = p.get();
}
| [
"weichao@kooboo.net"
] | weichao@kooboo.net |
ef09953132336f275cac9d928e915a2d816edb80 | 62ef709a4c64be6082924d876c99652b1c354bf1 | /amigos.cpp | 7e1540b9c796ec5d3eba3dae2ae68cc71cd5916b | [] | no_license | Raquelcuartero/C- | ec5ae276871827f98ab784a86f954680d7ca9343 | e893b2e1be7746a2f896d835cd6a4cb9f5c09816 | refs/heads/master | 2021-03-16T13:57:46.441076 | 2018-02-25T20:09:16 | 2018-02-25T20:09:16 | 111,535,141 | 0 | 0 | null | null | null | null | ISO-8859-10 | C++ | false | false | 546 | cpp | //Este programa trata sobre estructuras
#include<iostream>
using namespace std;
int main(){
//declaro un nuevo tipo de dato
struct persona {
string nombre;
int edad;
char colorPelo;
};
//Declaro una variable tipo persona
persona amigo1;
persona amigo2;
pe... | [
"noreply@github.com"
] | noreply@github.com |
0c69845db57062c1320023435cba957edfd010ff | 455ecd26f1439cd4a44856c743b01d711e3805b6 | /java/include/android.content.AsyncQueryHandler.hpp | 060ec1f3147395548ae5683a9e301be198842736 | [] | no_license | lbguilherme/duvidovc-app | 00662bf024f82a842c808673109b30fe2b70e727 | f7c86ea812d2ae8dd892918b65ea429e9906531c | refs/heads/master | 2021-03-24T09:17:17.834080 | 2015-09-08T02:32:44 | 2015-09-08T02:32:44 | 33,072,192 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,744 | hpp | #pragma once
#include "../src/java-core.hpp"
#include <jni.h>
#include <cstdint>
#include <memory>
#include <vector>
#include "java.lang.Object.hpp"
#include "android.os.Handler.hpp"
namespace android { namespace content { class ContentResolver; } }
namespace android { namespace content { class ContentValues; } }
na... | [
"dev@lbguilherme.com"
] | dev@lbguilherme.com |
355d927c7e528ce164a9d47f532609aa34704634 | ba9322f7db02d797f6984298d892f74768193dcf | /cdn/src/model/SetForceRedirectConfigResult.cc | 9d4c50fe06eaef4f9801b317dd5cbc0325809678 | [
"Apache-2.0"
] | permissive | sdk-team/aliyun-openapi-cpp-sdk | e27f91996b3bad9226c86f74475b5a1a91806861 | a27fc0000a2b061cd10df09cbe4fff9db4a7c707 | refs/heads/master | 2022-08-21T18:25:53.080066 | 2022-07-25T10:01:05 | 2022-07-25T10:01:05 | 183,356,893 | 3 | 0 | null | 2019-04-25T04:34:29 | 2019-04-25T04:34:28 | null | UTF-8 | C++ | false | false | 1,268 | cc | /*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | [
"wb-flc318515@alibaba-inc.com"
] | wb-flc318515@alibaba-inc.com |
538814415f9a0f73262aa70b3045b9e842e59093 | a786e6c4992335c22aef477810a0db06622f099d | /Documents/[C++]ASCII_Art/functions.cpp | b12f3da180d7e780d83bd60097c01867b2b58ecc | [] | no_license | helbard/myrepo | 712d1ed924dfde2728576c0e9892c0e64c2e0aa8 | 74e7f76a69e07fd46c94d7ec3e3b03ec4ed4bff5 | refs/heads/master | 2021-01-15T18:09:18.323087 | 2014-09-16T12:51:48 | 2014-09-16T12:51:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 351 | cpp | #include "Header.h"
void sleep_for(int time)
{
std::chrono::milliseconds dura( time );
std::this_thread::sleep_for( dura );
}
void print_file(char name[])
{
std::ifstream ifs;
ifs.open(name, std::ifstream::in);
char c = ifs.get();
while(ifs.good()) {
std::cout << c;
c = ifs.ge... | [
"markus@linux-4psu.site"
] | markus@linux-4psu.site |
9c50ca3d98b4fecb38916384ca4cb21674fa5ddd | c5e166ca30933851582cc58829960b81182a683f | /src/SegmentationToy.cpp | 8abd0d3a5279eaad3c2c30aa6e404cd077deac02 | [] | no_license | millerhooks/springls2d | abef572d49e6cbe6baac4a02705819ffca48f5ca | 2b10601fd3fffec84b46e7fbf1e7dee903153b85 | refs/heads/master | 2021-01-21T21:06:33.684495 | 2017-05-23T17:05:58 | 2017-05-23T17:05:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,819 | cpp | /*
* Copyright(C) 2017, Blake C. Lucas, Ph.D. (img.science@gmail.com)
*
* 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... | [
"blake.c.lucas@intel.com"
] | blake.c.lucas@intel.com |
e7ea6f9a0c53bb33d7d67b0b4eec4f0bedb5a79f | b111b77f2729c030ce78096ea2273691b9b63749 | /perf-native-large/project540/src/component531/cpp/lib1.cpp | ac3ac8c8bf710412d0b0eb8fa43a3a8e26d2e7e6 | [] | no_license | WeilerWebServices/Gradle | a1a55bdb0dd39240787adf9241289e52f593ccc1 | 6ab6192439f891256a10d9b60f3073cab110b2be | refs/heads/master | 2023-01-19T16:48:09.415529 | 2020-11-28T13:28:40 | 2020-11-28T13:28:40 | 256,249,773 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 118 | cpp | #include <stdio.h>
#include <component531/lib1.h>
int component531_1 () {
printf("Hello world!\n");
return 0;
}
| [
"nateweiler84@gmail.com"
] | nateweiler84@gmail.com |
bef86aeb6fbdee93bf474df67346aa384a389abf | 9f2b07eb0e9467e17448de413162a14f8207e5d0 | /tests/manual/2d/powerlaw/init_state_2d.spatialdb | e7b5614fe634080afb9d6f15f494f54e0134112f | [
"MIT"
] | permissive | fjiaqi/pylith | 2aa3f7fdbd18f1205a5023f8c6c4182ff533c195 | 67bfe2e75e0a20bb55c93eb98bef7a9b3694523a | refs/heads/main | 2023-09-04T19:24:51.783273 | 2021-10-19T17:01:41 | 2021-10-19T17:01:41 | 373,739,198 | 0 | 0 | MIT | 2021-06-04T06:12:08 | 2021-06-04T06:12:07 | null | UTF-8 | C++ | false | false | 1,082 | spatialdb | // -*- C++ -*- (tell Emacs to use C++ mode for syntax highlighting)
//
// This spatial database specifies the initial state variables.
//
#SPATIAL.ascii 1
SimpleDB {
num-values = 12
// names of the stress components
value-names = stress-zz-initial total-strain-xx total-strain-yy total-strain-xy viscous-strain-x... | [
"C.Williams at gns.cri.nz"
] | C.Williams at gns.cri.nz |
e3694061c2bb61be034593fe147a2247e58d21c2 | 87125b07caa7e41c986584facc3378052b2fc8dc | /emscripten-fastcomp-1.13.0/build/lib/Target/X86/Release/X86GenDisassemblerTables.inc.tmp | 4374dedca3fe1242c3b06076f6b8889d30269543 | [
"NCSA"
] | permissive | Xoftware-GoodGame/emscripten | 47d2138fc250f436d109e8ed609e6591787a9431 | 2b69aa2bd59fd644d4dd38f405f1c5a08562b9d7 | refs/heads/master | 2020-07-31T00:23:37.906480 | 2016-11-13T09:34:46 | 2016-11-13T09:34:46 | 73,617,319 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,640,561 | tmp | /*===- TableGen'erated file -------------------------------------*- C++ -*-===*\
|* *|
|* * X86 Disassembler *|
|* ... | [
"james.ryan.stortz@gmail.com"
] | james.ryan.stortz@gmail.com |
e07e1c07b76a9aa50a99970ee55f949418e5b6ab | 16451b68e5a9da816e05a52465d8b0d118d7d40c | /data/tplcache/c1e58721909de48e2e720c635c7aa174.inc | d03eee28a3981c76d0b15b116deca865b90c84bb | [] | no_license | winter2012/tian_ya_tu_ku | 6e22517187ae47242d3fde16995f085a68c04280 | 82d2f8b73f6ed15686f59efa9a5ebb8117c18ae5 | refs/heads/master | 2020-06-20T17:42:14.565617 | 2019-07-16T12:02:09 | 2019-07-16T12:02:09 | 197,184,466 | 0 | 1 | null | null | null | null | GB18030 | C++ | false | false | 1,558 | inc | {dede:field name='keywords'}{/dede:field}
{dede:field name='description'}{/dede:field}
{dede:field name='title'}美腿模特第405期Jill{/dede:field}
{dede:field name='writer'}{/dede:field}
{dede:field name='source'}{/dede:field}
{dede:field name='pubdate'}{/dede:field}
{dede:field name='body'}{/dede:field}
{dede:field name='imgu... | [
"winter2012102@gmail.com"
] | winter2012102@gmail.com |
2a3774042f8095eb12501ee2cb81ac3bac5526c8 | cf0849b4bc13a46cc3779ea3f0f2f8c406e675f8 | /ALGS_CPP/w2_part2/p2.cpp | 6a29b366af48ea22ba34037deefa792b0f58f7c4 | [] | no_license | physhouse/Exercises | 69074ded60725bdc6b7c54a9e10fea20a1659984 | 7a95946c3746ccdd9cb14703972581f8fa83dd6f | refs/heads/master | 2020-12-24T08:42:28.838129 | 2016-11-10T03:22:10 | 2016-11-10T03:22:10 | 73,326,058 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,539 | cpp | #include "cluster.h"
#include "digraph.h"
#include "uf.h"
#include <queue>
#include <vector>
#include <cstdio>
#include <cstdlib>
#include <iostream>
#include <unordered_map>
cluster::cluster(DiGraph& P, int numVertices) : G(P), connect(numVertices)
{
printf("start initilization\n");
for (Edge e : P.edges())
{
p... | [
"physhouse@Yinings-MacBook-Pro.local"
] | physhouse@Yinings-MacBook-Pro.local |
1f15c65ea08c8d5aa48f9be2f1beea917deec539 | 040edc2bdbefe7c0d640a18d23f25a8761d62f40 | /25mt/src/nblike2.cpp | da217e2eca86111b8c9ad3bae9cef46bb75b8bb1 | [
"BSD-2-Clause"
] | permissive | johnrsibert/tagest | 9d3be8352f6bb5603fbd0eb6140589bb852ff40b | 0194b1fbafe062396cc32a0f5a4bbe824341e725 | refs/heads/master | 2021-01-24T00:18:24.231639 | 2018-01-16T19:10:25 | 2018-01-16T19:10:25 | 30,438,830 | 3 | 3 | null | 2016-12-08T17:59:28 | 2015-02-07T00:05:30 | C++ | UTF-8 | C++ | false | false | 4,554 | cpp | //$Id: nblike2.cpp 2860 2011-10-21 23:08:57Z jsibert $
#include "par_t.h"
#include "trace.h"
double min_nb_par = 0.0;
double max_nb_par = 100.0;
template <typename MATRIX1, typename MATRIX2>
void resid_comp(const MATRIX1& obs, const MATRIX2& pred, const MATRIX1& like, const int report);
template <typename DOUBLE>
v... | [
"sibert@hawaii.edu"
] | sibert@hawaii.edu |
5fe9ec47817d004894f306ac3fea8416c3d90128 | 0d37a489416e75ff013ebec2fbc2fdad80a521ac | /opi_emac_ltc_smpte/include/oscserver.h | 636f935086f2a2f27c69a9395072257701a41cd1 | [] | no_license | JohnSHoover/rpidmx512 | fc26f7ee9ead5c1a9cb4dbbac5b4963744d3353d | ed1416b693d28030ba9ae45a25adf0f280bfc70b | refs/heads/master | 2022-04-10T17:31:36.334680 | 2020-04-10T16:48:45 | 2020-04-10T16:48:45 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,910 | h | /**
* @file oscserver.h
*
*/
/* Copyright (C) 2019-2020 by Arjan van Vught mailto:info@orangepi-dmx.nl
*
* 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 ... | [
"Arjan.van.Vught@gmail.com"
] | Arjan.van.Vught@gmail.com |
7c9a815730c3d1918fa5fc79bff54a3c674cfc4a | d3f38c70958ffcc50e387f786e0b3c9045ae702e | /src/wx/MatView/wxMatView.cpp | 8ad89d78a19b7729fe09a1d575d4ba6f6de4505f | [] | no_license | whpark/gtl | e510534eda24cd70a792890f0e77b9fb84ae1dc5 | 7c8c9be4b7a39fce08b4a26a2d5d6f7005025c1a | refs/heads/master | 2023-08-31T10:47:39.610608 | 2023-08-30T07:32:09 | 2023-08-30T07:32:09 | 339,640,266 | 0 | 2 | null | 2022-12-15T01:04:56 | 2021-02-17T07:13:24 | C++ | UTF-8 | C++ | false | false | 14,361 | cpp | ///////////////////////////////////////////////////////////////////////////
// C++ code generated with wxFormBuilder (version 3.10.1-284-gf026a8e1)
// http://www.wxformbuilder.org/
//
// PLEASE DO *NOT* EDIT THIS FILE!
///////////////////////////////////////////////////////////////////////////
#include "pch.h"
#inclu... | [
"whitedevil75@naver.com"
] | whitedevil75@naver.com |
bc7811d08300ca04dccd75851ab6e10c31d4f28e | 886af21972b21fcad13a94a51fa9238b24a81c6e | /op_ros_helpers/src/ROSMapHandler.cpp | 54863ec12b82ea082346c15d4536758ef653d51b | [
"Apache-2.0"
] | permissive | neophack/common | 077ae7e5ec8106b63923d37f6bbbecb57df7886e | 29f6dc2a05e11204a469d6b7517cf80003956cf1 | refs/heads/master | 2023-08-14T19:32:50.324499 | 2021-09-20T02:16:52 | 2021-09-20T02:16:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,374 | cpp | /// \file ROSMapHandler.h
/// \brief Handle road network mapping functionality for OpenPlanner, such as message subscription, reading the map, measurement conversion
/// It handles (Vector Maps, KML, Lanelet2)
/// \author Hatem Darweesh
/// \date June 18, 2021
#include "op_ros_helpers/ROSMapHandler.h"
#include "op_... | [
"marcusvini178@gmail.com"
] | marcusvini178@gmail.com |
6b2fb7d175fe5c215023bb387dd0eba5c724fe3e | 62a2243638434c67199503c23ff9ea516dfd5534 | /libxaos-maths/interface/linear/affine.h | dd3ac642f8358b1b94ebf482a6270389c7c306f3 | [
"MIT"
] | permissive | CorneliaXaos/libxaos | 163e963771628155016d5541686e679c31e2cf27 | 7637f7279d08f451841633a59cd2fbd210bdc58b | refs/heads/master | 2021-01-12T07:35:32.997631 | 2017-04-16T03:33:16 | 2017-04-16T03:33:16 | 76,983,602 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,256 | h | #ifndef LIBXAOS_MATHS_LINEAR_AFFINE_H
#define LIBXAOS_MATHS_LINEAR_AFFINE_H
#include "linear/Matrix.h"
#include "linear/Vector.h"
namespace libxaos {
namespace linear {
/**
* @brief Contains methods for producing 2D and 3D affine transforms.
*
* Contains helper method... | [
"cornelia.xaos@gmail.com"
] | cornelia.xaos@gmail.com |
61527faa6fbce8b505b6dfe4474ed1731d46cb9c | 0b5b650d2990778821dd2ec853cfabfc16a30a72 | /trivia/LoginManagerException.h | 470cb8daabff3a3b2934dd605229f7a9403626a5 | [] | no_license | DarthBakerXD/Trivia-game | 6d8bd9079ee550d349973f97d9758cda90ab15cf | cd9efadd8bb5e7d62a7582bc09855f483cdff48f | refs/heads/master | 2021-05-18T16:32:16.686887 | 2020-03-30T13:52:44 | 2020-03-30T13:52:44 | 251,317,670 | 0 | 0 | null | 2020-03-30T13:53:54 | 2020-03-30T13:44:39 | C | UTF-8 | C++ | false | false | 285 | h | #pragma once
#include <exception>
#include <string>
class LoginManagerException : public std::exception
{
public:
LoginManagerException(std::string error)
{
errorMessage = error;
}
const char* what()
{
return errorMessage.c_str();
}
protected:
std::string errorMessage;
};
| [
"eranking95@gmail.com"
] | eranking95@gmail.com |
554bf0de517a5276289303522aa611ecaa07cc57 | 4dbc51a53b285c0cbb422a20bb957e3e6049b4ff | /tuan1/HelloWeek1_1.cpp | 194830090d7b22edc0c8ccee8f8449c6327f3c5a | [] | no_license | Darrell-Ha/KTLT20202 | 2f605c6280e06f06a2677acd8863df2f9b4ff27a | 8244d62239784f174f29ef2bb05353d00b1a4edb | refs/heads/master | 2023-04-23T21:51:34.739208 | 2021-05-04T04:33:39 | 2021-05-04T04:33:39 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 124 | cpp | #include <iostream>
using namespace std;
int main (){
cout<<"Chao ban, minh den voi the gioi lap trinh";
return 0;
} | [
"hatrongdat219@gmail.com"
] | hatrongdat219@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.