blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 201 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 7 100 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 260
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 11.4k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 17
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 80
values | src_encoding stringclasses 28
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 8 9.86M | extension stringclasses 52
values | content stringlengths 8 9.86M | authors listlengths 1 1 | author stringlengths 0 119 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
00e44376da4edcbf2ad2a0320d76e539893a5750 | 2696b7ec7228cea17ceead518c5a6cecfe9716d3 | /745-C/745-C-23113571.cpp | 1424eb414afc3512d8c88f677548fb16197ea0b1 | [] | no_license | flapy/Codeforces-Practice | 93176dbc1db2e21eca23c5d6fd8b52a9a32dee92 | d05adae0da364a0675a360840822e27a7916a372 | refs/heads/master | 2021-01-12T05:33:49.519447 | 2016-12-29T19:13:12 | 2016-12-29T19:13:12 | 77,128,270 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,307 | cpp | // Approach 2 using DSU
#include <bits/stdc++.h>
using namespace std;
#define lli long long int
list <int> adj[1004];
int visit[1004];
int parent[1004];
int rnk[1004];
void init(int n)
{
for (int i = 1; i <= n; i++)
{
parent[i] = i;
rnk[i] = 1;
}
}
void merge(int u,int v)
{
if (rnk[u] > rnk[v])
parent[v] = u;... | [
"y13uc074@lnmiit.ac.in"
] | y13uc074@lnmiit.ac.in |
8932fcf0ebb62b08d5f3c915279bc13b302d92d5 | ab8f3125aa7dd26f272fadd233bd639f367f4005 | /ext/imgui-1.51/examples/sdl_opengl2_example/main.cpp | 53e428ba3b5e0aa535f469f9d46cd18c0413b0f2 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference",
"LicenseRef-scancode-public-domain"
] | permissive | phoekz/voxed | 07958b3da331df481adc17e6e0195756b8ffcab2 | b825328159c3cd220d1affc9d2170d2121fc32b8 | refs/heads/master | 2020-06-03T07:44:36.471518 | 2019-02-16T23:26:17 | 2019-02-21T22:56:09 | 94,122,408 | 2 | 0 | MIT | 2019-02-21T22:56:10 | 2017-06-12T17:27:06 | HTML | UTF-8 | C++ | false | false | 4,010 | cpp | // ImGui - standalone example application for SDL2 + OpenGL
// If you are new to ImGui, see examples/README.txt and documentation at the top of imgui.cpp.
#include <imgui.h>
#include "imgui_impl_sdl.h"
#include <stdio.h>
#include <SDL.h>
#include <SDL_opengl.h>
int main(int, char**)
{
// Setup SDL
if (SDL_Ini... | [
"vinhphuc.truong@gmail.com"
] | vinhphuc.truong@gmail.com |
cdb12062a6fa851d305fbddc1f6797a1a8a8e393 | 622a4ff3400db164d881ffae68e5a7e8ee508b13 | /src/Engine/Rendering/RHI/IModel.hpp | 00556b3f80bd5acfdef971e6a54797c49e83c9ee | [
"Apache-2.0",
"MIT"
] | permissive | kaclok/TmingEngine | efea1186f95b818d14aef05e0e24121254dedd35 | 4455ff88c6169acfbc98caf52e6f09db223ee472 | refs/heads/master | 2022-12-08T18:56:23.921885 | 2020-09-08T01:21:01 | 2020-09-08T01:21:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,021 | hpp | /*
This file is part of:
TmingEngine
https://github.com/xiaomingfun/TmingEngine
Copyright 2018 - 2020 TmingEngine
File creator: littleblue
TmingEngine is open-source software and you can redistribute it and/or modify
it under the terms of the License; besides, anyone who use this file/software ... | [
"1075112523@qq.com"
] | 1075112523@qq.com |
5f00b3f6635db38bec7ab1e25bedacba816a3dc3 | 62669fbaa3d9b52bd34a8ab8bf781f2d18b3778b | /dlib/media/ffmpeg_muxer.h | ddf2c2363ea14afe30a1dadcfe83eb35d82df8b3 | [
"BSL-1.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | davisking/dlib | 05c04e5c73c8b92526c77431e9bb622974ffe3f2 | f6c58c2d21a49d84967e48ffa33e7d1c783ae671 | refs/heads/master | 2023-09-06T08:22:13.063202 | 2023-08-26T23:55:59 | 2023-08-26T23:55:59 | 16,331,291 | 13,118 | 3,600 | BSL-1.0 | 2023-09-10T12:50:42 | 2014-01-29T00:45:33 | C++ | UTF-8 | C++ | false | false | 60,330 | h | // Copyright (C) 2023 Davis E. King (davis@dlib.net)
// License: Boost Software License See LICENSE.txt for the full license.
#ifndef DLIB_VIDEO_MUXER
#define DLIB_VIDEO_MUXER
#include <queue>
#include <functional>
#include <unordered_map>
#include "ffmpeg_utils.h"
#include "../functional.h"
#include "../constexpr... | [
"noreply@github.com"
] | noreply@github.com |
5da36a8a063c60d8987dfa10ceee747c0b03aec7 | 8c59e7602354267836ce4df60ee97d9503da1ca5 | /libs/include/gzip.hpp | 9b9e2ec59b1d9210cf36fe377c8690f14cb8b542 | [
"MIT"
] | permissive | hybrid-ray/sulfur | 416fcfc47da7d30cc925885f011a05f54e525b61 | 9553ed26e7a971b1b756d7709c203e25baa7ff54 | refs/heads/master | 2023-07-04T23:52:48.573158 | 2021-08-15T14:29:36 | 2021-08-15T14:29:36 | 394,246,630 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 948 | hpp | #ifndef __GZIP_HPP__
#define __GZIP_HPP__
#include <sstream>
#include <boost/iostreams/filtering_streambuf.hpp>
#include <boost/iostreams/copy.hpp>
#include <boost/iostreams/filter/gzip.hpp>
class Gzip {
public:
static std::string compress(const std::string& data)
{
namespace bio = boost::iostreams;
std::strin... | [
"mainuser@debian1.com"
] | mainuser@debian1.com |
2201b97e6396ecd88e5cdb09ec9be65c4f7fc590 | 8a57eb0993bdd61746246c815faae725b22e9547 | /src/policy/feerate.h | 6ff7adbe5fa19ccb08a39fcaeb5e2e4f39696e33 | [
"MIT"
] | permissive | bastiencaillot/BitcoinCloud | 1596b9be8c8a3a5afba852dfbcc2d1dc89282978 | c519c4e87e80330fa23eb68d63c6a2d387507261 | refs/heads/master | 2022-02-13T23:21:16.217680 | 2019-07-23T12:52:20 | 2019-07-23T12:52:20 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,404 | h | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2018 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOINCLOUD_POLICY_FEERATE_H
#define BITCOINCLOUD_POLICY_FEERATE_H
#inc... | [
"dev@bitcoincloud.email"
] | dev@bitcoincloud.email |
11286f225b3249d74219f2aa8e9c69d0016ebee5 | 4de849dbfcbbd7b8d23714d19bd675215bbf4151 | /NpcController.cpp | 050c0852f2ebabf1cd333bb9c2a000b2acd50d3e | [] | no_license | csusbdt/steering | 4a11fde3711a18fb910ae4f641291709fc4361e5 | d2311aaa88c8b4f5955f72214e1b013333ea438a | refs/heads/master | 2021-01-20T23:18:08.499344 | 2014-08-22T07:52:48 | 2014-08-22T07:52:48 | 23,217,473 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,501 | cpp | #include "NpcController.h"
#include "Pawn.h"
#include "GameObject.h"
#include <cassert>
#include <iostream>
void NpcController::setPawn(Pawn * pawn)
{
Controller::setPawn(pawn);
seekBehavior.setPawn(pawn);
arriveBehavior.setPawn(pawn);
lookWhereYoureGoingBehavior.setPawn(pawn);
followPathBehavior.setP... | [
"csusbdt@gmail.com"
] | csusbdt@gmail.com |
69a86e164a1ee37c60a18c27350c829f75fd05b2 | d657e6161bb4b4c603d1deba4e0bcd871eb9031c | /matlab_code/jjcao_code-head/toolbox/jjcao_mesh/geodesic/mex/gw/gw_geodesic/GW_VoronoiMesh.h | be11abddd2fbdde2f04ead37186876058dbc6670 | [
"MIT"
] | permissive | joycewangsy/normals_pointnet | 84c508b7b5f96cb0c8fdbfd1d5a2bcac4e68772a | fc74a8ed1a009b18785990b1b4c20eda0549721c | refs/heads/main | 2023-01-05T23:12:30.500115 | 2020-11-09T12:29:56 | 2020-11-09T12:29:56 | 311,324,467 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,027 | h |
/*------------------------------------------------------------------------------*/
/**
* \file GW_VoronoiMesh.h
* \brief Definition of class \c GW_VoronoiMesh
* \author Gabriel Peyr?
* \date 4-12-2003
*/
/*------------------------------------------------------------------------------*/
#ifndef _GW_VOR... | [
"923751881@qq.com"
] | 923751881@qq.com |
1e25d5847c4cb3d18516df28a3ce0c88b1a6b378 | 9c16d6b984c9a22c219bd2a20a02db21a51ba8d7 | /components/proximity_auth/proximity_monitor_impl.cc | 432485c906599b3230477873863d3a755ebb8f89 | [
"BSD-3-Clause"
] | permissive | nv-chromium/chromium-crosswalk | fc6cc201cb1d6a23d5f52ffd3a553c39acd59fa7 | b21ec2ffe3a13b6a8283a002079ee63b60e1dbc5 | refs/heads/nv-crosswalk-17 | 2022-08-25T01:23:53.343546 | 2019-01-16T21:35:23 | 2019-01-16T21:35:23 | 63,197,891 | 0 | 0 | NOASSERTION | 2019-01-16T21:38:06 | 2016-07-12T22:58:43 | null | UTF-8 | C++ | false | false | 9,281 | 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 "components/proximity_auth/proximity_monitor_impl.h"
#include <math.h>
#include "base/bind.h"
#include "base/location.h"
#include "base/thread_... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
f0a2be5e2d48408ede946840a7350ecb17229743 | 56e7d6b20f4d2f11912b6b22c7e96b9178c5a3d6 | /sorted range/set_intersection,difference,symmetric_difference.cpp | 64f7644e442127fa4e02d3728c4a4ba630ebb82f | [] | no_license | MinuLoL/Algorithm | 660697b1c7ee2b13596f69cb1cce9fa00a9df3a7 | d6e22b130ad947599ae75f8456f17408cb2652eb | refs/heads/master | 2022-11-18T15:40:14.804893 | 2020-07-21T04:42:55 | 2020-07-21T04:42:55 | 280,018,389 | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 1,030 | cpp | #include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
int main()
{
vector<int>v1;
v1.push_back(10);
v1.push_back(20);
v1.push_back(30);
v1.push_back(40);
v1.push_back(50);
vector<int> v2;
v2.push_back(20);
v2.push_back(30);
v2.push_back(60);
vector<int> v3(10);
vector<int>::iterator ... | [
"alsdn4837@naver.com"
] | alsdn4837@naver.com |
2a812d6dd1d45f956bfb59ec8fb6a726504e6cce | 654bda06ac98563f63b74601ebcba179b52b2a5d | /func/mpi/mpi_put.cpp | 19c589bd718b793cf11f4d21b05cdf2caa4b666b | [
"Apache-2.0"
] | permissive | n-krueger/cpp | d6404e10b97970e223b061ba6031a848750b13a4 | 8090952fc39a6c2a67f9e444831241b936a9f25a | refs/heads/master | 2023-04-29T19:37:44.620385 | 2021-04-21T06:51:33 | 2021-04-21T06:51:33 | 366,135,569 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,456 | cpp | #include <faasm/compare.h>
#include <faasm/faasm.h>
#include <mpi.h>
#include <stdio.h>
#define NUM_ELEMENT 4
int main(int argc, char* argv[])
{
MPI_Init(NULL, NULL);
int rank;
int worldSize;
MPI_Comm_rank(MPI_COMM_WORLD, &rank);
MPI_Comm_size(MPI_COMM_WORLD, &worldSize);
size_t elemSize = s... | [
"noreply@github.com"
] | noreply@github.com |
3cc5c759ab1938d72db52ce873f4d945d090612a | d0fb46aecc3b69983e7f6244331a81dff42d9595 | /paifeaturestore/src/model/DeleteDatasourceResult.cc | 2e607e9515094fcf9b7b51dac17e904d3f03ec53 | [
"Apache-2.0"
] | permissive | aliyun/aliyun-openapi-cpp-sdk | 3d8d051d44ad00753a429817dd03957614c0c66a | e862bd03c844bcb7ccaa90571bceaa2802c7f135 | refs/heads/master | 2023-08-29T11:54:00.525102 | 2023-08-29T03:32:48 | 2023-08-29T03:32:48 | 115,379,460 | 104 | 82 | NOASSERTION | 2023-09-14T06:13:33 | 2017-12-26T02:53:27 | C++ | UTF-8 | C++ | false | false | 1,255 | cc | /*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | [
"sdk-team@alibabacloud.com"
] | sdk-team@alibabacloud.com |
71a322444ee9edd1af264b7e2a70f83af77b033b | 538331b12d4cb20a469185f1db371db0f6244d4d | /project2/assn-2-six-degrees/imdb-utils.h | 69e9cd7f0f0fd37fb30a181cf70cf552616c0f59 | [] | no_license | PBhandari99/Programming_paradigms | 69764b0bfb0ebaaad9cff6b6fc467805548f225d | 2ba55c9f9cc5a98b2d94020e786beaf22a427a4f | refs/heads/master | 2021-03-19T13:33:58.663490 | 2018-10-16T23:30:23 | 2018-10-16T23:30:23 | 115,310,843 | 0 | 0 | null | 2018-10-16T23:30:24 | 2017-12-25T06:03:26 | C | UTF-8 | C++ | false | false | 2,360 | h | #ifndef __imdb_utils__
#define __imdb_utils__
#include <string>
#include <strings.h>
#include <cstdlib>
#include <iostream>
#include <vector>
using namespace std;
/**
* Convenience struct: film
* ------------------------
* Bundles the name of a film and the year it was made
* into a single struct. It is a true ... | [
"prashantb1097@gmail.com"
] | prashantb1097@gmail.com |
64a2a2f5f1adf65fc4c1afd174a4613d612b2c56 | 232743e092f954e62254a7f0ee40f19e49cff5ff | /lab2/task1/vector/vector.cpp | 051a45823714d4212234ef3a4cec1c3a0855bfcf | [] | no_license | crispero/oop | 25e83d8a6b17a22521c2916964592c4321ced359 | 8345ebac488c2ae9c04381f38f15a47dad1bacd3 | refs/heads/master | 2020-04-22T12:06:31.242886 | 2019-06-14T19:22:26 | 2019-06-14T19:22:26 | 170,362,013 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 742 | cpp | #include "pch.h"
#include "Vector.h"
#include <algorithm>
#include <fstream>
#include <iostream>
#include <vector>
#include <string>
void ReadVector(numbers& vf)
{
while (!std::cin.eof())
{
float number;
if (std::cin >> number)
{
vf.push_back(number);
}
else
{
break;
}
}
}
void ProcessVector(n... | [
"solitudesunshine@gmail.com"
] | solitudesunshine@gmail.com |
f2acc75e49c36a5b2bfdc3bca440f20fbc4a2b59 | e80c39cb4eed4c0f74e7cb73f57c9d56e365eadd | /fastBilateral.hpp | 8b2f9badce39c4a163b58524edb7d0b497ee186a | [
"MIT"
] | permissive | Fitzclutchington/spt_mask | 24ec0604e6b2835ef96dc0b421e4925fd5f64343 | ed8ed4c081405ebc7f5bf73b0903b4a7a925d555 | refs/heads/master | 2021-01-20T02:25:26.735930 | 2017-08-25T23:18:29 | 2017-08-25T23:18:29 | 101,321,209 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,521 | hpp | /**
This sofrware and program is distributed under MIT License.
Original alogorithm : http://people.csail.mit.edu/sparis/bf/
Please cite above paper for research purpose.
The MIT License (MIT)
Copyright (c) 2015 Yuichi Takeda
Permission is hereby granted, free of charge, to any person obtaining a c... | [
"fitzgeralda2010@gmail.com"
] | fitzgeralda2010@gmail.com |
9a8c88fbbfd75f0ec419611918f50e30ab88ca0f | 53d2e1ffa89b13c883bff1bedc994b0206a5676a | /Invoice.main.cpp | ac5139b8b8860e973d86173287733d2042c2f47d | [] | no_license | dwiariprayogo/.Pemograman-Berorientasi-Obyek | 9bea80ab7820e262c34a8a97b2b682b6438e6ff8 | a12397b0fb6fc5a34dbcb83eab7fc171efb7d92c | refs/heads/main | 2023-02-13T11:04:12.573241 | 2021-01-07T00:55:28 | 2021-01-07T00:55:28 | 302,342,859 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,148 | cpp | #include<iostream>
#include <string>
using namespace std;
class Invoice
{
public:
Invoice( string, string, int, int );
void setPartNumber( string );
string getPartNumber();
void setPartDescription(string);
string getPartDescription();
void setItemQuantity(int);
int getItemQuantity();
void set... | [
"noreply@github.com"
] | noreply@github.com |
25d38d835aaf941bf76c442cfd09df81daaf5217 | 90d1cd28f85a2df99e0720a60a4f706d3dba266e | /t.cpp | 15aa35e6a42e680ac233f0f3249a3b50166dddae | [] | no_license | bblarney/iotproject | b802a5213e56cca7e650563f162557d420cc26c1 | 8f42530b8bb3ae950df0283ec35ce82785f88486 | refs/heads/master | 2021-07-08T10:16:06.411833 | 2017-10-06T00:15:18 | 2017-10-06T00:15:18 | 104,124,610 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,884 | cpp | #include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include "util.h"
#include "t.h"
using namespace std;
Task::Task() {
}
Task::Task(vector<string> &line) {
/*for (auto & field : line) {
cout << "%" << field << "%";
}
cout << "\n";*/
switch (line.size()) {
case 4:
if (vali... | [
"you@example.com"
] | you@example.com |
acc087acf2941fe7bd8eabdcc65679da29b9cc9b | a6e0dac05610177331c0413112ea92d0b1d5866b | /ProjectFR/FRClient/CharacterParameter.cpp | 757cafc56c40fb3c52525f9a7123f9ef17b3c399 | [] | no_license | wwr1977/SJ-Studio | 11c64f4bed95d53eefc2fe2198c17a419dcb0cf4 | 9da71a796fa6636f260b77694b51be828ce1a891 | refs/heads/master | 2020-05-18T03:46:24.014589 | 2019-04-29T22:35:19 | 2019-04-29T22:35:19 | 184,147,071 | 0 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 3,032 | cpp | #include "Precom.h"
#include "CharacterParameter.h"
CCharacterParameter::CCharacterParameter()
:m_fRadius(30.0f)
{
m_vecParameterBack.clear();
for (size_t i = 0; i < MAXPARAMETER; i++)
m_fCurParameter[i] = 3.0f;
}
CCharacterParameter::~CCharacterParameter()
{
m_vecParameterBack.clear();
}
void CCharacterP... | [
"wws1977@naver.com"
] | wws1977@naver.com |
bd6190c5bd7dac2e1416f5899c4daa1c11f6d1fc | 8a42ec79fc702af19ff366b5c53c58ce92c9a5ce | /CompareTheTriplet.cpp | 164f80a3127c50e23544a301e31091ba440fe26b | [] | no_license | Nikitapande/Hackerrank_Algorithm | 034d4b5709ae505448180f699d6a6bb087a9fbcb | 8e1e4945611d67dab77aac04445dade027bbd22b | refs/heads/master | 2021-07-09T18:18:09.830997 | 2019-09-23T17:08:50 | 2019-09-23T17:08:50 | 193,709,386 | 1 | 1 | null | 2021-10-06T07:01:16 | 2019-06-25T13:06:13 | C++ | UTF-8 | C++ | false | false | 988 | cpp | /*
Alice and Bob each created one problem for HackerRank Compare the Triplets.
A reviewer rates the two challenges, awarding points on a scale from 1 to 100 for three categories:
problem clarity, originality, and difficulty.
We define the rating for Alice’s challenge to be the triplet A=(a0,a1,a2), and the ra... | [
"noreply@github.com"
] | noreply@github.com |
5ebc103d4c1f55cb47d937034a3078345fcacd9e | 7cddd418f09223d71dd5758559f133921ad878ac | /2018/test0420/test01.h | 4eebd44acffd4f44cf58490a0176ac1d1d01414e | [] | no_license | lijuni/allCPPTest | 599b946eae46da919f1e4a5aba2b5ea1c1425688 | 9c3b23e61d12bc911cb1f9c3eb0a5cccabec6967 | refs/heads/master | 2020-03-19T09:19:42.551206 | 2018-06-06T05:42:01 | 2018-06-06T05:42:01 | 136,278,615 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,224 | h | //P405 shared_ptr
#ifndef TEST01_H
#define TEST01_H
#include<iostream>
#include<string>
#include<vector>
#include<memory>
#include<list>
#include<initializer_list>
using namespace std;
class StrBlob{
public:
typedef vector<string>::size_type size_type;
StrBlob();
StrBlob( initializer_list<string> li);
si... | [
"873651931@qq.com"
] | 873651931@qq.com |
1d4dae0602153eb3c98efca1e753b2754e953ae2 | 77ad94490985e37f992f84c9cf5742280ab45f4f | /Common/DataModel/vtkBezierQuadrilateral.cxx | c35a93f77ea5cd2a5b772789bace3b1d2c377f73 | [
"BSD-3-Clause"
] | permissive | martijnkoopman/VTK | e78bf7f56d532776e9e28d8dfed59a1c46c6f027 | 7fb393e4512ad0f152fac489c78cd9f6dd713ba2 | refs/heads/master | 2023-03-08T12:32:10.386828 | 2021-02-24T19:38:54 | 2021-02-24T19:38:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,922 | cxx | /*=========================================================================
Program: Visualization Toolkit
Module: vtkBezierQuadrilateral.cxx
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This so... | [
"florian@coreform.com"
] | florian@coreform.com |
8e514e02d7b87343a1f9bacc817585e71c276f55 | 0764c823e1b594fc3ec5db2c28436bab6e345f4d | /Baekjoon/unranked/기초/수학1/1011.cpp | 3f7064b2823dcdfa58985a92e9e59df7ac625a79 | [] | no_license | BTOCC24/Algorithm | ecf5b94bf31aa69549be4aa73ff1d4874243e696 | 24a6c3c6d8cf62d14b60dbc12c7d5fa4c4d80f31 | refs/heads/master | 2023-04-10T22:02:41.435820 | 2021-04-15T15:09:30 | 2021-04-15T15:09:30 | 231,168,262 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 589 | cpp | //20/1/2 11:34 1011
#include <iostream>
#include <math.h>
using namespace std;
int main()
{
int T, x, y;
cin >> T;
for (int i = 0; i < T; i++) {
cin >> x >> y;
x = y - x;
if (abs(pow((int)sqrt(x), 2) - x) == 0)
cout << 2 * (int)sqrt(x) - 1 << endl;
else if (x - abs(pow((int)sqrt(x), 2)) > abs(pow((int)sq... | [
"kisses6938@gmail.com"
] | kisses6938@gmail.com |
76018012355d77303a0712275cc1420b15ab398b | b588cb851a14eb6d594c21e8e88469af0247a199 | /engine/WHAbstractScene.h | 1947b51deb97dd90ad922f922c2065784af8371a | [] | no_license | Egor2001/whirl | cd94a155870998923cb8fa58edefb5f64d49c5f1 | e4bc65f6e62838b296f7caab242a19140170a1cc | refs/heads/master | 2021-01-23T01:18:50.400397 | 2017-09-06T04:46:46 | 2017-09-06T04:46:46 | 85,899,839 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,099 | h | #pragma once
#include <memory>
#include "memory/WHEvent.h"
#include "memory/WHMemoryManager.h"
#include "render/WHRay.h"
#include "render/WHCamera.h"
#include "render/WHGraphicObject.h"
#include "render/WHLight.h"
#include "render/math/WHVector.h"
namespace whirl {
template<class... ObjectTypes> struct WHObjectBuff... | [
"elchinov0905@mail.ru"
] | elchinov0905@mail.ru |
1657f4ff033357cad434d77deac674ea40181316 | dee25a9d518640f21148900cd16af45d24ffcf2d | /Skechs/fourKeyKeyboard/fourKeyKeyboard.ino | 524197167347b85fd4698de3ebe0b514e0a4bcae | [] | no_license | shingokawaue/arduinoSketch | 49ff218c38818bb23363db136d252e7a19521c96 | 9c89856edcf0e2846982d1a36b6ee2beb1f56c58 | refs/heads/master | 2020-07-24T05:13:41.085476 | 2019-09-11T13:20:15 | 2019-09-11T13:20:15 | 207,811,805 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,201 | ino | #include "Keyboard.h"
const int outputNum = 2;//キーマトリックス用 outputの頭数
const int inputNum = 5;//キーマトリックス用 inputの頭数
const int outputPin[outputNum] = { 2, 3 };//キーマトリクス用 outputポート番号配列
const int inputPin[inputNum] = { 6, 7, 8, 9 ,10};//キーマトリクス用 inputポート番号配列
const byte keyMap[outputNum][inputNum] = {
{ 0x61, 0x62 , 0x63,... | [
"singu222@yahoo.co.jp"
] | singu222@yahoo.co.jp |
aa9b03bb95bd140796e0456c8f9996d12fdb19d5 | e10f9aebff08879b68fbefdc9bf9afc481ba4d4d | /Driver/W25Q64.h | 9a86b3b36cddb70739c81f4e3c09d016042fac03 | [] | no_license | jangocheng/STM32F103ZET6_ogistics_handling_robot | 3058b1e1e00913aff357e84af2c1f374b76363ca | ac20d3affae47d557d49c2d428cc2ae1da179157 | refs/heads/master | 2021-09-26T00:37:20.687459 | 2018-09-17T15:09:26 | 2018-09-17T15:09:33 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,971 | h | #ifndef __W25Q64__H__
#define __W25Q64__H__
#include "stm32f10x.h" // Device header
#include "spi.h"
#include "gpio.h"
//W25Q64 SCK <--->PA5 MISO<--->PA6 MOSI<--->PA7 CS <--->PC0
//写/读小数
// Write/Read((void*)double_buffer, FLASH_PageSize*1, sizeof(double_buffer));
#define W25Q64_ID ... | [
"1402813364@qq.com"
] | 1402813364@qq.com |
3d3e301db4e8acd8dad8c10b55997495771b1ced | 9030ce2789a58888904d0c50c21591632eddffd7 | /SDK/ARKSurvivalEvolved_DroppedItemGeneric_FertilizedEgg_CrystalWyvern_functions.cpp | 1d54c5a4387898806cd7d75d8621c7276be7984e | [
"MIT"
] | permissive | 2bite/ARK-SDK | 8ce93f504b2e3bd4f8e7ced184980b13f127b7bf | ce1f4906ccf82ed38518558c0163c4f92f5f7b14 | refs/heads/master | 2022-09-19T06:28:20.076298 | 2022-09-03T17:21:00 | 2022-09-03T17:21:00 | 232,411,353 | 14 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 1,932 | cpp | // ARKSurvivalEvolved (332.8) SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
#include "ARKSurvivalEvolved_DroppedItemGeneric_FertilizedEgg_CrystalWyvern_parameters.hpp"
namespace sdk
{
//---------------------------------------------------------------------------
//Functions
//-----------------------------------... | [
"sergey.2bite@gmail.com"
] | sergey.2bite@gmail.com |
9ab58f6e7a61dd535d5598c7fcf007251781002d | 36662ba6c5d515a953227c3fe70b960bd003dd6d | /main.cpp | c7d44d9d5d96dd2c22d2797412240c761b01e50d | [] | no_license | hiepnm/filter_ip_to_loc_file | fc62dbdadf4ab2595b0eac6c56f7f356ec87efa1 | d53987f609e57d0fe0150648c9af53b7c59ce710 | refs/heads/master | 2021-04-09T16:45:26.042723 | 2014-10-31T10:24:42 | 2014-10-31T10:24:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,332 | cpp | /*
* main.cpp
*
* Created on: May 9, 2014
* Author: hiepnm
*/
#include <map>
#include <string>
#include <cstdlib>
#include <cstdio>
#include <cstring>
#include <cerrno>
struct location_t {
int regnum;
char regid[3];
char regname[57];
};
typedef struct location_t location;
std::map<std::string, location>... | [
"hiepnguyenmanh@admicro.vn"
] | hiepnguyenmanh@admicro.vn |
07b67653804ddfcf8274435997c806a78082ae4b | 06bed8ad5fd60e5bba6297e9870a264bfa91a71d | /libPr3/logixng/digitalmany.h | e933508418b36e077e6f6a1954b93c398f66dff2 | [] | no_license | allenck/DecoderPro_app | 43aeb9561fe3fe9753684f7d6d76146097d78e88 | 226c7f245aeb6951528d970f773776d50ae2c1dc | refs/heads/master | 2023-05-12T07:36:18.153909 | 2023-05-10T21:17:40 | 2023-05-10T21:17:40 | 61,044,197 | 4 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 4,259 | h | #ifndef DIGITALMANY_H
#define DIGITALMANY_H
#include "abstractdigitalaction.h"
#include "femaledigitalactionsocket.h"
#include "femalesocketlistener.h"
class DigitalMany : public AbstractDigitalAction, public FemaleSocketListener
{
Q_OBJECT
Q_INTERFACES(FemaleSocketListener)
/*private*/ /*static*/ class Action... | [
"allenck@windstream.net"
] | allenck@windstream.net |
8e5e811e59579d94fe36493cf93b0ea3ba40b110 | 364a2c824284c41b2de5690d9c1e960cea79faad | /SPOJ/totient.cpp | aee94aa1672711fa357a99e40a3d652bf63b9e9c | [] | no_license | jsanyam/Codes | 7cb5a96d6f4bdb89ac8d1e1c6a09db0006ab0d25 | 30aa151ba2675b1ca295826cf3f122dd9c8d77fa | refs/heads/master | 2021-01-10T09:20:50.792499 | 2016-08-23T17:51:18 | 2016-08-23T17:51:18 | 49,881,010 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 417 | cpp | #include<iostream>
using namespace std;
int fi(int n)
{
int result = n;
for(int i = 2; i*i<=n; i++)
{
if(n%i == 0)
result -= result/i;
while(n%i == 0)
n /= i;
}
if(n>1)
result -= result/n;
return result;
}
int main()
{
int t;
cin>>t;
... | [
"sanyam.jain14@gmail.com"
] | sanyam.jain14@gmail.com |
0b36efe26a7780347527d28cc74e7669f5f3c277 | 5e9bc1fcb691960adda799357144ea01c219d44f | /assignments/c++ ProgrammingSolutions/Program4.cpp | 4be2ad4512bc5c8bec402f5f6231684e3a4d5946 | [] | no_license | alvas-education-foundation/spoorti_daroji | 3a1f3c6751f6e9d784e14250d386b621a3f7c3ef | 29462fa46f966ca80dbac02dafb765a900ef4b6d | refs/heads/master | 2022-12-05T19:17:07.962049 | 2020-08-10T12:47:51 | 2020-08-10T12:47:51 | 265,741,049 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 940 | cpp | /*C++ program to enter the details of students and display them using class and object. The details should be private in nature and use public membersfunction to access the private members.(Define the member function outside the class)*/
#include<iostream.h>
using namespace std;
class student
{
private: char name[10]... | [
"spoortidaroji21@gmial.com"
] | spoortidaroji21@gmial.com |
7bf7d91a62ef144b1b8be7855fe4a62ba6cecc6b | b410ee97a1d662708413a3e54fb8b53a1388896c | /PathTracer/NoiseTexture.h | 3403a412795b7fed745a33142c433a506d423b29 | [] | no_license | Shylie/MCPT-GPU | 2af1c4afb297aeb9f88e66641b5dd341ac2d99ce | 06a748dafeef49561d16d58d96dfb54700a96f79 | refs/heads/master | 2023-03-23T06:28:43.186472 | 2021-03-19T18:28:55 | 2021-03-19T18:28:55 | 205,578,138 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,048 | h | #ifndef NOISE_TEXTURE_H
#define NOISE_TEXTURE_H
#include "Texture.h"
class API NoiseTexture : public Texture
{
public:
__host__ NoiseTexture(int tiles);
__device__ NoiseTexture(int tiles, Vec3* randv_d, int* permX_d, int* permY_d, int* permZ_d);
__host__ __device__ ~NoiseTexture();
__host__ __device__ NoiseTextu... | [
"fuzzcat927@gmail.com"
] | fuzzcat927@gmail.com |
6dd00ad58fd6a4bae914919ac09d84dbb5ee50d2 | e76ea38dbe5774fccaf14e1a0090d9275cdaee08 | /src/components/autofill/content/renderer/password_autofill_agent.cc | ce2f1031844cf0f582c32be523841057e09e4ebd | [
"BSD-3-Clause"
] | permissive | eurogiciel-oss/Tizen_Crosswalk | efc424807a5434df1d5c9e8ed51364974643707d | a68aed6e29bd157c95564e7af2e3a26191813e51 | refs/heads/master | 2021-01-18T19:19:04.527505 | 2014-02-06T13:43:21 | 2014-02-06T13:43:21 | 16,070,101 | 1 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 28,297 | 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 "components/autofill/content/renderer/password_autofill_agent.h"
#include "base/bind.h"
#include "base/memory/scoped_ptr.h"
#include "base/messa... | [
"ronan@fridu.net"
] | ronan@fridu.net |
7a1d8dd42fdc9fdce9c94a9195f0d9e2f24da748 | 0b702dbf2674d5b39dc218378e0e3c0b2a387a32 | /src/Source/Hospital/HospitalGameModeBase.cpp | 8976f73cacc8ab21ca46bc996e6087ce560505d4 | [] | no_license | Rohan-Deshamudre/Drone-navigation | ebb73069094d8a73e389e2236c1895947da055b7 | e688538fead8f5bbf7141604cd1196240e71e505 | refs/heads/master | 2022-12-18T19:42:47.679025 | 2020-09-27T13:21:25 | 2020-09-27T13:21:25 | 292,067,554 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 88 | cpp | // Copyright Epic Games, Inc. All Rights Reserved.
#include "HospitalGameModeBase.h"
| [
"deshamudrerohan@gmail.com"
] | deshamudrerohan@gmail.com |
2be296f611f2ee2d12fb5847675161436c67f295 | 07b3a26be5f0c7a69b6aa4f5d1f58b376b35109e | /inside_rect.cpp | 9dcd9b8fbd2efc225e12fd1eee0ed951a348c59e | [] | no_license | milindl/acpr | 226c491e52017383e64e8281f5af24c1b3cd471b | 01c933dc0f0ad2e5322eb5d9b42303cc566d056a | refs/heads/master | 2021-01-10T06:39:55.535914 | 2015-12-07T08:29:24 | 2015-12-07T08:29:24 | 54,714,241 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 735 | cpp |
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <sstream>
using namespace cv;
using namespace std;
bool inside_rect(RotatedRect, Point2f);
int main() {
RotatedRect r1(Point2f(0,0), Size2f(3,4), -55);
Point2f p... | [
"milindl@iitk.ac.in"
] | milindl@iitk.ac.in |
94b2f5fd9d896b7c29727f960eff775f46c741da | 52507f7928ba44b7266eddf0f1a9bf6fae7322a4 | /SDK/BP_BackslickMale02_classes.h | d9c1d54e9fb3d9584a34ad958f548faff783be66 | [] | no_license | LuaFan2/mordhau-sdk | 7268c9c65745b7af511429cfd3bf16aa109bc20c | ab10ad70bc80512e51a0319c2f9b5effddd47249 | refs/heads/master | 2022-11-30T08:14:30.825803 | 2020-08-13T16:31:27 | 2020-08-13T16:31:27 | 287,329,560 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 647 | h | #pragma once
// Name: Mordhau, Version: 1.0.0
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
namespace SDK
{
//---------------------------------------------------------------------------
// Classes
//---------------------------------------------------------------------------
// BlueprintGeneratedClass BP_Backslick... | [
"51294434+LuaFan2@users.noreply.github.com"
] | 51294434+LuaFan2@users.noreply.github.com |
a99111a1b2b3fc109de6c42c0120e613d12a6f99 | c2a3876d2a3d2ab3083c6b5d76179d0ec2c2fa7d | /3 курс/AMO/S½ÑF¬á ña«ínº¬¿/ÇîÄ2014-15/èé-23/âapFÑ¡¬«/5/main.cpp | 72a0d03cc37e455e11f7dd41ad90f1723ae53bf4 | [] | no_license | IvanHorpynych/Politech | d9fd5c419f2be9108c15303feca16b08c225a79d | 167fdb6d9b278b9cce409e6feb2873b1d2b6b883 | refs/heads/master | 2023-04-27T23:58:57.917256 | 2020-06-03T14:41:33 | 2020-06-03T14:41:33 | 268,886,134 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 315 | cpp | #include <iostream>
#include <math.h>
#include "Approx_Legendre.h"
using namespace std;
double f(double x){
return 0.7*x*x*sin(x);
}
int main(){
double a = 2;
double b = 17;
double eps = 10e-2;
cout << "Calculating..." << endl;
AnswerLegendre(f, a, b, eps);
cout << "Ok" << endl;
getchar();
return 0;
}
| [
"i.gorpynych-raduzhen@kyivstar.net"
] | i.gorpynych-raduzhen@kyivstar.net |
a497426acf4bf35c187e1ea0a59bd1e46afd522e | c275d7e762e3a440b2df8fb78382a31b1d392d3f | /solutions/W5_hash_tables/A_set.cpp | 0c549019e465c3ec751a91fb7f62addc08287cb4 | [] | no_license | munraito/made-algo | dd333a12f665254612435314198bcbe62da804c3 | 15e7d11644f376d9715647c9bfb986b78dddb98c | refs/heads/main | 2023-02-14T00:57:57.642341 | 2021-01-10T16:22:25 | 2021-01-10T16:22:25 | 322,673,067 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,648 | cpp | #include <iostream>
#include <sstream>
#include <string>
using namespace std;
// prime constants for hashing and memory
const int M = 1049219;
const int P = 1052083;
class Set {
public:
int h(int x) {
int res = (2 * x % P) % M;
if (x < 0) {
return -res;
} else {
re... | [
"noreply@github.com"
] | noreply@github.com |
739357e6fa81659c5a6e570f8ff239bcc986e44a | d49ef2467d8dd9239376cf65f7ec9470a9e54fd5 | /optimize/Range_Random.cpp | e0f3c869141a9f8d9ab821491e859c21ff5a3f30 | [] | no_license | Gaofei244617/optimize | 439e9a297936c55988d582ac395403ccdffc1e52 | c9a1764cfafd2dfad961ac4965dcb396ded76e05 | refs/heads/master | 2020-03-24T08:05:48.930008 | 2019-01-23T14:11:51 | 2019-01-23T14:11:51 | 142,585,281 | 2 | 0 | null | null | null | null | GB18030 | C++ | false | false | 619 | cpp | #include "range_random.h"
#include <random>
#include <ctime>
namespace opt
{
// 随机数引擎,用于生成一个随机的unsigned整数
// 该引擎对象重载了()运算符
static std::default_random_engine rand_eng((unsigned int)time(NULL));
// 生成区间[min, max)内的 double 类型的随机数
double random_real(const double min, const double max)
{
return std::uniform_real_d... | [
"gaofeibuaa@outlook.com"
] | gaofeibuaa@outlook.com |
edcbc629424ae2c3d7ddd13e28bbf8916978fe56 | a2e04e4eac1cf93bb4c1d429e266197152536a87 | /Cpp/SDK/BP_FishingFish_WildSplash_05_Colour_02_Sandy_functions.cpp | b40dd267bcedc6604a5959e1f2e61e02c05d503c | [] | no_license | zH4x-SDK/zSoT-SDK | 83a4b9fcdf628637613197cf644b7f4d101bb0cb | 61af221bee23701a5df5f60091f96f2cf929846e | refs/heads/main | 2023-07-16T18:23:41.914014 | 2021-08-27T15:44:23 | 2021-08-27T15:44:23 | 400,555,804 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,030 | cpp | // Name: SoT, Version: 2.2.1.1
#include "../pch.h"
/*!!DEFINE!!*/
/*!!HELPER_DEF!!*/
/*!!HELPER_INC!!*/
#ifdef _MSC_VER
#pragma pack(push, 0x01)
#endif
namespace CG
{
//---------------------------------------------------------------------------
// Functions
//----------------------------------------------------... | [
"zp2kshield@gmail.com"
] | zp2kshield@gmail.com |
3c806fd066654a1545721d86dd74583db7a95b10 | 0ffd0c702dd5df0bbb0ce50ed01ee47accef6bfc | /AREA 51/codeINO/matriz-led-v2/matriz-led-v2.ino | 682ecfcb6c2a0da899e9a8a412b72a8210c46ba5 | [
"MIT"
] | permissive | higo-ricardo/ARDUINO | 6831e49578bae38594a7fa806eb10e5fdc3f9eb7 | d0f2b3edf0d17bd5bdc8961925ac2828e5efc257 | refs/heads/master | 2023-04-13T11:57:29.475345 | 2021-05-05T03:03:50 | 2021-05-05T03:03:50 | 256,534,220 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,809 | ino | #include <MD_MAX72xx.h> // Numero de modulos utilizados
//Quantidade de Matrizes
#define MAX_DEVICES 4 // Ligacoes ao Arduino
//Portais Digitais
#define DATA_PIN 4
#define CS_PIN 5
#define CLK_PIN 6
//Definação de objetos
MD_MAX72XX mx = MD_MAX72XX(DATA_PIN, CLK_PIN, CS_PIN, MAX_DE... | [
"hig0@icloud.com"
] | hig0@icloud.com |
034c14bf4d2ba91308528fb429e87d973ee611e2 | 5d83739af703fb400857cecc69aadaf02e07f8d1 | /Archive2/68/a653ae84df80f3/main.cpp | 3aeae06a51192cfc923d03e6c6256504633b23b4 | [] | no_license | WhiZTiM/coliru | 3a6c4c0bdac566d1aa1c21818118ba70479b0f40 | 2c72c048846c082f943e6c7f9fa8d94aee76979f | refs/heads/master | 2021-01-01T05:10:33.812560 | 2015-08-24T19:09:22 | 2015-08-24T19:09:22 | 56,789,706 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 22 | cpp | 1 i\
#!/usr/bin/python | [
"francis.rammeloo@36614edc-3e3a-acb8-9062-c8ae0e4185df"
] | francis.rammeloo@36614edc-3e3a-acb8-9062-c8ae0e4185df |
7fbc9c24c96a864932e8d90cc6bed5ed34e4adee | a8f0f67e5c6fca324515553082ff4217e534f4db | /Sein/Sein/Direct3D12/direct3d12_shader.h | 4f32de02b581ddcaaf4a19c95fab4dca99085f7b | [] | no_license | kkllPreciel/Sein | 90f228be5f39e88da92925052109cae9ddaba11a | 2caabd498145de8ec3145802dd2f1e874988e35e | refs/heads/master | 2021-01-11T22:18:55.140678 | 2018-07-07T14:17:42 | 2018-07-07T14:17:42 | 78,946,017 | 0 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 1,572 | h | /**
* @file shader.h
* @brief シェーダーに関するヘッダファイル
* @author kkllPreciel
* @date 2018/03/20
* @version 1.0
*/
#pragma once
// include
#include <memory>
#include <string>
#include <d3d12.h>
namespace Sein
{
namespace Direct3D12
{
/**
* @brief シェーダー用インターフェイス
*/
class IShad... | [
"zie35-gymiko@jcom.zaq.ne.jp"
] | zie35-gymiko@jcom.zaq.ne.jp |
b9ec3bac09197447528b06f0bbce80a0d30c88f8 | 3ea34c23f90326359c3c64281680a7ee237ff0f2 | /Data/1852/H | 069722bbccdab5bccc73c4d7a2e9802a22bb357e | [] | no_license | lcnbr/EM | c6b90c02ba08422809e94882917c87ae81b501a2 | aec19cb6e07e6659786e92db0ccbe4f3d0b6c317 | refs/heads/master | 2023-04-28T20:25:40.955518 | 2020-02-16T23:14:07 | 2020-02-16T23:14:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 92,522 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | foam-extend: Open Source Cstd::filesystem::create_directory();FD |
| \\ / O peration | Version: 4... | [
"huberlulu@gmail.com"
] | huberlulu@gmail.com | |
f790bdd83f4f07f657007d9bd8e9be1d302f0c10 | bf96898a40eb0d2692dffbb9cca67a4b7c8763d7 | /src/image_cuda_array.hpp | c843a1607ace551ae07caf66b9c9c554ad1df3e7 | [
"BSD-3-Clause"
] | permissive | mpiatka/gpustitch | bd619d4b557640726e163cd76b9c3a76c0fb70bd | be5520b440d44aa45df3e2bdb66969561a091462 | refs/heads/master | 2023-02-12T13:51:47.775448 | 2021-01-06T12:35:40 | 2021-01-06T12:35:40 | 287,005,102 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 651 | hpp | #ifndef IMAGE_CUDA_ARRAY_HPP
#define IMAGE_CUDA_ARRAY_HPP
#include "image.hpp"
namespace gpustitch{
class Image_cuda_array : public Image{
public:
Image_cuda_array();
~Image_cuda_array();
Image_cuda_array(size_t width, size_t height, size_t pitch = 0);
Image_cuda_array(const Image_cuda_array&) = delete;
Image_c... | [
"445597@mail.muni.cz"
] | 445597@mail.muni.cz |
93637614770eb08114e5da99cac9a50001ee4b90 | 900f58248c037ee881d268a7e882cb1d4c43f3f3 | /ActionRPG/Intermediate/Build/Win64/UE4Editor/Inc/ActionRPG/RPGCharacterBase.generated.h | 519c01e26c72fb99977f25eba09383664a9d4fbe | [] | no_license | thomas-mahon/TestProgramming11082020 | 539cea397310b9a3b81e426af93412796f659fd6 | 89f8ab6462f3d77fdfc9dcf67ada7baa8c230d62 | refs/heads/main | 2023-01-06T16:24:34.140888 | 2020-11-08T21:34:36 | 2020-11-08T21:34:36 | 311,159,368 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,446 | h | // Copyright Epic Games, Inc. All Rights Reserved.
/*===========================================================================
Generated code exported from UnrealHeaderTool.
DO NOT modify this manually! Edit the corresponding .h files instead!
========================================================================... | [
"tmahon2391@gmail.com"
] | tmahon2391@gmail.com |
f1ea5e18771576f702c2acd3fac06200decb8055 | 51ff338833118587bdc70828d21e8c9777341f36 | /Source/ArenaBattle/Public/ABGameMode.h | add3f394cda0efb5a589792068678d1d4e893dbf | [] | no_license | bb2002/UE4-ArenaBattle | 5c55b1c51d0760136b57702ae5ea72c95fcc539f | a69b6d97e5d9e46353655736f5d74fbcf3528fb5 | refs/heads/master | 2020-06-22T13:21:53.830920 | 2019-07-19T07:13:24 | 2019-07-19T07:13:24 | 197,721,086 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 607 | h | // Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "ArenaBattle.h"
#include "GameFramework/GameModeBase.h"
#include "ABGameMode.generated.h"
/**
*
*/
UCLASS()
class ARENABATTLE_API AABGameMode : public AGameModeBase
{
GENERATED_BODY()
AABGameMode();
public:
... | [
"5252bb@daum.net"
] | 5252bb@daum.net |
4af6c450c1767d48f1608ef2591b68c07f824939 | 7b9b620c6b949a39983d28a224db1d914b44161b | /tests/ikaruga/core/objects/enemy/test_enemy_type.cc | e64df6eb999769803953158712a5ebe53f73eff6 | [] | no_license | rishisek/cinder-engine | 8aa7bc3c0c5c108ae0f612aa6a4207cd0a52d950 | ec8016d62219ed96b92a9c874659fe3d65496c62 | refs/heads/main | 2023-08-30T02:12:38.564754 | 2021-05-05T03:19:05 | 2021-05-05T03:19:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,718 | cc | //
// Created by rishi on 26-04-2021.
//
#include <catch2/catch.hpp>
#include <serialization_utils/vec2_json.h>
#include <ikaruga/core/objects/enemy/enemy_type.h>
#include <ikaruga/core/objects/enemy/movement/patterns.h>
#include <ikaruga/core/objects/projectile/projectile_factory.h>
namespace ikaruga::objects::enemy ... | [
"rsekhar2@illinois.edu"
] | rsekhar2@illinois.edu |
d32eddf00948c612cc1c2e8293902ad195ba1e94 | 5a53ff0b000ab2c9838b5348fc98e8acd2ff8b2a | /src/Asserv.Nucleo/motorController/MotorController.h | f275d4251c0984ecc619fa1ef4cd34c648d02a8f | [] | no_license | pmrobotix/PMX | 809a89cd5f0ff9d670ea18256d225adf15f011a5 | adb2315446358df1f39ca406d0d1d9ba44d07b4d | refs/heads/master | 2023-07-05T16:26:04.470256 | 2022-12-18T21:52:38 | 2022-12-18T21:52:38 | 39,129,652 | 4 | 2 | null | 2016-10-13T21:09:43 | 2015-07-15T10:00:38 | C++ | UTF-8 | C++ | false | false | 445 | h | #ifndef SRC_MOTORCONTROLLER_MOTORCONTROLLER_H_
#define SRC_MOTORCONTROLLER_MOTORCONTROLLER_H_
class MotorController
{
public:
virtual ~MotorController()
{
}
virtual void setMotorRightSpeed(float percentage) = 0;
virtual void setMotorLeftSpeed(float percentage) = 0;
virtual float getMotorRigh... | [
"christophe.chaudelet@gmail.com"
] | christophe.chaudelet@gmail.com |
0c1289ff13261569c166a35dc56cbd575f4c4667 | 96a66e011b2e8694c03c16bbab2188a15318f4c1 | /chrome/browser/chromeos/login/ui/login_display_host_views.h | c5d4ffaf1c92d7cd8deb7138086721b715963733 | [
"BSD-3-Clause"
] | permissive | adblockplus/chromium | 7e1da0afd5fcd4ff6ee20aa70bc9c13bba54124e | 313b9afa5d39b9d8cc9cf3801b6a07a5af6eb0ae | refs/heads/abp | 2023-03-17T21:12:33.811234 | 2018-06-19T11:19:00 | 2018-06-19T11:19:00 | 141,696,173 | 3 | 1 | NOASSERTION | 2018-11-18T10:53:10 | 2018-07-20T10:02:34 | null | UTF-8 | C++ | false | false | 3,121 | 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 CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOGIN_DISPLAY_HOST_VIEWS_H_
#define CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOGIN_DISPLAY_HOST_VIEWS_H_
#include <memor... | [
"anton@adblockplus.org"
] | anton@adblockplus.org |
58f3918047e1c990208d82e9afbfe8b74134097c | 46534e9ca931f6a92988741ac3e7321ea85de441 | /wejsciowkaPO_lab12/wejsciowka12/wejsciowka_12.cpp | 1072e920dfcf56689d96657b5f9e306d8d2c4172 | [] | no_license | Bajgiel/PO | 5000382fc1e39c489e38c3f88b740279ac8f0fc8 | 0c00d3d015556b455852a8d0893cc50945fa7189 | refs/heads/main | 2023-04-15T18:56:24.967578 | 2021-03-31T13:17:29 | 2021-03-31T13:17:29 | 326,254,327 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,741 | cpp | #define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <string.h>
class SilnikSamochodowy{
public:
SilnikSamochodowy();
SilnikSamochodowy(int, int);
SilnikSamochodowy(SilnikSamochodowy& );
void setPower(int n) { moc = n; }
int getPower() { return moc; }
void setSize(int n) { wymiary = n; }
int getSize() { ... | [
"chudymejl@gmail.com"
] | chudymejl@gmail.com |
3faf4f434d610e176753dac4ed2551ee90dee058 | 600df3590cce1fe49b9a96e9ca5b5242884a2a70 | /content/common/sandbox_linux/android/sandbox_bpf_base_policy_android.h | 79a5d44044b56ae05cdb9473b6b8ad78884c8b94 | [
"BSD-3-Clause"
] | permissive | metux/chromium-suckless | efd087ba4f4070a6caac5bfbfb0f7a4e2f3c438a | 72a05af97787001756bae2511b7985e61498c965 | refs/heads/orig | 2022-12-04T23:53:58.681218 | 2017-04-30T10:59:06 | 2017-04-30T23:35:58 | 89,884,931 | 5 | 3 | BSD-3-Clause | 2022-11-23T20:52:53 | 2017-05-01T00:09:08 | null | UTF-8 | C++ | false | false | 1,147 | h | // Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_COMMON_SANDBOX_LINUX_ANDROID_SANDBOX_BPF_BASE_POLICY_ANDROID_H_
#define CONTENT_COMMON_SANDBOX_LINUX_ANDROID_SANDBOX_BPF_BASE_POLICY_ANDRO... | [
"enrico.weigelt@gr13.net"
] | enrico.weigelt@gr13.net |
599dcc208f1af445d0d1455a90869c890c87e1c1 | bd6e0833eb1373b1e0c9ef05836cbeb5f8de69d7 | /src/nanoFramework.Hardware.Esp32.Bluetooth/Stubs/nanoFramework.Hardware.Esp32.Bluetooth/nanoFramework_Hardware_Esp32_Bluetooth.cpp | 65963db74b649994a9206a61246f7220b45655f1 | [] | no_license | josesimoes/lib-nanoFramework.Hardware.Esp32.Bluetooth | 34b102be284f6237e01c97be68e22f35fb18a582 | b62a246c44c223772f98655ac9beda0fd378ea4e | refs/heads/master | 2022-07-17T22:28:10.302294 | 2020-05-13T21:10:28 | 2020-05-13T21:10:28 | 263,750,698 | 0 | 0 | null | 2020-05-13T21:50:08 | 2020-05-13T21:50:07 | null | UTF-8 | C++ | false | false | 1,493 | cpp | #include "nanoFramework_Hardware_Esp32_Bluetooth.h"
static const CLR_RT_MethodHandler method_lookup[] =
{
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
Library_nanoFramework_Hardware_Esp32_Bluetooth_nanoFramework_Hardware... | [
"andreas@hassmann.com"
] | andreas@hassmann.com |
38c5c90695771b162c54a203964e92c750b0ad9b | 157c466d9577b48400bd00bf4f3c4d7a48f71e20 | /Source/ProjectR/Private/DamageFloater_PS.cpp | 243ba116922088ea50b5fad3d218ed7d103d12e1 | [] | no_license | SeungyulOh/OverlordSource | 55015d357297393c7315c798f6813a9daba28b15 | 2e2339183bf847663d8f1722ed0f932fed6c7516 | refs/heads/master | 2020-04-19T16:00:25.346619 | 2019-01-30T06:41:12 | 2019-01-30T06:41:12 | 168,291,223 | 8 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 14,144 | cpp | // Fill out your copyright notice in the Description page of Project Settings.
#include "ProjectR.h"
#include "DamageFloater_PS.h"
#include "Paper2DClasses.h"
#include "Global/TableManager.h"
#include "Table/ResourceParticleTableInfo.h"
#include "UtilFunctionIntegrated.h"
#include "ProjectRGameMode.h"
#include "Part... | [
"happycap88@gmail.com"
] | happycap88@gmail.com |
448cf7f672a5fa93e90bcc9d2cdeacff9e9f1986 | f144446b9660095176feef1dfb4ca14d11dd0904 | /src/Components/TextLabelComponent.h | fcca246d00a12f4f5afe06ec156686cc32d3a62c | [
"MIT"
] | permissive | marxzeder55/projects | 8a04aba74053394b91d0ed2b57bf1ef44712881c | e1714321e18132fed2d4660abc5400506224a8a4 | refs/heads/master | 2020-09-26T08:41:49.217028 | 2019-12-06T19:46:55 | 2019-12-06T19:46:55 | 226,219,600 | 0 | 0 | MIT | 2019-12-06T01:19:51 | 2019-12-06T01:19:50 | null | UTF-8 | C++ | false | false | 1,263 | h | #ifndef TEXTLABELCOMPONENT_H
#define TEXTLABELCOMPONENT_H
#include <SDL2/SDL.h>
#include <SDL2/SDL_ttf.h>
#include "../FontManager.h"
#include "../EntityManager.h"
#include "../AssetManager.h"
#include "../Game.h"
class TextLabelComponent: public Component {
private:
SDL_Rect position;
std::string... | [
"noreply@github.com"
] | noreply@github.com |
6ea1b2c79ac1fa26292200d5e60f021db20d44f2 | 8bb338def9ac6c55dcd99b0f0ab084c224e7bd7a | /nubscript/nu_string_tool.cc | 6bcbd185c6b653d815632f343fd9a5fdfa725190 | [
"MIT"
] | permissive | eantcal/nubscript | cbe6b8261e4d3e8ef33bbddf90b8e34d83c5d9c3 | 02f738770a14cb476ad39338b3aa4f6f9de01c32 | refs/heads/master | 2021-01-12T11:15:50.572424 | 2017-11-15T18:37:56 | 2017-11-15T18:37:56 | 72,884,683 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 595 | cc | //
// This file is part of nuBScript Project
// Copyright (c) Antonino Calderone (antonino.calderone@gmail.com)
// All rights reserved.
// Licensed under the MIT License.
// See COPYING file in the project root for full license information.
//
/* ------------------------------------------------------------------... | [
"antonino.calderone@gmail.com"
] | antonino.calderone@gmail.com |
677d1cec79aa303d5ab284a80e264b7925e7079b | 957cddafb18ab4f689b9eb56117fc48bb4f29bee | /newman conway sequnce dp.cpp | c3a3347b88eb84ef1a7f0a22c6246a15692046e0 | [] | no_license | woke5176/competitive-programmig | 8e75b9e780146d3a40264f2bd50316bb038b7ed0 | 158d34d3f92b9d0fc162f453b65742dab380384f | refs/heads/master | 2022-12-19T20:00:36.710966 | 2020-10-15T12:12:54 | 2020-10-15T12:12:54 | 295,110,899 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 233 | cpp | #include <bits/stdc++.h>
using namespace std;
int main(){
// element to be printed
int n;cin>>n;
int dp[n+1];
dp[0] = 0;
dp[1] = dp[2] = 1;
for(int i=3;i<=n;i++)
dp[i] = dp[dp[i-1]] + dp[i-dp[i-1]];
cout<<dp[n];
}
| [
"65066480+woke5176@users.noreply.github.com"
] | 65066480+woke5176@users.noreply.github.com |
01a29109f36daaf956a8966eea8784870269fbf3 | b3e4a298b96a3dfd549205a25d5656c7775ff0a3 | /Lab Programs/week7_d.cpp | aa109c0fc765669f0bcccee0c164d2e60a444031 | [] | no_license | VasireddyGanesh/Cpp-Basic-Programs | d658de4a41dada6c9f073d1fbbebe33fa1bc3374 | 01f11d875566ee22f965fd2dca450a89e428a6dc | refs/heads/main | 2023-06-04T20:47:49.081555 | 2021-06-24T13:23:41 | 2021-06-24T13:23:41 | 379,928,226 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 413 | cpp | //Hierarchical Inheritence.
#include<iostream>
using namespace std;
class X{
public :
X(){
cout<<"X Class Constructor is called"<<endl;
}
};
class Y : public X{
public :
Y(){
cout<<"Y Class Constructor is called"<<endl;
}
};
class Z:public X{
public :
Z(){
cout<<"Z Class... | [
"noreply@github.com"
] | noreply@github.com |
f0f45925b522da0459d0321b3ec86796082f87ce | 9eb699ddea818dd338fd6f20c8496f091f4f855a | /malloc예제연습.cpp | 65ab686eaeda6c3f071eaa970abeec5a330952e5 | [] | no_license | dhkdwk1130/practice | aa15bef207c4f5349ac44a73d18dbf670b27cd6c | 5a6f0370a4a4d9fe50c1359515717b91c0e840a0 | refs/heads/master | 2021-07-03T15:07:08.162868 | 2019-03-21T00:06:07 | 2019-03-21T00:06:07 | 114,850,118 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 158 | cpp | #include<stdio.h>
int main()
{
int lcd, q, p, r;
scanf("%d %d", &q, &p);
while (r != 0)
{
//
r = p % q;
p = q;
q = r;
}
printf("lcd : %d", q);
} | [
"dhkdwkaudgns@naver.com"
] | dhkdwkaudgns@naver.com |
3ab9c38a39bea6e8a5865458865fce2df32a3470 | bb6ebff7a7f6140903d37905c350954ff6599091 | /third_party/skia/src/gpu/GrInOrderDrawBuffer.cpp | deea72b90d961197fb148a4f0bf5090078122d34 | [
"LGPL-2.0-or-later",
"GPL-1.0-or-later",
"MIT",
"Apache-2.0",
"BSD-3-Clause"
] | permissive | PDi-Communication-Systems-Inc/lollipop_external_chromium_org | faa6602bd6bfd9b9b6277ce3cd16df0bd26e7f2f | ccadf4e63dd34be157281f53fe213d09a8c66d2c | refs/heads/master | 2022-12-23T18:07:04.568931 | 2016-04-11T16:03:36 | 2016-04-11T16:03:36 | 53,677,925 | 0 | 1 | BSD-3-Clause | 2022-12-09T23:46:46 | 2016-03-11T15:49:07 | C++ | UTF-8 | C++ | false | false | 36,452 | cpp | /*
* Copyright 2011 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "GrInOrderDrawBuffer.h"
#include "GrBufferAllocPool.h"
#include "GrDrawTargetCaps.h"
#include "GrTextStrike.h"
#include "GrGpu.h"
#include "GrIndexBuffer.h"
#include... | [
"mrobbeloth@pdiarm.com"
] | mrobbeloth@pdiarm.com |
12a59952d2ab7224735c8edb0079f02139e59924 | 41ee2d69b6af0a3200178d7930e74e58cc43b742 | /src/function/functionbase.h | cae9f0bd90ce3f6b9b81406abd93185f269fdf1e | [] | no_license | jylc/TSTL | a54efe5db6bf4b8f816c09a7512319f69540c80f | a3445bc4976d9b5fc0b5947e1e092cf2077149d2 | refs/heads/master | 2022-12-11T16:20:11.925921 | 2020-08-31T02:49:43 | 2020-08-31T02:49:43 | 288,062,242 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 859 | h | #pragma once
#ifndef _FUNCTIONBASE_H_
#define _FUNCTIONBASE_H_
namespace TSTL
{
//仿函数
/*
* unary_function 用来呈现一元函数的参数类型和返回值类型
* TL 规定,每一个 adaptable unaty function 都应该继承 unary_function
*/
template <typename _Arg,typename _Result>
struct unary_function
{
typedef _Arg argument_type;
typedef _R... | [
"wxb1737450829@126.com"
] | wxb1737450829@126.com |
9ef9ab483b5afcbe8668a1caeca8b9db9c4cb437 | 258266ae9f3858ee0fb66a3049d0044b970c4428 | /design.cpp | 60b7f83d72e38e4dc4051959834cbecbb12c540b | [] | no_license | mcchu/firmware-initializer | 01924c63e99bbd81b2715140b2357b01c4d011dd | 71fb6067b8dbcddf48327068b1c31f85bef8065b | refs/heads/master | 2021-01-13T03:57:56.948072 | 2017-01-06T02:35:32 | 2017-01-06T02:35:32 | 78,158,721 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,148 | cpp | #include <ostream>
#include <vector>
#include <map>
#include <string>
#include "gates.h"
#include "net.h"
#include "design.h"
using namespace std;
// Constructor @param[in] n module name of the design
Design::Design(string n) : desname(n) { }
//Destructor
Design::~Design()
{
// dealloc memory from map... | [
"noreply@github.com"
] | noreply@github.com |
803414c254094bbc4a63335744c3053a5a00078d | 46fe0f55257e00fe75c3a1ebfc72c011735ca8f0 | /src/Application/ImageKitPlugins/ImageKitEffects/ImageKitEffectsPlugin.cpp | 9213c2c33f28f5b483f6901cfbcf6701e65e62bc | [] | no_license | Stepdan/ImageKit | 45b26c85145b2d8ffc06b398ce04245b8a4152f2 | 44ffe1f93d0493432b1e5e2d17f3ca7c08850a63 | refs/heads/master | 2020-06-07T14:12:04.566877 | 2019-06-25T10:40:17 | 2019-06-25T10:40:17 | 193,039,325 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,593 | cpp | #include <QPointer>
#include <QToolButton>
#include <QWidget>
#include "src/Application/ImageKitPlugins/Interfaces/ImageKitAction.h"
#include "src/Application/ImageKitPlugins/ImageKitUtil/UI/PluginButton.h"
#include "UI/ImageKitEffectsWidget.h"
#include "ImageKitEffectsPlugin.h"
namespace ImageKit{
class ImageKitE... | [
"d.stepin@movavi.com"
] | d.stepin@movavi.com |
5ff85d5f6da70db347e49379c125b077f65cc502 | c1a2befc19abff0cb476618e33004a2c8ed3b01f | /tensorflow/core/lib/io/zlib_inputstream.cc | b13931c440213b5619c2e398cf43af56ed0d535d | [
"Apache-2.0"
] | permissive | SatishGitHubs/TensorFlow | 842ede88c31157ab886c8e01b91f3170c38d5395 | 422b17b34f4f1380d2e487b3509bb97ff726edca | refs/heads/master | 2022-10-20T05:14:39.748631 | 2016-09-20T13:19:29 | 2016-09-20T13:19:29 | 68,717,129 | 0 | 1 | Apache-2.0 | 2022-09-30T19:31:40 | 2016-09-20T13:55:53 | C++ | UTF-8 | C++ | false | false | 6,433 | cc | /* Copyright 2016 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or a... | [
"gardener@tensorflow.org"
] | gardener@tensorflow.org |
16e43a4c59068befda231a435b33e3ee9990939b | 8d349418e75216a70592b90bd13cdc7eb7448cc4 | /constructor/singleton.cc | f724f99439839e262662902078ce37dcc0257691 | [] | no_license | wenjinwong/designPattern | d324353b18fe3ffdc7cd2a6a7309ae9194981052 | 309c8d47eab240e2fb34ffffc71d9d1975a79753 | refs/heads/master | 2020-09-02T02:00:46.434615 | 2019-11-04T12:51:31 | 2019-11-04T12:51:31 | 219,108,843 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 375 | cc | #include<iostream>
class singleton {
public:
static singleton *instance() {
if(!_instance) {
_instance = new singleton;
}
return _instance;
}
protected:
singleton() {}
private:
static singleton *_instance;
};
singleton *singleton::_instance = 0;
// if not exist, then create it.
in... | [
"wyid_wwj@163.com"
] | wyid_wwj@163.com |
a4b302731f3960f893e371dbe7f38536accc706a | 156fd1d7888faa8b72cff025201641182f8e23a9 | /src/qt/sendcoinsentry.cpp | 4c236a60bf631cd7cb5f65aa28f6bffc3c73429d | [
"MIT"
] | permissive | GilmorHappy/Roguecoin | 32da432ed1316a6542db52bd6bc8de1a7eb3ec9a | a292d742f76b92cb5d076e543494428d6ea6182f | refs/heads/master | 2021-05-11T21:59:56.396743 | 2018-01-15T02:05:22 | 2018-01-15T02:05:22 | 117,479,809 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,617 | cpp | // Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "sendcoinsentry.h"
#include "ui_sendcoinsentry.h"
#include "guiutil.h"
#include "bitcoinunits.h"
#include "addressbo... | [
"jrad99smith@gmail.com"
] | jrad99smith@gmail.com |
6b4d3b172202f172b9987a3826a02266abff2ef5 | 97c3a0cdc0894e08d2afebbd1a6e86e3233312d2 | /data/okao_client/src/legacy/past/people_recog_info3.cpp | a1820c4ed554fe8522d206149e9f3a968b922ad8 | [
"MIT",
"BSD-2-Clause"
] | permissive | elbaum/phys | 139c17d9e4a5ed257657be9e5a3b4c580c460448 | 6ac580323493a5c6bb6846d039ae51e9ed1ec8b6 | refs/heads/master | 2020-03-21T13:25:09.513340 | 2018-06-24T21:05:43 | 2018-06-24T21:05:43 | 138,604,505 | 0 | 0 | MIT | 2018-06-25T14:15:26 | 2018-06-25T14:15:26 | null | UTF-8 | C++ | false | false | 8,274 | cpp | /*
2015.4.18-------------------------------
とりあえずUnknown処理
どういうアルゴリズムで?
2015.4.6--------------------------------
persons[0]の内部を埋めたい
そのためには、okao_idとname, grade, laboratoryを結びつけておく必要がある
2015.3.5--------------------------------
一位と二位の投票数を使って
人物信頼度の比を求める
信頼度投票指標 = 一位の投票数/二位の投票数
信頼度投票指標が2以上なら、確定
*/
#include <ros/ros.h>... | [
"jpwco@bitbucket.org"
] | jpwco@bitbucket.org |
4ca879afb0cf250cc331f5bfcc47a9cf75d1573d | 01adbc467131df4c6c54c6a6a30d863983d24224 | /proiectpoocomun/proiectpoocomun/StudentRole.cpp | e29eb2f8821b360384989f8d65c8d6aa25e0c4a6 | [] | no_license | Motostivuitor/proiectpoocomun | 040451ca6238f453c6631d30a5f860907e041cb4 | 36fc1deed66171ba2c19bf7f6f72eff267d4de17 | refs/heads/master | 2020-04-11T03:39:15.625170 | 2018-12-12T12:22:43 | 2018-12-12T12:22:43 | 161,484,129 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 88 | cpp | #include "StudentRole.h"
StudentRole::StudentRole()
: Role(Role::STUDENT_ROLE)
{}
| [
"noreply@github.com"
] | noreply@github.com |
ebae71c5fd778e60ee4458b60fec4637e75f55c1 | ae956d4076e4fc03b632a8c0e987e9ea5ca89f56 | /SDK/TBP_ContextualHelp_Diablerie_classes.h | 48ae51d8d7f962ad7d78612926e97e28758b77e9 | [] | no_license | BrownBison/Bloodhunt-BASE | 5c79c00917fcd43c4e1932bee3b94e85c89b6bc7 | 8ae1104b748dd4b294609717142404066b6bc1e6 | refs/heads/main | 2023-08-07T12:04:49.234272 | 2021-10-02T15:13:42 | 2021-10-02T15:13:42 | 638,649,990 | 1 | 0 | null | 2023-05-09T20:02:24 | 2023-05-09T20:02:23 | null | UTF-8 | C++ | false | false | 1,463 | h | #pragma once
// Name: bbbbbbbbbbbbbbbbbbbbbbblod, Version: 1
/*!!DEFINE!!*/
/*!!HELPER_DEF!!*/
/*!!HELPER_INC!!*/
#ifdef _MSC_VER
#pragma pack(push, 0x01)
#endif
namespace CG
{
//---------------------------------------------------------------------------
// Classes
//-------------------------------------------... | [
"69031575+leoireo@users.noreply.github.com"
] | 69031575+leoireo@users.noreply.github.com |
5376497c9a13481f2cf7f06e0f81d988e2234169 | 7d6cc729c26e66ae1b63822d29d38fbd41161f1d | /catkin_ws/src/dam_driver/firmware/Dam.h | ff058e2fdf2cc73b20e04ad51f8069257b8dd9e7 | [
"MIT"
] | permissive | NUMarsIce/NU-PRISMM | 189c699c6917cf386cf7e24a0b3e98c52bf8da97 | 58441faedbe8d9f55dac666ea4b294d8319b112b | refs/heads/master | 2022-11-27T23:20:53.565217 | 2020-08-02T14:55:28 | 2020-08-02T14:55:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,595 | h | #ifndef _DAM_H_
#define _DAM_H_
//includes
#include <ACS712.h>
#include <ACS712_AC.h>
#include <AccelStepper.h>
#include <HX711.h>
#include <ros.h>
#include <prismm_msgs/dam_data.h>
#include <prismm_msgs/getBool.h>
#include <MovingAverageFilter.h>
#include <Servo.h>
//
#define STP_Y_ACCEL 2000
#define STP_X_ACCEL 80... | [
"spyguyian@gmail.com"
] | spyguyian@gmail.com |
082940c55c4831367dfeed5b92e08bc75337a056 | 6f5657ec5ff03481acf8f9737c82cc066f9a5f3d | /main.cpp | 6e794d44eb73d1ad84934f991a5f85645956cff5 | [] | no_license | ParkHeeseung/OpenGl-PS-TM | ba6567de20ace478822f884771cfe672d41fc8f7 | e67d5055975c2d6848dd11264e97a188a93d267f | refs/heads/master | 2020-05-22T07:34:43.597258 | 2019-05-12T14:55:30 | 2019-05-12T14:55:30 | 186,268,104 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,073 | cpp | // Defines the entry point for the console application.
//
#include <GL/glew.h>
#include <GL/freeglut.h>
#include <iostream>
#include <string>
#include <fstream>
#include <chrono>
#include "transform.hpp"
#include "Shader.h"
#include "vec.hpp"
#include "mat.hpp"
#include "transform.hpp"
#include "S... | [
"gmltmd4493@gmail.com"
] | gmltmd4493@gmail.com |
ae0dce854d11b3c29215e6a442da1b3c4c7cacd8 | 20c6dfeb514a785aeca643081d50fa66c5f0a630 | /TEST/GRADER/PLUS.cpp | 0faa8a1b7f89a227bc1cfe740a0be9381246e361 | [] | no_license | tluan97/Competitive-programming-code | d0f96f0eca81d3ec8fa685c4deb2d04330354d6c | 91fd693805b5fe33951b740d84c74cebea882b14 | refs/heads/master | 2021-06-22T23:30:44.273949 | 2020-11-14T02:22:37 | 2020-11-14T02:22:37 | 134,262,360 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 360 | cpp | #include <bits/stdc++.h>
using namespace std;
typedef long long LL;
const string TEST_NAME = "PLUS";
void luan(){
LL a,b;
cin>>a>>b;
cout<<a+b;
}
int main(){
ios::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
freopen((TEST_NAME+".INP").c_str(),"r",stdin);
freopen((TEST_NAME+".OUT").c_str(),... | [
"luan.it.sgu@gmail.com"
] | luan.it.sgu@gmail.com |
df66e2eb9223a57dde6a803d581e8d168ddcfc8e | 8e36b81dee6a5d10a805a70429c88a10b738ccc2 | /Assignment4/Node.cpp | b621472993c0180cb29bcfe355c68ff71e73173d | [] | no_license | tevans24/CS-360 | a5c9f8ecdc2b703a0916b8f8bf08482dec80e923 | 7625420ad3454b32ba8da2d73d2d0bedea04c777 | refs/heads/master | 2020-03-08T21:43:48.527540 | 2018-06-08T18:55:36 | 2018-06-08T18:55:36 | 128,413,106 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,041 | cpp | /**********************************************************
Taylor Evans
CS 360
Assignment 4
This file is the .cpp file for the Node class.
This file contains the constructor for creating a
node, a destructor to delete the node, a getValue
method, and get left and right node and a set le... | [
"evanstr@eou.edu"
] | evanstr@eou.edu |
d53f3e5033fb5ba8a882bd666093295a0b0bc2a0 | c07a44016da3ae7920d581754ea07cab54d4e6e9 | /13- Linked Lists/count_occurrence_of_no.cpp | f444d908094cb247d0a77b4a052892d16cdc7a83 | [
"MIT"
] | permissive | zee-bit/C-plus-plus-Algorithms | 4f8cced9695bb9e430a789767bd56dcebc6a7caf | e8351f6b54aebf6e61cbf7869fd40d19ab3b370e | refs/heads/master | 2023-02-04T05:39:05.769862 | 2020-10-02T09:22:25 | 2020-10-02T09:22:25 | 300,564,794 | 0 | 0 | MIT | 2020-12-25T19:16:55 | 2020-10-02T09:27:02 | null | UTF-8 | C++ | false | false | 700 | cpp | #include<iostream>
using namespace std;
class node{
public:
int data;
node*next;
node(int d){
data=d;
next=NULL;
}
};
void insert(node*&head,int data){
if(head==NULL){
head= new node(data);
return;
}
else{
node*tail= head;
while(tail->next!=NULL){
tail= tail->next;
}
return;
}
}
v... | [
"dev.18715@knit.ac.in"
] | dev.18715@knit.ac.in |
9135dd1f158f6c755c79160acdac9ba5719dc39a | e5a8bb042f94d2442a38f0d07aee8e1edc2b8183 | /src/device_trezor/trezor/messages_map.hpp | be7e90c8e1412c2ff99a8b32192b89c648c7fafc | [
"BSD-3-Clause",
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | ahmyi/Torque | ffdf8262ff844e76c7631b904adf1923c1368509 | 0f537c3bef7560018988d618d6354f277f6aa138 | refs/heads/master | 2022-11-27T01:19:59.034710 | 2022-11-14T17:20:57 | 2022-11-14T17:20:57 | 136,060,620 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,733 | hpp | // Copyright (c) 2017-2019, The Monero Project
//
// 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
/... | [
"cryptoamity@gmail.com"
] | cryptoamity@gmail.com |
f73096e8f510115e3c96e8ffe749e7378f434046 | 0ff46001ffdfe6fd7dee3abcc16ab5709e2d357e | /include/TradeRecord.h | dd28681b7df8e764abf0a4aa4e87961262da7471 | [] | no_license | ajayms1980/SimpleStockMarket | 0752c438f7cd0f5e42a18e284863f5d340b70f6a | 568df6869fb448c82d4959549e458502215cb427 | refs/heads/master | 2021-04-12T02:57:33.131261 | 2018-03-21T23:11:22 | 2018-03-21T23:11:22 | 125,759,795 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,426 | h | /*
* File: TradeRecord.h
* Author: ajay.kumar
*
* Created on 11 March 2018, 08:34
*/
#ifndef TRADERECORD_H
#define TRADERECORD_H
#include <iostream>
#include "StaticData.h"
class TradeRecord
{
public:
TradeRecord(const std::string& epic,
const std::string& tradeId,
double quantity,
double price,
BS_... | [
"najane.sharma@gmail.com"
] | najane.sharma@gmail.com |
ae08de5eaec25eec4b507fabcc0525c03ff5c772 | 1514454af85889e6e6e7648f84a8e16510cb974a | /GenKey_c.cpp | 719e0bf86f56c15a49650f542b9abb88cd1ff3ba | [] | no_license | massimo299/inner-product-db | 118b318bfeccdb77ae97b0a12d6ffed0501a7236 | 277138743e40aaaab6b24bfa715eba352181cc42 | refs/heads/master | 2020-05-21T12:29:04.563624 | 2017-08-02T10:35:02 | 2017-08-02T10:35:02 | 49,062,054 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,042 | cpp | #include <iostream>
#include <chrono>
#include <string>
#include <sstream>
#include <fstream>
#include "pairing_3.h"
#include "aoe-const.h"
#include <sys/timeb.h>
#define VERBOSE
int getMilliCount(){
timeb tb;
ftime(&tb);
int nCount = tb.millitm + (tb.time & 0xfffff) * 1000;
return nCount;
}
int getMilliSpan(i... | [
"gaslabunisa@gmail.com"
] | gaslabunisa@gmail.com |
da411a598c8d5f0fdae514c4d59444f28d39842c | eb8b5cde971573668800146b3632e43ed6e493d2 | /oneflow/core/kernel/tick_kernel.h | 603debb8acc14bd72eecd5766d8d8fade00abfde | [
"Apache-2.0"
] | permissive | big-data-ai/oneflow | 16f167f7fb7fca2ce527d6e3383c577a90829e8a | b1c67df42fb9c5ab1335008441b0273272d7128d | refs/heads/master | 2023-07-08T21:21:41.136387 | 2021-08-21T11:31:14 | 2021-08-21T11:31:14 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,155 | h | /*
Copyright 2020 The OneFlow Authors. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agre... | [
"noreply@github.com"
] | noreply@github.com |
a1db3b7d57bde1e5ab2e81c18b3d3b3f4c6693d6 | 71df92c09fd1a0aba0230296132c2d92a9d7043c | /interp1/interp_initialize.cpp | 09ec151dd497dbf99cea82fd5e8a527aa780f029 | [] | no_license | fengjianngu/czt | 9474f6b6ff3a3ec53100f96c82679cc79452af92 | 26ee175fcd22436d63f23a3385ad74e08471390c | refs/heads/master | 2020-04-11T05:58:13.908254 | 2018-12-13T01:23:01 | 2018-12-13T01:23:01 | 161,449,291 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 454 | cpp | //
// File: interp_initialize.cpp
//
// MATLAB Coder version : 3.0
// C/C++ source code generated on : 01-Sep-2018 12:06:13
//
// Include Files
#include "rt_nonfinite.h"
#include "interp.h"
#include "interp_initialize.h"
// Function Definitions
//
// Arguments : void
// Return Type : ... | [
"809331826@qq.com"
] | 809331826@qq.com |
27af477852d811cac2f7f25ef9602d7296ebf458 | 083ffdcf34904173720959b89a43be93161cbdd0 | /Conch/source/conch/JCPublicCmdDispath.cpp | 2d1694c44c00b749762c0a52902b38184ec9ef24 | [] | no_license | bearocean/LayaNative1.0 | 1c58f52884d482b961573ca991979ce9e7ed6b1f | c9b2cd6c0b6c68bfc108eb96e05e3647822d7228 | refs/heads/main | 2023-03-19T18:31:51.118756 | 2021-03-09T04:15:48 | 2021-03-09T04:15:48 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 23,364 | cpp | /**
@file JCPublicCmdDispath.cpp
@brief
@author James
@version 1.0
@date 2016_5_27
*/
#include "JCPublicCmdDispath.h"
#include <util/Log.h>
#include "WebGLRender/JCWebGLRender.h"
#include "JCCmdDispatchManager.h"
#include "Html5Render/JCHtml5Render.h"
#include "JCConchRender.h"
#include "JCConch.h"
#include ... | [
"775331175@qq.com"
] | 775331175@qq.com |
4bfcf312c26e384cdb85135bf0d4e4182b7d12bb | 118962a80e25d768eb3bff284af2a4bbee4fd234 | /task1/task1.cpp | d735e1779472dc6d063c256d4ca05e18a498bbac | [] | no_license | vd28/course1_lab_3Cpp | 9596e492aaddfbd0d68fcac8a4239920db24a0ca | 03f8c5189e0fb3c877ec28c89c335b5dc10e2117 | refs/heads/master | 2020-03-31T14:52:00.960689 | 2018-10-09T20:15:37 | 2018-10-09T20:15:37 | 152,312,641 | 0 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 1,395 | cpp | /*
Какого типа переменные подойдут для хранения следующей информации:
• Возраст человека Население города Число звезд в галактике
• Один байт ОЗУ Средняя зарплата за год Сведения курит или нет
• Цвет фигуры Длина в мм. Длина в см.
Объявите и проинициализируйте эти переменные, дав имен смысловые имена. Вывести
на... | [
"alalo2804@gmail.com"
] | alalo2804@gmail.com |
d7bb6540908d30a72b134cadbfd877f37b8a2451 | 4503b4ec29e9a30d26c433bac376f2bddaefd9e5 | /XtreamToolkit/v16.4.0/Source/SkinFramework/XTPSkinImage.h | 224ae32408d38763afd2c87f3e9ecf2053fd06fc | [] | no_license | SwunZH/ecocommlibs | 0a872e0bbecbb843a0584fb787cf0c5e8a2a270b | 4cff09ff1e479f5f519f207262a61ee85f543b3a | refs/heads/master | 2021-01-25T12:02:39.067444 | 2018-02-23T07:04:43 | 2018-02-23T07:04:43 | 123,447,012 | 1 | 0 | null | 2018-03-01T14:37:53 | 2018-03-01T14:37:53 | null | UTF-8 | C++ | false | false | 9,177 | h | // XTPSkinImage.h: interface for the CXTPSkinImage class.
//
// This file is a part of the XTREME SKINFRAMEWORK MFC class library.
// (c)1998-2013 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 ... | [
"kwkang@3e9e098e-e079-49b3-9d2b-ee27db7392fb"
] | kwkang@3e9e098e-e079-49b3-9d2b-ee27db7392fb |
cd699334be973f497044cf3e144ed6f400688750 | d34f3c73c4ed804f48fbed476f22013e5d951daa | /c++/list/add_element.cpp | e09cb114f892c5d9674dcc2aaa84df28c92fb000 | [] | no_license | brxue/sandbox | 7ad7ea76130f0edc2ff9fc62c192131fce1242d1 | a9cc9edd9e2233b1b90c822edd43c3c480385c58 | refs/heads/master | 2021-06-18T17:14:18.698560 | 2017-06-19T15:25:53 | 2017-06-19T15:25:53 | 13,215,820 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 734 | cpp | #include <list>
#include <vector>
#include <cassert>
#include <string>
using namespace std;
void add_element()
{
list<int> a; // An empty list
assert(a.size() == 0);
a.push_back(0); // Push value 0 to the end
a.push_back(1); // Push value 1 to the end
a.push_front(-1); // Push value -1 to the front
assert... | [
"brxue@outlook.com"
] | brxue@outlook.com |
92764d03078d5b6bb4a3a0c078985903981f90d7 | 37cca16f12e7b1d4d01d6f234da6d568c318abee | /src/rice/p2p/replication/ReplicationImpl.hpp | 22380eb19daa240469dffae9243ddb190764a450 | [] | no_license | subhash1-0/thirstyCrow | e48155ce68fc886f2ee8e7802567c1149bc54206 | 78b7e4e3d2b9a9530ad7d66b44eacfe73ceea582 | refs/heads/master | 2016-09-06T21:25:54.075724 | 2015-09-21T17:21:15 | 2015-09-21T17:21:15 | 42,881,521 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,178 | hpp | // Generated from /pastry-2.1/src/rice/p2p/replication/ReplicationImpl.java
#pragma once
#include <fwd-pastry-2.1.hpp>
#include <java/lang/fwd-pastry-2.1.hpp>
#include <rice/environment/fwd-pastry-2.1.hpp>
#include <rice/environment/logging/fwd-pastry-2.1.hpp>
#include <rice/p2p/commonapi/fwd-pastry-2.1.hpp>
#include... | [
"sgurjar@adobe.com"
] | sgurjar@adobe.com |
c8ce31a63312875aa10e8189cefd2ac03b2bdc1a | 1a8a4b9697ce2699d441cc5380c181d2a9997db7 | /qtango/utils/tpropertylabel.h | 1c476c64fa01169b10edd69ef4a85c58fce3ed78 | [] | no_license | HighwayStar/qtango | 598c7817f6e6be2874d7a062844f02a27b520f9c | 52aca8ab69e0b54d26c6418999df4bb9f3ae39e1 | refs/heads/master | 2021-07-07T09:30:18.396096 | 2017-10-04T03:04:11 | 2017-10-04T03:58:27 | 105,730,068 | 1 | 0 | null | 2017-10-04T04:01:23 | 2017-10-04T04:01:23 | null | UTF-8 | C++ | false | false | 1,782 | h | #ifndef TPROPERTYLABEL_H
#define TPROPERTYLABEL_H
#include <QLabel>
class TPropertyLabelPrivate;
class PropertyReader;
/** \brief A QLabel which sets its text according to a device or class property value
*
* This widget is a QLabel which sets its text according to a device or class property value.
*
* \par ... | [
"delleceste@gmail.com"
] | delleceste@gmail.com |
b4f10dcd2638b1d8ab9694c05f5b83e797b4330b | 865dd28f318c61533c3df0453dadf176c0fd6258 | /loginwindow.h | 4ac2848f8926d22fe0914712285b43da98e7a561 | [] | no_license | ZweiBein/QtLogin | 26b6ad9a232279198ec9bdb71f595448b553fb18 | 0031dd560eba0a652a0dfa55e3cfe5e849ac4b08 | refs/heads/master | 2020-06-23T02:51:34.716439 | 2019-07-31T12:32:29 | 2019-07-31T12:32:29 | 198,483,840 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 920 | h | #ifndef LOGINWINDOW_H
#define LOGINWINDOW_H
#include <QWidget>
//#include <QMessageBox>
#include <QJsonObject>
#include <QTranslator>
#include "browserwindow.h"
namespace Ui {
class LoginWindow;
}
class LoginWindow : public QWidget
{
Q_OBJECT
public:
explicit LoginWindow(QWidget *parent = ... | [
"latterligadresse@gmail.com"
] | latterligadresse@gmail.com |
fbf9a13ac8659f9d212dd59c6e46a3cb7c069248 | 3370485557718dc37d42da0b7b2ed7d866987658 | /LCard/lusbapi 3.4/E14-140/Examples/MicroSoft Visual C++ 6.0/MultiModules/MultiModules.cpp | 356aa420fa9614e6fa04eef437ddd97bf0742c3c | [] | no_license | shybzzz/Vector | b750ba2b2bdf1275e4374f7cebf2597fb9b13846 | fcf11586010726e19927c60697766051452bd76b | refs/heads/master | 2021-01-18T20:08:56.409713 | 2016-07-01T04:43:15 | 2016-07-01T04:43:15 | 62,362,867 | 0 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 17,351 | cpp | //******************************************************************************
// Модуль E14-140.
// Консольная программа организует потоковый ввод данных одновременно
// с нескольких модулей.
//******************************************************************************
#include <stdio.h>
#include <conio.h>
#inclu... | [
"rostykrom@yahoo.com"
] | rostykrom@yahoo.com |
e0efefd471a6624fbc7632bdbc9bb076f3f68f9e | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/rsync/gumtree/rsync_new_log_729.cpp | 9d1934ce8a316817c3541e0fa6bf41e97a8bd7ae | [] | 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 | 49 | cpp | flist_new(WITH_HLINK, "create_flist_from_batch"); | [
"993273596@qq.com"
] | 993273596@qq.com |
6a8ce7ce2341a4abe3f9c5322d9f96ec85b69f64 | 376e1818d427b5e4d32fa6dd6c7b71e9fd88afdb | /comms/estic/patches/patch-spunk_str.cc | 38059de8855aa5840b184be9f5b2876dd6ede8c7 | [] | no_license | NetBSD/pkgsrc | a0732c023519650ef821ab89c23ab6ab59e25bdb | d042034ec4896cc5b47ed6f2e5b8802d9bc5c556 | refs/heads/trunk | 2023-09-01T07:40:12.138283 | 2023-09-01T05:25:19 | 2023-09-01T05:25:19 | 88,439,572 | 321 | 138 | null | 2023-07-12T22:34:14 | 2017-04-16T20:04:15 | null | UTF-8 | C++ | false | false | 247 | cc | $NetBSD: patch-spunk_str.cc,v 1.1 2012/11/16 00:37:47 joerg Exp $
--- spunk/str.cc.orig 1996-12-01 11:23:50.000000000 +0000
+++ spunk/str.cc
@@ -31,6 +31,7 @@
#include "stream.h"
#include "streamid.h"
+#undef CS
// Register class String
| [
"joerg@pkgsrc.org"
] | joerg@pkgsrc.org |
5f416ddd605bd821da26fd978ffd5c02c610600c | 873aae9ee43308cc91d6c925d1fcead3b9c0a97b | /Solutions/Numbers/PowerPrimeFactors.cpp | 4ee7447acaf2528eb21a689ce5651090cc18bb9b | [
"MIT"
] | permissive | gourishbiradar/Projects | 09d3fd79231978f314842a02e240e8745879d70e | 453bfcf08adb4de14daba1f6e21c9ef75102bbdb | refs/heads/master | 2021-09-04T19:06:19.307551 | 2018-01-21T13:55:24 | 2018-01-21T13:55:24 | 117,327,679 | 0 | 0 | null | 2018-01-13T08:34:02 | 2018-01-13T08:34:01 | null | UTF-8 | C++ | false | false | 1,085 | cpp | #include <iostream>
#include <vector>
#include <utility>
#include <string.h> //to use memset
using namespace std;
void LPF(int N, int s[])
{
memset(s,0,N);
s[1]=1;
s[2]=2;
for(int i=4;i<=N;i+=2)
{
s[i]=2;
}
for(int i=3;i<=N;i+=2)
{
if(s[i]==0)
{
s[i]=... | [
"biradar.gourish@gmail.com"
] | biradar.gourish@gmail.com |
32d5c3330507308cf4ca15108b40b22ad55d4602 | 799d451f51052cc1f9a5433d65b5da358f0cba11 | /proptree.h | 4bc06ad68a827bb5d2a55b49086b8fd5e627edef | [] | no_license | GeeveGeorge/Intellidetect | d5f7db859209d2a6be491181da16f4fd65af3c41 | eb02bda6fbb3b66af723b17ac603bdb00c9edc01 | refs/heads/master | 2021-01-09T20:08:06.853190 | 2017-02-04T03:40:37 | 2017-02-04T03:40:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,323 | h | #ifndef PROPTREE_H
#define PROPTREE_H
#include <constants.h>
struct propertyTree{
string data;
vector< pair<string, propertyTree> > childNodes;
public:
bool load(string);
string getProperty(string);
void setProperty(string,string);
void setPropertyIfNotSet(string,st... | [
"chaitanya2.1999@gmail.com"
] | chaitanya2.1999@gmail.com |
fd1738132628c2edd7ba11c3fb263009e1e0b6a5 | 740fdf1cca74bdb8f930a7907a48f9bdd9b5fbd3 | /content/browser/devtools/render_frame_devtools_agent_host.h | df0f47fc9f3377517feea8dce6421bcc5372d36c | [
"BSD-3-Clause"
] | permissive | hefen1/chromium | a1384249e2bb7669df189235a1ff49ac11fc5790 | 52f0b6830e000ca7c5e9aa19488af85be792cc88 | refs/heads/master | 2016-09-05T18:20:24.971432 | 2015-03-23T14:53:29 | 2015-03-23T14:53:29 | 32,579,801 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 5,064 | h | // Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_BROWSER_DEVTOOLS_RENDER_FRAME_DEVTOOLS_AGENT_HOST_H_
#define CONTENT_BROWSER_DEVTOOLS_RENDER_FRAME_DEVTOOLS_AGENT_HOST_H_
#include <m... | [
"hefen2007303257@gmail.com"
] | hefen2007303257@gmail.com |
40a13a786c862b00a5eb5f0e5872e1a10f117879 | 6420c5a67ba01d85ba56e82f7cff2604199a24d4 | /Exercise06B/Exercise06B/main.cpp | 04058c47eb3ab5f589b73c30c1576c5ee0fef8e9 | [] | no_license | gentigashi/Cplusplus-tasks | 84366a02ababd333e44006b450ac0b3eaf1d3e91 | f29bec67610187b03c021a19035fd8ba731d5559 | refs/heads/main | 2023-01-24T18:46:21.307214 | 2020-12-15T12:08:55 | 2020-12-15T12:08:55 | 314,282,986 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,255 | cpp | //
// main.cpp
// Exercise06B
//
// Created by Genti Gashi on 15.11.2020.
// Copyright © 2020 Genti Gashi. All rights reserved.
//
#include <iostream>
#include <fstream>
#include <string>
#include <sstream>
#include <algorithm>
#include <vector>
#include <iomanip> // std::setiosflags
#include "Day.h"
#include "Ti... | [
"noreply@github.com"
] | noreply@github.com |
c27a6f5353a09abe56e2ec8cb08bb1d418b13b12 | fb28c10f8255ded7982f6a2bbeb4453ddedad589 | /exampleB2b-TBB-granular.cc | f2e5ed7eb1ddda4c6d891b6e53a83766ef85c5cb | [] | no_license | makortel/B2b-TBB-granular | b2bc07a9d9513a27bc0f5855e26ea3112dc0416b | bfea26a4b99c4dd5c7de7416202ba5c30f88a0f0 | refs/heads/master | 2020-12-25T04:54:00.828207 | 2014-06-11T08:38:34 | 2014-06-11T08:38:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,638 | cc | //
// ********************************************************************
// * License and Disclaimer *
// * *
// * The Geant4 software is copyright of the Copyright Holders of *
// * the Geant4 Collaboration... | [
"john.apostolakis@cern.ch"
] | john.apostolakis@cern.ch |
1720263ec19a23207da60179cc300bfc634e0800 | ae992a865457d5f0563618a1a19332cf60426645 | /include/operators/GlobalLpPool.h | fb45c44875402b97183845e7e85d4859a9a076fc | [
"Apache-2.0"
] | permissive | Rodio346/dnnc-operators | c948a1d0b15e85b30bb17595d415f4b868ea2c2e | c0a3f55b79fd3b4dc7fa5ae1dc4a11d5afd17fd7 | refs/heads/master | 2020-07-08T18:01:19.345702 | 2019-08-22T07:15:46 | 2019-08-22T07:15:46 | 202,743,304 | 0 | 0 | null | 2019-08-16T14:35:21 | 2019-08-16T14:35:20 | null | UTF-8 | C++ | false | false | 2,611 | h | // Copyright 2018 The AITS DNNC Authors.All Rights Reserved.
//
// Licensed to the Apache Software Foundation(ASF) under one
// or more contributor license agreements.See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership.The ASF licenses this file
// to you under ... | [
"nalinshani14@gmail.com"
] | nalinshani14@gmail.com |
2d80da414668b74abc76081187b0604927c348db | 7951bff8115c96cae40634dfca8520964cdd68e2 | /chapter4/classdefine.cpp | 73746b3f12180511af6ab0d9da82b513393d47ff | [] | no_license | profding-bh/C_Plus_Plus | b764fab6a4e02019e875904b3dac30be858cfdf6 | d87e8adefacbf46c7b3047b66d800ee64544a877 | refs/heads/master | 2021-06-16T08:18:52.398079 | 2017-04-27T10:53:30 | 2017-04-27T10:53:30 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 513 | cpp | /*
http://cdn2.ime.sogou.com/dl/index/1475147394/sogoupinyin_2.1.0.0082_amd64.deb?st=y26oHG-dX1iyE7443HF1cw&e=1491277141&fn=sogoupinyin_2.1.0.0082_amd64.deb
结构体和类都可以用来定义新的类型,
区别:
结构体,在默认情况下,成员(数据成员&成员函数) 是public的。
而 类,在默认情况下,成员(数据成员&成员函数) 是private的。
*/
class 类名{
private:
私有数据成员&私有成员函数
public:
公有数据成员&公有成员函数
};
| [
"920398694@qq.com"
] | 920398694@qq.com |
e88ac1bf64273964da547a013a56fcd0a0c71af4 | c8f3e47d118a2cbb5230ab8e7fafa65a5f071123 | /exercises/session2/quad_reg/MovingQuadReg.cpp | a691a97ad0a8d6ff25087c318000ec0cd3e18f0b | [] | no_license | RyanCargan/CMakeTraining | f0e82bc81328246b032e10d311cbed9cf82204df | 6628538e506e49eec50cb1e500aff0b67728a40e | refs/heads/master | 2022-10-11T05:33:39.789005 | 2020-06-14T09:49:20 | 2020-06-14T09:49:20 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,327 | cpp | // MovingQuadReg.cpp
// Author: Ian Heidenberger
//
// MovingQuadReg calculates an n-deep sliding quadratic regression.
#include "MovingQuadReg.h"
#include <limits>
MovingQuadReg::MovingQuadReg(size_t size):
maxSize(size)
{
}
void MovingQuadReg::addPoint(float t, float y)
{
if(tvals.size() == maxSize)... | [
"jsmith@crackofdawn.onmicrosoft.com"
] | jsmith@crackofdawn.onmicrosoft.com |
09b2e2d057741511e25ac09792423e54134ddb4d | dbc5fd6f0b741d07aca08cff31fe88d2f62e8483 | /tools/clang/test/OpenMP/teams_distribute_shared_messages.cpp | bda88b8d9f7daa436444a5064a4a42cc958b3310 | [
"LicenseRef-scancode-unknown-license-reference",
"NCSA"
] | permissive | yrnkrn/zapcc | 647246a2ed860f73adb49fa1bd21333d972ff76b | c6a8aa30006d997eff0d60fd37b0e62b8aa0ea50 | refs/heads/master | 2023-03-08T22:55:12.842122 | 2020-07-21T10:21:59 | 2020-07-21T10:21:59 | 137,340,494 | 1,255 | 88 | NOASSERTION | 2020-07-21T10:22:01 | 2018-06-14T10:00:31 | C++ | UTF-8 | C++ | false | false | 4,209 | cpp | // RUN: %clang_cc1 -verify -fopenmp %s
// RUN: %clang_cc1 -verify -fopenmp-simd %s
void foo() {
}
bool foobool(int argc) {
return argc;
}
struct S1; // expected-note {{declared here}}
extern S1 a;
class S2 {
mutable int a;
public:
S2():a(0) { }
S2(S2 &s2):a(s2.a) { }
};
const S2 b;
const S2 ba[5];
class S3 ... | [
"yaron.keren@gmail.com"
] | yaron.keren@gmail.com |
b742140e3e87af39e8bf88d880f5ed34b76149b9 | 5e8be2ac3fefbdb980b2b107c3f74b32aea300e2 | /src/vt/registry/auto/collection/auto_registry_collection.h | 14c6d625d5a7bc7faa44c87e441f5c537b3ecaa8 | [
"BSD-3-Clause"
] | permissive | YouCannotBurnMyShadow/vt | 23b73b531f0b9bdfcea41eb5b73c903805bd5170 | 8bbcce879f6dd5e125cf8908b41baded077dfcbe | refs/heads/master | 2023-03-18T22:16:32.288410 | 2021-01-11T20:37:31 | 2021-01-11T20:37:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,562 | h | /*
//@HEADER
// *****************************************************************************
//
// auto_registry_collection.h
// DARMA Toolkit v. 1.0.0
// DARMA/vt => Virtual Transport
//
// Copyright 2019 National Technology & Engineering Soluti... | [
"jliffla@sandia.gov"
] | jliffla@sandia.gov |
3c556104e7a59925572199f9935543468a5fdce1 | 9a488a219a4f73086dc704c163d0c4b23aabfc1f | /branches/action-system-branch/src/ToolbarHandler.cc | 4a8ff3d7f0e269d1b05732edda277d089714a4da | [
"LicenseRef-scancode-unknown-license-reference",
"MIT"
] | permissive | BackupTheBerlios/fluxbox-svn | 47b8844b562f56d02b211fd4323c2a761b473d5b | 3ac62418ccf8ffaddbf3c181f28d2f652543f83f | refs/heads/master | 2016-09-05T14:55:27.249504 | 2007-12-14T23:27:57 | 2007-12-14T23:27:57 | 40,667,038 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,440 | cc | // ToolbarHandler for fluxbox
// Copyright (c) 2003 Simon Bowden (rathnor at fluxbox.org)
// and Henrik Kinnunen (fluxgen at fluxbox.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 ... | [
"(no author)@54ec5f11-9ae8-0310-9a2b-99d706b22625"
] | (no author)@54ec5f11-9ae8-0310-9a2b-99d706b22625 |
1a0e0aeac5b7dc14f57c5ef9baeb87c09d4fa35f | 77094e040e71eba08dd09c230d7300633cd38258 | /install/nav2_msgs/include/nav2_msgs/msg/detail/particle__rosidl_typesupport_fastrtps_cpp.hpp | 3d41dd3f0bcd52a120ac3e21b464433ff2765f14 | [] | no_license | adas598/ros2_ws | b810c3cf53afaf1f297914c4393e96f4b72219b7 | cbbdae46766870bbe5e5195629f1c3589e22e62a | refs/heads/master | 2023-08-06T14:43:55.326617 | 2021-09-17T03:46:39 | 2021-09-17T03:46:39 | 407,172,894 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,043 | hpp | // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__rosidl_typesupport_fastrtps_cpp.hpp.em
// with input from nav2_msgs:msg/Particle.idl
// generated code does not contain a copyright notice
#ifndef NAV2_MSGS__MSG__DETAIL__PARTICLE__ROSIDL_TYPESUPPORT_FASTRTPS_CPP_HPP_
#define NAV2_MSGS__MSG__DETAIL__PARTI... | [
"das.ayush1313@gmail.com"
] | das.ayush1313@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.