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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
ddae6abfa26e9dc67c86027b459688323c0970ec | 81e49766487538c8c121fc37ceaa0f113559667c | /src/wallet/test/vote_tests.cpp | d15b8649c7d30e5fc7ea84bc80337d51bd495bea | [
"MIT"
] | permissive | jinhuaio/paicoin | ebd7a3a110d4399c4a5394208e572c73a6870444 | 09f8029112e7a57548ee5b5202c260f8aee7f2e9 | refs/heads/master | 2023-01-07T15:34:39.100188 | 2020-11-06T03:53:43 | 2020-11-06T03:53:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 45,876 | cpp | //
// Copyright (c) 2017-2020 Project PAI Foundation
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
//
#include "wallet/test/wallet_stake_test_fixture.h"
#include <boost/test/unit_test.hpp>
#include "validation.h"
#include "... | [
"noreply@github.com"
] | noreply@github.com |
999ffed004f3fc715a79c7afbbadbaac29091cd6 | 65a469abb753dc9647fa5488fd65223b3c0c2ec3 | /동빈나/chapter13_DFS_BFS/16.cpp | 20407638c2e432b9719d480ad7b80b0e34db6741 | [] | no_license | namgonkim/DS_Algorithms | 735fbd2ebe8c5b62491cf8ec3fd2051051fb442b | 18b8e1050ce881c7d9a09d062ccb6edd46e63ba1 | refs/heads/master | 2022-03-08T18:57:54.418824 | 2022-02-23T06:43:57 | 2022-02-23T06:43:57 | 245,596,477 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,303 | cpp | #define _CRT_SECURE_NO_WARNINGS
#include<iostream>
#include<vector>
#include<algorithm>
#include<queue>
#include<utility>
#include<stdio.h>
#include<string>
#include<stack>
/*
제목: 연구소
문제: NxM크기의 연구소에서 바이러스를 피해 안전한 영역 크기의 최대값을 구하는 프로그램
유형: DFS
날짜: 2021-05-17
이름: @namgonkim
*/
using namespace std;
int n, m; // 세로 n ... | [
"32921225+namgonkim@users.noreply.github.com"
] | 32921225+namgonkim@users.noreply.github.com |
920f5cf21e3b8e3e44bacd048db74483b8abb0e9 | 9b48ac2884fb28e188bca0644c3ef48482d43825 | /vcmap/ch06/ArchiveTest/mfc-person.cpp | b4e3bdbb40980aaee44cbbfd067b4d98e421bf4c | [] | no_license | skyformat99/mybooks | 3a4f6cc37cd10624d21693bc22d1d0be93c03509 | d0a04f3b1ba271225b6fc23cf8e6d06a88828c09 | refs/heads/master | 2020-03-19T03:58:35.895559 | 2018-05-31T05:49:18 | 2018-05-31T05:49:18 | null | 0 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 845 | cpp | #include "stdafx.h"
#include "mfc-person.h"
IMPLEMENT_SERIAL(CPerson, CObject, 1)
CPerson::CPerson()
{
_name = _T("ÎÞÃûÊÏ");
_age = 0;
_gender = true;
}
CPerson::CPerson(CString name, int age, bool gender)
{
_name = name;
_age = age;
_gender = gender;
}
CString CPerson::getName()
{
return _name;
}
CString C... | [
"bluejoe2008@gmail.com"
] | bluejoe2008@gmail.com |
e96f64558bc61b93df98dff0793122553428695a | 0d346794e50d38d5183f6cab186144afab4ecee2 | /QueryApplication/QueryResult.cpp | 5c64dea3252b0b5b0d2ff64e748c09f008d34bd3 | [] | no_license | dhwgithub/Graduate_Study_Notes | 3af98084e9421cdd113b76a595100494839f2065 | c8ceed353b5a915606df1bdccc2f6adddfc10ca9 | refs/heads/main | 2023-07-12T12:42:26.625492 | 2021-08-25T02:05:50 | 2021-08-25T02:05:50 | 312,781,506 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 354 | cpp |
#include "QueryResult.h"
ostream& print(ostream& os, const QueryResult& qr)
{
os << qr.sought << " occors " << qr.lines->size() << " " << " times " << endl;//输出关键词和出现次数
for (auto num : *qr.lines)
{
os << " \t(line " << num + 1 << ")" << *(qr.file->begin() + num) << endl;//输出关键词所在行
}
return os;
}
| [
"noreply@github.com"
] | noreply@github.com |
423d178c3a91132b0448935d2c6c67d4a02b2e41 | fdf75801d87357e459de29f6507e3351ab17a77f | /Helper/main.cpp | 44e61ae2d48244d2cb25ab5e277c31830a9000f0 | [] | no_license | alate/Helper | deb81f73a19092eea95d6c308226f4b5f0b84a01 | 349dd6fbbaab070f47659596f2bed95c85216fbc | refs/heads/master | 2020-05-17T00:38:59.899775 | 2015-01-12T06:04:03 | 2015-01-12T06:04:03 | 29,077,527 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 176 | cpp | #include "helperdialog.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
HelperDialog w;
w.show();
return a.exec();
}
| [
"alate2000@qq.com"
] | alate2000@qq.com |
6487fd03440e1de67eee966edb3efd0d5eae5942 | a5f0dcefc642a63b46fbeccbf96cdae4177194d6 | /UVA/UVA10935.cpp | 57b430dc7a710d266a4dd08983ebe6b55b413c38 | [] | no_license | caffeines/CPPS | e7808a55136604c6ecba61642553f82daa99e164 | f63b1892fb458b0e7438d18576e99175c21c4c41 | refs/heads/master | 2021-06-26T00:24:57.403001 | 2019-04-21T10:43:51 | 2019-04-21T10:43:51 | 113,913,848 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,484 | cpp | #include <bits/stdc++.h>
using namespace std;
#define ll long long
#define f first
#define s second
#define pb push_back
#define mp make_pair
#define sq(a) (a)*(a)
#define pl printf("\n");
#define pf(n) printf("%d",n)
#define sf(n) scanf("%d",&n)
#define sff(a,b) scanf("%d %d",&a,&b);
#define sfff(a,b,c) scanf("%d %d %... | [
"me.caffeines@gmail.com"
] | me.caffeines@gmail.com |
311e9146aec0c7b765e8e5efd0d0423f9c7c05bc | d0fb46aecc3b69983e7f6244331a81dff42d9595 | /dyvmsapi/src/model/ReportVoipProblemsResult.cc | dec842c9bbe62d053713f22361af18db1b7880ed | [
"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,689 | 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 |
0e36ce72e49cd2cedbe51dd73a1f61b9045de001 | fcf26223091a6e246f715ef3cac97d7da7d1df8d | /max_prob_class.h | b3995fa2d50eb7642405d3c26bf9af77c7cf500a | [] | no_license | PNapi90/Fuzzy-Bayes-Tracking | a9d8dd669da601540020aad756f4bc9437e02ae9 | d15f884e21361f466a4f3dbd75397e8731de8ad3 | refs/heads/master | 2020-03-23T07:38:53.548590 | 2018-07-17T12:08:52 | 2018-07-17T12:08:52 | 141,283,365 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 390 | h | #ifndef MAX_PROB_H
#define MAX_PROB_H 1
class max_prob_class{
private:
double* return_arr;
double** l2_peak;
double** l2_sum;
double** ent_peak;
double** ent_sum;
double** probs;
double** sum_val;
public:
max_prob_class();
~max_prob_class();
void store(double*,int,int);
double get_prob(int,int);
... | [
"p.napiralla13@googlemail.com"
] | p.napiralla13@googlemail.com |
3c7440e0d904ae267ae8ac0faca65a77cf28cabe | 1f7b3d75141801742a884ba286de16b88602e2fa | /readv_writev/main.cpp | abfa7b62e6cff77c1159f071105beac34c128a8d | [] | no_license | sakishum/My_Linux | 4b3720ac5d6c9ce9bff62cee13c70da9061b2ce0 | 39d8ac934b94858ac8d0730930e3467d4e3ee0a2 | refs/heads/master | 2021-01-22T04:10:19.097128 | 2017-02-10T00:26:26 | 2017-02-10T00:28:21 | 81,508,713 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,212 | cpp | /**
* @file main.cpp
* @Synopsis 散布读、写多个非连续的缓冲区。
* @author Saki Shum, sakishum1118@gmail.com
* @version 0.0.1
* @date 2015-06-02
*/
#include <cstdlib>
#include <cstdio>
#include <iostream>
#include <math.h>
#include <sys/uio.h> // readv、writev
#include <unistd.h> // STDIN_FILENO (0)、STDOUT_FILENO(1)、STDERR_FI... | [
"sakishum11118@gmail.com"
] | sakishum11118@gmail.com |
01e1f3c643f49f5686f19d6e8e6ae3c095cbf1f4 | 097b2a0f8e5cefbaff31790a359d267bd978e480 | /Atcoder/ABC_s1/ABC_072/A-Sandglass_2.cpp | 73c0ca4d479ef461d9e40b42886f8d500b2e9c5c | [] | no_license | Noiri/Competitive_Programming | 39667ae94d6b167b4d7b9e78a98b8cb53ff1884f | 25ec787f7f5a507f9d1713a1e88f198fd495ec01 | refs/heads/master | 2023-08-16T17:35:15.940860 | 2021-09-07T20:57:59 | 2021-09-07T20:57:59 | 161,947,108 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 154 | cpp | #include <bits/stdc++.h>
using namespace std;
int main(){
int x, t;
cin >> x >> t;
cout << ((x-t)<0?0:(x-t)) << endl;
return 0;
} | [
"suleipenn@gmail.com"
] | suleipenn@gmail.com |
c535ac63d05d848cdee3af24395fda3bc9be1b24 | 90e02ef236ec48414dcdb5bd08665c865605f984 | /src/cisst-saw/sawIntuitiveResearchKit/examples/deprecated/mainQtTeleOperationJSON.cpp | 7b3c660621f486fe15693de63748ec3de2ade9d7 | [] | no_license | NicholasDascanio/dvrk_moveit | 3033ccda21d140a5feda0a7a42585c94784a1f13 | 4d23fa74f3663551791b958f96203f4196b1d765 | refs/heads/master | 2021-01-03T00:43:10.683504 | 2020-03-11T17:54:20 | 2020-03-11T17:54:20 | 239,836,095 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 15,694 | cpp | /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* ex: set filetype=cpp softtabstop=4 shiftwidth=4 tabstop=4 cindent expandtab: */
/*
Author(s): Zihan Chen, Anton Deguet
Created on: 2013-02-07
(C) Copyright 2013-2015 Johns Hopkins University (JHU), All Rights Reserved.
--- b... | [
"nicholas.dascanio95@gmail.com"
] | nicholas.dascanio95@gmail.com |
f0f65a021b28bd3ec950d46c3e193f192f7b67ac | e066903a0ff18033bca598291c67a141ec8626f5 | /node_modules/opencv-build/opencv/build/modules/plot/opencv_plot_pch.cpp | b78ee227a2dbfc3487018094a5cdfda2bc9b54b0 | [
"BSD-3-Clause"
] | permissive | nikeshkalu/2-Factor-Authentication | fe6b7a9c62844392c820f648c3cc1c42be1f3bb3 | d1c56e9c53c9bdc75dbc189d7b58b1de14c1946a | refs/heads/master | 2022-12-12T08:53:11.206876 | 2020-08-22T06:35:50 | 2020-08-22T06:35:50 | 247,947,220 | 0 | 0 | null | 2022-12-12T05:46:37 | 2020-03-17T11:00:12 | JavaScript | UTF-8 | C++ | false | false | 120 | cpp | #include "C:/Users/5567i5/Desktop/project/node_modules/opencv-build/opencv/opencv_contrib/modules/plot/src/precomp.hpp"
| [
"nikesh.kalu@deerwalk.edu.np"
] | nikesh.kalu@deerwalk.edu.np |
641dde610abf5ff511fa950f01cc01370481b171 | 591df59d439e1d7cc630a6a5958e7a92c6bdaabc | /manager/resources/components/center_window/src/WindowWidgetPlugin.h | 8c62092d56e6806d65f169ccae9de3bf45ecbfb7 | [] | no_license | kjhgnkv/DSControl_17_09 | b929ef051d7a17705bc963c1bcda96badf860463 | 03957e8153e3852cbf026ec37bdac340a6b23f24 | refs/heads/main | 2023-08-02T19:20:05.527221 | 2021-10-01T14:59:20 | 2021-10-01T14:59:20 | 412,485,720 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 613 | h | #ifndef WindowWidgetPlugin_H
#define WindowWidgetPlugin_H
#include <QWidget>
#include "IWidgetPlugin.h"
class WindowWidgetPlugin : public IWidgetPlugin
{
Q_OBJECT
public:
WindowWidgetPlugin();
virtual ~WindowWidgetPlugin();
/* Plugin interfaces */
QList<ICenterWindow*> getCenterWindow();
QList<... | [
"yingfanyz@gmail.com"
] | yingfanyz@gmail.com |
084735ed9c376b8b92d1113dc6419c2a159d864d | a476e690fc05229c7d5eec835d6b350dd8200fe9 | /test7.7.cpp | 6a4953864de4047694e3741021e28ea9360c2aa1 | [] | no_license | baoweike666/oj | 45830bff7d70f90aa7d52d464be16a1093c4f2f6 | 443557815016f2ca93a2cc3daefc830ea34e6e43 | refs/heads/master | 2020-03-22T01:19:23.723598 | 2018-08-29T09:41:41 | 2018-08-29T09:41:41 | 139,297,793 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 980 | cpp | #include<iostream>
#include<stdio.h>
#include<stack>
#include<string.h>
#include<stdlib.h>
#include<queue>
#include <iostream>
#include <algorithm>
using namespace std;
//for(int i=0;i<=n;i++)
//scanf("%d%d",&m,&n)
int c,n;
int cost[100];
int value[100];
int dp[100][100];
int main()
{
while(scanf("%d%d",&c,&n))
... | [
"noreply@github.com"
] | noreply@github.com |
b30688327d9a89dad93cde705d0703532311745d | ecc9ac507ef4b395990a41d8fdaa67a4f0185477 | /src/utils/io/instance/postag.h | e544a47d6a0847dd50567036b2b34d27867627b2 | [] | no_license | Oneplus/ZuoPar | ba6effb334bdd3423d7b714d79869d039f1af823 | afb1a80d90b8ead5312991c7319c3e0905adaa06 | refs/heads/master | 2021-01-18T17:12:10.428467 | 2016-04-25T23:50:55 | 2016-04-25T23:50:55 | 24,812,348 | 5 | 2 | null | 2015-07-29T03:25:45 | 2014-10-05T09:21:36 | C++ | UTF-8 | C++ | false | false | 1,401 | h | #ifndef __ZUOPAR_UTILS_IO_INSTANCE_POSTAG_H__
#define __ZUOPAR_UTILS_IO_INSTANCE_POSTAG_H__
#include <iostream>
#include "types/postag.h"
#include "engine/token_alphabet.h"
namespace ZuoPar {
namespace IO {
namespace eg = ZuoPar::Engine;
/**
* Read one postag instance from the input stream.
*
* @param[in] is ... | [
"oneplus.lau@gmail.com"
] | oneplus.lau@gmail.com |
08f7a9d72948c1001799e2643942b834e958946e | 424b57dee7642ceeb84ac55e77e6fc0a125fd4e1 | /src/verbatim_frame_buffer.hpp | e78469e048dd4e852a64f213c7fcd0ee68c4a45f | [
"BSD-3-Clause"
] | permissive | fengjixuchui/faemiyah-demoscene_2018-08_40k-intro_cassini | 03e67f136798f6d8f0a971147221cf71f79fca89 | 946843e1a9298d4399052e747557c997dc017271 | refs/heads/master | 2020-12-14T23:10:18.189169 | 2019-07-03T16:18:11 | 2019-07-03T16:18:11 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,490 | hpp | #ifndef VERBATIM_FRAME_BUFFER_HPP
#define VERBATIM_FRAME_BUFFER_HPP
#include "verbatim_texture_2d.hpp"
/// Framebuffer.
class FrameBuffer
{
private:
/// Current render target.
static FrameBuffer const *g_current_frame_buffer;
private:
/// Framebuffer id.
GLuint m_id;
/// Color buffer id.
... | [
"trilkk@iki.fi"
] | trilkk@iki.fi |
5c7ff3d484b327e5c027a280ca47d102b6a298c6 | b749c9f935f2bb2010d881e2aed3631da637af55 | /Source/SimpleShooter/BTTask_Shoot.h | bc394acdb00eadb3279bf1980483c0f673cc48f5 | [] | no_license | RoyzLevy/SimpleShooter | 815a250a4448f369f9635e451a5d6722169b2ba6 | e9fe645c8eb5d3c4c81d5df642c258ed115e8d1e | refs/heads/master | 2023-01-10T20:26:59.207869 | 2020-10-24T00:05:35 | 2020-10-24T00:05:35 | 306,248,791 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 428 | h | // Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "BehaviorTree/BTTaskNode.h"
#include "BTTask_Shoot.generated.h"
UCLASS()
class SIMPLESHOOTER_API UBTTask_Shoot : public UBTTaskNode
{
GENERATED_BODY()
public:
UBTTask_Shoot();
protected:
... | [
"royalevy10@gmail.com"
] | royalevy10@gmail.com |
ed33acf5d8acb240db614b254619b5c1b115ca8f | 119ba70d6692743c819bc92a689ab685ff6f619b | /pretest-03.cpp | 2e321d9143ed06bee7f50c29c6cb2a2c54124fe1 | [] | no_license | alvin2105/pretest-03 | 4daa09ddebb204a9e4be60ee1ddb46f8f5cf29c1 | 5335924b6542cfc3213552928e4875b655444ed2 | refs/heads/master | 2020-04-28T08:00:43.616362 | 2019-03-12T02:59:59 | 2019-03-12T02:59:59 | 175,111,360 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,032 | cpp | /*
nama : alvin
npm : 140810180013
ddeskripsi : pretest-03
tgl : 12 maret 2019
*/
#include<iostream>
using namespace std;
struct r_mhs{
char npm[14];
char nama[40];
float ipk;
};
typedef r_mhs larikMhs[30];
void banyakData (int& n){
cout<<"masukan banyak data : ";
cin>>n;
}
void inputMhs(larikMhs... | [
"noreply@github.com"
] | noreply@github.com |
53bf76bb4537a40b80baa054f1cb376c1b01bcc0 | 019a9c2de0eeccb4f31eecbeb0e91cc2db5404c2 | /CodeForces/520B - Two Buttons.cpp | afdfe5dbb09c07884a6c5b40ef7fc505b147646f | [] | no_license | Prakhar-FF13/Competitive-Programming | 4e9bd1944a55b0b89ff21537e0960f058f1693fd | 3f0937475d2985da323e5ceb65b20dc458155e74 | refs/heads/master | 2023-01-09T05:09:27.574518 | 2023-01-04T11:32:01 | 2023-01-04T11:32:01 | 133,995,411 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,236 | cpp | #include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;
typedef vector<int> vi;
typedef vector<pii> vii;
typedef vector<pll> vll;
#define rep(i,a,b) for(int i=a;i<b;i++)
#define fsi ios_base::sync_with_stdio(false);cin.tie(0);
#define RW() freopen("read... | [
"prakhar.meerut@gmail.com"
] | prakhar.meerut@gmail.com |
4a69f098e8354e93da4503901ffb7435d67f1d65 | c1fca23ff37cd650ac0455082994ffdf721bd949 | /ThirdParty/Include/thrust/host_vector.h | 3a68d18f6746ba0241553a5df72bf66247a8eecb | [] | no_license | liihuang/ue4-gpgpu-plugin | d9abc7df95c647fea50487581c780f04d31c98d5 | a1447dedc6238edb2f3bc9bbd4992222cae08763 | refs/heads/master | 2023-06-24T14:57:24.202897 | 2019-04-13T07:28:16 | 2019-04-13T07:28:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 15,518 | h | /*
* Copyright 2008-2013 NVIDIA Corporation
*
* 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 a... | [
"ioltuszy@ualberta.ca"
] | ioltuszy@ualberta.ca |
a486790a718f7e987038c321e448783af581be08 | 2c3bed124be3d5edb1abc646d8f138d7caaae251 | /Src/main.cpp | a3755ac97765a463a6903d3e03939230c14a4e5d | [] | no_license | bijanbina/BAudio | 291d8f46d1d3e3c62081ce710f1a125a4db3d10b | 3e91a0023aa01ed1a5bd6511c73d21886cc1311f | refs/heads/main | 2023-05-08T10:49:55.592238 | 2021-06-01T08:08:18 | 2021-06-01T08:08:18 | 371,696,715 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,266 | cpp | // Setup and miniport installation. No resources are used by msvad.
// All the GUIDS for all the miniports end up in this object.
#define PUT_GUIDS_HERE
#include "sonicsaudio.h"
#include "common.h"
// BUGBUG set this to number of miniports
#define MAX_MINIPORTS 2 // Number of maximum miniports.
NTSTATUS Create... | [
"bijanbina@gmail.com"
] | bijanbina@gmail.com |
5dbea3a17acde0804e063bba2659b9e2290f8c54 | 207161920bab034a6c37da131ae56588e34bcb20 | /src/acTemperature.h | 4968f07aa7cd909a4eec56e02ff325b68ed84599 | [] | no_license | neimar2009/acTemperature | 2f31f1955a0f911077241c8d00b884535d40c4e2 | fef6d652c36227b348a74de8fffe41d5898592be | refs/heads/master | 2021-10-10T15:25:03.724728 | 2018-09-09T15:01:21 | 2018-09-09T15:01:21 | 106,629,333 | 0 | 1 | null | 2018-09-09T15:01:22 | 2017-10-12T01:31:38 | C++ | UTF-8 | C++ | false | false | 2,014 | h | #ifndef acTemperature_h
#define acTemperature_h
#include <Arduino.h>
// #include "AVRs.h"
class acTemperatureClass {
private:
const double Kv = 273.16; // Kv é iqual a 0 graus Celsios.
double averageC = -(Kv); // Começa em zero absoluto.
double resolution = 0.0;
double nowDegrees = 0.0;
double ga... | [
"neimar2009@gmail.com"
] | neimar2009@gmail.com |
c6590a5bef6335d729cf0a84b54fa5f890661936 | 9b45bcd2996f91cb2593ffee8fda163c35add23b | /MandelBrotGen.h | 04ca30e7a45893e653b4ab789cd5741218ceaf5b | [] | no_license | guruRockz/HelloMandelBrot | eb6756093f8ac27747d3f87fd5a7f77d33155255 | ea0ee132a5b01fa2179fee1c76e2f6d05c69c557 | refs/heads/master | 2021-03-12T20:21:33.022668 | 2012-09-02T07:47:54 | 2012-09-02T07:47:54 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,650 | h | #ifndef MANDELBROTGEN_H
#define MANDELBROTGEN_H
#include "SDL.h"
#include <math.h>
#define MANDEL_SET
/*
#define REALZn(x,y,a) ((x*x)-(y*y)+a)
#define IMAGINARYZn(x,y,b) ((2*x*y)+b)
#define ITERATION 400.0
#define MAGNITUDE(x,y) (((x*x) + (y*y)))
#define RESOL_X 1600
#define RESOL_Y 1000
#define A_MIN (-2.5... | [
"gurunandan.ug@gmail.com"
] | gurunandan.ug@gmail.com |
053e378fed68338290c15b390161e0b418d1b149 | 26f6173e21103fce73096db7e3b2e0476107caa7 | /Queue data sctructures/QueueDataSctructure/QueueDataSctructure.cpp | 0a831dd67a30a02bc2b1d1c2ba9d86ae76904ef8 | [
"MIT"
] | permissive | cnc4less/CodeBeautyTutorial | 3d0ece49e4456257dc138d78ae8ef59c4b8a443d | 6fbedf0df4677199292b987ef63da15db5ad0c2c | refs/heads/master | 2023-08-28T03:23:09.346928 | 2021-11-10T15:32:58 | 2021-11-10T15:32:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 989 | cpp | // QueueDataSctructure : Learning queue data structures
// Author : Anthony Guay
// Date : 2/6/2021
// Credit : codebeauty youtube tutorial @https://www.youtube.com/watch?v=jaK4pn1jXTo
#include <iostream>
#include <queue>
using namespace std;
void printQueue(queue... | [
"anthony.guay112@gmail.com"
] | anthony.guay112@gmail.com |
389dfbf6fba4ac80a0e73a4a783299d9bf67e2dd | dcd6596b601028b51d38d980c261c0afb3fec978 | /FlowRate/src/Registry.cpp | 5b60e210cbb6a0ce769a04e56d4c5dfab2fdbb88 | [] | no_license | UKCoolHandLuke/FlowRate | 9774a734d662fc78565af9091bf79d9c4c5c07e6 | d2c39209e35c2d981836595afa20532a74d7fa79 | refs/heads/master | 2021-03-13T10:38:00.602247 | 2020-03-14T09:45:58 | 2020-03-14T09:45:58 | 246,665,653 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,717 | cpp | #include <Registry.h>
Registry::Registry()
{
Key = NULL;
}
Registry::~Registry()
{
if (Key != NULL)
{
//Close the key first
Close();
}
}
bool Registry::Open(HKEY Hive, wstring Path)
{
LONG lRes = RegOpenKeyExW(HKEY_LOCAL_MACHINE, TEXT(Path.c_str()), 0, KEY_READ | KEY_WOW64_64KEY, &Key);
if (lRes != ER... | [
"UKCoolhandluke@gmail.com"
] | UKCoolhandluke@gmail.com |
1465e3e0b2a396c321c0ebc11e42ef38b9217673 | 37b30edf9f643225fdf697b11fd70f3531842d5f | /content/browser/renderer_host/cross_origin_embedder_policy.cc | 1b9115cd51d3fc5665e1443076c2b750bd24ad59 | [
"BSD-3-Clause"
] | permissive | pauladams8/chromium | 448a531f6db6015cd1f48e7d8bfcc4ec5243b775 | bc6d983842a7798f4508ae5fb17627d1ecd5f684 | refs/heads/main | 2023-08-05T11:01:20.812453 | 2021-09-17T16:13:54 | 2021-09-17T16:13:54 | 407,628,666 | 1 | 0 | BSD-3-Clause | 2021-09-17T17:35:31 | 2021-09-17T17:35:30 | null | UTF-8 | C++ | false | false | 1,873 | cc | // Copyright 2021 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 "content/browser/renderer_host/cross_origin_embedder_policy.h"
#include "services/network/public/cpp/cross_origin_embedder_policy.h"
#include "se... | [
"chromium-scoped@luci-project-accounts.iam.gserviceaccount.com"
] | chromium-scoped@luci-project-accounts.iam.gserviceaccount.com |
3932ce1bb9af536bee098bdcb7775faa0e29b654 | 573a66e4f4753cc0f145de8d60340b4dd6206607 | /JS-CS-Detection-byExample/Dataset (ALERT 5 GB)/899902/osquery-1.4.0/osquery-1.4.0/include/osquery/flags.h | b5a1ff72ed886c94787f83faf38a7e1bcdffac2f | [
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
] | permissive | mkaouer/Code-Smells-Detection-in-JavaScript | 3919ec0d445637a7f7c5f570c724082d42248e1b | 7130351703e19347884f95ce6d6ab1fb4f5cfbff | refs/heads/master | 2023-03-09T18:04:26.971934 | 2022-03-23T22:04:28 | 2022-03-23T22:04:28 | 73,915,037 | 8 | 3 | null | 2023-02-28T23:00:07 | 2016-11-16T11:47:44 | null | UTF-8 | C++ | false | false | 5,020 | h | /*
* Copyright (c) 2014, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
*/
#pragma on... | [
"mmkaouer@umich.edu"
] | mmkaouer@umich.edu |
8324eb730212ea583631163ad788fc94e6a63405 | 8e0cdf324e67daa61f64ca916acac0f809e6a0db | /231A.cpp | 021d69e23a0fa3b9641110c0b7075722a709939a | [] | no_license | ayushme53/CodeforcesSolutions | b99c99590a2d1da0a89ede204c7cedee135574b8 | 2661e5cbff1a735fdfcf341d497eb90fcda56c33 | refs/heads/master | 2022-12-23T18:29:09.567107 | 2020-09-30T18:00:28 | 2020-09-30T18:00:28 | 257,911,434 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 617 | cpp | #include <bits/stdc++.h>
using namespace std;
#define faster ios_base::sync_with_stdio(false),cin.tie(NULL),cout.tie(NULL)
#define mp make_pair
#define mod 1000000007
#define qmod 998244353
#define endl "\n"
#define pb push_back
#define ff first
#define ss second
typedef long long ll;
typedef pair<int, int> pii;
ty... | [
"ayushme53@gmail.com"
] | ayushme53@gmail.com |
8114ac6532e9fb4388e25add97c8957e52a461b7 | d60d03a156d14a1c6a1d93ee112e3e81814ea6f7 | /recursion/taylor.cpp | 359ae3fb4a21f941f427a2eea0e3ad5c2a6baf42 | [] | no_license | sonali-kar/DS | 449e5c887e52eb9867fee19376a5911a421be8f2 | 5cdbd6264a5b2f41a239249331141c0296eaf921 | refs/heads/main | 2023-08-11T11:15:35.978523 | 2021-09-27T14:47:33 | 2021-09-27T14:47:33 | 365,948,533 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 419 | cpp | #include<iostream>
using namespace std;
double taylor(int x,int n)
{
static double p=1,f=1;
double r;
if(n==0)
return 1;
else
r= taylor(x,n-1);
p=p*x;
f=f*n;
return r+p/f;
}
int main()
{
double n;
double r,x;
cout<<"E... | [
"sonalikar590@gmail.com"
] | sonalikar590@gmail.com |
0dd722e8dce73867af29a2bb5f5e67f49d88f0fd | 775acebaa6559bb12365c930330a62365afb0d98 | /source/public/libs/widgetbin/dialogs/AbstractDialogObserver.cpp | 65479bbc0a5c4e21244287feac4261416889f2a6 | [] | no_license | Al-ain-Developers/indesing_plugin | 3d22c32d3d547fa3a4b1fc469498de57643e9ee3 | 36a09796b390e28afea25456b5d61597b20de850 | refs/heads/main | 2023-08-14T13:34:47.867890 | 2021-10-05T07:57:35 | 2021-10-05T07:57:35 | 339,970,603 | 1 | 1 | null | 2021-10-05T07:57:36 | 2021-02-18T07:33:40 | C++ | UTF-8 | C++ | false | false | 2,370 | cpp | //========================================================================================
//
// $File: //depot/devtech/16.0.x/plugin/source/public/libs/widgetbin/dialogs/AbstractDialogObserver.cpp $
//
// Owner: Michael Burbidge
//
// $Author: pmbuilder $
//
// $DateTime: 2020/11/06 13:08:29 $
//
// $Re... | [
"75730278+Tarekhesham10@users.noreply.github.com"
] | 75730278+Tarekhesham10@users.noreply.github.com |
5bc20a50b1a79f4b5e314f7a1bcbb81bd33f77f5 | f7a0bf0b839f8256611ad8fe8d63bf8c44f03a80 | /libs/wawo/include/wawo/SmartPtr.hpp | 8772ad5115fff7855e19822281ca927437bb1601 | [
"MIT"
] | permissive | xldeng1203/wawo | 31026027a074e6ec972a6f62f8be212eac728e50 | aa871e42cb2bd700974a946bd02cde6edcba72f8 | refs/heads/master | 2021-01-15T15:58:12.492180 | 2016-02-21T15:49:32 | 2016-02-21T15:49:32 | 52,434,427 | 0 | 1 | null | 2016-02-24T10:34:00 | 2016-02-24T10:34:00 | null | UTF-8 | C++ | false | false | 13,381 | hpp | #ifndef _WAWO_SMART_PTR_HPP_
#define _WAWO_SMART_PTR_HPP_
#include <wawo/core.h>
#define WAWO_DEBUG_REF_LOGIC
#define WAWO_USE_SPIN_LOCK
#ifndef NULL
#define NULL 0
#endif
#ifdef _DEBUG
#define _DEBUG_SMART_PTR
#endif
namespace wawo {
template <class T> inline void checked_delete(T* p) {
typedef char is_this_... | [
"io.cpp@outlook.com"
] | io.cpp@outlook.com |
b9cccf9bf62784d2c4393dcb4eac6ec0c47440fe | c12f0be593a9b1b7507b99e89fa1271bc8089f0c | /tests/validation/reference/BinaryConvolutionLayer.h | 8dae374a70268a31d288d0988a04be60bbc9df7e | [
"LicenseRef-scancode-dco-1.1",
"MIT"
] | permissive | giorgio-arena/ComputeLibraryBinary | c84c8f86ca0c66179acda275cd0cee321b6c3203 | b8bb65f0dc2561907e566908e102aabcb7d41d61 | refs/heads/master | 2020-05-03T10:45:29.784415 | 2019-04-29T07:39:22 | 2019-04-29T07:39:22 | 178,586,589 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,783 | h | /*
* Copyright (c) 2019 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* rights ... | [
"arena.cpp@gmail.com"
] | arena.cpp@gmail.com |
855af3bc2c0392a766e2521788a3a2fe73d2eb90 | 7a3a7295f54454dee81444c844ffe7b57b143f7c | /src/llmq/quorums_commitment.h | 6a097f4dc7e072a7d31aade82d3d0fbba6fb71dc | [
"MIT"
] | permissive | Argoneum/argoneum | 9f6b7f18f778fca467543035e72e014401f04a56 | 5c18f9d8551c9dff9e3dcf56e83c66021e291b72 | refs/heads/master | 2021-06-17T01:33:29.041494 | 2021-02-28T20:39:30 | 2021-02-28T20:39:30 | 155,546,450 | 7 | 9 | MIT | 2020-11-20T18:51:22 | 2018-10-31T11:30:30 | C++ | UTF-8 | C++ | false | false | 3,246 | h | // Copyright (c) 2018 The Argoneum Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef AGM_QUORUMS_COMMITMENT_H
#define AGM_QUORUMS_COMMITMENT_H
#include "consensus/params.h"
#include "evo/deterministic... | [
"argoneum@argoneum.net"
] | argoneum@argoneum.net |
b2a6672c070d0933333a622f58b4c3b2fe7a00a7 | dd80a584130ef1a0333429ba76c1cee0eb40df73 | /external/chromium_org/extensions/common/permissions/permission_message_provider.h | 7f682e3e5de37026462d2a4d3d70cf6bdf9ee515 | [
"BSD-3-Clause",
"MIT"
] | permissive | karunmatharu/Android-4.4-Pay-by-Data | 466f4e169ede13c5835424c78e8c30ce58f885c1 | fcb778e92d4aad525ef7a995660580f948d40bc9 | refs/heads/master | 2021-03-24T13:33:01.721868 | 2017-02-18T17:48:49 | 2017-02-18T17:48:49 | 81,847,777 | 0 | 2 | MIT | 2020-03-09T00:02:12 | 2017-02-13T16:47:00 | null | UTF-8 | C++ | false | false | 2,263 | 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 EXTENSIONS_COMMON_PERMISSIONS_PERMISSION_MESSAGE_PROVIDER_H_
#define EXTENSIONS_COMMON_PERMISSIONS_PERMISSION_MESSAGE_PROVIDER_H_
#include <vecto... | [
"karun.matharu@gmail.com"
] | karun.matharu@gmail.com |
a8e3fa94f5be0504757f6ec41fbe8e938e1a5a2c | 504fa56796d605107ac43c8a43a794b338079d75 | /hmailserver/source/Server/SMTP/SMTPConfiguration.h | 6ca9a976c636720b8c4513f6a4d5e6b3c541eb9d | [] | no_license | bighossbiz/hmailserver | 5877796f95d2c19c34744fdbefb06d819c58410d | 39506daf6b95e554bd3153206eaaf0bd22affdf1 | refs/heads/master | 2021-01-21T04:04:09.604030 | 2014-08-31T13:15:06 | 2014-08-31T13:15:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,947 | h | #pragma once
#include "../Common/BO/IncomingRelays.h"
namespace HM
{
class PropertySet;
class Routes;
class DNSBlackLists;
class BlockedAttachments;
enum ConnectionSecurity;
class SMTPConfiguration
{
public:
SMTPConfiguration();
virtual ~SMTPConfiguration();
bool Load();
... | [
"knafve@gmail.com"
] | knafve@gmail.com |
fc13a0aa8e75c060802dec4d3c00864ed08e47c5 | 096c003ed901129b21e2352ad010232526be239c | /codeEmbarqué/carteMoteur/src/MotorCtrl.cpp | a989aaadaf552f7f668e96a89434b46f4a31b9d5 | [] | no_license | RoseTeam/CommandMot | 02e4cb62a369437411c43ff9a8fdaede23ddee47 | f2270dd00b23ed8f1cac448bf4f2ce2fa4f47be8 | refs/heads/master | 2021-01-10T15:28:21.684845 | 2016-03-07T22:53:12 | 2016-03-07T22:53:12 | 50,875,833 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,476 | cpp | /**********************************************************************************************
* Motor Driver Library - Version 1.0
* by Lucas Soubeyrand and David
* This Library is licensed under Copyleft
It handles low level (position and speed) control of Continuous Current Motors
and Alpha/Delta control ... | [
"guillaume.giraud@gmail.com"
] | guillaume.giraud@gmail.com |
cd3746a3fe7911571215010b8ee1576acac22dbd | 777a75e6ed0934c193aece9de4421f8d8db01aac | /src/Providers/UNIXProviders/EndpointIdentity/UNIX_EndpointIdentity_SOLARIS.hxx | 91811e522dbd4cf95dea6db262acc0adad227670 | [
"MIT"
] | permissive | brunolauze/openpegasus-providers-old | 20fc13958016e35dc4d87f93d1999db0eae9010a | b00f1aad575bae144b8538bf57ba5fd5582a4ec7 | refs/heads/master | 2021-01-01T20:05:44.559362 | 2014-04-30T17:50:06 | 2014-04-30T17:50:06 | 19,132,738 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 130 | hxx | #ifdef PEGASUS_OS_SOLARIS
#ifndef __UNIX_ENDPOINTIDENTITY_PRIVATE_H
#define __UNIX_ENDPOINTIDENTITY_PRIVATE_H
#endif
#endif
| [
"brunolauze@msn.com"
] | brunolauze@msn.com |
fe94d7d8db37a20d02bc9dd3662d107dc83813be | 5db22247ed9ee65139b87c1ed28108cd4b1ac6e5 | /Classes/Native/AssemblyU2DCSharp_MultiPlatformFunction3311920458.h | 0143a8c8533ccee76f4b166bf0093ab6272cfc27 | [] | no_license | xubillde/JLMC | fbb1a80dc9bbcda785ccf7a85eaf9228f3388aff | 408af89925c629a4d0828d66f6ac21e14e78d3ec | refs/heads/master | 2023-07-06T00:44:22.164698 | 2016-11-25T05:01:16 | 2016-11-25T05:01:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 527 | h | #pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
#include "mscorlib_System_Object707969140.h"
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnost... | [
"zhaolibo@zhaolibodeiMac.local"
] | zhaolibo@zhaolibodeiMac.local |
622c536fccbc7c696d7d776632888ac6cd18552e | 13a32b92b1ba8ffb07e810dcc8ccdf1b8b1671ab | /home--tommy--mypy/mypy/lib/python2.7/site-packages/pystan/stan/lib/stan_math/stan/math/prim/mat/fun/inverse.hpp | 18ab75973c50b065e0eb20630956492c20b64c89 | [
"Unlicense",
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | tommybutler/mlearnpy2 | 8ec52bcd03208c9771d8d02ede8eaa91a95bda30 | 9e5d377d0242ac5eb1e82a357e6701095a8ca1ff | refs/heads/master | 2022-10-24T23:30:18.705329 | 2022-10-17T15:41:37 | 2022-10-17T15:41:37 | 118,529,175 | 0 | 2 | Unlicense | 2022-10-15T23:32:18 | 2018-01-22T23:27:10 | Python | UTF-8 | C++ | false | false | 570 | hpp | #ifndef STAN_MATH_PRIM_MAT_FUN_INVERSE_HPP
#define STAN_MATH_PRIM_MAT_FUN_INVERSE_HPP
#include <stan/math/prim/mat/fun/Eigen.hpp>
#include <stan/math/prim/mat/err/check_square.hpp>
namespace stan {
namespace math {
/**
* Returns the inverse of the specified matrix.
* @param m Specified matrix.
*... | [
"tbutler.github@internetalias.net"
] | tbutler.github@internetalias.net |
d4d6780e58a227d23fe7e430f1f4c8a13022d111 | 791214fc524dcaccd49dfe2a08c3b9c4402ec311 | /include/pd_sink.h | ac7d28351588debe835c397cb71aacc785851248 | [
"MIT"
] | permissive | noahwilliamsson/zy12pdn-oss | efa19d69ff4433835ab335dd67c4921c480c70af | bbf8772fb14eff97a32e478eafc6b9093081e50b | refs/heads/master | 2023-02-26T21:09:28.865561 | 2020-12-05T14:40:48 | 2020-12-05T14:40:48 | 333,246,685 | 7 | 0 | MIT | 2021-01-31T17:52:07 | 2021-01-26T23:35:08 | null | UTF-8 | C++ | false | false | 3,331 | h | //
// USB Power Delivery Sink Using FUSB302B
// Copyright (c) 2020 Manuel Bleichenbacher
//
// Licensed under MIT License
// https://opensource.org/licenses/MIT
//
// USB PD sink handling PD messages and state changes
//
#ifndef _pd_sink_h_
#define _pd_sink_h_
#include "fusb302.h"
namespace usb_pd {
/// Power suppl... | [
"10954524+manuelbl@users.noreply.github.com"
] | 10954524+manuelbl@users.noreply.github.com |
d3acf0fd468751e21229dd39d454b0df4d1f9703 | f11f3db409d1df20ac739739ca9c2643bc147c78 | /Source/BansheeCore/Source/BsRendererMeshData.cpp | 5e65f85c16ef23212d063066d47d1fa5b02fe7f7 | [] | no_license | MarcoROG/BansheeEngine | e341c6412f735a072ed04d42859b61ddfb5d25e6 | d6d4efa5f3f66b8b70eb8f361223e639679da09a | refs/heads/master | 2021-01-01T17:55:37.000197 | 2017-08-15T20:43:25 | 2017-08-15T20:43:25 | 60,541,636 | 0 | 0 | null | 2016-06-06T16:04:40 | 2016-06-06T16:04:40 | null | UTF-8 | C++ | false | false | 16,083 | cpp | //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
//**************** Copyright (c) 2016 Marko Pintera (marko.pintera@gmail.com). All rights reserved. **********************//
#include "BsRendererMeshData.h"
#include "BsVertexDataDesc.h"
#include... | [
"bearishsun@gmail.com"
] | bearishsun@gmail.com |
4bbcdf448d338b1dd11eda4817531272aca54e13 | b505ef7eb1a6c58ebcb73267eaa1bad60efb1cb2 | /source/graphics/core/win32/direct3d11/samplerstated3d11.h | e6952ebe3a0a7877d8d8e515bff994d3140ba5dc | [] | no_license | roxygen/maid2 | 230319e05d6d6e2f345eda4c4d9d430fae574422 | 455b6b57c4e08f3678948827d074385dbc6c3f58 | refs/heads/master | 2021-01-23T17:19:44.876818 | 2010-07-02T02:43:45 | 2010-07-02T02:43:45 | 38,671,921 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 545 | h | #ifndef maid2_graphics_core_win32_direct3d11_samplerstated3d11_h
#define maid2_graphics_core_win32_direct3d11_samplerstated3d11_h
#include"../../../../config/define.h"
#include"../../isamplerstate.h"
#include"common.h"
namespace Maid { namespace Graphics {
class SamplerStateD3D11 : public ISamplerSta... | [
"renji2000@471aaf9e-aa7b-11dd-9b86-41075523de00"
] | renji2000@471aaf9e-aa7b-11dd-9b86-41075523de00 |
9437fb047f48eccb32e862f48655201ca521f332 | d9223496bf9f121e6726129f76ff325609ffb597 | /compiler/src/core/Compiler.cpp | 44b29422a03129a7ac3a82ad7b4cf0437e4caf3c | [] | no_license | d08ble/acpu | 4c42b4c0fff385913ffc99c1a47ce060fc3e856a | fb7b809ada746ecc3d1dbbe1096b120ac8f63256 | refs/heads/master | 2021-01-23T20:50:44.714637 | 2014-10-11T19:27:58 | 2014-10-11T19:27:58 | 10,024,454 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 16,317 | cpp | //
// Another CPU Language - ACPUL - a{};
//
// THIS SOFTWARE IS PROVIDED BY THE FREEBSD PROJECT ``AS IS'' AND ANY EXPRESS OR
// IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
// SHALL THE FREEBSD PROJECT O... | [
"d08ble@gmail.com"
] | d08ble@gmail.com |
507888e8b07722ac4eb8b698cc960ed02a2af5e7 | 7869842fd7acebece3f9fee22eb3bacaf85d1f86 | /C++/STL/deque-STL.cpp | b03feb2a6083ddf2dba42e6880ebe3d7796c4e68 | [] | no_license | thomastan/hackerrank | 1f7a99c1f7625ee0bc2f99780c9ab007b5c169b5 | a2a9bbc0559bf67c9fe789835ff4b57a4b53e317 | refs/heads/master | 2023-02-09T09:24:58.970400 | 2023-01-25T21:19:06 | 2023-01-25T21:19:06 | 55,093,662 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,409 | cpp | #include <iostream>
#include <deque>
#include <algorithm>
using namespace std;
void printKMax(const int arr[], const int n, const int k) {
// fill a deque of size K, and find it's max as an ITERATOR
// for insertion of each a[i], i = k...n-1
// if iterator points to element to be removed:
// remove... | [
"thomas.tan@msn.com"
] | thomas.tan@msn.com |
e5e7427e59ba6d708806ff754d25f23417a40c5c | f0ba9db32f36c5aba864e5978872b2e8ad10aa40 | /examples/example_void_t_overview.hpp | b1ce5b055f3d2de68bfc0ca1f91aaae4dff9d817 | [
"LicenseRef-scancode-warranty-disclaimer",
"MIT"
] | permissive | Bareflank/bsl | fb325084b19cd48e03197f4265049f9c8d008c9f | 6509cfff948fa34b98585512d7be33a36e2f9522 | refs/heads/master | 2021-12-25T11:19:43.743888 | 2021-10-21T14:47:58 | 2021-10-21T14:47:58 | 216,364,945 | 77 | 5 | NOASSERTION | 2021-10-21T02:24:26 | 2019-10-20T13:18:28 | C++ | UTF-8 | C++ | false | false | 1,649 | hpp | /// @copyright
/// Copyright (C) 2020 Assured Information Security, Inc.
///
/// @copyright
/// Permission is hereby granted, free of charge, to any person obtaining a copy
/// of this software and associated documentation files (the "Software"), to deal
/// in the Software without restriction, including without limita... | [
"rianquinn@gmail.com"
] | rianquinn@gmail.com |
5ee7b40d4b978555fa391577c4daeb2eb9a9e41c | 6e22d7679ebeb092232de6052ced81c7d8ab97a6 | /hp-socket-3.1.2/Common/Src/GeneralHelper.cpp | b0c4ef0b856fce1eb99c651b339e31b35d583ad5 | [
"Apache-2.0"
] | permissive | chengguixing/iArt | e3de63161bd91a18522612d6320453431824061d | c2d60e36f2f2a6a04b2188f20e7264cfc5d05dc4 | refs/heads/master | 2021-01-02T09:27:11.010862 | 2014-06-28T12:34:56 | 2014-06-28T12:34:56 | 22,207,953 | 4 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 892 | cpp | /*
* Copyright: JessMA Open Source (ldcsaa@gmail.com)
*
* Version : 2.3.2
* Author : Bruce Liang
* Website : http://www.jessma.org
* Project : https://github.com/ldcsaa
* Blog : http://www.cnblogs.com/ldcsaa
* WeiBo : http://weibo.com/u/1402935851
* QQ Group : 75375912
*
* Licensed under the Apache License,... | [
"izhuxin@gmail.com"
] | izhuxin@gmail.com |
f1afb36456da38eb877b180b943b9cf8063e5d5b | 488be7f987fe5e5dd87e7ec0afcb72be8f656748 | /ConsoleApplication5.cpp | 36ea57cadf3fd106b40ffd51c8bdb33a438b2988 | [] | no_license | MantieReid/ConsoleApplication5 | 468e336f33e31d3c38384a81f3b3675c2ab23c04 | 4adc9a9596434ea850e71900b18446ca323939f3 | refs/heads/master | 2022-09-10T23:02:18.195692 | 2020-06-03T01:38:02 | 2020-06-03T01:38:02 | 268,948,648 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,677 | cpp | // ConsoleApplication5.cpp : This file contains the 'main' function. Program execution begins and ends there.
//
#include <iostream>
#include <string>
#include <cstdlib>
#include <cstring>
#include <ctime>
#include <time.h>
#include <ratio>
#include <chrono>
#include <Windows.h>
#include <Psapi.h>
#include <stdio.h>
... | [
"mantiereid2@gmail.com"
] | mantiereid2@gmail.com |
61ae7db6ea87cb74d08c35d1e38f801036d51ade | 91077fd89021453432e1208263368f5a8784f38a | /homework1/cpu_matrix.cpp | d2a8bd95ee57004035d05712fd18249786c37ca7 | [] | no_license | dfabian5/GPU-Parallel-Processing-Homework | 6cf6eb6d79a5f53fce84d49528907bce47809f89 | dfaa8e49d70f01b22da75991b254569624017e21 | refs/heads/master | 2020-12-21T10:40:43.511238 | 2020-05-05T22:02:22 | 2020-05-05T22:02:22 | 236,406,460 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,546 | cpp | ////////////////////////////////////////////////////////////////////////////////
//
// FILE: cpu_matrix.cpp
// DESCRIPTION: calculates matrix multiplication on cpu
// AUTHOR: Dan Fabian
// DATE: 1/26/2020
#include <iostream>
#include <random>
#include <chrono>
using std::cout; using std::endl;
usin... | [
"dfabian5@kent.edu"
] | dfabian5@kent.edu |
f4d6c0408069f857314964bfb706d586f7fefa8b | bb82a5f977bef455714c16e24e2d8254e2d0faa5 | /src/vendor/cget/include/asio/experimental/detail/partial_promise.hpp | de579438893ca17ec6673a77b1fe02e9c5d1e320 | [
"Unlicense"
] | permissive | pqrs-org/Karabiner-Elements | 4ae307d82f8b67547c161c7d46d2083a0fd07630 | d05057d7c769e2ff35638282e888a6d5eca566be | refs/heads/main | 2023-09-01T03:11:08.474417 | 2023-09-01T00:44:19 | 2023-09-01T00:44:19 | 63,037,806 | 8,197 | 389 | Unlicense | 2023-09-01T00:11:00 | 2016-07-11T04:57:55 | C++ | UTF-8 | C++ | false | false | 101 | hpp | ../../../../cget/pkg/chriskohlhoff__asio/install/include/asio/experimental/detail/partial_promise.hpp | [
"tekezo@pqrs.org"
] | tekezo@pqrs.org |
c6a348fee4df9c52c0546932490c27d1eb24c7bc | b4bff7f61d078e3dddeb760e21174a781ed7f985 | /Source/Contrib/Sound/src/Sound/OSGSoundBase.cpp | 37101f1fdc25cb08ee35e8e2758384d932c6953a | [] | no_license | Langkamp/OpenSGToolbox | 8283edb6074dffba477c2c4d632e954c3c73f4e3 | 5a4230441e68f001cdf3e08e9f97f9c0f3c71015 | refs/heads/master | 2021-01-16T18:15:50.951223 | 2010-05-19T20:24:52 | 2010-05-19T20:24:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 31,144 | cpp | /*---------------------------------------------------------------------------*\
* OpenSG *
* *
* *
* ... | [
"vossg@sheldon.camtech.ntu.edu.sg"
] | vossg@sheldon.camtech.ntu.edu.sg |
e9fd55569f0fa3c00bade577ac5a6af8690b9394 | f4d7107ee8fc5b795e7006f6af6382b85524449f | /main.cpp | 1f06755d1bef5ee71b197279d080f4728f2a4516 | [] | no_license | Olympianz/MyChess | 5faf7bfa46a013f5c22444d08ef42a6a8477d09e | b8010ad95856782539769a3db7d7dbecc80376b0 | refs/heads/master | 2016-09-06T15:26:47.081274 | 2013-06-12T20:31:34 | 2013-06-12T20:31:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,849 | cpp | #include<iostream>
#include<string>
#include<cstdlib>
// in this example pieces aer described as integer values
// we will make them constants, so that if at any time we want to change their values we can do so here
// but will still need to recompile
const int pawn = 100;
const int bishop = 305;
const in... | [
"Chong@FanChong"
] | Chong@FanChong |
874b42a54340c6b5f0e6db568e0096c42cb35beb | d466e547d37eed51027d81bf7e3799cdf6807219 | /src/tools/cds-2.2.0/test/stress/map/delodd/map_delodd.cpp | 0b9d75174b05f73c8ce435facddffce193fd35f9 | [
"BSD-2-Clause",
"BSD-3-Clause"
] | permissive | emilytsui/ParaHash | bd06e5745c887c966c5421c351582c7179dc975a | 7285e3525e25ebd8861297d24038e2fdb57a6175 | refs/heads/master | 2021-01-19T08:39:52.828586 | 2017-05-12T07:01:14 | 2017-05-12T07:01:14 | 87,654,652 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,069 | cpp | /*
This file is a part of libcds - Concurrent Data Structures library
(C) Copyright Maxim Khizhinsky (libcds.dev@gmail.com) 2006-2017
Source code repo: http://github.com/khizmax/libcds/
Download: http://sourceforge.net/projects/libcds/files/
Redistribution and use in source and binary for... | [
"emilytsui7@gmail.com"
] | emilytsui7@gmail.com |
757700c49fc1d11b7597bd60dc2f218a228efd56 | 6d370728c3f4b051817e501d60e2b53ddcd20ecc | /Creating_Strings_I.cpp | 5a96e71810070f2646b159a761a7fba39013063e | [] | no_license | for-l00p/CSES-1 | 1fe8983b22a28a5901982089c7792529d32418f6 | 05ef511b885b671f9a8e6cb704bc50096ab954cf | refs/heads/master | 2022-11-23T23:13:50.798146 | 2020-07-25T14:35:25 | 2020-07-25T14:35:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 533 | cpp | #include <bits/stdc++.h>
using namespace std;
set<char> s;
multiset<char> ms;
vector<string> v;
string ss;
int coun=0;
void f(int i){
if(i==1){coun++;ss.push_back(*ms.begin());v.push_back(ss);ss.erase(ss.end()-1);;return;}
for(auto j:s){
if(ms.count(j)){
ms.erase(ms.find(j));
ss.push_back(j);
f(i-1);
ss... | [
"noreply@github.com"
] | noreply@github.com |
60ab3cafff8344737e04d8ec48159b1746c68c03 | 33b21217fd205161f8baa5d46014fc2e97c73a64 | /GP2 Engine/OverlordProject/CourseObjects/Week 3/SpikeyScene.h | e794f17331edfad45eac09a073ab327cd160f7f0 | [] | no_license | ajweeks/RubiksCube | bdb141579fbbf8bd77e0db80fb4949b23c8c770a | 2236f10dce0b7745ac7d7bf69f35aa35cc1234d3 | refs/heads/master | 2020-06-30T18:00:41.254094 | 2017-06-16T08:43:05 | 2017-06-16T08:43:05 | 74,355,982 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 619 | h | #pragma once
#include "Scenegraph/GameScene.h"
#include "Helpers\EffectHelper.h"
class SpikeyScene: public GameScene
{
public:
SpikeyScene();
virtual ~SpikeyScene();
protected:
virtual void Initialize(const GameContext& gameContext);
virtual void Update(const GameContext& gameContext);
virtual void Draw(const ... | [
"ajweek@shaw.ca"
] | ajweek@shaw.ca |
15fdcad926ba01c3cece1b97baff215ddeb1f2ef | fc987ace8516d4d5dfcb5444ed7cb905008c6147 | /chrome/browser/ui/views/bookmarks/bookmark_bubble_view.h | 31015d3e32156a5a81aa289208903b4ea5ce0fdf | [
"BSD-3-Clause"
] | permissive | nfschina/nfs-browser | 3c366cedbdbe995739717d9f61e451bcf7b565ce | b6670ba13beb8ab57003f3ba2c755dc368de3967 | refs/heads/master | 2022-10-28T01:18:08.229807 | 2020-09-07T11:45:28 | 2020-09-07T11:45:28 | 145,939,440 | 2 | 4 | BSD-3-Clause | 2022-10-13T14:59:54 | 2018-08-24T03:47:46 | null | UTF-8 | C++ | false | false | 5,113 | 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.
// Copyright (c) 2016-2018 CPU and Fundamental Software Research Center, Chinese Academy of Sciences.
#ifndef CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKM... | [
"hukun@nfschina.com"
] | hukun@nfschina.com |
499c5c3cad1b66d54268aa7e492aa5eafacfb293 | be3b23638c34560829c9e4270fa059039cc75876 | /examples/AllThingsTalk_DHT22_SSD1306/AllThingsTalk_DHT22_SSD1306.ino | dd285b31fec86fd9fcc2bf115c77ba2ab6f64946 | [
"MIT"
] | permissive | albertskog/telia-iot-workshop-wifi | 57c21de36f6a26d7de3d27eb41cbe94f8f387c75 | 1ef7e1f4c84866bcf7a7f417c156bab67906fe29 | refs/heads/master | 2020-07-06T19:08:53.869162 | 2018-06-05T07:08:27 | 2018-06-05T07:08:27 | 135,287,815 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,441 | ino | #include <ESP8266WiFi.h>
#include <PubSubClient.h>
#include <Wire.h>
#include <Adafruit_GFX.h>
#include <Adafruit_SSD1306.h>
#include "DHT.h"
#include <ATT_IOT.h>
#include <ArduinoJson.h>
#define DHTPIN D7 // what digital pin we're connected to
#define DHTTYPE DHT22 // DHT 22 (AM2302), AM2321
#define http "api... | [
"mail@albertskog.se"
] | mail@albertskog.se |
ab8211c10fe3b9fcad169082a8a1e022192f43e9 | c04e49371d98c136fb484c541a0fb479c96001ff | /code/include/Graphics/Text/Glyph.h | 624b5cc313e822d7812700abb51f53cd421a0ce3 | [
"MIT"
] | permissive | Arzana/Plutonium | 0af59b6ffee010eed7c6c8f6182c87480ef45dc3 | 5a17c93e5072ac291b96347a4df196e1609fabe2 | refs/heads/master | 2021-05-09T02:20:42.528906 | 2020-10-31T20:36:57 | 2020-10-31T20:36:57 | 119,201,274 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,279 | h | #pragma once
#include "Core/Math/Shapes/Rectangle.h"
namespace Pu
{
/* Defines all information needed for a glyph within a texture altas. */
struct Glyph
{
public:
/* The indentifier for this glyph. */
char32 Key;
/* The top left uv coordinate of the glyph. */
Vector2 U;
/* The bottom right uv coordinate... | [
"largewowfan@gmail.com"
] | largewowfan@gmail.com |
4391114d1c2ea94c40c1e4be07679f53eb5e2cc7 | 8635e9e8cde70ce1f55aac7b50d8090add38a163 | /Problems/YYHSOJ/Contest1210/C.cpp | ec0e0d8d1f9c7d5cde551db820d62a40b781535b | [] | no_license | 99hgz/Algorithms | f0b696f60331ece11e99c93e75eb8a38326ddd96 | a24c22bdee5432925f615aef58949402814473cd | refs/heads/master | 2023-04-14T15:21:58.434225 | 2023-04-03T13:01:04 | 2023-04-03T13:01:04 | 88,978,471 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,779 | cpp | #include <cstdio>
#include <cstring>
#include <cstdlib>
#include <algorithm>
#include <queue>
using namespace std;
typedef long long ll;
struct PATH
{
int dis, to;
};
struct NODE
{
int s, t;
};
vector<PATH> path[1010];
ll dis[55][20005];
int cnt, s, k, a, b, c, n, m, i, mod, t;
ll T;
void spfa()
{
mems... | [
"2252870379@qq.com"
] | 2252870379@qq.com |
f9bb7fdf096f8abaf456fcc39bfc2ca85154d659 | cf6ae38d4adf41e3eb219b8ac477aa7ca7c7d18a | /boost/geometry/extensions/iterators/segment_returning_iterator.hpp | b313b6c637834aa7ccef739604783aeb744d5476 | [
"LicenseRef-scancode-unknown-license-reference",
"BSL-1.0"
] | permissive | ryppl/boost-history | a560df2bc79ffc7640f09d258599891dbbb8f6d0 | 934c80ff671f3afeb72b38d5fdf4396acc2dc58c | HEAD | 2016-09-07T08:08:33.930543 | 2011-07-10T13:15:08 | 2011-07-10T13:15:08 | 3,539,914 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,483 | hpp | // Boost.Geometry (aka GGL, Generic Geometry Library)
// Copyright (c) 2009-2011 Mateusz Loskot, London, UK.
// Copyright (c) 2009-2011 Barend Gehrels, Amsterdam, the Netherlands.
// Use, modification and distribution is subject to the Boost Software License,
// Version 1.0. (See accompanying file LICENSE_1_0.txt or ... | [
"barend@xs4all.nl"
] | barend@xs4all.nl |
ca6d62127daf177af87a23c50f6c55f8fc599f03 | 99c6f753e8fe47f85640899faad4d26d09d79fa4 | /A3/Task2/OneTimePad.cpp | ba49ab1dc6215a3e360a83353007a84bef570b26 | [] | no_license | israel-sekhwela/COS110_2018 | 523caafc161b6750baa903c08c9809d1c72b4efd | a979f07131a945d21f5da7acfd63d7e032fa9474 | refs/heads/master | 2020-03-23T23:37:03.874933 | 2018-10-16T20:28:31 | 2018-10-16T20:28:31 | 142,244,828 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,305 | cpp | #include <cstdlib>
#include "OneTimePad.h"
OneTimePad :: OneTimePad(long int l){
this->setSeed(l);
}
void OneTimePad :: setSeed(long int l){
int count;
ascii = "";
count = 0;
while(count < 95){
ascii = ascii + char(count + 32);
count++;
}
if(l >= 0){
seed = l;
}
else{
Exception str... | [
"israelsekhwela@yahoo.com"
] | israelsekhwela@yahoo.com |
81eb7c752e97104fcd9669e9a24d16fd09a746f4 | d6b4bdf418ae6ab89b721a79f198de812311c783 | /tcss/include/tencentcloud/tcss/v20201101/model/DescribeImageRiskSummaryRequest.h | 25c82da02fe3678bf61e961db1b2243735d96ebf | [
"Apache-2.0"
] | permissive | TencentCloud/tencentcloud-sdk-cpp-intl-en | d0781d461e84eb81775c2145bacae13084561c15 | d403a6b1cf3456322bbdfb462b63e77b1e71f3dc | refs/heads/master | 2023-08-21T12:29:54.125071 | 2023-08-21T01:12:39 | 2023-08-21T01:12:39 | 277,769,407 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,587 | h | /*
* Copyright (c) 2017-2019 THL A29 Limited, a Tencent company. 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
... | [
"tencentcloudapi@tencent.com"
] | tencentcloudapi@tencent.com |
727b0ece7db6de9a13d62d2862572cb19fb4f9d7 | 046b675cb8529d1585a688f21563eb0209c94f19 | /src/Control2012/libreoffice/com/sun/star/datatransfer/dnd/XDropTargetDragContext.hpp | aa821b742921187894f97f53e3649b4e84035200 | [] | no_license | yoshi5534/schorsch-the-robot | a2a4bd35668600451e53bd8d7f879df90dcb9994 | 77eb8dcabaad5da3908d6b4b78a05985323f9ba4 | refs/heads/master | 2021-03-12T19:41:35.524173 | 2013-04-17T20:00:29 | 2013-04-17T20:00:29 | 32,867,962 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,688 | hpp | #ifndef INCLUDED_COM_SUN_STAR_DATATRANSFER_DND_XDROPTARGETDRAGCONTEXT_HPP
#define INCLUDED_COM_SUN_STAR_DATATRANSFER_DND_XDROPTARGETDRAGCONTEXT_HPP
#include "sal/config.h"
#include "com/sun/star/datatransfer/dnd/XDropTargetDragContext.hdl"
#include "com/sun/star/uno/XInterface.hpp"
#include "com/sun/star/uno/Runtime... | [
"schorsch@localhost"
] | schorsch@localhost |
e0668e20e5eefef7fc3ec5467b297573d81b44d4 | 60a15a584b00895e47628c5a485bd1f14cfeebbe | /comps/docs/DBaseDoc/TalbeWiz.cpp | d4128d2474a4ce52c86359eccba1361799b74c99 | [] | no_license | fcccode/vt5 | ce4c1d8fe819715f2580586c8113cfedf2ab44ac | c88049949ebb999304f0fc7648f3d03f6501c65b | refs/heads/master | 2020-09-27T22:56:55.348501 | 2019-06-17T20:39:46 | 2019-06-17T20:39:46 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,377 | cpp | // TalbeWiz.cpp : implementation file
//
#include "stdafx.h"
#include "dbasedoc.h"
#include "TalbeWiz.h"
#include "Wizards.h"
/////////////////////////////////////////////////////////////////////////////
// CNewTablePage property page
IMPLEMENT_DYNCREATE(CNewTablePage, CPropertyPage)
CNewTablePage::CNewTablePage()... | [
"videotestc@gmail.com"
] | videotestc@gmail.com |
556b3deff07757d51642ecf8f2605e52ca1ef05b | e3a1bfda971a3b4fdd141db44957bdf9e6bee855 | /tube.cc | 5f2095eaa87c623f185d1a037ba7c22363bb2499 | [] | no_license | wuqingjun/steamtrain | 85a52ca786a9a683b21db714047dd53d2c4b4301 | 290239000b67c98d1900bcc916c24e94788507c1 | refs/heads/master | 2021-01-15T09:29:44.121638 | 2015-12-08T09:41:02 | 2015-12-08T09:41:02 | 46,906,553 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 533 | cc | #include "color.h"
#include "cube.h"
#include "pile.h"
#include "tube.h"
#define GL_GLEXT_PROTOTYPES
#ifdef __APPLE__
#include <GLUT/glut.h>
#else
#include <GL/glut.h>
#endif
extern float rep;
extern float shinyvec[1];
extern unsigned int texture[20];
//
// draw the cylinder. for example the stick holding the bubble... | [
"wadewu@wades-MacBook-Pro.local"
] | wadewu@wades-MacBook-Pro.local |
d96e8116177a15ed0f13c2ad503e73b618fabeac | e3e14afd9c330be84c92a54a465b586520ad1ee4 | /acmp/0199.cpp | aa7766db59f869cbe0e7e9b52727e396dcad2422 | [] | no_license | zv-proger/ol_programms | ab5a6eeca4fa1c3eb30dc49b4ebd223eb0b8deb5 | acf305c1216ab10f507a737d8f4bcf29f0e2024b | refs/heads/master | 2022-12-14T22:56:18.294281 | 2020-09-18T09:54:25 | 2020-09-18T09:54:25 | 279,568,502 | 0 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 1,292 | cpp | /*
Автор кода: Вадим Зинов (zv.proger@yandex.ru)
Решение задачи 0199 с сайта acmp.ru
*/
#include<bits/stdc++.h>
using namespace std;
map<int, string> alpha = {
{-1, "I"},
{-4, "IV"}, {-5, "V"},
{-9, "IX"}, {-10, "X"},
{-40, "XL"}, {-49, "IL"}, {-50, "L"},
{-90, "XC"}, {... | [
"zv.proger@yandex.ru"
] | zv.proger@yandex.ru |
725ce5f7a0e744692b19eb08cc0ab64e2c2379bc | 9fbc3f5a431edf121b6e8c799556838fa0c6b069 | /clhero_localization/src/filler.cpp | 5679e6555de7a1556bb94fd511d34abf86d2d821 | [] | no_license | raulCebolla/clhero_navigation | 8777c5fd4f791fceb042d2a1dfa1bc22422c784b | 1d1a23683f18a8dd5a934f2a17c863040cc5726d | refs/heads/master | 2020-06-25T06:26:47.015947 | 2019-12-16T15:26:07 | 2019-12-16T15:26:07 | 199,230,687 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,255 | cpp | //=====================================================================
// Author: Raúl Cebolla Arroyo
// File:
// Version:
// Description:
// Changelog:
//=====================================================================
//---------------------------------------------------------------
// Includes
//----------... | [
"noreply@github.com"
] | noreply@github.com |
162c005f566cb7ab18c6029097528dd74dab986d | 6ecf205719a9f0ec50d4dd6892135294c8b9ae01 | /unittest/wrtp/CMMFrameManagerTest.cpp | c9742f928630d4a0d390853238d8feee6f4170a1 | [] | no_license | zzchu/wme-ref-app | 25a8786d29d001e37e2ce91f0ca928bab2187cff | 5cbf042d26c6d91f35a352a71e0d2961c12cd3f6 | refs/heads/master | 2021-01-01T03:39:18.439856 | 2016-04-21T07:44:56 | 2016-04-21T07:44:56 | 56,753,029 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 864 | cpp | #include "gmock/gmock.h"
#include "gtest/gtest.h"
#define private public
#include "mmframemgr.h"
#include "testutil.h"
using namespace wrtp;
class CMMFrameManagerTest : public ::testing::Test
{
public:
virtual void SetUp()
{
}
virtual void TearDown()
{
}
public:
};
TEST_F(CMMFrameManagerTes... | [
"zhchu@cisco.com"
] | zhchu@cisco.com |
324a10757801a50417eacf2066fc7ebd0e5cc484 | 7379c8405ece98bd383f13aea040170e9576a949 | /SaveMe/Classes/InfoScreen.cpp | 1f2d3b085e0250cdf5763306a311919b6f670218 | [
"MIT"
] | permissive | Crasader/SaveMe | 77807096cf0222b5682892401c2e7f0a970a96e5 | e5fd1af69cbbb2c51e662f7205aa4a371e4bc511 | refs/heads/master | 2021-06-22T06:40:26.322569 | 2017-07-06T10:12:35 | 2017-07-06T10:12:35 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,201 | cpp | #include "InfoScreen.h"
#include "MainMenuScene.h"
#include "SimpleAudioEngine.h"
#include "SonarFrameworks.h"
#include "Constants.h"
USING_NS_CC;
using namespace CocosDenshion;
void InfoScreen::initBackButtonListener()
{
auto listener = EventListenerKeyboard::create();
listener->onKeyPressed = [=](EventKey... | [
"parikshitsaraswat@outlook.com"
] | parikshitsaraswat@outlook.com |
d1d20f867681bac2f2692e73949c63078eb9d5a2 | 3cd606b442ceb7d64e4e1e7d322034a05091c87d | /exercises/ex7/box.h | 651eea14c8fd19854f4a3dd9a993742d055ea1df | [] | no_license | Mellechowicz/bill | 4dd1b27343e426849d8998e4fce7a6717ed9c773 | 4598e2bb509ca57b59f90f967f39bf0f731d307e | refs/heads/master | 2021-01-11T15:36:44.582258 | 2019-05-23T17:57:07 | 2019-05-23T17:57:07 | 79,896,994 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,438 | h | #ifndef BOX_H
#define BOX_H
#include "../../headers/billrigidbody.h"
#include "../../headers/billvector.h"
#include <tuple>
class box : public bill::BillRigidBody{
protected:
double a,b,c; // długości boków
std::vector<bill::vector> colors;
bill::vector punkt_tarcia;
void rotatevector(bill::vector& v); // rot... | [
"andrzej@Lancre"
] | andrzej@Lancre |
ac9d670cd6a873080e0a2d2eb7f803941655cab9 | 24ce671e5633255ab8c5a3c7cc17fa5722e52a47 | /src/qt/bitcoinunits.cpp | 296a110398226c75f6d8d354fe9536bf64386c40 | [
"MIT"
] | permissive | corecoin1/CoreCoin | 6f3d913165ad7904ae3dee19877c6b5afe745794 | 959db3d414fee461cbf54d7aad0e5e0636a05e06 | refs/heads/master | 2021-01-17T08:04:19.279170 | 2016-07-07T02:27:10 | 2016-07-07T02:27:10 | 62,768,152 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 4,284 | cpp | #include "bitcoinunits.h"
#include <QStringList>
BitcoinUnits::BitcoinUnits(QObject *parent):
QAbstractListModel(parent),
unitlist(availableUnits())
{
}
QList<BitcoinUnits::Unit> BitcoinUnits::availableUnits()
{
QList<BitcoinUnits::Unit> unitlist;
unitlist.append(BTC);
unitlist.append(mBT... | [
"nohhplus@gmail.com"
] | nohhplus@gmail.com |
bee04e07f3718658c4fabfa2dfffefd37ef87e63 | d002ed401cba924074e021d22347b84334a02b0f | /export/windows/obj/include/openfl/display/_MovieClip/FrameSymbolInstance.h | f5f21e7ccb18045c83797751d3f1dc8665d2dbd4 | [] | no_license | IADenner/LD47 | 63f6beda87424ba7e0e129848ee190c1eb1da54d | 340856f1d77983da0e7f331b467609c45587f5d1 | refs/heads/master | 2022-12-29T13:01:46.789276 | 2020-10-05T22:04:42 | 2020-10-05T22:04:42 | 301,550,551 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | true | 2,570 | h | // Generated by Haxe 4.1.2
#ifndef INCLUDED_openfl_display__MovieClip_FrameSymbolInstance
#define INCLUDED_openfl_display__MovieClip_FrameSymbolInstance
#ifndef HXCPP_H
#include <hxcpp.h>
#endif
HX_DECLARE_CLASS2(openfl,display,DisplayObject)
HX_DECLARE_CLASS2(openfl,display,IBitmapDrawable)
HX_DECLARE_CLASS3(openfl,... | [
"theiadstudios@gmail.com"
] | theiadstudios@gmail.com |
70a9ff65611d515bf404fef7e86be454b211a2a5 | 486d72bad6e44007befa7af90e4801c76f0336f1 | /src/sdk/client.h | 23dce5ad12a904f9db997af21018fc24b74c0f98 | [
"BSD-3-Clause"
] | permissive | duzhanyuan/squirrel | 1078197852378fdac585ebfb3a0bf83d412baaed | 5fb40ea0f8bbcd14dbf42f3b31b8e78f15978f97 | refs/heads/master | 2021-01-23T04:20:39.160465 | 2015-12-17T09:44:38 | 2015-12-17T09:44:38 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,599 | h | // Copyright (c) 2015, squirreldb. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CLIENT_SQUIRREL_CLIENT_H
#define CLIENT_SQUIRREL_CLIENT_H
#include <sofa/pbrpc/pbrpc.h>
#include <thread_pool.h>
#include <mutex.h>
#include <counter.... | [
"leiliyuan@baidu.com"
] | leiliyuan@baidu.com |
09b62e0fb86ecc10f22153bb4a0a53730d8e1169 | dbcbd51e50314a081817171de2df8e71dc354e99 | /AtCoder/PracticeProblems/AGC017_A_Biscuits/prog.cpp | 2ae0becf1c7a6ffe03007c58c34f12371fdeedb1 | [] | no_license | Shitakami/AtCoder_SolveProblems | cb3dfedad42486d32d036f896b7b09b1c92bbfa1 | a273d001852273581e1749c2c63820946122c1e2 | refs/heads/master | 2021-01-03T05:19:13.944110 | 2020-07-05T16:42:09 | 2020-07-05T16:42:09 | 239,938,798 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,226 | cpp | #include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
using ull = unsigned long long;
ull C(int size, int count) {
ull x = 1;
ull y = 1;
for(int i = 0; i < count; ++i) {
x *= (size - i);
y *= (i + 1);
if(x % y == 0) {
x /= y;
y =... | [
"vxd.naoshi.19961205.maro@gmail.com"
] | vxd.naoshi.19961205.maro@gmail.com |
72d8c6dca5bbdd6b23a93a32b8a3c6327c565f4f | 26c7333bdb03120e5d769d090fd34fdf7d2cbf99 | /BTree.hpp | 70ebcdd3adf8eaef416cc0cfd6a4803e7d4f3e76 | [] | no_license | jiangzhongping1999/BTree_Submit | fdf542d20b60ed37cd518fbcb787d3d6dedef190 | 0fe4d67e376e25fcbcb8bcbdf3e356d896a2f183 | refs/heads/master | 2020-06-01T23:19:23.943350 | 2019-06-09T09:47:13 | 2019-06-09T09:47:13 | 190,963,508 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 35,430 | hpp | #include "utility.hpp"
#include <functional>
#include <cstddef>
#include "exception.hpp"
#include <cstdio>
namespace sjtu {
//B+树索引存储地址
constexpr char BPTREE_ADDRESS[128] = "mybptree.sjtu";
template <class Key, class Value, class Compare = std::less<Key> >
class BTree {
private:
// Your private members go here
... | [
"noreply@github.com"
] | noreply@github.com |
f821062ef758b0e264b6ded72d3fc6d173e2d426 | 314609125e587610353ad0fe67f58bdf45b0c6e1 | /Game/Tiles/BridgeTile.h | 71c91f29aab854da8194b316f875754ba837b03c | [] | no_license | Epidilius/ZeldaStyleAdventureGame | 1e1b71cf2914c1ca5ea1ff803bf10d172e74b562 | bd2bbc89f5acf07c8c89f6301aef326fdeead238 | refs/heads/master | 2021-01-10T17:15:54.039969 | 2015-09-27T22:31:38 | 2015-09-27T22:31:38 | 43,267,623 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,044 | h | //
// BridgeTile.h
// GameDev2D
//
// Student: Joel Cright & Rachel Joannis
// Cretion Date: Fall 2014
// Course Number: GAM1540
// Professor: Bradley Flood
// Purpose: To create bridges
// Copyright (c) 2014 Algonquin College. All rights reserved.
//
#ifndef __GameDev2D__BridgeTile__
#define __GameDev2D... | [
"joel.cright@gmail.com"
] | joel.cright@gmail.com |
d66abe262399f213323e4765a86a1d11958e76fe | 83220a9e4c64babd163da3e8d345de3b597a8707 | /18open/alex/family_bronze.cpp | c96ef099c21304312ac31c0456e0a8a3fabc2c2e | [] | no_license | hzhou/usaco | bd9dfa8be88206ad9f152edce81ea63b0f119ba7 | 928777159d8243fc0f6e0bdb26ec0b094a0ec30f | refs/heads/master | 2021-12-23T05:27:38.817952 | 2021-12-12T16:23:44 | 2021-12-12T16:23:44 | 177,450,503 | 1 | 13 | null | null | null | null | UTF-8 | C++ | false | false | 2,467 | cpp | //ALEX, DIDNT FINISH
#include <cstdio>
#include <fstream>
#include <iostream>
#include <algorithm>
#include <string>
using namespace std;
int main ()
{
ifstream fin ("family.in");
ofstream fout ("family.out");
int n;
string bessie, elsie;
fin >> n >> bessie >> elsie;
co... | [
"hzhou@hzsolutions.net"
] | hzhou@hzsolutions.net |
a63b3bcfe04d4aa28d3068cbfea8c58291806fe8 | e7a6eb8dd69843e7a4e4196d25d572e5ac8e4cee | /source/SaveController.cpp | c8d31422d31b58d046569072350ce5cf893b5f5a | [
"MIT"
] | permissive | Git-Teo/Lidl-Soundboard | fe7e6f7be2743bcf0ee6816c34bb123ceb324ccd | 2de2792899beb827a6c2d95f8481ec732d022416 | refs/heads/master | 2021-05-18T18:05:07.078865 | 2019-07-30T12:36:45 | 2019-07-30T12:36:45 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 42,381 | cpp | #include "SaveController.h"
namespace LIDL {
namespace Controller {
SaveController* SaveController::self = nullptr;
SaveController::SaveController()
{
connect(this,&SaveController::lidlJsonDetected,
LIDL::Controller::SettingsController::GetInstance(),&LIDL::Controller::SettingsController::addFileT... | [
"contact@davidbouet.fr"
] | contact@davidbouet.fr |
e450d4c08262cb124fdc18358c67660965af0c27 | dc182283f6eed3b5aaa45c7da61bdc07b41ee161 | /chrome/browser/ui/startup/startup_browser_creator_welcome_back_browsertest.cc | ee5d5e0d807fd5e25a2ddd7d9dea4db93d206390 | [
"BSD-3-Clause"
] | permissive | KHJcode/chromium | c2bf1c71363e81aaa9e14de582cd139e46877e0a | 61f837c7b6768f2e74501dd614624f44e396f363 | refs/heads/master | 2023-06-19T07:25:15.090544 | 2021-07-08T12:38:31 | 2021-07-08T12:38:31 | 299,554,207 | 1 | 0 | BSD-3-Clause | 2020-09-29T08:33:13 | 2020-09-29T08:33:12 | null | UTF-8 | C++ | false | false | 5,056 | cc | // Copyright 2021 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <memory>
#include <string>
#include <utility>
#include <vector>
#include "base/command_line.h"
#include "base/values.h"
#include "chrome/browser... | [
"chromium-scoped@luci-project-accounts.iam.gserviceaccount.com"
] | chromium-scoped@luci-project-accounts.iam.gserviceaccount.com |
4b41305daffc76daab2e0f684eb5d4b5e1c7d2cf | 683537fa4613aa5a404520cd5cc9dab2d85c9ef7 | /tp4_ESIR/third-party/visp-3.1.0-build/include/visp3/core/vpNetwork.h | 2c866d33efe5d83f3f7a1976b4bd42f82e6000b0 | [] | no_license | SuperRonan/IMM | caac5a2e7fd87af81ecac63119640ade61914d2a | 0b88dd11213c0bf99bc371a5b50412c8eccffcfb | refs/heads/master | 2020-11-23T20:49:37.482881 | 2019-12-19T09:59:57 | 2019-12-19T09:59:57 | 227,814,002 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 16,362 | h | /****************************************************************************
*
* This file is part of the ViSP software.
* Copyright (C) 2005 - 2017 by Inria. All rights reserved.
*
* This software is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as p... | [
"16007067@e008m06.istic.univ-rennes1.fr"
] | 16007067@e008m06.istic.univ-rennes1.fr |
6eeafd598fa9504bb4f4261d8c555a1768f70de3 | 54fed540dd338575aa1e4210b8bb1d4853235e64 | /contracts/examples/store/store.cpp | 0e8800ee9f142067c43136d4b25e786ed2c6e077 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | my-graphene/core | 84d3c30efd3b0f2e8fc7332831a6af93e0403482 | 3959619043c06bd3f54a3e6897fab755801db464 | refs/heads/master | 2020-05-23T14:43:12.963494 | 2019-05-22T12:55:22 | 2019-05-22T12:55:22 | 186,809,764 | 0 | 1 | MIT | 2019-05-22T12:56:14 | 2019-05-15T11:08:15 | WebAssembly | UTF-8 | C++ | false | false | 481 | cpp | #include <graphenelib/graphene.hpp>
#include <graphenelib/contract.hpp>
#include <graphenelib/dispatcher.hpp>
#include <graphenelib/print.hpp>
#include <graphenelib/types.h>
using namespace graphene;
class store : public contract
{
public:
store(uint64_t id)
: contract(id)
{
}
/// @abi action... | [
"yueyemingming@163.com"
] | yueyemingming@163.com |
f8ab80498f724af067f4329f3a7e6fed016938b2 | 81fea7e421f7a8dce11870ca64d4aed1d1c75e04 | /c++03/bitwise.cpp | cf3365d10cdcd4788a485c64d72eebbdfff2824b | [] | no_license | petergottschling/dmc2 | d88b258717faf75f2bc808233d1b6237cbe92712 | cbb1df755cbfe244efa0f87ac064382d87a1f4d2 | refs/heads/master | 2020-03-26T14:34:26.143182 | 2018-08-16T14:00:58 | 2018-08-16T14:00:58 | 144,994,456 | 27 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 388 | cpp | #include <iostream>
int main ()
{
const int concave = 1, monotone = 2, continuous = 4;
int f_is = concave | continuous;
std::cout << "f is " << f_is << std::endl;
std::cout << "Is f concave? (0 means no, 1 means yes) "
<< (f_is & concave) << std::endl;
f_is = f_is | monotone;
f_is = f_is ^ concav... | [
"peter.gottschling@simunova.com"
] | peter.gottschling@simunova.com |
092e3d6993652eeeae5cfb85986c75dd1eeb6d36 | 19194c2f2c07ab3537f994acfbf6b34ea9b55ae7 | /android-31/android/speech/tts/TextToSpeech_EngineInfo.def.hpp | ea34a380ead758ac657b720f3d4eb8f600c0c387 | [
"GPL-3.0-only"
] | permissive | YJBeetle/QtAndroidAPI | e372609e9db0f96602da31b8417c9f5972315cae | ace3f0ea2678967393b5eb8e4edba7fa2ca6a50c | refs/heads/Qt6 | 2023-08-05T03:14:11.842336 | 2023-07-24T08:35:31 | 2023-07-24T08:35:31 | 249,539,770 | 19 | 4 | Apache-2.0 | 2022-03-14T12:15:32 | 2020-03-23T20:42:54 | C++ | UTF-8 | C++ | false | false | 607 | hpp | #pragma once
#include "../../../JObject.hpp"
class JString;
namespace android::speech::tts
{
class TextToSpeech_EngineInfo : public JObject
{
public:
// Fields
jint icon();
JString label();
JString name();
// QJniObject forward
template<typename ...Ts> explicit TextToSpeech_EngineInfo(const char *c... | [
"yjbeetle@gmail.com"
] | yjbeetle@gmail.com |
419b26cab7336b70f781633af5b3ec099a3c60fb | 215931e243fdf5a977972b603ec853a254c46d65 | /tb_supply.hpp | da2265430123728d71bf14131c982333755ebbcd | [] | no_license | TacBF/tb_rhs_front_line.takistan | 15aee727415ca6803b2b40dfe40e2b7fea400b48 | 23fcf7bebe73cdbfcf6240a2d835d335bfb7d9ac | refs/heads/master | 2021-01-19T20:31:28.604088 | 2017-04-17T14:40:14 | 2017-04-17T14:40:14 | 88,517,306 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,577 | hpp | class TacBF
{
class Supply
{
// Generates cargo IDs (More effecient broadcasting for these items + their ammo)
staticWeapons[] = {"RHS_M2StaticMG_WD", "RHS_M2StaticMG_MiniTripod_WD", "RHS_M252_D", "RHS_AGS30_TriPod_MSV", "rhs_Kornet_9M133_2_msv", "RHS_TOW_TriPod_D", ... | [
"ballista.milsim@gmail.com"
] | ballista.milsim@gmail.com |
d94fd6646ad997bf6aed938d70fa3d867f2f0d51 | 9e438d6219ef9943aab8a65ec5262a911c5fb74e | /css/grammar.c++ | b8f01c4dde194577e35ba5030cfe93d5a83ccbb0 | [
"MIT"
] | permissive | zengqh/skui-1 | 1f7a476ea493b7dbd0203c6e1caf3ec3f37a5abc | 1ce452cbee3230ffc20fa477b57a5fde3ea113b9 | refs/heads/master | 2020-04-14T11:10:25.712744 | 2018-12-31T12:54:42 | 2018-12-31T12:54:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,391 | /**
* The MIT License (MIT)
*
* Copyright © 2018 Ruben Van Boxem
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to us... | [
"vanboxem.ruben@gmail.com"
] | vanboxem.ruben@gmail.com | |
e29b75600eeea5252a69217c3c9c6d26eb447d08 | 76300ff711cae22c52ce801eea7bec1a340cd5d1 | /include/ExecutedCommand.h | 33a1e2b8566f167a3a34262505e655e977c7e239 | [
"MIT"
] | permissive | benhe119/osquery_history_extension | d23ef21e744362e6d97231ebaa964c0618de105c | 8fcf927e319db53fbda59de4cd66c56d48012b20 | refs/heads/master | 2020-12-04T11:09:29.931916 | 2020-01-03T11:14:25 | 2020-01-03T11:14:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 810 | h | #pragma once
#include <iostream>
#include <string>
#include <chrono>
#include <boost/filesystem.hpp>
namespace bfs = boost::filesystem;
class ExecutedCommand {
public:
ExecutedCommand(const std::string& command,
const bfs::path& path,
const std::time_t& time);
... | [
"u.turkaev@yandex.ru"
] | u.turkaev@yandex.ru |
69c5238b9e8f6e756c1409ca3b80f0d10c4f4a7d | 0ecf2d067e8fe6cdec12b79bfd68fe79ec222ffd | /ash/app_menu/notification_item_view.cc | d4efe9aef5440f2132f4afee7e00d2e09c8284c4 | [
"BSD-3-Clause"
] | permissive | yachtcaptain23/browser-android-tabs | e5144cee9141890590d6d6faeb1bdc5d58a6cbf1 | a016aade8f8333c822d00d62738a922671a52b85 | refs/heads/master | 2021-04-28T17:07:06.955483 | 2018-09-26T06:22:11 | 2018-09-26T06:22:11 | 122,005,560 | 0 | 0 | NOASSERTION | 2019-05-17T19:37:59 | 2018-02-19T01:00:10 | null | UTF-8 | C++ | false | false | 5,969 | cc | // Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ash/app_menu/notification_item_view.h"
#include "ash/public/cpp/app_menu_constants.h"
#include "ui/gfx/geometry/size.h"
#include "ui/gfx/image/... | [
"artem@brave.com"
] | artem@brave.com |
7e5ed687c86bff103e627f51d17858d9f32dee0f | 2bf70fea41c01477d93fa4f6cb64809a74e643e0 | /CSE-2422/27.4.21/main.cpp | 28b9e12c42f537c87fadff72075a930a212d896d | [] | no_license | Shafiahuma/UVA | 3f6fc1517f1e0c09b4e8fcb8f383e8a3e6975a8e | 94b179366fc33a6aac3f7465be3a3fa569816144 | refs/heads/main | 2023-04-26T00:32:54.148880 | 2021-05-24T07:03:00 | 2021-05-24T07:03:00 | 370,254,559 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,699 | cpp | /*Fractional Knapsack using Greedy Method*/
#include<stdio.h>
void knapsack(int n,float profit[],float weight[],float M){
float x[20],tp=0;
int i,j;
printf("\nEntered Items are :\n ");
printf(" Value\t\t\tProfit:");
printf("\n---------------------------\n");
for(i=0;i<n;i++){
printf("%f\... | [
"snhuma2199@gmail.com"
] | snhuma2199@gmail.com |
49cd13e88df1778f3f7dc732c78d96b1cc7db253 | 06e3cbf6440cc2aea46100c3a5e8f5b26869c80d | /data_check/EnergyLoss.h | bfe9790eb21e7dcf7a2698f3e427a50e0ebf520f | [] | no_license | LasDes/RPC_Geant4 | c3615a852ee9776900345453128f4c8586280a6b | 9e17791f2f9423b8d9296e3d74d845688aae8977 | refs/heads/master | 2021-06-13T03:33:51.281032 | 2017-02-10T07:44:42 | 2017-02-10T07:44:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,038 | h | //Written by Rohith Saradhy
#include <iostream>
#include <fstream>
#include <string>
#include <math.h>
using namespace std;
#ifndef ENERGYLOSS_H
#define ENERGYLOSS_H
double density(double b,double C,double x0,double x1,double a ,double k, double d,bool conductor)
{
double x = log(b/pow((1-pow(b,2)),0.5))/log(10);
... | [
"rohithsaradhy"
] | rohithsaradhy |
b1452f8614bd5be63cd4630c964f412ea632532b | 67281c684a1722151cfdbbba2f09c215b2bb7b19 | /greedy/candyshop.cpp | 17904ca8fc30efaeced7b003226a47d40f33b0df | [] | no_license | ritikdhasmana/DS-Algo | e20d388de977e3f8a24fe0e1e7612275041c7e3d | c86e63cc5b868b391888d4b4995a39a00cf21aad | refs/heads/main | 2023-06-29T03:31:36.117050 | 2021-08-06T05:27:26 | 2021-08-06T05:27:26 | 393,258,107 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,688 | cpp |
/*In a candy store, there are N different types of candies available and the prices of all the N different types of candies are provided to you.
You are now provided with an attractive offer.
You can buy a single candy from the store and get at most K other candies ( all are different types ) for free.
Now you hav... | [
"noreply@github.com"
] | noreply@github.com |
134140c345f9faa09aef2b551b3f4338e30d66b8 | c0616d556e33ef70e310030cc63d99bc2c00c65e | /高晨雨-Plan_A/Uva548.cpp | d87b185cf6f1972848111dea40f567e436e1c4e8 | [] | no_license | CSWithJoy/Week-03-04-Coding-Training | 7aad7749ab4a1a5214729ff3aaffd20863fccc98 | b75bebcc1f3cf2017ee8b175cd1ce82963b1766d | refs/heads/master | 2021-01-01T05:16:33.580710 | 2016-05-10T05:29:39 | 2016-05-10T05:29:39 | 56,973,674 | 0 | 7 | null | 2016-05-10T05:29:39 | 2016-04-24T13:43:22 | C++ | UTF-8 | C++ | false | false | 1,210 | cpp | //二叉树的重建
#include<iostream>
#include<stdio.h>
#include<algorithm>
using namespace std;
#define MAX 10005
int in_order[MAX],post_order[MAX],lch[MAX],rch[MAX];
int n;
char s[MAX];
int build(int L1,int R1,int L2,int R2)
{
if(L1>R1) return 0;
int root=post_order[R2];//后序遍历中的最后一个为根节点
int p=L1;
while(in_order[p]!=root) p... | [
"757120572@qq.com"
] | 757120572@qq.com |
753690aa3f093fb4e67903e9d7de097dc068876b | b22588340d7925b614a735bbbde1b351ad657ffc | /athena/Trigger/TrigTools/TrigInDetTrackFitter/TrigInDetTrackFitter/TrigL2HighPtTrackFitter.h | 9ed6b5525c1fbcdba3690b26bc1b17398705de6a | [] | no_license | rushioda/PIXELVALID_athena | 90befe12042c1249cbb3655dde1428bb9b9a42ce | 22df23187ef85e9c3120122c8375ea0e7d8ea440 | refs/heads/master | 2020-12-14T22:01:15.365949 | 2020-01-19T03:59:35 | 2020-01-19T03:59:35 | 234,836,993 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,322 | h | /*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
*/
#ifndef __TRIG_L2_HIGH_PT_TRACK_FITTER_H__
#define __TRIG_L2_HIGH_PT_TRACK_FITTER_H__
#include "AthenaBaseComps/AthAlgTool.h"
#include "GaudiKernel/MsgStream.h"
#include "GaudiKernel/ToolHandle.h"
#include "TrkDistributedKalmanFilter/Tr... | [
"rushioda@lxplus754.cern.ch"
] | rushioda@lxplus754.cern.ch |
d0850262991566ed0d0d0a570bea822d9848d435 | 8438f7731580fa5dfe6643e9cdfaa55a9e0a2c6a | /protara/PRatio/peakPicker.cpp | e66270a6e18a61c07aa940d2bd30091f2ea310b2 | [] | no_license | guo-xuan/ProRata | 84b5d016f9bb1a2b7d4c66010f5b58bf4c96719a | 94d743a6c44f2abe48dc75b77750e6bb6f7eb1c0 | refs/heads/master | 2020-06-27T05:07:48.083670 | 2017-07-13T20:59:37 | 2017-07-13T20:59:37 | 97,048,530 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,870 | cpp | #include "../../protara/PRatio/peakPicker.h"
PeakPicker::PeakPicker()
{
iRightValley = 0;
iLeftValley = 0;
dPeakHeightPPC = 0;
bPeakValidity = false;
iChroLength = 0;
fLeftMS2Time = 0;
fRightMS2Time = 0;
iNumberofScansShifted = 0;
}
PeakPicker::~PeakPicker()
{
// destructor
}
bool PeakPic... | [
"xuan_guo@outlook.com"
] | xuan_guo@outlook.com |
debb4c968a272fbe2fb3d7e7ba81c57914e26ce3 | bf78b4d9842faeeeb1d715161d71f137a718b7f1 | /core/include/engine/Solver_LBFGS_Atlas.hpp | 0f2f85fe115be6c21c1b5fa017b48e7af29baa3f | [
"MIT"
] | permissive | FermiQ/spirit | d7eecc9e3db4cb206a7d9d852f92ec7206caf336 | 14ed7782bd23f4828bf23ab8136ae31a21037bb3 | refs/heads/master | 2023-06-28T02:43:46.331959 | 2021-01-11T18:06:06 | 2021-01-11T18:06:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,694 | hpp | #pragma once
#ifndef SOLVER_LBFGS_ATLAS_HPP
#define SOLVER_LBFGS_ATLAS_HPP
#include <utility/Constants.hpp>
// #include <utility/Exception.hpp>
#include <engine/Backend_par.hpp>
#include <algorithm>
using namespace Utility;
template <> inline
void Method_Solver<Solver::LBFGS_Atlas>::Initialize ()
{
this->n_lbfgs... | [
"m.sallermann@fz-juelich.de"
] | m.sallermann@fz-juelich.de |
32cecb39d31ff8d10cb14e4644b1569a91297d07 | 63a6335819200bd4eef3fea8ec3cf0e7d77d7d82 | /EmptyGeneralTesting/source/Variable.h | c44e9cc130242eb53aec8750517847e5cb7959cf | [] | no_license | CupsAndBottles/CS3201-MiniSPA | 289448b46e60bb00a36c9c31d455e0dfd42f04bb | 37749775ff5007fc15e472d5a840bfb518301a4e | refs/heads/master | 2021-05-08T21:58:18.387040 | 2015-11-12T04:08:44 | 2015-11-12T04:08:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 592 | h | #pragma once
#include <string>
#include <vector>
#include <algorithm>
#include <iostream>
using namespace std;
class Variable
{
public:
Variable();
~Variable();
int getindex();
string getVarName();
vector<int> getModifiedBy();
vector<int> getUsedBy();
vector<int> getProcNames();
void insertIntoModify(int m... | [
"gangadevi.balakrishnan@gmail.com"
] | gangadevi.balakrishnan@gmail.com |
39dd3052a53f14160d32bddcb25971dba76d2df2 | 3b9b4049a8e7d38b49e07bb752780b2f1d792851 | /src/third_party/WebKit/Source/core/css/FontFaceSetLoadEvent.h | da7407242133e4d68f8a047eedabb45ede1d83b7 | [
"BSD-3-Clause",
"Apache-2.0",
"LGPL-2.0-or-later",
"LicenseRef-scancode-warranty-disclaimer",
"LGPL-2.1-only",
"GPL-1.0-or-later",
"GPL-2.0-only",
"LGPL-2.0-only",
"BSD-2-Clause",
"LicenseRef-scancode-other-copyleft",
"MIT"
] | permissive | webosce/chromium53 | f8e745e91363586aee9620c609aacf15b3261540 | 9171447efcf0bb393d41d1dc877c7c13c46d8e38 | refs/heads/webosce | 2020-03-26T23:08:14.416858 | 2018-08-23T08:35:17 | 2018-09-20T14:25:18 | 145,513,343 | 0 | 2 | Apache-2.0 | 2019-08-21T22:44:55 | 2018-08-21T05:52:31 | null | UTF-8 | C++ | false | false | 2,872 | h | /*
* Copyright (C) 2013 Google Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditio... | [
"changhyeok.bae@lge.com"
] | changhyeok.bae@lge.com |
2367ac3aa008eee21925a76ed700941d35f6ee7d | 0e19b378b2e043ddc50ef1497779a01221fc6b78 | /Classes/models/paths/square/SquarePath.h | f764f2f92270ac639296ebfb5af915cb8ca8ff55 | [] | no_license | DadTraining/YearEnd2018_Group3_the.hopeful.letter | a0c9e9ee7d4c01f02cce370df56b79e439ede414 | 8187d6916299a728ce62938bc591768a25ad1517 | refs/heads/master | 2020-04-18T06:04:24.175103 | 2019-03-08T06:47:36 | 2019-03-08T06:47:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,264 | h | #pragma once
#include "models/paths/core/CorePath.h"
#include "cocos2d.h"
class SquarePath : public CorePath
{
private:
cocos2d::Vec2 mTouchLocation;
cocos2d::Vec2 mPoint1;
cocos2d::Vec2 mPoint2;
cocos2d::Vec2 mPoint3;
cocos2d::Vec2 mPoint4;
int mLength;
int mDirection;
/*Change variables here t... | [
"quoctuan1998@gmail.com"
] | quoctuan1998@gmail.com |
c05c6820c26d9e526214ca8bb32a80ef83f9d4ef | 1686fa830ebabd71e455372dd5335b5e60c027d4 | /Tutorial 39_Particle Systems/Engine/systemclass.cpp | c87399e96ddbeeabd3652a4d72bb8be98adc2b7f | [] | no_license | matt77hias/RasterTek | ec7892d8871641cf434d3ec1c2c6dbb688952136 | f65a3eb7bfe4c2419dbece9fce8adebd92c580f9 | refs/heads/master | 2023-07-23T04:02:42.010575 | 2023-07-10T07:05:12 | 2023-07-10T07:05:12 | 93,774,234 | 125 | 36 | null | 2023-07-10T07:35:04 | 2017-06-08T17:18:25 | C++ | UTF-8 | C++ | false | false | 7,192 | cpp | ////////////////////////////////////////////////////////////////////////////////
// Filename: systemclass.cpp
////////////////////////////////////////////////////////////////////////////////
#include "systemclass.h"
SystemClass::SystemClass()
{
m_Input = 0;
m_Graphics = 0;
m_Timer = 0;
}
SystemClass::SystemClass... | [
"matthias.moulin@gmail.com"
] | matthias.moulin@gmail.com |
0e4c1524371c41fe411594a74553caf520e28290 | 6c9215424549ed2f5d8d34ca12cdaa191a1de2c3 | /LoginFrame.cpp | 40dcc4c4e27f4dd4f1115c32bcbd12b64655a516 | [] | no_license | JakeKalstad/HushClient | e5d4caf97053a94000fcc1ec68b288280d780558 | d02bb23fabe4ff667af13b2aca3e78d0d2c3e3f1 | refs/heads/master | 2020-05-19T13:14:07.548221 | 2012-07-23T03:47:06 | 2012-07-23T03:47:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 448 | cpp | #include "LoginFrame.h"
#include "SendCmd.cpp"
LoginFrame::LoginFrame(User& user, const wxString& title, const wxPoint& pos, const wxSize& size)
: wxDialog(NULL, -1, title, pos, size), user(user) {
Result = Fail;
}
bool LoginFrame::Prompt() {
while(Result != Success) {
ShowModal();
// send server requ... | [
"gnostus@smtp.XION.craptop"
] | gnostus@smtp.XION.craptop |
a2e880259e8888517b833a397401a3cd750c36ae | 3af68b32aaa9b7522a1718b0fc50ef0cf4a704a9 | /cpp/A/D/B/D/B/AADBDB.h | 4c362c13592081c261ed037da5b8381dc270fceb | [] | no_license | devsisters/2021-NDC-ICECREAM | 7cd09fa2794cbab1ab4702362a37f6ab62638d9b | ac6548f443a75b86d9e9151ff9c1b17c792b2afd | refs/heads/master | 2023-03-19T06:29:03.216461 | 2021-03-10T02:53:14 | 2021-03-10T02:53:14 | 341,872,233 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 67 | h | #ifndef AADBDB_H
namespace AADBDB {
std::string run();
}
#endif | [
"nakhyun@devsisters.com"
] | nakhyun@devsisters.com |
d68e99ca1b30c8dee880632377ed8fc951defbf1 | b0815bbf979b5a1b4be70f61d592b2b86b371ac8 | /src/sdk-reference/cpp/1/realtime/unsubscribe/snippets/unsubscribe.cpp | fab1db109432ef97a4b0ee9cdba57a14036b43d2 | [] | no_license | stafyniaksacha/documentation-V2 | 59bfa6bb6511921422f9d6b2209f6e6f03c42066 | e43b933f6a9fe936f9f036d24ee064f3f110b330 | refs/heads/master | 2020-04-17T07:49:52.437235 | 2019-01-16T13:19:44 | 2019-01-16T13:19:44 | 166,386,202 | 0 | 0 | null | 2019-01-18T10:16:13 | 2019-01-18T10:16:12 | null | UTF-8 | C++ | false | false | 409 | cpp | kuzzleio::NotificationListener listener =
[](const kuzzleio::notification_result *notification){};
try {
std::string room_id = kuzzle->realtime->subscribe(
"nyc-open-data",
"yellow-taxi",
"{}",
&listener);
kuzzle->realtime->unsubscribe(room_id);
std::cout << "Successfully unsubscribed" << std... | [
"noreply@github.com"
] | noreply@github.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.