hexsha
stringlengths
40
40
size
int64
7
1.05M
ext
stringclasses
13 values
lang
stringclasses
1 value
max_stars_repo_path
stringlengths
4
269
max_stars_repo_name
stringlengths
5
108
max_stars_repo_head_hexsha
stringlengths
40
40
max_stars_repo_licenses
listlengths
1
9
max_stars_count
int64
1
191k
max_stars_repo_stars_event_min_datetime
stringlengths
24
24
max_stars_repo_stars_event_max_datetime
stringlengths
24
24
max_issues_repo_path
stringlengths
4
269
max_issues_repo_name
stringlengths
5
116
max_issues_repo_head_hexsha
stringlengths
40
40
max_issues_repo_licenses
listlengths
1
9
max_issues_count
int64
1
67k
max_issues_repo_issues_event_min_datetime
stringlengths
24
24
max_issues_repo_issues_event_max_datetime
stringlengths
24
24
max_forks_repo_path
stringlengths
4
269
max_forks_repo_name
stringlengths
5
116
max_forks_repo_head_hexsha
stringlengths
40
40
max_forks_repo_licenses
listlengths
1
9
max_forks_count
int64
1
105k
max_forks_repo_forks_event_min_datetime
stringlengths
24
24
max_forks_repo_forks_event_max_datetime
stringlengths
24
24
content
stringlengths
7
1.05M
avg_line_length
float64
1.21
330k
max_line_length
int64
6
990k
alphanum_fraction
float64
0.01
0.99
author_id
stringlengths
2
40
dc1f0dc89b83f295a736ecb64b60b56ce2a2fb4e
14,146
cpp
C++
Resources/SVP/lab2/misc/new.cpp
rishitsaiya/CS312-AI-Lab
30489e07a71f04b47d38139937a7229fbc4c6185
[ "MIT" ]
2
2021-12-24T16:43:43.000Z
2022-02-01T03:49:55.000Z
Resources/SVP/lab2/misc/new.cpp
rishitsaiya/CS312-AI-Lab
30489e07a71f04b47d38139937a7229fbc4c6185
[ "MIT" ]
null
null
null
Resources/SVP/lab2/misc/new.cpp
rishitsaiya/CS312-AI-Lab
30489e07a71f04b47d38139937a7229fbc4c6185
[ "MIT" ]
6
2021-04-23T08:37:14.000Z
2022-02-27T15:21:54.000Z
#include <bits/stdc++.h> #include <chrono> #include "combo.h" using namespace std; using namespace std::chrono; #define pii pair<int, int> pii nil = {-1, -1}; struct Node{ int path_cost; // accumulated cost int color; // visited = 1, else 0 int score; // score generated by heuristic bool visited; ...
26.590226
195
0.461332
rishitsaiya
dc1f0e9af2e01b39ad6e826398f23288e833e54e
62,420
cpp
C++
test/test.cpp
calzakk/CyoArguments
85e572a4648793ede087162fe3c13869ebb28d5d
[ "MIT" ]
3
2015-11-16T15:54:17.000Z
2021-08-18T22:14:09.000Z
test/test.cpp
calzakk/CyoArguments
85e572a4648793ede087162fe3c13869ebb28d5d
[ "MIT" ]
null
null
null
test/test.cpp
calzakk/CyoArguments
85e572a4648793ede087162fe3c13869ebb28d5d
[ "MIT" ]
null
null
null
/* [CyoArguments] test.cpp The MIT License (MIT) Copyright (c) 2015-2016 Graham Bull 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 ...
30.977667
110
0.409676
calzakk
dc210888e9eb81678386ff7528a0a15d8cb4394f
16,143
cpp
C++
Util/SUNDIALS_serial_test/main.cpp
Gosenca/axionyx_1.0
7e2a723e00e6287717d6d81b23db32bcf6c3521a
[ "BSD-3-Clause-LBNL" ]
6
2021-02-18T09:13:17.000Z
2022-03-22T21:27:46.000Z
Util/SUNDIALS_serial_test/main.cpp
Gosenca/axionyx_1.0
7e2a723e00e6287717d6d81b23db32bcf6c3521a
[ "BSD-3-Clause-LBNL" ]
1
2020-10-12T08:54:31.000Z
2020-10-12T08:54:31.000Z
Util/SUNDIALS_serial_test/main.cpp
Gosenca/axionyx_1.0
7e2a723e00e6287717d6d81b23db32bcf6c3521a
[ "BSD-3-Clause-LBNL" ]
3
2020-09-04T10:26:25.000Z
2022-03-14T23:51:51.000Z
#include <fstream> #include <iomanip> #include <AMReX_ParmParse.H> #include <AMReX_Geometry.H> #include <AMReX_MultiFab.H> #include <AMReX_Print.H> #include <AMReX_PlotFileUtil.H> #include <AMReX_BLFort.H> #include <cvode/cvode.h> /* prototypes for CVODE fcts., consts. */ #include <sunlinsol/sunlinsol_...
33.842767
110
0.604782
Gosenca
dc2310429379555fa1fcb259a413021e724f1bc3
751
cpp
C++
Contests/Virtual Judge/XunlianSai 20190902/a.cpp
DCTewi/My-Codes
9904f8057ec96e21cbc8cf9c62a49658a0f6d392
[ "MIT" ]
null
null
null
Contests/Virtual Judge/XunlianSai 20190902/a.cpp
DCTewi/My-Codes
9904f8057ec96e21cbc8cf9c62a49658a0f6d392
[ "MIT" ]
null
null
null
Contests/Virtual Judge/XunlianSai 20190902/a.cpp
DCTewi/My-Codes
9904f8057ec96e21cbc8cf9c62a49658a0f6d392
[ "MIT" ]
null
null
null
#include<bits/stdc++.h> using namespace std; typedef long long ll; const int MAXN = 35; const int MAXQ = 55; int x, y, q; struct Tile { char dir, value; }tile[MAXN][MAXN]; string opt[MAXQ]; map<char, vector<char>> edge; int main() { ios::sync_with_stdio(0); cin >> x >> y; for (int i = 0; i < x; i...
14.72549
38
0.432756
DCTewi
dc23f156f36ee1a46afd4d577d3d5275e18330c6
969
cpp
C++
io/lab1/src/input_capture/ICCONF.cpp
chebykinn/university
49491b4d942cedbda1c178d5634c5109f1b81a81
[ "MIT" ]
2
2016-12-25T14:21:43.000Z
2016-12-28T08:17:10.000Z
io/lab1/src/input_capture/ICCONF.cpp
chebykinn/university
49491b4d942cedbda1c178d5634c5109f1b81a81
[ "MIT" ]
null
null
null
io/lab1/src/input_capture/ICCONF.cpp
chebykinn/university
49491b4d942cedbda1c178d5634c5109f1b81a81
[ "MIT" ]
3
2017-10-22T18:58:10.000Z
2017-12-16T23:55:26.000Z
#include "ICCONF.h" ICCONF::ICCONF(sc_module_name nm) :sc_module(nm), icconf_i("icconf_i"), icconf_o("icconf_o"), icbne_i("icbne_i"), icov_i("icov_i"), icm_o("icm_o"), ictmr_o("ictmr_o") { icconf_o.initialize(0); icm_o.initialize(0); ictmr_o.ini...
23.634146
95
0.634675
chebykinn
dc24c91937ee39b8eb08090a22fc4d707c98c20e
13,024
cpp
C++
src/ccd_vf.cpp
ricortiz/SCCD
35ee94736c9337164732591aa8b053bad60a9f09
[ "BSD-4-Clause-UC" ]
7
2017-04-01T08:09:26.000Z
2021-08-06T03:29:15.000Z
src/ccd_vf.cpp
deberle2/CD
35ee94736c9337164732591aa8b053bad60a9f09
[ "BSD-4-Clause-UC" ]
null
null
null
src/ccd_vf.cpp
deberle2/CD
35ee94736c9337164732591aa8b053bad60a9f09
[ "BSD-4-Clause-UC" ]
2
2016-03-03T16:55:50.000Z
2020-06-16T03:33:16.000Z
/*************************************************************************\ Copyright 2010 The University of North Carolina at Chapel Hill. All Rights Reserved. Permission to use, copy, modify and distribute this software and its documentation for educational, research and non-profit purposes, without ...
28.687225
174
0.616554
ricortiz
dc2745c3c1a72d6b4a3b64b3c3182391e4c03e65
2,083
cpp
C++
lib/percy/kitty/examples/isop.cpp
Ace-Ma/LSOracle
6e940906303ef6c2c6b96352f44206567fdd50d3
[ "MIT" ]
null
null
null
lib/percy/kitty/examples/isop.cpp
Ace-Ma/LSOracle
6e940906303ef6c2c6b96352f44206567fdd50d3
[ "MIT" ]
null
null
null
lib/percy/kitty/examples/isop.cpp
Ace-Ma/LSOracle
6e940906303ef6c2c6b96352f44206567fdd50d3
[ "MIT" ]
null
null
null
/* kitty: C++ truth table library * Copyright (C) 2017-2018 EPFL * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation * files (the "Software"), to deal in the Software without * restriction, including without limitation the rights to use...
30.188406
74
0.667787
Ace-Ma
dc28b6c143d3d6b0148e68c0cb7ed66ce35eb61e
38,341
cpp
C++
src/thirdparty/bullet/src/LinearMath/btSerializer.cpp
kripken/intensityengine
9ae352b4f526ecb180004ae4968db7f64f140762
[ "MIT" ]
31
2015-01-18T20:27:31.000Z
2021-07-03T03:58:47.000Z
src/thirdparty/bullet/src/LinearMath/btSerializer.cpp
JamesLinus/intensityengine
9ae352b4f526ecb180004ae4968db7f64f140762
[ "MIT" ]
4
2015-07-05T21:09:37.000Z
2019-09-06T14:34:59.000Z
src/thirdparty/bullet/src/LinearMath/btSerializer.cpp
JamesLinus/intensityengine
9ae352b4f526ecb180004ae4968db7f64f140762
[ "MIT" ]
11
2015-02-03T19:24:10.000Z
2019-09-20T10:59:50.000Z
unsigned char sBulletDNAstr64[]= { 83,68,78,65,78,65,77,69,-81,0,0,0,109,95,115,105,122,101,0,109, 95,99,97,112,97,99,105,116,121,0,42,109,95,100,97,116,97,0,109,95, 99,111,108,108,105,115,105,111,110,83,104,97,112,101,115,0,109,95,99,111, 108,108,105,115,105,111,110,79,98,106,101,99,116,115,0,109,95,99,111,110, 1...
67.02972
78
0.669909
kripken
dc2cb418923e36b791d69f3f5a94cba588cb6244
328
cpp
C++
RenderQueuePass.cpp
TheHolyBell/Hardware3D
1879c498645dfec874ab25497d1c830482bbf0c7
[ "MIT" ]
null
null
null
RenderQueuePass.cpp
TheHolyBell/Hardware3D
1879c498645dfec874ab25497d1c830482bbf0c7
[ "MIT" ]
null
null
null
RenderQueuePass.cpp
TheHolyBell/Hardware3D
1879c498645dfec874ab25497d1c830482bbf0c7
[ "MIT" ]
null
null
null
#include "RenderQueuePass.h" namespace RenderGraph { void RenderQueuePass::Accept(Job job) noexcept { m_Jobs.push_back(job); } void RenderQueuePass::Execute(Graphics& gfx) const noxnd { BindAll(gfx); for (const auto& j : m_Jobs) j.Execute(gfx); } void RenderQueuePass::Reset() noxnd { m_Jobs.clear...
14.909091
57
0.692073
TheHolyBell
dc328e504f20ad3452b559b3d9e3a0a49da4c2f7
3,357
hpp
C++
include/instructions/math.hpp
luizschonarth/JVM-8
b828d1e12072b71cbadeb924b7b13661d300f798
[ "MIT" ]
null
null
null
include/instructions/math.hpp
luizschonarth/JVM-8
b828d1e12072b71cbadeb924b7b13661d300f798
[ "MIT" ]
24
2022-03-12T18:38:22.000Z
2022-03-28T00:29:03.000Z
include/instructions/math.hpp
luizschonarth/JVM-8
b828d1e12072b71cbadeb924b7b13661d300f798
[ "MIT" ]
null
null
null
/** * @file math.hpp * @brief Declaration of the instructions of type math */ #ifndef _MATH_HPP #define _MATH_HPP #include "../frame.hpp" #include "../constant_pool_info.hpp" void dadd(cp_info_vector &constant_pool, bytestream &code, stack<frame_t> *stack_f); void fadd(cp_info_vector &constant_pool, bytestream &c...
55.95
85
0.79148
luizschonarth
dc32947e2a1738f32cda886493ed8a21d79216f8
1,667
cpp
C++
cmdstan/stan/lib/stan_math/test/unit/math/fwd/scal/fun/log1m_exp_test.cpp
yizhang-cae/torsten
dc82080ca032325040844cbabe81c9a2b5e046f9
[ "BSD-3-Clause" ]
null
null
null
cmdstan/stan/lib/stan_math/test/unit/math/fwd/scal/fun/log1m_exp_test.cpp
yizhang-cae/torsten
dc82080ca032325040844cbabe81c9a2b5e046f9
[ "BSD-3-Clause" ]
null
null
null
cmdstan/stan/lib/stan_math/test/unit/math/fwd/scal/fun/log1m_exp_test.cpp
yizhang-cae/torsten
dc82080ca032325040844cbabe81c9a2b5e046f9
[ "BSD-3-Clause" ]
null
null
null
#include <stan/math/fwd/scal.hpp> #include <gtest/gtest.h> #include <test/unit/math/fwd/scal/fun/nan_util.hpp> #include <cmath> TEST(AgradFwdLog1mExp,Fvar) { using stan::math::fvar; using stan::math::log1m_exp; using std::exp; using std::log; fvar<double> x(-0.5); fvar<double> y(-1.0); x.d_ = 1.0; y.d...
23.814286
61
0.652669
yizhang-cae
dc331e0cd220e98a12cdf866a0a6dc3719981b29
571
cpp
C++
p179/p179.cpp
suzyz/leetcode_practice
e22dc5a81e065dc962e5561b14ac84b9a2302e8a
[ "MIT" ]
1
2019-10-07T05:00:21.000Z
2019-10-07T05:00:21.000Z
p179/p179.cpp
suzyz/leetcode_practice
e22dc5a81e065dc962e5561b14ac84b9a2302e8a
[ "MIT" ]
null
null
null
p179/p179.cpp
suzyz/leetcode_practice
e22dc5a81e065dc962e5561b14ac84b9a2302e8a
[ "MIT" ]
null
null
null
class Solution { public: string largestNumber(vector<int>& nums) { int n = nums.size(); vector<string> s(n,""); for (int i = 0; i < n; ++i) s[i] = to_string(nums[i]); sort(s.begin(),s.end(),my_cmp); string res; for (int i = 0; i < n; ++i) res += s[...
21.148148
55
0.455342
suzyz
dc363b724ddb35d6cf694e801afb5da0536db23c
2,086
cpp
C++
examples/APG/Timers/TimerDispatcher.cpp
cflowe/ACE
5ff60b41adbe1772372d1a43bcc1f2726ff8f810
[ "DOC" ]
36
2015-01-10T07:27:33.000Z
2022-03-07T03:32:08.000Z
examples/APG/Timers/TimerDispatcher.cpp
cflowe/ACE
5ff60b41adbe1772372d1a43bcc1f2726ff8f810
[ "DOC" ]
2
2018-08-13T07:30:51.000Z
2019-02-25T03:04:31.000Z
examples/APG/Timers/TimerDispatcher.cpp
cflowe/ACE
5ff60b41adbe1772372d1a43bcc1f2726ff8f810
[ "DOC" ]
38
2015-01-08T14:12:06.000Z
2022-01-19T08:33:00.000Z
// $Id: TimerDispatcher.cpp 94310 2011-07-09 19:10:06Z schmidt $ #include "TimerDispatcher.h" // Listing 1 code/ch20 void Timer_Dispatcher::wait_for_event (void) { ACE_TRACE ("Timer_Dispatcher::wait_for_event"); while (1) { ACE_Time_Value max_tv = timer_queue_->gettimeofday (); ACE_Time_Value *th...
28.189189
67
0.666826
cflowe
dc37141e96af6a2ee36af9e126f40f5177e5b62d
582
cpp
C++
task1/source/bvh.cpp
barblin/ray-tracer
c8023fa32f27ca642e1acb0c3052abbb6307da18
[ "MIT" ]
null
null
null
task1/source/bvh.cpp
barblin/ray-tracer
c8023fa32f27ca642e1acb0c3052abbb6307da18
[ "MIT" ]
null
null
null
task1/source/bvh.cpp
barblin/ray-tracer
c8023fa32f27ca642e1acb0c3052abbb6307da18
[ "MIT" ]
null
null
null
struct BVH { uint32_t SceneTriangleCount; uint32_t BVHNodeCount; BVH() { } void GenerateBVH(Scene* scene) { SceneTriangleCount = 0; BVHNodeCount = 0; } void Draw(int maxNodeLevel) { // maxNodeLevel should restrict the depth of the rendered nodes to a cer...
25.304348
91
0.608247
barblin
dc371b9cf565f74dc291e9a1fb0e8f252ee72b8c
2,319
cpp
C++
src/usi-engine/Zobrist.cpp
bleu48/aobazero
c805b80d9ed8d27ce507fc2b74fb7609d75b2426
[ "Unlicense" ]
43
2019-05-10T05:50:23.000Z
2022-01-03T02:46:00.000Z
src/usi-engine/Zobrist.cpp
bleu48/aobazero
c805b80d9ed8d27ce507fc2b74fb7609d75b2426
[ "Unlicense" ]
34
2019-05-07T15:22:44.000Z
2021-09-21T04:34:39.000Z
src/usi-engine/Zobrist.cpp
kobanium/aoba-zero
dd6eb185e22c57b72663859e678fff79f7f425a5
[ "Unlicense" ]
13
2019-05-10T02:11:45.000Z
2021-10-05T12:28:03.000Z
/* This file is part of Leela Zero. Copyright (C) 2017-2019 Gian-Carlo Pascutto and contributors Leela Zero is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or ...
38.65
92
0.658905
bleu48
dc3aec0b185760ae6b67d50518302b3d7c7f3d77
23,696
cc
C++
modules/audio_coding/audio_network_adaptor/util/threshold_curve_unittest.cc
wnpllrzodiac/webrtc_code_mirror
0e7b3a9dadc64266eba82b0fc1265b36b7794839
[ "BSD-3-Clause" ]
344
2016-07-03T11:45:20.000Z
2022-03-19T16:54:10.000Z
modules/audio_coding/audio_network_adaptor/util/threshold_curve_unittest.cc
wnpllrzodiac/webrtc_code_mirror
0e7b3a9dadc64266eba82b0fc1265b36b7794839
[ "BSD-3-Clause" ]
59
2020-08-24T09:17:42.000Z
2022-02-27T23:33:37.000Z
modules/audio_coding/audio_network_adaptor/util/threshold_curve_unittest.cc
wnpllrzodiac/webrtc_code_mirror
0e7b3a9dadc64266eba82b0fc1265b36b7794839
[ "BSD-3-Clause" ]
278
2016-04-26T07:37:12.000Z
2022-01-24T10:09:44.000Z
/* * Copyright (c) 2017 The WebRTC project authors. All Rights Reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source * tree. An additional intellectual property rights grant can be found * in the file PATENTS. All contribut...
37.434439
80
0.521312
wnpllrzodiac
dc3cca350deeffe8ceb4b5401f7e12e77b30f28d
1,848
cc
C++
src/msgpack/rpc/reqtable.cc
shayanalia/msgpack-rpc-cpp
3fd73f9a58b899774dca13a1c478fad7924dd8fd
[ "Apache-2.0" ]
28
2015-01-15T13:50:05.000Z
2022-03-01T13:41:33.000Z
src/msgpack/rpc/reqtable.cc
shayanalia/msgpack-rpc-cpp
3fd73f9a58b899774dca13a1c478fad7924dd8fd
[ "Apache-2.0" ]
1
2016-10-03T22:45:49.000Z
2016-10-04T01:11:57.000Z
src/msgpack/rpc/reqtable.cc
shayanalia/msgpack-rpc-cpp
3fd73f9a58b899774dca13a1c478fad7924dd8fd
[ "Apache-2.0" ]
13
2015-11-27T15:30:59.000Z
2020-09-30T20:43:00.000Z
// // msgpack::rpc::reqtable - Cluster Communication Framework // // Copyright (C) 2009-2010 FURUHASHI Sadayuki // // 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:...
23.692308
78
0.688312
shayanalia
dc3d36328578f76f9029f44fce8e24d9a9380d72
830
cpp
C++
dev/IconSource/SymbolIconSource.cpp
ZachT1711/microsoft-ui-xaml
b781f9d71051cc41968d2cf22501de227832e74b
[ "MIT" ]
3,788
2019-05-07T02:41:36.000Z
2022-03-30T12:34:15.000Z
dev/IconSource/SymbolIconSource.cpp
ZachT1711/microsoft-ui-xaml
b781f9d71051cc41968d2cf22501de227832e74b
[ "MIT" ]
6,170
2019-05-06T21:32:43.000Z
2022-03-31T23:46:55.000Z
dev/IconSource/SymbolIconSource.cpp
ZachT1711/microsoft-ui-xaml
b781f9d71051cc41968d2cf22501de227832e74b
[ "MIT" ]
532
2019-05-07T12:15:58.000Z
2022-03-31T11:36:26.000Z
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See LICENSE in the project root for license information. #include "pch.h" #include "common.h" #include "IconSource.h" #include "SymbolIconSource.h" winrt::IconElement SymbolIconSource::CreateIconElementCore() {...
27.666667
113
0.713253
ZachT1711
dc3f891f541b375482f57ba74023d530dab53b28
7,281
cpp
C++
fpdfsdk/cpdfsdk_baannot.cpp
softwarecapital/google.pdfium
d6c0f7d6aeaac79ca1eb7fb065d80dbd3504c92e
[ "Apache-2.0" ]
1
2021-02-10T04:14:02.000Z
2021-02-10T04:14:02.000Z
fpdfsdk/cpdfsdk_baannot.cpp
softwarecapital/google.pdfium
d6c0f7d6aeaac79ca1eb7fb065d80dbd3504c92e
[ "Apache-2.0" ]
null
null
null
fpdfsdk/cpdfsdk_baannot.cpp
softwarecapital/google.pdfium
d6c0f7d6aeaac79ca1eb7fb065d80dbd3504c92e
[ "Apache-2.0" ]
null
null
null
// Copyright 2016 PDFium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com #include "fpdfsdk/cpdfsdk_baannot.h" #include "constants/annotation_common.h"...
30.592437
89
0.694273
softwarecapital
dc3faa50e2d47eff1063e38206f5459812bf53bf
1,261
cpp
C++
20181001/E2.cpp
webturing/NOIP2018FinalCamp
aef2945377fab154a916edcde6f300b53619430d
[ "MIT" ]
null
null
null
20181001/E2.cpp
webturing/NOIP2018FinalCamp
aef2945377fab154a916edcde6f300b53619430d
[ "MIT" ]
null
null
null
20181001/E2.cpp
webturing/NOIP2018FinalCamp
aef2945377fab154a916edcde6f300b53619430d
[ "MIT" ]
null
null
null
// // Created by jal on 18-10-1. // #include <bits/stdc++.h> using namespace std; struct Z{ int width,height; }; int main(){ int T; cin >> T; while(T--){ int n; cin >> n; vector<Z>v(n); for (int i = 0; i <n ; ++i) { cin >> v[i].width >> v[i].height; }...
22.122807
49
0.294211
webturing
dc418ffb17fffddc5ffa0a498c5776e56c9f09ad
1,509
hpp
C++
include/game/skirmish/gui/mapeditortoolbar.hpp
namelessvoid/qrwar
bbc4036cd3bab6b0edcaccbc95286379ef51f12b
[ "MIT" ]
3
2015-03-28T02:51:58.000Z
2018-11-08T16:49:53.000Z
include/game/skirmish/gui/mapeditortoolbar.hpp
namelessvoid/qrwar
bbc4036cd3bab6b0edcaccbc95286379ef51f12b
[ "MIT" ]
39
2015-05-18T08:29:16.000Z
2020-07-18T21:17:44.000Z
include/game/skirmish/gui/mapeditortoolbar.hpp
namelessvoid/qrwar
bbc4036cd3bab6b0edcaccbc95286379ef51f12b
[ "MIT" ]
null
null
null
#ifndef QRW_MAPEDITORTOOLBAR_HPP #define QRW_MAPEDITORTOOLBAR_HPP #include "gui/ng/tabwidget.hpp" #include "engine/terraintypes.hpp" #include "game/skirmish/structure.hpp" namespace namelessgui { class Window; class LineInput; } namespace qrw { class MapEditorToolBar : public namelessgui::TabWidget { public: MapE...
27.944444
111
0.817097
namelessvoid
dc41fd851fb3d9a94fbc9c94d5b0b1a240e89e5c
1,075
hpp
C++
include/tone_mapping.hpp
ecarpita93/HPC_projet_1
a2c00e056c03227711c43cf2ad23d75c6afbe698
[ "Xnet", "X11" ]
null
null
null
include/tone_mapping.hpp
ecarpita93/HPC_projet_1
a2c00e056c03227711c43cf2ad23d75c6afbe698
[ "Xnet", "X11" ]
null
null
null
include/tone_mapping.hpp
ecarpita93/HPC_projet_1
a2c00e056c03227711c43cf2ad23d75c6afbe698
[ "Xnet", "X11" ]
null
null
null
/* PICCANTE The hottest HDR imaging library! http://vcg.isti.cnr.it/piccante Copyright (C) 2014 Visual Computing Laboratory - ISTI CNR http://vcg.isti.cnr.it First author: Francesco Banterle This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed ...
27.564103
67
0.8
ecarpita93
dc42a133f14c31def76e6448727999f2a65af4eb
5,337
cpp
C++
modules/trustchain/test/test_actions_usergroupremoval.cpp
TankerHQ/sdk-native
5d9eb7c2048fdefae230590a3110e583f08c2c49
[ "Apache-2.0" ]
19
2018-12-05T12:18:02.000Z
2021-07-13T07:33:22.000Z
modules/trustchain/test/test_actions_usergroupremoval.cpp
TankerHQ/sdk-native
5d9eb7c2048fdefae230590a3110e583f08c2c49
[ "Apache-2.0" ]
3
2020-03-16T15:52:06.000Z
2020-08-01T11:14:30.000Z
modules/trustchain/test/test_actions_usergroupremoval.cpp
TankerHQ/sdk-native
5d9eb7c2048fdefae230590a3110e583f08c2c49
[ "Apache-2.0" ]
3
2020-01-07T09:55:32.000Z
2020-08-01T01:29:28.000Z
#include <Tanker/Trustchain/Actions/UserGroupRemoval.hpp> #include <Tanker/Crypto/Crypto.hpp> #include <Tanker/Serialization/Serialization.hpp> #include <Tanker/Trustchain/UserId.hpp> #include <Helpers/Buffers.hpp> #include <doctest/doctest.h> using namespace Tanker; using namespace Tanker::Trustchain; using namesp...
43.390244
79
0.606333
TankerHQ
dc44fa1aff13c5bdcf4b0e194edc9a04c4569226
16,901
cxx
C++
Common/DataModel/Testing/Cxx/UnitTestTriangleIntersection.cxx
inviCRO/VTK
a2dc2e79d4ecb8f6da900535b32e1a2a702c7f48
[ "BSD-3-Clause" ]
null
null
null
Common/DataModel/Testing/Cxx/UnitTestTriangleIntersection.cxx
inviCRO/VTK
a2dc2e79d4ecb8f6da900535b32e1a2a702c7f48
[ "BSD-3-Clause" ]
null
null
null
Common/DataModel/Testing/Cxx/UnitTestTriangleIntersection.cxx
inviCRO/VTK
a2dc2e79d4ecb8f6da900535b32e1a2a702c7f48
[ "BSD-3-Clause" ]
null
null
null
/*========================================================================= Program: Visualization Toolkit Module: UnitTestTriangleIntersection.cxx Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen All rights reserved. See Copyright.txt or http://www.kitware.com/Copyright.htm for details. T...
26.955343
101
0.588486
inviCRO
dc47eda91c7feef53ea3f31437a01afb4b2f2e59
3,123
c++
C++
chua/chuaHand.c++
camilleg/vss
27f1c8f73f8d7ef2d4e5de077e4b2ed7e4f72803
[ "MIT" ]
null
null
null
chua/chuaHand.c++
camilleg/vss
27f1c8f73f8d7ef2d4e5de077e4b2ed7e4f72803
[ "MIT" ]
null
null
null
chua/chuaHand.c++
camilleg/vss
27f1c8f73f8d7ef2d4e5de077e4b2ed7e4f72803
[ "MIT" ]
null
null
null
#include "chua.h" //=========================================================================== // construction // chuaHand::chuaHand(chuaAlg * alg): VHandler( alg ) { setTypeName("chuaHand"); } //=========================================================================== // receiveMessage // int chuaHand::rece...
17.544944
90
0.574448
camilleg
dc4b268d669d8fc4c8222549e7d4385cc4124de2
643
cpp
C++
core/src/chr/linux/system/SystemManager.cpp
arielm/chronotext-cross
e3fafbd4b688797c3dfa39b1d7b2cfecb90c2297
[ "MIT" ]
23
2015-07-18T14:07:08.000Z
2022-01-03T10:31:56.000Z
core/src/chr/linux/system/SystemManager.cpp
arielm/chronotext-cross
e3fafbd4b688797c3dfa39b1d7b2cfecb90c2297
[ "MIT" ]
null
null
null
core/src/chr/linux/system/SystemManager.cpp
arielm/chronotext-cross
e3fafbd4b688797c3dfa39b1d7b2cfecb90c2297
[ "MIT" ]
6
2015-09-17T17:56:47.000Z
2018-10-31T13:54:13.000Z
#include "chr/rpi64/system/SystemManager.h" #include "chr/cross/Context.h" using namespace std; namespace chr { namespace system { void Manager::setup(const InitInfo &initInfo) { updateInfo(); LOGI << "SYSTEM INFO: " << info << endl; // LOG: VERBOSE } // --- void Manager::update...
16.075
62
0.542768
arielm
dc4dd1985196010d42575e37e3742f67d91aa056
5,615
hpp
C++
Tools/STM32FW/STM32Cube_FW_F7_V1.16.2/Projects/STM32756G_EVAL/Demonstrations/TouchGFX/Gui/gui/include/gui/common/CollapsibleMenu.hpp
ramkumarkoppu/NUCLEO-F767ZI-ESW
85e129d71ee8eccbd0b94b5e07e75b6b91679ee8
[ "MIT" ]
null
null
null
Tools/STM32FW/STM32Cube_FW_F7_V1.16.2/Projects/STM32756G_EVAL/Demonstrations/TouchGFX/Gui/gui/include/gui/common/CollapsibleMenu.hpp
ramkumarkoppu/NUCLEO-F767ZI-ESW
85e129d71ee8eccbd0b94b5e07e75b6b91679ee8
[ "MIT" ]
null
null
null
Tools/STM32FW/STM32Cube_FW_F7_V1.16.2/Projects/STM32756G_EVAL/Demonstrations/TouchGFX/Gui/gui/include/gui/common/CollapsibleMenu.hpp
ramkumarkoppu/NUCLEO-F767ZI-ESW
85e129d71ee8eccbd0b94b5e07e75b6b91679ee8
[ "MIT" ]
null
null
null
/** ****************************************************************************** * This file is part of the TouchGFX 4.10.0 distribution. * * @attention * * Copyright (c) 2018 STMicroelectronics. * All rights reserved. * * This software is licensed under terms that can be found in the LICENSE file ...
27.52451
129
0.654853
ramkumarkoppu
dc4dfed788247a38b02d8f4dbb87e244bcdba7ac
4,209
cpp
C++
bcos-framework/test/unittests/libutilities/DataConvertUtilityTest.cpp
xueying4402/FISCO-BCOS
737e08752e8904c7c24e3737f8f46bf5327ef792
[ "Apache-2.0" ]
null
null
null
bcos-framework/test/unittests/libutilities/DataConvertUtilityTest.cpp
xueying4402/FISCO-BCOS
737e08752e8904c7c24e3737f8f46bf5327ef792
[ "Apache-2.0" ]
267
2021-03-01T02:12:17.000Z
2021-09-17T08:18:34.000Z
bcos-framework/test/unittests/libutilities/DataConvertUtilityTest.cpp
xueying4402/FISCO-BCOS
737e08752e8904c7c24e3737f8f46bf5327ef792
[ "Apache-2.0" ]
9
2021-02-22T03:47:01.000Z
2021-12-06T06:41:02.000Z
/** * Copyright (C) 2021 FISCO BCOS. * SPDX-License-Identifier: Apache-2.0 * 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 * * Un...
31.886364
78
0.673319
xueying4402
dc4ee9c7f164aac61a34a7a623e1831aa3b92000
3,120
cpp
C++
Source/JavaScriptCore/runtime/ProxyRevoke.cpp
ijsf/DeniseEmbeddableWebKit
57dfc6783d60f8f59b7129874e60f84d8c8556c9
[ "BSD-3-Clause" ]
null
null
null
Source/JavaScriptCore/runtime/ProxyRevoke.cpp
ijsf/DeniseEmbeddableWebKit
57dfc6783d60f8f59b7129874e60f84d8c8556c9
[ "BSD-3-Clause" ]
9
2020-04-18T18:47:18.000Z
2020-04-18T18:52:41.000Z
Source/JavaScriptCore/runtime/ProxyRevoke.cpp
ijsf/DeniseEmbeddableWebKit
57dfc6783d60f8f59b7129874e60f84d8c8556c9
[ "BSD-3-Clause" ]
null
null
null
/* * Copyright (C) 2016 Apple 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 a...
35.454545
123
0.741346
ijsf
dc51289cbdcf103f28b73f64e112d42f76a95bad
3,521
cc
C++
sstmac/software/launch/hostname_task_mapper.cc
jpkenny/sst-macro
bcc1f43034281885104962586d8b104df84b58bd
[ "BSD-Source-Code" ]
20
2017-01-26T09:28:23.000Z
2022-01-17T11:31:55.000Z
sstmac/software/launch/hostname_task_mapper.cc
jpkenny/sst-macro
bcc1f43034281885104962586d8b104df84b58bd
[ "BSD-Source-Code" ]
542
2016-03-29T22:50:58.000Z
2022-03-22T20:14:08.000Z
sstmac/software/launch/hostname_task_mapper.cc
jpkenny/sst-macro
bcc1f43034281885104962586d8b104df84b58bd
[ "BSD-Source-Code" ]
36
2016-03-10T21:33:54.000Z
2021-12-01T07:44:12.000Z
/** Copyright 2009-2021 National Technology and Engineering Solutions of Sandia, LLC (NTESS). Under the terms of Contract DE-NA-0003525, the U.S. Government retains certain rights in this software. Sandia National Laboratories is a multimission laboratory managed and operated by National Technology and Engineering...
32.906542
85
0.753763
jpkenny
dc51818d30ffbe1d0c4b6d5226520b875a8d3a30
12,916
cc
C++
CarLife-Vehicle-Lib/LibSource/protobuf/cc/src/CarlifeTTSInitProto.pb.cc
zhiqiang-hu/apollo-DuerOS
678fd7480f41a91a363752e07d710f2a397024e9
[ "Apache-2.0" ]
591
2017-12-30T01:46:52.000Z
2022-03-31T06:26:01.000Z
CarLife-Vehicle-Lib/LibSource/protobuf/cc/src/CarlifeTTSInitProto.pb.cc
zhiqiang-hu/apollo-DuerOS
678fd7480f41a91a363752e07d710f2a397024e9
[ "Apache-2.0" ]
26
2018-01-03T07:57:42.000Z
2022-02-22T09:44:19.000Z
CarLife-Vehicle-Lib/LibSource/protobuf/cc/src/CarlifeTTSInitProto.pb.cc
zhiqiang-hu/apollo-DuerOS
678fd7480f41a91a363752e07d710f2a397024e9
[ "Apache-2.0" ]
354
2018-01-02T09:40:47.000Z
2022-03-20T14:03:50.000Z
// Generated by the protocol buffer compiler. DO NOT EDIT! // source: CarlifeTTSInitProto.proto #define INTERNAL_SUPPRESS_PROTOBUF_FIELD_DEPRECATION #include "CarlifeTTSInitProto.pb.h" #include <algorithm> #include <google/protobuf/stubs/common.h> #include <google/protobuf/stubs/once.h> #include <google/protobuf/io...
32.209476
111
0.702694
zhiqiang-hu
dc5261caa2a7fd200bbd53025794ad1ab7d34039
4,916
cc
C++
src/OpenVolumeMesh/Mesh/TetrahedralMeshIterators.cc
Rupemgera/VtkMeshFrame
abcaf84639d186756c06de73f1d6b4664566da14
[ "MIT" ]
null
null
null
src/OpenVolumeMesh/Mesh/TetrahedralMeshIterators.cc
Rupemgera/VtkMeshFrame
abcaf84639d186756c06de73f1d6b4664566da14
[ "MIT" ]
null
null
null
src/OpenVolumeMesh/Mesh/TetrahedralMeshIterators.cc
Rupemgera/VtkMeshFrame
abcaf84639d186756c06de73f1d6b4664566da14
[ "MIT" ]
null
null
null
/*===========================================================================*\ * * * OpenVolumeMesh * * Copyright (C) 2011 by Computer Graphics Group, RWTH Aachen * * ...
39.645161
98
0.487185
Rupemgera
dc56e9942a39babd11a255c4802fd9ce4388af59
744
cpp
C++
10339 Watching Watches.cpp
zihadboss/UVA-Solutions
020fdcb09da79dc0a0411b04026ce3617c09cd27
[ "Apache-2.0" ]
86
2016-01-20T11:36:50.000Z
2022-03-06T19:43:14.000Z
10339 Watching Watches.cpp
Mehedishihab/UVA-Solutions
474fe3d9d9ba574b97fd40ca5abb22ada95654a1
[ "Apache-2.0" ]
null
null
null
10339 Watching Watches.cpp
Mehedishihab/UVA-Solutions
474fe3d9d9ba574b97fd40ca5abb22ada95654a1
[ "Apache-2.0" ]
113
2015-12-04T06:40:57.000Z
2022-02-11T02:14:28.000Z
#include <cstdio> const unsigned int FullDaySeconds = 86400; const unsigned int HalfDaySeconds = 43200; const unsigned int SecondsInMin = 60; const unsigned int SecondsInHour = 3600; const unsigned int HalfDayMin = HalfDaySeconds / SecondsInMin; int main() { int k, m; while (scanf("%d%d", &k, &m) == 2) ...
28.615385
94
0.608871
zihadboss
dc58114319770ef4ff7ceeea772ad9ecac01e37a
72
cpp
C++
tests/Issue223.cpp
galorojo/cppinsights
52ecab4ddd8e36fb99893551cf0fb8b5d58589f2
[ "MIT" ]
1,853
2018-05-13T21:49:17.000Z
2022-03-30T10:34:45.000Z
tests/Issue223.cpp
tiandaoafei/cppinsights
af78ac299121354101a5e506dafccaac95d27a77
[ "MIT" ]
398
2018-05-15T14:48:51.000Z
2022-03-24T12:14:33.000Z
tests/Issue223.cpp
SammyEnigma/cppinsights
c984b8e68139bbcc244c094fd2463eeced8fd997
[ "MIT" ]
104
2018-05-15T04:00:59.000Z
2022-03-17T02:04:15.000Z
#include <cstdio> int main() { float f = (float)(3.0); return f; }
9
25
0.555556
galorojo
dc58bf4b426ca4640685fbcc690bb6970943c3db
3,922
cpp
C++
Userland/Libraries/LibWeb/WebAssembly/WebAssemblyTableConstructor.cpp
dykatz/serenity
3ad6d87a4518732c8e181c0cf1edfab35716b92f
[ "BSD-2-Clause" ]
null
null
null
Userland/Libraries/LibWeb/WebAssembly/WebAssemblyTableConstructor.cpp
dykatz/serenity
3ad6d87a4518732c8e181c0cf1edfab35716b92f
[ "BSD-2-Clause" ]
1
2020-06-21T23:22:11.000Z
2020-06-21T23:22:11.000Z
Userland/Libraries/LibWeb/WebAssembly/WebAssemblyTableConstructor.cpp
dykatz/serenity
3ad6d87a4518732c8e181c0cf1edfab35716b92f
[ "BSD-2-Clause" ]
null
null
null
/* * Copyright (c) 2021, Ali Mohammad Pur <mpfard@serenityos.org> * * SPDX-License-Identifier: BSD-2-Clause */ #include <LibJS/Runtime/GlobalObject.h> #include <LibJS/Runtime/TypedArray.h> #include <LibWeb/Bindings/WindowObject.h> #include <LibWeb/WebAssembly/WebAssemblyObject.h> #include <LibWeb/WebAssembly/WebAs...
34.707965
146
0.708312
dykatz
dc594676001d1b5a27d58df6d29f5079a28d674a
6,145
cc
C++
mediapipe/calculators/tensor/image_to_tensor_utils.cc
Ensteinjun/mediapipe
38be2ec58f2a1687f4ffca287094c7bbd7791f58
[ "Apache-2.0" ]
2
2021-12-02T02:14:31.000Z
2021-12-02T02:16:24.000Z
mediapipe/calculators/tensor/image_to_tensor_utils.cc
Ensteinjun/mediapipe
38be2ec58f2a1687f4ffca287094c7bbd7791f58
[ "Apache-2.0" ]
null
null
null
mediapipe/calculators/tensor/image_to_tensor_utils.cc
Ensteinjun/mediapipe
38be2ec58f2a1687f4ffca287094c7bbd7791f58
[ "Apache-2.0" ]
3
2021-01-19T14:40:59.000Z
2021-06-09T13:43:49.000Z
// Copyright 2020 The MediaPipe Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or a...
34.717514
80
0.603417
Ensteinjun
dc5984d9ec31eb916e4170a8c75c13712a9bd72f
4,337
cpp
C++
include/delfem2/gridcube.cpp
fixedchaos/delfem2
c8a7a000ec6a51c44bc45bc6ad0d0106d9315ade
[ "MIT" ]
null
null
null
include/delfem2/gridcube.cpp
fixedchaos/delfem2
c8a7a000ec6a51c44bc45bc6ad0d0106d9315ade
[ "MIT" ]
null
null
null
include/delfem2/gridcube.cpp
fixedchaos/delfem2
c8a7a000ec6a51c44bc45bc6ad0d0106d9315ade
[ "MIT" ]
null
null
null
/* * Copyright (c) 2020 Nobuyuki Umetani * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #include <stdio.h> #include "delfem2/vec3.h" #include "delfem2/gridcube.h" void delfem2::Pick_CubeGrid (int& icube_pic, int& iface_pic, cons...
27.27673
82
0.540927
fixedchaos
dc59cf9470e4a16becc9a0f67ae894a2e0dd3ddf
1,292
cpp
C++
Sem3/DS/L5/A1.cpp
ashiishjn/MIT-LAB
8c4fcdca391a9cecf60114cd3a95f35673b7ec21
[ "MIT" ]
1
2022-01-28T05:12:28.000Z
2022-01-28T05:12:28.000Z
Sem3/DS/L5/A1.cpp
ashiishjn/MIT-LAB
8c4fcdca391a9cecf60114cd3a95f35673b7ec21
[ "MIT" ]
null
null
null
Sem3/DS/L5/A1.cpp
ashiishjn/MIT-LAB
8c4fcdca391a9cecf60114cd3a95f35673b7ec21
[ "MIT" ]
null
null
null
// Program to implement queue using Stack #include <iostream> using namespace std; const int n=3; class Stack{ private: int arr[n]; int top; public: Stack(){ top=-1;} bool isEmpty(){ return (top==-1);} bool isFull(){ return (top+1==n);} void push(int elem)...
16.15
41
0.414861
ashiishjn
dc5b279e90390b6256d859ceabe114a2e22cfbb3
4,562
cpp
C++
src/libtrio/tabix_streamer.cpp
StephenTanner/gvcftools
5702a67fe5e744065b5462760b6c0bba38d8d9ea
[ "BSL-1.0" ]
26
2015-11-30T18:53:11.000Z
2021-11-12T07:48:37.000Z
src/libtrio/tabix_streamer.cpp
StephenTanner/gvcftools
5702a67fe5e744065b5462760b6c0bba38d8d9ea
[ "BSL-1.0" ]
5
2015-08-06T18:32:55.000Z
2020-03-08T18:13:22.000Z
src/libtrio/tabix_streamer.cpp
ctsa/gvcftools
7e854392c94c63410a846d29a97b95a6f1435576
[ "BSL-1.0" ]
8
2015-07-20T09:53:07.000Z
2018-06-10T09:55:31.000Z
// -*- mode: c++; indent-tabs-mode: nil; -*- // // Copyright (c) 2009-2012 Illumina, Inc. // // 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 limit...
23.040404
85
0.62363
StephenTanner
dc5baa217b6b6c04b298f8ca44a665c410516f71
1,893
cpp
C++
OsakaEngine/RPGFactory.cpp
osakahq/OsakaEngine
47dd0ec5b67a176c552441a25168ecb48b52e14b
[ "Zlib", "MIT" ]
2
2016-04-04T06:00:28.000Z
2016-04-18T15:39:38.000Z
OsakaEngine/RPGFactory.cpp
osakahq/OsakaEngine
47dd0ec5b67a176c552441a25168ecb48b52e14b
[ "Zlib", "MIT" ]
null
null
null
OsakaEngine/RPGFactory.cpp
osakahq/OsakaEngine
47dd0ec5b67a176c552441a25168ecb48b52e14b
[ "Zlib", "MIT" ]
null
null
null
#include "stdafx.h" #include "GameData.h" #include "GameDataParams.h" #include "GameSession.h" #include "GameSessionManager.h" #include "RPGApplication.h" #include "SDLLib.h" #include "Debug.h" #include "TextureManager.h" #include "Factory.h" #include "Image.h" #include "FadeInFadeOutEffect.h" #include "F...
28.681818
102
0.684099
osakahq
dc622070c2647bf6b946adf8810e8776cca90a3e
7,592
cpp
C++
core/CU/CodeDiscovery.cpp
RL-Bin/RLBin
621305a1c8149728e8b5d6ded75dbd81e00d7037
[ "BSD-3-Clause" ]
null
null
null
core/CU/CodeDiscovery.cpp
RL-Bin/RLBin
621305a1c8149728e8b5d6ded75dbd81e00d7037
[ "BSD-3-Clause" ]
null
null
null
core/CU/CodeDiscovery.cpp
RL-Bin/RLBin
621305a1c8149728e8b5d6ded75dbd81e00d7037
[ "BSD-3-Clause" ]
null
null
null
/** * @file CodeDiscovery.cpp * @brief Defines the functions used to handle discovery of new code. */ #include "..\include\CU\CU.h" #include "..\include\TMU\TMU.h" #include "..\include\IMU\IMU.h" #include "..\include\SubUnits\Modules\Modules.h" #include "..\include\DataStructs\DisTable\DisTable.h" #include "..\i...
31.242798
185
0.674262
RL-Bin
dc659e1bd88a8f1726a38f6c3fefda7acb1a3843
1,984
cpp
C++
graph/course_schedule.cpp
zm66260/Data_Structure_and_Algorithms
f3e6d60a9f0ddf1a8fe943dedc089172bc8c833e
[ "MIT" ]
null
null
null
graph/course_schedule.cpp
zm66260/Data_Structure_and_Algorithms
f3e6d60a9f0ddf1a8fe943dedc089172bc8c833e
[ "MIT" ]
null
null
null
graph/course_schedule.cpp
zm66260/Data_Structure_and_Algorithms
f3e6d60a9f0ddf1a8fe943dedc089172bc8c833e
[ "MIT" ]
null
null
null
// 207 course schedule // There are a total of n courses you have to take, labeled from 0 to n-1. // Some courses may have prerequisites, for example to take course 0 you have to first take course 1, which is expressed as a pair: [0,1] // Given the total number of courses and a list of prerequisite pairs, is it ...
32
138
0.568044
zm66260
dc66d7b73432741490a9780e2a98854d4c142a49
7,299
cc
C++
mindspore/ccsrc/frontend/parallel/ops_info/dsd_matmul_info.cc
httpsgithu/mindspore
c29d6bb764e233b427319cb89ba79e420f1e2c64
[ "Apache-2.0" ]
1
2022-02-23T09:13:43.000Z
2022-02-23T09:13:43.000Z
mindspore/ccsrc/frontend/parallel/ops_info/dsd_matmul_info.cc
949144093/mindspore
c29d6bb764e233b427319cb89ba79e420f1e2c64
[ "Apache-2.0" ]
null
null
null
mindspore/ccsrc/frontend/parallel/ops_info/dsd_matmul_info.cc
949144093/mindspore
c29d6bb764e233b427319cb89ba79e420f1e2c64
[ "Apache-2.0" ]
null
null
null
/** * Copyright 2021 Huawei Technologies Co., Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law...
38.21466
118
0.662145
httpsgithu
dc67feed908bae6441f1bdd05d3cfac395d6faea
115,823
cpp
C++
aws-cpp-sdk-config/source/ConfigServiceClient.cpp
bswhite1/aws-sdk-cpp
a050168cf8f7f6ea920d52894eaad186953cb27b
[ "Apache-2.0" ]
null
null
null
aws-cpp-sdk-config/source/ConfigServiceClient.cpp
bswhite1/aws-sdk-cpp
a050168cf8f7f6ea920d52894eaad186953cb27b
[ "Apache-2.0" ]
null
null
null
aws-cpp-sdk-config/source/ConfigServiceClient.cpp
bswhite1/aws-sdk-cpp
a050168cf8f7f6ea920d52894eaad186953cb27b
[ "Apache-2.0" ]
null
null
null
/* * Copyright 2010-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" fil...
50.37973
310
0.803994
bswhite1
dc68af6d02d5f23d341b045a9efe304ea9f9de4e
7,634
cpp
C++
Cores/Mednafen/mednafen-1.21/src/pce/input.cpp
werminghoff/Provenance
de61b4a64a3eb8e2774e0a8ed53488c6c7aa6cb2
[ "BSD-3-Clause" ]
3,459
2015-01-07T14:07:09.000Z
2022-03-25T03:51:10.000Z
Cores/Mednafen/mednafen-1.21/src/pce/input.cpp
werminghoff/Provenance
de61b4a64a3eb8e2774e0a8ed53488c6c7aa6cb2
[ "BSD-3-Clause" ]
1,046
2018-03-24T17:56:16.000Z
2022-03-23T08:13:09.000Z
Cores/Mednafen/mednafen-1.21/src/pce/input.cpp
werminghoff/Provenance
de61b4a64a3eb8e2774e0a8ed53488c6c7aa6cb2
[ "BSD-3-Clause" ]
549
2015-01-07T14:07:15.000Z
2022-01-07T16:13:05.000Z
/* Mednafen - Multi-system Emulator * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distrib...
19.132832
157
0.679329
werminghoff
dc6b6d8e1e212cc59a4fde3d5e89cdb5e0a0aba9
22,038
cxx
C++
HLT/TPCLib/tracking-ca/AliHLTTPCCATrackParam.cxx
kagarner/AliRoot
4648616e4ecc903ad132252dd94f9eacf1c5ad16
[ "BSD-3-Clause" ]
null
null
null
HLT/TPCLib/tracking-ca/AliHLTTPCCATrackParam.cxx
kagarner/AliRoot
4648616e4ecc903ad132252dd94f9eacf1c5ad16
[ "BSD-3-Clause" ]
null
null
null
HLT/TPCLib/tracking-ca/AliHLTTPCCATrackParam.cxx
kagarner/AliRoot
4648616e4ecc903ad132252dd94f9eacf1c5ad16
[ "BSD-3-Clause" ]
null
null
null
// $Id$ // ************************************************************************** // This file is property of and copyright by the ALICE HLT Project * // ALICE Experiment at CERN, All rights reserved. * // * ...
29.902307
189
0.52591
kagarner
dc6c6f51a3f40e6a75d64f09955c7d156e1fbb1b
2,631
cpp
C++
src/error.cpp
CorvusPrudens/Cp
e5019e4faee705dadc2ddfb8530a518730276e96
[ "MIT" ]
null
null
null
src/error.cpp
CorvusPrudens/Cp
e5019e4faee705dadc2ddfb8530a518730276e96
[ "MIT" ]
null
null
null
src/error.cpp
CorvusPrudens/Cp
e5019e4faee705dadc2ddfb8530a518730276e96
[ "MIT" ]
null
null
null
#include <iostream> #include <fstream> #include <string> #include "error.h" #include "colors.h" using std::string; string get_line(string filename, int line) { std::ifstream file(filename); int i = 0; char c; while (i < line) { file.read(&c, 1); if (file.eof()) { return "???"; } if...
23.702703
90
0.522235
CorvusPrudens
dc6d247adcafe303652358248062182fba6f9b3a
11,630
cc
C++
ash/app_list/app_list_item_view.cc
Scopetta197/chromium
b7bf8e39baadfd9089de2ebdc0c5d982de4a9820
[ "BSD-3-Clause" ]
212
2015-01-31T11:55:58.000Z
2022-02-22T06:35:11.000Z
ash/app_list/app_list_item_view.cc
Scopetta197/chromium
b7bf8e39baadfd9089de2ebdc0c5d982de4a9820
[ "BSD-3-Clause" ]
5
2015-03-27T14:29:23.000Z
2019-09-25T13:23:12.000Z
ash/app_list/app_list_item_view.cc
Scopetta197/chromium
b7bf8e39baadfd9089de2ebdc0c5d982de4a9820
[ "BSD-3-Clause" ]
221
2015-01-07T06:21:24.000Z
2022-02-11T02:51:12.000Z
// 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. #include "ash/app_list/app_list_item_view.h" #include "ash/app_list/app_list_item_model.h" #include "ash/app_list/app_list_model_view.h" #include "as...
29.221106
80
0.701978
Scopetta197
dc6dfc129d2e7eafc3d2eef9a630aac39b85a860
1,748
cpp
C++
module/3rdParty/easyunit/src/testpartresult.cpp
10notechnologies/troikajs_public
59f2891395e724361463f5fe10d90a9e42702a6c
[ "MIT" ]
6
2019-01-12T13:56:32.000Z
2019-10-07T22:21:58.000Z
module/3rdParty/easyunit/src/testpartresult.cpp
10notechnologies/troikajs_public
59f2891395e724361463f5fe10d90a9e42702a6c
[ "MIT" ]
null
null
null
module/3rdParty/easyunit/src/testpartresult.cpp
10notechnologies/troikajs_public
59f2891395e724361463f5fe10d90a9e42702a6c
[ "MIT" ]
1
2019-07-04T01:53:48.000Z
2019-07-04T01:53:48.000Z
/* EasyUnit : Simple C++ Unit testing framework Copyright (C) 2004 Barthelemy Dagenais This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your opt...
25.705882
74
0.724828
10notechnologies
dc6fe0903328ba85281e9d7496a6560e85c85ae9
129,426
cpp
C++
code/addons/dynui/scripting/deargui.cpp
Nechrito/nebula
6c7ef27ab1374d3f751d866500729524f72a0c87
[ "BSD-2-Clause" ]
null
null
null
code/addons/dynui/scripting/deargui.cpp
Nechrito/nebula
6c7ef27ab1374d3f751d866500729524f72a0c87
[ "BSD-2-Clause" ]
null
null
null
code/addons/dynui/scripting/deargui.cpp
Nechrito/nebula
6c7ef27ab1374d3f751d866500729524f72a0c87
[ "BSD-2-Clause" ]
null
null
null
#include <pybind11/pybind11.h> #include <pybind11/functional.h> #include <pybind11/embed.h> #include <pybind11/stl.h> #include <limits> #include "imgui.h" #include "imgui_internal.h" namespace py = pybind11; template<typename T> void template_ImVector(py::module &module, const char* name) { py::class_< ImVector<T...
47.184105
205
0.685535
Nechrito
dc6fe7029108ad5e649c87a8c5d0b7be3d7d4962
1,660
hpp
C++
dsss/string_sorting/sequential/mergesort.hpp
kurpicz/dsss
ac50a22b1beec1d8613a6cd868798426352305c8
[ "BSD-2-Clause" ]
3
2018-10-24T22:15:17.000Z
2019-09-21T22:56:05.000Z
dsss/string_sorting/sequential/mergesort.hpp
kurpicz/dsss
ac50a22b1beec1d8613a6cd868798426352305c8
[ "BSD-2-Clause" ]
null
null
null
dsss/string_sorting/sequential/mergesort.hpp
kurpicz/dsss
ac50a22b1beec1d8613a6cd868798426352305c8
[ "BSD-2-Clause" ]
null
null
null
/******************************************************************************* * string_sorting/sequential/mergesort.hpp * * Copyright (C) 2018 Florian Kurpicz <florian.kurpicz@tu-dortmund.de> * * All rights reserved. Published under the BSD-2 license in the LICENSE file. ***************************************...
37.727273
80
0.66988
kurpicz
dc700531c2e639f3edca1b5f7027feb3bdcbeb14
1,428
cpp
C++
src/library/tactic/occurrences.cpp
JLimperg/lean
81cabd7b5a8f789633639f5fba64b45d31e37259
[ "Apache-2.0" ]
2,232
2015-01-01T18:20:29.000Z
2022-03-30T02:35:50.000Z
src/library/tactic/occurrences.cpp
JLimperg/lean
81cabd7b5a8f789633639f5fba64b45d31e37259
[ "Apache-2.0" ]
1,187
2015-01-06T05:18:44.000Z
2019-10-31T18:45:42.000Z
src/library/tactic/occurrences.cpp
JLimperg/lean
81cabd7b5a8f789633639f5fba64b45d31e37259
[ "Apache-2.0" ]
306
2015-01-16T22:30:27.000Z
2022-03-28T02:55:51.000Z
/* Copyright (c) 2016 Microsoft Corporation. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Author: Leonardo de Moura */ #include "library/vm/vm_list.h" #include "library/vm/vm_nat.h" #include "library/tactic/occurrences.h" namespace lean { bool occurrences::contains(unsigned...
29.75
93
0.689076
JLimperg
dc72c32ec5e28eed8c75f5ecd02d67bf6d52ecb5
4,342
cpp
C++
app/src/main/jni/nativeCode/common/texture.cpp
anandmuralidhar24/FloatTextureAndroid
53262deafc6e3a160134adce54c1e4e9c0385748
[ "Apache-2.0" ]
4
2018-01-16T09:50:32.000Z
2022-01-30T19:13:33.000Z
app/src/main/jni/nativeCode/common/texture.cpp
anandmuralidhar24/FloatTextureAndroid
53262deafc6e3a160134adce54c1e4e9c0385748
[ "Apache-2.0" ]
null
null
null
app/src/main/jni/nativeCode/common/texture.cpp
anandmuralidhar24/FloatTextureAndroid
53262deafc6e3a160134adce54c1e4e9c0385748
[ "Apache-2.0" ]
3
2017-11-05T00:28:54.000Z
2019-11-18T07:04:58.000Z
/* * Copyright 2016 Anand Muralidhar * * 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 applica...
32.893939
97
0.669277
anandmuralidhar24
dc72cc28af2009cb084fb7a0b33c32b378053f81
4,733
cpp
C++
qxhexsignature.cpp
shield-endpoint/DIE-engine
ee556330ed953f042c06bb3c35e6af39dbf26e12
[ "MIT" ]
1
2021-10-15T02:21:37.000Z
2021-10-15T02:21:37.000Z
qxhexsignature.cpp
dzzie/DIE-engine
ca068f5ed55923b7e196d991016a6850355d6b72
[ "MIT" ]
null
null
null
qxhexsignature.cpp
dzzie/DIE-engine
ca068f5ed55923b7e196d991016a6850355d6b72
[ "MIT" ]
1
2020-01-10T12:27:40.000Z
2020-01-10T12:27:40.000Z
// Copyright (c) 2012-2020 hors<horsicq@gmail.com> // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, mod...
26.740113
112
0.594971
shield-endpoint
dc73a1b8cc1f5f55967c6c729c3101549e96279a
770
hpp
C++
include/RED4ext/Types/generated/vehicle/GridDestructionEvent.hpp
Cyberpunk-Extended-Development-Team/RED4ext.SDK
2dc828c761d87a1b4235ce9ca4fbdf9fb4312fae
[ "MIT" ]
1
2021-02-01T23:07:50.000Z
2021-02-01T23:07:50.000Z
include/RED4ext/Types/generated/vehicle/GridDestructionEvent.hpp
Cyberpunk-Extended-Development-Team/RED4ext.SDK
2dc828c761d87a1b4235ce9ca4fbdf9fb4312fae
[ "MIT" ]
null
null
null
include/RED4ext/Types/generated/vehicle/GridDestructionEvent.hpp
Cyberpunk-Extended-Development-Team/RED4ext.SDK
2dc828c761d87a1b4235ce9ca4fbdf9fb4312fae
[ "MIT" ]
null
null
null
#pragma once // This file is generated from the Game's Reflection data #include <cstdint> #include <RED4ext/Common.hpp> #include <RED4ext/REDhash.hpp> #include <RED4ext/Types/SimpleTypes.hpp> #include <RED4ext/Types/generated/red/Event.hpp> namespace RED4ext { namespace vehicle { struct GridDestructionEvent : red::...
28.518519
71
0.762338
Cyberpunk-Extended-Development-Team
dc73fd316b78c0b620b38fb7bf44bb5771a3a896
5,056
cpp
C++
ivld/src/v20210903/model/PersonImageInfo.cpp
suluner/tencentcloud-sdk-cpp
a56c73cc3f488c4d1e10755704107bb15c5e000d
[ "Apache-2.0" ]
null
null
null
ivld/src/v20210903/model/PersonImageInfo.cpp
suluner/tencentcloud-sdk-cpp
a56c73cc3f488c4d1e10755704107bb15c5e000d
[ "Apache-2.0" ]
null
null
null
ivld/src/v20210903/model/PersonImageInfo.cpp
suluner/tencentcloud-sdk-cpp
a56c73cc3f488c4d1e10755704107bb15c5e000d
[ "Apache-2.0" ]
null
null
null
/* * 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 ...
27.78022
143
0.687896
suluner
dc75c43513f72450a0204906ce07ecd5c7badff3
85,035
cpp
C++
src/MeshData.cpp
yoshiya-usui/TetGen2Femtic
0faa9c2bd61e62cd89c2681d7c7899cd7b6267f6
[ "MIT" ]
1
2020-09-24T01:33:34.000Z
2020-09-24T01:33:34.000Z
src/MeshData.cpp
yoshiya-usui/TetGen2Femtic
0faa9c2bd61e62cd89c2681d7c7899cd7b6267f6
[ "MIT" ]
null
null
null
src/MeshData.cpp
yoshiya-usui/TetGen2Femtic
0faa9c2bd61e62cd89c2681d7c7899cd7b6267f6
[ "MIT" ]
null
null
null
//-------------------------------------------------------------------------- // MIT License // // Copyright (c) 2021 Yoshiya Usui // // 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 withou...
32.149338
227
0.656553
yoshiya-usui
dc76a32955e0a8b0f3fa9d5e5e79b88305f97136
3,898
cc
C++
libqpdf/SF_FlateLzwDecode.cc
m-holger/qpdf
f1a9ba0c622deee0ed05004949b34f0126b12b6a
[ "Apache-2.0" ]
null
null
null
libqpdf/SF_FlateLzwDecode.cc
m-holger/qpdf
f1a9ba0c622deee0ed05004949b34f0126b12b6a
[ "Apache-2.0" ]
3
2021-11-19T15:59:21.000Z
2021-12-10T20:44:33.000Z
libqpdf/SF_FlateLzwDecode.cc
m-holger/qpdf
f1a9ba0c622deee0ed05004949b34f0126b12b6a
[ "Apache-2.0" ]
null
null
null
#include <qpdf/SF_FlateLzwDecode.hh> #include <qpdf/Pl_Flate.hh> #include <qpdf/Pl_LZWDecoder.hh> #include <qpdf/Pl_PNGFilter.hh> #include <qpdf/Pl_TIFFPredictor.hh> #include <qpdf/QIntC.hh> #include <qpdf/QTC.hh> SF_FlateLzwDecode::SF_FlateLzwDecode(bool lzw) : lzw(lzw), // Initialize values to their default...
30.692913
78
0.54156
m-holger
dc77b17128099c39402ad53daaf4c9408540af2c
2,242
cpp
C++
src/ngfx/porting/vulkan/VKDescriptorSetLayoutCache.cpp
kamranrad1993/ngfx
eeef60e3419a88371a97e8bc3109d2b35b82cc89
[ "Apache-2.0", "MIT-0", "MIT" ]
12
2021-04-03T16:50:22.000Z
2022-03-18T07:14:14.000Z
src/ngfx/porting/vulkan/VKDescriptorSetLayoutCache.cpp
kamranrad1993/ngfx
eeef60e3419a88371a97e8bc3109d2b35b82cc89
[ "Apache-2.0", "MIT-0", "MIT" ]
6
2021-05-06T21:02:19.000Z
2022-02-14T11:57:27.000Z
src/ngfx/porting/vulkan/VKDescriptorSetLayoutCache.cpp
kamranrad1993/ngfx
eeef60e3419a88371a97e8bc3109d2b35b82cc89
[ "Apache-2.0", "MIT-0", "MIT" ]
5
2021-06-11T20:15:37.000Z
2022-03-18T07:14:21.000Z
/* * Copyright 2020 GoPro Inc. * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache Licens...
40.035714
79
0.739518
kamranrad1993
dc7826180d2298248c921297786559bb9a2f029a
24,435
cpp
C++
Code/UnitTests/FoundationTest/Containers/SmallArrayTest.cpp
asheraryam/ezEngine
bfe6d109b72d8fd6f13d043b11980796625c648e
[ "MIT" ]
null
null
null
Code/UnitTests/FoundationTest/Containers/SmallArrayTest.cpp
asheraryam/ezEngine
bfe6d109b72d8fd6f13d043b11980796625c648e
[ "MIT" ]
null
null
null
Code/UnitTests/FoundationTest/Containers/SmallArrayTest.cpp
asheraryam/ezEngine
bfe6d109b72d8fd6f13d043b11980796625c648e
[ "MIT" ]
null
null
null
#include <FoundationTestPCH.h> #include <Foundation/Containers/SmallArray.h> #include <Foundation/Memory/CommonAllocators.h> #include <Foundation/Strings/String.h> namespace SmallArrayTestDetail { class Dummy { public: int a; std::string s; Dummy() : a(0) , s("Test") { } Du...
24.781947
142
0.619767
asheraryam
dc799ad4bd4120e35fdc3585493978ce7d8b1cad
27,879
cpp
C++
CK2ToEU4/Source/EU4World/Country/Country.cpp
bavbeerhall/CK2ToEU4
a65edfb895b30e80af5bd7045dbfac7e2c5069e9
[ "MIT" ]
2
2020-04-25T15:14:10.000Z
2020-04-25T18:47:00.000Z
CK2ToEU4/Source/EU4World/Country/Country.cpp
bavbeerhall/CK2ToEU4
a65edfb895b30e80af5bd7045dbfac7e2c5069e9
[ "MIT" ]
null
null
null
CK2ToEU4/Source/EU4World/Country/Country.cpp
bavbeerhall/CK2ToEU4
a65edfb895b30e80af5bd7045dbfac7e2c5069e9
[ "MIT" ]
null
null
null
#include "Country.h" #include "../../CK2World/Characters/Character.h" #include "../../CK2World/Dynasties/Dynasty.h" #include "../../CK2World/Provinces/Province.h" #include "../../CK2World/Titles/Title.h" #include "../../Common/CommonFunctions.h" #include "../../Mappers/ColorScraper/ColorScraper.h" #include "../../Mappe...
37.930612
152
0.713225
bavbeerhall
dc80da7254804763fce455be71df9c82d3fa0116
9,775
cpp
C++
TurboX-Engine/TurboX-Engine/ModuleCamera3D.cpp
moon-funding/TurboX-Engine
0ebcc94f0c93fa0a5d1f88f8f46e90df28b5c8a6
[ "MIT", "Zlib", "Apache-2.0", "BSD-3-Clause" ]
null
null
null
TurboX-Engine/TurboX-Engine/ModuleCamera3D.cpp
moon-funding/TurboX-Engine
0ebcc94f0c93fa0a5d1f88f8f46e90df28b5c8a6
[ "MIT", "Zlib", "Apache-2.0", "BSD-3-Clause" ]
null
null
null
TurboX-Engine/TurboX-Engine/ModuleCamera3D.cpp
moon-funding/TurboX-Engine
0ebcc94f0c93fa0a5d1f88f8f46e90df28b5c8a6
[ "MIT", "Zlib", "Apache-2.0", "BSD-3-Clause" ]
null
null
null
#include "Globals.h" #include "Application.h" #include "ModuleCamera3D.h" #include "ModuleInput.h" #include "ModuleConsole.h" #include "ModuleScene.h" #include "ModuleEditor.h" #include "W_Hierarchy.h" #include "GameObject.h" #include "MathGeoLib/MathGeoLib.h" #include "ModuleRenderer3D.h" #include "Component.h" #inclu...
26.854396
167
0.664041
moon-funding
dc80ece3beefae11d4ba4c319b468953c8074f26
3,276
hpp
C++
include/modprop/optim/SimpleConvergence.hpp
Humhu/modprop
0cff8240d5e1522f620de8004c22a74491a0c9fb
[ "AFL-3.0" ]
1
2017-11-10T00:54:53.000Z
2017-11-10T00:54:53.000Z
include/modprop/optim/SimpleConvergence.hpp
Humhu/modprop
0cff8240d5e1522f620de8004c22a74491a0c9fb
[ "AFL-3.0" ]
null
null
null
include/modprop/optim/SimpleConvergence.hpp
Humhu/modprop
0cff8240d5e1522f620de8004c22a74491a0c9fb
[ "AFL-3.0" ]
null
null
null
#pragma once #include "modprop/ModpropTypes.h" #include <ctime> #include <iostream> namespace percepto { struct SimpleConvergenceCriteria { // Max runtime (Inf) double maxRuntime; // Max number of function/gradient evaluations (0) unsigned int maxIterations; // Biggest single element delta must be less than (-...
26.634146
73
0.717949
Humhu
dc828f58df597655ea80bacd8e0cc247b02559e1
2,541
hpp
C++
Support/Modules/GSRoot/AsyncResult.hpp
graphisoft-python/TextEngine
20c2ff53877b20fdfe2cd51ce7abdab1ff676a70
[ "Apache-2.0" ]
3
2019-07-15T10:54:54.000Z
2020-01-25T08:24:51.000Z
Support/Modules/GSRoot/AsyncResult.hpp
graphisoft-python/GSRoot
008fac2c6bf601ca96e7096705e25b10ba4d3e75
[ "Apache-2.0" ]
null
null
null
Support/Modules/GSRoot/AsyncResult.hpp
graphisoft-python/GSRoot
008fac2c6bf601ca96e7096705e25b10ba4d3e75
[ "Apache-2.0" ]
1
2020-09-26T03:17:22.000Z
2020-09-26T03:17:22.000Z
// ***************************************************************************** // // Declaration of AsyncResult interface // // Module: GSRoot // Namespace: GS // Contact person: SN // // ***************************************************************************** #ifndef GS_ASYNCRESULT_HPP #define GS_ASYNCRESU...
27.322581
103
0.38961
graphisoft-python
dc84567633603b84e46cb221af36c2dc63a877b5
5,535
cc
C++
src/libmodelbox/engine/single_node.cc
fujl/modelbox
390541a87318bb6f8a37163668b439e5387f5d9a
[ "Apache-2.0" ]
1
2021-12-16T06:53:00.000Z
2021-12-16T06:53:00.000Z
src/libmodelbox/engine/single_node.cc
fujl/modelbox
390541a87318bb6f8a37163668b439e5387f5d9a
[ "Apache-2.0" ]
null
null
null
src/libmodelbox/engine/single_node.cc
fujl/modelbox
390541a87318bb6f8a37163668b439e5387f5d9a
[ "Apache-2.0" ]
1
2021-12-03T06:19:09.000Z
2021-12-03T06:19:09.000Z
/* * Copyright 2021 The Modelbox Project Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requi...
31.810345
80
0.688166
fujl
dc84d559c8a64a20a65233dc48bb5fd5b52e6985
3,819
inl
C++
include/QuickMaffs/Private/Polygon2.inl
PoetaKodu/quickmaffs
d74d514ff817f70a435609c95b5dec11feeff60e
[ "MIT" ]
2
2018-04-30T20:49:22.000Z
2019-01-13T13:30:58.000Z
include/QuickMaffs/Private/Polygon2.inl
PoetaKodu/quickmaffs
d74d514ff817f70a435609c95b5dec11feeff60e
[ "MIT" ]
null
null
null
include/QuickMaffs/Private/Polygon2.inl
PoetaKodu/quickmaffs
d74d514ff817f70a435609c95b5dec11feeff60e
[ "MIT" ]
null
null
null
// Note: this file is not meant to be included on its own. // Include "Polygon2.hpp" instead. namespace quickmaffs { //////////////////////////////////////////////////////////////////////////////////////// template <typename TValueType> Polygon2<TValueType>::Polygon2(const ContainerType& points_) : m_points{ points...
32.364407
123
0.532076
PoetaKodu
dc85d12a88082faea4d1486df0d0715a8501c41e
6,731
cpp
C++
plugins/robots/common/twoDModel/src/engine/items/imageItem.cpp
ikonovalova/trik-studio
f084274a7663bb7f341169ee029e46b6079c7274
[ "Apache-2.0" ]
null
null
null
plugins/robots/common/twoDModel/src/engine/items/imageItem.cpp
ikonovalova/trik-studio
f084274a7663bb7f341169ee029e46b6079c7274
[ "Apache-2.0" ]
null
null
null
plugins/robots/common/twoDModel/src/engine/items/imageItem.cpp
ikonovalova/trik-studio
f084274a7663bb7f341169ee029e46b6079c7274
[ "Apache-2.0" ]
null
null
null
/* Copyright 2016-2018 CyberTech Labs Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ...
26.089147
100
0.720844
ikonovalova
dc8771f921307ba55361dfe808866e77417ec3d3
13,149
cpp
C++
tests/cpu/fileformats/FileFormatCDL_tests.cpp
rakoman/OpenColorIO
7ec3772ac7f3594584041261f362cd952b8b6acf
[ "BSD-3-Clause" ]
2
2015-01-23T09:26:29.000Z
2020-11-21T08:16:27.000Z
tests/cpu/fileformats/FileFormatCDL_tests.cpp
rakoman/OpenColorIO
7ec3772ac7f3594584041261f362cd952b8b6acf
[ "BSD-3-Clause" ]
2
2020-05-21T11:19:23.000Z
2020-05-21T11:26:09.000Z
tests/cpu/fileformats/FileFormatCDL_tests.cpp
rakoman/OpenColorIO
7ec3772ac7f3594584041261f362cd952b8b6acf
[ "BSD-3-Clause" ]
2
2021-08-04T22:07:38.000Z
2021-08-06T20:23:03.000Z
/* Copyright (c) 2014 Cinesite VFX Ltd, et al. 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 conditions and the f...
53.234818
118
0.686212
rakoman
dc8c4494282ddb51376295d0cebd773f2531a9a4
478
cpp
C++
src/text_block_flags.cpp
SammyEnigma/qutepart-cpp
3c5401c7d2856697171c4331099e2fa05ef0c49b
[ "WTFPL" ]
5
2019-11-02T15:36:38.000Z
2021-11-01T21:17:32.000Z
src/text_block_flags.cpp
SammyEnigma/qutepart-cpp
3c5401c7d2856697171c4331099e2fa05ef0c49b
[ "WTFPL" ]
1
2021-02-11T23:11:00.000Z
2021-02-11T23:11:00.000Z
src/text_block_flags.cpp
SammyEnigma/qutepart-cpp
3c5401c7d2856697171c4331099e2fa05ef0c49b
[ "WTFPL" ]
3
2020-01-29T17:55:34.000Z
2021-12-23T11:38:41.000Z
#include "text_block_flags.h" namespace Qutepart { bool isBookmarked(const QTextBlock& block) { int state = block.userState(); return state != -1 && state & BOOMARK_BIT; } void setBookmarked(QTextBlock& block, bool value) { int state = block.userState(); if (state == -1) { state = 0; } ...
18.384615
51
0.598326
SammyEnigma
dc8cb389e670e8f4b7d698689ffb0b97711d6ec5
451
hpp
C++
cpp/include/fibonacci_numbers.hpp
CarnaViire/training
5a01a022167a88a9c90bc6db4e14347ad60ee9e4
[ "Unlicense" ]
3
2017-07-08T05:18:33.000Z
2021-06-11T13:49:37.000Z
cpp/include/fibonacci_numbers.hpp
kondratyev-nv/training
ed28507694bc2026867b67c26dc9c4a955b24fb4
[ "Unlicense" ]
44
2017-10-05T20:23:03.000Z
2022-02-10T19:50:21.000Z
cpp/include/fibonacci_numbers.hpp
CarnaViire/training
5a01a022167a88a9c90bc6db4e14347ad60ee9e4
[ "Unlicense" ]
4
2017-10-06T19:29:55.000Z
2022-01-04T23:25:18.000Z
#ifndef FIBONACCI_NUMBERS_HPP #define FIBONACCI_NUMBERS_HPP long long fibonacci_number(long long n); long long fibonacci_number_modulo(long long n, long long m); long long fibonacci_numbers_sum_modulo(long long n, long long m); long long fibonacci_numbers_partial_sum_modulo(long long from, ...
30.066667
65
0.645233
CarnaViire
dc8d4f8c998a560d7110a9dc9e7fcd0d93911ceb
2,155
cpp
C++
CardsPermutation/CardsPermutation.cpp
HPCCS/Computation-Kernel-Dataset
5a184c7846c1abff39426a7f53fb837de8ba36e3
[ "MIT" ]
1
2019-05-03T19:37:24.000Z
2019-05-03T19:37:24.000Z
CardsPermutation/CardsPermutation.cpp
HPCCS/Computation-Kernel-Dataset
5a184c7846c1abff39426a7f53fb837de8ba36e3
[ "MIT" ]
null
null
null
CardsPermutation/CardsPermutation.cpp
HPCCS/Computation-Kernel-Dataset
5a184c7846c1abff39426a7f53fb837de8ba36e3
[ "MIT" ]
null
null
null
// problem statement is in https://www.hackerrank.com/contests/womens-codesprint-4/challenges/cards-permutation/problem #include <bits/stdc++.h> #include <cmath> #include <cstdio> #include <vector> #include <iostream> #include <algorithm> #include <set> #include <string> #include <cstring> #include <ctime> using names...
19.953704
119
0.495592
HPCCS
dc9261d1d7e1ff31f8c04136727bc98732c5cb25
1,819
cpp
C++
example/lapack/stedc.cpp
t-sakashita/rokko
ebd49e1198c4ec9e7612ad4a9806d16a4ff0bdc9
[ "BSL-1.0" ]
16
2015-01-31T18:57:48.000Z
2022-03-18T19:04:49.000Z
example/lapack/stedc.cpp
t-sakashita/rokko
ebd49e1198c4ec9e7612ad4a9806d16a4ff0bdc9
[ "BSL-1.0" ]
514
2015-02-05T14:56:54.000Z
2021-06-25T09:29:52.000Z
example/lapack/stedc.cpp
t-sakashita/rokko
ebd49e1198c4ec9e7612ad4a9806d16a4ff0bdc9
[ "BSL-1.0" ]
2
2015-06-16T04:22:23.000Z
2019-06-01T07:10:01.000Z
/***************************************************************************** * * Rokko: Integrated Interface for libraries of eigenvalue decomposition * * Copyright (C) 2012-2020 Rokko Developers https://github.com/t-sakashita/rokko * * Distributed under the Boost Software License, Version 1.0. (See accompanying * fi...
34.320755
79
0.595382
t-sakashita
dc94024ad56ace5e2c40d333a69b9b116e3f4767
183
cpp
C++
src/problems/wtf_2/gen.cpp
Leomotors/stupid-problems
801213b7646e39530e2fe652c95ec6cd887e7bd1
[ "MIT" ]
null
null
null
src/problems/wtf_2/gen.cpp
Leomotors/stupid-problems
801213b7646e39530e2fe652c95ec6cd887e7bd1
[ "MIT" ]
null
null
null
src/problems/wtf_2/gen.cpp
Leomotors/stupid-problems
801213b7646e39530e2fe652c95ec6cd887e7bd1
[ "MIT" ]
null
null
null
#include "aquagenlib.h" #include <bits/stdc++.h> using namespace std; int main(int argc, char *argv[]) { registerGen(argc, argv, 1); cout << rnd.next(1, INT_MAX) << "\n"; }
18.3
41
0.617486
Leomotors
dc95b42c5c323c12ab2af60744b3b128eddf837e
9,936
cpp
C++
src/ClientData/CaptureData.cpp
akopich/orbit
c7935085023cce1abb70ce96dd03339f47a1c826
[ "BSD-2-Clause" ]
null
null
null
src/ClientData/CaptureData.cpp
akopich/orbit
c7935085023cce1abb70ce96dd03339f47a1c826
[ "BSD-2-Clause" ]
null
null
null
src/ClientData/CaptureData.cpp
akopich/orbit
c7935085023cce1abb70ce96dd03339f47a1c826
[ "BSD-2-Clause" ]
null
null
null
// Copyright (c) 2020 The Orbit 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 "ClientData/CaptureData.h" #include <absl/container/flat_hash_map.h> #include <algorithm> #include <cmath> #include <cstdint> #include <iterat...
40.721311
100
0.74849
akopich
dc9770a49853fcf24cb319e0682fa3b56d3c9521
1,951
hpp
C++
test/unit/workgroup/tests/test-util-workgroup-WorkStorage.hpp
researchapps/RAJA
122fa519ebc84f1ed114b70444fb807bd8e4efa9
[ "BSD-3-Clause" ]
319
2016-04-28T23:53:29.000Z
2022-03-29T16:30:36.000Z
test/unit/workgroup/tests/test-util-workgroup-WorkStorage.hpp
researchapps/RAJA
122fa519ebc84f1ed114b70444fb807bd8e4efa9
[ "BSD-3-Clause" ]
1,071
2016-05-04T23:15:51.000Z
2022-03-31T23:47:48.000Z
test/unit/workgroup/tests/test-util-workgroup-WorkStorage.hpp
researchapps/RAJA
122fa519ebc84f1ed114b70444fb807bd8e4efa9
[ "BSD-3-Clause" ]
103
2016-05-02T22:48:37.000Z
2022-03-23T13:51:21.000Z
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// // Copyright (c) 2016-21, Lawrence Livermore National Security, LLC // and RAJA project contributors. See the RAJA/LICENSE file for details. // // SPDX-License-Identifier: (BSD-3-Clause) //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~...
23.22619
79
0.623783
researchapps
dc99582ddca047403c0dd4e9b184dfb0f04184b9
536
cc
C++
onnxruntime/core/providers/cpu/math/clip.cc
hqucms/onnxruntime
6e4e76414639f50836a64546603c8957227857b0
[ "MIT" ]
4
2019-06-06T23:48:57.000Z
2021-06-03T11:51:45.000Z
onnxruntime/core/providers/cpu/math/clip.cc
hqucms/onnxruntime
6e4e76414639f50836a64546603c8957227857b0
[ "MIT" ]
10
2019-03-25T21:47:46.000Z
2019-04-30T02:33:05.000Z
onnxruntime/core/providers/cpu/math/clip.cc
hqucms/onnxruntime
6e4e76414639f50836a64546603c8957227857b0
[ "MIT" ]
4
2021-06-05T19:52:22.000Z
2021-11-30T13:58:13.000Z
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include "core/providers/cpu/math/clip.h" namespace onnxruntime { ONNX_CPU_OPERATOR_VERSIONED_KERNEL( Clip, 6, 10, KernelDefBuilder().MayInplace(0, 0).TypeConstraint("T", DataTypeImpl::GetTensorType<float>...
24.363636
98
0.712687
hqucms
dc999a9f07e2a2840f18ee7f9670bb120c95d5bc
16,310
cpp
C++
arena2d-sim/engine/GlobalSettings.cpp
LeiDoubi/arena2D
3524784ef0714a002cd0f5d69ae13dfc27e5082b
[ "MIT" ]
1
2020-12-06T20:35:15.000Z
2020-12-06T20:35:15.000Z
arena2d-sim/engine/GlobalSettings.cpp
linhdoan8/arena2D
290ec59bb1962c9caac99ead76c57607ed8cfdc4
[ "MIT" ]
null
null
null
arena2d-sim/engine/GlobalSettings.cpp
linhdoan8/arena2D
290ec59bb1962c9caac99ead76c57607ed8cfdc4
[ "MIT" ]
null
null
null
/* author: Cornelius Marx */ #include "GlobalSettings.hpp" SDL_Keycode sGamePadButton::getKeycode(const SDL_Event & e) { switch(e.type){ case SDL_JOYBUTTONUP: case SDL_JOYBUTTONDOWN:{ if(e.jbutton.button >= SETTINGS_GAMEPAD_BUTTON_NUM) return SDLK_UNKNOWN; return SETTINGS_GAMEPAD_KEYCODE_START + e.jbutton.bu...
25.847861
153
0.668363
LeiDoubi
dc9aa1b6f6b033836268382f4420406356cfd2ec
9,994
hpp
C++
include/poac/util/semver/parser/parser.hpp
ken-matsui/poac
e4503027f3993be493824f48dc31818029784238
[ "Apache-2.0" ]
null
null
null
include/poac/util/semver/parser/parser.hpp
ken-matsui/poac
e4503027f3993be493824f48dc31818029784238
[ "Apache-2.0" ]
null
null
null
include/poac/util/semver/parser/parser.hpp
ken-matsui/poac
e4503027f3993be493824f48dc31818029784238
[ "Apache-2.0" ]
null
null
null
#ifndef SEMVER_PARSER_PARSER_HPP #define SEMVER_PARSER_PARSER_HPP #include <cstddef> #include <cstdint> #include <string_view> #include <vector> #include <optional> #include <poac/util/semver/parser/lexer.hpp> #include <poac/util/semver/parser/range.hpp> #include <poac/util/semver/parser/token.hpp> namespace semver:...
29.307918
113
0.471683
ken-matsui
dc9c8ddf4373aab3b83a210ee97775e872d7d0e0
27,103
cc
C++
chromium/tools/gn/ninja_binary_target_writer_unittest.cc
wedataintelligence/vivaldi-source
22a46f2c969f6a0b7ca239a05575d1ea2738768c
[ "BSD-3-Clause" ]
27
2016-04-27T01:02:03.000Z
2021-12-13T08:53:19.000Z
chromium/tools/gn/ninja_binary_target_writer_unittest.cc
wedataintelligence/vivaldi-source
22a46f2c969f6a0b7ca239a05575d1ea2738768c
[ "BSD-3-Clause" ]
2
2017-03-09T09:00:50.000Z
2017-09-21T15:48:20.000Z
chromium/tools/gn/ninja_binary_target_writer_unittest.cc
wedataintelligence/vivaldi-source
22a46f2c969f6a0b7ca239a05575d1ea2738768c
[ "BSD-3-Clause" ]
17
2016-04-27T02:06:39.000Z
2019-12-18T08:07:00.000Z
// Copyright (c) 2013 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "tools/gn/ninja_binary_target_writer.h" #include <sstream> #include <utility> #include "testing/gtest/include/gtest/gtest.h" #include "tool...
36.625676
80
0.647936
wedataintelligence
dc9c97a62751863b1e297638c4bbc535cf3679f5
447
cpp
C++
LuaGame/src/LuaGame.cpp
davidliljefors/Hazel
1467f1c20ba46bdfe943d72a75b6d86bca1c2a66
[ "Apache-2.0" ]
1
2020-09-27T09:22:33.000Z
2020-09-27T09:22:33.000Z
LuaGame/src/LuaGame.cpp
davidliljefors/Hazel
1467f1c20ba46bdfe943d72a75b6d86bca1c2a66
[ "Apache-2.0" ]
null
null
null
LuaGame/src/LuaGame.cpp
davidliljefors/Hazel
1467f1c20ba46bdfe943d72a75b6d86bca1c2a66
[ "Apache-2.0" ]
null
null
null
#include <Hazel.h> #include <Hazel/Core/EntryPoint.h> #include "Platform/OpenGL/OpenGLShader.h" #include "imgui/imgui.h" #include <glm/gtx/string_cast.hpp> #include <glm/gtc/type_ptr.hpp> #include "LuaLayer.h" class LuaGame : public Hazel::Application { public: LuaGame() { //PushLayer(new ExampleLayer()); Pus...
13.545455
46
0.695749
davidliljefors
dca4fcb5fafbad50cdbf1a830c7ee1c7b7721a6d
4,471
cc
C++
examples/cpp_api/array_metadata.cc
upj977155/TileDB
1c96c6a0c030e058930ff9d47409865fbfe2178f
[ "MIT" ]
1,478
2017-06-15T13:58:50.000Z
2022-03-30T13:46:00.000Z
examples/cpp_api/array_metadata.cc
upj977155/TileDB
1c96c6a0c030e058930ff9d47409865fbfe2178f
[ "MIT" ]
1,435
2017-05-25T01:16:18.000Z
2022-03-31T21:57:06.000Z
examples/cpp_api/array_metadata.cc
upj977155/TileDB
1c96c6a0c030e058930ff9d47409865fbfe2178f
[ "MIT" ]
169
2017-06-09T18:35:45.000Z
2022-03-13T01:11:18.000Z
/** * @file array_metadata.cc * * @section LICENSE * * The MIT License * * @copyright Copyright (c) 2018-2021 TileDB, Inc. * * 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 witho...
31.70922
80
0.638112
upj977155
dca683ed63f1fcac60b32781a75007e828ddf502
36,150
cpp
C++
sizzlingstats/serverplugin_empty.cpp
SizzlingStats/sizzlingplugins
f4947ca0533fe8f9241387a26fb1df4cd04f4c98
[ "Unlicense", "BSD-3-Clause" ]
5
2015-06-23T23:21:28.000Z
2021-09-14T00:35:33.000Z
sizzlingstats/serverplugin_empty.cpp
SizzlingStats/sizzlingplugins
f4947ca0533fe8f9241387a26fb1df4cd04f4c98
[ "Unlicense", "BSD-3-Clause" ]
8
2015-04-06T23:06:57.000Z
2017-06-15T20:28:17.000Z
sizzlingstats/serverplugin_empty.cpp
SizzlingStats/sizzlingplugins
f4947ca0533fe8f9241387a26fb1df4cd04f4c98
[ "Unlicense", "BSD-3-Clause" ]
3
2015-10-16T22:22:29.000Z
2021-11-10T05:03:37.000Z
/*======== This file is part of SizzlingPlugins. Copyright (c) 2010-2013, Jordan Cristiano. This file is subject to the terms and conditions defined in the file 'LICENSE', which is part of this source code package. */ #include "dbgflag.h" #include <stdio.h> #include "Sizz...
32.655827
181
0.627939
SizzlingStats
dca913fcfc2392bdb1fe876911012c40b4e02e40
3,078
cpp
C++
aws-cpp-sdk-elastictranscoder/source/model/Preset.cpp
lintonv/aws-sdk-cpp
15e19c265ffce19d2046b18aa1b7307fc5377e58
[ "Apache-2.0" ]
1
2022-02-10T08:06:54.000Z
2022-02-10T08:06:54.000Z
aws-cpp-sdk-elastictranscoder/source/model/Preset.cpp
lintonv/aws-sdk-cpp
15e19c265ffce19d2046b18aa1b7307fc5377e58
[ "Apache-2.0" ]
1
2022-01-03T23:59:37.000Z
2022-01-03T23:59:37.000Z
aws-cpp-sdk-elastictranscoder/source/model/Preset.cpp
ravindra-wagh/aws-sdk-cpp
7d5ff01b3c3b872f31ca98fb4ce868cd01e97696
[ "Apache-2.0" ]
1
2021-11-09T11:58:03.000Z
2021-11-09T11:58:03.000Z
/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include <aws/elastictranscoder/model/Preset.h> #include <aws/core/utils/json/JsonSerializer.h> #include <utility> using namespace Aws::Utils::Json; using namespace Aws::Utils; namespace Aws { name...
17.1
69
0.683886
lintonv
dcab8ff47d6454fdf5821f015f9f0cd05e75c0f8
54,706
cxx
C++
main/vcl/source/window/dockmgr.cxx
Grosskopf/openoffice
93df6e8a695d5e3eac16f3ad5e9ade1b963ab8d7
[ "Apache-2.0" ]
679
2015-01-06T06:34:58.000Z
2022-03-30T01:06:03.000Z
main/vcl/source/window/dockmgr.cxx
Grosskopf/openoffice
93df6e8a695d5e3eac16f3ad5e9ade1b963ab8d7
[ "Apache-2.0" ]
102
2017-11-07T08:51:31.000Z
2022-03-17T12:13:49.000Z
main/vcl/source/window/dockmgr.cxx
Grosskopf/openoffice
93df6e8a695d5e3eac16f3ad5e9ade1b963ab8d7
[ "Apache-2.0" ]
331
2015-01-06T11:40:55.000Z
2022-03-14T04:07:51.000Z
/************************************************************** * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to y...
32.466469
150
0.59233
Grosskopf
dcac1253548228c35419f5ae6116332a05a8ae12
28,945
cc
C++
CoreArbiter/src/CoreArbiterServerTest.cc
jnhu76/pmcore
ff75841e9f31a54e84efce4acee0c5757e6896cf
[ "MIT" ]
null
null
null
CoreArbiter/src/CoreArbiterServerTest.cc
jnhu76/pmcore
ff75841e9f31a54e84efce4acee0c5757e6896cf
[ "MIT" ]
null
null
null
CoreArbiter/src/CoreArbiterServerTest.cc
jnhu76/pmcore
ff75841e9f31a54e84efce4acee0c5757e6896cf
[ "MIT" ]
null
null
null
/* Copyright (c) 2015-2017 Stanford University * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR(...
41.173542
80
0.708447
jnhu76
dcadb5431252c54816c99cce5e34404b0ecc1f91
4,770
cc
C++
mindspore/lite/test/ut/src/runtime/kernel/opencl/transpose_tests.cc
Rossil2012/mindspore
8a20b5d784b3fec6d32e058581ec56ec553a06a0
[ "Apache-2.0" ]
1
2021-04-23T06:35:18.000Z
2021-04-23T06:35:18.000Z
mindspore/lite/test/ut/src/runtime/kernel/opencl/transpose_tests.cc
nudt-eddie/mindspore
55372b41fdfae6d2b88d7078971e06d537f6c558
[ "Apache-2.0" ]
null
null
null
mindspore/lite/test/ut/src/runtime/kernel/opencl/transpose_tests.cc
nudt-eddie/mindspore
55372b41fdfae6d2b88d7078971e06d537f6c558
[ "Apache-2.0" ]
null
null
null
/** * Copyright 2020 Huawei Technologies Co., Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law...
36.692308
114
0.701677
Rossil2012
dcae1bfba16c3aa435df671fe3bded9ebe7ece3b
2,139
hpp
C++
include/edyn/collision/broadphase_worker.hpp
madebr/edyn
fc3dc3c383952c9c2d8d21ecde25a2fdd1a4fb7f
[ "MIT" ]
317
2020-07-07T07:20:58.000Z
2022-03-31T23:38:12.000Z
include/edyn/collision/broadphase_worker.hpp
LLLida/edyn
eda349dd73ab0caa89518cd59dc893b5e138d727
[ "MIT" ]
15
2020-05-10T17:39:16.000Z
2022-03-28T05:18:27.000Z
include/edyn/collision/broadphase_worker.hpp
LLLida/edyn
eda349dd73ab0caa89518cd59dc893b5e138d727
[ "MIT" ]
16
2020-07-07T07:20:59.000Z
2022-03-06T18:24:25.000Z
#ifndef EDYN_COLLISION_BROADPHASE_WORKER_HPP #define EDYN_COLLISION_BROADPHASE_WORKER_HPP #include <vector> #include <entt/entity/fwd.hpp> #include "edyn/comp/aabb.hpp" #include "edyn/util/entity_pair.hpp" #include "edyn/collision/dynamic_tree.hpp" #include "edyn/collision/contact_manifold_map.hpp" namespace edyn { ...
30.126761
121
0.73165
madebr
dcae7b2fb5b370158148d363506ea1e27b4ed7af
2,763
hpp
C++
src/Evolution/Systems/RelativisticEuler/Valencia/System.hpp
keefemitman/spectre
a8c3e387addc34d8a4544728f405991e6c9e5e38
[ "MIT" ]
null
null
null
src/Evolution/Systems/RelativisticEuler/Valencia/System.hpp
keefemitman/spectre
a8c3e387addc34d8a4544728f405991e6c9e5e38
[ "MIT" ]
null
null
null
src/Evolution/Systems/RelativisticEuler/Valencia/System.hpp
keefemitman/spectre
a8c3e387addc34d8a4544728f405991e6c9e5e38
[ "MIT" ]
null
null
null
// Distributed under the MIT License. // See LICENSE.txt for details. #pragma once #include <cstddef> #include "DataStructures/Tensor/EagerMath/Magnitude.hpp" #include "DataStructures/VariablesTag.hpp" #include "Evolution/Systems/RelativisticEuler/Valencia/Characteristics.hpp" #include "Evolution/Systems/Relativisti...
40.043478
85
0.766196
keefemitman
dcaebb4ccb7339aa1c444ed84fb96d2d2e08f5c2
76
cpp
C++
src/third_party/doctest.cpp
ThomasGale/pytorch-cpp-rl
e25fa6418e308eefb7213c2d45528eaac20780ee
[ "MIT" ]
445
2019-04-11T12:30:34.000Z
2022-03-28T08:14:42.000Z
src/third_party/doctest.cpp
ThomasGale/pytorch-cpp-rl
e25fa6418e308eefb7213c2d45528eaac20780ee
[ "MIT" ]
21
2019-04-11T20:18:02.000Z
2021-11-27T12:56:58.000Z
src/third_party/doctest.cpp
ThomasGale/pytorch-cpp-rl
e25fa6418e308eefb7213c2d45528eaac20780ee
[ "MIT" ]
87
2019-04-11T17:42:05.000Z
2022-03-10T15:55:48.000Z
#define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN #include "third_party/doctest.h"
25.333333
42
0.868421
ThomasGale
dcb07426cd7ab959ed8c6124151d128e1392860e
6,981
cc
C++
third_party/blink/renderer/core/dom/scripted_idle_task_controller_test.cc
mghgroup/Glide-Browser
6a4c1eaa6632ec55014fee87781c6bbbb92a2af5
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
null
null
null
third_party/blink/renderer/core/dom/scripted_idle_task_controller_test.cc
mghgroup/Glide-Browser
6a4c1eaa6632ec55014fee87781c6bbbb92a2af5
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
null
null
null
third_party/blink/renderer/core/dom/scripted_idle_task_controller_test.cc
mghgroup/Glide-Browser
6a4c1eaa6632ec55014fee87781c6bbbb92a2af5
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
2
2021-01-05T23:43:46.000Z
2021-01-07T23:36:34.000Z
// 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. #include "third_party/blink/renderer/core/dom/scripted_idle_task_controller.h" #include "testing/gmock/include/gmock/gmock.h" #include "testing/gtest/inc...
37.331551
83
0.773385
mghgroup
dcb46faac3e473c9aa9a60c5395e3a49f117b408
9,540
cc
C++
flecsi/utils/test/factory.cc
manopapad/flecsi
8bb06e4375f454a0680564c76df2c60ffe49c770
[ "Unlicense" ]
null
null
null
flecsi/utils/test/factory.cc
manopapad/flecsi
8bb06e4375f454a0680564c76df2c60ffe49c770
[ "Unlicense" ]
null
null
null
flecsi/utils/test/factory.cc
manopapad/flecsi
8bb06e4375f454a0680564c76df2c60ffe49c770
[ "Unlicense" ]
null
null
null
/*~--------------------------------------------------------------------------~* * @@@@@@@@ @@ @@@@@@ @@@@@@@@ @@ * /@@///// /@@ @@////@@ @@////// /@@ * /@@ /@@ @@@@@ @@ // /@@ /@@ * /@@@@@@@ /@@ @@///@@/@@ /@@@@@@@@@/@@ * /@@//// /@@/@@@@@@@/@@ ////////@@/@@ ...
31.906355
80
0.551258
manopapad
dcb4be5cd48d3dc029d0bb02be078cc5e01a9bc2
154
cc
C++
common/pointer_cast.cc
RobotLocomotion/drake-python3.7
ae397a4c6985262d23e9675b9bf3927c08d027f5
[ "BSD-3-Clause" ]
2
2021-02-25T02:01:02.000Z
2021-03-17T04:52:04.000Z
common/pointer_cast.cc
RobotLocomotion/drake-python3.7
ae397a4c6985262d23e9675b9bf3927c08d027f5
[ "BSD-3-Clause" ]
null
null
null
common/pointer_cast.cc
RobotLocomotion/drake-python3.7
ae397a4c6985262d23e9675b9bf3927c08d027f5
[ "BSD-3-Clause" ]
1
2021-06-13T12:05:39.000Z
2021-06-13T12:05:39.000Z
#include "drake/common/pointer_cast.h" // For now, this is an empty .cc file that only serves to confirm that // pointer_cast.h is a stand-alone header.
30.8
70
0.746753
RobotLocomotion
dcb68c15c0e9d9d9808f28b1e8a8f3bc8eb99c98
14,189
cpp
C++
searchcore/src/vespa/searchcore/proton/metrics/documentdb_tagged_metrics.cpp
kennyeric/vespa
f69f960d5ae48d246f56a60e6e46c90a58f836ba
[ "Apache-2.0" ]
null
null
null
searchcore/src/vespa/searchcore/proton/metrics/documentdb_tagged_metrics.cpp
kennyeric/vespa
f69f960d5ae48d246f56a60e6e46c90a58f836ba
[ "Apache-2.0" ]
null
null
null
searchcore/src/vespa/searchcore/proton/metrics/documentdb_tagged_metrics.cpp
kennyeric/vespa
f69f960d5ae48d246f56a60e6e46c90a58f836ba
[ "Apache-2.0" ]
null
null
null
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. #include "documentdb_tagged_metrics.h" #include <vespa/vespalib/util/stringfmt.h> #include <vespa/vespalib/util/exceptions.h> namespace proton { using matching::MatchingStats; DocumentDBTaggedMetri...
54.156489
153
0.696103
kennyeric
dcb6b232200032a1d1b5d1a613e3c821e7ff1ff5
17,683
cpp
C++
src/MinimiseProgramTransformer.cpp
ohamel-softwaresecure/souffle
d4b9fe641f0c51d2a25408af45416a7e5123f866
[ "UPL-1.0" ]
null
null
null
src/MinimiseProgramTransformer.cpp
ohamel-softwaresecure/souffle
d4b9fe641f0c51d2a25408af45416a7e5123f866
[ "UPL-1.0" ]
null
null
null
src/MinimiseProgramTransformer.cpp
ohamel-softwaresecure/souffle
d4b9fe641f0c51d2a25408af45416a7e5123f866
[ "UPL-1.0" ]
null
null
null
/* * Souffle - A Datalog Compiler * Copyright (c) 2018, The Souffle Developers. All rights reserved. * Licensed under the Universal Permissive License v 1.0 as shown at: * - https://opensource.org/licenses/UPL * - <souffle root>/licenses/SOUFFLE-UPL.txt */ /*******************************************************...
37.227368
110
0.618673
ohamel-softwaresecure
dcb801102c49bc091130e98deb28799f35498c86
28,099
cc
C++
decoder/ff_wordalign.cc
kho/cdec
d88186af251ecae60974b20395ce75807bfdda35
[ "BSD-3-Clause-LBNL", "Apache-2.0" ]
null
null
null
decoder/ff_wordalign.cc
kho/cdec
d88186af251ecae60974b20395ce75807bfdda35
[ "BSD-3-Clause-LBNL", "Apache-2.0" ]
null
null
null
decoder/ff_wordalign.cc
kho/cdec
d88186af251ecae60974b20395ce75807bfdda35
[ "BSD-3-Clause-LBNL", "Apache-2.0" ]
null
null
null
#include "ff_wordalign.h" #include <algorithm> #include <iterator> #include <set> #include <sstream> #include <string> #include <cmath> #include <bitset> #ifndef HAVE_OLD_CPP # include <unordered_map> #else # include <tr1/unordered_map> namespace std { using std::tr1::unordered_map; } #endif #include <boost/tuple/tup...
36.58724
181
0.568241
kho
dcbc873ec2bf7e2e84d96a3d9d262182b862bc67
10,745
cpp
C++
src/coreclr/src/md/compiler/custattr_import.cpp
abock/runtime
b3346807be96f6089fc1538946b3611f607389e2
[ "MIT" ]
6
2020-01-04T14:02:35.000Z
2020-01-05T15:28:09.000Z
src/coreclr/src/md/compiler/custattr_import.cpp
abock/runtime
b3346807be96f6089fc1538946b3611f607389e2
[ "MIT" ]
15
2017-01-27T20:18:50.000Z
2019-11-14T00:52:58.000Z
src/coreclr/src/md/compiler/custattr_import.cpp
abock/runtime
b3346807be96f6089fc1538946b3611f607389e2
[ "MIT" ]
3
2021-02-10T16:20:05.000Z
2021-03-12T07:55:36.000Z
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. //***************************************************************************** // // CustAttr_Import.cpp // // Impl...
37.968198
126
0.530014
abock
dcc3545da60d25d0055cba79b7ec9299ad6c4975
492
cpp
C++
light.cpp
jesuisthanos/RayTracer
df8658eb0c9206fc7084712b1436caa1a4086e1e
[ "MIT" ]
null
null
null
light.cpp
jesuisthanos/RayTracer
df8658eb0c9206fc7084712b1436caa1a4086e1e
[ "MIT" ]
null
null
null
light.cpp
jesuisthanos/RayTracer
df8658eb0c9206fc7084712b1436caa1a4086e1e
[ "MIT" ]
null
null
null
// // Framework for a raytracer // File: light.cpp // // Created for the Computer Science course "Introduction Computer Graphics" // taught at the University of Groningen by Tobias Isenberg. // // Author: Maarten Everts // Stephane Gosset // Sy-Thanh Ho // // This framework is inspired by and uses code of t...
27.333333
79
0.715447
jesuisthanos
dcc487c0e5c52336ec81d9cffc58a69b0bc47b00
494
cpp
C++
tools/clang/test/CodeGenCXX/mangle-this-cxx11.cpp
opencor/llvm-clang
416d1dd61a1a748e6f20a46e20d0394e252cdbaa
[ "Apache-2.0" ]
null
null
null
tools/clang/test/CodeGenCXX/mangle-this-cxx11.cpp
opencor/llvm-clang
416d1dd61a1a748e6f20a46e20d0394e252cdbaa
[ "Apache-2.0" ]
null
null
null
tools/clang/test/CodeGenCXX/mangle-this-cxx11.cpp
opencor/llvm-clang
416d1dd61a1a748e6f20a46e20d0394e252cdbaa
[ "Apache-2.0" ]
null
null
null
// RUN: %clang_cc1 -std=c++11 -emit-llvm %s -o - -triple=x86_64-apple-darwin9 | FileCheck %s struct B { template <class U> U f(); }; struct A { B b; // implicitly rewritten to (*this).b.f<U>() template <class U> auto f() -> decltype (b.f<U>()); template <class U> auto g() -> decltype (this->b.f<U>()); }; int ma...
23.52381
92
0.629555
opencor
dcc4c51646836ed86bf4cd3a6a48f5b26d7e8e3d
929
cpp
C++
EXP5/AntEdgeDetection.cpp
PrasekMatej/AntEdgeDetection
f98577a83cf6da7a76f30e66afd3ed16ab360127
[ "BSD-2-Clause" ]
null
null
null
EXP5/AntEdgeDetection.cpp
PrasekMatej/AntEdgeDetection
f98577a83cf6da7a76f30e66afd3ed16ab360127
[ "BSD-2-Clause" ]
null
null
null
EXP5/AntEdgeDetection.cpp
PrasekMatej/AntEdgeDetection
f98577a83cf6da7a76f30e66afd3ed16ab360127
[ "BSD-2-Clause" ]
null
null
null
#include <iostream> #include <chrono> #include "CommandParser.h" #include "ImageParser.h" #include "AntColonySystem.h" #include "Parameters.h" using namespace std; int main(int argc, char** argv) { cout << "Parsing m_parameters." << endl; Parameters parameters; Parse(argc, argv, parameters); cout...
25.805556
135
0.663079
PrasekMatej
dcc6114f213083e972ffa2bd724c5c606f580a31
2,535
cpp
C++
src/third_party/zeromq-4.0.4/tests/test_router_mandatory.cpp
EshaMaharishi/pubsub-1
13cb194078ed39b00ea623db0d87df8e153e7981
[ "Apache-2.0" ]
144
2017-11-08T07:19:13.000Z
2021-07-26T14:13:02.000Z
src/third_party/zeromq-4.0.4/tests/test_router_mandatory.cpp
EshaMaharishi/pubsub-1
13cb194078ed39b00ea623db0d87df8e153e7981
[ "Apache-2.0" ]
13
2017-12-14T17:16:12.000Z
2019-06-16T22:22:36.000Z
src/third_party/zeromq-4.0.4/tests/test_router_mandatory.cpp
EshaMaharishi/pubsub-1
13cb194078ed39b00ea623db0d87df8e153e7981
[ "Apache-2.0" ]
88
2017-11-21T01:31:00.000Z
2021-06-19T01:01:04.000Z
/* Copyright (c) 2007-2013 Contributors as noted in the AUTHORS file This file is part of 0MQ. 0MQ is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or ...
30.914634
87
0.628402
EshaMaharishi