blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 3 264 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 5 140 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 905
values | visit_date timestamp[us]date 2015-08-09 11:21:18 2023-09-06 10:45:07 | revision_date timestamp[us]date 1997-09-14 05:04:47 2023-09-17 19:19:19 | committer_date timestamp[us]date 1997-09-14 05:04:47 2023-09-06 06:22:19 | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 22
values | gha_event_created_at timestamp[us]date 2012-06-07 00:51:45 2023-09-14 21:58:39 ⌀ | gha_created_at timestamp[us]date 2008-03-27 23:40:48 2023-08-21 23:17:38 ⌀ | gha_language stringclasses 141
values | src_encoding stringclasses 34
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 3 10.4M | extension stringclasses 115
values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
5204c322f4636fddef30d1845d78d63d95970538 | ea5bcc2d6464a35ccb7f93f4a5e2737141f0200f | /build-QtPetinator-Desktop_Qt_5_12_6_MSVC2017_32bit-Debug/debug/moc_winning.cpp | fdcb892a457e63ea659c6f2c2e6a1cb325bf923a | [] | no_license | krbroman/Petinator | d9f8858c5700d44064cfb3a6e8284693ae67e983 | d43c21a4fca9ef2acc9b15136191541d31477a1f | refs/heads/master | 2020-09-06T17:14:44.036691 | 2019-12-14T10:26:54 | 2019-12-14T10:26:54 | 220,488,469 | 2 | 0 | null | 2019-11-30T08:25:56 | 2019-11-08T14:54:57 | C++ | UTF-8 | C++ | false | false | 3,591 | cpp | /****************************************************************************
** Meta object code from reading C++ file 'winning.h'
**
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.12.6)
**
** WARNING! All changes made in this file will be lost!
************************************************************... | [
"supermcguitarcraft@gmail.com"
] | supermcguitarcraft@gmail.com |
ff77c3afb3baafcfcb09d06a5cef2e21f26de9aa | d2f8dcefc229806f8d5588866da21a80d11c382f | /BOJ/1012/main.cpp | e6df56f80f52e8747efdaf0fe183a5bb334973fd | [] | no_license | timel2ss/Problem-Solving | dda01c3412f84bf478aa28f31bfe097138855571 | d86aa7b69ea6ed3328e1009ec018997fc0405e70 | refs/heads/master | 2023-08-04T05:05:40.831334 | 2021-09-17T06:44:43 | 2021-09-17T06:44:43 | 284,057,518 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,056 | cpp | #include <iostream>
using namespace std;
int map[60][60];
int visit[60][60];
int M, N, K;
int direction[4][2] = {{-1, 0}, {1, 0}, {0, -1}, {0, 1}};
int cnt = 0;
void dfs(int x, int y) {
visit[y][x] = 1;
for(int i = 0; i < 4; i++) {
int dx = x + direction[i][1];
int dy = y + direction[i][0];
if(0 <= ... | [
"dyddn0823@hanyang.ac.kr"
] | dyddn0823@hanyang.ac.kr |
9ec6954fd2b11e4879168aaa9796b4c04b5a111c | 50231b5cd1fe157b75e8445aed86bf7cfb03c458 | /src/utility/utility.hpp | 0e0f0f6c78bc729534341fdb460395823325c1c3 | [
"MIT"
] | permissive | blockspacer/std_ext | 159b14731df1b98a31383dfd2513e147b5280d5b | d023719c2aa3947ff6bddb2c2294607d79e68099 | refs/heads/master | 2021-03-28T15:17:45.239777 | 2017-07-23T09:25:26 | 2017-07-23T09:25:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,872 | hpp | #pragma once
#include <type_traits>
#include <functional>
#include <utility>
#include <cstddef>
#include <tuple>
namespace stdext {
namespace details {
/** \internal */
template<
typename R,
typename... A,
std::size_t... I
> constexpr auto
func(std::integer_sequence<std::size_t, I...>) {
static_as... | [
"michele.caini@gmail.com"
] | michele.caini@gmail.com |
128ca34cc7639c8224a60d04f4838b5d780da12b | 27b1be9ece5642f4c2d5b3930745508c2069888a | /src/tstools/tspOutputExecutor.cpp | 3d560c41c0b98c560971a62fa6d982d88fc887e4 | [
"BSD-2-Clause"
] | permissive | vacing/tsduck | 26dbe9e0a39e6c15e0364d59433eec9466fef18b | ac01b88a8052419bfce9715886d597419fc5fef6 | refs/heads/master | 2020-11-30T00:57:35.128901 | 2019-12-20T22:34:25 | 2019-12-20T22:34:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,105 | cpp | //----------------------------------------------------------------------------
//
// TSDuck - The MPEG Transport Stream Toolkit
// Copyright (c) 2005-2019, Thierry Lelegard
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the f... | [
"thierry@lelegard.fr"
] | thierry@lelegard.fr |
afd95077967ab37c8584cebf7da2d12f5f331f3d | 622720ad50d5bcff717ec69317a450484f9a4c36 | /Firmware/kl_lib/kl_i2c.cpp | 169b3c806f16839363116902c76c7385a21e0add | [] | no_license | Kreyl/chibi-armlet | 7fc881c92bc0788220fa51f5266b17ba7fc63071 | a96a9a0572cc534b1a9ba0076914d08ab53627b7 | refs/heads/master | 2023-08-17T00:06:00.341425 | 2019-12-12T20:23:46 | 2019-12-12T20:23:46 | 33,041,077 | 0 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 30,880 | cpp | #include "uart.h"
#include "kl_i2c.h"
#if defined STM32L1XX || defined STM32F2XX || defined STM32F4XX
#define I2C_DMATX_MODE(Chnl) \
STM32_DMA_CR_CHSEL(Chnl) | \
DMA_PRIORITY_LOW | \
STM32_DMA_CR_MSIZE_BYTE | \
STM32_DMA_... | [
"laystoll@yandex.ru"
] | laystoll@yandex.ru |
a368bd575332fd1a09477f53aa2021e271329460 | ad10052619b7bc79d311940bd2419772c4bc8a53 | /topcoder-master-2/SkipRope.cpp | 473fe16a53cf0dec4f8084ad500485305d5bb3eb | [] | no_license | bluepine/topcoder | 3af066a5b1ac6c448c50942f98deb2aa382ba040 | d300c8a349a8346dba4a5fe3b4f43b17207627a1 | refs/heads/master | 2021-01-19T08:15:06.539102 | 2014-04-02T21:10:58 | 2014-04-02T21:10:58 | 18,381,690 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,661 | cpp | // BEGIN CUT HERE
// END CUT HERE
#include <sstream>
#include <string>
#include <vector>
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <algorithm>
using namespace std;
class SkipRope {
public:
vector <int> partners(vector <int> candidates, int height)
{
... | [
"1983.song.wei@gmail.com"
] | 1983.song.wei@gmail.com |
c76dfae0da5f0506224cbe1e46634614e3e66ea0 | 8dc84558f0058d90dfc4955e905dab1b22d12c08 | /third_party/blink/renderer/modules/media_capabilities/media_capabilities.h | 3c1c8f2ff9929999d5fee4fc5754a4744cded16d | [
"LGPL-2.0-or-later",
"GPL-1.0-or-later",
"MIT",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference",
"BSD-3-Clause"
] | permissive | meniossin/src | 42a95cc6c4a9c71d43d62bc4311224ca1fd61e03 | 44f73f7e76119e5ab415d4593ac66485e65d700a | refs/heads/master | 2022-12-16T20:17:03.747113 | 2020-09-03T10:43:12 | 2020-09-03T10:43:12 | 263,710,168 | 1 | 0 | BSD-3-Clause | 2020-05-13T18:20:09 | 2020-05-13T18:20:08 | null | UTF-8 | C++ | false | false | 992 | h | // Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef THIRD_PARTY_BLINK_RENDERER_MODULES_MEDIA_CAPABILITIES_MEDIA_CAPABILITIES_H_
#define THIRD_PARTY_BLINK_RENDERER_MODULES_MEDIA_CAPABILITIES_MEDIA_CA... | [
"arnaud@geometry.ee"
] | arnaud@geometry.ee |
7059010a6225ec3c4edc704279ae98198c2a7909 | e433566a524fd56b871bdd93685e0b8f2985574c | /bebop_ws/devel/include/bebop_msgs/Ardrone3CameraStateVelocityRange.h | 69d210cb9b24d65ce6c823e9d5211ad633ace8d7 | [] | no_license | JarrettPhilips/self_landing_drone | 000b2f386302555f1876fbc38ada71d12451f8e0 | 7e497492941d9f642d4991c3fbc5be20e63f965e | refs/heads/master | 2021-09-14T13:20:14.536053 | 2017-12-20T00:16:55 | 2017-12-20T00:16:55 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,389 | h | // Generated by gencpp from file bebop_msgs/Ardrone3CameraStateVelocityRange.msg
// DO NOT EDIT!
#ifndef BEBOP_MSGS_MESSAGE_ARDRONE3CAMERASTATEVELOCITYRANGE_H
#define BEBOP_MSGS_MESSAGE_ARDRONE3CAMERASTATEVELOCITYRANGE_H
#include <string>
#include <vector>
#include <map>
#include <ros/types.h>
#include <ros/serial... | [
"Anke5631@colorado.edu"
] | Anke5631@colorado.edu |
f24e212652b16d524c14b11ee5eff7a7f50cbbe8 | 61281e4061fd363d494bb242bfa885b91108f9c0 | /conditionals-arrays-vectors-Strings-loops/birthday.cpp | 04d0ca707ed5b2785840a41548646b89b330dd16 | [] | no_license | abidSaifeddine/C-basics | 235afec4e4fbd1f48c12b70eaf2399aec63b7db1 | 55144cfc9827b14a3ed943cd80b9837f9d4488d2 | refs/heads/master | 2020-04-19T13:47:12.674700 | 2019-01-29T20:51:38 | 2019-01-29T20:51:38 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 834 | cpp | #include <iostream>
#include <iostream>
#include <string>
#include <vector>
#include <sstream>
#include <limits>
using namespace std;
int main() {
std::cout << "Hello, age" << std::endl;
int age;
bool isImportant;
bool again = true;
string rep;
while(again){
isImportant = false;
... | [
"abid.saifeddine123@gmail.com"
] | abid.saifeddine123@gmail.com |
6f27186ba865a655adb5c9136870adb14bc55cc9 | 1f03303d3003903f38897a55feb77fe8e1151975 | /aws-cpp-sdk-accessanalyzer/source/model/FindingSummary.cpp | 6b395f8bb3edad9ec8859b77f3a3207ed31c1ff8 | [
"Apache-2.0",
"MIT",
"JSON"
] | permissive | xcode6/aws-sdk-cpp | fa392dfeb7d073416ef2858d9606210e7d5d0ea3 | 85b6a087b359d1c43fbf81cbbd28049832a7611d | refs/heads/master | 2020-09-30T12:24:48.464922 | 2019-12-10T21:12:12 | 2019-12-10T21:12:12 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,154 | cpp | /*
* Copyright 2010-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" fil... | [
"aws-sdk-cpp-automation@github.com"
] | aws-sdk-cpp-automation@github.com |
0879dae0386b93940e1d81aec60e298f8e75f718 | cc36bf3a46b06af454e42f88865aa2b16caefc2c | /ObjEditor/Mesh/editableobject.h | db3d087be9abc336b42ad26274f2abb7876f0488 | [] | no_license | artcampo/2012_3D_Procedural_Object_Editor | 058548468514da39d1434b024bcf42e17f1e0af4 | ddb75c727bfb12f1d39786dd72928dc35539c860 | refs/heads/master | 2021-01-12T04:27:28.204089 | 2016-12-29T13:57:45 | 2016-12-29T13:57:45 | 77,615,572 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 533 | h | #ifndef _editableobject_H
#define _editableobject_H
#include <string>
class editableobject
{
public:
editableobject();
editableobject( int aUniqueId, std::string& aName );
virtual ~editableobject() = 0;
void setName( const std::string& aName );
std::string name();
void setHigh... | [
"arturocampos82@gmail.com"
] | arturocampos82@gmail.com |
c76f191529d34ee89bfd987cc69bb057e62a91f2 | a65c77b44164b2c69dfe4bfa2772d18ae8e0cce2 | /0contest/leet_wc_158/pA.cpp | 005440190af75ec6388e84946938f55daafd7acd | [] | no_license | dl8sd11/online-judge | 553422b55080e49e6bd9b38834ccf1076fb95395 | 5ef8e3c5390e54381683f62f88d03629e1355d1d | refs/heads/master | 2021-12-22T15:13:34.279988 | 2021-12-13T06:45:49 | 2021-12-13T06:45:49 | 111,268,306 | 1 | 6 | null | null | null | null | UTF-8 | C++ | false | false | 2,641 | cpp | #include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
typedef pair<int, ll> pil;
typedef pair<int, ll> pli;
typedef pair<double,double> pdd;
#define SQ(i) ((i)*(i))
#define MEM(a, b) memset(a, (b), sizeof(a))
#define SZ(i) int(i.size())
#define FOR(i, ... | [
"tmd910607@gmail.com"
] | tmd910607@gmail.com |
bc7f6ea1b5f2aaa65e1475b80400d747e7180e52 | 156de3c57af4c6541b0c1cabfc933fb622aef44f | /.RootCoreBin/include/QuickAna/EventInfoIsData.h | f78863a461f71b71624c877bc100ce7bf0c30cb5 | [] | no_license | Crashtime/ATLAS-JetCleaning | 704937a36e2b7c1d6908745eef1d02923b274447 | 442f298bfcd9196bef86b978588cce0c430507d7 | refs/heads/master | 2021-01-21T09:06:30.007753 | 2016-09-16T21:48:22 | 2016-09-16T21:48:22 | 68,410,571 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,285 | h | #ifndef QUICK_ANA__EVENT_INFO_IS_DATA_H
#define QUICK_ANA__EVENT_INFO_IS_DATA_H
// Copyright Iowa State University 2015.
// Author: Nils Krumnack
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.or... | [
"crashtime@gmail.com"
] | crashtime@gmail.com |
183cbb5438d3d50279fc55741d1a29874133afe4 | f54bc0fbdc7b205f453069c5d054d98f2ce46a70 | /MyGame/Game/GameObjects/Stage.cpp | b5e3a7a67086d5eb77017a7580a2794730b9df0b | [] | no_license | s-tama/Toywars | ad3033ed4bcd48640069d685c389006005133d27 | 582f26c87b5173827f5b842969380dc0f1a5c1f0 | refs/heads/master | 2020-04-15T19:52:26.043395 | 2019-01-10T01:32:07 | 2019-01-10T01:32:07 | 164,968,541 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 929 | cpp | //
// Stage.cpp
//
// ヘッダーファイルのインクルード --------------------------------------------------
#include "Stage.h"
// usingディレクティブ -------------------------------------------------------------
using namespace MyLibrary;
using namespace MyGame;
using namespace DirectX;
using namespace DirectX::SimpleMath;
// メンバ関数の定義... | [
"syuuki0105@gmail.com"
] | syuuki0105@gmail.com |
f1fb9c31b086cf86cc42a56de29035b3c2cc77c5 | 08b8cf38e1936e8cec27f84af0d3727321cec9c4 | /data/crawl/git/new_hunk_6809.cpp | 59e27a2097adcf5e22837b8d54241c74174c247d | [] | no_license | ccdxc/logSurvey | eaf28e9c2d6307140b17986d5c05106d1fd8e943 | 6b80226e1667c1e0760ab39160893ee19b0e9fb1 | refs/heads/master | 2022-01-07T21:31:55.446839 | 2018-04-21T14:12:43 | 2018-04-21T14:12:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 403 | cpp |
for (i = 0; i < argc; i++) {
struct object *o;
struct commit *commit;
o = peel_to_type(argv[i], 0, NULL, OBJ_COMMIT);
if (!o)
die("%s - not something we can merge", argv[i]);
commit = lookup_commit(o->sha1);
commit->util = (void *)argv[i];
remotes = &commit_list_insert(commit, remotes)->next;
str... | [
"993273596@qq.com"
] | 993273596@qq.com |
95bde9608ebedcb0c82f7c04df7d8cb02abe2ea9 | 3a9d933d71a40b2810d7f0559a5024347aefa677 | /test/client.cpp | 27829b27932774ae21d07369e4cb2b02fb4f3370 | [] | no_license | shiThomas/Stock_Exchange_Matching_Server | 7b4f12ed2ac1cec89b3ed0e7e83c7e58802e3e21 | 656dc98e15983e2291dba22bdcd6394032ec1eb3 | refs/heads/master | 2020-05-07T20:23:25.654410 | 2019-04-11T18:52:51 | 2019-04-11T18:52:51 | 180,857,736 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,826 | cpp | #include <arpa/inet.h>
#include <errno.h>
#include <netdb.h>
#include <netinet/in.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/socket.h>
#include <sys/time.h>
#include <sys/types.h>
#include <time.h>
#include <unistd.h>
#include <cstring>
#include <fstream>
#include <iostream>
int status... | [
"ws146@duke.edu"
] | ws146@duke.edu |
e37c5fa9664d0b9c5753c787d5099ca8fa531ebb | fec81bfe0453c5646e00c5d69874a71c579a103d | /blazetest/src/mathtest/operations/smatsmatadd/UCaMZb.cpp | fed21f33bdd67725bddd0141ab69cc16ec5501e9 | [
"BSD-3-Clause"
] | permissive | parsa/blaze | 801b0f619a53f8c07454b80d0a665ac0a3cf561d | 6ce2d5d8951e9b367aad87cc55ac835b054b5964 | refs/heads/master | 2022-09-19T15:46:44.108364 | 2022-07-30T04:47:03 | 2022-07-30T04:47:03 | 105,918,096 | 52 | 7 | null | null | null | null | UTF-8 | C++ | false | false | 4,202 | cpp | //=================================================================================================
/*!
// \file src/mathtest/operations/smatsmatadd/UCaMZb.cpp
// \brief Source file for the UCaMZb sparse matrix/sparse matrix addition math test
//
// Copyright (C) 2012-2020 Klaus Iglberger - All Rights Reserved
//
//... | [
"klaus.iglberger@gmail.com"
] | klaus.iglberger@gmail.com |
41e6d7fa77ce74257b3cfbf3e78d06161c36d967 | 1d529373f57a1d351dcf4eb01582bdc685857111 | /SmoothCam/source/camera_states/thirdperson_horse.cpp | 05e94e2285f727de04bd7e8000286aa6b5dd9b49 | [] | no_license | ciathyza/SkyrimSE-SmoothCam | dcb563ffdaf393619584c5704024da0ef5ba7b88 | cd91c92927b07a3bf2c180dd0be3767fd7fec2a3 | refs/heads/master | 2022-12-29T08:21:19.404326 | 2020-10-13T06:58:52 | 2020-10-13T06:58:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,749 | cpp | #include "camera_states/thirdperson_horse.h"
#include "camera.h"
Camera::State::ThirdpersonHorseState::ThirdpersonHorseState(Camera::SmoothCamera* camera) noexcept : BaseCameraState(camera) {
}
void Camera::State::ThirdpersonHorseState::OnBegin(const PlayerCharacter* player, const CorrectedPlayerCamera* camera) {
}... | [
"mwilsnd@gmail.com"
] | mwilsnd@gmail.com |
1bad1384a3777807f5a3674e8037594d251c8ed2 | 51632023d380d8a561be668a88bc264531531a77 | /Library.h | ba9ecb09c4629201e13b230def051b8ab3ead706 | [] | no_license | OmegaSyrus/comp2404-A4 | 77cae61e8a9a63156c2159b352881916a6a8e887 | 2c3308c8758f841e874b4a4741ea0163ca474db0 | refs/heads/master | 2021-01-19T14:52:50.906489 | 2014-11-20T16:29:22 | 2014-11-20T16:29:22 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,019 | h | #ifndef LIBRARY_H
#define LIBRARY_H
#include <string>
#include "types.h"
#include "Book.h"
#include "Patron.h"
#include "PDeque.h"
#include "PatronArray.h"
#include "BookArray.h"
#include "Storage.h"
using namespace std;
class Library
{
public:
Library();
~Library();
void init();
int addBook... | [
"Omega_Syrus@hotmail.com"
] | Omega_Syrus@hotmail.com |
bf4e85ef79f3388c3e4aefb26a532a6ad90a1594 | 073f5571fd887fcc22d82c9296b1b70203297ac0 | /B/05-template/specialzation/Lookup.cpp | 83fe8627bbe660c6c388751572a1baac1467727f | [] | no_license | haolaoshi/thinkingincpp | 8f51408b055828335800e2511403679ec4f2ae89 | 1c9bcc13673e1e5af9e40b8fe0a0045ad520cd7c | refs/heads/master | 2023-07-11T15:14:11.296776 | 2021-08-08T15:31:28 | 2021-08-08T15:31:28 | 174,854,234 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 232 | cpp | #include <iostream>
using std::cout;
using std::endl;
void f(double){cout << "fdouble" << endl;}
template<class T> class X{
public:
void g(){f(1);}
};
void f(int){cout << " fint" << endl;}
int main()
{
X<int>().g();
}
| [
"liujiahao.oak@gmail.com"
] | liujiahao.oak@gmail.com |
bcc53bbe3b574804d6051b2d3f1a98478b79f3b5 | ade8ecf6afcd34572f6ae9e258b121cb6fc0a763 | /Marlin/ErrorReport.h | 351944144089c1a7201321a9c20a120d969a4286 | [
"MIT"
] | permissive | radtek/Marlin | 9d098b892cc7717f87cafaa281caad84a8c7e746 | f97b93155f29abec5438a5c15d70e592e727b90b | refs/heads/master | 2020-07-16T19:36:15.377379 | 2019-09-01T17:44:00 | 2019-09-01T17:44:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,640 | h | /////////////////////////////////////////////////////////////////////////////////
//
// SourceFile: ErrorReport.h
//
// Marlin Server: Internet server/client
//
// Copyright (c) 2015-2018 ir. W.E. Huisman
// All rights reserved
//
// Permission is hereby granted, free of charge, to any person obtaining a copy... | [
"edwig.huisman@hetnet.nl"
] | edwig.huisman@hetnet.nl |
ea787132a7e3c1a8a7be3f330719d3c7de69b6f7 | ed2706cb30e7cd66fe1feb2ceec1cd8e00a0ef26 | /include/io/date.hh | ef58e2c4ddef50cdc2efe6e5de8ea0fab8eb9737 | [
"MIT"
] | permissive | king1600/valk | 736634a361a13eaf92ece8f4953239131cf2f8c0 | b376a0dcce522ae03ced7d882835e4dea98df86e | refs/heads/master | 2021-01-01T20:02:14.595013 | 2017-10-27T11:38:23 | 2017-10-27T11:38:23 | 98,746,792 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,054 | hh | #pragma once
namespace io {
class Date {
private:
std::tm dtime;
public:
inline Date() : Date(now()) {}
inline Date(const std::time_t _time) {
dtime = *(std::gmtime(&_time));
}
inline Date(const std::string &datetime) {
static const char* format = "%Y-%m-%dT%H:%M:%SZ";
std... | [
"3dsarcard@gmail.com"
] | 3dsarcard@gmail.com |
08ad5525541d725090015548f2f1e754783c6852 | d31418056028cde6c00bcb227be50473f3233edf | /src/sentis_m100_node.cpp | f4bd8a1b61b78746c00a84ca3ebeb9425c2092c2 | [] | no_license | akihikoy/lfd_vision.old | 6fdb5d16a8b3b92508d4e6e7f507d837434e16ce | 84124f36d4c6e79630e77cc3bb4432ae0aecd68c | refs/heads/master | 2021-05-03T06:01:59.887056 | 2016-02-05T20:49:19 | 2016-02-05T20:49:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,202 | cpp | //-------------------------------------------------------------------------------------------
/*! \file sentis_m100_node.cpp
\brief Load data from Sentis M100 and send it as a point cloud topic.
\author Akihiko Yamaguchi, info@akihikoy.net
\version 0.1
\date Apr.22, 2015
*/
//------------------... | [
"info@akihikoy.net"
] | info@akihikoy.net |
d67f9a219b36b76d87a2cb1278323250728ce7ea | 246a16842feb7633edbe6291ff36b4c93edbb3c7 | /rxcpp-first/61_create_asio_timer.cpp | 185c6d3eea645ac87478a498ca717d001bda3235 | [] | no_license | curtkim/c-first | 2c223949912c708734648cf29f98778249f79346 | f6fa50108ab7c032b74199561698cef087405c37 | refs/heads/master | 2023-06-08T10:57:35.159250 | 2023-05-28T05:52:20 | 2023-05-28T05:52:20 | 213,894,731 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,272 | cpp | #include <thread>
#include <rxcpp/rx.hpp>
#include <asio.hpp>
#include "rx-asio.hpp"
int main() {
asio::io_context io_context;
asio::system_timer timer(io_context,std::chrono::system_clock::now() + std::chrono::seconds(2));
std::cout << std::this_thread::get_id() << " main thread" << std::endl;
auto asio_c... | [
"iamteri@gmail.com"
] | iamteri@gmail.com |
e50143d14190faa1c58ac608ccd244c14dfddb73 | 159f65e94429be116eb8839c8bba2aeca4a19b8b | /ModuleFileSystem.h | 7151288870a19c61e2e5a8f95faa86a3b38f8fba | [
"MIT"
] | permissive | GBMiro/GomuGomuEngine | 863e09affd5543a8fce8ea9586693ffc92a29f07 | c9ee5ef94a3c9aeb9697582b568b646c43bacef2 | refs/heads/master | 2023-02-19T04:08:20.318346 | 2021-01-17T19:36:31 | 2021-01-17T19:36:31 | 312,783,989 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 876 | h | #pragma once
#include <string>
#include <vector>
#include "Module.h"
class ModuleFileSystem : public Module {
public:
ModuleFileSystem();
~ModuleFileSystem();
bool Init();
unsigned int Load(const char* path, const char* file, char** buffer) const;
unsigned int Load(const char* file, char** buffer) const;
uns... | [
"guillemburguesmiro@gmail.com"
] | guillemburguesmiro@gmail.com |
57bd8b71857b714ffee415dc2a7cbb61939b1fdc | b83decbcf1320d7e29eacfcf1bc382e28c0cb3f2 | /Chapter 1/The Clocks.cpp | cf091274fcb59a663fd48e4a17fdbd694f3084b6 | [] | no_license | maliemin-Mstar/USACO_TRAINING | 75a183a950dae894996830f1c5b7b3292b5b515a | 57ef6d4ebcf2284270fc894a41115a14a2e0e4d2 | refs/heads/master | 2020-05-30T14:39:49.731918 | 2014-03-21T09:18:18 | 2014-03-21T09:18:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,340 | cpp | /*
ID: maliemi2
PROG: clocks
LANG: C++
*/
#include<iostream>
#include<queue>
#include <fstream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#define SIZE 22
using namespace std;
int times[10], myclock[10], min_t, ans[100];
int change[10][10] =
{
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
{0, 1, 1, 0, 1, 1, 0, 0, 0, ... | [
"maliemin.jj@gmail.com"
] | maliemin.jj@gmail.com |
fb7a506a1cec5e01be66895a1de46c023b77899e | ae806d7bca22cac9fe98f9fe4b052a6b68fba7a1 | /codeforces/705A.cpp | d041e9a238573f6bb06e8f9ce92c83ded967434a | [] | no_license | AkmalAbdullayev/competitive-programming | 09e2c2929f1b33d61a22ca687ba5fbf1c93b24b9 | 8ef890469eb57bee919b14824f600f5a9944dbbe | refs/heads/master | 2023-03-21T00:49:46.396518 | 2021-03-25T20:17:01 | 2021-03-25T20:17:01 | 347,411,783 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 72 | cpp | #include <iostream>
using namespace std;
int main() {
return 0;
} | [
"akmalabdullayev1512@gmail.com"
] | akmalabdullayev1512@gmail.com |
832e8727469da486deb4d0699a6f282c7f84b846 | 3d61fb5fd6b7ff21450e14d5fe49be3aedbbe1e4 | /Philotes/EditorFrame/3rdlibs/xtp1501/SyntaxEdit/XTPSyntaxEditStruct.h | 771ff025d4a9c62ef467a10aad8c8c1c85e85310 | [] | no_license | yannicpeng/erbiqingnian | b3731805b11484ce99b39ba9937f848810001a44 | ead102ba873ee3fa163d61c474cfd32147db6c1d | refs/heads/master | 2021-03-12T22:28:00.617820 | 2012-05-26T05:24:53 | 2012-05-26T05:24:53 | 33,162,785 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 18,476 | h | // XTPSyntaxEditStruct.h
//
// This file is a part of the XTREME TOOLKIT PRO MFC class library.
// (c)1998-2011 Codejock Software, All Rights Reserved.
//
// THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
// RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
// CONSENT O... | [
"cjlm007@6cb12ae1-4c77-52bf-f227-7ea6b66274e1"
] | cjlm007@6cb12ae1-4c77-52bf-f227-7ea6b66274e1 |
227c3f60382baf520a2282d890fb489f771ed003 | 690b60a57f85bdce71e614676c305e2492fb7608 | /QCIFSServer/QCIFSProcessor/cProcessPacketMsg.h | fb23b1c2fb885783f74c116a071de66bf2dba735 | [
"Apache-2.0"
] | permissive | rodrigomr/VFS | b07886c0a97bf08c2853fa3182e90eba6ff6ff4e | 6b68b00df8cb668106c2d0841cbcd46138298717 | refs/heads/master | 2020-03-30T13:54:59.627030 | 2018-10-02T12:06:43 | 2018-10-02T12:06:43 | 151,293,022 | 0 | 0 | NOASSERTION | 2018-10-02T17:12:38 | 2018-10-02T17:12:46 | null | UTF-8 | C++ | false | false | 2,593 | h | // Copyright 2018 Grass Valley, A Belden Brand
// 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 ag... | [
"drjwcain@gmail.com"
] | drjwcain@gmail.com |
f9335e50c9e572dacac6e3a1d9121e3e4f9d6f4d | 0d11203e6a143b2383b5baa8a9a2b3e48383c9b1 | /DSA09007.cpp | acb1d5ac778fd602f8f725c18d9589cc2a955e2f | [] | no_license | namnguyen215/CTDLGT | c36b8526b3af00ea2d4bd113efe378f95091f895 | 6e7e602940fb5c28b7af830f44f58443375b7666 | refs/heads/main | 2023-06-25T08:48:47.269848 | 2021-07-21T16:36:36 | 2021-07-21T16:36:36 | 360,927,428 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,371 | cpp | #include<bits/stdc++.h>
using namespace std;
vector<int> ke[1007];
int truoc[1007];
bool chuaxet[1007];
int v,e,v1,v2,start,des;
void init()
{
memset(chuaxet,true,sizeof(chuaxet));
for(int i=1;i<=v;i++)
truoc[i]=-1;
for(int i=1;i<=v;i++)
ke[i].clear();
}
void BFS(int start,int des)
{
que... | [
"namnguyenphuong215@gmail.com"
] | namnguyenphuong215@gmail.com |
a87c0ea8e7c1d272c54fd0c9f997c1662fcb857c | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/rtorrent/gumtree/rtorrent_new_hunk_216.cpp | a613990caf20b594e6d0b13942f04c6adb7fdb26 | [] | 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 | 2,265 | cpp |
control->command_scheduler()->parse(arg1, arg2, arg3, rpc::convert_list_to_command(itr, args.end()));
return torrent::Object();
}
torrent::Object
apply_load(int flags, const torrent::Object& rawArgs) {
const torrent::Object::list_type& args = rawArgs.as_list();
torrent::Object::list_type::const_i... | [
"993273596@qq.com"
] | 993273596@qq.com |
4ea1c261b2be7235e46514c9f9ac90ebe317186c | c95c22428deebd225e0f46451adf7b2108f6b870 | /TFG-Project/Dependencies/NUMCPP/include/NUMCPP/NumCpp/Random/cauchy.hpp | 8357d63a10ae0918a120555fe2ee42f8be36319d | [] | no_license | RubenRubioM/Bipedal-Walking-GA | 8702a9d9164d63b69340deec216643861b726e43 | d56009b1632a465e278b5311144fb2f1852175b1 | refs/heads/master | 2023-02-04T21:08:46.345015 | 2020-12-28T12:04:29 | 2020-12-28T12:04:29 | 282,260,484 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,926 | hpp | /// @file
/// @author David Pilger <dpilger26@gmail.com>
/// [GitHub Repository](https://github.com/dpilger26/NumCpp)
///
/// License
/// Copyright 2020 David Pilger
///
/// Permission is hereby granted, free of charge, to any person obtaining a copy of this
/// software and associated documentation files(the "Software... | [
"rubensipala@gmail.com"
] | rubensipala@gmail.com |
dc96e62ba0c2399356b83a3b866b52fee84b9e35 | f0b7ddd4bcdf99f027a75e283b22a0264ffa05ba | /ShooterStarter/.history/Source/ShooterStarter/ShooterCharacter_20200907123110.cpp | 5b64ce5e07cd7ca14f740f5ea80715bf1608675d | [] | no_license | Onygox/UnrealProjects | cd1d8c29f228a7f8e0e2b84bf3c0102761fd07ef | e079c9593a5d9b794d17a409ff4f5175fbffaa0a | refs/heads/master | 2022-12-12T21:19:24.416300 | 2020-09-11T16:38:08 | 2020-09-11T16:38:08 | 277,343,579 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,560 | cpp | // Copyright Lionel Miele-Herndon 2020
#include "ShooterCharacter.h"
#include "A_Gun.h"
#include "Components/CapsuleComponent.h"
#include "ShooterStarterGameModeBase.h"
// Sets default values
AShooterCharacter::AShooterCharacter()
{
// Set this character to call Tick() every frame. You can turn this off to improv... | [
"miell534@newschool.edu"
] | miell534@newschool.edu |
d2809c79a027522c3e732c1bd43747e5e1dd5923 | 3ce426448a7afe494fde6e295ac7a93c92e76c8c | /cam2ros/include/TransportLayerInterface.h | f2ec1411280167292cb9816921c4b1c52e0584b8 | [] | no_license | oulton/SpinnakerCam2ROS | 026f6e879394ca27b2352103d29277b87261e204 | cb04ff08d0d73da70ca0580e8001c10f9b9a935c | refs/heads/main | 2023-09-05T00:04:02.380113 | 2021-10-31T13:25:34 | 2021-10-31T13:25:34 | 423,140,954 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,655 | h | //=============================================================================
// Copyright (c) 2001-2020 FLIR Systems, Inc. All Rights Reserved.
//
// This software is the confidential and proprietary information of FLIR
// Integrated Imaging Solutions, Inc. ("Confidential Information"). You
// shall not disclose suc... | [
"haipengzhu666@126.com"
] | haipengzhu666@126.com |
a46705ba14944e79c529da9ce9eb8209582edbca | 9df5bfab32d03e22480d4000ad1901334279499f | /C++/find_min_in_rotated_sorted_array_ii.cpp | b2bec1520fcf49081d0eee229c6e862e4aebc7e0 | [] | no_license | yanbai1990/lintcode | 240a0b1db6aeb8f5ab8117777ee656eaf4f3274f | 65f31767962e8a524271e20fcacc6c1eae3ecad4 | refs/heads/master | 2020-12-24T12:02:13.111177 | 2016-10-29T15:30:37 | 2016-10-29T15:30:37 | 38,703,667 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 728 | cpp | class Solution {
public:
/**
* @param num: the rotated sorted array
* @return: the minimum number in the array
*/
int findMin(vector<int> &num) {
// write your code here
int start=0;
int end=num.size()-1;
int ans=INT_MAX;
while(start+1<end) {
in... | [
"byan1990@gmail.com"
] | byan1990@gmail.com |
90a7e30df08197a4a70e99feb3894d2f45e154b2 | a077eb51ff18df52d741d6c9ba9a5003673415df | /cpp/graphFunctions/graphFunctions.h | e09e2472353a027c2d9565d6bc0a52270402ac59 | [
"MIT"
] | permissive | michieluithetbroek/A-MDVRP | d4a5f2f4e742c70c9cebd7dccde9837b1f718a2f | f378333e21b874e1cfad1333df5d47dec8c7b13e | refs/heads/master | 2022-04-30T19:55:40.080660 | 2022-03-29T15:19:58 | 2022-03-29T15:19:58 | 241,376,430 | 43 | 13 | null | null | null | null | UTF-8 | C++ | false | false | 2,498 | h | #pragma once
#include <vector>
#include <map>
#include <utility>
#include <lemon/list_graph.h>
#include <lemon/euler.h>
#include <lemon/concepts/graph_components.h>
#include <lemon/adaptors.h>
#include <lemon/hao_orlin.h>
#include <lemon/preflow.h>
#include <lemon/dijkstra.h>
#include <lemon/edmonds_karp.h>
using na... | [
"a.h.schrotenboer@gmail.com"
] | a.h.schrotenboer@gmail.com |
6c2843a2fbafecd769d301b40ce10c1e5f403a7f | 0cfa46c1dccd3ad53b16d32c6a00a155c5bc0be5 | /cpp/libs/opendnp3/src/opendnp3/master/MasterStackConfig.h | 48131e9e1ceb3171ba9903a92ba919dceef1eaba | [
"Apache-2.0",
"LicenseRef-scancode-generic-cla",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | atmurray/dnp3 | 9e5c946c7857523f7d6a8c260b6cdef9fbc60805 | 0babbe9fc25e8ba952d5443afc75e5448db28a9b | refs/heads/ODC | 2021-01-17T14:15:36.244255 | 2014-11-21T10:38:24 | 2014-11-24T04:24:08 | 16,426,140 | 0 | 0 | null | 2015-05-26T23:51:35 | 2014-02-01T01:52:44 | C++ | UTF-8 | C++ | false | false | 1,467 | h | /**
* Licensed to Green Energy Corp (www.greenenergycorp.com) under one or
* more contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright ownership.
* Green Energy Corp licenses this file to you under the Apache License,
* Version 2.0 (the "Li... | [
"jadamcrain@gmail.com"
] | jadamcrain@gmail.com |
e52edc51608e6a420c9f58f037d72a3715273dde | 01135ea2b2cba847a3e4f0c3b2febe5424763f35 | /include/FetchEpisodes.h | a6f4a065dc63000d76fb442d411f411d1f9fc68c | [] | no_license | justmert/Kanzaki | aa9a8b3dc52a769e475317522919283c3ee2cd41 | 56b47650f2143762edd4c8994f74c71a2ffdeb32 | refs/heads/master | 2022-02-17T04:21:17.046108 | 2019-08-14T10:46:15 | 2019-08-14T10:46:15 | 201,549,583 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 641 | h | #include<string>
#include<vector>
#include<algorithm>
class Anime;
class FetchEpisodes
{
private:
public:
static std::vector<Anime> VectorEpisode;
static std::string FetchAnimeEp(int);
static void DownloadAnime(std::string,std::string &, std::string &);
static void PlayAnime(std::string);
st... | [
"kklumert@gmail.com"
] | kklumert@gmail.com |
8a5f615cceebd36059e207bd99265738352f4e71 | 79a634d9357a750cbd0efea04d932938e1b7f632 | /Contest/Topcoder/Z_Others/250.cpp | e1cea1f694984fcfa5248405d976e0160e93a9b1 | [] | no_license | hphp/Algorithm | 5f42fe188422427a7762dbbe7af539b89fa796ed | ccbb368a37eed1b0cb37356026b299380f9c008b | refs/heads/master | 2016-09-06T02:24:43.141927 | 2014-05-27T00:49:44 | 2014-05-27T00:49:44 | 14,009,913 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 849 | cpp | #include <vector>
#include <string>
using namespace std;
#define N 61
int dmx[N][N],rmx[N][N];
class AmoebaDivTwo
{
public:
int count(vector <string> table, int K)
{
int n = table.size();
int m = table[0].length();
for(int i=n-1;i>=0;i--)
{
for(int j = m-1;j>=0;j--)
{
i... | [
"hphpcarrot@gmail.com"
] | hphpcarrot@gmail.com |
d8de2c0b726c8e620b526bbaac0ade97c8ced5e8 | e043290612c380ca10290badb2574da006b9dea9 | /services/ui/ws/window_server_test_base.cc | bee909e989bd4522396c49f7036700ec598eadc9 | [
"BSD-3-Clause"
] | permissive | jeffsseely/chromium | 28667a243607baf02c74ccf4cc94a1b36ed2a42b | 5c0ead04050ee0787ef0d9af45efc3c740571465 | refs/heads/master | 2023-03-17T04:31:14.131666 | 2017-01-24T18:15:39 | 2017-01-24T18:15:39 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,278 | cc | // Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "services/ui/ws/window_server_test_base.h"
#include "base/bind.h"
#include "base/location.h"
#include "base/memory/ptr_util.h"
#include "base/ru... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
f45868f08964bbe2b630ec9590525729330e12d8 | 7b6469d1508f0a67bfe4ca6350357c2c8ffa875a | /Practical 0 - Abstract Factory/Proxy Implementation/GraphicProxy.cpp | 9cd7cb19244e069aef9d02f175cdfab6994fffec | [] | no_license | KDaryl/Games-Engineering | 785784efe18bfeaee0e9c77fa87a9e45e8b87dc3 | 24b6bac0e7727ee235678702a791ade956b8271a | refs/heads/master | 2020-03-29T02:33:10.114707 | 2019-03-27T19:08:16 | 2019-03-27T19:08:16 | 149,442,486 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 312 | cpp | #include "GraphicProxy.h"
GraphicProxy::GraphicProxy()
{
this->graphic = nullptr;
}
GraphicProxy::~GraphicProxy()
{
if (graphic)
delete graphic;
}
Graphic* GraphicProxy::getInstance(void)
{
if (!graphic)
graphic = new Graphic();
return graphic;
}
void GraphicProxy::draw()
{
getInstance()->draw();
} | [
"c00207452@itcarlow.ie"
] | c00207452@itcarlow.ie |
6a4c0e75bb10ec54a35b1a850ee4a3a66e7e4153 | ebe0cffadf5d04495905bbc75fbfd8acee832f6b | /Cameras/HomefrontTheRevolution/InjectableGenericCameraSystem/CameraManipulator.h | 3dcf5679cc8f3c370c7a2f1b1bd48e603aa50d77 | [
"BSD-2-Clause",
"LicenseRef-scancode-proprietary-license"
] | permissive | FransBouma/InjectableGenericCameraSystem | f123f31c676879561fc3a3e2d03579adf2c1f7cf | bdd9e237cef6caba38b946b18c36713f69ab09b9 | refs/heads/master | 2023-08-24T19:17:59.563669 | 2023-04-27T18:59:08 | 2023-04-27T18:59:08 | 75,194,811 | 718 | 278 | BSD-2-Clause | 2020-09-23T19:12:50 | 2016-11-30T14:30:36 | C++ | UTF-8 | C++ | false | false | 2,202 | h | ////////////////////////////////////////////////////////////////////////////////////////////////////////
// Part of Injectable Generic Camera System
// Copyright(c) 2017, Frans Bouma
// All rights reserved.
// https://github.com/FransBouma/InjectableGenericCameraSystem
//
// Redistribution and use in source and binary ... | [
"frans@sd.nl"
] | frans@sd.nl |
44178a6fee9bdb535d9e63f90a306f6546a8e1a5 | 3cb02d8bfd827beaff8f5d284bfeee2099c173e6 | /2019年北京师范大学校赛/预赛/f.cpp | 94704dc96969e9b443198522ee8c7ee853e647ec | [] | no_license | yyhaos/Competitions | 8a88ddfa0606e884c88f17ef391ffdd1ba32bf0f | d291be1327e895883b423eeebad943893f27e66e | refs/heads/master | 2021-06-12T13:14:22.354538 | 2020-08-18T05:24:24 | 2020-08-18T05:24:24 | 128,635,106 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,610 | cpp | //Problem Web:http://39.97.97.11/problem.php?cid=1003&pid=5
#include<bits/stdc++.h>
#include<ext/rope>
#include<iostream>
#include<stack>
#include<vector>
#include<queue>
#include<stdio.h>
#include<string.h>
using namespace std;
#define ll long long
#define lowbit(x) (x&-x)
#define rep(i,x,y) for(ll i=x;i<=y;i++)
#def... | [
"35396510+yyhaos@users.noreply.github.com"
] | 35396510+yyhaos@users.noreply.github.com |
cd7faa25d27f0d9e3525b079a98e0cf81d6d5b69 | d6750ce224994800a69a0b13f72364854c639cbc | /src/test/amount_tests.cpp | ce14b027bbeb6ec5214e8dae13dbaa194f2a7454 | [
"MIT"
] | permissive | BrightonDube/Looniecoin | 79719a76f2feb842b3ddfb602ce849a156fed46b | 07549342c75e9482fe8977bfabafd2affe76551a | refs/heads/master | 2020-03-31T02:24:31.050368 | 2018-10-13T18:39:42 | 2018-10-13T18:39:42 | 151,821,976 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,672 | cpp | // Copyright (c) 2016-2017 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include <amount.h>
#include <policy/feerate.h>
#include <test/test_bitcoin.h>
#include <boost/test/unit_test.hpp>
BOOST_FI... | [
"BrightonDube@users.noreply.github.com"
] | BrightonDube@users.noreply.github.com |
fba0d412ca1e6fd44ff29a3503e8ba8f66567a21 | afda9a6e85ac236d5dbf80fa388360efe0038341 | /src/common/sysinfo.cc | ad05f06694549a6c53d9e97a6cb5d79ebb2ec180 | [] | no_license | sybila/NewBioDiVinE | 73d2a19812df28dc217213f60f87050efcb69cb2 | e046a64b2345b739bcfa64317986f78be9ad0ca3 | refs/heads/master | 2020-04-25T17:38:59.935101 | 2014-12-10T01:44:17 | 2014-12-10T01:44:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,446 | cc | #include "common/sysinfo.hh"
// {{{ vminfo
vminfo_t::vminfo_t(){
pid = getpid();
snprintf (filename,sizeof filename, "/proc/%d/status", pid);
vmsize=vmlck=vmrss=vmdata=vmstk=vmexe=vmlib=0;
statm=false;
char line[1000];
// now detect the number of lines to be skipped
FILE *statusfile;
lineskip = 0;
... | [
"325073@mail.muni.cz"
] | 325073@mail.muni.cz |
16515e3d4a9db2dd60b0d32557c9490e1bace854 | 40416cef809fa0a88afef5b5e8f7a04e16abbc20 | /Zenitka/Object.cpp | 7ef43fe327dea540170fdc08c8348ddb98a782a5 | [] | no_license | GetRight23/AntiaircraftGun | 111989db7923935ee8f57515206997bea46f7412 | a5dbdde925efbce5bcac859e4cd45796615e7d1a | refs/heads/master | 2020-04-01T21:29:44.232549 | 2018-10-18T17:13:42 | 2018-10-18T17:13:42 | 153,659,046 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 583 | cpp | #include "Object.h"
Object::Object() : x(0), y(0), w(0), h(0), startX(0), startY(0) {
sprite.setPosition(x, y);
}
Object::Object(float x, float y, float sx, float sy, float w, float h, sf::Texture& texture) : x(x), y(y), w(w), h(h), startX(sx), startY(sy) {
setTexture(texture);
sprite.setPosition(x, y);
}
Object::... | [
"ivasilich23@gmail.com"
] | ivasilich23@gmail.com |
f16c6c59f0ef239c683bb4ce01099c6ce1508b2c | 03a44baca9e6ed95705432d96ba059f16e62a662 | /OtherTrains/2019南昌网预/I.cpp | d1fd0439c7549f2692a89bb651e2ca2bd5b56185 | [] | no_license | ytz12345/2019_ICPC_Trainings | 5c6e113afb8e910dd91c8340ff43af00a701c7c7 | cf0ce781675a7dbc454fd999693239e235fbbe87 | refs/heads/master | 2020-05-14T08:29:19.671739 | 2020-04-03T03:21:30 | 2020-04-03T03:21:30 | 181,722,314 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,941 | cpp | #include <bits/stdc++.h>
using namespace std;
const int N = 2e5 + 5;
int n, m, k;
int a[N], b[N];
struct node {
int x, y, v, id;
}c[N * 5], c0[N * 5];
int id, ans[N];
inline void clr(int i) {
if (i > n || !b[i]) return;
b[i] = 0, c[++ k] = (node){i, a[i], -1, 0};
}
inline void check(int i) {
if (i > n || a... | [
"1217783313@qq.com"
] | 1217783313@qq.com |
54c32181fda033b69bfb9d00cbb6c132331694be | 7067fef998a194e5f0997a1def3b7326947c0b54 | /Common/AEAliasList.cp | 2d269ba086014c0f8ced177a2f513209947129eb | [
"Apache-2.0",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | quicksilver/OnMyCommand-qsplugin | 3c8a0017603e809c11a50c2c4c3c5cea0d368bd7 | 14bd6c31c1210013db2c73fee249bdbf9b08a7ea | refs/heads/main | 2022-06-02T09:53:48.389877 | 2011-07-26T09:40:46 | 2011-07-26T09:40:46 | 1,885,847 | 1 | 1 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 5,786 | cp | //**************************************************************************************
// Filename: AEAliasList.cp
// Part of Contextual Menu Workshop by Abracode Inc.
// http://free.abracode.com/cmworkshop/
// Copyright © 2002-2003 Abracode, Inc. All rights reserved.
//
// Description: Lightweight list of ali... | [
"jnj@57e2f9b5-c12c-0410-8e95-a1ee7272c91a"
] | jnj@57e2f9b5-c12c-0410-8e95-a1ee7272c91a |
7fd5c3dd274707cf6e7443105f8b131b07097583 | 55b7dcc2d67efdf35106f8a9dcc3191333507dac | /sge/include/core/sgeMath.h | 0c1ba29a5dea1c2251b2c7016899eb2fc8f7fd2f | [] | no_license | xiangwencheng1994/GLEngine | e1266e7e4fbc6f62be371a4ddc816a2a2167c537 | 0c60d52fe05a9ba7aeff09d1bab2d9290ace2211 | refs/heads/master | 2020-03-19T02:18:29.420897 | 2019-03-14T13:30:32 | 2019-03-14T13:30:32 | 135,616,823 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 141,780 | h | /**
*
* Simple graphic engine
* "sge" libraiy is a simple graphics engine, named sge.
*
* sgeMath.h
* date: 2017/12/01
* author: xiang
*
* License
*
* Copyright (c) 2017-2019, Xiang Wencheng <xiangwencheng@outlook.com>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or ... | [
"xiangwencheng@outlook.com"
] | xiangwencheng@outlook.com |
2e1d97ab6d2bd06d742e799e5961e52efc09cb5f | 2662b1a8c19fe9672f31d163bd3412a51cf0796c | /Assignments/helloGraphics.cpp | baa1efee2e1168b7345d6132d05801a45bec7ec8 | [] | no_license | KSHAMIN/cgl | e049208654f77216991439b6a19f76db1dd96533 | 460994d29e88b38934d1d88964f9c1b6668f0404 | refs/heads/master | 2020-12-30T05:59:46.598117 | 2020-02-28T09:29:11 | 2020-02-28T09:29:11 | 238,884,575 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,537 | cpp | // C program to demonstrate
// drawing a circle using
// OpenGL
#include<iostream>
#include<GL/glut.h>
#include<math.h>
#define pi 3.142857
// function to initialize
void myInit (void)
{
// making background color black as first
// 3 arguments all are 0.0
glClearColor(0.0, 0.0, 0.0, 1.0);
// making ... | [
"onkar.shr007@gmail.com"
] | onkar.shr007@gmail.com |
96e59239be46f2486bb30f743c69515e2c7c70c9 | 88a60552472e8ded90108edbc54556ac4b56e0a5 | /TcpProxySession.cpp | a6686a5edfd48a8ae1a7a4b13d1862388a6173b4 | [] | no_license | aaronriekenberg/asioproxy | 1f4354e68134a0ae63c87e274fa087af3d6626bb | 840714fa44e3afb567e18c6c71a64dd96b76c96c | refs/heads/master | 2021-01-18T19:19:27.024393 | 2013-09-01T11:27:01 | 2013-09-01T11:27:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,086 | cpp | #include "BoostSystemUtil.h"
#include "Log.h"
#include "TcpProxySession.h"
#include "ProxyOptions.h"
namespace asioproxy {
TcpProxySession::SharedPtr TcpProxySession::create(
boost::asio::io_service& ioService) {
return SharedPtr(new TcpProxySession(ioService));
}
TcpProxySession::~TcpProxySession() {
if (Log::i... | [
"aaron.riekenberg@gmail.com"
] | aaron.riekenberg@gmail.com |
94d70b1edcb31935530a03bd584b03f359eca7f6 | ab558d94f12fd5aac98beb5d917ebfeb12714c1f | /BigBang/include/layers/sigmoid_layer.h | c7f18fafb6dc5ac8e757b71eb48c0f339a3a58af | [
"Apache-2.0"
] | permissive | 1icas/BigBang | d3fed782f26e5a840f561cd9f91e339f48a2d8be | c7492e201fe63cb9acc4690b38175abe30720fbd | refs/heads/master | 2021-09-06T10:25:28.032614 | 2018-02-05T14:29:30 | 2018-02-05T14:29:30 | 107,073,492 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 965 | h | #ifndef SIGMOID_LAYER_H
#define SIGMOID_LAYER_H
#include "activation_func_layer.h"
#include "layer_type_macro.h"
#include "../tensor.h"
namespace BigBang {
template<typename dtype>
class SigmoidLayer : public ActivationFuncLayer<dtype> {
public:
SigmoidLayer(const LayerParameter& params):ActivationFuncLayer(params){... | [
"30893898@qq.com"
] | 30893898@qq.com |
5b50b6919d95fd52d34821005006f0623bfef1a7 | a7a369fe4a73b2ee8a043b1ff15ed56ee1b1d292 | /src/server/scripts/Northrend/Nexus/EyeOfEternity/instance_eye_of_eternity.cpp | 4ac5d1de4a014911d74052fb5f4b8a41be0f7607 | [] | no_license | cooler-SAI/ServerMythCore | de720f8143f14fb0e36c2b7291def52f660d9e1a | bd99985adca0698b7419094726bdbce13c18740c | refs/heads/master | 2020-04-04T21:27:04.974080 | 2015-06-22T14:06:42 | 2015-06-22T14:06:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,187 | cpp | /*
* Copyright (C) 2008 - 2011 Trinity <http://www.trinitycore.org/>
*
* Copyright (C) 2010 - 2013 Myth Project <http://mythprojectnetwork.blogspot.com/>
*
* Myth Project's source is based on the Trinity Project source, you can find the
* link to that easily in Trinity Copyrights. Myth Project is a private commun... | [
"humbertohuanuco@gmail.com"
] | humbertohuanuco@gmail.com |
700d117c9f7e07e5d11aaa33b419ee6cddd99f62 | d1bb6fd4b439da85af74321e3391413640fb92f0 | /Homework1Q1S2/Homework1Q1S2/Rational.cpp | de3a6b4f857e753fea0a93455e268271a3d7f266 | [] | no_license | YosefSchoen/ObjectOrientedProgramming | dc6138501285509cb25cff111f2b18e79753764a | f0a36c7bf3fe461ccdabf010905a40c30c41eac4 | refs/heads/master | 2020-07-30T21:35:49.839185 | 2019-09-23T13:45:03 | 2019-09-23T13:45:03 | 210,356,549 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 910 | cpp | #include "Rational.h";
#include <iostream>
using namespace std;
Rational::Rational(int top, int bottom) {
numerator = top;
denominator = bottom;
}
void Rational::setNumerator(int top) {
numerator = top;
}
void Rational::setDenominator(int bottom) {
denominator = bottom;
}
int Rational::getNumerator() {
return... | [
"josephaschoen@gmail.com"
] | josephaschoen@gmail.com |
41b7677312fd583b5c4034129540a7b406b24f9e | 6fe993c6e41af7679ab2bbaafd1b9bec5f0191e5 | /src/main.cpp | d4a1816a222e5339d953f1820a544c4a80669e56 | [] | no_license | pmaroti/loraTestTransmitter | c91c6c3faad540c0ff15a5fe0b2467a7518f53e4 | e1f70f406cc046184f16005186b43e736f2a279b | refs/heads/master | 2020-03-18T00:04:06.300115 | 2018-05-19T15:52:22 | 2018-05-19T15:52:22 | 134,076,069 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,304 | cpp | ///
/// Arduino SX1278_Lora
/// GND----------GND (ground in)
/// 3V3----------3.3V (3.3V in)
/// interrupt 0 pin D2-----------DIO0 (interrupt request out)
/// SS pin D10----------NSS (CS chip select in)
/// SCK pin D13----------SCK (SPI clock... | [
"pmaroti@gmail.com"
] | pmaroti@gmail.com |
06f218de53f4128a70879f3ee00307f0c6ee9126 | 735d7d9177ba60d7d94577b30ec37857d2bcd4fc | /pointers/demo3.cpp | a59714026b884fb91d638f8297243ad19c3f6c9c | [
"MIT"
] | permissive | KleeTaurus/learn-cpp | 5043ddd38eaa778eabe6763c7214db62e3e2f2f2 | ec872ac7ea9ee323e7afbf8f717c6120771f81d3 | refs/heads/master | 2020-12-02T19:19:12.585479 | 2017-08-12T02:56:41 | 2017-08-12T02:56:41 | 96,324,050 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 138 | cpp | #include <iostream>
using namespace std;
int main() {
int *ptr = NULL;
cout << "The value of ptr is: " << ptr;
return 0;
}
| [
"lining@luojilab.com"
] | lining@luojilab.com |
6ee77165137b972c9e3b4ca71c1c1468f79af624 | 1b6c60b5a14f5eb7ea06676159e1a83c18cf6bb5 | /kattis/Baby_bites_kattis.cpp | bb4e63cd0050e764070d38bbca67c6b65c91d205 | [
"MIT"
] | permissive | NafiAsib/competitive-programming | 75595c2b0984baf72a998da8b3d115bf2681e07c | 3255b2fe3329543baf9e720e1ccaf08466d77303 | refs/heads/master | 2022-11-20T06:48:01.951206 | 2020-07-22T10:20:09 | 2020-07-22T10:20:09 | 240,660,207 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 421 | cpp | #include <bits/stdc++.h>
using namespace std;
int main()
{
int i, index = 0, n, current = 1;
char str[10];
bool sense = 1;
cin >> n;
for(i = 0; i < n; i++, current++) {
cin>>str;
if(str[0] == 'm') continue;
index = atoi(str);
if(index != current) sense = 0;
}
... | [
"nafi.asib@gmail.com"
] | nafi.asib@gmail.com |
206266d760d85b3d69f71d7a58e7a6ffa70a554a | 2849e23dd5f004e9656c01507461b34ce47098f5 | /src/MEDebug.cpp | 7ac8f56761394c845c4585ce4b8c6784e7873088 | [] | no_license | FrozenArcher/MakeEngine | a671556bc0fbf95b5ac911ab34994c6c8c183467 | 1d6a5e51ac3a81d399142af90f07eb0f6455fd84 | refs/heads/master | 2023-05-12T14:33:27.290970 | 2021-06-06T13:55:14 | 2021-06-06T13:55:14 | 374,047,309 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 504 | cpp | //
// Created by fracher on 2021/6/5.
//
#include "METime.h"
#include "MEBaseTypes.h"
#include <iostream>
using std::cout, std::endl;
namespace MakeEngine {
void Log(const MEString& message) {
cout << "[Log] " << GetTimeNowStr() << message << endl << endl;
}
void LogTest(const MEString& name, bool ... | [
"yhy242989105@hotmail.com"
] | yhy242989105@hotmail.com |
cd0ec349d7b6d9beaee9cce9341498ba2583ab98 | 3c47ad20c580bdb5b41d46d2baebc9769831859a | /MyGameServer/tinyxml.h | a5c9c8829a1ee6539096481ab4d9dd5a56aaa6c6 | [] | no_license | adofsauron/MyGameServer | f99eea6cec3b3aed3fdbad62c58d61ebfbe0ad96 | 0c3eed2f7135e884fcf0f1ecc1ab1c77bb4d9a09 | refs/heads/master | 2020-03-28T10:40:31.204918 | 2018-09-10T08:24:17 | 2018-09-10T08:24:17 | 148,133,018 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 64,834 | h | /*
www.sourceforge.net/projects/tinyxml
Original code by Lee Thomason (www.grinninglizard.com)
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any
damages arising from the use of this software.
Permission is granted to anyone to use this soft... | [
"root@localhost.localdomain"
] | root@localhost.localdomain |
1b5479c9bca6e9ef628ba3441d63cd107bb82757 | 27974ef06083b306028ade82a6c174377ab649fd | /period/freshman/contest/Week 3/I.cpp | 8308a258ebbb6bcbd8f58d18455cdb4cd3ad740f | [] | no_license | lightyears1998/a-gzhu-coder | 6ba7fe23f663ee538c162927cfecb57e20bc0dbc | b882a2e8395155db0a57d59e7c5899386c5eb717 | refs/heads/master | 2021-06-05T05:33:14.988053 | 2020-05-23T12:52:57 | 2020-05-23T12:52:57 | 100,114,337 | 14 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 299 | cpp | #include <bits/stdc++.h>
using namespace std;
int main()
{
string s;
while (getline(cin, s))
{
if (s == "#") break;
int sum = 0;
for (unsigned i=0; i<s.size(); ++i) {
if (isalpha(s[i])) sum += (i+1)*(s[i]-'A'+1);
else continue;
}
cout << sum << endl;
}
}
| [
"lightyears1998@hotmail.com"
] | lightyears1998@hotmail.com |
e86075a33bbc78bb3f75b685101273ff2f283314 | 2576dfefe11dc4eb2588bf7872ebecbc64823833 | /include/SPcSteppingMessenger.hh | dc8ab87cabac977294075a8442c495110fcd96c9 | [] | no_license | jilic/spacal | 8278df8b41f3b7efe65c398622ee49bcc207bf92 | 413750533857563c9d627666684ed622aac76a1d | refs/heads/master | 2021-01-01T05:18:20.425457 | 2015-02-18T22:41:19 | 2015-02-18T22:41:19 | 32,726,429 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 640 | hh | /*
@author Jelena Ilic
@mail jelenailic.sk@gmail.com
@date Summer 2014
*/
#ifndef SPcSteppingMessenger_h
#define SPcSteppingMessenger_h 1
#include "G4UImessenger.hh"
#include "globals.hh"
class SPcSteppingAction;
class G4UIcmdWithAnInteger;
class G4UIcmdWithABool;
class G4UIcmdWithADoubleAndUnit;
class SPcSt... | [
"jelenailic.sk@7ba4f6a3-0c5a-dc19-1ee9-c1316467136b"
] | jelenailic.sk@7ba4f6a3-0c5a-dc19-1ee9-c1316467136b |
f25229c9f157262511e392464824f7ace0ffd36e | 2ccb99e0b35b58622c5a0be2a698ebda3ab29dec | /gfx/skia/skia/src/effects/SkLightingImageFilter.cpp | f701b4c8945952f619404479d11d226574b51bc9 | [
"BSD-3-Clause"
] | permissive | roytam1/palemoon27 | f436d4a3688fd14ea5423cbcaf16c4539b88781f | 685d46ffdaee14705ea40e7ac57c4c11e8f31cd0 | refs/heads/master | 2023-08-20T10:11:13.367377 | 2023-08-17T07:28:43 | 2023-08-17T07:28:43 | 142,234,965 | 61 | 16 | NOASSERTION | 2022-03-30T07:54:03 | 2018-07-25T02:10:02 | null | UTF-8 | C++ | false | false | 87,541 | cpp | /*
* Copyright 2012 The Android Open Source Project
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "SkLightingImageFilter.h"
#include "SkBitmap.h"
#include "SkColorPriv.h"
#include "SkDevice.h"
#include "SkPoint3.h"
#include "SkReadBuffer.h"
#in... | [
"roytam@gmail.com"
] | roytam@gmail.com |
43c66bd5d3a0d11b3eeee4e5e08fcfc4bb1122e4 | 3c378513afb8e6c2680715c91c31845b67e71885 | /include/SIMD_KScheme_2Bit_CU.hpp | 9c1861d14dd2662d6beb90ffe6ffe46e1a233875 | [] | no_license | yingfeng/integer_encoding_library_sparklezzz | 582f21140a0c6cccae692f8e92464b8a1f093674 | 8ba46561cde38920674f4789f4f413ceed45ef6b | refs/heads/master | 2021-01-17T12:26:12.838738 | 2015-01-14T13:37:40 | 2015-01-14T13:37:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,447 | hpp | /*
* SIMD_KScheme_2Bit_CU.hpp
*
* SIMD_KScheme_2Bit_Complete Unary
*
* Created on: 2013-3-2
* Author: zxd
*/
#ifndef SIMD_KSCHEME_2BIT_CU_HPP_
#define SIMD_KSCHEME_2BIT_CU_HPP_
#ifdef USE_SSE_INSTRUCTION
#include <stdint.h>
#include <cmath>
#include <assert.h>
#include <string.h>
#include "Compressor.h... | [
"xdzhang@yahoo-inc.com"
] | xdzhang@yahoo-inc.com |
1d412be22cb408024611a815c947ed1dd3e42ac5 | dd95d7ea86fcd4f27664653205df0d2005665f2b | /shared/configeditor/include/Trigger.h | b82db6fa3165459ee317fe374fef801d744cfef4 | [] | no_license | sawmic/GIMX | ab7437b70e2094399624e93c493dd550144828ce | 96cb9d155123a4c1657c4b2f177725395bbafd9e | refs/heads/master | 2021-01-12T21:53:13.514674 | 2014-02-01T14:01:48 | 2014-02-01T14:01:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,125 | h | /*
Copyright (c) 2011 Mathieu Laurendeau <mat.lau@laposte.net>
License: GPLv3
*/
#ifndef TRIGGER_H
#define TRIGGER_H
#include <Device.h>
#include <Event.h>
class Trigger
{
public:
Trigger();
Trigger(string dtype, string did, string dname, string eid, string switchback, unsigned ... | [
"mat.lau@laposte.net"
] | mat.lau@laposte.net |
e0942620c15caf086988b0a8d199e5c3eadaa27f | 7ebae5ec0378642a1d2c181184460e76c73debbd | /UVA Online Judge/694/694/694.cpp | 81d5786ad415701534d07d0812344b7a36947434 | [] | no_license | tonyli00000/Competition-Code | a4352b6b6835819a0f19f7f5cc67e46d2a200906 | 7f5767e3cb997fd15ae6f72145bcb8394f50975f | refs/heads/master | 2020-06-17T23:04:10.367762 | 2019-12-28T22:08:25 | 2019-12-28T22:08:25 | 196,091,038 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 640 | cpp | #include <iostream>
#include <string>
#include <sstream>
#include <iomanip>
#include <math.h>
#include <queue>
#include <stack>
#include <vector>
#include <map>
#include <set>
#include <functional>
#include <algorithm>
using namespace std;
int main()
{
long long a, l,temp,tc=0;
while (cin >> a >> l){
if (a < 0 &... | [
"tonyli2002@live.com"
] | tonyli2002@live.com |
34ec8217a7118d234a343ffebfbdbf93eb84e999 | 9e86596a4c9dbedaa8aa08923c14cd39da2455e2 | /src/operator/cudnn_activation-inl.h | 99bbfe93e871dfee942a2c5e0a4f5f3be400bc5e | [
"Apache-2.0"
] | permissive | XinliangZhu/mxnet | 0796c687618f84462ec4a57a2d1b44a1570ed68d | 016e049fee799bbc1bb0c1e3e3d3ff858603840b | refs/heads/master | 2021-01-22T13:12:25.265640 | 2015-10-19T00:34:16 | 2015-10-19T00:34:16 | 44,504,570 | 1 | 0 | null | 2015-10-19T01:33:19 | 2015-10-19T01:33:19 | null | UTF-8 | C++ | false | false | 5,431 | h | /*!
* Copyright (c) 2015 by Contributors
* \file cudnn_activation-inl.h
* \brief
* \author Bing Xu
*/
#ifndef MXNET_OPERATOR_CUDNN_ACTIVATION_INL_H_
#define MXNET_OPERATOR_CUDNN_ACTIVATION_INL_H_
#include <algorithm>
#include <vector>
#include "./activation-inl.h"
namespace mxnet {
namespace op {
class CuDNNActiv... | [
"antinucleon@gmail.com"
] | antinucleon@gmail.com |
1d631d863a8c88dd89e41fe7b10a94dfbfe1117f | 4b0444102ea9917d581cb837740a2942bf655759 | /MMVII/src/Bench/BenchGlob.cpp | 47779606786b169938dbda6aac6c7ab73f753a5a | [
"LicenseRef-scancode-cecill-b-en"
] | permissive | gaoshuai/micmac | d415e447bbf28abfefcefaae8a4afee13dac2446 | 8ab820797de7d2c80490e1291c3a3b8ee6a226a3 | refs/heads/master | 2020-06-11T01:11:12.127351 | 2019-06-25T15:55:51 | 2019-06-25T15:55:51 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 18,526 | cpp | #include "include/MMVII_all.h"
#include <cmath>
/** \file BenchGlob.cpp
\brief Main bench
For now bench are relatively simples and executed in the same process,
it's than probable that when MMVII grow, more complex bench will be done
by sub process specialized.
*/
namespace MMVII
{
#if (THE_MACRO_MMV... | [
"marc.pierrot-deseilligny@ensg.eu"
] | marc.pierrot-deseilligny@ensg.eu |
3a5e762d936f74010952e29c6e10da5236678d0f | 6ed1c7d1f2aa137ce2ab879a4a5ddecb8e1790f5 | /mltplinh/mltplinh.cpp | bd41514ed22337fb716b52da9d671491dcb50aab | [] | no_license | ruudkoot/Ammeraal | 49eeb4a9731ff75fec6740224e2b24ef5a24da8a | 535b0c4782bb181dc059ca427bb3cbc3174b9278 | refs/heads/master | 2023-05-11T15:46:18.480055 | 2020-09-07T18:44:09 | 2020-09-07T18:44:09 | 291,448,052 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 895 | cpp | // mltplinh.cpp : This file contains the 'main' function. Program execution begins and ends there.
//
#include <iostream>
using namespace std;
class p1 {
public:
p1(int n = 1) : n1(n) {
cout << "p1(" << n << ")" << endl;
}
~p1() {
cout << "~p1()" << endl;
}
private:
int n1;
};
cla... | [
"inbox@ruudkoot.nl"
] | inbox@ruudkoot.nl |
9baa977d091165ec1ec51a58a2f93a2a314c935e | cb39c039f974ce7362769d61fedc2f28f3b206e3 | /source/NeutronSystem/Window.h | ecc73318aa2f63c6b38ee5c8bdd0ab701ef89f09 | [] | no_license | yuen33/Neutron | 87c95b59d451fadcee6b6f1c745a5dd605512c01 | 581d1a3c64745129a70f412a8d5d4fa1e7689cd7 | refs/heads/master | 2020-04-11T07:21:07.246738 | 2015-08-20T00:23:33 | 2015-08-20T00:23:33 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,879 | h | #pragma once
#include "ProcessingUnit.h"
#include "NeutronFoundation/String.h"
#include "Pin.h"
#if defined NEUTRON_WINDOWS_DESKTOP
#include <dxgi.h>
#endif
using Neutron::Container::String;
namespace Neutron
{
namespace Engine
{
#if defined NEUTRON_WINDOWS_DESKTOP
class NEUTRON_CORE Window : public ProcessingU... | [
"drvkize@gmail.com"
] | drvkize@gmail.com |
b7e5151e5071c02a986c8585d5e15258faecaa30 | 337e275fb67b008ca92bf8a3162e88653bc8198d | /Tools/qbfpvf_proto/verify.cpp | fbc78f7c35c084336411723221ae8bceab5555eb | [] | no_license | arey0pushpa/qbf-cert | 2956e10192b9622b81c58492c97efd7ef6bd893f | a0f9c77edb9cd09a16261447146e0a1f494bae55 | refs/heads/master | 2021-09-16T02:07:02.322911 | 2021-08-01T21:55:32 | 2021-08-01T21:55:32 | 199,707,111 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 20,258 | cpp | #include "common.h"
#include "lexer.h"
bool cfg_gc = true; // Do garbage collection
class Variable {
private:
lit_int_t v;
public:
inline explicit Variable(lit_int_t _v) : v(_v) { assert (v>=0); };
inline size_t idx() const {return static_cast<size_t>(v);};
inline string str() const {return to_string(v);... | [
"plammich@gmail.com"
] | plammich@gmail.com |
5ce8041808ab76ce0c7e43affd14b93962080908 | fa55d8ed32564195f2687d1e18b99f80c5683073 | /lbc_lintcodeII/212-space-replacement.cc | 1baf76fe728c8e0ed2dc4a403d1258550ea8e484 | [] | no_license | TenFifteen/SummerCamp | 1841bf1bd212938cee818540658185cd3e429f0c | 383b9321eee9e0721772f93a897c890f737f2eff | refs/heads/master | 2020-04-05T23:48:01.393256 | 2018-03-11T12:37:38 | 2018-03-11T12:37:38 | 38,595,086 | 9 | 4 | null | 2016-07-18T14:21:15 | 2015-07-06T03:15:55 | C++ | UTF-8 | C++ | false | false | 902 | cc | /*
题目大意:
给定一个字符串,将其中的空格替换成20%,原地替换。
解题思路:
见代码。
遇到的问题:
没有。
*/
class Solution {
public:
/**
* @param string: An array of Char
* @param length: The true length of the string
* @return: The true length of new string
*/
int replaceBlank(char string[], int length) {
// Write your code he... | [
"libenchao@gmail.com"
] | libenchao@gmail.com |
83af50aa01d6d4f6082ef28c710a6cc2212d5b16 | 28f43281141abdaebe57909cfe59897dc256ede4 | /cpp_module_02/ex00/main.cpp | 9fbeaa838383f32e7246ca4e1017efcb86c1c193 | [] | no_license | benjaminmerchin/piscine_CPP | d4476f05da9891c2e5c0eab5f1c46a44c3391a36 | 4a507669b3877662badb230d807d7f2ad19ce05d | refs/heads/main | 2023-07-16T14:12:35.460993 | 2021-08-30T10:50:32 | 2021-08-30T10:50:32 | 383,801,709 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 225 | cpp | #include "Fixed.hpp"
int main(void) {
Fixed a;
Fixed b(a);
Fixed c;
c = b;
std::cout << a.getRawBits() << std::endl;
std::cout << b.getRawBits() << std::endl;
std::cout << c.getRawBits() << std::endl;
return 0;
} | [
"benjaminmerchin@gmail.com"
] | benjaminmerchin@gmail.com |
0fcbc76674961ba16fd3e6349be4230e9f9fb33c | d4da977bb5f060d6b4edebfdf32b98ee91561b16 | /Note/集训队作业/2014/作业1/试题泛做/ytl13508111107/ytl/题目与程序/D6545. Bee Breeding/ran/bc.cpp | 863bb228172e2060129223673c106dccc7874f3d | [] | no_license | lychees/ACM-Training | 37f9087f636d9e4eead6c82c7570e743d82cf68e | 29fb126ad987c21fa204c56f41632e65151c6c23 | refs/heads/master | 2023-08-05T11:21:22.362564 | 2023-07-21T17:49:53 | 2023-07-21T17:49:53 | 42,499,880 | 100 | 22 | null | null | null | null | UTF-8 | C++ | false | false | 1,069 | cpp | e2 5406 0 R
>>
endobj
5236 0 obj
[ 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 ... | [
"lychees67@gmail.com"
] | lychees67@gmail.com |
8d25b9e69968738c10b05071cde8178b1ddc2ac6 | 1bd9e3cda029e15d43a2e537663495ff27e317e2 | /buoyantPimpleFoam_timevaryingBC/timevaryingCavityFoam/58/uniform/cumulativeContErr | a7fd54fe5635b3c993fbec8012e1fd58acb2d7b2 | [] | no_license | tsam1307/OpenFoam_heatTrf | 810b81164d3b67001bfce5ab9311d9b3d45b5c9d | 799753d24862607a3383aa582a6d9e23840c3b15 | refs/heads/main | 2023-08-10T23:27:40.420639 | 2021-09-18T12:46:01 | 2021-09-18T12:46:01 | 382,377,763 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 956 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v2006 |
... | [
"tsinghsamant@gmail.com"
] | tsinghsamant@gmail.com | |
5c63bcca69e8a9c1f8b64bbae196c5d7ea4d7e77 | cd746ef05caa7bfc71aff7076179e8bb46f0f9f4 | /Chapter10cpp/wci/backend/interpreter/executors/IfExecutor.h | aee8fb30311d454b64df28d3173ffec087f4095c | [] | no_license | NikkiR97/complex | 93c722ef020d2046faf628228dd09670de67d9b0 | 6789376c082dc7c6a6391de1a64c045300ab569a | refs/heads/master | 2020-04-27T15:35:14.695973 | 2019-03-08T04:02:30 | 2019-03-08T04:02:30 | 174,451,846 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 993 | h | /**
* <h1>IfExecutor</h1>
*
* <p>Execute an IF statement.</p>
*
* <p>Copyright (c) 2017 by Ronald Mak</p>
* <p>For instructional purposes only. No warranties.</p>
*/
#ifndef IFEXECUTOR_H_
#define IFEXECUTOR_H_
#include "StatementExecutor.h"
#include "../../../Object.h"
#include "../../../intermedi... | [
"jhjuchau@gmail.com"
] | jhjuchau@gmail.com |
9044dc69514ec1956be70e06a24bf66991c2bd0e | 2885e54c807bd70b8eb0cd2bc3ffd5ce51bd66cc | /2007-PIR-Drone Trirotor acrobate/Projet/Informatique/CNES/marmottes-9.8/src/ModeleCine.cpp | 15611290d96643a49f9bd615b0dfcb7081cccd65 | [] | no_license | crubier/my-personal-projects | 622b09ce6d9c846b905fe135892a178c1a0c554b | 8cd26b212b0c61f3d5bbe2de82d49891f3f3602a | refs/heads/master | 2021-09-12T23:09:14.097634 | 2018-04-22T07:45:42 | 2018-04-22T07:45:42 | 130,488,289 | 1 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 6,949 | cpp | ///////////////////////////////////////////////////////////////////////////////
//$<AM-V1.0>
//
//$Type
// DEF
//
//$Projet
// Marmottes
//
//$Application
// Marmottes
//
//$Nom
//> ModeleCine.cpp
//
//$Resume
// fichier d'implantation de la classe ModeleCine
//
//$Description
// Mod... | [
"vincent.lecrubier@gmail.com"
] | vincent.lecrubier@gmail.com |
097a3e358def8251e2084cdf4d2755e737d5bbed | d2c3b5de367707f5049a478044e2e9bb1eafd7ea | /components/hub-wifi/wifi.cpp | ab3ac684c1227b0d6da552a031c2761a82b73ce3 | [] | no_license | kazuph/home-iot-hub | 56d871cc7f52d0ec7e48cc6458c85ba6f3e9523d | 108ff4fc4973d1b0ef95be4861557a8dfab5777c | refs/heads/main | 2023-08-28T19:34:57.932493 | 2021-10-21T06:15:15 | 2021-10-21T06:15:15 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,719 | cpp | #include "wifi/wifi.hpp"
#include <cstring>
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "freertos/event_groups.h"
#include "esp_system.h"
#include "esp_netif.h"
#include "esp_event.h"
#include "esp_log.h"
#include "nvs.h"
#include "nvs_flash.h"
#include "lwip/err.h"
#include "lwip/sys.h"
na... | [
"borchy97@gmail.com"
] | borchy97@gmail.com |
8f4ab6ac9f8073f243cae1c7ebbdac292fcd98c2 | e1cd579c8dcd952cc338ce3684397eddb0920760 | /archive/1/wloska_czekolada.cpp | 2a59db69f6866c10d1d8c6c261ea1049ce081fea | [
"LicenseRef-scancode-unknown-license-reference",
"MIT"
] | permissive | Aleshkev/algoritmika | 0b5de063870cb8a87654613241a204b534037079 | fc95b0c0f318d9eb4ef1fef4cc3c6e85d2417189 | refs/heads/master | 2021-06-05T10:46:59.313945 | 2020-02-02T12:39:47 | 2020-02-02T12:39:47 | 148,994,588 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 829 | cpp | #include <iostream>
#include <algorithm>
using namespace std;
typedef long long int I;
int main()
{
I n;
cin >> n;
I *t = new I[n];
for(I i = 0; i < n; ++i) {
cin >> t[i];
--t[i];
}
I max_a = *max_element(t, t + n);
I *u = new I[max_a];
fill(u, u + max_a, -1);
fo... | [
"j.aleszkiewicz@gmail.com"
] | j.aleszkiewicz@gmail.com |
428be9e5a38ec5cd79b1901360613480d9f6f32e | 0fa5fc9365c65eb5ac7c48c16e9feee199d1ff0a | /arduino/cocktailmaschine/cocktailmaschine.ino | 2190ead73f234d8d8ce7318693f6552031c9abc4 | [] | no_license | tobiwe/cocktailmachine | 51f6d9d484d2844da603169304be42a939a2a5d4 | 0881025acffd6275b4ad3eea1c8ebd5556e54f67 | refs/heads/main | 2023-07-13T23:29:47.614353 | 2021-08-26T12:22:11 | 2021-08-26T12:22:11 | 332,493,284 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,696 | ino | #include "Waage.hpp"
#include "pumpe.hpp"
#include "Luftpumpe.hpp"
#include "Led.hpp"
#include "Ventil.hpp"
#include "Drucksensor.hpp"
#include "config.hpp"
int peristalicLed[6] = { 5, 4, 3, 2, 1, 0};
int airLed[4] = { 13, 12, 15, 14};
int bottleLed[6] = {6, 7, 8, 9, 10, 11};
int glasLed = 16;
char newCommand[20];
ch... | [
"pebble@towan.de"
] | pebble@towan.de |
35b1f8bc6243426c5f5110180ff44e7d17ac7b2a | 56b847482dd3cd1b55bc19e1ff3ec1dfcbd6a0bd | /Adafruit_SGP30.cpp | 0068231945f927a5a76d156ed8f0624a72f4644c | [
"BSD-3-Clause",
"BSD-2-Clause"
] | permissive | winkj/Adafruit_SGP30 | 431645284ca12f175940013170e4510ef5239a71 | 729ddf4e3c43e22643b1ae9dabb97a8affc0a297 | refs/heads/master | 2021-05-10T14:30:42.551946 | 2018-01-17T18:26:17 | 2018-01-17T18:26:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,321 | cpp | /*!
* @file Adafruit_SGP30.cpp
*
* @mainpage Adafruit SGP30 gas sensor driver
*
* @section intro_sec Introduction
*
* This is the documentation for Adafruit's SGP30 driver for the
* Arduino platform. It is designed specifically to work with the
* Adafruit SGP30 breakout: http://www.adafruit.com/products/3709
... | [
"limor@ladyada.net"
] | limor@ladyada.net |
6abef3013c1b31aa18b5593f15a3738819df5168 | 17af777718e66d1735632c171e5286ff04c42665 | /BOJ1236.cpp | 5efecf26d8195006c4ff9ea3be089a08b2a50654 | [] | no_license | girinssh/BOJ | 4ddff350e309d85a153232062426f660e1144498 | 0964033e66081ecc81da6db421812ffb7f2eeacd | refs/heads/master | 2023-07-14T19:08:52.364347 | 2021-08-17T09:11:24 | 2021-08-17T09:11:24 | 284,575,573 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 914 | cpp | #include <iostream>
using namespace std;
int main(void) {
cin.tie(NULL);
cin.sync_with_stdio(false);
char arr[50][50] = { 0 };
int a, b;
int n = 0, m = 0;
cin >> a >> b;
for (int i = 0; i < a; i++) {
for (int j = 0; j < b; j++) {
cin >> arr[i][j];
}
}
for (int i = 0; i < a; i++) {
for (int j = 0;... | [
"tngus5851@naver.com"
] | tngus5851@naver.com |
9615bbd1404b28e543a3d82d69d5efdda71028c9 | 06e3a51780fe6906a8713b7e274a35c0d89d2506 | /qtmdsrv/ui/ringbufferform.cpp | d1747adf391cf8b30fffc927844d205b265e9c8a | [] | no_license | ssh352/qtctp-1 | d91fc8d432cd93019b23e7e29f40b41b1493aceb | 248d09e629b09cbe1adbf7cd818679721bf156d0 | refs/heads/master | 2020-04-01T16:55:31.012740 | 2015-10-27T15:56:02 | 2015-10-27T15:56:02 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,065 | cpp | #include "ringbufferform.h"
#include "ui_ringbufferform.h"
#include "mdsm.h"
#include "ApiStruct.h"
#include "ringbuffer.h"
#include "servicemgr.h"
#include "ctpmgr.h"
#include "datapump.h"
#include "historyform.h"
RingBufferForm::RingBufferForm(QWidget* parent)
: QWidget(parent)
, ui(new Ui::RingBufferForm)
{... | [
"sunwangme@gmail.com"
] | sunwangme@gmail.com |
4490353c42541fc5da6555ac1f7b6a1d374656e2 | 7f7ebd4118d60a08e4988f95a846d6f1c5fd8eda | /wxWidgets-2.9.1/include/wx/palmos/stattext.h | 00ff0e28866adbc5da2d973d774bf75a2c65208f | [] | no_license | esrrhs/fuck-music-player | 58656fc49d5d3ea6c34459630c42072bceac9570 | 97f5c541a8295644837ad864f4f47419fce91e5d | refs/heads/master | 2021-05-16T02:34:59.827709 | 2021-05-10T09:48:22 | 2021-05-10T09:48:22 | 39,882,495 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,730 | h | /////////////////////////////////////////////////////////////////////////////
// Name: wx/palmos/stattext.h
// Purpose: wxStaticText class
// Author: William Osborne - minimal working wxPalmOS port
// Modified by: Wlodzimierz ABX Skiba - native wxStaticText implementation
// Created: 10/13/04
... | [
"esrrhs@esrrhs-PC"
] | esrrhs@esrrhs-PC |
80039d48587c48ed44914c9a44b423385c59d8c2 | 1a29e2f587d88dac68dcdddac38ce9d7d450d058 | /cs4499/midtern/bunny_generator.hpp | d1837d6f47dbd84f11e084e884a9139494e76e4a | [] | no_license | TheNumberOne/school_code | a41395e64dcc9089fb251fb2da0fa721161b5897 | 42d4aa7dc4bb1f23331382dc5875f261dc9e31c7 | refs/heads/master | 2020-08-08T11:52:50.008711 | 2019-10-09T05:07:47 | 2019-10-09T05:07:47 | 213,825,898 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 690 | hpp | #pragma once
#include "bunny.hpp"
#include <utility>
#include <memory>
/**
* Randomly generates rabbits using the passed random number generator.
*/
class random_bunny_generator
{
public:
explicit random_bunny_generator(std::shared_ptr<std::default_random_engine> rng) : _rng(std::move(rng)) { }
/**
... | [
"robepea2@isu.edu"
] | robepea2@isu.edu |
c8fecf042797381cee307bb72ecefb44336b5726 | 05bd8b96db62137f8487e602a7b8a88f2a2c0fe4 | /算法初步/二分/1085 Perfect Sequence (25分).cpp | 5770e674459516978f3ddfd4c50050443cbf02e0 | [] | no_license | PeiLeizzz/Algorithm-PAT-A | a8b71abeb26c4127f6ee6de166b3bfa5d0b3fb61 | d1d58adb0b90e7a0fdd480e8e6d11a5de4272282 | refs/heads/master | 2022-12-23T14:47:50.912282 | 2020-08-28T12:31:57 | 2020-08-28T12:31:57 | 291,039,897 | 1 | 0 | null | null | null | null | GB18030 | C++ | false | false | 940 | cpp | #include <bits/stdc++.h>
using namespace std;
typedef long long ll;
vector<ll> numble;
int main() {
int n;
ll p;
scanf("%d %lld", &n, &p);
for (int i = 0; i < n; i++) {
ll a;
scanf("%lld", &a);
numble.push_back(a);
}
sort(numble.begin(), numble.end());
int len = 1;
for (int i = 0; i < n && i + len < n; i... | [
"714838284@qq.com"
] | 714838284@qq.com |
650419388cf51f37f453b09d92170a02d5325a07 | 9fad4848e43f4487730185e4f50e05a044f865ab | /src/ash/wm/window_state.h | 2c0bb5ca61be87b01d3ceb2e16d44b920375a22b | [
"BSD-3-Clause"
] | permissive | dummas2008/chromium | d1b30da64f0630823cb97f58ec82825998dbb93e | 82d2e84ce3ed8a00dc26c948219192c3229dfdaa | refs/heads/master | 2020-12-31T07:18:45.026190 | 2016-04-14T03:17:45 | 2016-04-14T03:17:45 | 56,194,439 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,982 | h | // 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.
#ifndef ASH_WM_WINDOW_STATE_H_
#define ASH_WM_WINDOW_STATE_H_
#include <memory>
#include "ash/ash_export.h"
#include "ash/wm/drag_details.h"
#include "a... | [
"dummas@163.com"
] | dummas@163.com |
434dd7416e82d5993450e88accdf19927bd427bf | 8845158756cddf7368896a659fe13423d244c9a1 | /Functions_Of_C/Exercises/multiple.cpp | 50baec3de450bead4f217c9611c1051ca859c9b1 | [] | no_license | Verg84/COOP | e0ef2cd478d0b669a95acdbf4b13f2e6dac20c3d | 8cd1ec842ebc6729fc349e82f3f8ee3b87bac07a | refs/heads/main | 2023-07-18T19:21:18.595563 | 2021-09-24T16:26:03 | 2021-09-24T16:26:03 | 405,047,236 | 0 | 0 | null | 2021-09-10T15:36:42 | 2021-09-10T10:47:56 | C++ | UTF-8 | C++ | false | false | 533 | cpp | // Multiple - Check if a pair of numbers
// are multiple together
#include<stdio.h>
int multiple(int a,int b);
int main(){
int a,b;
printf("* Enter first value :");
scanf("%d",&a);
printf("* Enter second value :");
scanf("%d",&b);
if(multiple(a,b))
printf("... | [
"50481854+Verg84@users.noreply.github.com"
] | 50481854+Verg84@users.noreply.github.com |
640f9115446c596ca507fe9aba2d705540971961 | efb3753829a06413a4411a4753c547eec11e4c40 | /src/libzerocoin/Params.h | 1a0ea842c8d7c8e706365160d613f03588b48ac0 | [
"MIT"
] | permissive | BitHostCoin/BitHost | 69c6471b150104fc1147ca7541274bba546647c8 | cd83067acbe16cffa16ab0f752e6da05136c783a | refs/heads/master | 2020-04-01T19:55:33.954484 | 2019-02-22T15:43:29 | 2019-02-22T15:43:29 | 153,578,694 | 4 | 6 | MIT | 2019-05-21T21:23:34 | 2018-10-18T07:06:13 | C++ | UTF-8 | C++ | false | false | 6,097 | h | /**
* @file Params.h
*
* @brief Parameter classes for Zerocoin.
*
* @author Ian Miers, Christina Garman and Matthew Green
* @date June 2013
*
* @copyright Copyright 2013 Ian Miers, Christina Garman and Matthew Green
* @license This project is released under the MIT license.
**/
// Copyright (c)... | [
"44026210+BitHostCoin@users.noreply.github.com"
] | 44026210+BitHostCoin@users.noreply.github.com |
e34850a83c2a437b0050b2ed8021b5a8d7f3474f | d23d36fd5b4e6851fef68940b15ed625677a576b | /作业6-3/作业6-3/作业6-3Doc.cpp | 969c9abd145439c48a9d8fe1f7a6e72f9907f682 | [] | no_license | DJQ0926/test | 0d5fd731edef513e08b1169578e70fe9139d7d05 | e9a755ac66750e14bbb870d211531d91a92fc2ee | refs/heads/master | 2021-02-15T23:03:21.681207 | 2020-07-05T09:51:20 | 2020-07-05T09:51:20 | 244,942,227 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 2,576 | cpp |
// 作业6-3Doc.cpp : C作业63Doc 类的实现
//
#include "stdafx.h"
// SHARED_HANDLERS 可以在实现预览、缩略图和搜索筛选器句柄的
// ATL 项目中进行定义,并允许与该项目共享文档代码。
#ifndef SHARED_HANDLERS
#include "作业6-3.h"
#endif
#include "作业6-3Doc.h"
#include <propkey.h>
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// C作业63Doc
IMPLEMENT_DYNCREATE(C作业63Doc, CDocument)... | [
"964158009@qq.com"
] | 964158009@qq.com |
d78eea6fdad2b5d91a548e8b035a361769309fb2 | aa78ede78f08eecde9a78fe1066b81e47ae19390 | /Server/Network/MessageProcessing/getstatisticsrequestprocessorobject.h | b62e2d3321221c0310d0f136d0e0ed39c9aa351c | [] | no_license | MafiaMakers/Backend-server | 51c342d6e202194b47e183310e348643cbff5d31 | 1fdc213e841d78aca3b5f70bca45684664e32435 | refs/heads/master | 2023-01-12T04:57:25.511124 | 2020-11-02T12:53:50 | 2020-11-02T12:53:50 | 254,849,281 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 725 | h | #ifndef GETSTATISTICSREQUESTPROCESSOROBJECT_H
#define GETSTATISTICSREQUESTPROCESSOROBJECT_H
#include "processorobject.h"
namespace Mafia {
namespace Network {
namespace MessageProcessing {
class GetStatisticsRequestProcessorObject : public ProcessorObject
{
publ... | [
"andrusov.n@gmail.com"
] | andrusov.n@gmail.com |
05050db2ee33635a1609b87ea8f76da4e6d43966 | 67fc9e51437e351579fe9d2d349040c25936472a | /wrappers/8.1.1/vtkBiQuadraticQuadWrap.h | f55ab11479c289095c16f2d45ff02e9f75c00238 | [] | permissive | axkibe/node-vtk | 51b3207c7a7d3b59a4dd46a51e754984c3302dec | 900ad7b5500f672519da5aa24c99aa5a96466ef3 | refs/heads/master | 2023-03-05T07:45:45.577220 | 2020-03-30T09:31:07 | 2020-03-30T09:31:07 | 48,490,707 | 6 | 0 | BSD-3-Clause | 2022-12-07T20:41:45 | 2015-12-23T12:58:43 | C++ | UTF-8 | C++ | false | false | 2,057 | h | /* this file has been autogenerated by vtkNodeJsWrap */
/* editing this might proof futile */
#ifndef NATIVE_EXTENSION_VTK_VTKBIQUADRATICQUADWRAP_H
#define NATIVE_EXTENSION_VTK_VTKBIQUADRATICQUADWRAP_H
#include <nan.h>
#include <vtkSmartPointer.h>
#include <vtkBiQuadraticQuad.h>
#include "vtkNonLinearCellWrap.h"
#i... | [
"axkibe@gmail.com"
] | axkibe@gmail.com |
ee299c6fc322467f474d0050b3b484d7dcabe082 | aefb8cde419ab4c59383ffe10ca655e9333f149b | /MechanicsTest/Source/MechanicsTest/ProjectileClass.h | 2715f1ed5f9f5f958570ba925fcf20f6d22addb6 | [] | no_license | DavidBrando/ARGP_Tests | a0837af63bc3605bda5edd6f9be2f1f4169d5ae3 | d157df226eb5a5c11226e36239812c6ddd42da58 | refs/heads/main | 2023-02-21T13:45:41.590497 | 2021-01-24T14:07:06 | 2021-01-24T14:07:06 | 331,369,725 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,107 | h | // Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "GameFramework/Actor.h"
#include "ProjectileClass.generated.h"
class USphereComponent;
class UParticleSystemComponent;
class USceneComponent;
class UProjectileMovementComponent;
class UPartic... | [
"davidtbs@hotmail.es"
] | davidtbs@hotmail.es |
f3ce73026cd2e9fd5514aae711e7cc7def61c8a7 | 2ab8b69d144b242552f65738140ffe93f68ccf2b | /chrome/browser/ui/views/profiles/profile_menu_view_base.cc | 862f0c5e976b66fcd1fb3e06a08cb52d1f8615da | [
"BSD-3-Clause"
] | permissive | user-lab/chromium | 45c41be02fad35e396e3acc12cc2003ae29ac207 | f90402556cc8107ed19e5663ed1e7a4e80ff3e94 | refs/heads/master | 2023-03-03T23:23:08.506668 | 2019-10-02T18:21:44 | 2019-10-02T18:21:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 33,732 | cc | // Copyright 2019 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/ui/views/profiles/profile_menu_view_base.h"
#include <algorithm>
#include <memory>
#include <utility>
#include "base/feature_li... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
1822abed2252e2145fff8d699f6bf926725acda8 | 3f3095dbf94522e37fe897381d9c76ceb67c8e4f | /Current/Tutorial_Hint_Escort_BoscoOilShale.hpp | c457a0ce7c16462ae8dca5d8bb425633baca970b | [] | no_license | DRG-Modding/Header-Dumps | 763c7195b9fb24a108d7d933193838d736f9f494 | 84932dc1491811e9872b1de4f92759616f9fa565 | refs/heads/main | 2023-06-25T11:11:10.298500 | 2023-06-20T13:52:18 | 2023-06-20T13:52:18 | 399,652,576 | 8 | 7 | null | null | null | null | UTF-8 | C++ | false | false | 467 | hpp | #ifndef UE4SS_SDK_Tutorial_Hint_Escort_BoscoOilShale_HPP
#define UE4SS_SDK_Tutorial_Hint_Escort_BoscoOilShale_HPP
class UTutorial_Hint_Escort_BoscoOilShale_C : public UTutorialHintComponent
{
FPointerToUberGraphFrame UberGraphFrame;
void ReceiveOnInitialized();
void OnBoscoChanged(class ABosco* Bosco);
... | [
"bobby45900@gmail.com"
] | bobby45900@gmail.com |
bc1822abe4f0e880e932005c5f2d365cab479d51 | d2ba0389accde0370662b9df282ef1f8df8d69c7 | /frameworks/cocos2d-x/cocos/renderer/scene/assembler/SimpleSprite2D.hpp | 01ee7031c8426da5d0a7034a5c3c73104621d72c | [] | no_license | Kuovane/LearnOpenGLES | 6a42438db05eecf5c877504013e9ac7682bc291c | 8458b9c87d1bf333b8679e90a8a47bc27ebe9ccd | refs/heads/master | 2022-07-27T00:28:02.066179 | 2020-05-14T10:34:46 | 2020-05-14T10:34:46 | 262,535,484 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,600 | hpp | /****************************************************************************
Copyright (c) 2018 Xiamen Yaji Software Co., Ltd.
http://www.cocos2d-x.org
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to dea... | [
"811408414@qq.com"
] | 811408414@qq.com |
52e25b03e075ccdc306265ca26eeb151a8055f50 | bdfca7d4bd6e1baf2c43e593de66fcba80afadeb | /prog-verf/assignment1/sketch-1.7.5/sketch-frontend/test/sk/seq/miniTestb475.cpp | 5820e9526009cba0d8b432a3231ee597f62cef58 | [] | no_license | wanghanxiao123/Semester4 | efa82fc435542809d6c1fbed46ed5fea1540787e | c37ecda8b471685b0b6350070b939d01122f5e7f | refs/heads/master | 2023-03-22T06:47:16.823584 | 2021-03-15T10:46:53 | 2021-03-15T10:46:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 687 | cpp | #include <cstdio>
#include <assert.h>
#include <iostream>
using namespace std;
#include "vops.h"
#include "miniTestb475.h"
namespace ANONYMOUS{
void main__Wrapper(int i, int j) {
_main(i, j);
}
void main__WrapperNospec(int i, int j) {}
void _main(int i, int j) {
int x_s1=0;
foo(i, x_s1);
int y_s3=0;
foo(j,... | [
"akshatgoyalak23@gmail.com"
] | akshatgoyalak23@gmail.com |
f0d413b81ee182cdb6206fb1b665f0c013fd0e16 | f2339e85157027dada17fadd67c163ecb8627909 | /Server/EffectServer/Src/EffectAttackEntityAddBuff.h | 2950b143e08d127f166f0f3691e3a9f93388e418 | [] | no_license | fynbntl/Titan | 7ed8869377676b4c5b96df953570d9b4c4b9b102 | b069b7a2d90f4d67c072e7c96fe341a18fedcfe7 | refs/heads/master | 2021-09-01T22:52:37.516407 | 2017-12-29T01:59:29 | 2017-12-29T01:59:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,586 | h | /*******************************************************************
** 文件名: EffectAttackEntityAddBuff.h
** 版 权: (C) 深圳冰川网络技术有限公司 2008 - All Rights Reserved
** 创建人: 彭政林
** 日 期: 3/04/2016
** 版 本: 1.0
** 描 述: 效果-攻击实体增加Buff
http://172.16.0.120/redmine/issues/1660
******************************************... | [
"85789685@qq.com"
] | 85789685@qq.com |
52bbb597c8c8f98cd62105b33a12a1372127acfd | 1ffb0d73aed05458f75936360948d6964de387af | /src/solver/pibt.h | a95a42b97ddbf3e04292ad313929b67ac3b4f596 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | Kei18/pibt | 2a05011129cc760395f5c5eabba03a83bf4e53c4 | 2ad94bc7e9a817d93acef9849b743b6357b8e510 | refs/heads/master | 2021-12-10T04:22:36.826941 | 2021-11-23T02:46:06 | 2021-11-23T02:46:06 | 187,332,062 | 24 | 8 | MIT | 2020-10-02T12:30:04 | 2019-05-18T08:14:33 | C++ | UTF-8 | C++ | false | false | 1,427 | h | #pragma once
#include "solver.h"
class PIBT : public Solver {
protected:
std::vector<float> epsilon; // tie-breaker
std::vector<int> eta; // usually increment every step
std::vector<float> priority; // eta + epsilon
void init();
void allocate();
virtual void updatePriority();
Nodes createCandidat... | [
"keisuke.oku18@gmail.com"
] | keisuke.oku18@gmail.com |
a2856338366b452cb3013205add7fb77d387fe03 | 5a6ff800792bf62756fe9750bf8a4d94e7abc3a4 | /Project X/Space.cpp | fb37b64d5fee20916e30c95d23c32ef073037009 | [] | no_license | Barsegyans/ProjectX | 8cc85d8ed8e9da365e55c077d12039af86c8f5c9 | 1aa2808ba93b34565488edee60667592a8b57a51 | refs/heads/master | 2021-01-13T09:02:47.337835 | 2016-12-02T12:03:16 | 2016-12-02T12:03:16 | 72,372,142 | 0 | 0 | null | 2016-12-02T11:58:32 | 2016-10-30T19:59:35 | C++ | UTF-8 | C++ | false | false | 206 | cpp | #include"Space.h"
Space::Space(float x, float y): Box2D(Point2D(0,0),Point2D(x, y)) {};
Space::Space(Point2D const & a, Point2D const & b): Box2D(a,b) {};
Space::Space(Box2D const & b): Box2D(b){};
| [
"Serbarmephi@gmail.com"
] | Serbarmephi@gmail.com |
441764aedd755eec87ae91579180957396c752da | 09e5294e6019b13f8bdfd9daf1b6ce358062ce34 | /src/main.cpp | efe364abc6732a48176ec7081761b43c0bc752ef | [] | no_license | soarchorale/interview | 2f84801ac994a41e3c2e8436b8f350859396353e | 433181772aa37ca6b195a42ff38d7b93c6684d44 | refs/heads/main | 2023-02-19T21:53:39.470325 | 2021-01-24T12:10:51 | 2021-01-24T12:10:51 | 332,129,412 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 417 | cpp | #include "complexAdd.h"
#include <iostream>
#include <thread>
int main() {
ComplexAdd* complex_add = new ComplexAdd();
std::thread A(&ComplexAdd::ProducerInt, complex_add);
std::thread B(&ComplexAdd::ProducerDouble, complex_add);
std::thread C(&ComplexAdd::Comsumer, complex_add);
std::thread D(&ComplexAdd::Prin... | [
"463052596@qq.com"
] | 463052596@qq.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.