blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 3 264 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 5 140 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 986
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 23
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 145
values | src_encoding stringclasses 34
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 3 10.4M | extension stringclasses 122
values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
fe8e84b59f5873c45609d291dcf0899bc81f1c72 | 693e63f1c6054f7897083fec02f138392ad71d9b | /example/http/server/flex/http_server_flex.cpp | 1607a1b8ff18bfbabddbcc8b10a0a6dc747aabd0 | [
"LicenseRef-scancode-unknown-license-reference",
"BSL-1.0"
] | permissive | HowardHinnant/beast | f45f4f0bc9162e61c28a641f528634999880d1de | fa112ef5fc6b5e5ddb275b8ea2c50714df06041c | refs/heads/develop | 2021-01-23T07:33:59.604512 | 2017-09-05T17:14:51 | 2017-09-05T17:14:51 | 102,509,121 | 2 | 1 | null | 2017-09-05T17:11:59 | 2017-09-05T17:11:59 | null | UTF-8 | C++ | false | false | 18,712 | cpp | //
// Copyright (c) 2016-2017 Vinnie Falco (vinnie dot falco at gmail dot com)
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
// Official repository: https://github.com/boostorg/beast
//
//------------------... | [
"vinnie.falco@gmail.com"
] | vinnie.falco@gmail.com |
c66b1cd2ed16e89bd59292279f100b2c4a78c97f | 7789ad02373dd0f836133e147d50ba69bdd95994 | /PowerMsgLog/stdafx.cpp | 242fb77be15e223656867806a4929dacad16bc45 | [] | no_license | wfschmitt/logging_ce | 0124eb9f970a0a5b2573f3e237933fefbb334e85 | bf6d04a3c816620c98f5b38e2bd8e5838faa6d22 | refs/heads/master | 2021-01-16T22:59:33.664435 | 2014-05-22T08:02:50 | 2014-05-22T08:02:50 | 20,857,992 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 298 | cpp | // stdafx.cpp : source file that includes just the standard includes
// PowerMsgLog.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
#include "stdafx.h"
// TODO: reference any additional headers you need in STDAFX.H
// and not in this file
| [
"hjgode@gmail.com"
] | hjgode@gmail.com |
33c9fb513a62aaac52d9c1bb87b2d75a48657b32 | f5758ed70a5fb4d2e8ffeb5ede061cbe0dab0197 | /hw3.cpp | d44a4b69ccc4aaacaf72ce42544aa3aa216b6a97 | [] | no_license | jjongchan/learningc | 85d88f89eb9116cca2f0176c303fbe47919b00bd | 34cb0e01f277ee70221f56e11bc713eea8c97419 | refs/heads/master | 2021-04-29T01:03:56.628351 | 2017-01-02T17:14:59 | 2017-01-02T17:14:59 | 77,786,823 | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 504 | cpp | #include<stdio.h>
int main()
{
int time_by_sec = 54321; // 초 단위로 주어진 시간
int hour, min, sec;
sec = time_by_sec; //초에 주어진 값을 대입
hour = (sec / 3600); // 초를 이용하여 시간을 계산
sec = sec - (hour * 3600);// 초에서 시간단위만큼 빼줌
min = (sec / 60); // 남은 초에서 분을 계산
sec = sec - (min * 60); // 분을 뺀 나머지가 초
printf("%d초는 %d시간 %d분 %d초 입... | [
"alehfkr@naver.com"
] | alehfkr@naver.com |
9e35cafb83cc3e41f6de1e60bb7724d92a941448 | 8c339f9b8c9c3edbbc668bf69e773ece2f27fc84 | /112A.cpp | e99fbbb91ca61075582061286008becb02904b5f | [] | no_license | saptarsi96/Codes | 8828b1da724a6daf2905ef720c5d7a0c8db65ab7 | 52fd11265eec9de9ccbff88a68fa7d33950170db | refs/heads/master | 2021-06-17T02:30:56.081683 | 2021-03-09T03:23:30 | 2021-03-09T03:23:30 | 170,972,612 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 398 | cpp | #include <iostream>
#include <cstdio>
#include <cstdlib>
#include <string>
using namespace std;
string s1,s2;
int main() {
//freopen("a.in","r",stdin);
getline(cin,s1);
getline(cin,s2);
for (int i=0;i<s1.size();++i) {
if (s1[i]>=97) s1[i]-=32;
if (s2[i]>=97) s2[i]-=32;
}
if (s1==s2) printf... | [
"saptarshi.saha0@gmail.com"
] | saptarshi.saha0@gmail.com |
805ecb567f3b451f72e684e2e266d72decde413d | c9ec1fcf9a3462f3f9deafa974d107a58f9b5545 | /UMAD/UMAD/HeaderFiles/classifier/util/ReadLabel.h | 32515eff12668c0487c30f3326fc5ded2561512f | [] | no_license | geekzph/UMAD | 85c6b4ef89e12b824dc198f25d475a0c6315421f | 532bb8ed51e2d2eeaa77e2d4ebd0b9f8452bd5aa | refs/heads/master | 2021-01-21T07:57:18.763598 | 2015-05-07T16:32:15 | 2015-05-07T16:32:15 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 756 | h | #ifndef READLABEL_H
#define READLABEL_H
#include "../../../HeaderFiles/metricdata/MetricData.h"
#include <fstream>
#include <string>
#include <sstream>
#include <map>
using namespace std;
/**
*@ file readlabel.h
*@ classes store data number and the class label of train data
*@ author Ping Li
*@ version 2014-08-0... | [
"maorui@szu1304"
] | maorui@szu1304 |
df3ec22a63a286f3c3e73db718f864ff17834b10 | 96202389c4800b77670f51653e821192d336fb0f | /BET.h | 76046129015c982f95c853f82e35ec8eb6fd42f6 | [] | no_license | ChristelleNieves/Binary-Expression-Tree | 17f28b71618b2581933bbdcec8b286af0cc4e64e | 745d0b55f7a3cb94a42b18df68a501dead503885 | refs/heads/master | 2022-04-24T09:27:58.722824 | 2020-04-24T02:25:00 | 2020-04-24T02:25:00 | 258,383,385 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,235 | h | // **********************************************************
// * Name: Christelle Nieves * *
// * Assignment: Assignment 4: Binary Expression Tree *
// * Date: March 15, 2020 * *
// *... | [
"noreply@github.com"
] | ChristelleNieves.noreply@github.com |
1c047a5963d4b3888b5f6fbb96a19f79c4a828be | 4feb898677e53120ada56f82ddad9165f6553f3d | /reference-gui/src/ColumnChooser.h | 2d0bc23ae9ca59995dd93157d492c4e93e2c99f7 | [] | no_license | ifaoe/daisi-gui | 0b2567a43787fdca6ba522ba9cabe939f0859cd0 | c786a460cd1c422e39b055c962d9deb3c3639f31 | refs/heads/master | 2020-04-15T15:02:57.202263 | 2016-06-03T08:25:53 | 2016-06-03T08:25:53 | 44,369,004 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 878 | h | /*
* ColumnChooser.h
*
* Created on: Aug 13, 2015
* Author: awg
*/
#ifndef SRC_COLUMNCHOOSER_H_
#define SRC_COLUMNCHOOSER_H_
#include <qdialog.h>
#include "UserSettings.h"
#include <QDialogButtonBox>
#include <QButtonGroup>
#include <QLayout>
class ColumnChooser: public QDialog {
Q_OBJECT
public:
Column... | [
"a.wegener@ifaoe.de"
] | a.wegener@ifaoe.de |
7f0a6ed3e3c11fc875b26b4ca54ea82547f9269a | e72026242a7d4bfc8d2d0e8e03c7303c77ed3746 | /BinaryMeshFitting/ChunkBlocks.hpp | 5d71eb179ddc7a06e281021b003a4931e32ec058 | [
"MIT"
] | permissive | torss/BinaryMeshFitting | a732c52de93704b1697dbb38d64917e67c0ed78a | d44ee7c995d461ae704f6da83f2a0b96c3957580 | refs/heads/master | 2021-09-12T20:22:34.247830 | 2018-04-20T16:58:58 | 2018-04-20T16:58:58 | 124,610,750 | 0 | 0 | MIT | 2018-03-10T15:00:11 | 2018-03-10T01:22:35 | C++ | UTF-8 | C++ | false | false | 3,473 | hpp | #pragma once
#include <cstdint>
#include <string>
#include <FastNoiseSIMD.h>
#include "LinkedNode.hpp"
#include "Vertices.hpp"
struct BinaryBlock : public LinkedNode<BinaryBlock>
{
uint32_t size;
uint32_t* data;
bool initialized;
inline BinaryBlock()
{
initialized = false;
size = 0;
data = 0;
}
inline ... | [
"charliejennings2@hotmail.com"
] | charliejennings2@hotmail.com |
fd84c2a3b383bc02462e037b9b41b5767e4f144e | 316f02ec85e3be5f231579db1536e9dfd59ddf34 | /lSource.cpp | 1ae09cfe3ec3ccf9091c0231fae55f7f9986f2df | [] | no_license | Kirill12043/Practic | cfe574eaf717068907175810b38f07d53c21ec92 | 2a3c1eeddcd373dfae9fd4ff4bf6baa743825953 | refs/heads/master | 2020-06-13T22:37:26.773269 | 2019-07-03T19:24:18 | 2019-07-03T19:24:18 | 194,810,466 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,109 | cpp | #include <stdio.h>
#include <iostream>
#include <fstream>
#include <chrono>
#include <ctime>
#include "opencv2/core.hpp"
#include "opencv2/features2d.hpp"
#include "opencv2/highgui.hpp"
#include "opencv2/imgproc.hpp"
using namespace cv;
using namespace std;
void my_mouse_callback(int event, int x, int y,... | [
"noreply@github.com"
] | Kirill12043.noreply@github.com |
61e9d6db5a5e7d91352b405f77091f1d5025f444 | e68c1f9134b44ddea144f7efa7523076f3f12d3a | /FinalCode/Skeleton_King_Whirlwind_Loop.cpp | e065496cdc91d1012964b4a5c610d0aa1710d114 | [] | no_license | iso5930/Direct-3D-Team-Portfolio | 4ac710ede0c9176702595cba5579af42887611cf | 84e64eb4e91c7e5b4aed77212cd08cfee038fcd3 | refs/heads/master | 2021-08-23T08:15:00.128591 | 2017-12-04T06:14:39 | 2017-12-04T06:14:39 | 112,998,717 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,303 | cpp | #include "StdAfx.h"
#include "Skeleton_King_Whirlwind_Loop.h"
CSkeleton_King_Whirlwind_Loop::CSkeleton_King_Whirlwind_Loop(void)
{
// StateType
m_eStateType = STATE_TYPE_SKELETON_KING_WHIRLWIND_LOOP;
// Mode
m_iMode = 0;
// Time
m_fTime = 0.0f;
// Effect
m_iEffect = 0;
}
CSkeleton_King_Whirlwind_Loop::~C... | [
"iso5930@naver.com"
] | iso5930@naver.com |
cde91a16fe74e5f31eb12c5fcd7c76393ed2fed3 | 0d610860a4a4106c48fd6c0350d48b29a919db41 | /classic/caseIdoNotUnderstand/chigua/constant/turbulenceProperties | a472f0163841cf276bc24f1037c778a60e474588 | [] | no_license | randomwangran/CMP | 8fd722f941634e146a5b1a98557c760c4200838a | e4f742c9099aae47f448fa8c57059071a0be35e6 | refs/heads/master | 2022-08-28T01:40:55.988534 | 2020-05-21T21:34:14 | 2020-05-21T21:34:14 | 163,246,681 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,260 |
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 5 | | \\ / A nd | Web: www.OpenFOAM.org | | \\/ M anipulation | | \*----------------------------------------------------------------------... | [
"randombazinga@gmail.com"
] | randombazinga@gmail.com | |
7443b643e8307198bba71349b5c1dc1b13988f68 | 07fe910f4a2c7d14e67db40ab88a8c91d9406857 | /game/t3/compiler/Reference_Node.inl | 6c17b9576e49204437ddd19d64f90cc08381afa0 | [] | no_license | SEDS/GAME | e6d7f7a8bb034e421842007614d306b3a6321fde | 3e4621298624b9189b5b6b43ff002306fde23f08 | refs/heads/master | 2021-03-12T23:27:39.115003 | 2015-09-22T15:05:33 | 2015-09-22T15:05:33 | 20,278,561 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 193 | inl | // -*- C++ -*-
// $Id$
//
// T3_Reference_Node
//
inline
T3_Reference_Node::T3_Reference_Node (void)
{
}
//
// ~T3_Reference_Node
//
inline
T3_Reference_Node::~T3_Reference_Node (void)
{
}
| [
"hillj@cs.iupui.edu"
] | hillj@cs.iupui.edu |
d2be48ff11ff0bab75befc5c30ca32caf2a16c68 | 8973dd51588517ac8755230820e97b8215cadc92 | /cores/Cosa/api/Cosa/Canvas/Font/Segment32x50.cpp | ad3da523a8c271b0594f1c170a0dbffa664a8181 | [
"BSD-3-Clause"
] | permissive | UECIDE/UECIDE_data | 3fa6b17113743de7bcb7d3cb8d430637efb494b6 | 96bf6b15910ec3794bd7c13e5274e5ac03379aa9 | refs/heads/master | 2016-09-06T17:38:44.223404 | 2014-02-15T00:48:46 | 2014-02-15T00:48:46 | 13,354,806 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 12,137 | cpp | /**
* @file Cosa/Canvas/Font/Segment32x50.cpp
* @version 1.0
*
* @section License
* Copyright (C) 2012-2013, Mikael Patel
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either... | [
"matt@majenko.co.uk"
] | matt@majenko.co.uk |
c6052237bad61f88e348143303b20680ae189e08 | 502f2ff4dddc707b2ced51e3cd4058b5ad8f1502 | /UVA/871_counting_cells_in_a_blob.cpp | 72128f184f14a31339dd3854b830695cb42f210d | [] | no_license | miguelAlessandro/CompetitiveProgramming | 609a68a646f0976ed1c00fbcf861777844c7040d | 64ac15eafb9c62dc713ce3d4b679ba6a032e1d5f | refs/heads/master | 2021-06-01T11:02:22.439109 | 2020-10-08T06:26:27 | 2020-10-08T06:26:27 | 51,873,676 | 1 | 1 | null | 2020-10-08T06:26:28 | 2016-02-16T22:01:20 | C++ | UTF-8 | C++ | false | false | 4,107 | cpp | #include <cstdio>
#include <cstdlib>
#include <iostream>
#include <algorithm>
#include <vector>
#include <list>
#include <map>
#include <complex>
#include <utility>
#include <iterator>
#include <sstream>
#include <string>
#include <cstring>
#include <cctype>
#include <cmath>
#include <queue>
#include <stack>
#include <... | [
"mminih@uni.pe"
] | mminih@uni.pe |
f9170118025b73fbb42c3decec0744b0eef92960 | 071860b148295683c995a488c195908f7499579d | /chapter_5/futures/basic_futures.cpp | 5542ddcfd477767c6428d9e5a318145947bbb97a | [] | no_license | ChadMcintire/Masteringmultithreading | 3c35428b756ab8d12da007cdb3be2153b4884003 | d22d1d9fb287b779de5e34c7ec9ba16e7dcdc058 | refs/heads/main | 2023-03-02T00:51:16.812248 | 2021-02-09T01:39:16 | 2021-02-09T01:39:16 | 332,611,683 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 579 | cpp | #include <iostream>
#include <future>
#include <chrono>
bool is_prime (int x) {
for (int i = 2; i < x; ++i){
if (x%i==0){
return false;
}
return true;
}
}
int main() {
std::future<bool> fut = std::async (is_prime, 444444443);
std::cout << "Checking, please wait\n";
... | [
"chadmcintirecloud@gmail.com"
] | chadmcintirecloud@gmail.com |
9f58cce8f2bd4a7463e0a1ce3634d6bcd74f12c5 | 76beaa7e67f69cbf469a14bea1a756bc289ba0e0 | /latihan3/latihan3.cpp | 4e4ce06966dd3943cd47c3452491473ef44862fd | [] | no_license | raizafahra/praktikum7 | 3fd140643fddf19c4bd7205bcd9f3579c4633e4b | f8fa0a381e8e45b921543ff66d2903a669fa2890 | refs/heads/master | 2020-04-10T10:52:27.147228 | 2018-12-08T21:26:18 | 2018-12-08T21:26:18 | 160,978,246 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 255 | cpp | #include<iostream>
#include<string.h>
using namespace std;
void balik(char *s)
{
if (*s != '\0'){
balik(&s[1]);
cout << s[0];
}
}
int main()
{
char* kata = (char*) "raiza";
balik(kata);
cout << endl;
return 0;
}
| [
"raizafahra@mhs.pelitabangsa.ac.id"
] | raizafahra@mhs.pelitabangsa.ac.id |
259cebb373d0b7a889d6c3b37a582191891efd0e | 412d5bba3d728a81314ef5b8238e4ac90ed27ec9 | /engine/runtime/render_b/src/sys/d3d/d3ddrawprim.cpp | 45a8eaf80ce0bd4be94cd9d618df30fc16c1586a | [] | no_license | DrItanium/ltjs | 2684fdc3f6bde3526d0d72083a0869a7d5bfc6f4 | 15fa9599368dd46774eb9ecacf8951e30b429a82 | refs/heads/master | 2020-06-13T05:03:25.753873 | 2015-08-01T18:51:05 | 2015-08-01T18:51:05 | 75,443,663 | 0 | 0 | null | 2016-12-03T01:20:23 | 2016-12-03T01:20:23 | null | UTF-8 | C++ | false | false | 79,112 | cpp | //------------------------------------------------------------------
//
// MODULE : D3DDRAWPRIM.CPP
//
// PURPOSE : Implements interface CD3DDrawPrim
//
// CREATED : On 8/11/00 At 2:06:07 PM
//
// COPYRIGHT : (C) 2000 LithTech Inc
//
//------------------------------------------------------------------
/... | [
"bibendovsky@hotmail.com"
] | bibendovsky@hotmail.com |
2a3dbf155bc9082fcd2ab6ddfeee96d1efadbe9c | ccb12171ae70b198a55e5d76801dfffd3bafe720 | /HelloGL/Physics.cpp | 67143624db11c65087f1cd9b82ac9337dff68b6c | [] | no_license | Augek158/Particles | 9383d0184964f1b76d50fea6cf056bfaa2beeaf3 | 695406e28efc89d66cb49ed3ebd1b1302bccce10 | refs/heads/master | 2016-09-09T12:28:39.297729 | 2014-06-03T14:20:12 | 2014-06-03T14:20:12 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 166 | cpp | //
// Physics.cpp
// HelloGL
//
// Created by Oscar Johnson on 2014-05-20.
// Copyright (c) 2014 August Nam-Ki Ek. All rights reserved.
//
#include "Physics.h"
| [
"o.johnsson@live.se"
] | o.johnsson@live.se |
d6f1864698b1041b7126ec497f5f66181fc6ef8e | 8c72fd61a0115fec9ea69536b0d3db1ffb63128f | /src/condor_utils/file_modified_trigger.h | 6a6c7826c57b2c40f893ce44ea01954449c9ffce | [
"DOC",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | pavlo-svirin/htcondor | 0aee74af7857ede238f07f68ca0c0109b7e90e9a | 9e00a5874cc2579f5fdc81bb778f540b40b48c87 | refs/heads/master | 2021-06-20T02:22:17.819621 | 2019-06-26T21:54:10 | 2019-06-26T21:54:10 | 193,559,154 | 0 | 0 | Apache-2.0 | 2019-06-24T18:34:57 | 2019-06-24T18:34:56 | null | UTF-8 | C++ | false | false | 1,643 | h | /******************************************************************************
*
* Copyright (C) 1990-2018, Condor Team, Computer Sciences Department,
* University of Wisconsin-Madison, WI.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you
* may not use this file except in compliance with t... | [
"tlmiller@cs.wisc.edu"
] | tlmiller@cs.wisc.edu |
d6e6f6004ae43df19ce3a5aa7d6c643ca1c71045 | 0c75f825c49b38791e428de4e90dbefeffbd3e9d | /progs/others/final.cpp | 85b5bd1ede8dccbc9d76516c3b5515f3ebc324ff | [] | no_license | sadiqueamu/sadiqueamu | f5e375be4a14b1b5f2121e59bafb51ac04939687 | dfc4617c4eb7e970a3fea1c9f1c838e97dab8461 | refs/heads/master | 2020-12-02T22:18:31.892834 | 2017-07-03T13:43:38 | 2017-07-03T13:43:38 | 96,111,220 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 418 | cpp | #include<iostream>
using namespace std;
class final;
class makeFinal {
private:
makeFinal() { cout<<"makeFinal()\n"; }
friend final;
};
class final:virtual makeFinal {
public:
final() { cout<<"final()\n"; }
};
/* Can't inherit final as makeFinal dtor is private */
class derived:public final {
p... | [
"sadiqueamu@gmail.com"
] | sadiqueamu@gmail.com |
e8f7089783a70205ba9d3517c182682538712e42 | 11f15450a21c30b2557ea1ceb8b268988c85f23e | /util/VectorUtil.h | 8dfe6312bb172d47fd652e89053a704f8ec8171c | [
"MIT"
] | permissive | wzx140/Tube_connect | c06a9756be0a924813cfdb0a099b4c95c3bdafea | b5e7d204b076779f7698765d4127747aa2568b52 | refs/heads/master | 2020-04-09T12:37:19.749725 | 2019-07-20T02:33:42 | 2019-07-20T02:34:12 | 160,357,537 | 0 | 0 | MIT | 2019-03-04T06:03:42 | 2018-12-04T12:56:43 | C++ | UTF-8 | C++ | false | false | 5,623 | h | //
// Created by wzx on 18-11-30.
//
#ifndef TUBE_CONNECT_VECTORUTIL_H
#define TUBE_CONNECT_VECTORUTIL_H
#include <vtkMath.h>
#include <vtkDataArray.h>
#include <vtkPolyData.h>
#include <vtkPolyDataNormals.h>
#include <vtkCellData.h>
#include <vtkDataArray.h>
#include <array>
using std::array;
namespace VectorUtil ... | [
"masterwangzx@gmail.com"
] | masterwangzx@gmail.com |
0f64dec2e1de1606500ee72a69d34898c125c595 | 2cd96b2cc99ae4a21acd5191ec71de1d5fec284c | /online-judges/spoj/ae00.cpp | 4862880896fb1b2522c93df46f70122dbffc2efc | [] | no_license | Logic21/competitive-programming | 4020d0875c4d84ad9fce4a4a6a4ec4117885bff3 | fa87caab794f13b2c06f981f861281cbef3e43d5 | refs/heads/master | 2020-05-15T05:52:02.929847 | 2018-12-12T14:38:19 | 2018-12-12T14:38:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 599 | cpp | //http://www.spoj.com/problems/AE00/
#include <iostream>
#include <cmath>
using namespace std;
unsigned long long byteman(int squares){
unsigned long long rectangles = 0;
if(squares == 1) return 1;
//count up to sqrt(n) evalute which divides evenly = +1 solution
int sqrt_n = sqrt(squares);
f... | [
"joaoconde_13@hotmail.com"
] | joaoconde_13@hotmail.com |
dd08ad12c2e9f8927a370135434c2c1ab56ca9b8 | 88c067ccabe72b4bbdcbec7700bb20489d45425c | /13168.cpp | 50c3ef891ff005f8a0722642599f698f0cecaad9 | [] | no_license | SiJun-Yoo/Algorithm | 5a92cb79365ca8db921fb4820ac95929a334d54e | ef89154d7ba0d1b2c85a89f23f84fdbf380baeff | refs/heads/master | 2022-11-05T17:33:59.793003 | 2022-09-19T14:16:23 | 2022-09-19T14:16:23 | 281,680,931 | 2 | 1 | null | null | null | null | UHC | C++ | false | false | 2,138 | cpp | #include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
typedef pair<double, double> pdd;
typedef queue<int> qi;
typedef queue<pair<int, int>> qii;
typedef priority_queue<int> pqi;
typedef priority_queue<ll> pql;... | [
"noreply@github.com"
] | SiJun-Yoo.noreply@github.com |
5ea07ba0746c619cb464aa91a259240b977c8aa6 | 32ca6fefb239009c47ac5253fc64a15a4e1bf9f1 | /Cplusplus/WRF/WRFVisualization/Src/tcdsmModel/model.cpp | 91e73aac1a8b4cd6ed5cbe0514d88c31d770852b | [] | no_license | szmybs/PhysIKA_Cloud | aa371dc333703e7e0f963b249adbb6c90c7b41f2 | 9ad022d31e64fa48e5e1a9a2ae8e6702a3b321a1 | refs/heads/main | 2023-04-25T08:45:33.801882 | 2021-05-07T06:04:11 | 2021-05-07T06:04:11 | 312,967,199 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 151 | cpp | #include <tcdsmModel/model.h>
//#include <easylogging++.h>
using namespace TCDSM::Model;
//using namespace std;
AbstractModel::AbstractModel()
{
}
| [
"237735890@qq.com"
] | 237735890@qq.com |
8345f00b18a07272bc462147fdfc1e9a3cdd334c | dac5d10c7d53f766e496da8a9cfe06d6c20e29ae | /hdoj/1863.cpp | 32ff8875deedf812899b3fd05425a3d400dd8fda | [] | no_license | koalaink/hdoj | b2f8842cc7a1082f620f593d7480a94da6fe9b20 | b608f46736680c272e8870071c17c5ed82b50da9 | refs/heads/master | 2020-06-14T10:10:29.557015 | 2016-11-30T15:45:39 | 2016-11-30T15:45:39 | 75,200,182 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,170 | cpp | #include<algorithm>
#include<iostream>
#include<stdio.h>
using namespace std;
struct Node{
int x , y , val ;
};
const int MAX_V = 105 ;
const int MAX_E = MAX_V*(MAX_V-1)/2 ;
Node edge[MAX_E] ;
int father[MAX_V] ;
int son[MAX_V] ;
int n , m ;
int block , ans ;
bool cmp( const Node& a , const Node& b ){
return a.val... | [
"Huibin Dai"
] | Huibin Dai |
5e607c29484716ee5190f7773e6c0f3e4809250d | c6bddd88916e6c8697a9e02485bd22c58d76bcec | /GeneratedPlaceholders/Mordhau/MordhauBeaconHost.h | 5bd7101aff5ea00cda93921647331ce574aedd32 | [] | no_license | GIRU-GIRU/Mordhau-Unofficial-SDK | 18d13d62d746a838820e387907d13b0a37aed654 | f831d7355cf553b81fb6e82468b3abf68f7955aa | refs/heads/master | 2020-07-06T03:36:48.908227 | 2020-04-22T13:54:00 | 2020-04-22T13:54:00 | 202,872,898 | 7 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 253 | h | #pragma once
#include "CoreMinimal.h"
#include "MordhauBeaconHost.generated.h"
UCLASS()
class AMordhauBeaconHost : public AOnlineBeaconHostObject
{
GENERATED_BODY()
public:
UPROPERTY(Replicated, EditAnywhere, BlueprintReadWrite)
int OpenSlots;
}; | [
"45307738+crypdos@users.noreply.github.com"
] | 45307738+crypdos@users.noreply.github.com |
a8be3aacc93b7adc483a0d050b190e902ae92c68 | 3a79dbfa4745da59ee29ecc880970dad4c4e412d | /shufflenetv2_final_solution/acceleartor_hls_final_solution/optimize_conv1/syn/systemc/ShuffleNetV2_8.cpp | d291a7fcf5ac38a56ed5ed8093e21e6f356bc27c | [] | no_license | loujc/shufflenetv2_hls | 90d70607e973a52fb846142fcf63ab3dcbc135d1 | db1e0901cefa4bb1b5a2d3a9c717cbd633210aa4 | refs/heads/master | 2021-10-28T04:36:11.344041 | 2019-04-22T02:10:58 | 2019-04-22T02:10:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 180,816 | cpp | #include "ShuffleNetV2.h"
#include "AESL_pkg.h"
using namespace std;
namespace ap_rtl {
void ShuffleNetV2::thread_tmp_1311_fu_17053_p3() {
tmp_1311_fu_17053_p3 = esl_concat<10,5>(tmp_514_reg_37331.read(), ap_const_lv5_0);
}
void ShuffleNetV2::thread_tmp_1312_fu_17064_p3() {
tmp_1312_fu_17064_p3 = esl_concat... | [
"jzfengziyan@gmail.com"
] | jzfengziyan@gmail.com |
cae12f57b522fa21a9cec6f959393ba6dbb514f1 | 5ec06dab1409d790496ce082dacb321392b32fe9 | /clients/cpp-restsdk/generated/model/ComAdobeGraniteBundlesHcImplJobsHealthCheckProperties.h | 0dc84fbbd7fe81e9249dc70ee71833011e2085ca | [
"Apache-2.0"
] | permissive | shinesolutions/swagger-aem-osgi | e9d2385f44bee70e5bbdc0d577e99a9f2525266f | c2f6e076971d2592c1cbd3f70695c679e807396b | refs/heads/master | 2022-10-29T13:07:40.422092 | 2021-04-09T07:46:03 | 2021-04-09T07:46:03 | 190,217,155 | 3 | 3 | Apache-2.0 | 2022-10-05T03:26:20 | 2019-06-04T14:23:28 | null | UTF-8 | C++ | false | false | 2,475 | h | /**
* Adobe Experience Manager OSGI config (AEM) API
* Swagger AEM OSGI is an OpenAPI specification for Adobe Experience Manager (AEM) OSGI Configurations API
*
* OpenAPI spec version: 1.0.0-pre.0
* Contact: opensource@shinesolutions.com
*
* NOTE: This class is auto generated by OpenAPI-Generator 3.2.1-SNAPSHOT.... | [
"cliffano@gmail.com"
] | cliffano@gmail.com |
ee1405116fbe54ab3d50b96922819bc2d70437d7 | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/git/gumtree/git_patch_hunk_2806.cpp | e0a2ae421afb8dd0a9c460ad05b8cfde7e83ee74 | [] | 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 | 778 | cpp | tagged = tag->tagged;
while (tagged->type == OBJ_TAG) {
tagged = ((struct tag *)tagged)->tagged;
}
if (tagged->type == OBJ_TREE) {
warning("Omitting tag %s,\nsince tags of trees (or tags of tags of trees, etc.) are not supported.",
- sha1_to_hex(tag->object.sha1));
+ oid_to_hex(&tag->object.oid));
... | [
"993273596@qq.com"
] | 993273596@qq.com |
3da9840084bca50684f98bf0628db9c7e115efe6 | 7476f475b4a1b40970120b074fdec33f2c988296 | /hoja5/ejercicio5.cpp | 3b6d99c661251b6e670645322ebe9fbe8ee9c9b2 | [] | no_license | MasterBlck/cpp-programs | 0dc46db676d90e6841d9925dc0ac57fcde50c1bb | d64aba5bd678eb2be8944ba028ecff6f74722a9a | refs/heads/main | 2023-05-30T14:14:15.144624 | 2021-06-14T03:28:40 | 2021-06-14T03:28:40 | 376,653,987 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 81 | cpp | #include <stdio.h>
int contarVocales(char *frase);
int main(){
return 0;
}
| [
"198add@gmail.com"
] | 198add@gmail.com |
11b5f3dc81ee0b6de5a4c0a249ae30c6b39016e3 | 2f015500a180f1dab1eaa23978bbd645cf43131e | /src/borwall-ex1-densityBased/testCases/pitzDaily/7/uniform/functionObjects/functionObjectProperties | 5245c6f1a948732ba83a9a00c9f0acc470bcee9b | [] | no_license | krajit/borwall-example1 | 2da6fb0f4df5efec41b6af4360803c09a13ff3e5 | 834ea8d5fa585570fb946fc907aa84ce9fa5145c | refs/heads/master | 2020-08-02T14:51:34.352745 | 2019-10-09T18:04:06 | 2019-10-09T18:04:06 | 211,396,158 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 895 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v1806 |
... | [
"ajitkumar22@gmail.com"
] | ajitkumar22@gmail.com | |
d0351637d58903ff21e410f132aeb700c12c4e6b | 1a4aebcb67a731a7676fef6fa7ffc23e9a409b51 | /870/gradTy | 9d77e64289fa9af252df6a84d19413d36d2b1fa6 | [] | no_license | spaul1995/nanopore_voltage | 8bd6768c44e662293b25298d617c494921cd0543 | e5d32a5bf9021c1296c18335d1bd2f51d3a8dd74 | refs/heads/master | 2020-03-30T19:03:45.366817 | 2018-10-04T08:20:33 | 2018-10-04T08:20:33 | 151,525,959 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 87,172 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 5.0 |
... | [
"soumya.paul.deep@gmail.com"
] | soumya.paul.deep@gmail.com | |
966de4c908e5e2079ad80e4eb195c86f5e2e0836 | a1809f8abdb7d0d5bbf847b076df207400e7b08a | /Simpsons Hit&Run/game/libs/pure3d/tools/plugins/maya/p3dDeformer/expressionGroup.hpp | d3cc7b66886756af5447b27c059811fe0aa49266 | [] | no_license | RolphWoggom/shr.tar | 556cca3ff89fff3ff46a77b32a16bebca85acabf | 147796d55e69f490fb001f8cbdb9bf7de9e556ad | refs/heads/master | 2023-07-03T19:15:13.649803 | 2021-08-27T22:24:13 | 2021-08-27T22:24:13 | 400,380,551 | 8 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,981 | hpp | /*===========================================================================
p3dDeformer/expressionGroup.hpp
Copyright (c)2000 Radical Entertainment, Inc.
All rights reserved.
===========================================================================*/
#ifndef P3D_DEFORM_EXPRESSIONGROUP_HPP
#def... | [
"81568815+RolphWoggom@users.noreply.github.com"
] | 81568815+RolphWoggom@users.noreply.github.com |
a39b4f61b2a6e4d3ae8e2e2287f29f78b6234ecc | 9ccc4359f3a7c242cbe6bbd410f267af16d2deca | /unset_ith_bit.cpp | a48bf7bad0627e0ae8201dd22a0f0288943d5c89 | [] | no_license | anuragpratap05/C_N_Bit_Manipulation | c7f36606c7104db1847282edf8d1cc43a9ce3413 | f114a584ca66bc797d168c963d9c12567f118dc4 | refs/heads/master | 2022-12-22T18:22:46.885004 | 2020-09-26T17:30:42 | 2020-09-26T17:30:42 | 298,602,717 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 341 | cpp | # C_N_Bit_Manipulation
int turnOffIthBit(int n, int i){
/* Don't write main().
* Don't read input, it is passed as function argument.
* Return output and don't print it.
* Taking input and printing output is handled automatically.
*/
int z=1<<i;
int y=~z;
int ans=y&n;
retur... | [
"noreply@github.com"
] | anuragpratap05.noreply@github.com |
52b17ab6dc6af83bd91ef212d63db1e2c2ea49a5 | b0b96f7c89b458f7fe6a7f2feaf8684992a48c26 | /src/test/DoS_tests.cpp | baa85d594132aecf48dad9922c92932da3f6ae61 | [
"MIT"
] | permissive | straks/straks | 28cf4ba40db492df7a59110e77b615727c17cf26 | cbb43f453231aa71a991249f61d3f35fe1503a1e | refs/heads/master | 2023-02-09T00:02:38.845280 | 2019-06-15T23:30:15 | 2019-06-15T23:30:15 | 110,913,987 | 68 | 53 | MIT | 2018-05-31T13:46:09 | 2017-11-16T02:45:14 | C++ | UTF-8 | C++ | false | false | 7,257 | cpp | // Copyright (c) 2017-2018 STRAKS developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
// Unit tests for denial-of-service detection/prevention code
#include "chainparams.h"
#include "keystore.h"
#include "net.h"
#include... | [
"squbs@protonmail.com"
] | squbs@protonmail.com |
1fa8d92f0b7bc5653d2baa6130bff9165273d747 | dfcd0002703bbd36408646ac02a3e3927c80741c | /src/ConEmu/VirtualConsole.h | 3f64ef36aba9e1f4d6e7d4024238ffb36d169c9d | [
"BSD-3-Clause"
] | permissive | explosion78/ConEmu | 7cc45a733a8c649698c26b93548cb004a41e5982 | 40d4c613535434417d5642d2ce7f135ec6e7a06a | refs/heads/master | 2020-12-25T11:57:46.176532 | 2016-06-20T08:43:11 | 2016-06-20T08:43:11 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,589 | h |
/*
Copyright (c) 2009-2016 Maximus5
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 code must retain the above copyright
notice, this list of conditions and the followin... | [
"ConEmu.Maximus5@gmail.com"
] | ConEmu.Maximus5@gmail.com |
15bcf28db22ac36df4771519e4bbdf979aa30fb6 | 002b6230874dea6e4d76defafc1ae293b5744918 | /library/MultiRegions/GlobalLinSysIterativeFull.h | 8bc79e2eed86cea3cd44a84f31f5364b47a51e1b | [
"MIT"
] | permissive | SCOREC/nektar | f3cf3c44106ac7a2dd678366bb53861e2db67a11 | add6f04b55fad6ab29d08b5b27eefd9bfec60be3 | refs/heads/master | 2021-01-22T23:16:16.440068 | 2015-02-27T17:26:09 | 2015-02-27T17:26:09 | 30,382,914 | 6 | 7 | null | null | null | null | UTF-8 | C++ | false | false | 3,989 | h | ///////////////////////////////////////////////////////////////////////////////
//
// File GlobalLinSysIterativeFull.h
//
// For more information, please see: http://www.nektar.info
//
// The MIT License
//
// Copyright (c) 2006 Division of Applied Mathematics, Brown University (USA),
// Department of Aeronautics, Impe... | [
"dan.a.ibanez@gmail.com"
] | dan.a.ibanez@gmail.com |
49a5ee982496a7b38a3da4f200c9d759b295921e | 882f9cdff36d2cb59b4e04841b109cfe5f8fdd2c | /Source/GeneticFPS/Public/Wall.h | ff873889e3f4239c714876b1aad300a28b8c209f | [] | no_license | DylanWard14/Genetically-Generated-FPS-Maps | a8bf3f5008c1010120a57c65ed92f86991fcee06 | e1c656720ced576563d7b17e3f2bf71013f8d860 | refs/heads/master | 2020-04-05T08:12:52.309112 | 2018-11-09T05:12:42 | 2018-11-09T05:12:42 | 156,706,083 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 509 | h | // Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "GameFramework/Actor.h"
#include "Wall.generated.h"
UCLASS()
class GENETICFPS_API AWall : public AActor
{
GENERATED_BODY()
public:
// Sets default values for this actor's properties
AWa... | [
"dylan.ward@iinet.net.au"
] | dylan.ward@iinet.net.au |
d126a96e96832f2a24ff8acec70258abf1d5bc78 | e2995b3e9d3cc3852ac69551873c16fc08a73b1b | /IShader.h | 1cc608fd529b917b95202ea3ac6e4bfd1e3c621c | [] | no_license | kristiansterjo/eyden-tracer-02 | 999467a77a978a32130f203cc1d04fb611bd7cc1 | de07e136af5753f0fe52bfb28348fb22321aba40 | refs/heads/master | 2020-08-10T09:52:51.058591 | 2019-10-31T00:37:53 | 2019-10-31T00:37:53 | 214,320,198 | 0 | 0 | null | 2019-10-11T01:50:12 | 2019-10-11T01:50:12 | null | UTF-8 | C++ | false | false | 501 | h | //Kristian Sterjo & Albrit Bendo
#pragma once
#include "types.h"
struct Ray;
/**
* @brief Base shader abstract interface class
*/
class IShader
{
public:
IShader(void) = default;
IShader(const IShader&) = delete;
virtual ~IShader(void) = default;
const IShader& operator=(const IShader&) = delete;
/**
* @... | [
"noreply@github.com"
] | kristiansterjo.noreply@github.com |
b178fe7e299f321f1d191ddfa5cb1ac5d7b72f45 | 59ee5e1f9d2639bef0626d955300e32131e106f7 | /include/fbxsdk/scene/fbxscene.h | a147ab2aa2b3e02fa050bd672624e689ef2511d6 | [] | no_license | gwihlidal/fbx2json | cf60e0edb768133b7048a8292f91b46ceba30cba | cd1e2d1bb7b4562c8d6b52399eb102ee686b0ca3 | refs/heads/master | 2021-01-10T21:42:23.784052 | 2013-03-26T17:47:49 | 2013-03-26T17:47:49 | 20,610,677 | 14 | 6 | null | null | null | null | UTF-8 | C++ | false | false | 22,422 | h | /****************************************************************************************
Copyright (C) 2012 Autodesk, Inc.
All rights reserved.
Use of this software is subject to the terms of the Autodesk license agreement
provided at the time of installation or download, or which otherwise accompanies... | [
"cameronyule@preloaded.com"
] | cameronyule@preloaded.com |
13bbc207b28968c841e7584680ad074895a424d8 | 15a7fd482bdeb804c6247b9baa376a11dc98a823 | /Portable/zoolib/Util_Chan_UTF_Operators.cpp | 368ef25b7fe4a833776c17d74ccf07038289dba0 | [
"MIT"
] | permissive | MorningSun-GitBoy/zoolib_cxx | e2da8153005b12b8493ac45fa8f2e5c504619284 | 456a969b88ae26af928eabc892bedaccdded526a | refs/heads/master | 2021-03-25T09:58:09.288346 | 2020-03-10T16:06:28 | 2020-03-10T16:06:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,190 | cpp | /* -------------------------------------------------------------------------------------------------
Copyright (c) 2014 Andrew Green
http://www.zoolib.org
Permission is hereby granted, free of charge, to any person obtaining a copy of this software
and associated documentation files (the "Software"), to deal in the So... | [
"ag@em.net"
] | ag@em.net |
43092f4965bfc5bdcab98b2bcaa9f6b2128b275f | 964170ed8f181ef172656cae59bcb6058830cbac | /Source/BlackWolf.Lupus.Core/UdpClient.h | 53e992f88e9724ced0f322006fc2c413b0831ab8 | [
"MIT"
] | permissive | Qazwar/lupus-core | 90d189fae2ba6dd24a9c67a1612aed5b8c390390 | ea5196b1b8663999f0a6fcfb5ee3dc5c01d48f32 | refs/heads/master | 2021-05-29T09:34:51.090803 | 2014-11-14T14:47:42 | 2014-11-14T14:47:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,889 | h | /**
* Copyright (C) 2014 David Wolf <d.wolf@live.at>
*
* This file is part of Lupus.
* 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 th... | [
"d.wolf@live.at"
] | d.wolf@live.at |
000cd8afc038b43dd8ab6eb1404039f75b8ea391 | 77783f275694f90e6e7452f2d6da319563f71cc1 | /as per lectures/src/eligibility.cpp | 3ade928489b234b9d60ef5965c8375ae507ecee1 | [] | no_license | JD-93/Hackathon-Case-Study | 940af0f20a885bbfde8b084f67727ddb63170cb6 | a6868847bdeaea546ba8974199de20d8adc9a9cb | refs/heads/master | 2023-02-25T19:50:18.329762 | 2021-02-04T10:10:24 | 2021-02-04T10:10:24 | 255,705,848 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 347 | cpp | /*
* eligibility.cpp
*
* Created on: 19-Apr-2020
* Author: sunbeam
*/
#include "eligibility.h"
eligibility::eligibility() {
// TODO Auto-generated constructor stub
}
eligibility::~eligibility() {
// TODO Auto-generated destructor stub
}
void eligibility::display() {
cout<<course<<","<<eligible_branch... | [
"jaydeep.kachare93@gmail.com"
] | jaydeep.kachare93@gmail.com |
3626831767c48485eb2b02d642a4f352cfc368b9 | ea18d801262e84618aff0a36c0bf6457bbbc3e21 | /homework2/src/helpers/MotionPlanningTree.cpp | de7736c629c82ec6321b18f48076f532b82c5bee | [] | no_license | aruisdante/RBE595-Motion-Planning | 34709d2245eb865e4af49e38d8240456ce94adce | 263d1d704c1604605ccb4ca891bd11140c1ea268 | refs/heads/master | 2016-08-12T03:52:22.540046 | 2013-04-02T20:51:51 | 2013-04-02T20:51:51 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,677 | cpp | /**
* @file MotionPlanningTree.cpp
*
* @date Feb 28, 2013
* @author parallels
* @brief implementation for Motion Planning Tree
*/
//License File
//****************SYSTEM DEPENDANCIES**************************//
#include<iostream>
//*****************LOCAL DEPENDANCIES**************************//
#include "Mot... | [
"adampanzica@gmail.com"
] | adampanzica@gmail.com |
146c18181e40008b2f84be7c7cd2c52d587c705b | 22cda40520fbeb925bf121d39a90dd85b3692244 | /cipher.cpp | c4726b6f86d2987976e078de4a33c34290860ad8 | [
"MIT"
] | permissive | dcberumen/Classical-Ciphers | 57d26b5e61bb345da82b2fedaacd399207f8e3d0 | c8725e5d96757e1f393aef70627eadaf671a687e | refs/heads/master | 2021-01-19T21:35:59.031599 | 2017-04-18T21:38:19 | 2017-04-18T21:38:19 | 88,670,947 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,984 | cpp | #include <string>
#include <stdio.h>
#include <stdlib.h>
#include <fstream>
#include <iostream>
#include "CipherInterface.h"
#include "Caesar.h"
#include "Playfair.h"
#include "Railfence.h"
#include "RowTransposition.h"
#include "Vigenere.h"
using namespace std;
int main(int argc, char** argv)
{
CipherInterface* cip... | [
"noreply@github.com"
] | dcberumen.noreply@github.com |
b13837131251fc1fa9b576be1be0c718373e5aea | 005cb1c69358d301f72c6a6890ffeb430573c1a1 | /Pods/Headers/Private/GeoFeatures/boost/core/demangle.hpp | 86a2f3994d3e5c7c428051ad9ea024b0760369be | [
"Apache-2.0"
] | permissive | TheClimateCorporation/DemoCLUs | 05588dcca687cc5854755fad72f07759f81fe673 | f343da9b41807694055151a721b497cf6267f829 | refs/heads/master | 2021-01-10T15:10:06.021498 | 2016-04-19T20:31:34 | 2016-04-19T20:31:34 | 51,960,444 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 62 | hpp | ../../../../../GeoFeatures/GeoFeatures/boost/core/demangle.hpp | [
"tommy.rogers@climate.com"
] | tommy.rogers@climate.com |
70716759376dc9127488b12ab78b09ddb25ac54c | 700f312f15170a34e6e58ce8475e42f9e7eeb7a3 | /Deputy_chef.cpp | 89e294bb41bef0fd3a79b491fbbe3d248f47a3a5 | [] | no_license | sharad4730/Codechef-feb-long-challenge-2019 | 3850c46e9db19fd88a8dde469ade7606b65c7bfe | ce77f721acc1a8ace1d7b0e66983b9e4ebe868df | refs/heads/master | 2020-05-15T11:25:54.541830 | 2019-04-19T08:19:19 | 2019-04-19T08:19:19 | 182,227,441 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,008 | cpp | #include<bits/stdc++.h>
using namespace std;
int main()
{
int t,n,value1,value2;
cin>>t;
for(int i=0;i<t;i++)
{
cin>>n;
vector<int>v1(n);
vector<int>v2(n);
for(int j=0;j<n;j++)
{
cin>>value1;
v1[j]=value1;
}
for(int j=0;j<n;... | [
"noreply@github.com"
] | sharad4730.noreply@github.com |
67fa31e5b9705961d9ac7c4a42592510a9245b81 | e396ca3e9140c8a1f43c2505af6f318d40a7db1d | /unittest/logic_test/HA763_ReArbitration_82.hpp | 0d6bbb64f845ada5e7ba5b4603dadaaeaa9ed27e | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | kenji-hosokawa/rba | 4fb2c8ef84c5b8bf2d80785986abd299c9e76203 | 52a88df64dcfec8165aea32cb3052e7e74a3a709 | refs/heads/master | 2022-12-17T10:23:05.558421 | 2020-07-29T11:03:27 | 2020-07-29T11:03:27 | 274,852,993 | 0 | 0 | null | 2020-06-25T07:19:19 | 2020-06-25T07:19:19 | null | UTF-8 | C++ | false | false | 1,644 | hpp | // Copyright (c) 2019 DENSO CORPORATION. All rights reserved.
/**
* HA763_ReArbitration_82.hpp
*/
#ifndef HA763_REARBITRATION_82_HPP
#define HA763_REARBITRATION_82_HPP
#include <string>
#include "gtest/gtest.h"
#include "RBAArbitrator.hpp"
#define JSONFILE "HA763_ReArbitration_82.json"
namespace {
using namespa... | [
"nnishiguchi@jp.adit-jv.com"
] | nnishiguchi@jp.adit-jv.com |
3d6f424bd562e6f812e0118f7c8e5695fd3a1873 | 164e709dcf03ce4769c3ba8f874da0666c35bc03 | /RtTpsGalleryControllerApp/tps_gca_measureanglecmd.h | e0ae8eb47b5515ab96ef38b2daeee7f6c43b4e4d | [] | no_license | liq07lzucn/tps | b343894bcfd59a71be48bd47d6eff6e010464457 | a3be6dc50c5f9a2ff448ecff3f5df1956e26ad4f | refs/heads/master | 2021-06-23T16:35:01.349523 | 2017-08-30T08:09:02 | 2017-08-30T08:09:02 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,105 | h | //////////////////////////////////////////////////////////////////////////
/// Copyright, (c) Shanghai United Imaging Healthcare Inc., 2014
/// All rights reserved.
///
/// \author yuxuan.duan (mailto:yuxuan.duan@united-imaging.com)
///
/// \file tps_gca_measureanglecmd.h
/// \brief Measure Angle Command
//... | [
"genius52@qq.com"
] | genius52@qq.com |
bbf47f9d7093e83a8ce9b36ca51915a2bef584a3 | 73ee941896043f9b3e2ab40028d24ddd202f695f | /external/chromium_org/chrome/browser/sync_file_system/local/local_file_sync_status.cc | 230f6c4d0bc2a0391343e270f9d84ffcffe76e33 | [
"BSD-3-Clause"
] | permissive | CyFI-Lab-Public/RetroScope | d441ea28b33aceeb9888c330a54b033cd7d48b05 | 276b5b03d63f49235db74f2c501057abb9e79d89 | refs/heads/master | 2022-04-08T23:11:44.482107 | 2016-09-22T20:15:43 | 2016-09-22T20:15:43 | 58,890,600 | 5 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 2,937 | cc | // Copyright 2013 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 "chrome/browser/sync_file_system/local/local_file_sync_status.h"
#include "base/logging.h"
using fileapi::FileSystemURL;
using fileapi::FileSys... | [
"ProjectRetroScope@gmail.com"
] | ProjectRetroScope@gmail.com |
8c759911f8395807309b633f8f94c2722d854177 | 91604aa0369c53e8c76f48039ef4f72b994160dd | /SearchTree/main.cpp | 5785fb5dd1543fb6295a95441679cd8220c7c2aa | [] | no_license | Devang-25/dev_cpp | 391a32baa1ddf765849e945a616f783f2fca56cf | 6847f85e5b35b7c2d23acad935d4ae752f1c5b56 | refs/heads/master | 2023-01-30T16:32:56.134960 | 2020-09-05T00:55:39 | 2020-09-05T00:55:39 | 308,292,954 | 0 | 0 | null | 2020-12-18T18:32:04 | 2020-10-29T10:27:28 | null | UTF-8 | C++ | false | false | 6,675 | cpp | #include <iostream>
#include "LinkedBinaryTree.h"
using namespace std;
template <typename K, typename V>
class Entry//a (key, value) pair
{
public://public types
typedef K Key;//key type
typedef V Value;//value type
public://public functions
Entry(const K& k = K(), const V& v = V())//constructor
... | [
"nsikanikpoh@gmail.com"
] | nsikanikpoh@gmail.com |
7b97b4a6434cae2a7518847edf1fb1e924a15771 | 26a98d525b0ce11bab718fe11a1f3c22e6d823f5 | /Source/Engine/Core/Timer.cpp | c47735bd21853ba311f71bbe570cfb1d08b19025 | [
"Apache-2.0",
"BSD-2-Clause",
"MIT",
"Zlib",
"LicenseRef-scancode-khronos",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | pyzhangxiang/Urho3D | dfd1128bb4ebe3eeae07ff49625473002789ba75 | dbb8d077dae00a3b96f9740cfb47c0ab084d19a1 | refs/heads/master | 2021-01-21T05:05:09.383038 | 2014-01-10T09:41:52 | 2014-01-10T09:41:52 | 15,806,907 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 5,570 | cpp | //
// Copyright (c) 2008-2013 the Urho3D 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, mod... | [
"loorni@gmail.com"
] | loorni@gmail.com |
79463a9d34ed1ab826ce7f01f379c290f68bb1e6 | 5c51cbdca581f57404337f8e47ddd972db116ed9 | /APS/naloga11/main.cpp | 8451a66ac039fde35e80afea7ba05e260eea0e88 | [] | no_license | AlexBrence/CLionProjects | 3ec7c45dc32060e16b0e0521e310c5964b2d4d93 | 3ba786184cd07f4abbccf6b01aafb409cccc3547 | refs/heads/main | 2023-05-06T07:36:47.392424 | 2021-06-03T16:55:46 | 2021-06-03T16:55:46 | 373,581,445 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,080 | cpp | #include <chrono>
#include <fstream>
#include <iostream>
#include <memory>
#include <vector>
struct Pot {
int iz_vozlisca, v_vozlisce, cena;
std::vector<bool> mnozica;
};
// Variables
unsigned int steviloVozlisc;
std::vector<int> matrikaSosednosti;
std::vector<Vozlisce> vozlisca;
bool running = true;
void n... | [
"alexbrence10@gmail.com"
] | alexbrence10@gmail.com |
41435859ce8499152af74c2937d207a282249b13 | 522a944acfc5798d6fb70d7a032fbee39cc47343 | /d6k/trunk/src/advapp/powerprediction/proportionalgorithm.cpp | 7bf21e2ec2b1d50e47928d57d6fde14faa77f7e0 | [] | no_license | liuning587/D6k2.0master | 50275acf1cb0793a3428e203ac7ff1e04a328a50 | 254de973a0fbdd3d99b651ec1414494fe2f6b80f | refs/heads/master | 2020-12-30T08:21:32.993147 | 2018-03-30T08:20:50 | 2018-03-30T08:20:50 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 8,352 | cpp | #include "proportionalgorithm.h"
#include "predictdatabase.h"
#include <QDebug>
CProportionAlgorithm::CProportionAlgorithm()
{
a_Alias.append(DaqoWeather_TotalRadiation);
a_Alias.append(DaqoPower_TotalPower);
a_Info = GetAnaloguesInfo(a_Alias);
QVector<data_type> vec_4h(Power_Predict_4h_Points);
QVector<data_t... | [
"xingzhibing_ab@hotmail.com"
] | xingzhibing_ab@hotmail.com |
f392d19a66be2c803cef968b310e06cfcc600918 | 140d78334109e02590f04769ec154180b2eaf78d | /aws-cpp-sdk-resourcegroupstaggingapi/include/aws/resourcegroupstaggingapi/model/ResourceTagMapping.h | 4fc9c82195fe841095d81ae6851a2cce344d38d6 | [
"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 | 4,383 | h | /*
* 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 |
fdcbdcf5a6adbed9a99cfc3282ac4bcf544b43a9 | b3279f2ee83f7e0f77be7a30073b4d790a930d30 | /PacMan/PacMan/Mapa.h | 1a90c74a52dcb1ed8d81e1b4412fc871a91810da | [] | no_license | DawidSiuda/Pac-Man | 8d7ebb6527fc90ee3c49a3503afa2a879294321a | aba4a4064b199c45ad4023b17c812cd120cc0463 | refs/heads/master | 2021-06-20T22:29:51.749516 | 2017-05-31T21:27:55 | 2017-05-31T21:27:55 | 91,239,086 | 1 | 0 | null | null | null | null | WINDOWS-1250 | C++ | false | false | 1,465 | h | #pragma once
#include "Kolizja.h"
#include "PacMan.h"
#include "Struktury.cpp"
#include "Napis.h"
#include <SFML/Graphics.hpp>
#include <string>
#include <iostream>
#include <fstream>
#include <conio.h>
using namespace sf;
using namespace std;
class Mapa
{
public:
const short pozycja_x; // x w którym rozpoczyna s... | [
"dawid.siuda@onet.eu"
] | dawid.siuda@onet.eu |
9c27399774dfd690f84d8f207142d9ecf2919545 | 8d5ca7e9f9b1f8c1878298a9e6876a346a5db72f | /space_racers/original_version/sr_src/include/Mesh/FpsCamera.h | dd8fca5212675f37c95eae07beace23939305e5f | [
"LicenseRef-scancode-public-domain",
"Zlib"
] | permissive | fallahn/osgc | 102914dc740796cdc53cbc225038eee8695716ec | 8a2f7745bd767e68da2b0771ecf3e7d50e59e725 | refs/heads/master | 2021-06-20T11:33:04.473998 | 2021-02-11T13:16:53 | 2021-02-11T13:16:53 | 178,931,498 | 23 | 3 | null | 2020-04-21T10:39:17 | 2019-04-01T19:18:19 | C++ | UTF-8 | C++ | false | false | 1,563 | h | ///a camera with realtime input which creates an first person style view///
// controllable with configurable mouse / keyboard
#ifndef FPS_CAMERA_H_
#define FPS_CAMERA_H_
#include <Mesh/Camera.h>
#include <SFML/Graphics/RenderWindow.hpp>
#include <SFML/Window.hpp>
namespace ml
{
class FpsCamera final : public Camera... | [
"matty_styles@hotmail.com"
] | matty_styles@hotmail.com |
7efa831cd635dd2a5f6f6f931beeda6ecf955610 | 7b6935ce633d8df97ac45fad0cc5b388bedf3a03 | /Disjoint_set.cpp/uva.10685.d_set.cpp | c4a5d9fcdf9c538f56e25f6a9de99a64d570a34f | [] | no_license | rakib-ruet-13/Algorithms-and-Codes | 8f422dc5bf0a58ae699acb42d8a1ded6e250fd7d | 83a4e4d6580cd270d0b3a45ca188f8cbf8f62234 | refs/heads/master | 2020-04-25T01:09:29.894413 | 2019-02-24T22:47:34 | 2019-02-24T22:47:34 | 172,400,148 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,035 | cpp | #include<iostream>
#include<bits/stdc++.h>
using namespace std;
map<string,string>par;
map<string,int>cnt;
string find(string str)
{
if(par[str]==str)
return str;
return par[str]=find(par[str]);
}
int main()
{
map<string,string>str;
map<string,string>::iterator it;
int n,t;
wh... | [
"ruet.rakib.cse13@gmail.com"
] | ruet.rakib.cse13@gmail.com |
fc9789b707206187058ad8baecb3f79862af0fc8 | 57ac1261f06a461c636d6ccc7aa7881f024eb6c7 | /spaceship/spaceship.ino | 2df8a11b6ef71249f56c8ccdf4c3381bb6d3df93 | [] | no_license | rwbot/arduino | 8c57767efcbb3795847f59c907f5cfc1f9fd5807 | e9d5ad531f9acbee5551c56ab30e9908ea97a622 | refs/heads/master | 2020-03-07T15:30:33.252927 | 2018-03-31T17:53:27 | 2018-03-31T17:53:27 | 127,556,724 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 725 | ino | const int greenLed=3;
const int redLed1=4;
const int redLed2=5;
const int switchPin=2;
void setup() {
// put your setup code here, to run once:
pinMode(greenLed,OUTPUT);
pinMode(redLed1,OUTPUT);
pinMode(redLed2,OUTPUT);
pinMode(switchPin, INPUT);
}
void loop() {
// put your main code here, to run repea... | [
"christopher.rowe@trincoll.edu"
] | christopher.rowe@trincoll.edu |
2e321aabeb0d5d1762f78642ef4ab0dad92ccc73 | c9b02ab1612c8b436c1de94069b139137657899b | /server/app/pb/ProtoWeapon.pb.h | f0650d6d62590ccbf9df0f8dcba988d00758b37f | [] | no_license | colinblack/game_server | a7ee95ec4e1def0220ab71f5f4501c9a26ab61ab | a7724f93e0be5c43e323972da30e738e5fbef54f | refs/heads/master | 2020-03-21T19:25:02.879552 | 2020-03-01T08:57:07 | 2020-03-01T08:57:07 | 138,948,382 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | true | 27,117 | h | // Generated by the protocol buffer compiler. DO NOT EDIT!
// source: ProtoWeapon.proto
#ifndef PROTOBUF_ProtoWeapon_2eproto__INCLUDED
#define PROTOBUF_ProtoWeapon_2eproto__INCLUDED
#include <string>
#include <google/protobuf/stubs/common.h>
#if GOOGLE_PROTOBUF_VERSION < 2006000
#error This file was generated by a... | [
"178370407@qq.com"
] | 178370407@qq.com |
2fbed55d84b070817198014cf3cdb2d6f459a9af | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/httpd/gumtree/httpd_old_hunk_4725.cpp | 59afadf7c826fe30906bc91cc7e523721110b188 | [] | 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 | 603 | cpp |
child = child->next;
}
if (ret != OK) {
ap_log_error(APLOG_MARK, APLOG_ERR | APLOG_STARTUP, APR_SUCCESS, s, APLOGNO(01624)
"%s",
apr_pstrcat(p, (is_conf
? "<Directory>, <Location>, or similar"
... | [
"993273596@qq.com"
] | 993273596@qq.com |
bdd75025fc379c35cfc37457720dc39ced7974d2 | bffda3ac406905848eb1f14c9e47e47eb154437d | /BBManagerLean/src/vm/virtualmachinepanel.cpp | cd42343c91452816c1124985ba6b4383dbcc3a7b | [] | no_license | SingularSound/openbbm | 5bf3f3a87b50221128488347d51a46e1b5c33a74 | 133bb0b87d983df2c90ae15db155c8c70ba84f76 | refs/heads/master | 2023-02-13T10:39:29.246843 | 2020-11-20T21:15:36 | 2020-11-20T21:15:36 | 246,878,370 | 31 | 9 | null | 2020-11-20T21:15:38 | 2020-03-12T16:13:48 | C++ | UTF-8 | C++ | false | false | 7,023 | cpp | /*
This software and the content provided for use with it is Copyright © 2014-2020 Singular Sound
BeatBuddy Manager is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License version 2 as published by
the Free Software Foundation.
This program is ... | [
"julissa@singularsound.com"
] | julissa@singularsound.com |
423633ca1bc9eda14540e4d34f0c47243e60c00a | 2a26923028c995cc21550c02e68a358a49783ec7 | /core/PhysiCell_cell.h | 97bef2215348cf384257abd1b84244101b129a77 | [] | no_license | olaurino/PhysiCell | dcce77bc6b15e53b00002fe1600e2497665326bb | 8fcd79b8fc37b6c086ec983453a3ffa4f7cf90c2 | refs/heads/master | 2021-08-06T10:01:46.574922 | 2017-11-05T00:56:47 | 2017-11-05T00:56:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,458 | h | /*
###############################################################################
# If you use PhysiCell in your project, please cite PhysiCell and the version #
# number, such as below: #
# ... | [
"Paul.Macklin@MathCancer.org"
] | Paul.Macklin@MathCancer.org |
5f5c735dce3a5f869a3c1c550f7ca700a458a24d | 91a882547e393d4c4946a6c2c99186b5f72122dd | /Source/XPSP1/NT/net/config/netcfg/engine/lockdown.cpp | 06cb4d0d7f4f9f8138c83b965bec412259b2caf3 | [] | no_license | IAmAnubhavSaini/cryptoAlgorithm-nt5src | 94f9b46f101b983954ac6e453d0cf8d02aa76fc7 | d9e1cdeec650b9d6d3ce63f9f0abe50dabfaf9e2 | refs/heads/master | 2023-09-02T10:14:14.795579 | 2021-11-20T13:47:06 | 2021-11-20T13:47:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,663 | cpp | //+---------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1999.
//
// File: L O C K D O W N . C P P
//
// Contents: Routines to get and set components that are in a lockdown
// state. A component goes into loc... | [
"support@cryptoalgo.cf"
] | support@cryptoalgo.cf |
5885e1b586980ebbdd685d3d359ea0bf8c1729be | 016a92c438ff3286608f43a211699f1681ff4543 | /Dev_class2_handout/Motor2D/j1App.cpp | 91df6684032e6b32d95957159c2823bed132716f | [] | no_license | EricJPbunny/Development-TODOSS | f755a5ea49ca4b51ed99098d4fe9ddd062b96f5c | a55cfa71229b1d0fdebe6ce94911a0f79d7beb93 | refs/heads/master | 2020-03-29T07:35:24.098259 | 2018-10-31T10:55:59 | 2018-10-31T10:55:59 | 149,671,519 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,204 | cpp | #include "p2Defs.h"
#include "p2Log.h"
#include "j1Window.h"
#include "j1Input.h"
#include "j1Render.h"
#include "j1Textures.h"
#include "j1Audio.h"
#include "j1Scene.h"
#include "j1App.h"
// Constructor
j1App::j1App(int argc, char* args[]) : argc(argc), args(args)
{
frames = 0;
input = new j1Input();
win = new j... | [
"36155506+EricJPbunny@users.noreply.github.com"
] | 36155506+EricJPbunny@users.noreply.github.com |
df6070bbeae3f6b2148f50db7dece8af711a8398 | 0aa317f9489faa0a242bbd23aeea3ff57e499ce3 | /multi_C/y.tab.hpp | fc610008e683cc053419ecbe35c7132bf529c91d | [] | no_license | drdrpyan/compiler | c90479790fdedc275482b4eaa3b7a23dffcb726c | da0be40b5f3624da25a900c1d0767148712ccc19 | refs/heads/master | 2016-09-16T03:34:24.535420 | 2015-09-17T12:48:12 | 2015-09-17T12:48:12 | 42,655,065 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,372 | hpp | /* A Bison parser, made by GNU Bison 2.4.2. */
/* Skeleton interface for Bison's Yacc-like parsers in C
Copyright (C) 1984, 1989-1990, 2000-2006, 2009-2010 Free Software
Foundation, Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General P... | [
"drdrpyan@gmail.com"
] | drdrpyan@gmail.com |
28036a4d0ed5960a6919b958725a15d0cd3b1a00 | 7a5c9171daa19d444f72aaa66e33bd39a4fbb052 | /bastoul_phw1/p4.cpp | 3c9ac25958b9e75053eb4e505689b463068e36da | [] | no_license | kaycbas/parallel-computing-practice | dfafa1f94639eac0dfea231585a4da6c1ecbe58f | b403fa28c4f9983c960a2c0545431a0d6b84dd24 | refs/heads/master | 2021-05-03T10:21:51.142933 | 2018-02-06T22:44:19 | 2018-02-06T22:44:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,251 | cpp | #include <iostream>
#include <string>
#include <stdlib.h>
#include <stdio.h>
#include <cmath>
#include <chrono>
using namespace std::chrono;
struct pt {
double x;
double y;
};
int main(int argc, char *argv[]){
int NUM_OF_POINTS = 100;
//std::cout << ((double) rand() / (RAND_MAX)) << "\n";
for ( ; NUM_OF_POIN... | [
"kaycbas@outlook.com"
] | kaycbas@outlook.com |
6626473064ea8d94525e30cc6a77d5424b4aa43c | cd0afa40fc68d5f26c22551e6167ff0b74864933 | /src/Camera.h | aec640ba9759b23a5d4edaa53d76f1927ebb39c0 | [
"MIT"
] | permissive | elekezem/VirtualMapper | 06050301256fac712020e42205b34ba93ea32b1a | 4ed831548b18c3ba266b30d2e19941592b9f9b39 | refs/heads/master | 2021-01-24T23:00:50.394417 | 2015-04-01T17:09:23 | 2015-04-01T17:09:23 | 37,765,912 | 1 | 1 | null | 2015-06-20T10:18:33 | 2015-06-20T10:18:31 | null | UTF-8 | C++ | false | false | 360 | h | //
// Camera.h
// videoMappingPreview
//
// Created by 麦 on 1/23/15.
//
//
#ifndef __videoMappingPreview__Camera__
#define __videoMappingPreview__Camera__
#include <stdio.h>
#include <iostream>
#include <string>
#include "ofMain.h"
using namespace std;
class Camera {
public:
string name;
ofVec3f position;
... | [
"mail@baku89.com"
] | mail@baku89.com |
3b17f3b599ed07e1724c995ff66680ab75ae1b68 | c41589bc3918dc58159edd0ca38319ba7c707c03 | /Project1/practica BT/params.h | 64f6a13cb2607de8ca62f382d72fad4c9d2af8a4 | [] | no_license | godilopa/AI | 084330a23527198a9fec9391e7f715eb41fb1914 | aa202fa3e5b4b0ad4956b6538576ebdae154f8f0 | refs/heads/master | 2021-01-23T12:15:40.807956 | 2016-07-29T22:24:53 | 2016-07-29T22:24:53 | 64,512,059 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 615 | h | #ifndef __PARAMS_H__
#define __PARAMS_H__
#include "../include/Path.h"
#include <list>
struct Obstacle
{
USVec2D center;
float radius;
};
struct Params
{
USVec2D targetPosition;
float max_velocity;
float max_acceleration;
float dest_radius;
float arrive_radius;
float max_angular_velocity;
float... | [
"limpb@LAPTOP-8AP6FQEG"
] | limpb@LAPTOP-8AP6FQEG |
c52cb5c47286db620dcd5dc9672580269bde1ae7 | c776476e9d06b3779d744641e758ac3a2c15cddc | /examples/litmus/c/run-scripts/tmp_1/SB+dmb.sy+rfi-addr-pos-ctrlisb.c.cbmc_out.cpp | 32575226c4005e4fcd72a0cb7fe1075e23c76839 | [] | no_license | ashutosh0gupta/llvm_bmc | aaac7961c723ba6f7ffd77a39559e0e52432eade | 0287c4fb180244e6b3c599a9902507f05c8a7234 | refs/heads/master | 2023-08-02T17:14:06.178723 | 2023-07-31T10:46:53 | 2023-07-31T10:46:53 | 143,100,825 | 3 | 4 | null | 2023-05-25T05:50:55 | 2018-08-01T03:47:00 | C++ | UTF-8 | C++ | false | false | 43,659 | cpp | // 0:vars:3
// 3:atom_0_X2_0:1
// 4:atom_1_X2_1:1
// 5:atom_1_X7_0:1
// 6:thr0:1
// 7:thr1:1
#define ADDRSIZE 8
#define NPROC 3
#define NCONTEXT 1
#define ASSUME(stmt) __CPROVER_assume(stmt)
#define ASSERT(stmt) __CPROVER_assert(stmt, "error")
#define max(a,b) (a>b?a:b)
char __get_rng();
char get_rng( char from, cha... | [
"tuan-phong.ngo@it.uu.se"
] | tuan-phong.ngo@it.uu.se |
da84d520608247bfe631bd1013fe1b632392468b | 69957429158cc2baff2b718b8d0e54c4dd4661b8 | /chap08/strcpy_test.cpp | 3db8dd1acda7f79248cb071329f16316efaa6977 | [] | no_license | chc1129/MeikaiCpp | d7bbbab37a7f7ab7de5d467d097ef2dd8b5ad5f4 | 4140133fbb87f9644ce62aa1b2ef470b16afca72 | refs/heads/main | 2023-04-12T13:39:55.451715 | 2021-05-02T02:12:13 | 2021-05-02T02:12:13 | 357,937,061 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 867 | cpp | // strcpy関数とstrncpy関数の利用例
#include <cstring>
#include <iostream>
using namespace std;
int main(void)
{
char tmp[16];
char s1[16], s2[16], s3[16];
cout << "文字列を入力してください:";
cin >> tmp;
strcpy(s1, strcpy(s2, tmp)); // s2にコピーした文字列をs1にもコピー
cout << "文字列s1は\"" << s1 << "\"です。\n";
cout << "文字列s2は\"" << s2 ... | [
"chc1129@gmail.com"
] | chc1129@gmail.com |
0ea2f9a2cb161a0e89d894263010bea39cab36e6 | 40f73a14d163a8cc33dfde92f1109743d9ecdbe2 | /nandincpp/Power of Four.cpp | f9ee191df6fcb1c55aff561113d98634de1bc7fc | [] | no_license | pravirtual/Leetcode | dc83d09f6fc15f24e05e8fca7546e2f003f45c37 | 7f754f38e507b7f4aaeb267b05873437b1ca5bcf | refs/heads/master | 2023-08-28T07:52:59.019305 | 2021-10-29T14:21:01 | 2021-10-29T14:21:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 222 | cpp | class Solution {
public:
bool isPowerOfFour(int n)
{
if(n == 0)
return 0;
if( ceil(log(n) / log(4)) == floor(log(n) / log(4)))
return 1;
return 0;
}
}; | [
"noreply@github.com"
] | pravirtual.noreply@github.com |
b1909dd846b343e016a2ca6131dd1ee239e4ffc4 | 4d7d429b43f2a30ca7a5657a31ba6bbd8a8608c8 | /Chapter01/Person/Person.cpp | bceee6646f50142d109d9eb77c8db59b6a6af123 | [] | no_license | robintux/Book-Cpp17ByExample | d4bed3ba4b9c9cba456b5cdf021a24243fea3a89 | 671981433192af4cad7367cccd9d56478b993644 | refs/heads/master | 2021-09-23T21:13:23.646204 | 2018-09-27T19:47:34 | 2018-09-27T19:47:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 263 | cpp | //
// Created by Yves Gingras on 18-04-17.
//
#include <String>
#include <iostream>
using namespace std;
#include "Person.h"
Person::Person(string name)
: m_name(name){
/*empty*/
}
void Person::Print() {
cout << "Person " << m_name << endl;
} | [
"yves.gingras@icloud.com"
] | yves.gingras@icloud.com |
758638536c1156b14ee351fa20ecdbb696842e4e | d99f92302c2931313fb6b55333848b66b570a19b | /rocksdb-handle.cpp | ad0b48c0be11bebe49f62278ad15c4605db533a2 | [] | no_license | maierlars/prototype | eff75426bafe149f4dedf321cf0650a44a11a07b | b177bd578cd3644cb41e5af4d813ed71c472774f | refs/heads/main | 2023-02-23T22:21:39.948023 | 2021-02-05T07:38:08 | 2021-02-05T07:38:08 | 314,536,246 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 994 | cpp | #include "rocksdb-handle.h"
std::shared_ptr<RocksDBHandle> OpenRocksDB(std::string const& dbname) {
rocksdb::DB* ptr;
rocksdb::DBOptions opts;
opts.create_if_missing = true;
opts.create_missing_column_families = true;
rocksdb::ColumnFamilyOptions defaultFamily;
rocksdb::ColumnFamilyOptions logFamily;
... | [
"lars@arangodb.com"
] | lars@arangodb.com |
18a1fcee2d4f0b3cbcf25a4a824008e33ebea821 | 3ccc204741b0d1b738644dd836fa6dc1d986f6ab | /src/lib/include/configuration.h | 2ea55096eb5575dd4cc6f1e5bba609c21505281b | [] | no_license | vkaytsanov/MinecraftCPP | 69cc5a67b48ce7453de6cb1e9f040e65dbdcbc99 | 770f2146fefd96910cee6f1e93ebd266e21d23f6 | refs/heads/master | 2023-03-26T05:13:29.700581 | 2021-03-23T18:16:44 | 2021-03-23T18:16:44 | 338,855,733 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 485 | h | #ifndef CONFIGURATION
#define CONFIGURATION
#include "SDL.h"
/* Class for application configuration */
class Configuration {
public:
const char* title = nullptr;
int x = SDL_WINDOWPOS_CENTERED;
int y = SDL_WINDOWPOS_CENTERED;
int width = 640;
int height = 480;
SDL_WindowFlags isVisible = SDL_WINDOW_SHOWN;
Con... | [
"vkaytsanov@yahoo.com"
] | vkaytsanov@yahoo.com |
4784a4a7cecf1a4dbde1dd5b44ff723a71e2af96 | cd75abf2d9eff465918b1bb4e9b774cb745158b3 | /dllmain.cpp | 380ed506930c2d1e7e3de4957ccc1cfa769a0b36 | [
"MIT"
] | permissive | CookiePLMonster/TriangleRadar | e276382c9f2f947193c46238799601b67bff0a88 | 669f187bae25a861a90c5d26538aa3a81819bcff | refs/heads/master | 2021-01-18T20:06:17.408679 | 2017-04-01T19:35:10 | 2017-04-01T19:35:10 | 86,937,858 | 6 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,375 | cpp | #define WIN32_LEAN_AND_MEAN
#define NOMINMAX
#include <windows.h>
#include "MemoryMgr.h"
#include "Maths.h"
static void (*const TransformRadarPointToScreenSpace)(CVector2D&,const CVector2D&) = (void(*)(CVector2D&,const CVector2D&))0x583480;
static constexpr float sign (const CVector2D& p1, const CVector2D& p2, const... | [
"zdanio95@gmail.com"
] | zdanio95@gmail.com |
0dfe42776a95b533e1505ae69c70b766437e7a9f | 8b100d2e1280d1c4ad02817f0d60645377199c1f | /Ejercicios/Ejercicio08-FacturaConDescuento/main.cpp | f7c5765971284caf798dffdb4346c04a078651b7 | [
"MIT"
] | permissive | AngelaC02/cpp | 350ed3a9ea07958d823d5a9fb8e2a994261c12c9 | 89464b01bc79b91e2229340481e5f9db0621d00c | refs/heads/master | 2022-12-26T23:29:11.139917 | 2020-09-23T02:27:01 | 2020-09-23T02:27:01 | 276,510,778 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 691 | cpp | #include <cstdlib>
#include <iostream>
using namespace std;
int main(int argc, char *argv[])
{
//Datos
double subtotal = 0;
double total = 0;
double impuesto = 0.15;
int descuento = 0;
double calculoDescuento = 0;
double calculoImpuesto = 0;
cout << "Ingrese el subtotal de la factura: ... | [
"accastros@unah.hn"
] | accastros@unah.hn |
9a6782b1e43ba093906ecce07d0b90f58936db33 | 9a3b9d80afd88e1fa9a24303877d6e130ce22702 | /src/Providers/UNIXProviders/VideoBIOSFeature/UNIX_VideoBIOSFeature_SOLARIS.hxx | 9dc59c546d13b542d60efcbcd7332f699a12641d | [
"MIT"
] | permissive | brunolauze/openpegasus-providers | 3244b76d075bc66a77e4ed135893437a66dd769f | f24c56acab2c4c210a8d165bb499cd1b3a12f222 | refs/heads/master | 2020-04-17T04:27:14.970917 | 2015-01-04T22:08:09 | 2015-01-04T22:08:09 | 19,707,296 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,819 | hxx | //%LICENSE////////////////////////////////////////////////////////////////
//
// Licensed to The Open Group (TOG) under one or more contributor license
// agreements. Refer to the OpenPegasusNOTICE.txt file distributed with
// this work for additional information regarding copyright ownership.
// Each contributor lice... | [
"brunolauze@msn.com"
] | brunolauze@msn.com |
78a90327400242e90730dd0df24a6e64076496ac | bfbe07f8edd3b5b3c1ac2393b8508ced3845219d | /GetGood/CSES/Graph Algorithms/Labyrinth.cpp | 5b70d72e7afa9b9f52eac526e5344473a1494a12 | [] | no_license | srinjoyray/Competitive | 5ee384b446a20aad2cdcea8e08304101a9a92b34 | d6680510462a915756c4835374d2d6a342960f5f | refs/heads/main | 2023-06-16T16:08:10.787883 | 2021-07-14T14:19:17 | 2021-07-14T14:19:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,514 | cpp | #include <bits/stdc++.h>
using namespace std;
//----------------------------------- DEBUG -----------------------------------
#define sim template < class c
#define ris return * this
#define dor > debug & operator <<
#define eni(x) sim > typename \
enable_if<sizeof dud<c>(0) x 1, debug&>::type operator<<(c i) {
sim > ... | [
"ankurkayal1234@gmail.com"
] | ankurkayal1234@gmail.com |
d2a628ff2c72fa668b70cf2f33276eb09639b41a | 80fa15e43d6020110ac7729de4303bf3d1c3b78f | /RC CAR/MoveinaSquare/MoveinaSquare.ino | 5026706481ff8e1e9eba0755738a744dc9eb0e94 | [] | no_license | tmau/SCUSolarCar | a9acc13ab8c1ae55ff2693980e234779c2b555d1 | f12cfe636f238c947b5c5014f59e915769d86466 | refs/heads/master | 2021-03-19T11:00:57.635513 | 2017-09-22T21:51:49 | 2017-09-22T21:51:49 | 96,818,606 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,549 | ino | // connect motor controller pins to Arduino digital pins
// motor one
int enA = 10;
int in1 = 9;
int in2 = 8;
//motor two
int in3 = 7;
int in4 = 6;
int enB = 5;
int Speed = 200;
int SpeedB = 255; //Go the maximum ammount you can turn
void Forward();
void Reverse();
void Left();
void Right();
void Brake();
void se... | [
"tmau@scu.edu"
] | tmau@scu.edu |
687acf83bbcfde348976e1eff29c380a538cc6be | bab05e214171b7c12c267e6424f58b263adfffb4 | /1_semestr/4/lines/writeBin.cpp | 4af9185dee8f22d73aa5ff7aacb4f95b53129a43 | [] | no_license | RudenkoDmitriy/MyHomeWorking | 62ba1cd3a0d07c0e92af72eaab20dcc261335df3 | 6f9e5ac04143d87f722363d5e0025b3e42cdea11 | refs/heads/master | 2020-06-05T19:24:22.515039 | 2015-08-20T17:17:07 | 2015-08-20T17:17:07 | 16,886,713 | 0 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 330 | cpp | #include "writeBin.h"
#include <iostream>
//Выводит на экран представление числа в двоичном виде.
//На вход подается булевый массив.
void myWork::writeBin(bool binary[])
{
for (int i = 0; i < sizeof(short int) * 8; i++)
{
std::cout << binary[i];
}
} | [
"d.rudenko95@mail.ru"
] | d.rudenko95@mail.ru |
a91024410b8d8d106dfc42b389b44a3ef7f32d9d | f7ee3ef1790a17f3b9dc5d8f6a18a78ce6cca1bf | /Vector4.cpp | bd004e16f37c8c0f3405c4615ad19ca9a2700889 | [] | no_license | JFHwang/CSE167 | 31bad0b95a689877fdbdf5e3c915b513d29d93a5 | 88615c91d1abed951db39eb663b0bc95feda7732 | refs/heads/master | 2018-01-08T04:05:52.709365 | 2015-12-04T23:25:26 | 2015-12-04T23:25:26 | 44,151,658 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,613 | cpp | #include "Vector4.h"
#include "Vector3.h"
#include <math.h>
#include <iostream>
#include <cstring>
Vector4::Vector4()
{
std::memset(m, 0, sizeof(m));
}
Vector4::Vector4(float m0, float m1, float m2)
{
m[0] = m0;
m[1] = m1;
m[2] = m2;
m[3] = 1;
}
Vector4::Vector4(float m0, float m1, float m2, floa... | [
"jfhwang@ucsd.edu"
] | jfhwang@ucsd.edu |
ce50a4e478438fc8b895cab2b0afd355e4803816 | 89003acbd6282829cdcfb27f7473a33bdf240570 | /src/radar_pi.h | 1831e6b8f7c76f2cb1c74fac56ab0398fc8cdee0 | [] | no_license | biiont/radar_pi | cc87191eef80e88204ff13f90ff05aa9bb62872e | 7764d7af1b9745cca7c038ae92c7f67428ee0a5c | refs/heads/master | 2021-01-16T20:48:05.028151 | 2011-11-06T06:56:44 | 2011-11-06T06:56:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,148 | h | /******************************************************************************
* $Id: $
*
* Project: OpenCPN
* Purpose: Radar Plugin
* Author: Johan van der Sman
*
***************************************************************************
* Copyright (C) 2011 by Johan van der Sman ... | [
"hannes@andcrew.nl"
] | hannes@andcrew.nl |
ac3416c98203842356d54a3860bb01d7bcd2ae79 | 88ae8695987ada722184307301e221e1ba3cc2fa | /chrome/browser/ssl/sct_reporting_service_browsertest.cc | 439f088902d3eefbd28cba981aab332ca8ff1570 | [
"BSD-3-Clause"
] | permissive | iridium-browser/iridium-browser | 71d9c5ff76e014e6900b825f67389ab0ccd01329 | 5ee297f53dc7f8e70183031cff62f37b0f19d25f | refs/heads/master | 2023-08-03T16:44:16.844552 | 2023-07-20T15:17:00 | 2023-07-23T16:09:30 | 220,016,632 | 341 | 40 | BSD-3-Clause | 2021-08-13T13:54:45 | 2019-11-06T14:32:31 | null | UTF-8 | C++ | false | false | 47,380 | cc | // Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <memory>
#include <tuple>
#include "base/base64.h"
#include "base/files/file_path_watcher.h"
#include "base/files/file_util.h"
#include "base/functional/callback.h"
#... | [
"jengelh@inai.de"
] | jengelh@inai.de |
161fa1dafb5a3a9a120361e898c7b30673237981 | 26772748929329f0a6feb6c54c51f6ab02b79561 | /Export/mac64/cpp/obj/include/lime/audio/openal/ALC.h | 9800c44a4fcea491d656903334d3fb5d152cbd87 | [] | no_license | pvsmartinez/ilha | f9c473bc4ef14a937fe80151f188c21334685265 | 24549ac14c6e2e5b3921b09fb486d7cc9d662804 | refs/heads/master | 2021-01-10T04:43:17.740463 | 2015-11-04T22:06:19 | 2015-11-04T22:06:19 | 44,400,109 | 2 | 0 | null | 2015-11-01T23:31:21 | 2015-10-16T17:21:55 | C++ | UTF-8 | C++ | false | false | 5,348 | h | #ifndef INCLUDED_lime_audio_openal_ALC
#define INCLUDED_lime_audio_openal_ALC
#ifndef HXCPP_H
#include <hxcpp.h>
#endif
HX_DECLARE_CLASS3(lime,audio,openal,ALC)
namespace lime{
namespace audio{
namespace openal{
class HXCPP_CLASS_ATTRIBUTES ALC_obj : public hx::Object{
public:
typedef hx::Object super;
typede... | [
"pvsmartinez@gmail.com"
] | pvsmartinez@gmail.com |
38bd1aab3b57548ab7aadbaafea8fb70e9b041df | 92745756b1d9280222894d6b7ba918c00f76bf3b | /SDK/PUBG_P_VehicleSkidAccel_Grass_BP_classes.hpp | f4a35f8854c8c0f4e3088f4ab83019baf786a0ea | [] | no_license | ziyouhaofan/PUBG-SDK | 018b2b28420b762de8c2b7e7142cb4f28647dc7f | 03d5f52e8d4fd7e2bef250217a9a5622366610e2 | refs/heads/master | 2021-07-19T11:34:17.527464 | 2017-10-26T03:42:44 | 2017-10-26T03:42:44 | 108,414,666 | 1 | 0 | null | 2017-10-26T13:24:32 | 2017-10-26T13:24:32 | null | UTF-8 | C++ | false | false | 664 | hpp | #pragma once
// PlayerUnknown's Battlegrounds SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
namespace Classes {
//---------------------------------------------------------------------------
//Classes
//---------------------------------------------------------------------------
// BlueprintGeneratedClass P_... | [
"tj8@live.com.au"
] | tj8@live.com.au |
cd280c76d285ee386f92a9bcfe5751f93e76f686 | 5531d676864880b890630f462cfc6d05defd1d79 | /include/boost/gil/extension/toolbox/color_converters/gray_to_rgba.hpp | f9f9c540fb8d69648b8efaacc48284093767fc72 | [] | no_license | BeamMW/boost-android | 2cd0ec609462e72ac41bdcf02ded82f954652dde | 60cc7878e44e898cf44fb04a1f10372eceaa9b02 | refs/heads/master | 2020-04-27T11:13:33.402189 | 2019-04-01T10:04:55 | 2019-04-01T10:04:55 | 174,288,040 | 2 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,832 | hpp | /*
Copyright 2012 Christian Henning, Andreas Pokorny, Lubomir Bourdev
Use, modification and distribution are subject to the Boost Software License,
Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt).
*/
/******************************************... | [
"strylets@gmail.com"
] | strylets@gmail.com |
65db86743f5226d16cbe9bf5c4aa3b681d2826a7 | d70d76a346a267b1a592eb1cf5009aafb808bd24 | /node_modules/opencv-build/opencv/build/modules/imgproc/morph.sse2.cpp | 5923e58fde4725d4fb3a11dab29b061abca7d10c | [] | no_license | techieskycode/Vigilant-Engine | b7dd892340f954e62a0f82cbb5256269b278ca31 | 88bd9c8064eef19d9bf8cc5cf78c2e9209618b01 | refs/heads/master | 2023-06-09T06:58:21.848223 | 2020-03-23T09:47:33 | 2020-03-23T09:47:33 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 224 | cpp |
#include "/home/windows/Desktop/cctv/node_modules/opencv-build/opencv/opencv/modules/imgproc/src/precomp.hpp"
#include "/home/windows/Desktop/cctv/node_modules/opencv-build/opencv/opencv/modules/imgproc/src/morph.simd.hpp"
| [
"skumar2019@outlook.com"
] | skumar2019@outlook.com |
62e124b239ad19240a63785b1b9bccbce589c0fb | de0ea2d1666a1e91f098a19dbb5203c3318cebf2 | /include/mithril/bootstrap/client_event_loop_service.hh | 93ea0e15044a82c36c407ab2fa86b5039e687892 | [
"ISC"
] | permissive | salahsheikh/mithril | 94bd8b6dd57f1de8e48e77a7b43b1456596e9ded | 020c9c6ad645e0a2767653cd158460ab1c6c13ca | refs/heads/main | 2023-03-30T15:24:37.126890 | 2021-04-05T03:17:06 | 2021-04-05T03:17:06 | 347,783,006 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,325 | hh | //
// Created by ssheikh on 2021-02-27.
//
#ifndef MITHRIL_INCLUDE_MITHRIL_CLIENT_EVENT_LOOP_SERVICE_HH
#define MITHRIL_INCLUDE_MITHRIL_CLIENT_EVENT_LOOP_SERVICE_HH
#include <mithril/channel/socket_channel.hh>
#include <seastar/core/future.hh>
#include <seastar/net/api.hh>
#include <seastar/core/distributed.hh>
#inc... | [
"salah.h.sheikh@gmail.com"
] | salah.h.sheikh@gmail.com |
d474b8d1b9cd4a5a515fd7250b2ba5dbaab49ad2 | 481f3c6b713379912988084cf10810e7d9a74fd0 | /components/dom_distiller/core/dom_distiller_features.h | d1e56a3db120e267dfe496fcaeeb37d6b8a14440 | [
"MPL-2.0-no-copyleft-exception",
"LicenseRef-scancode-unknown-license-reference",
"AGPL-3.0-only",
"LGPL-2.1-only",
"GPL-2.0-only",
"MPL-2.0",
"BSD-3-Clause"
] | permissive | huhisoft/huhi-android | bab71148730ff68b770f56b93b731302528045ec | 1c00f05a2ab19f0d6acf42331931de61555a93e8 | refs/heads/master | 2023-01-13T11:26:25.618267 | 2019-11-11T04:09:38 | 2019-11-11T04:09:38 | 219,455,870 | 0 | 4 | BSD-3-Clause | 2022-12-10T08:31:33 | 2019-11-04T08:48:00 | null | UTF-8 | C++ | false | false | 570 | h | // Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_DOM_DISTILLER_CORE_DOM_DISTILLER_FEATURES_H_
#define COMPONENTS_DOM_DISTILLER_CORE_DOM_DISTILLER_FEATURES_H_
namespace dom_distiller {... | [
"huhibrowser@gmail.com"
] | huhibrowser@gmail.com |
79f64b4d4ca17ea45ccefc1a041a857e7b5502fa | c7f6ecdbd4bb2bdcde8bae0a03c10a102b368e7d | /include/mobilerobot/worldmodel.h | 249f854e1ea619f255af474b9f2f275bee0d711d | [] | no_license | bastikr/mobilerobot | 0edd253bf0e63668a1354ece5d80f7313c845d26 | 8d693bdc87fb69e853c2de117a4b990abe4043c0 | refs/heads/master | 2021-05-07T01:41:48.003135 | 2017-11-11T21:28:57 | 2017-11-11T21:28:57 | 110,381,868 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,143 | h | #ifndef MOBILEROBOT_WORLDMODEL_H_
#define MOBILEROBOT_WORLDMODEL_H_
#include <random>
#include <eigen3/Eigen/Dense>
#include "mobilerobot/control.h"
namespace worldmodel {
// (x, y, v, theta)
using State = Eigen::Vector4d;
using Matrix = Eigen::Matrix4d;
class World {
public:
World(double gamma_v, double gamma... | [
"basti.kr@gmail.com"
] | basti.kr@gmail.com |
a0d86c4771d6ee4ea04cc362e89225b590bd9a9c | 038eb94f1c726480584abb2b720838aa0814d301 | /clang-tidy/pagesjaunes/test/buffer_split.cpp | 2c41c58eb4d58f38dc5b7c9b353d59c360298cf4 | [
"NCSA"
] | permissive | rcoscali/clang-tools-extra | a9c34a90122490aa9fdd375a2c4d6a000791c14a | 9eb42b18281337e38887496926c2312cf9978e7d | refs/heads/master | 2022-10-22T17:04:41.374647 | 2022-10-11T20:43:59 | 2022-10-11T20:43:59 | 97,316,812 | 0 | 0 | NOASSERTION | 2022-10-11T20:44:00 | 2017-07-15T13:13:33 | HTML | UTF-8 | C++ | false | false | 22,228 | cpp | //===------- buffer_split.cpp - clang-tidy ----------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-----------------------------------------------------------... | [
"remi@jayacode.fr"
] | remi@jayacode.fr |
51529cf2658605ac4f1884c417c77e624b345e1b | fcc777b709d795c4116bad5415439e9faa532d39 | /rongyu/homework1/file/2018152010_1182_正确_455.cpp | af39f35909fcefad3f94e411f2431a9f833a7155 | [] | no_license | demonsheart/C- | 1dcaa2128ec8b20e047ae55dd33f66a359097910 | f567b8ca4a4d3ccdf6d59e9fae5b5cea27ec85c1 | refs/heads/master | 2022-11-29T00:27:30.604843 | 2020-08-10T11:48:36 | 2020-08-10T11:48:36 | 283,923,861 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 586 | cpp | #include <iostream>
char *strAdd(char *s1, char *s2);
using namespace std;
int main()
{
int t;
char ch1[100],ch2[100],*res;
cin>>t;
cin.ignore(2,'\n');
while(t--)
{
cin>>ch1>>ch2;
res=strAdd(ch1,ch2);
cout<<ch1<<' '<<ch2<<' '<<res<<endl;
}
return 0;
}
char *strA... | [
"2509875617@qq.com"
] | 2509875617@qq.com |
b694e4f7a5385e42c02e6e4fa3dcf127b34db081 | 6626a38d8d777f1aa1cc1add43056116bb26433a | /UI2016/UI/UISDK/Src/Layer/software_layer.h | 8166b169d9ce33a1982b7339b011039ffa5abba1 | [] | no_license | cnsuhao/dragon | 8fa65a114e4aba819e6a2c0376cbdb791157970a | 833baa77d234825abceeed33569be7b5c9d41720 | refs/heads/master | 2021-06-23T14:18:00.257518 | 2016-11-24T14:33:15 | 2016-11-24T14:33:15 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 271 | h | #pragma once
#include "layer.h"
namespace UI
{
class SoftwareLayer : public Layer
{
public:
SoftwareLayer();
~SoftwareLayer();
virtual LayerType GetType() override { return Layer_Software; }
virtual void UpdateDirty() override;
};
} | [
"leeihcy@49fff2ea-6ae5-4519-8002-a5cf5e333bda"
] | leeihcy@49fff2ea-6ae5-4519-8002-a5cf5e333bda |
24489f22d6f2376299752a18ad73f4ee738776e9 | 0ab6de17a742af2d6e3aff133d9c206f07947849 | /imengine/models/DeltaFunction.cc | f0023fee4377e4a3618db11fab8915bd256454da | [] | no_license | lmoustakas/imengine | 4eba857a1d18036767514a3c2351533919286b9a | 0c761b2f32bc16d10204dc892b3ad1d3606130f6 | refs/heads/master | 2021-01-18T07:51:26.675595 | 2012-01-21T00:49:05 | 2012-01-21T00:49:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 669 | cc | // Created 17-Feb-2011 by David Kirkby (University of California, Irvine) <dkirkby@uci.edu>
#include "imengine/models/DeltaFunction.h"
#include "imengine/TransformData.h"
namespace local = imengine::models;
local::DeltaFunction::DeltaFunction() { }
local::DeltaFunction::~DeltaFunction() { }
void local::DeltaFuncti... | [
"dkirkby@uci.edu"
] | dkirkby@uci.edu |
8b0b418cd63c8525a6aa38966b4110dda1c02173 | 8cbea8a4165b61156ad593e9fa3052aa7d8cb761 | /Sources/Extras/CoreMediaIO/DeviceAbstractionLayer/Devices/Sample/PlugIn/CMIO_DP_Sample_PlugIn.cpp | 109d1e4c1c33e0acae191eb61cb9674dc2c496c7 | [
"MIT"
] | permissive | lvsti/CoreMediaIO-DAL-Example | 87981cccb323462b85239f13d490b945eda0b11b | 742ccb114735245bf3bc7f5a29d381526b82b720 | refs/heads/master | 2022-06-29T18:54:10.078279 | 2022-06-19T20:55:54 | 2022-06-19T20:55:54 | 159,476,900 | 187 | 31 | null | 2020-04-10T19:09:07 | 2018-11-28T09:31:24 | C++ | UTF-8 | C++ | false | false | 21,493 | cpp | /*
File: CMIO_DP_Sample_PlugIn.cpp
Abstract: n/a
Version: 1.2
*/
//---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
// Includes
//---------------------------------------... | [
"elveestei@gmail.com"
] | elveestei@gmail.com |
3521767eb36b7d0c86e93381870fc8fe3f798b3b | 811b313aa5d8093ba538a5b285780a39778e0a3a | /Hashing/Chaining.cpp | 22d9f1fbd63cf1ad5c3bb926b3f69d4efd99c6c7 | [] | no_license | Shaheer-Imam/Data-Structures-in-C- | c0810990dd4ae8a5c617c6d58a970604479a8bef | de34f637128dcf4869b0cf042971ccc1942c1792 | refs/heads/master | 2021-11-23T14:23:43.903247 | 2021-11-07T17:56:05 | 2021-11-07T17:56:05 | 172,900,809 | 6 | 1 | null | 2021-11-07T17:56:06 | 2019-02-27T11:13:06 | C++ | UTF-8 | C++ | false | false | 2,131 | cpp | #include <iostream>
#include <math.h>
using namespace std;
struct Node{
int data;
struct Node *next;
} * head[100], *curr;
void init(){
for (int i = 0; i < 100; i++)
head[i] = NULL;
}
void add(int x, int h){
struct Node *temp = new Node;
temp->data = x;
temp->next = NULL;
if (!head[h]){
head[h] = temp;
... | [
"noreply@github.com"
] | Shaheer-Imam.noreply@github.com |
6c2c6c9767de641a212d8cc3962c015e532ab790 | 5430b94b129655688575ff2166327415e6dc7817 | /include/TTdrSiLi.h | 1057680fe5b5b0fc27bc8717d9e7ffcf8456cb0f | [] | no_license | UoG-Nuclear-Physics-Group/iThembaData | 9ad4aa8e855cd56bd29e9169b8662f12f61dc4f2 | 4bc44ff9368b5e49d3b5fd0cd2ad8bb659c407ee | refs/heads/main | 2022-07-09T03:46:49.562957 | 2022-06-20T17:17:05 | 2022-06-20T17:17:05 | 146,322,559 | 0 | 1 | null | 2022-06-20T17:17:06 | 2018-08-27T16:12:14 | C++ | UTF-8 | C++ | false | false | 1,132 | h | #ifndef TTDRSILI_H
#define TTDRSILI_H
/** \addtogroup Detectors
* @{
*/
#include <vector>
#include <cstdio>
#include "TBits.h"
#include "TVector3.h"
#include "Globals.h"
#include "TDetector.h"
#include "TTdrSiLiHit.h"
class TTdrSiLi : public TDetector {
public:
TTdrSiLi();
TTdrSiLi(const TTdrSiLi&);
~... | [
"vbildste@uoguelph.ca"
] | vbildste@uoguelph.ca |
d4ae2232a9fd31b07c71e43fd5bcb389bac9ebb4 | af57a19f55822d953674583558dad59da6e969af | /Source/print/print.hpp | c797f673e1cfda1660e18e3d2ccb03c559038d59 | [
"Apache-2.0"
] | permissive | Vasar007/utilities | 4a8ae5ba96c8f6c2d8848dd8b9264379e01b92e0 | 49b00497b223d61940ac63e114143120ed352754 | refs/heads/master | 2021-06-26T17:57:09.892655 | 2020-10-04T15:08:33 | 2020-10-04T15:08:33 | 153,836,752 | 0 | 0 | Apache-2.0 | 2020-10-04T15:08:34 | 2018-10-19T20:14:35 | C++ | UTF-8 | C++ | false | false | 1,286 | hpp | // Copyright (C) 2019 Vasily Vasilyev (vasar007@yandex.ru)
#pragma once
#include <iostream>
#include <iterator>
#include <type_traits>
#include <typeinfo>
#include <string>
#include <string_view>
#ifndef _MSC_VER
#include <cxxabi.h>
#endif
#include "print_impl.hpp"
namespace utils
{
/**
* \brief Pr... | [
"vasar007@yandex.ru"
] | vasar007@yandex.ru |
ba0ebbca219fada7e742adef555430223b9a5bba | 4071f144a2cd5a4c07ab5172763020f38831452f | /parser.cpp | 58d833f6f183d9b56c63d03a003ad4bde894acc7 | [] | no_license | juliolemus/Project3 | ca6e395f58d50e1b465065929806d8f3dc475759 | f5d3345e8d7e101cd90d0ceae5c6c7bbfe40968a | refs/heads/master | 2021-01-21T02:24:25.284333 | 2014-12-23T18:52:51 | 2014-12-23T18:52:51 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 55,315 | cpp | /* A Bison parser, made by GNU Bison 2.7. */
/* Bison implementation for Yacc-like parsers in C
Copyright (C) 1984, 1989-1990, 2000-2012 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as publi... | [
"julio165guyl@gmail.com"
] | julio165guyl@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.