blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 3 264 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 5 140 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 905
values | visit_date timestamp[us]date 2015-08-09 11:21:18 2023-09-06 10:45:07 | revision_date timestamp[us]date 1997-09-14 05:04:47 2023-09-17 19:19:19 | committer_date timestamp[us]date 1997-09-14 05:04:47 2023-09-06 06:22:19 | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 22
values | gha_event_created_at timestamp[us]date 2012-06-07 00:51:45 2023-09-14 21:58:39 ⌀ | gha_created_at timestamp[us]date 2008-03-27 23:40:48 2023-08-21 23:17:38 ⌀ | gha_language stringclasses 141
values | src_encoding stringclasses 34
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 3 10.4M | extension stringclasses 115
values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
26bed2c3a6b6edf033573141d63c7cab81b6f551 | 1e0e16b83d4c8783c64a09ad998ef8c838551974 | /Userland/Libraries/LibUnicode/CharacterTypes.h | beb2288cfb7b6918a12be8d2a21e6004d3c2c64b | [
"BSD-2-Clause"
] | permissive | grlap/serenity | c61db5b82fcfa385c9c68bd37887d4577f12cc1a | d1ee31c5def4aa03798bcc8875bbd387df1b02e2 | refs/heads/master | 2023-07-03T12:49:20.390816 | 2021-07-29T21:28:04 | 2021-07-29T21:47:56 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 546 | h | /*
* Copyright (c) 2021, Tim Flynn <trflynn89@pm.me>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/Forward.h>
#include <AK/String.h>
#include <AK/Types.h>
namespace Unicode {
// Note: The single code point case conversions only perform simple case folding.
// Use the full-string transfo... | [
"mail@linusgroh.de"
] | mail@linusgroh.de |
90780627dc74f9d0dc1edb06d2245074c34dd633 | d2476c2672084f0287801280f51990f8c4648f2a | /Source/Choi/BTTask_TargetMove.cpp | 9a2f64a56e2d2a14b2a2419c87bcf6a96c2efe0b | [] | no_license | chamnah/Portfolio_Ue4Defence | ecf0d863d4648b0755a713e61425a6fe1355526c | a7350c9e411dfaf3c55886284e9d87c229dede66 | refs/heads/master | 2022-06-15T13:23:42.479726 | 2020-05-06T12:50:27 | 2020-05-06T12:50:27 | 261,756,385 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 158 | cpp | // Fill out your copyright notice in the Description page of Project Settings.
#include "BTTask_TargetMove.h"
UBTTask_TargetMove::UBTTask_TargetMove()
{
} | [
"46718509+chamnah@users.noreply.github.com"
] | 46718509+chamnah@users.noreply.github.com |
06f9a829ad4658bff0fbb2f16e0f772a2495d739 | 7977f753e46cbcaf335cfbd1b15de346008dbcb4 | /6/book_code/prog6_1_3_fact.cc | 6f95066fa80770474b7a141624b79847bed3f38a | [] | no_license | Roller44/learnCplusplus | e1d6f12e7e36a988f98eec22f32be24fd7bc924a | 277ed387fc694c9cd7bac1a2d1886653798846a5 | refs/heads/master | 2021-01-16T22:15:19.705016 | 2020-01-28T09:45:37 | 2020-01-28T09:45:37 | 56,282,711 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 129 | cc | #include "Chapter6.h"
int fact(int val)
{
int ret = 1;
while (val > 1) {
ret *= val--;
}
return ret;
}
| [
"roller44@163.com"
] | roller44@163.com |
3681368a5951bafa042aebeca4ac73f3659e96e9 | 452dafe3f2c76d22a33098634016c1e323456a67 | /Problems/1245A.cpp | 0c1e9e167479a78e7584856e5335d3606c54cf8a | [] | no_license | nikakogho/codeforces | 6c87b4d7b640808813e405d5ce6e129bd527f5df | b6261f5a83e221de190f6daec3ba932e45d1acca | refs/heads/master | 2023-03-21T19:34:58.401874 | 2021-03-06T15:49:16 | 2021-03-06T15:49:16 | 345,130,987 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 260 | cpp | #include <bits/stdc++.h>
using namespace std;
int main()
{
short t;
cin >> t;
while(t--)
{
int a, b;
cin >> a >> b;
while(a != b)
if(a > b) a -= b;
else b -= a;
string answer = a == 1 ? "Finite" : "Infinite";
cout << answer << endl;
}
}
| [
"nikakoghuashvili@gmail.com"
] | nikakoghuashvili@gmail.com |
eff15bf3ed53fbe654f2aa7d6c0ea403a54934b2 | bf8fdb14e8be48efd80c2d5e4a9751aded0b3e7b | /Game/Koopa.cpp | 17d3f00f00e6be6233112eec54d00e69d6571ced | [] | no_license | tranphuongduy20/supermario3 | 2aa6d7bec6c19d7955a0965b0649925f3465c5d0 | fcbb3275392f4cba96ec2dd614b9183f5abfe74e | refs/heads/master | 2023-01-13T07:15:37.029016 | 2020-11-13T07:01:00 | 2020-11-13T07:01:00 | 306,828,328 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,144 | cpp | #include "Koopa.h"
#include "Brick.h"
Koopa::Koopa()
{
tag = EntityType::KOOPA;
SetState(KOOPA_STATE_WALKING);
}
void Koopa::GetBoundingBox(float& left, float& top, float& right, float& bottom)
{
left = x;
right = x + KOOPA_BBOX_WIDTH;
bottom = y + KOOPA_BBOX_HEIGHT+1;
/*if (state == KOOPA_STATE_DIE)
bottom... | [
"bob@"
] | bob@ |
dc046b4ced497a6335a1b2be8a948df75eed62b3 | 976a99fbb455f5486196663ed319673d90faad62 | /src/QmlOpenGLWindowInteractor.cpp | 09640e9909e7479ca1c9750d42f358c0560342ab | [] | no_license | seanhxx/QMLOpenGLVTK | 666eff7b0226180129ba2ee637a5c65966c89eab | 58e4ea53c00d5fa05fb2df1b73c0a70808450c6c | refs/heads/master | 2020-09-14T00:26:03.799875 | 2019-12-10T10:23:47 | 2019-12-10T10:23:47 | 222,952,158 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,601 | cpp |
#include <QQmlContext>
#include <QQmlApplicationEngine>
#include <Qt>
#include "QmlOpenGLWindowInteractor.h"
#include "QmlVTKOpenGLRenderWindowInteractor.h"
QmlOpenGLWindowInteractor::QmlOpenGLWindowInteractor()
{
qDebug() << "QmlOpenGLWindowInteractor::QmlOpenGLWindowInteractor: Initialize";
setAcceptedMous... | [
"seanhxx42@live.com"
] | seanhxx42@live.com |
c303aad09a4dd71981fb6c9fa28b891e6ec362f6 | 63174a2104990b7202e9088bd28bfca578e36542 | /include/nvutils.h | 7b772351258b62593e2d828b232be9ade7e20ab4 | [] | no_license | Limbbo/Naverlabs-LiDAR-API | 98a32244225fb2e383cf4a66bd81c828e36aab98 | 3ca36c53f4273c21757551c9ac0ef259e81a8208 | refs/heads/main | 2023-09-05T10:02:54.658527 | 2021-11-19T08:23:32 | 2021-11-19T08:23:32 | 442,138,676 | 1 | 0 | null | 2021-12-27T11:20:38 | 2021-12-27T11:20:38 | null | UTF-8 | C++ | false | false | 6,465 | h | #ifndef NVUTILS_H
#define NVUTILS_H
#include <map>
#include <H5Cpp.h>
#include <boost/multi_array.hpp>
#include <experimental/filesystem>
#include <algorithm>
#include <iostream>
#include <vector>
#include <ros/ros.h>
#include <nav_msgs/Path.h>
#include <sensor_msgs/PointCloud2.h>
#include <geometry_msgs/Pose.h>
#inc... | [
"shapelim@kaist.ac.kr"
] | shapelim@kaist.ac.kr |
b3ea108ac3539c4159814e08237d67f13d61e91d | b609e082abeefb2c9be7bee31f2306b70bb29bce | /make_csr.cpp | 1bb32c14ddedc6018cf2403ea24cb8d32b8364cc | [
"MIT"
] | permissive | primenumber/LSmethod | 9bc6add6891c4ef59aa5055aedcc223eb33776b6 | 3f0f2ac216ce16f0cbb22a4ea8d86befddb4b773 | refs/heads/master | 2020-12-07T21:00:44.434162 | 2017-01-01T08:48:06 | 2017-01-01T08:48:06 | 66,283,857 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 793 | cpp | #include "make_csr.hpp"
namespace math {
SpMat make_csr() {
SpMat res;
// initialize matrix
int n;
scanf("%d", &n);
res.col_size = 0;
res.row_size = 0;
for (int i = 0; i < n; ++i) {
int row, col;
math::Real val;
scanf("%d %d %lf", &row, &col, &val);
res.col_size = std::max(res.col_size, ... | [
"prime@kmc.gr.jp"
] | prime@kmc.gr.jp |
6ae47ffd8835d814a202d26a935157375d745cf5 | 9e54913b877a1d53e4727e45df3f936591fdcae2 | /aceproc/str2array.cpp | 2b92ba28a3668f80e260fdc004f0fbc1117dd987 | [] | no_license | jhp333/aux | 3d25ad3a2fefe08b04b9e6726acc82b91aa38cfa | 55ca94d6dea93934feefa467684678f94ca7eee5 | refs/heads/master | 2021-01-23T22:43:05.311822 | 2015-09-12T08:02:53 | 2015-09-12T08:02:53 | 42,349,624 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,245 | cpp | #pragma once
#include <string>
using namespace std;
#include "audfret.h"
#include "audstr.h"
AUDFRET_EXP char* recoverNULL(int *dummy, char *dest, const char *src)
{ return NULL; }
AUDFRET_EXP char* recoverNULL(float *dummy, char *dest, const char *src)
{ return NULL; }
AUDFRET_EXP char* recoverNULL(double... | [
"jhp333@gmail.com"
] | jhp333@gmail.com |
d6c8ec5c3a518fd09427e47c812d86bdd70435e1 | db2aabbc48b0f4afa7e055d1002186caca957fd2 | /src/Plugins/HttpPlugin/HttpAsset/HttpAssetTransfer.h | 74be290d76de7974eb2413445f77e783c3b7b81d | [
"Apache-2.0"
] | permissive | antont/tundra-urho3d | e64ba692cc29821d1fd26aa3b321e4371b3efa1d | 648771b64934d671eb45f371e0d62ba9f9af2d28 | refs/heads/master | 2021-01-14T14:15:48.941407 | 2014-11-11T20:17:31 | 2014-11-11T20:17:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 576 | h | // For conditions of distribution and use, see copyright notice in LICENSE
#pragma once
#include "HttpPluginApi.h"
#include "HttpPluginFwd.h"
#include "IAssetTransfer.h"
namespace Tundra
{
/// HTTP asset transfer
class TUNDRA_HTTP_API HttpAssetTransfer : public IAssetTransfer
{
public:
HttpAssetTransfer(HttpAs... | [
"jonne@adminotech.com"
] | jonne@adminotech.com |
cfa03aa311bde2d3c3bab61311ef5a37c37f63ec | e4bd81fe110fdee8aafdede51e789f77ffe326d1 | /src/nodes/feature_tracker_node.cpp | 14890ffccfcf38d93b479d09f5291b12430ce19f | [] | permissive | ethz-ait/klt_feature_tracker | 07bef9795ad863a69409275a22973e45f2243082 | 9b5b567ae77f93d1ef4d36151529ba2506a46e7a | refs/heads/master | 2021-01-10T11:51:13.745216 | 2020-03-20T12:31:42 | 2020-03-20T12:31:42 | 54,370,683 | 42 | 56 | BSD-3-Clause | 2020-03-20T12:31:43 | 2016-03-21T08:11:50 | C++ | UTF-8 | C++ | false | false | 3,567 | cpp | /****************************************************************************
*
* Copyright (c) 2016 AIT, ETH Zurich. 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. Redistributio... | [
"depnicol@student.ethz.ch"
] | depnicol@student.ethz.ch |
acccb91713656739f61c6fcd9fc3d34eed249345 | 3829e05488f23c66d0c3f86f8ab600ae591d20c9 | /BalanceParenthesis/BalanceParenthesis.cpp | 57722a8eabe59c8cfe0ff690f880c760848c393e | [
"MIT"
] | permissive | sounishnath003/CPP-for-beginner | c4de8d7aa2aea83eb6fd1463a9ad7622474a7e17 | d4755ab4ae098d63c9a0666d8eb4d152106d4a20 | refs/heads/master | 2021-06-18T05:18:00.909614 | 2021-04-27T05:53:22 | 2021-04-27T05:53:22 | 198,789,834 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,386 | cpp | #include<iostream>
#include<bits/stdc++.h>
using namespace std ;
stack<char> StackOfBrackets ;
char xtop;
bool isBalancedParenthesis(string &expr) {
for (int i = 0; i < expr.size(); i++)
{
if (expr[i] == '(' || expr[i] == '{' || expr[i] == '[' ){
StackOfBrackets.push(expr[i]... | [
"flock.sinasini@gmail.com"
] | flock.sinasini@gmail.com |
f362e3c3d360e67a379664e24716c9c5ebea3beb | c246f4befcaa55b960298abdcb77d4820c7f976c | /ext/tclap-1.2.1/include/tclap/MultiArg.h | 66498401eb4db18b0de0639c044989e3ae480638 | [
"BSD-2-Clause",
"MIT"
] | permissive | IasonManolas/threed-beam-fea | fed5363bcb25789a3fcb29fa2b63895938dbc504 | 13096dbd6ccff9761208f31e88e0115a7a86676e | refs/heads/master | 2021-07-08T02:39:52.809466 | 2021-05-01T18:33:10 | 2021-05-01T18:33:10 | 235,398,772 | 0 | 1 | NOASSERTION | 2020-01-21T17:19:02 | 2020-01-21T17:19:01 | null | UTF-8 | C++ | false | false | 14,058 | h | /******************************************************************************
*
* file: MultiArg.h
*
* Copyright (c) 2003, Michael E. Smoot .
* Copyright (c) 2004, Michael E. Smoot, Daniel Aarno.
* All rights reverved.
*
* See the file COPYING in the top directory of this distribution for
* more i... | [
"ryan.latture@gmail.com"
] | ryan.latture@gmail.com |
3504bd80572ee1149b32310830528bca1bb71d81 | eef1d936e9edb172703aecd40cace4fa64268934 | /src/748.cc | 6aa470b4e65c9f63208551843659f6b0f077f868 | [
"Apache-2.0"
] | permissive | o-olll/shuati | 59d964acd4f340ff392e95a625719c1bc88deab5 | 64a031a5218670afd4bdbba5d3af3c428757b3fd | refs/heads/master | 2022-01-04T05:29:05.932615 | 2021-12-30T08:23:46 | 2021-12-30T08:23:46 | 112,041,583 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,077 | cc | #include <iostream>
#include <vector>
#include <unordered_map>
#include <string>
#include "utils.h"
using namespace std;
bool hasAllLetters(string& word, vector<int> plate) {
for (char c : word) {
if (plate[c-'a'] > 0)
--plate[c-'a'];
}
for (int i : plate) {
if (i > 0)
... | [
"o-olll@users.noreply.github.com"
] | o-olll@users.noreply.github.com |
af4dfbd5ca0bd30266a60faf7121fb187562b236 | 22bd625b1a2ffc102761914469c9673f62cf8e78 | /benchmarks/src/cuda/shoc-master/src/opencl/level0/BusSpeedReadback.cpp | c9d0f88c65c3d122d7f494cd455d4701073b1277 | [
"BSD-2-Clause",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | purdue-aalp/gpgpu-sim_simulations | f1c32ac5a88c4120d326d1053c82e598ca2d05fe | 84113a92a4aacfdd1ddbc1beb2f01746060dfb05 | refs/heads/master | 2021-08-05T21:56:58.378115 | 2021-01-28T23:31:26 | 2021-01-28T23:31:26 | 154,350,995 | 6 | 15 | BSD-2-Clause | 2021-05-18T15:28:08 | 2018-10-23T15:18:42 | HTML | UTF-8 | C++ | false | false | 8,337 | cpp | #include <iostream>
#include "support.h"
#include "Event.h"
#include "ResultDatabase.h"
#include "OptionParser.h"
using namespace std;
void addBenchmarkSpecOptions(OptionParser &op)
{
op.addOption("nopinned", OPT_BOOL, "",
"disable usage of pinned (pagelocked) memory");
}
// Modifications:
// ... | [
"tgrogers@purdue.edu"
] | tgrogers@purdue.edu |
cd469a7dd60a6a19dc3562d9dbdc03528e0a9759 | 26c6932ee883c3e5a9f9f4e85d251a2624ca7f9e | /mini/collections/list.inl | cbd0c123680d7d54b4652bd5e22ea9d993bc2f58 | [
"MIT"
] | permissive | zhengfish/mini-tor | 51581806b7bcefa5dd4d5b6fb7fb09f44252c63e | 5d39011e632be8e2b6b1819ee7295e8bd9b7a769 | refs/heads/master | 2020-04-09T10:45:40.940270 | 2018-03-08T13:20:05 | 2018-03-08T13:20:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,100 | inl | #include "list.h"
#include <mini/common.h>
#include <mini/memory.h>
namespace mini::collections {
//
// constructors.
//
template <
typename T,
typename ALLOCATOR_TYPE
>
list<T, ALLOCATOR_TYPE>::list(
void
)
: _first(nullptr)
, _last(nullptr)
, _end(nullptr)
{
}
template <
typename T,
typename A... | [
"w.benny@outlook.com"
] | w.benny@outlook.com |
49ef82368a1f4f7453d9e8bf1ed0e4f344f4d0e6 | 1663473b630351792fc396352ceef39a4e95b998 | /1945strikers/random.cpp | de9b30759ce49ee055d752e926a0a65a4f539db7 | [] | no_license | wsxc94/Winapi1945 | 89c385ba88a74b5ab276cf81d95531a222890a6f | 99470eaf8ef0a34e57038e52ac3849edb2ea4863 | refs/heads/master | 2022-12-07T12:53:53.885540 | 2020-08-31T03:47:10 | 2020-08-31T03:47:10 | 291,606,586 | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 794 | cpp | #include "stdafx.h"
#include "random.h"
HRESULT random::init()
{
//랜덤시드 초기화
srand(GetTickCount());
return S_OK;
}
void random::release()
{
}
int random::range(int num)
{
return rand() % num;
}
int random::range(int min, int max)
{
return rand() % (max - min + 1) + min;
}
float random::range(float num)
{
//3... | [
"wsxc9468@gmail.com"
] | wsxc9468@gmail.com |
46f8cdbaf2dd3b7fa7411f889a1bd04f12f772b8 | 0449e7d3206abc2afc0e140b649661f7dee008ca | /reader.h | eaed0969c398407621f54b46b09fdde19d7618cb | [] | no_license | twonaja/SAOD-CoursPrj- | c1fe105fbaec8e01d8d32b81145b3f0717c46a61 | 59e2809f4e4164567b2301c620e2492963ecf69c | refs/heads/master | 2022-10-24T14:01:43.260009 | 2020-06-17T19:42:12 | 2020-06-17T19:42:12 | 261,146,022 | 0 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 1,169 | h | #pragma once
#include "inc.h"
class reader
{
private:
std::string ticketNumber = "C0000-00"; //номер чит билета формат А - права доступа, цифры до "-" порядковый номер регистрации,
// после год регистрации
std::string name = "\0";//фамилия
std::string surname = "\0"; //имя
std::string patronymic = "\0"; //отчес... | [
"lotkamaxim09@yandex.ru"
] | lotkamaxim09@yandex.ru |
7d3f23354ee44090626c8fd798d4a97388d34cc3 | 767a49334113d375f96049f99e940123b4a712fd | /DevSkill_CP/Intermediate/Batch 8/Class 21/shortest_path.cpp | 6a0db91e98c237bd3c64aef435322c6f608244a3 | [] | no_license | Sadman007/DevSkill-Programming-Course---Basic---Public-CodeBank | 9f4effbbea048f4a6919b699bc0fb1b9a0d5fef7 | d831620c44f826c3c89ca18ff95fb81ea2a2cc40 | refs/heads/master | 2023-09-01T03:44:37.609267 | 2023-08-18T19:45:41 | 2023-08-18T19:45:41 | 173,104,184 | 83 | 64 | null | null | null | null | UTF-8 | C++ | false | false | 801 | cpp | #include <bits/stdc++.h>
using namespace std;
vector<int>gr[100010];
bool vis[100010];
int color[100010];
void dfs(int u, int clr)
{
vis[u] = 1;
color[u] = clr;
for(int v : gr[u]) /// u --> v
{
if(!vis[v])
{
dfs(v, clr);
}
}
}
int main()
{
int n, m, u, v;
... | [
"sakib.csedu21@gmail.com"
] | sakib.csedu21@gmail.com |
e89f5ca570444a386e55d6afaa7a4b93291469ff | b8475a1c33a3bda7958a788d2089d96c9a0b44ab | /cores/teensy4/usb_mtp.h | 88c0ffb2ae0f71b4ac5651cd5596a967b9784ef3 | [
"MIT"
] | permissive | Rigel09/CRW_2021_Teensy_Data_Record | fcee13b4794a1033f70d377851b43804e3ee49d9 | 9ddaf5bf452efc185b5c284b80d1d9e1d817bae4 | refs/heads/master | 2023-09-01T18:55:40.601916 | 2021-11-02T05:22:01 | 2021-11-02T05:22:01 | 423,327,526 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,198 | h | /* Teensyduino Core Library
* http://www.pjrc.com/teensy/
* Copyright (c) 2017 PJRC.COM, LLC.
*
* 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... | [
"jnnewton@hiwaay.net"
] | jnnewton@hiwaay.net |
4d8a3da4b72eb489872795f05d4288b9f11b121f | d4df8016db637baa32f802b83e084734eb42f066 | /Hashing/problems/__sortByFreq.cpp | 86f9ba566cd2f29b7498beab8f508228eb959efe | [] | no_license | vineetsinghrana/gfg_dsa_selfplaced | 9f591f0e63677885b25237d447b28b96714bb56b | 9f8619fd4a53110c343ad598acb120eb708151c6 | refs/heads/main | 2023-06-18T16:44:46.504398 | 2021-07-11T18:20:53 | 2021-07-11T18:20:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,463 | cpp | // { Driver Code Starts
#include <bits/stdc++.h>
using namespace std;
// } Driver Code Ends
class Solution{
public:
static bool sortByVal(const pair<int, int>& a,
const pair<int, int>& b)
{
// If frequency is same then sort by index
if (a.second == b.second)
return a.f... | [
"55969671+tanmayarya29@users.noreply.github.com"
] | 55969671+tanmayarya29@users.noreply.github.com |
5e940a09f45f22e6c0de1f20e742d8c252777d95 | 47a0a6676349129af4873dc1951531bd76b28228 | /chrome/browser/ui/blocked_content/tab_under_navigation_throttle.h | 352f9842d1be5e7f53fa54ed8a9877e560340015 | [
"BSD-3-Clause"
] | permissive | Kaleb8812/chromium | f61c4a42e211ba4df707a45388a62e70dcae9cd7 | 4c098731f333f0d38b403af55133182d626be182 | refs/heads/master | 2022-12-23T01:13:33.470865 | 2018-04-06T11:44:50 | 2018-04-06T11:44:50 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,190 | 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_UI_BLOCKED_CONTENT_TAB_UNDER_NAVIGATION_THROTTLE_H_
#define CHROME_BROWSER_UI_BLOCKED_CONTENT_TAB_UNDER_NAVIGATION_THROTTLE_H_
#in... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
2476c2af9488b1ebd4b22c981a0cd1ae6ebd4861 | 171ceb2fb959cee65bfa7d72758eb679d7fd6d62 | /codeforces/19E.cpp | 9f48f175bcc9a4573ae7dc80d74fd71437151895 | [] | no_license | maroom5/acm-icpc | 1470e84012aa54257f14d3ef6b32cd3adea3ff7b | 87ff25b8cec27e1f0d9dabcb22add64796069b06 | refs/heads/master | 2021-01-17T22:24:02.560769 | 2014-06-05T16:07:38 | 2014-06-05T16:07:38 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,879 | cpp | #include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
const int MAXN = 10010;
struct Edge {
int y, id; Edge *next;
Edge(int y, int id, Edge *next):y(y), id(id), next(next){}
}*a[MAXN];
int n, m;
int deep[MAXN], father[MAXN], vis[MAXN], mark[MAXN], odd = 0, where = -1, even[MAXN], mark_E... | [
"echooatmeal@gmail.com"
] | echooatmeal@gmail.com |
bb3856ede0ec0a79b0bb1c50a295145b7919a37a | ba4db75b9d1f08c6334bf7b621783759cd3209c7 | /src_main/Tracker/AdminServer/ServerListCompare.cpp | ef11f02d9569864a63a9fc3d6275d018d5120de8 | [] | no_license | equalent/source-2007 | a27326c6eb1e63899e3b77da57f23b79637060c0 | d07be8d02519ff5c902e1eb6430e028e1b302c8b | refs/heads/master | 2020-03-28T22:46:44.606988 | 2017-03-27T18:05:57 | 2017-03-27T18:05:57 | 149,257,460 | 2 | 0 | null | 2018-09-18T08:52:10 | 2018-09-18T08:52:09 | null | WINDOWS-1252 | C++ | false | false | 4,090 | cpp | //========= Copyright © 1996-2001, Valve LLC, All rights reserved. ============
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================
#include "ServerListCompare.h"
#include "server.h"
#include "serverpage.h"
#include <VGUI_ListPanel.h>
#inclu... | [
"sean@csnxs.uk"
] | sean@csnxs.uk |
d0cc89635aa2da8289ad8522a787e4a3592d88ca | 6ae1b86972c01cd37bbe5a63565be08bc1f4582d | /ProjetCarte/Joueur.cpp | c02429c96c6b687913998b070413f5eeb6926b68 | [] | no_license | Reilbat/ProjetCarte | 877d38c62a351a213b120f957a4a688c2c36186d | 9449045f07718bc43cd12a3f1bb8695f3e65c01b | refs/heads/master | 2021-08-19T08:35:54.173606 | 2017-11-25T14:40:30 | 2017-11-25T14:40:30 | 110,707,722 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,691 | cpp | #include "Joueur.h"
#include <random>
#include <fstream>
#include <ctime>
Joueur::Joueur(string _nom, int _solde) : m_nom(_nom), m_vie(200), m_solde(_solde)
{
}
Joueur::~Joueur()
{
}
void Joueur::ajout_carte(Energie* new_carte)
{
collection.push_back(new_carte);
;
}
void Joueur::ajout_carte(Creature* new_carte)
... | [
"alexandre.2555@hotmail.fr"
] | alexandre.2555@hotmail.fr |
35a51d5e9770383cf07aea237fdc8a07016e9d13 | 49d005b88c4f587de8183050ed11e9a940e9ff09 | /code/engine/singletons/fanRenderDebug.cpp | 28704d12ecb469c2f931e0b4c3b0ac1e7de4feea | [] | no_license | G4m4/FEngine | daff1f1c0ab4db4f1cad7f056c431691e884c574 | de02892deed91d7eddfe19420fa3e49a4d12a09b | refs/heads/master | 2023-01-28T14:07:44.579234 | 2020-11-17T06:21:10 | 2020-11-17T06:21:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 15,160 | cpp | #include "engine/singletons/fanRenderDebug.hpp"
#include "core/math/fanMathUtils.hpp"
#include "core/math/fanBasicModels.hpp"
#include "core/fanDebug.hpp"
#include "editor/fanModals.hpp"
namespace fan
{
//========================================================================================================
//=====... | [
"candela.francois@gmail.com"
] | candela.francois@gmail.com |
b62c91c02f74df122809478f802d6fef09d744c2 | ce6229f5915f9e6de1238861b4a940d61e56960b | /Sonder/Temp/il2cppOutput/il2cppOutput/mscorlib_System_ArgumentOutOfRangeException279959794.h | 198113d55a1b444c48b7899d2506f5645b82a834 | [
"Apache-2.0"
] | permissive | HackingForGood/GoogleyEyes | d9e36e3dffb4edbd0736ab49a764736a91ecebcf | a92b962ab220686794350560a47e88191e165c05 | refs/heads/master | 2021-04-15T10:03:59.093464 | 2017-06-25T17:32:52 | 2017-06-25T17:32:52 | 94,575,021 | 7 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,182 | h | #pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
#include "mscorlib_System_ArgumentException3259014390.h"
// System.Object
struct Il2CppObject;
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-W... | [
"anishdhesikan@gmail.com"
] | anishdhesikan@gmail.com |
edaa36de29ff6ea2995e6f2c4ebb07325f14fff9 | aecea44a579fda3eb66f65ebf7d02e5cb85a08cf | /thrill/common/string_view.hpp | 995af1ffce4da94e5c81fcf9d55322487cc6c441 | [
"BSD-2-Clause"
] | permissive | qicosmos/thrill | 7e43847aeb8747f836db243a0d164303327397d4 | 063b4b72e770d557d781f722f2a9fc84f0735a4a | refs/heads/master | 2020-12-28T23:35:50.285383 | 2016-04-25T07:15:57 | 2016-04-25T07:15:57 | 59,924,676 | 2 | 0 | null | 2016-05-29T03:29:55 | 2016-05-29T03:29:54 | null | UTF-8 | C++ | false | false | 6,444 | hpp | /*******************************************************************************
* thrill/common/string_view.hpp
*
* A simplified string_view implementation to reduce the number of allocations
* in the WordCount benchmark.
*
* Part of Project Thrill - http://project-thrill.org
*
* Copyright (C) 2015 Alexander N... | [
"tbgit@panthema.net"
] | tbgit@panthema.net |
449fadd044596d123fcd7a42925a2afc67fc2ead | 211ccfb7a770f44b4308bf760a68cecb1feb9573 | /cob_phidgets/ros/src/cob_phidgets_sim_node.cpp | 9f86b31f19ef3fdb660ebbcebac27f3c486fa9d8 | [
"Apache-2.0"
] | permissive | ipa320/cob_driver | 7a16f995a5bd9284f2f513484bb9e022b91cd3d5 | 536b400c58cad212722c1d8f36e97f65faf288e5 | refs/heads/kinetic_dev | 2023-09-01T19:19:55.521870 | 2023-07-24T14:11:05 | 2023-07-24T14:11:05 | 1,142,976 | 49 | 171 | Apache-2.0 | 2023-08-23T09:55:34 | 2010-12-06T12:13:47 | C++ | UTF-8 | C++ | false | false | 2,514 | cpp | /*
* Copyright 2017 Fraunhofer Institute for Manufacturing Engineering and Automation (IPA)
*
* 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... | [
"felixmessmer@gmail.com"
] | felixmessmer@gmail.com |
ed0c97a881b251166a0c560abd845e7ddd77a428 | 12015de5f13f7f61eac69974b9555d0121fc71e5 | /tests/test_rank_filter_base.cxx | ad45cd728394bf4e5449b0f9e98aea25a596fb6c | [
"BSD-3-Clause"
] | permissive | ricardomga/rank_filter | 4760a806a454a47817c6b84b2fda6510dd9ac2ee | a6c846207444187d023df84c9d38024c5ff3a538 | refs/heads/master | 2020-03-09T12:13:37.241709 | 2018-04-10T12:09:00 | 2018-04-10T12:09:00 | 128,780,536 | 0 | 0 | null | 2018-04-09T13:58:37 | 2018-04-09T13:58:36 | null | UTF-8 | C++ | false | false | 5,305 | cxx | #define BOOST_TEST_MODULE RankFilterBaseModule
#include <boost/test/included/unit_test.hpp>
#include <boost/array.hpp>
#include "rank_filter_base.hxx"
struct RankFilterBaseFixture
{
public:
static const unsigned long size = 10;
boost::array<double, size> array_1;
boost::array<double,... | [
"kirkhamj@janelia.hhmi.org"
] | kirkhamj@janelia.hhmi.org |
78fff9734588883bb41c5a1af5e1872bb016a137 | c99563482d18ebb50c3bdd3feb3e3f821f7cccc4 | /src/base58.h | 2f2d46fdd5a8413697382381644b8fab554b59be | [
"MIT"
] | permissive | matsuiny2004/BookCoin | afa85971ae01a17a9d53c3fdcdc1cca7db05270e | 23ad19110babe6b0cdd80b62eec314d3c270938b | refs/heads/master | 2020-04-13T22:01:41.080231 | 2018-11-18T17:39:14 | 2018-11-18T17:39:14 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,768 | h | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2015 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
/**
* Why base-58 instead of standard base-64 encoding?
* - Don't want 0OIl cha... | [
"bookcoin@protonmail.com"
] | bookcoin@protonmail.com |
c20982c3a281f3bb294f022b59e74a27221924ad | f5deac52f73fffbdcebaadb24fabbb1c33a6a808 | /src/tools/viewcsv.cpp | 1b36c44692034250276a6a9fefeca6a9274dda04 | [
"BSD-3-Clause",
"LicenseRef-scancode-other-permissive"
] | permissive | zippy/libbu | d92557f8ece66c70e8ba37768194b2d6aad8bd89 | 6c79102419f9e79d25751fefc155f746496f4b50 | refs/heads/master | 2021-01-18T05:53:00.876941 | 2013-02-17T02:46:00 | 2013-02-17T02:46:00 | 8,282,197 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,328 | cpp | /*
* Copyright (C) 2007-2013 Xagasoft, All rights reserved.
*
* This file is part of the libbu++ library and is released under the
* terms of the license contained in the file LICENSE.
*/
#include <bu/sio.h>
#include <bu/optparser.h>
#include <bu/csvreader.h>
#include <bu/file.h>
#include <bu/newline.h>
#include ... | [
"mike@xagasoft.com"
] | mike@xagasoft.com |
aa0f599e97c005d2d5e08bbfdb5853738d4a04ba | 63aabb6c10491ec6faa606833b2c778e7ab55dbc | /librdkafka-0.9.2-RC1/src-cpp/rdkafkacpp_int.h | f68714204df44c1e8f6334867c0b343556cbcf63 | [
"LicenseRef-scancode-public-domain",
"MIT",
"ISC",
"BSD-2-Clause",
"BSD-3-Clause",
"Zlib"
] | permissive | BrennoMello/FoT-Stream_Fog_Simulation | 1964c18971a329d67c27c4695c02be88fdfa6892 | 4f4132a65a950a609d664c22e88d69464afc5000 | refs/heads/master | 2020-08-14T16:59:40.305044 | 2019-10-14T02:26:29 | 2019-10-14T02:26:29 | 215,202,759 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 22,360 | h | /*
* librdkafka - Apache Kafka C/C++ library
*
* Copyright (c) 2014 Magnus Edenhill
* 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 a... | [
"ernandopassosjr@gmail.com"
] | ernandopassosjr@gmail.com |
e887ed00c5c5de97b99e76820e4a6cbc1ce9ccb2 | 60cbae3f1fcc46f9d385820dab3745357b2fc0b0 | /include/mesh.h | 57991e127c7ee332339a217dcb1f1d798c5e699d | [] | no_license | Bjornaahr/Graphics-Engine | 56e3fc485be233a2c85dd3d578a33e4e846df1fe | 4a115bf6a7341c188357cc6cadda17da0937f82d | refs/heads/master | 2020-05-19T01:06:38.237144 | 2019-05-03T12:15:19 | 2019-05-03T12:15:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,223 | h | #pragma once
#include <assimp/Importer.hpp>
#include <assimp/scene.h>
#include <vector>
#include <assimp/postprocess.h>
#include <GL/glew.h>
#include <GLFW/glfw3.h>
#include <texture.h>
#include <GFX/gfx.h>
#include <glm/glm.hpp>
#include <glm/gtc/matrix_transform.hpp>
#include <glm/gtc/type_ptr.hpp>
#include <camer... | [
"bjornaah@stud.ntnu.no"
] | bjornaah@stud.ntnu.no |
844f0cef0761bb12a604c1367aa9bf2763b34714 | 9c70733a9e9ae0ca06760532a2d96a196dc90b08 | /C++/ensconce/Worker.cpp | 541780d44b17be6a65d6cc0f1cb48644125123ae | [] | no_license | helloworldzlg/programming_language | f61b44dc148da87586d657f488cb0eeb71253d95 | 89061f58d3fa317b1afea09c33b505a82f199b66 | refs/heads/master | 2020-07-28T20:21:49.609347 | 2017-02-13T03:25:03 | 2017-02-13T03:25:03 | 73,696,081 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 231 | cpp | #include <iostream>
#include "Worker.h"
using namespace std;
Worker::Worker()
{
cout << "Worker create" << endl;
}
Worker::~Worker()
{
cout << "Worker clean" << endl;
}
void Worker::work()
{
cout << "Worker work" << endl;
}
| [
"helloworldzlg@163.com"
] | helloworldzlg@163.com |
1c1fb66b917b3022199cb60097c527e8d7847033 | 79880dc80ce6d31502655f8131c1feffd11dea57 | /src/temperature.cpp | 6a2767c982783cbbc4b9c13e5e86a5e5398dd44b | [
"MIT"
] | permissive | KenMacD/particle-temperature | fd6907fab3124d2aaf2a7af0ca5b964adf4b36f6 | 6bc56f8af8a6956a6452ee6cceb6a838683718fd | refs/heads/master | 2021-01-01T08:13:12.343298 | 2019-08-31T19:22:04 | 2020-02-08T19:25:05 | 239,192,245 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,347 | cpp | #include <Particle.h>
#if 0
SYSTEM_THREAD(ENABLED);
SYSTEM_MODE(AUTOMATIC);
#endif
#include "math.h"
#include <HTU21D.h>
/* Number of measurements to average across (5) */
#define AVG_ACROSS 5
/* How often to measure */
#define MEASURE_EVERY (1 * 1000)
/* How often to report (1) */
#define REPORT_EVERY 5
#if 0
Ser... | [
"kenny.macdermid@gmail.com"
] | kenny.macdermid@gmail.com |
010dac85a2812bd8721141a86859856df0f3fc5b | 5ec06dab1409d790496ce082dacb321392b32fe9 | /clients/cpp-restbed-server/generated/model/OrgApacheSlingCommonsSchedulerImplSchedulerHealthCheckInfo.cpp | 9b6e223de1c03e9f450c25992fab28fc387aceb7 | [
"Apache-2.0"
] | permissive | shinesolutions/swagger-aem-osgi | e9d2385f44bee70e5bbdc0d577e99a9f2525266f | c2f6e076971d2592c1cbd3f70695c679e807396b | refs/heads/master | 2022-10-29T13:07:40.422092 | 2021-04-09T07:46:03 | 2021-04-09T07:46:03 | 190,217,155 | 3 | 3 | Apache-2.0 | 2022-10-05T03:26:20 | 2019-06-04T14:23:28 | null | UTF-8 | C++ | false | false | 2,762 | cpp | /**
* Adobe Experience Manager OSGI config (AEM) API
* Swagger AEM OSGI is an OpenAPI specification for Adobe Experience Manager (AEM) OSGI Configurations API
*
* OpenAPI spec version: 1.0.0-pre.0
* Contact: opensource@shinesolutions.com
*
* NOTE: This class is auto generated by OpenAPI-Generator 3.2.1-SNAPSHOT.... | [
"cliffano@gmail.com"
] | cliffano@gmail.com |
ae38a013596f9d6c11bd5e6dfdae4fc038d4b872 | 0406821f59a5a524ba2fa87fd8a38e4692a8bf0d | /src/com/devsda/gargantua/asignments/2/22.cpp | 3c73bbdfa5eb3dd0547c43b397b1eba51c31eba9 | [
"MIT"
] | permissive | devvsda/gargantua | bedc3fa2b8d4e9c5dfb6e28546bafd2c367a611c | 9e41f87d5c73920611bafdfa15047639cb322809 | refs/heads/master | 2021-08-30T13:45:12.457326 | 2017-12-18T06:23:13 | 2017-12-18T06:23:13 | 114,602,637 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 621 | cpp | #include<iostream>
using namespace std;
bool deleteHelper(trie_node_t *pNode, char key[], int level, int len) {
if(pNode == NULL) return false;
if(level == len) {
if(pNode->value) {
pNode->value = 0;
if(isItFree(pNode)) return true;
return false;
... | [
"hijhamb@Hiteshs-MacBook-Pro.local"
] | hijhamb@Hiteshs-MacBook-Pro.local |
5d095a0efa69e5f4980401f6833a2dd5fbedbbe1 | 67e5bce19ef8bbd2ea7a9d3638661c0faa7cb0f4 | /src/gfx/Triangle.h | 4d9f84ee7586d9ce49f54629a073a253fad7a57c | [] | no_license | ChaseCarthen/Didgeridoo | e43f36959a7568ffef7a3af9434418b1e2a8a601 | 39a0bb00b34c19aab1c60d5cd4ef67af0273d633 | refs/heads/master | 2020-12-24T19:46:51.726313 | 2016-04-18T18:48:43 | 2016-04-18T18:48:43 | 56,175,384 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,742 | h | /*
Filename : Triangle.h
Author : Cody White
Version : 1.0
Purpose : Class to define a triangle.
Change List:
- 06/18/2009 - Created (Cody White)
*/
#pragma once
#include <Vector.h>
#include <Material.h>
#include <vector>
namespace gfx
{
/**
* Class to contain one triangle.
*/
temp... | [
"chasec2331@gmail.com"
] | chasec2331@gmail.com |
cac253aebaf975310c67054a3d37aee135be8aa4 | 2ca3ee150901686205260335630a2906269d3629 | /deps/v8_inspector/platform/inspector_protocol/ValueConversions.h | b82f04f588f7f1e7fe070fd1a7922b54c17e6716 | [
"LicenseRef-scancode-openssl",
"Zlib",
"NTP",
"NAIST-2003",
"LicenseRef-scancode-unicode",
"LicenseRef-scancode-unknown-license-reference",
"Artistic-2.0",
"ISC",
"MIT",
"BSD-3-Clause",
"ICU",
"LicenseRef-scancode-public-domain",
"BSD-2-Clause"
] | permissive | BazisSoft/node-delphi | d54b808186501c3a6bffe5be683735bea33d6651 | 2e53d8a6ba95746d23e39d3e265b1e5eefc055e2 | refs/heads/dev | 2021-01-18T02:31:11.607356 | 2017-07-05T08:01:55 | 2017-07-05T08:01:55 | 63,846,061 | 15 | 9 | null | 2017-07-05T08:01:56 | 2016-07-21T07:13:53 | JavaScript | UTF-8 | C++ | false | false | 4,421 | h | // Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ValueConversions_h
#define ValueConversions_h
#include "platform/inspector_protocol/ErrorSupport.h"
#include "platform/inspector_protocol/Platfor... | [
"ofrobots@google.com"
] | ofrobots@google.com |
da0bdb0d42ea6f0b91316449adeb8c9a106c246c | c246519c0cd76463e23a87582860bc5e9d4908de | /STM32H735DK/TGFX_SO/TouchGFX/generated/images/src/image_knob.cpp | 4e68c0a752730c8f0b74587783d6938df9321bcd | [] | no_license | HB9GZE/Pub_DIY_HAM_Radio_Transceiver | 07c50c145aefd614980980b981fdc215f39d7bdb | 37a17b6e2f15df058ef81ea281a1f94b7db7c2c4 | refs/heads/master | 2023-04-23T19:00:14.383024 | 2021-05-11T11:54:06 | 2021-05-11T11:54:06 | 366,364,285 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 593,311 | cpp | // 4.16.0 0xaed679e2 D2 AY R0 FARGB8888 U888 N0 SExtFlashSection
// Generated by imageconverter. Please, do not edit!
#include <touchgfx/hal/Config.hpp>
LOCATION_PRAGMA("ExtFlashSection")
KEEP extern const unsigned char image_knob[] LOCATION_ATTRIBUTE("ExtFlashSection") = // 154x152 ARGB8888 pixels.
{
0x00, 0x00,... | [
"stefan.meyre@verysmart.ch"
] | stefan.meyre@verysmart.ch |
caecbe049bd338d0bea30f54ba8b01b4902bf3fd | 70a56882364fd37cb436f56ce95f94c042b65d82 | /GaoFramework/jni/Android/GLTexture.h | e507c2c1cdbdbce910a64735ff193f7ed885232e | [] | no_license | michael-wang/jade | 31e5f8afdcb6e3783a11f67ffe8e61dfd3d4ca40 | 76d7208aa78866561c4c8b9b97a0f5a96407ced3 | refs/heads/master | 2020-07-02T11:49:16.256480 | 2014-10-02T04:27:18 | 2014-10-02T04:27:18 | 52,652,879 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 569 | h | #ifndef ANDROIDTEXTURE_H_
#define ANDROIDTEXTURE_H_
#include <Framework/Texture.hpp>
#include <jni.h>
#include <string>
#include "Java/JavaObject.h"
#include "AndroidLogger.h"
class GLTexture : public Gao::Framework::Texture {
public:
GLTexture();
virtual ~GLTexture();
virtual GaoBool Create(GaoString& fileName... | [
"michael.icwang@gmail.com"
] | michael.icwang@gmail.com |
0e9dce7203dc8c745c0e78793e87bf4de8e95035 | 93ca35101e01b11686e998a94a8f6647e48e09a4 | /amazon/product_parser.cpp | 436b6e8d86ec50d51bc48ada60dc35ee27be5e10 | [] | no_license | smurmus/AmazonEmulator | d87123fde123efb55dc820c69158705af1c8f7e2 | 3e8ede2d7aa31b1b51d09d126c2af9f897745d06 | refs/heads/master | 2020-12-31T04:29:13.583031 | 2016-01-04T20:31:47 | 2016-01-04T20:31:47 | 49,021,187 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,223 | cpp | #include <iostream>
#include <sstream>
#include "product_parser.h"
/** Add any other desired #includes below */
#include "book.h"
#include "clothing.h"
#include "movie.h"
#include "product.h"
using namespace std;
static std::string &trim(std::string &s);
ProductParser::ProductParser()
{
}
ProductParser::~Produ... | [
"murmu@usc.edu"
] | murmu@usc.edu |
550ace6fefd824976fb485e1e924c80995309742 | a8e4c73e926b9742af3798d1a424ea7184fa1c0e | /wallpaper.cpp | 3babad4fbd80156e76cc1af3210e7e9203fdd385 | [] | no_license | hecc1949/archery | 2492bbca705b544195cf186b482eca428868137a | 5d38d062adc619353fd9bfd70e64687b3e7a890e | refs/heads/master | 2021-07-13T17:19:07.776132 | 2020-07-25T01:23:08 | 2020-07-25T01:23:08 | 188,240,113 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,251 | cpp | #include "wallpaper.h"
#include <QApplication>
#include <QDesktopWidget>
#include <QtGui>
//#include <QToolBox>
#include <QGridLayout>
//#include <QHBoxLayout>
//#include <QVBoxLayout>
#include <QTimer>
#include <QTime>
#include <QDockWidget>
//#include <QWSServer>
#include <QScreen>
#include "archerview.h"
#include ... | [
"hcc21cn@163.com"
] | hcc21cn@163.com |
9ad99b731275ff231bcd5ae3f98134123b4c909b | f38e1eeee8678d5b228d9340dbeab87edb6a9368 | /TeeNew/Builder2010/SeriesType_Polar.cpp | 3211c831e7e05553a9cd43318a521bdb8c0c17d1 | [] | no_license | Steema/TeeChart-VCL-samples | 383f28bfb7e6c812ed7d0db9768c5c1c64366831 | cb26790fa9e5b4c1e50e57922697813e43a0b0bc | refs/heads/master | 2021-11-17T07:02:23.895809 | 2021-09-14T07:43:04 | 2021-09-14T07:43:04 | 8,649,033 | 23 | 14 | null | null | null | null | UTF-8 | C++ | false | false | 3,060 | cpp | //---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "SeriesType_Polar.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma link "TeeComma"
#pragma link "TeeEdit"
#pragma link "TeePolar"
... | [
"ncalvet@gmail.com"
] | ncalvet@gmail.com |
f27801a3490f331176f76a3ab2b5b6c9f16ec597 | f32c1c017faa78d8f6dcbbf9ee8cc3d4891f015d | /cpp_includes/basic_cases/hdrs/foo.hpp | 211f9db07e13afb656fa7232e7a644ec9e103d3d | [] | no_license | martis42/bazel_playground | e64e275a78d9f3f75f8046a3c1db2f305d4b6aa3 | 722a660d15b3a3902a1f1bf5e8776a4e712f021a | refs/heads/main | 2023-06-07T16:44:51.473199 | 2021-06-20T16:31:06 | 2021-06-20T18:51:37 | 339,864,220 | 5 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 36 | hpp | inline int foo()
{
return 13;
}
| [
"medler.martin@gmail.com"
] | medler.martin@gmail.com |
7880c58bb8aba9710d1db6bf2bf4275161a68426 | 126e18d87dcd274477dfea3c8c81ee58c3f7517b | /src/zoj2947.cpp | bebcc6347774c4acd450ca3065a4d41e6d3e34c4 | [] | no_license | hzqtc/zoj-solutions | 260014b9ac8a5acf46ef118d210d8486089adc7f | 76efc95fb0c4d5a6e62f62c5d07e61cc9fdc5109 | refs/heads/master | 2021-01-18T14:58:00.753417 | 2012-06-26T04:07:07 | 2012-06-26T04:07:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 408 | cpp | #include <iostream>
#include <string>
using namespace std;
int main()
{
int caseCount;
cin >> caseCount;
while(caseCount--)
{
int len;
string a, b;
string word;
cin >> len;
while(len--)
{
cin >> word;
a += word[0];
}
cin >> len;
while(len--)
{
cin >> word;
b += word[0];
}
if(a ... | [
"hzqtc1229@gmail.com"
] | hzqtc1229@gmail.com |
29c0806c9f5251ef5c88838584e4c2556a28a087 | 8a9bb0bba06a3fb9da06f48b5fb43af6a2a4bb47 | /LeetCode/WordLadderII.h | bd6ecf6a98c276099a1a8ccbc5a11d0ffd1668fa | [] | no_license | ruifshi/LeetCode | 4cae3f54e5e5a8ee53c4a7400bb58d177a560be8 | 11786b6bc379c7b09b3f49fc8743cc15d46b5c0d | refs/heads/master | 2022-07-14T09:39:55.001968 | 2022-06-26T02:06:00 | 2022-06-26T02:06:00 | 158,513,101 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 398 | h | #include <vector>
#include <string>
#include <unordered_map>
using namespace std;
class Solution {
public:
vector<vector<string>> findLadders(string beginWord, string endWord, vector<string>& wordList);
void dfs_wordladderii(const string & end_word,
const string & cur_word,
const unordered_map<string, vector<st... | [
"ruifshi@hotmail.com"
] | ruifshi@hotmail.com |
0ca1e0b19fbfb0c03125080aa52496d0b3379f5a | fcebca7c5725c44796d90a7158350e52aa61cc72 | /src/model/effects/generic/MissingCovariatePredicate.h | b85295c8c94d337464385bf8f2efdddce238efef | [] | no_license | kkc-krish/RSiena | c082a0e1c3698bffd68734387347c4de7981698f | 4f9d65392367703150e6285291a9b41d23e647c6 | refs/heads/master | 2020-12-24T19:59:58.649070 | 2013-06-18T00:00:00 | 2013-06-18T00:00:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 857 | h | /******************************************************************************
* SIENA: Simulation Investigation for Empirical Network Analysis
*
* Web: http://www.stats.ox.ac.uk/~snijders/siena/
*
* File: MissingCovariatePredicate.h
*
* Description: This file contains the definition of the
* MissingCovariateP... | [
"csardi.gabor@gmail.com"
] | csardi.gabor@gmail.com |
c753cfbf749811e2001542aff2ecf2d1e4c636f1 | 82d2738fb1e66ae2869eba15a32f3128e09b1f27 | /Whisperwind/Whisperwind_Engine/src/SceneManager.cpp | ba02f9f6f85e696d73c5cff551a5f2514327f505 | [
"MIT"
] | permissive | harr999y/Whisperwind | a25326fa14c98f16ae8b451b3d96f64368c4d147 | 1171201f7cdcfe2e0043f305514dda66bf677f30 | refs/heads/master | 2021-06-01T11:34:50.562533 | 2020-06-25T11:50:30 | 2020-06-25T11:50:30 | 4,048,736 | 4 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 9,014 | cpp | /*-------------------------------------------------------------------------
This source file is a part of Whisperwind.(GameEngine + GamePlay + GameTools)
For the latest info, see http://lisuyong.com
Copyright (c) 2012 Suyong Li (79481268@qq.com)
Permission is hereby granted, free of charge, to any person obtain... | [
"79481268@qq.com"
] | 79481268@qq.com |
cc2465e625614c5b637af6e8c53027961deb7c71 | 08b8cf38e1936e8cec27f84af0d3727321cec9c4 | /data/crawl/git/old_hunk_2912.cpp | 7ba4105f7c3b4b200e4911528a68f6fc0a6418c1 | [] | no_license | ccdxc/logSurvey | eaf28e9c2d6307140b17986d5c05106d1fd8e943 | 6b80226e1667c1e0760ab39160893ee19b0e9fb1 | refs/heads/master | 2022-01-07T21:31:55.446839 | 2018-04-21T14:12:43 | 2018-04-21T14:12:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 182 | cpp | cb.newlog = fdopen_lock_file(&reflog_lock, "w");
if (!cb.newlog) {
error("cannot fdopen %s (%s)",
reflog_lock.filename.buf, strerror(errno));
goto failure;
}
}
| [
"993273596@qq.com"
] | 993273596@qq.com |
088ac0b5db0863d160c30a97e1ed9c8cc7bdf5cd | 7dc6ae44724954c1da0167d184051afef86965d7 | /build/ui_aboutdialog.h | 29a1b9e7fd8a45a2e91933dc38ec324451422aec | [] | no_license | manishcoindevl/soloscoin | e1636c784f93f4bf6489dcb719a2f08846ac5c2f | d166fb50fcdcde8566ae8a81c314e682c20343e8 | refs/heads/master | 2021-07-10T22:51:22.235062 | 2017-10-10T09:22:08 | 2017-10-10T09:22:08 | 106,389,366 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,087 | h | /********************************************************************************
** Form generated from reading UI file 'aboutdialog.ui'
**
** Created by: Qt User Interface Compiler version 5.2.1
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
***************************************... | [
"deewakaar@gmail.com"
] | deewakaar@gmail.com |
10fac8e54a41056482e63ec5940b901e3c63aea9 | 1bed10351039b1c53508a8d1822f0df22e210695 | /src/opr/impl/muxing.cpp | 8ff8c67e978673bda2925f7fb94a8275cd2cea1a | [
"LicenseRef-scancode-generic-cla",
"Apache-2.0"
] | permissive | chyelang/MegEngine | 2a39857c5e0db4845b27d3c9e49f2de97f1d38d7 | 4cb7fa8e28cbe7fd23c000e4657300f1db0726ae | refs/heads/master | 2023-08-19T12:08:27.596823 | 2021-10-13T02:51:04 | 2021-10-13T03:19:30 | 250,149,702 | 0 | 0 | NOASSERTION | 2020-03-26T03:14:37 | 2020-03-26T03:14:36 | null | UTF-8 | C++ | false | false | 11,809 | cpp | /**
* \file src/opr/impl/muxing.cpp
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* Copyright (c) 2014-2021 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BA... | [
"megengine@megvii.com"
] | megengine@megvii.com |
9d969e2cdae75061f820214c2e66d677db7108ee | 9871be83114d2b14204d4fefb72a0c4026aa58f4 | /subroutines/four_motif_orig.cpp | e3ce1ba3b10e6493b62f0c9476a5a02a13a01ef6 | [] | no_license | SysSynBio/network_sampling_MC | 7858b574ba0377ccc497dbc1407532a314bb01a1 | 5271249281b49fbbbe7e93c9c9320646766f93d2 | refs/heads/master | 2023-03-15T14:58:15.383793 | 2018-05-25T19:42:07 | 2018-05-25T19:42:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,128 | cpp | #include "net_props.h"
void four_motif_orig(int N, int *Adj, double **fourmer, double *histfour, double**hist, int *typelist)
{
/*There are 6 subgraphs that have 4 nodes*/
/*two have 3 edges*/
/*two have 4 edges*/
/*one has 5 edges*/
/*one has 6 edges*/
/*All self loops are ignored.*/
int i,j, k, l;
in... | [
"mejohnson81@gmail.com"
] | mejohnson81@gmail.com |
80244898420d1f08237ff2936c3724e951f57c1e | 12a149c91541243f7e0f9b9e834e7cea3be83ab9 | /ash/app_list/views/app_list_bubble_view_unittest.cc | 1d70be329a638f8645fd2fa41af2c309d7743921 | [
"BSD-3-Clause"
] | permissive | liutao5/chromium | 6840deed48ae77e961cbf7969519d6adcfecab31 | b4da5b0d03ed5f5f1961caca5e3b1e68889cdfcc | refs/heads/main | 2023-06-28T18:05:01.192638 | 2021-09-03T07:28:50 | 2021-09-03T07:28:50 | 402,694,820 | 1 | 0 | BSD-3-Clause | 2021-09-03T08:08:55 | 2021-09-03T08:08:54 | null | UTF-8 | C++ | false | false | 12,276 | 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 "ash/app_list/views/app_list_bubble_view.h"
#include <memory>
#include <string>
#include <utility>
#include "ash/app_list/app_list_bubble_prese... | [
"chromium-scoped@luci-project-accounts.iam.gserviceaccount.com"
] | chromium-scoped@luci-project-accounts.iam.gserviceaccount.com |
608aeb66f1849c2419d16ce9dd19c58daeb86b15 | 75f10916127eb39e005deb80d202a1101febce17 | /hts/hts/common.cpp | bc392c87203fe9901547085df9b04ea2a68860ee | [] | no_license | 340211173/Tunnel-based-on-HTTP- | 61b5b2cf6705dfb31db0d8ffbc9935540a358132 | f515ae47766bbd24e1561247466a4704b8bcba4d | refs/heads/master | 2021-01-15T16:57:05.061784 | 2015-08-16T04:25:07 | 2015-08-16T04:25:07 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,856 | cpp | #include <WinSock2.h>
#include "common.h"
/*
函数说明: 从套接字fd接收收据然后将其通过隧道转发出去;
*/
int handle_device_input(Tunnel *tunnel,SOCKET fd)
{
char buf[10240];
int n,m;
n=recv(fd,buf,sizeof(buf),0);
if(n==0||n==SOCKET_ERROR)return n;
buf[n] = '\0';
printf("HTTP 隧道服务端从外部程序接收到数据为:%s\n",buf);
m=tunnel_write(tunnel,buf,n);
r... | [
"1046395839@qq.com"
] | 1046395839@qq.com |
2f1c83b3b21a6fad4b38ceec2e5acc757db2f9b6 | a8788f2b6595c5590f5b663bf6968c363ae04fac | /src/software/firmware/MyoHand_v1_Project/lib/ros_lib/pcl_msgs/ModelCoefficients.h | 6bfa2522461a4afc9582ba50e46ec11425417e52 | [
"CC0-1.0"
] | permissive | orthopus/01-myohand | 2429b35f5bc2cc0db4b023433159cd72c0ebc67b | 227b8a6284b839d187f1f380dbe83ce81ca057b8 | refs/heads/master | 2023-03-22T20:34:36.954773 | 2021-03-10T22:40:15 | 2021-03-10T22:40:15 | 331,913,745 | 5 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,139 | h | #ifndef _ROS_pcl_msgs_ModelCoefficients_h
#define _ROS_pcl_msgs_ModelCoefficients_h
#include <stdint.h>
#include <string.h>
#include <stdlib.h>
#include "ros/msg.h"
#include "std_msgs/Header.h"
namespace pcl_msgs
{
class ModelCoefficients : public ros::Msg
{
public:
typedef std_msgs::Hea... | [
"mona.jamois@orthopus.com"
] | mona.jamois@orthopus.com |
87e9a06c017587c6526bc9a8161016188ea835c8 | a9ab72c3dd7fdfe8b6e0b1b5e296bf4c39b9989d | /round2/leetcode328.cpp | 50d8e7126cab91b3de221e1e4c03b2c2986b8bc5 | [] | no_license | keqhe/leetcode | cd82fc3d98b7fc71a9a08c5e438aa1f82737d76f | 86b2a453255c909f94f9ea3be7f2a97a6680a854 | refs/heads/master | 2020-12-24T06:38:15.444432 | 2016-12-07T19:15:02 | 2016-12-07T19:15:02 | 48,405,123 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 932 | cpp |
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
ListNode* oddEvenList(ListNode* head) {
if (!head || !head->next || !head->next->next) {
return head;
}... | [
"keqhe@cs.wisc.edu"
] | keqhe@cs.wisc.edu |
35f8e36b2f96ee89925ec6b2f6badeeec20c9ddf | 6a11fe932e93bd2bdd4afa863f82136abad42c40 | /TraceInfrastructure/Passes/SplitAllocas.cpp | f3a6c9ccf52b73a4a1236cbd4e8381846053eb8e | [] | no_license | mackncheesiest/TraceAtlas | 9c6714f83e9a239455580c91471ce74bc7988b40 | 0950893e792caacfced91dfad20df6d380a36888 | refs/heads/master | 2022-07-08T19:41:00.486768 | 2021-02-25T21:17:53 | 2021-02-25T21:17:53 | 229,296,196 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,133 | cpp | #include "Passes/SplitAllocas.h"
#include <llvm/Pass.h>
#include <llvm/IR/Function.h>
#include <llvm/IR/Instruction.h>
#include <llvm/IR/Instructions.h>
#include <llvm/IR/Type.h>
#include <llvm/Support/raw_ostream.h>
using namespace llvm;
namespace DashTracer::Passes {
bool SplitAllocas::runOnFunction(Function &... | [
"mackncheesiest@gmail.com"
] | mackncheesiest@gmail.com |
d84656133c5e759b342eb64fd7bf8800fec865f5 | 877fff5bb313ccd23d1d01bf23b1e1f2b13bb85a | /app/src/main/cpp/dir7941/dir7942/dir8062/dir8063/dir8254/dir8444/dir8720/dir10555/dir10556/file10681.cpp | 7fb2cc825281a5a6351d376b17c7d10cdb3c5553 | [] | no_license | tgeng/HugeProject | 829c3bdfb7cbaf57727c41263212d4a67e3eb93d | 4488d3b765e8827636ce5e878baacdf388710ef2 | refs/heads/master | 2022-08-21T16:58:54.161627 | 2020-05-28T01:54:03 | 2020-05-28T01:54:03 | 267,468,475 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 115 | cpp | #ifndef file10681
#error "macro file10681 must be defined"
#endif
static const char* file10681String = "file10681"; | [
"tgeng@google.com"
] | tgeng@google.com |
3cf3902b7a3532c15edbed0b6a7234119c621e13 | dca88305f8482b803120c84012680be4790c8e7b | /Test/Test/AssemblyInfo.cpp | 4d64ee3715e8c7cb5735364ed08568c9acec8f8a | [] | no_license | GiannisAulo/ProjectOptikos | c252253c87acd5bc32f84105f11046be06ccde99 | f89f40972f1d447541f5c031f41385b95a34245c | refs/heads/master | 2023-03-07T13:35:32.740216 | 2021-02-16T14:27:20 | 2021-02-16T14:27:20 | 339,424,410 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,284 | cpp | #include "stdafx.h"
using namespace System;
using namespace System::Reflection;
using namespace System::Runtime::CompilerServices;
using namespace System::Runtime::InteropServices;
using namespace System::Security::Permissions;
//
// General Information about an assembly is controlled through the following
// set of ... | [
"johnaulogiaris@gmail.com"
] | johnaulogiaris@gmail.com |
ba68d47831edf6301777218809c1de239058bc20 | ef4fe02d77323e2670dd9444ff83496704c670de | /STL面试知识点/STL面试知识点.cpp | 0ea035a9f0b094600704927f791696f63af0fa31 | [] | no_license | Lanxin123/-Grammatical-knowledge | 14eef8ced7fe3d2556f17de56cc6909762e0b322 | 6e1eb401a8e056ba030cc5d1256551d9991686a5 | refs/heads/master | 2020-03-22T01:44:35.691858 | 2018-08-24T13:55:55 | 2018-08-24T13:55:55 | 139,326,677 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 98 | cpp | 详见:https://www.cnblogs.com/wulala1119/p/4758345.html
以及参考我的STL源码剖析笔记 | [
"337544818@qq.com"
] | 337544818@qq.com |
dd24e7827b6670f0bd19795c5781928a20b27dd5 | 2bcfced3810b41afd8c609e9441ac9f27a87b02d | /dict_runner/weiss/DSL.cpp | b7e4a52bddb81ee42a5fda31da89faffdc20079d | [] | no_license | CS221/dict-wars | 10a3611fbd260ef39d4bf2f6b78bab43fff9dd40 | 74198b651877a324dd3c612f76c2daea43a6c3ea | refs/heads/master | 2021-01-20T10:54:43.382499 | 2013-06-11T05:48:48 | 2013-06-11T05:48:48 | 10,519,830 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,501 | cpp | #include "DSL.h"
/**
* Construct the tree.
* inf is the largest Comparable
* and is used to signal failed finds.
*/
template <class Comparable>
DSL<Comparable>::DSL( const Comparable & inf ) : INFINITY( inf )
{
bottom = new SkipNod... | [
"mr.karpierz@gmail.com"
] | mr.karpierz@gmail.com |
b7f557d279e391675167f97886507495a3ef5372 | 828b52aa65e1002348e332d4342449043245e4e6 | /coloring/lsSolver.cpp | bd60b920b11241d8b767710193a831636a95a4fe | [
"MIT"
] | permissive | domenipavec/Coursera-DiscreteOptimization | 0ec087b7cdae16dd4166cdb2b9238ec3f8b1ce31 | e0904966922ded5e9f0ec29ce0ebfe434d11d938 | refs/heads/master | 2021-05-27T03:28:43.717704 | 2014-05-01T19:38:37 | 2014-05-01T19:38:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 731 | cpp | /*
* lsSolver.cpp
*
* Copyright 2014 Domen <domen.ipavec@z-v.si>
*
* See LICENSE.
*
*/
#include "lsSolver.hpp"
LSState::LSState(const LSState & s) :
graph(s.graph),
verticesColors(s.verticesColors),
nVertices(s.nVertices),
nColors(s.nColors)
{
}
LSState::LSState(Graph *g, c... | [
"domen.ipavec@z-v.si"
] | domen.ipavec@z-v.si |
884bd2925e6f35f6aecc1106d636c0030532d465 | c3a157322ab0c670584e7e0497009d7df3a2335b | /audioPatchControl.cpp | f468ec64a035332d14fad40b9392c73e41965540 | [] | no_license | SebulonB/audioTest | baa2342f4931347acb5bfa709b764999fd3755e2 | b187b101b8b04c8d0b3a72976376cf7527e1afd5 | refs/heads/main | 2023-04-20T12:42:12.669912 | 2021-05-14T21:32:34 | 2021-05-14T21:32:34 | 336,262,271 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,719 | cpp | #include <string.h>
#include <Adafruit_GFX.h> // Core graphics library
#include <Adafruit_ST7735.h> // Hardware-specific library for ST7735
#include <Adafruit_ST7789.h> // Hardware-specific library for ST7789
#include <Encoder.h>
#include "TeensyThreads.h"
#include <SD.h>
#include <SPI.h>
#include <SerialFlash.h>... | [
"s.brunnauer@laseranimation.com"
] | s.brunnauer@laseranimation.com |
f859eff4689221682c751d7a8508a944d23c138c | 25eda15859d45817ac22c428bf4a7f23f600bf7d | /src/chainparams.cpp | 021b491932cb86fc736a4b7d9f109015f431b83c | [
"MIT"
] | permissive | SamiAhmed7777/game-frag-coin | 3f7605af94168e7fbb0af85c085c8e975a91e227 | 1b450d26713aff7ef027fee3954fb96c99764a29 | refs/heads/master | 2023-04-14T17:56:48.819371 | 2021-04-26T16:06:26 | 2021-04-26T16:06:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 26,179 | cpp | // Copyright (c) 2010 Satoshi Nakamoto
// Copyright (c) 2009-2015 The Bitcoin developers
// Copyright (c) 2014-2015 The Dash developers
// Copyright (c) 2015-2020 The PIVX developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php... | [
"development@SpectreSecurity.io"
] | development@SpectreSecurity.io |
fa3666aac281cf3e46d9f0c2f864e0a03258be17 | 0b8515326d4cb6a2e72318d256ed929aa04dff20 | /chrome/browser/ui/ime/ime_window.cc | 8f17e3a1258776b9b3f320261df45bcb215ade45 | [
"BSD-3-Clause"
] | permissive | wuhengzhi/chromium-crosswalk | 0c6aaec514a3952123616679399f84769019a9de | b5d9bfd4f53d132beab079ed59c6e1ae5d14fe98 | refs/heads/master | 2022-11-11T08:03:41.115014 | 2016-08-25T07:37:50 | 2016-08-25T07:37:50 | 25,424,312 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,591 | cc | // Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ui/ime/ime_window.h"
#include <utility>
#include "chrome/browser/chrome_notification_types.h"
#include "chrome/browser/profiles... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
0a426959839bd024b1fc273c68ab5bbdab2ba6bc | c9e41a9b3d526e3ae50a5858195749a21c23cbfd | /Terrain/d3dUtility.h | 643d28d87d42dc2ff271f8819ea07b2d673a38db | [] | no_license | Zehao/d3dtutorial | da56190b1f17f876871ebac2ea794bdf50602ba8 | 703ee93344c2295c468f3e3ab46e5eba11b47e42 | refs/heads/master | 2016-09-06T03:34:48.409144 | 2015-06-21T06:25:26 | 2015-06-21T06:25:26 | 37,805,092 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 4,466 | h | //////////////////////////////////////////////////////////////////////////////////////////////////
//
// File: d3dUtility.h
//
// Author: Frank Luna (C) All Rights Reserved
//
// System: AMD Athlon 1800+ XP, 512 DDR, Geforce 3, Windows XP, MSVC++ 7.0
//
// Desc: Provides utility functions for simplifying common task... | [
"zehaojin@gmail.com"
] | zehaojin@gmail.com |
032053199709cc9e026e9934d1104d1118e149c0 | 941e1c9c87576247aac5c28db16e2d73a2bec0af | /SelectDlg.h | f2b8702892dc36cfd2f9c61301c1c2251bf6acd3 | [] | no_license | luochong/vc-gms-1 | 49a5ccc2edd3da74da2a7d9271352db8213324cb | 607b087e37cc0946b4562b681bb65875863bc084 | refs/heads/master | 2016-09-06T09:32:16.340313 | 2009-06-14T07:35:19 | 2009-06-14T07:35:19 | 32,432,320 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 637 | h | #pragma once
#include "afxwin.h"
// CSelectDlg 对话框
class CSelectDlg : public CDialog
{
DECLARE_DYNAMIC(CSelectDlg)
public:
CSelectDlg(CWnd* pParent = NULL); // 标准构造函数
virtual ~CSelectDlg();
// 对话框数据
enum { IDD = IDD_DIALOG_SELECT };
protected:
virtual void DoDataExchange(CDataExchange* pD... | [
"luochong1987@29d93fdc-527c-11de-bf49-a932634fd5a9"
] | luochong1987@29d93fdc-527c-11de-bf49-a932634fd5a9 |
c3da543f44ec4547f1b34f7334e34ce404860634 | 0307b62b6cd00b5e75d9219645d4d40dd1e73bec | /src/lve_renderer.cpp | 54cd166b73f5b2ae2d458b43483e0b07a2ba1532 | [] | no_license | vamsisridhar/ProjectAlice2D | 6500c66d5fbd04fccda07457f41225cf2dce9e0d | e4a11efa3939c4384b9e28a2369d5f198847b912 | refs/heads/main | 2023-08-24T08:03:39.699774 | 2021-10-14T15:37:29 | 2021-10-14T15:37:29 | 404,909,176 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,305 | cpp | #include "lve_renderer.hpp"
// std
#include <array>
#include <cassert>
#include <stdexcept>
namespace lve {
LveRenderer::LveRenderer(LveWindow &window, LveDevice &device) : lveWindow{window}, lveDevice{device} {
recreateSwapChain();
createCommandBuffers();
}
LveRenderer::~LveRenderer() { freeCommandBuffers(); }... | [
"vamsisridhar@hotmail.com"
] | vamsisridhar@hotmail.com |
057cd220cd5c61c8b1598c0cc07b174f753a0d54 | 444282da953087e3117aa5b1910962d6a4f4b5cc | /test/src/DeclareExchangeTest.hpp | 85e83cb8c37ecd086474df06573d9c024bf570f4 | [] | no_license | cojae/HareCpp_Dev | d29051e3f99aeb588cf8f7bca18e01a8bc9ce3e6 | 36c6d3abe0bc7d9333e25a9b65f49ac07c92730b | refs/heads/master | 2023-03-02T06:06:29.661411 | 2021-02-13T16:19:14 | 2021-02-13T16:19:14 | 282,063,129 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,280 | hpp | #include "ProducerConsumerTester.hpp"
inline int testSomeMessageReceives(const int totalMsg, ProducerConsumerTester& pubsubTest) {
pubsubTest.Restart();
auto start = std::chrono::system_clock::now();
while(pubsubTest.GetDesiredMessageCount() < totalMsg) {
if(pubsubTest.GetUndesiredMessageCount() >... | [
"co.jae@pm.me"
] | co.jae@pm.me |
3c3aed967bb7a1463dbb54a5d4993e73f929f83d | 1311e01ec5e5308d782ed451e1f0fd1869d7e3a0 | /source/svgpolylineelement.h | c89c28244881ddced3268f1f6e3d32ea1de0c81c | [
"MIT"
] | permissive | seven1240/lunasvg | 00b76e893bb64418871b29aa6fa83fdb53ee8dee | fa01813f499cebb5705cd0dbd1a49bf78021e755 | refs/heads/master | 2022-06-19T07:39:11.156877 | 2020-03-25T13:07:40 | 2020-05-05T16:11:14 | 270,309,129 | 1 | 0 | null | 2020-06-07T13:06:30 | 2020-06-07T13:06:29 | null | UTF-8 | C++ | false | false | 407 | h | #ifndef SVGPOLYLINEELEMENT_H
#define SVGPOLYLINEELEMENT_H
#include "svgpolyelement.h"
namespace lunasvg {
class SVGPolylineElement : public SVGPolyElement
{
public:
SVGPolylineElement(SVGDocument* document);
Path makePathAndBoundingBox(RenderState& state) const;
SVGElementImpl* clone(SVGDocum... | [
"sammycageagle@gmail.com"
] | sammycageagle@gmail.com |
3cd526c0d0c1596cd7b1af34cec72449fdead093 | b5b064b7ca0e7f7ac4f80ab29b744fdf575f8b37 | /src/shared/protoDisconnectFromServer.hpp | 303adbe4bc03778ac46c10086d6ed135e4a04020 | [] | no_license | waterproofpatch/c_chat_app | 2a82cc25fffe4a6808ec12f35a6e71b36d32f5ae | 6139609a2ea08c4a254faf3d1b574ccfcd595d7e | refs/heads/master | 2021-11-11T21:36:13.043816 | 2021-11-07T09:43:54 | 2021-11-07T09:43:54 | 151,008,946 | 0 | 0 | null | 2018-10-15T01:17:23 | 2018-09-30T21:32:10 | C | UTF-8 | C++ | false | false | 229 | hpp |
#ifndef _PROTO_DISCONNECT_FROM_SERVER_H_
#define _PROTO_DISCONNECT_FROM_SERVER_H_
#include "errorCodes.hpp" /* proto_err_t */
#include "user.hpp"
proto_err_t protoDisconnectFromServer(user_t *user, const char *reason);
#endif | [
"waterproofpatch@gmail.com"
] | waterproofpatch@gmail.com |
959b4a1daf690cc9eebc19377ce72bfa3169bd7d | 07562a4262bfd89f63b121974b6ec2ff55055b0f | /menpo/io/mesh/cpp/assimpwrapper.cpp | fe61cab1c72d6c087343bf1d8c33483a635b2cca | [] | no_license | karla3jo/menpo-old | d82415c3e3f62829457741414e3186c74db4042f | 4d477089bf7f8e961db4488726d6123643cbc452 | refs/heads/master | 2020-05-18T13:32:38.279611 | 2014-03-31T11:47:57 | 2014-03-31T11:47:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,006 | cpp | #include <iostream>
#include <vector>
#include <assimp/Importer.hpp>
#include <assimp/scene.h>
#include <assimp/postprocess.h>
#include "assimpwrapper.h"
// *************** IMPORTER *************** //
AssimpImporter::AssimpImporter(std::string path){
// we only want raw info - don't care about a lot of the stuff... | [
"jabooth@gmail.com"
] | jabooth@gmail.com |
48f30d557703921e9803da60733b9862dd201d63 | ce7f596f248cb65a37349ee1dc2e03430cb50e9c | /covidlq.cpp | ed89c050d1f60bfc4e2f3accfd54eb6a519dcea2 | [] | no_license | CodeSadhu/General-Coding-Practice | f19e7cf3e0de874abde6ae11fe10076b1229e338 | b6f40f3214fb8a8b4227829bc36b0a5e07679341 | refs/heads/master | 2022-11-28T03:27:06.645341 | 2020-07-28T08:16:41 | 2020-07-28T08:16:41 | 266,974,563 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 611 | cpp | #include <iostream>
using namespace std;
int main(){
int a[100], n;
int f = -1, s = -1, flag = 0;
cin>>n;
for (int i = 0; i < n; i ++)
cin>>a[i];
for (int i = 0; i < n; i ++){
if (a[i] == 1){
if (f == -1)
f = i;
else
s = i;
... | [
"thecaffeinesadhu@gmail.com"
] | thecaffeinesadhu@gmail.com |
9bbc59aff696d93c8062bcbf7dc2d65c3f0b6585 | 21f0cea53a45722af470e3f8828786da339d2edd | /TREES/BuildHBTfromArray.cpp | 6491730bbbd86f60a0389e95f03c73ab1b1a22c6 | [] | no_license | hemantsaini-7/ExQuestions | 400c55ebc00436630a4d75dbc00b594ea8748202 | 05faef0b6f73e8bae4f247c5ea870274e69413f3 | refs/heads/master | 2023-06-24T10:58:05.817930 | 2021-07-23T18:09:20 | 2021-07-23T18:09:20 | 298,967,372 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,002 | cpp | #include <iostream>
#include <queue>
using namespace std;
class node
{
public:
int data;
node *left;
node *right;
node(int d)
{
data = d;
left = NULL;
right = NULL;
}
};
node *buildTree(int a[], int s, int e)
{
if (s > e)
return NULL;
int mid = (s + e)... | [
"hsainioff@gmail.com"
] | hsainioff@gmail.com |
5bb09c92f6f354372ae2cea564eb3de41e8182f9 | 75bd4b605476b1fe5b7e4486fdbaddc08dd72e28 | /source/RaumserverDaemon/RaumserverDaemon.cpp | 37cf88d878db4b43243ec730c09ee57f1c339d16 | [] | no_license | Nestrius/Raumserver | 85df42a658c624540e24574ec96abb6ea01d9f44 | 1eb6fe4b7da4fb4abdf9b8797aa00fcf8d6426a2 | refs/heads/master | 2021-06-07T18:29:22.863486 | 2016-10-21T14:40:35 | 2016-10-21T14:40:35 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,370 | cpp | #include <sys/types.h>
#include <sys/stat.h>
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <errno.h>
#include <unistd.h>
#include <syslog.h>
#include <string.h>
#include <execinfo.h>
#include <signal.h>
#include <string.h>
#include <ucontext.h>
#include <unistd.h>
#include <iostream>
#include <cxx... | [
"chris_d85@hotmail.com"
] | chris_d85@hotmail.com |
8d2771ff7bd327c365f3b230243be7738cf3256c | 540e91fbcd0ad96614fdbd8b4bda9c90e61d8189 | /types_and_declaration/type_alias.cpp | 651bcc2ba0dcefc0ff0dd1310ae22efadfc4f481 | [] | no_license | ipritish/cpp_basics | 14c5b714c5b4f908d520201ed55c6c5464bff04f | 8963b9ba38587aebbc979ca10965bf4a7f15620b | refs/heads/master | 2021-01-22T13:46:58.071986 | 2016-01-07T09:53:36 | 2016-01-07T09:53:36 | 41,899,998 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 143 | cpp | #include<iostream>
using namespace std;
int main()
{
char p = 'A';
using Pchar = char*;
Pchar p1 = &p;
cout << *p1 << "\n";
return 0;
}
| [
"pritishjain2009@gmail.com"
] | pritishjain2009@gmail.com |
0d10649942cb5fabe6e814655c709f724a598c8b | ea401c3e792a50364fe11f7cea0f35f99e8f4bde | /hackathon/2010/hang/ct3d/coseg/AT3D/extends/glwidget_ex.h | 374e1ea9783adf3ce14f44b11da7901cf5f3df6b | [
"MIT",
"Apache-2.0"
] | permissive | Vaa3D/vaa3d_tools | edb696aa3b9b59acaf83d6d27c6ae0a14bf75fe9 | e6974d5223ae70474efaa85e1253f5df1814fae8 | refs/heads/master | 2023-08-03T06:12:01.013752 | 2023-08-02T07:26:01 | 2023-08-02T07:26:01 | 50,527,925 | 107 | 86 | MIT | 2023-05-22T23:43:48 | 2016-01-27T18:19:17 | C++ | UTF-8 | C++ | false | false | 494 | h | #ifndef GLWIDGETEX_H
#define GLWIDGETEX_H
#include <vector>
#include <QObject>
#include <QtGui>
#include "../widgets/glwidget.h"
using namespace std;
class GLWidgetEX : public GLWidget
{
//Q_OBJECT
public:
GLWidgetEX(QWidget* parent);
~GLWidgetEX();
void setWidgetSize(int width, int height, int depth);
void ad... | [
"hanchuan.peng@gmail.com"
] | hanchuan.peng@gmail.com |
ca504cfd0a331c3aaf4fddaa31833087e6a18b21 | 2a091f02bbd6a675e9713b859a26e336b8d81b65 | /source/repos/KlasAgregatWariant6/KlasAgregatWariant6/KartaCzytelnika.h | b65f51245ee83eab462197406bca03fda7c673e2 | [] | no_license | kokakola1994/VSStudent | 9e9e1052503dd8b37c852efbafded71f20ecccfc | afb2188395620946f887caf8f771b4c3017965bb | refs/heads/master | 2023-03-21T03:07:18.262874 | 2020-01-27T05:43:00 | 2020-01-27T05:43:00 | 162,741,544 | 0 | 0 | null | 2023-03-03T06:58:06 | 2018-12-21T17:35:07 | C++ | UTF-8 | C++ | false | false | 691 | h | #pragma once
#include <iostream>
#include <string>
using namespace std;
class KartaCzytelnika
{
private:
string iin;
string adres;
int numer;
int data;
public:
KartaCzytelnika (int nnumer = 100, int ndata = 2000, string iin = "", string nadres = "");
~KartaCzytelnika();
void Setnumer(int numer) { this->numer = ... | [
"zabohunter1994@gmail.com"
] | zabohunter1994@gmail.com |
8c89df2771865a0b28a6fd9e2c5bfb15fc6fecb2 | 19681bc523d31eaf020f04bb14d31cfcab169c93 | /example-osc-output/src/ofApp.h | 587377b51f78947ec52a5a25068298d3643876e5 | [
"MIT"
] | permissive | hinike/ofxPDSP | 16e6e6e9c759a4a980300a93f3a661ce080b13c9 | b2c7fe4eec7b972e728373601d70f8d989d5c2ab | refs/heads/master | 2020-03-19T15:39:09.261972 | 2018-06-08T14:27:28 | 2018-06-08T14:27:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 737 | h | #pragma once
#include "ofMain.h"
#include "ofxSIMDFloats.h"
#include "ofxPDSP.h"
class ofApp : public ofBaseApp{
public:
void setup();
void update();
void draw();
void keyPressed(int key);
void keyReleased(int key);
void mouseMoved(int x, int y );
void mouseDragged(int x, int y, int button);
void m... | [
"nicola@npisanti.com"
] | nicola@npisanti.com |
e51d65894d9d20ecf0f724b14508ff357b6c6897 | a4008ca31634dcafe53137267d7b2df4572605bc | /reco/CurveTracking/STCorrCurveTHProx.cc | 0a5e3a42fda5df40cbe423c873d0cbbf802b1f9b | [] | no_license | SpiRIT-Collaboration/SpiRITROOT | 416f766d59110b23f14b3f8c5647c649d5c42efb | 0f5154b75e5db0d736373386e1481caa7c2ff03c | refs/heads/develop | 2023-03-10T15:25:16.906623 | 2022-01-21T17:42:01 | 2022-01-21T17:42:01 | 19,332,445 | 6 | 3 | null | 2018-12-19T09:04:44 | 2014-05-01T01:20:47 | C++ | UTF-8 | C++ | false | false | 2,845 | cc | #include "STCorrCurveTHProx.hh"
#include <iostream>
using namespace std;
STCorrCurveTHProx::STCorrCurveTHProx(
Double_t xProxCut,
Double_t yProxCut,
Double_t zProxCut,
Int_t nHitsCompare,
Int_t nHitsCompareMax)
{
fXProxCut = xProxCut;
fYProxCut = yProxCut;
fZProxCut = zProxCut;
fNumHitsCompar... | [
"phyjics@gmail.com"
] | phyjics@gmail.com |
3aaa174044aa91e63e8d7b8b35dbb347f2adebfd | cbf9d42397cc2bda21d2451d576c6e0307666243 | /src/Rodin/Variational/Transpose.h | 06a93ae77b1cc045c31e8eb54033061868e93cc0 | [
"BSL-1.0"
] | permissive | cbritopacheco/rodin | 272bd34b8d91ec825934a617d1fea751786a9632 | a64520db90ac444b7ce61ca353aa9fe85e4868d0 | refs/heads/master | 2023-08-21T20:19:35.539806 | 2023-08-14T20:36:37 | 2023-08-14T20:36:37 | 422,234,328 | 24 | 5 | BSL-1.0 | 2023-08-14T18:42:04 | 2021-10-28T14:22:55 | C++ | UTF-8 | C++ | false | false | 4,785 | h | /*
* Copyright Carlos BRITO PACHECO 2021 - 2022.
* Distributed under the Boost Software License, Version 1.0.
* (See accompanying file LICENSE or copy at
* https://www.boost.org/LICENSE_1_0.txt)
*/
#ifndef RODIN_VARIATIONAL_TRANSPOSE_H
#define RODIN_VARIATIONAL_TRANSPOSE_H
#include "ShapeF... | [
"carlos.brito524@gmail.com"
] | carlos.brito524@gmail.com |
7290d8a46e2b3b209eaf0058942944b25a32d0d5 | 38c10c01007624cd2056884f25e0d6ab85442194 | /third_party/WebKit/Source/core/loader/DocumentLoadTiming.h | 6bd081ef2b1ec2feb63643fe41983047bd65e8d8 | [
"LGPL-2.0-or-later",
"GPL-1.0-or-later",
"MIT",
"Apache-2.0",
"BSD-3-Clause",
"BSD-2-Clause",
"LGPL-2.0-only",
"LGPL-2.1-only",
"LicenseRef-scancode-warranty-disclaimer",
"GPL-2.0-only",
"LicenseRef-scancode-other-copyleft"
] | permissive | zenoalbisser/chromium | 6ecf37b6c030c84f1b26282bc4ef95769c62a9b2 | e71f21b9b4b9b839f5093301974a45545dad2691 | refs/heads/master | 2022-12-25T14:23:18.568575 | 2016-07-14T21:49:52 | 2016-07-23T08:02:51 | 63,980,627 | 0 | 2 | BSD-3-Clause | 2022-12-12T12:43:41 | 2016-07-22T20:14:04 | null | UTF-8 | C++ | false | false | 3,797 | h | /*
* Copyright (C) 2010 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:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions... | [
"zeno.albisser@hemispherian.com"
] | zeno.albisser@hemispherian.com |
017da0d728a30217af4051ef3967a8f5aa2c3727 | 06dda1cf03a4aa75fb69f19babb847974a9f8681 | /Source/NoEndHouse/NoEndHouseGameMode.cpp | 93620bd17c0cec6311dfbd5dfcceebd150052c31 | [] | no_license | 0x2A/NoEndHouse | 8f88e365920bd0a351a50229ecf238554419bb2c | dee7041a78fce16a40086433d8da20bc5299f85f | refs/heads/master | 2023-02-20T16:30:28.586782 | 2017-07-19T15:37:14 | 2017-07-19T15:37:14 | 47,028,809 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 714 | cpp | // Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
#include "NoEndHouse.h"
#include "NoEndHouseGameMode.h"
#include "NoEndHouseHUD.h"
#include "NoEndHouseCharacter.h"
#include "NEHPlayerController.h"
#include "NEHGameState.h"
ANoEndHouseGameMode::ANoEndHouseGameMode()
: Super()
{
// set default pawn class... | [
"frank.koehnke@fh-heidelberg.de"
] | frank.koehnke@fh-heidelberg.de |
cb032959d7dec236e9d7c8b85177ffa7a8c29c94 | 6e20207f8aff0f0ad94f05bd025810c6b10a1d5f | /SDK/EnhancedCricketBat_RecipePickup_classes.h | aa40fc6e5c0b85b14a8e135ea24c71920c11152e | [] | no_license | zH4x-SDK/zWeHappyFew-SDK | 2a4e246d8ee4b58e45feaa4335f1feb8ea618a4a | 5906adc3edfe1b5de86b7ef0a0eff38073e12214 | refs/heads/main | 2023-08-17T06:05:18.561339 | 2021-08-27T13:36:09 | 2021-08-27T13:36:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 724 | h | #pragma once
// Name: WeHappyFew, Version: 1.8.8
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
namespace SDK
{
//---------------------------------------------------------------------------
// Classes
//---------------------------------------------------------------------------
// BlueprintGeneratedClass EnhancedC... | [
"zp2kshield@gmail.com"
] | zp2kshield@gmail.com |
78ab65d0ff047a781f684697117a9262043e2cbd | dd9dd8e79b35cefdd36911117c2858f3248452f5 | /src/test/librbd/test_fixture.h | 508e4405c6cf301481b8c645bbafcfc94670a7f4 | [
"MIT"
] | permissive | SrinivasaBharath/ceph-1 | fed913cbf90c8d8ddffa156987d7b06464f19743 | 6a0747b6b79f5ca814afca6cefeb45f52fb9a509 | refs/heads/master | 2023-01-13T20:43:58.705726 | 2020-09-20T13:31:14 | 2020-09-20T13:31:14 | 298,234,477 | 0 | 0 | MIT | 2020-09-24T09:42:19 | 2020-09-24T09:42:18 | null | UTF-8 | C++ | false | false | 1,526 | h | // -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab
#include "include/int_types.h"
#include "include/rados/librados.h"
#include "include/rbd/librbd.hpp"
#include "librbd/ImageCtx.h"
#include "gtest/gtest.h"
#include <set>
#include <string>
using namespace ceph;
class Test... | [
"vasu@redhat.com"
] | vasu@redhat.com |
f617de6309959d2ce4c9e5665ccf749a3df583c4 | a8223cd98343fef24eed1f5749c7199e4e8e1c40 | /UP-Magic_Demo实训案例/UP-Magic_Demo_install_20110217/include/Qt/qvariant.h | 977d2fb91bdd3c9b0d42943d43ee548ccbe71b1e | [] | no_license | yunzimos/magicprogram | 9f6ad14ae96181ea87f22b0e927399b197134da3 | d68b55fd9ab698539f254b6e01c8a6690b8cad16 | refs/heads/master | 2020-09-15T05:23:14.837416 | 2019-11-29T09:08:33 | 2019-11-29T09:08:33 | 223,356,234 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 17,434 | h | /****************************************************************************
**
** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved.
**
** This file is part of the QtCore module of the Qt Toolkit.
**
** This file may be used under the terms of the GNU General Public
** License versions 2.0 or 3.0 as publishe... | [
"2513968357@qq.com"
] | 2513968357@qq.com |
d25d479a8b08e3ebd99bbc24ace9b51dcea71bfa | fb7efe44f4d9f30d623f880d0eb620f3a81f0fbd | /net/http2/decoder/frame_decoder_state.h | 7060a6da4f7d6e8e98fda1619189b58b8ed4fba8 | [
"BSD-3-Clause"
] | permissive | wzyy2/chromium-browser | 2644b0daf58f8b3caee8a6c09a2b448b2dfe059c | eb905f00a0f7e141e8d6c89be8fb26192a88c4b7 | refs/heads/master | 2022-11-23T20:25:08.120045 | 2018-01-16T06:41:26 | 2018-01-16T06:41:26 | 117,618,467 | 3 | 2 | BSD-3-Clause | 2022-11-20T22:03:57 | 2018-01-16T02:09:10 | null | UTF-8 | C++ | false | false | 11,220 | h | // Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef NET_HTTP2_DECODER_FRAME_DECODER_STATE_H_
#define NET_HTTP2_DECODER_FRAME_DECODER_STATE_H_
// FrameDecoderState provides state and behaviors in su... | [
"jacob-chen@iotwrt.com"
] | jacob-chen@iotwrt.com |
43065b16ba0e844cdbecaa0e2b495569ebb8a7eb | 55d560fe6678a3edc9232ef14de8fafd7b7ece12 | /boost/poly_collection/detail/is_constructible.hpp | d4de6ae43d4483e85c01f8032a01fdc9874e8226 | [
"BSL-1.0"
] | permissive | stardog-union/boost | ec3abeeef1b45389228df031bf25b470d3d123c5 | caa4a540db892caa92e5346e0094c63dea51cbfb | refs/heads/stardog/develop | 2021-06-25T02:15:10.697006 | 2020-11-17T19:50:35 | 2020-11-17T19:50:35 | 148,681,713 | 0 | 0 | BSL-1.0 | 2020-11-17T19:50:36 | 2018-09-13T18:38:54 | C++ | UTF-8 | C++ | false | false | 1,524 | hpp | /* Copyright 2016-2017 Joaquin M Lopez Munoz.
* Distributed under the Boost Software License, Version 1.0.
* (See accompanying file LICENSE_1_0.txt or copy at
* http://www.boost.org/LICENSE_1_0.txt)
*
* See http://www.boost.org/libs/poly_collection for library home page.
*/
#ifndef BOOST_POLY_COLLECTION_... | [
"james.pack@stardog.com"
] | james.pack@stardog.com |
0b520c9143f4adf45369c476740ea13f63b9a8db | b7f3edb5b7c62174bed808079c3b21fb9ea51d52 | /third_party/blink/renderer/modules/peerconnection/adapters/p2p_quic_transport_impl.cc | 5cf896dc0ae9e8634353dd13974c9969b95c730b | [
"LGPL-2.0-or-later",
"GPL-1.0-or-later",
"MIT",
"Apache-2.0",
"LicenseRef-scancode-warranty-disclaimer",
"LGPL-2.1-only",
"GPL-2.0-only",
"LGPL-2.0-only",
"BSD-2-Clause",
"LicenseRef-scancode-other-copyleft",
"BSD-3-Clause"
] | permissive | otcshare/chromium-src | 26a7372773b53b236784c51677c566dc0ad839e4 | 64bee65c921db7e78e25d08f1e98da2668b57be5 | refs/heads/webml | 2023-03-21T03:20:15.377034 | 2020-11-16T01:40:14 | 2020-11-16T01:40:14 | 209,262,645 | 18 | 21 | BSD-3-Clause | 2023-03-23T06:20:07 | 2019-09-18T08:52:07 | null | UTF-8 | C++ | false | false | 24,337 | 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 "third_party/blink/renderer/modules/peerconnection/adapters/p2p_quic_transport_impl.h"
#include "net/quic/quic_chromium_connection_helper.h"
#inc... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
64f52c5934e8376d679207cb91393cb25cf9bb1e | 9a97f19fb8c9611c7e9c6a31e307a8ce596dd1f2 | /Week5_DP/week5/light_at_the_museum/light_at_the_museum.cpp | 4dace32937d870caf4a54082801c0b094d94bb51 | [] | no_license | sankiteth/AlgoLab | bd9397efac164b3694ae47a7602a2587f5641126 | 13caeaf84a35ad773db3da7daae8dcd38328d7b2 | refs/heads/master | 2021-09-06T18:37:09.093344 | 2018-02-09T19:49:17 | 2018-02-09T19:49:17 | 106,556,655 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,657 | cpp | #include <iostream>
#include <vector>
#include <algorithm>
#include <climits>
#include <map>
#include <utility>
using namespace std;
void brute_force()
{
int N,M; cin >> N >> M;
vector<int> target(M);
vector<vector<int> > switch_lights_on(N, vector<int>(M));
vector<vector<int> > switch_lights_off(N, vector<int>(M... | [
"sankit@student.ethz.ch"
] | sankit@student.ethz.ch |
9bc4abf25b4eb8e30d5785ee39e0d84f45f7d5f2 | 2f4e5f08123046032d1d9bd742ad8c04113adc45 | /src/positionfilter/KalmanFilter2D.cpp | 9cf265f80a0a5781f2340a10e062169c78ea6bb0 | [] | no_license | ilodor/Oat | 05548134167161d0bdac547056ded3d09ab655ae | 9ff542c7c71584a4afed2c4997b8d32691e9a546 | refs/heads/master | 2021-01-22T16:10:50.353966 | 2015-10-15T01:20:31 | 2015-10-15T01:20:31 | 46,384,139 | 0 | 0 | null | 2015-11-18T00:18:45 | 2015-11-18T00:18:45 | null | UTF-8 | C++ | false | false | 11,119 | cpp | //******************************************************************************
//* File: KalmanFilter2D.cpp
//* Author: Jon Newman <jpnewman snail mit dot edu>
//*
//* Copyright (c) Jon Newman (jpnewman snail mit dot edu)
//* All right reserved.
//* This file is part of the Oat project.
//* This is free software: y... | [
"jpnewman@mit.edu"
] | jpnewman@mit.edu |
9431a9bea7ebc2914d3a7e989af00c3e71846b47 | d247c15f5bfeffb207e9ad91a45f63beff7039d3 | /studies/leptonIDs/ScanChainCMS4.C | 399aac18ced19a03b8e85987b28ea6347a29372f | [] | no_license | jkguiang/NanoTools | 3e5fd5e6299bccfa98b3b116b8a192c7664ceb1f | 327296b777d2f6c97cd9bd2cc68c5f3e0d7ccfc1 | refs/heads/master | 2022-12-31T16:08:52.920147 | 2020-10-26T17:01:44 | 2020-10-26T17:01:44 | 257,946,405 | 0 | 1 | null | 2020-04-22T15:44:23 | 2020-04-22T15:44:22 | null | UTF-8 | C++ | false | false | 10,165 | c | // -*- C++ -*-
// C++
#include <iostream>
#include <vector>
#include <string>
// ROOT
#include "TBenchmark.h"
#include "TChain.h"
#include "TDirectory.h"
#include "TFile.h"
#include "TROOT.h"
#include "TTreeCache.h"
#include "TString.h"
// CORE
#include "CORE/CMS3.h"
#include "CORE/ElectronSelections.h"
#include "CO... | [
"jkguiang@gmail.com"
] | jkguiang@gmail.com |
cb9a623d06c9ac7ab22a3f452315ff4dce28a208 | 28d68af73c56375314efd07eaf6a1a9241a51ce3 | /aws-cpp-sdk-transfer/include/aws/transfer/TransferClient.h | 7a55ffaa14098f74f8daaba7f9119e911a94e447 | [
"JSON",
"MIT",
"Apache-2.0"
] | permissive | zeliard/aws-sdk-cpp | 93b560791fa359be25b201e9a6513bc3cb415046 | 14119f1f5bc159ce00a1332f86e117362afd3cb6 | refs/heads/master | 2021-01-16T22:49:18.731977 | 2016-01-04T01:54:38 | 2016-01-04T01:54:38 | 41,892,393 | 0 | 1 | null | 2015-09-04T01:35:43 | 2015-09-04T01:35:43 | null | UTF-8 | C++ | false | false | 7,268 | h |
/*
* Copyright 2010-2015 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in... | [
"henso@amazon.com"
] | henso@amazon.com |
dd78b3cbd58d06a6e1065ecb535deb478338faae | 433867fb8f23e1a9b2eaa770453a126730edd2b5 | /vscode_proj/condition_variable_produce.cpp | 049e3702621f12fdf32a38a79176cf22423a0f58 | [] | no_license | colderleo/cpp_thread | 9069aa015cb43bb67b0daf9e1f0808cea5375c2b | 69f5339e200afbe30265e4548f8e46f5dd48da1b | refs/heads/master | 2022-11-24T07:10:30.200387 | 2020-07-29T10:09:21 | 2020-07-29T10:09:21 | 273,801,816 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,673 | cpp | #include<thread>
#include<mutex>
#include<condition_variable>
using namespace std;
int cargo = 0;
mutex g_mutex;
condition_variable cv;
bool has_goods() {
return (cargo > 0);
}
void consume(int n) {
unique_lock<mutex> lck(g_mutex);
for (int i = 0; i < n; ++i) {
cv.wait(lck, has_goods);
printf("consume goods... | [
"colderleo@163.com"
] | colderleo@163.com |
d64b3d29699ade196c59c9e7b7a25880caea705f | 52ac4c54b198341b9b3f24e162fb77d9f2999bf4 | /The Land of Headaches/AssetManager.cpp | b89381ae3bd84e111f0fae4c0c5ba6f4d645d618 | [] | no_license | bOsowski/The-Land-of-Headaches | 6a196d52b9fc0ad8355f811441490cfa361e8026 | 47640db334392cb9743254dd68da689e8a39847f | refs/heads/master | 2020-04-10T07:48:02.664769 | 2018-12-16T05:01:46 | 2018-12-16T05:01:46 | 160,889,162 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,539 | cpp | //
// Created by Bartosz Osowski on 08/12/2018.
// Copyright (c) 2018 Bartosz Osowski. All rights reserved.
//
#include "AssetManager.hpp"
AssetManager::AssetManager() {
DIR *dir;
struct dirent *ent;
bool fail = true;
//loading textures
while(fail){
const char* textureDir = ((resourcePat... | [
"bosowski04@gmail.com"
] | bosowski04@gmail.com |
60ec9f5e7f0eecd878303e129d6d99f832f87946 | e641bd95bff4a447e25235c265a58df8e7e57c84 | /third_party/blink/renderer/core/loader/loader_factory_for_frame.cc | 842a216e7014364a93d65efd48184e639e5c77aa | [
"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",
"BSD-3-Clause",
"MIT",
"Apache-2.0"
] | permissive | zaourzag/chromium | e50cb6553b4f30e42f452e666885d511f53604da | 2370de33e232b282bd45faa084e5a8660cb396ed | refs/heads/master | 2023-01-02T08:48:14.707555 | 2020-11-13T13:47:30 | 2020-11-13T13:47:30 | 312,600,463 | 0 | 0 | BSD-3-Clause | 2022-12-23T17:01:30 | 2020-11-13T14:39:10 | null | UTF-8 | C++ | false | false | 5,980 | cc | // Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "third_party/blink/renderer/core/loader/loader_factory_for_frame.h"
#include "base/single_thread_task_runner.h"
#include "mojo/public/cpp/bindin... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
3d9718bc1e83b70ac6d35112824a8b404b76b80c | bfbdd3d6bf4e70aa2aa2df3d01d18c83a30d8033 | /day8/code/06OverrideQt/mainwindow.cpp | 9513a6634514ecb9b94b09563525bc4e9b7073c6 | [] | no_license | caiyiming/cppCode | 42333b1c052818afdd68d8a47c4e5b648d7a6b6d | dc1b897af0ebd0778159b852112e02b0ade23e78 | refs/heads/master | 2020-06-15T15:46:48.511108 | 2016-12-01T08:08:16 | 2016-12-01T08:08:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 424 | cpp | #include "mainwindow.h"
#include <iostream>
using namespace std;
MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent)
{
this->setGeometry(300,300,500,300);
}
MainWindow::~MainWindow()
{
}
void MainWindow::mousePressEvent(QMouseEvent * e)
{
if(e->button() == Qt::LeftButton)
{
cout<<... | [
"guilin_wang@163.com"
] | guilin_wang@163.com |
fa73601b7758dcc48163155943bcdc19768ae0f3 | 86856b9f1f57d85b37132f144a01011795c788ea | /C++/CS124/assignment26-converter.cpp | e519e3fbfdc8e1b86b34377dc94148cd443bf523 | [] | no_license | pelbertc/UBUNTUREPO | 60d3aefd8607f3d51a65b1ac7384f4030b6548f0 | 6eb850e394b5f149416f717c859674399f95bab8 | refs/heads/master | 2020-04-17T18:58:17.692020 | 2019-11-08T17:42:41 | 2019-11-08T17:42:41 | 166,848,677 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,658 | cpp | /**********************************************************************
* Program:
* Assignment 26, Files
* Brother Wagstaff, CS124
* Author:
* Elbert Prescott
* Summary:
* this program will read a text file with multiple grades then generate
* average grade
*
* Estimated: 4.0 hrs
* Actual: 8.... | [
"tufumoon@gmail.com"
] | tufumoon@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.