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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
44c8b602441aad741405c732bfb192e1e7db01e9 | 560 | cpp | C++ | hal/ESP32/gpio/gpio.cpp | yhsb2k/omef | 7425b62dd4b5d0af4e320816293f69d16d39f57a | [
"MIT"
] | null | null | null | hal/ESP32/gpio/gpio.cpp | yhsb2k/omef | 7425b62dd4b5d0af4e320816293f69d16d39f57a | [
"MIT"
] | null | null | null | hal/ESP32/gpio/gpio.cpp | yhsb2k/omef | 7425b62dd4b5d0af4e320816293f69d16d39f57a | [
"MIT"
] | null | null | null | #include <stdint.h>
#include <stddef.h>
#include <assert.h>
#include "gpio.hpp"
using namespace hal;
gpio::gpio(uint8_t port, uint8_t pin, enum mode mode, bool state):
_port(port),
_pin(pin),
_mode(mode)
{
assert(_port < ports);
assert(_pin < pins);
set_mode(_mode, state);
}
gpio::~gpio()
{
}
void gpio::set... | 13.658537 | 66 | 0.648214 | yhsb2k |
44ca29a6d61b1fd0616676ae7cb2956c47bf6371 | 33,749 | cpp | C++ | groups/bsl/bslalg/bslalg_autoarraydestructor.t.cpp | adambde/bde | a2efe118da642be42b25e81ca986a0fe56078305 | [
"Apache-2.0"
] | 26 | 2015-05-07T04:22:06.000Z | 2022-01-26T09:10:12.000Z | groups/bsl/bslalg/bslalg_autoarraydestructor.t.cpp | adambde/bde | a2efe118da642be42b25e81ca986a0fe56078305 | [
"Apache-2.0"
] | 3 | 2015-05-07T21:06:36.000Z | 2015-08-28T20:02:18.000Z | groups/bsl/bslalg/bslalg_autoarraydestructor.t.cpp | adambde/bde | a2efe118da642be42b25e81ca986a0fe56078305 | [
"Apache-2.0"
] | 12 | 2015-05-06T08:41:07.000Z | 2021-11-09T12:52:19.000Z | // bslalg_autoarraydestructor.t.cpp -*-C++-*-
#include <bslalg_autoarraydestructor.h>
#include <bslalg_scalarprimitives.h> // for testing only
#include <bslma_allocator.h> // for testing only
#include <bslma_deallocatorproctor.h> // for tes... | 33.918593 | 79 | 0.512578 | adambde |
44caa5ea42960c0d671aff7481ca5293017f75d9 | 1,442 | cpp | C++ | 3.Stacks and Queues/Merge_overlapping_Intervals.cpp | suraj0803/DSA | 6ea21e452d7662e2351ee2a7b0415722e1bbf094 | [
"MIT"
] | null | null | null | 3.Stacks and Queues/Merge_overlapping_Intervals.cpp | suraj0803/DSA | 6ea21e452d7662e2351ee2a7b0415722e1bbf094 | [
"MIT"
] | null | null | null | 3.Stacks and Queues/Merge_overlapping_Intervals.cpp | suraj0803/DSA | 6ea21e452d7662e2351ee2a7b0415722e1bbf094 | [
"MIT"
] | null | null | null | #include<iostream>
#include<stack>
#include<algorithm>
using namespace std;
struct Interval{
int start,end;
};
bool compareInterval(Interval i1, Interval i2){
return (i1.start < i2.start);
}
void mergeIntervals(Interval arr[] , int n)
{
// Test if the given set has one interval
if(n... | 25.298246 | 94 | 0.533981 | suraj0803 |
44caea6ae5c36f0d1cf3f62430e898081f33105e | 2,392 | hpp | C++ | src/debug_console.hpp | gamobink/anura | 410721a174aae98f32a55d71a4e666ad785022fd | [
"CC0-1.0"
] | null | null | null | src/debug_console.hpp | gamobink/anura | 410721a174aae98f32a55d71a4e666ad785022fd | [
"CC0-1.0"
] | null | null | null | src/debug_console.hpp | gamobink/anura | 410721a174aae98f32a55d71a4e666ad785022fd | [
"CC0-1.0"
] | null | null | null | /*
Copyright (C) 2003-2014 by David White <davewx7@gmail.com>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
incl... | 25.178947 | 78 | 0.750418 | gamobink |
44d03a7408f1433216b1318126966587056bb2be | 460 | cpp | C++ | intermediate/Pet.cpp | loiola0/course-cpp | 43ddf46da635980b5acb723496bba2c3f951293f | [
"MIT"
] | null | null | null | intermediate/Pet.cpp | loiola0/course-cpp | 43ddf46da635980b5acb723496bba2c3f951293f | [
"MIT"
] | null | null | null | intermediate/Pet.cpp | loiola0/course-cpp | 43ddf46da635980b5acb723496bba2c3f951293f | [
"MIT"
] | null | null | null | #include <iostream>
#include "Pet.h"
using namespace std;
Pet::Pet(){
}
Pet::~Pet(){
}
void Pet::setValue(double value){
this->value = value;
}
void Pet::setBathFrequency(int bathFreq){
this->bathFrequency = bathFreq;
}
void Pet::getValue(){
cout<<"This Pet costs "<<"R$ "<<this->value<<end... | 13.529412 | 101 | 0.623913 | loiola0 |
44d7fa5e1aca8ee5e0efc7e178fa2079c79677fc | 1,188 | cpp | C++ | src/SXXDL.cpp | SgtCoDFish/APG | 23c45601e1c96ab8d1192f4d1095e2c481999780 | [
"libtiff",
"Apache-2.0",
"MIT",
"ECL-2.0",
"Libpng",
"BSD-3-Clause"
] | 1 | 2015-01-05T16:57:56.000Z | 2015-01-05T16:57:56.000Z | src/SXXDL.cpp | SgtCoDFish/APG | 23c45601e1c96ab8d1192f4d1095e2c481999780 | [
"libtiff",
"Apache-2.0",
"MIT",
"ECL-2.0",
"Libpng",
"BSD-3-Clause"
] | 18 | 2015-07-04T21:49:23.000Z | 2018-07-30T09:19:32.000Z | src/SXXDL.cpp | SgtCoDFish/APG | 23c45601e1c96ab8d1192f4d1095e2c481999780 | [
"libtiff",
"Apache-2.0",
"MIT",
"ECL-2.0",
"Libpng",
"BSD-3-Clause"
] | null | null | null | #ifndef APG_NO_SDL
#include "APG/SDL.hpp"
#include "APG/SXXDL.hpp"
SXXDL::window_ptr SXXDL::make_window_ptr(SDL_Window *window) {
return window_ptr(window, SDL_DestroyWindow);
}
SXXDL::surface_ptr SXXDL::make_surface_ptr(SDL_Surface *surface) {
return surface_ptr(surface, SDL_FreeSurface);
}
SXXDL::sdl_texture_pt... | 27.627907 | 88 | 0.795455 | SgtCoDFish |
44d8a03cdf9771642c87ea8f248310f7a897d86e | 1,715 | cpp | C++ | Engine/Engine/System/Debug.cpp | PawsEngine/Engine | 8a44cdd24b17227fdc3a3b52f1687d15f9ffe6be | [
"MIT"
] | 7 | 2021-05-01T12:52:29.000Z | 2022-02-06T10:50:45.000Z | Engine/Engine/System/Debug.cpp | PawsEngine/Engine | 8a44cdd24b17227fdc3a3b52f1687d15f9ffe6be | [
"MIT"
] | null | null | null | Engine/Engine/System/Debug.cpp | PawsEngine/Engine | 8a44cdd24b17227fdc3a3b52f1687d15f9ffe6be | [
"MIT"
] | 1 | 2021-05-16T15:52:16.000Z | 2021-05-16T15:52:16.000Z | #include "Engine/System/Debug.h"
#include <cstdio>
namespace Engine {
void DebugPrintInfo(const u8char* message) {
std::printf("%s\n", reinterpret_cast<const char*>(message));
}
void DebugPrintWarn(const char* func, const char* file, int line, const u8char* message) {
std::printf("\033[93m[WARNING] %s:\033[39m ... | 74.565217 | 228 | 0.672303 | PawsEngine |
44dabd16fb4f17f0afb47c5bd36daea427bba016 | 24,832 | cpp | C++ | test/test_log_manager.cpp | XingjZhang/braft | 4515147ea61822e181fe5f781063651d03de9170 | [
"Apache-2.0"
] | null | null | null | test/test_log_manager.cpp | XingjZhang/braft | 4515147ea61822e181fe5f781063651d03de9170 | [
"Apache-2.0"
] | null | null | null | test/test_log_manager.cpp | XingjZhang/braft | 4515147ea61822e181fe5f781063651d03de9170 | [
"Apache-2.0"
] | null | null | null | // Copyright (c) 2015 Baidu.com, Inc. All Rights Reserved
// Author: Zhangyi Chen (chenzhangyi01@baidu.com)
// Date: 2015/11/24 16:30:49
#include <gtest/gtest.h>
#include <butil/memory/scoped_ptr.h>
#include <butil/string_printf.h>
#include <butil/macros.h>
#include <bthread/countdown_event.h>
#include "braft/log_m... | 36.304094 | 99 | 0.596207 | XingjZhang |
44dc6d30a985c8a0c7ef9a78f5446affb355d2a2 | 496 | cpp | C++ | Online Judges/CodeForces/975AAramicScript.cpp | NelsonGomesNeto/ProgramC | e743b1b869f58f7f3022d18bac00c5e0b078562e | [
"MIT"
] | 3 | 2018-12-18T13:39:42.000Z | 2021-06-23T18:05:18.000Z | Online Judges/CodeForces/975AAramicScript.cpp | NelsonGomesNeto/ProgramC | e743b1b869f58f7f3022d18bac00c5e0b078562e | [
"MIT"
] | 1 | 2018-11-02T21:32:40.000Z | 2018-11-02T22:47:12.000Z | Online Judges/CodeForces/975AAramicScript.cpp | NelsonGomesNeto/ProgramC | e743b1b869f58f7f3022d18bac00c5e0b078562e | [
"MIT"
] | 6 | 2018-10-27T14:07:52.000Z | 2019-11-14T13:49:29.000Z | #include <bits/stdc++.h>
using namespace std;
int main()
{
int n; scanf("%d", &n);
set<string> obj;
char s[1001];
for (int i = 0; i < n; i ++)
{
scanf(" %s", s);
int letters[35]; memset(letters, 0, sizeof(letters));
for (int j = 0; s[j]; j ++)
letters[s[j] - 'a'] = 1;
char o[35], k = 0;... | 19.076923 | 57 | 0.451613 | NelsonGomesNeto |
44de7aaa86f8e76714bb3679289800cf7f7931ca | 1,784 | cpp | C++ | BCPNN/backend/full_cuda_backend/dataset.cpp | KTH-HPC/StreamBrain | 37b16e7c8e02e6d2800bcf89630a0f4419e90cd4 | [
"BSD-2-Clause"
] | 4 | 2020-10-20T22:15:25.000Z | 2022-02-10T10:25:24.000Z | BCPNN/backend/full_cuda_backend/dataset.cpp | KTH-HPC/StreamBrain | 37b16e7c8e02e6d2800bcf89630a0f4419e90cd4 | [
"BSD-2-Clause"
] | 1 | 2020-12-16T10:46:50.000Z | 2020-12-16T10:46:50.000Z | BCPNN/backend/full_cuda_backend/dataset.cpp | KTH-HPC/StreamBrain | 37b16e7c8e02e6d2800bcf89630a0f4419e90cd4 | [
"BSD-2-Clause"
] | 1 | 2020-10-20T22:15:29.000Z | 2020-10-20T22:15:29.000Z | #include "dataset.h"
#include <fstream>
namespace bcpnn {
dataset_t<uint8_t, uint8_t> read_mnist_dataset(char const* images_file,
char const* labels_file) {
dataset_t<uint8_t, uint8_t> dataset;
uint8_t u8;
uint32_t u32;
uint32_t num_images;
uint32_t num_labels... | 26.626866 | 79 | 0.697309 | KTH-HPC |
44dfbdaa5b90596cd9d29c0b8e73bc1338e6e159 | 1,834 | cpp | C++ | communicating_socket.cpp | tvaleev/simple-udp-server-client | 52685c7e808e89ed52e7017dfc6226ce3500a097 | [
"BSD-2-Clause"
] | null | null | null | communicating_socket.cpp | tvaleev/simple-udp-server-client | 52685c7e808e89ed52e7017dfc6226ce3500a097 | [
"BSD-2-Clause"
] | null | null | null | communicating_socket.cpp | tvaleev/simple-udp-server-client | 52685c7e808e89ed52e7017dfc6226ce3500a097 | [
"BSD-2-Clause"
] | null | null | null | #include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include "communicating_socket.h"
#include "socket_utils.h"
typedef void raw_type;
CommunicatingSocket::CommunicatingSocket(int type, int protocol)
: Socket(type, protocol) {
}
CommunicatingSocket::CommunicatingSocket(int newConnSD) : Socket... | 29.580645 | 92 | 0.706107 | tvaleev |
44e1f222268f4c1b12c62d74546ba35da97f3aa8 | 2,079 | cc | C++ | modules/prediction/common/junction_analyzer_test.cc | ghdawn/apollo | 002eba4a1635d6af7f1ebd2118464bca6f86b106 | [
"Apache-2.0"
] | 2 | 2019-01-15T08:34:59.000Z | 2019-01-15T08:35:00.000Z | modules/prediction/common/junction_analyzer_test.cc | thomasgui76/apollo | 808f1d20a08efea23b718b4e423d6619c9d4b412 | [
"Apache-2.0"
] | null | null | null | modules/prediction/common/junction_analyzer_test.cc | thomasgui76/apollo | 808f1d20a08efea23b718b4e423d6619c9d4b412 | [
"Apache-2.0"
] | null | null | null | /******************************************************************************
* Copyright 2018 The Apollo 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
... | 36.473684 | 79 | 0.700818 | ghdawn |
44e58eb4b426b3c9c9c34b4da22c5f0ce60e24c5 | 414 | hpp | C++ | src/stan/lang/ast/fun/fun_name_exists.hpp | drezap/stan | 9b319ed125e2a7d14d0c9c246d2f462dad668537 | [
"BSD-3-Clause"
] | 1 | 2019-07-05T01:40:40.000Z | 2019-07-05T01:40:40.000Z | src/stan/lang/ast/fun/fun_name_exists.hpp | drezap/stan | 9b319ed125e2a7d14d0c9c246d2f462dad668537 | [
"BSD-3-Clause"
] | null | null | null | src/stan/lang/ast/fun/fun_name_exists.hpp | drezap/stan | 9b319ed125e2a7d14d0c9c246d2f462dad668537 | [
"BSD-3-Clause"
] | 1 | 2020-07-14T11:36:09.000Z | 2020-07-14T11:36:09.000Z | #ifndef STAN_LANG_AST_FUN_FUN_NAME_EXISTS_HPP
#define STAN_LANG_AST_FUN_FUN_NAME_EXISTS_HPP
#include <string>
namespace stan {
namespace lang {
/**
* Return true if the function name has been declared as a
* built-in or by the user.
*
* @param name name of function
* @return true if ... | 19.714286 | 62 | 0.681159 | drezap |
44e67034d3523b25984223ad8cdf52146528a34d | 1,290 | cpp | C++ | Fw/Port/OutputPortBase.cpp | AlperenCetin0/fprime | 7e20febd34019c730da1358567e7a512592de4d8 | [
"Apache-2.0"
] | 9,182 | 2017-07-06T15:51:35.000Z | 2022-03-30T11:20:33.000Z | Fw/Port/OutputPortBase.cpp | AlperenCetin0/fprime | 7e20febd34019c730da1358567e7a512592de4d8 | [
"Apache-2.0"
] | 719 | 2017-07-14T17:56:01.000Z | 2022-03-31T02:41:35.000Z | Fw/Port/OutputPortBase.cpp | AlperenCetin0/fprime | 7e20febd34019c730da1358567e7a512592de4d8 | [
"Apache-2.0"
] | 1,216 | 2017-07-12T15:41:08.000Z | 2022-03-31T21:44:37.000Z | #include <FpConfig.hpp>
#include <Fw/Port/OutputPortBase.hpp>
#include <Fw/Types/BasicTypes.hpp>
#include <Os/Log.hpp>
#include <cstdio>
#include <Fw/Types/Assert.hpp>
namespace Fw {
OutputPortBase::OutputPortBase() : PortBase()
#if FW_PORT_SERIALIZATION == 1
,m_serPort(nullptr)
#endif
{
}
... | 22.631579 | 112 | 0.624031 | AlperenCetin0 |
44e7bc0d2fc90dab6eef82e6871b38b1ca0c562f | 974 | hpp | C++ | clammbon/include/test_tool.hpp | tnct-spc/procon2014 | c2df3257675db2adb9caa882b9026145801c6e4d | [
"MIT"
] | 1 | 2016-11-02T08:42:05.000Z | 2016-11-02T08:42:05.000Z | clammbon/include/test_tool.hpp | tnct-spc/procon2014 | c2df3257675db2adb9caa882b9026145801c6e4d | [
"MIT"
] | null | null | null | clammbon/include/test_tool.hpp | tnct-spc/procon2014 | c2df3257675db2adb9caa882b9026145801c6e4d | [
"MIT"
] | null | null | null | #ifndef CLAMMBON_TEST_TOOL_HPP
#define CLAMMBON_TEST_TOOL_HPP
#include <vector>
#include <iostream>
#include <boost/noncopyable.hpp>
#include "data_type.hpp"
namespace test_tool
{
class emulator : boost::noncopyable
{
public:
typedef std::vector<std::vector<point_type>> locate_type;
stru... | 23.756098 | 90 | 0.664271 | tnct-spc |
44e874c5c736acdaf0dc0d5c9008634b8fad548f | 2,251 | cxx | C++ | Qt/Components/pqLoadedFormObjectPanel.cxx | UV-CDAT/ParaView | 095ac28404a85fd86676491b8952884805842223 | [
"Apache-2.0"
] | 17 | 2015-02-17T00:30:26.000Z | 2022-03-17T06:13:02.000Z | Qt/Components/pqLoadedFormObjectPanel.cxx | UV-CDAT/ParaView | 095ac28404a85fd86676491b8952884805842223 | [
"Apache-2.0"
] | null | null | null | Qt/Components/pqLoadedFormObjectPanel.cxx | UV-CDAT/ParaView | 095ac28404a85fd86676491b8952884805842223 | [
"Apache-2.0"
] | 10 | 2015-08-31T18:20:17.000Z | 2022-02-02T15:16:21.000Z | /*=========================================================================
Program: ParaView
Module: pqLoadedFormObjectPanel.cxx
Copyright (c) 2005-2008 Sandia Corporation, Kitware Inc.
All rights reserved.
ParaView is a free software; you can redistribute it and/or modify it
under the terms of... | 29.233766 | 101 | 0.703687 | UV-CDAT |
44e8aa8a193f9093e0f5d90943c3bb41b4007f19 | 9,047 | cpp | C++ | source/MaterialXTest/MaterialXCore/Look.cpp | muenstc/MaterialX | b8365086a738fddae683065d78f65410aacd0dc4 | [
"BSD-3-Clause"
] | null | null | null | source/MaterialXTest/MaterialXCore/Look.cpp | muenstc/MaterialX | b8365086a738fddae683065d78f65410aacd0dc4 | [
"BSD-3-Clause"
] | null | null | null | source/MaterialXTest/MaterialXCore/Look.cpp | muenstc/MaterialX | b8365086a738fddae683065d78f65410aacd0dc4 | [
"BSD-3-Clause"
] | null | null | null | //
// TM & (c) 2017 Lucasfilm Entertainment Company Ltd. and Lucasfilm Ltd.
// All rights reserved. See LICENSE.txt for license.
//
#include <MaterialXTest/Catch/catch.hpp>
#include <MaterialXCore/Document.h>
#include <MaterialXFormat/XmlIo.h>
namespace mx = MaterialX;
TEST_CASE("Look", "[look]")
{
mx::Documen... | 42.275701 | 126 | 0.687631 | muenstc |
44e91b6f7a2492eba19372cf36601d39c7fe88cc | 119 | cpp | C++ | private/sources/kqueue/kqueue_async_service.cpp | rnichollx/rpnx-core | 9c7e3e54a729eafad4dba2bdc730ec2b88b8927c | [
"MIT"
] | 4 | 2020-11-23T23:27:32.000Z | 2022-03-06T03:46:51.000Z | private/sources/kqueue/kqueue_async_service.cpp | rpnx-net/rpnx-core | d579c3a159b624ee9115cb0633879ce716401ca1 | [
"MIT"
] | 20 | 2021-04-12T23:47:37.000Z | 2021-06-08T02:06:18.000Z | private/sources/kqueue/kqueue_async_service.cpp | rpnx-net/rpnx-core | d579c3a159b624ee9115cb0633879ce716401ca1 | [
"MIT"
] | null | null | null | // This file is an async_service implementation for Operating Systems that use KQueue (Mac OSX and BSD in particular)
| 39.666667 | 117 | 0.798319 | rnichollx |
44e9b5b20bcdf28824affe2e759e29ce9c137a81 | 7,905 | cpp | C++ | native/python/pyjp_value.cpp | mattooca/jpype | e1741e28818e1d4956834aa37b21a2bf3142b7a1 | [
"Apache-2.0"
] | null | null | null | native/python/pyjp_value.cpp | mattooca/jpype | e1741e28818e1d4956834aa37b21a2bf3142b7a1 | [
"Apache-2.0"
] | null | null | null | native/python/pyjp_value.cpp | mattooca/jpype | e1741e28818e1d4956834aa37b21a2bf3142b7a1 | [
"Apache-2.0"
] | null | null | null | /*****************************************************************************
Copyright 2004-2008 Steve Ménard
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... | 28.956044 | 114 | 0.647312 | mattooca |
44eb91efce60308b63c90825b1b66296f3bdb22c | 5,353 | cpp | C++ | src/RaceNet/TrainingGround.cpp | janisozaur/OpenNFS | d2bce25a3ab8ddab67e8b75e920cd60b832b279a | [
"MIT"
] | null | null | null | src/RaceNet/TrainingGround.cpp | janisozaur/OpenNFS | d2bce25a3ab8ddab67e8b75e920cd60b832b279a | [
"MIT"
] | null | null | null | src/RaceNet/TrainingGround.cpp | janisozaur/OpenNFS | d2bce25a3ab8ddab67e8b75e920cd60b832b279a | [
"MIT"
] | null | null | null | //
// Created by Amrik on 28/10/2018.
//
#include "TrainingGround.h"
TrainingGround::TrainingGround(uint16_t populationSize, uint16_t nGenerations, uint32_t nTicks, shared_ptr<ONFSTrack> training_track, shared_ptr<Car> training_car, std::shared_ptr<Logger> logger, GLFWwindow *gl_window) : window(gl_window), raceNetRe... | 42.824 | 275 | 0.662806 | janisozaur |
44ed848890ba80e2eb50899e6f2fbeb961d78074 | 19,039 | cpp | C++ | framework/test/driver/ServiceFactoryTest.cpp | dingxiangfei2009/CppMicroServices | 5be6d095be8531992f794cdbf21a154695f0833c | [
"Apache-2.0"
] | 1 | 2021-06-10T00:04:32.000Z | 2021-06-10T00:04:32.000Z | framework/test/driver/ServiceFactoryTest.cpp | dingxiangfei2009/CppMicroServices | 5be6d095be8531992f794cdbf21a154695f0833c | [
"Apache-2.0"
] | null | null | null | framework/test/driver/ServiceFactoryTest.cpp | dingxiangfei2009/CppMicroServices | 5be6d095be8531992f794cdbf21a154695f0833c | [
"Apache-2.0"
] | null | null | null | /*=============================================================================
Library: CppMicroServices
Copyright (c) The CppMicroServices developers. See the COPYRIGHT
file at the top-level directory of this distribution and at
https://github.com/CppMicroServices/CppMicroServices/COPYRIGHT .
Licensed un... | 38.307847 | 100 | 0.694942 | dingxiangfei2009 |
44ed95113a2a2fe4ef44ed6f80bd2af5579853ea | 18,519 | cc | C++ | dcmdata/libsrc/dchashdi.cc | chrisvana/dcmtk_copy | f929ab8590aca5b7a319c95af4fe2ee31be52f46 | [
"Apache-2.0"
] | 24 | 2015-07-22T05:07:51.000Z | 2019-02-28T04:52:33.000Z | dcmdata/libsrc/dchashdi.cc | chrisvana/dcmtk_copy | f929ab8590aca5b7a319c95af4fe2ee31be52f46 | [
"Apache-2.0"
] | 13 | 2015-07-23T05:43:02.000Z | 2021-07-17T17:14:45.000Z | dcmdata/libsrc/dchashdi.cc | chrisvana/dcmtk_copy | f929ab8590aca5b7a319c95af4fe2ee31be52f46 | [
"Apache-2.0"
] | 13 | 2015-07-23T01:07:30.000Z | 2021-01-05T09:49:30.000Z | /*
*
* Copyright (C) 1997-2010, OFFIS e.V.
* All rights reserved. See COPYRIGHT file for details.
*
* This software and supporting documentation were developed by
*
* OFFIS e.V.
* R&D Division Health
* Escherweg 2
* D-26121 Oldenburg, Germany
*
*
* Module: dcmdata
*
* Author: Andrew H... | 29.583067 | 109 | 0.575139 | chrisvana |
60213b414e92b438f37a265a7fe8111c15b17917 | 3,551 | cc | C++ | ash/components/device_activity/device_activity_client_unittest.cc | zealoussnow/chromium | fd8a8914ca0183f0add65ae55f04e287543c7d4a | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | 76 | 2020-09-02T03:05:41.000Z | 2022-03-30T04:40:55.000Z | ash/components/device_activity/device_activity_client_unittest.cc | zealoussnow/chromium | fd8a8914ca0183f0add65ae55f04e287543c7d4a | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | 45 | 2020-09-02T03:21:37.000Z | 2022-03-31T22:19:45.000Z | ash/components/device_activity/device_activity_client_unittest.cc | zealoussnow/chromium | fd8a8914ca0183f0add65ae55f04e287543c7d4a | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | 8 | 2020-07-22T18:49:18.000Z | 2022-02-08T10:27:16.000Z | // 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/components/device_activity/device_activity_client.h"
#include "base/test/task_environment.h"
#include "base/timer/mock_timer.h"
#include "c... | 33.5 | 80 | 0.72205 | zealoussnow |
60217bd90ef3a03ed10848aec6c3b146e98d2b0e | 3,011 | hpp | C++ | openstudiocore/src/shared_gui_components/OSListView.hpp | pepsi7959/OpenstudioThai | fb18afb8b983f71dd5eb171e753dac7d9a4b811b | [
"blessing"
] | 1 | 2015-06-28T09:06:24.000Z | 2015-06-28T09:06:24.000Z | openstudiocore/src/shared_gui_components/OSListView.hpp | pepsi7959/OpenstudioThai | fb18afb8b983f71dd5eb171e753dac7d9a4b811b | [
"blessing"
] | 11 | 2015-05-05T16:16:33.000Z | 2017-08-10T08:15:50.000Z | openstudiocore/src/shared_gui_components/OSListView.hpp | pepsi7959/OpenstudioThai | fb18afb8b983f71dd5eb171e753dac7d9a4b811b | [
"blessing"
] | 1 | 2017-09-23T12:51:13.000Z | 2017-09-23T12:51:13.000Z | /**********************************************************************
* Copyright (c) 2008-2015, Alliance for Sustainable Energy.
* All rights reserved.
*
* 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 ... | 27.87963 | 103 | 0.728662 | pepsi7959 |
6022674a06f864359a3d9c2a68bd583e2567f165 | 632 | cpp | C++ | Problems/008. String to Integer (atoi)/Test.cpp | DanielDFY/LeetCode | 5e39e3168db368617ac2f4509886f32cde5bd000 | [
"MIT"
] | null | null | null | Problems/008. String to Integer (atoi)/Test.cpp | DanielDFY/LeetCode | 5e39e3168db368617ac2f4509886f32cde5bd000 | [
"MIT"
] | null | null | null | Problems/008. String to Integer (atoi)/Test.cpp | DanielDFY/LeetCode | 5e39e3168db368617ac2f4509886f32cde5bd000 | [
"MIT"
] | null | null | null | #define CATCH_CONFIG_MAIN
#include "../../Utils/Cacth/single_include/catch2/catch.hpp"
#include "solution.h"
TEST_CASE("String to Integer (atoi)") {
Solution s;
SECTION("normal input") {
CHECK(s.myAtoi("42") == 42);
}
SECTION("input start with spaces") {
CHECK(s.myAtoi(" -42") == -4... | 23.407407 | 60 | 0.583861 | DanielDFY |
6022b97744f74a453993094ed6f83d4cfbd5e583 | 776 | hpp | C++ | core/api/service/state/state_jrpc_processor.hpp | FlorianFranzen/kagome | 27ee11c78767e72f0ecd2c515c77bebc2ff5758d | [
"Apache-2.0"
] | 110 | 2019-04-03T13:39:39.000Z | 2022-03-09T11:54:42.000Z | core/api/service/state/state_jrpc_processor.hpp | FlorianFranzen/kagome | 27ee11c78767e72f0ecd2c515c77bebc2ff5758d | [
"Apache-2.0"
] | 890 | 2019-03-22T21:33:30.000Z | 2022-03-31T14:31:22.000Z | core/api/service/state/state_jrpc_processor.hpp | FlorianFranzen/kagome | 27ee11c78767e72f0ecd2c515c77bebc2ff5758d | [
"Apache-2.0"
] | 27 | 2019-06-25T06:21:47.000Z | 2021-11-01T14:12:10.000Z | /**
* Copyright Soramitsu Co., Ltd. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef KAGOME_STATE_JRPC_PROCESSOR_HPP
#define KAGOME_STATE_JRPC_PROCESSOR_HPP
#include "api/jrpc/jrpc_processor.hpp"
#include "api/jrpc/jrpc_server_impl.hpp"
#include "api/service/state/state_api.hpp"
namespace ka... | 25.032258 | 58 | 0.728093 | FlorianFranzen |
60236342244b4f08dd3343abd7b34bae22b312d1 | 10,314 | hpp | C++ | src/layer.hpp | ktts16/mini-caffe | 58a5007d7921c69c9c3105b20b92b2136af26a4e | [
"BSD-3-Clause"
] | 413 | 2015-07-09T09:33:07.000Z | 2022-03-10T02:26:27.000Z | src/layer.hpp | ktts16/mini-caffe | 58a5007d7921c69c9c3105b20b92b2136af26a4e | [
"BSD-3-Clause"
] | 65 | 2015-07-10T01:38:10.000Z | 2020-08-06T07:27:42.000Z | src/layer.hpp | ktts16/mini-caffe | 58a5007d7921c69c9c3105b20b92b2136af26a4e | [
"BSD-3-Clause"
] | 196 | 2015-08-18T07:59:33.000Z | 2021-07-27T02:44:21.000Z | #ifndef CAFFE_LAYER_H_
#define CAFFE_LAYER_H_
#include <algorithm>
#include <string>
#include <vector>
#include "caffe/blob.hpp"
#include "./common.hpp"
#include "./layer_factory.hpp"
#include "./proto/caffe.pb.h"
namespace caffe {
/**
* @brief An interface for the units of computation which can be composed into a... | 35.081633 | 80 | 0.648051 | ktts16 |
6023fc2ae593221ef94d0bbb4d7c4ae36324dc4f | 16,401 | hpp | C++ | contrib/libboost/boost_1_62_0/boost/functional/forward_adapter.hpp | 189569400/ClickHouse | 0b8683c8c9f0e17446bef5498403c39e9cb483b8 | [
"Apache-2.0"
] | 918 | 2016-12-22T02:53:08.000Z | 2022-03-22T06:21:35.000Z | contrib/libboost/boost_1_62_0/boost/functional/forward_adapter.hpp | 189569400/ClickHouse | 0b8683c8c9f0e17446bef5498403c39e9cb483b8 | [
"Apache-2.0"
] | 369 | 2016-10-21T07:42:54.000Z | 2020-11-19T10:49:29.000Z | contrib/libboost/boost_1_62_0/boost/functional/forward_adapter.hpp | 189569400/ClickHouse | 0b8683c8c9f0e17446bef5498403c39e9cb483b8 | [
"Apache-2.0"
] | 534 | 2016-10-20T21:00:00.000Z | 2022-03-29T10:02:27.000Z | /*=============================================================================
Copyright (c) 2007-2008 Tobias Schwinger
Use modification and distribution are subject to 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). ... | 32.671315 | 91 | 0.554295 | 189569400 |
6024aefffe637beddb37039687919122f3c2fcc1 | 6,999 | cpp | C++ | Siv3D/src/Siv3D/ImageFormat/PNG/PNGEncoder.cpp | tas9n/OpenSiv3D | c561cba1d88eb9cd9606ba983fcc1120192d5615 | [
"MIT"
] | 2 | 2021-11-22T00:52:48.000Z | 2021-12-24T09:33:55.000Z | Siv3D/src/Siv3D/ImageFormat/PNG/PNGEncoder.cpp | tas9n/OpenSiv3D | c561cba1d88eb9cd9606ba983fcc1120192d5615 | [
"MIT"
] | null | null | null | Siv3D/src/Siv3D/ImageFormat/PNG/PNGEncoder.cpp | tas9n/OpenSiv3D | c561cba1d88eb9cd9606ba983fcc1120192d5615 | [
"MIT"
] | 1 | 2021-12-31T05:08:00.000Z | 2021-12-31T05:08:00.000Z | //-----------------------------------------------
//
// This file is part of the Siv3D Engine.
//
// Copyright (c) 2008-2022 Ryo Suzuki
// Copyright (c) 2016-2022 OpenSiv3D Project
//
// Licensed under the MIT License.
//
//-----------------------------------------------
# include <Siv3D/ImageFormat/PNGEncoder.hpp>
#... | 22.947541 | 155 | 0.703529 | tas9n |
6029396d5e20c8d3f4d5f41d7a4df30f6f12f053 | 2,198 | cc | C++ | src/composite/optimize/peel_dimension.cc | tianjiashuo/akg | a9cbf642063fb1086a93e8bc6be6feb145689817 | [
"Apache-2.0"
] | 286 | 2020-06-23T06:40:44.000Z | 2022-03-30T01:27:49.000Z | src/composite/optimize/peel_dimension.cc | tianjiashuo/akg | a9cbf642063fb1086a93e8bc6be6feb145689817 | [
"Apache-2.0"
] | 10 | 2020-07-31T03:26:59.000Z | 2021-12-27T15:00:54.000Z | src/composite/optimize/peel_dimension.cc | tianjiashuo/akg | a9cbf642063fb1086a93e8bc6be6feb145689817 | [
"Apache-2.0"
] | 30 | 2020-07-17T01:04:14.000Z | 2021-12-27T14:05:19.000Z | /**
* 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... | 36.633333 | 118 | 0.735214 | tianjiashuo |
602a979b1bad0c2a510c897bb3e5594572b7512c | 1,850 | cpp | C++ | Source/hud.cpp | OneSadCookie/Astro | 4b7de6fc7bff4010a0f9aa3ed6b9029e79a785b1 | [
"Zlib"
] | null | null | null | Source/hud.cpp | OneSadCookie/Astro | 4b7de6fc7bff4010a0f9aa3ed6b9029e79a785b1 | [
"Zlib"
] | null | null | null | Source/hud.cpp | OneSadCookie/Astro | 4b7de6fc7bff4010a0f9aa3ed6b9029e79a785b1 | [
"Zlib"
] | null | null | null | #include "hud.hpp"
#include "globals.hpp"
#include "main.hpp"
#include "ufo.hpp"
void hud_draw(int lives, unsigned long score, const world& w) {
int i;
float y = 2 * ufo::properties().averageRadius;
unsigned char score_string[128];
ufo life;
float scale;
glColor4f(1, 1, 1, 0.5);
for (i = 0; i < lives... | 23.125 | 88 | 0.658919 | OneSadCookie |
602b5b2cf413b8efa1fab81c067e46dad156a5e6 | 274 | cpp | C++ | 200119Zad01/zad01.cpp | elenazaharieva/fifthgrade | 60d1301c118b9f0cb4089d672fdf9e1780aedf80 | [
"Apache-2.0"
] | null | null | null | 200119Zad01/zad01.cpp | elenazaharieva/fifthgrade | 60d1301c118b9f0cb4089d672fdf9e1780aedf80 | [
"Apache-2.0"
] | null | null | null | 200119Zad01/zad01.cpp | elenazaharieva/fifthgrade | 60d1301c118b9f0cb4089d672fdf9e1780aedf80 | [
"Apache-2.0"
] | null | null | null | /*
* zad01.cpp
*
* Created on: Jan 19, 2020
* Author: eli
*/
#include <iostream>
using namespace std;
int main() {
int B;
int chislo;
int suma = 0;
cin >> B;
do {
cin >> chislo;
suma += chislo;
} while (suma <= B);
cout << suma << endl;
return 0;
}
| 11.913043 | 28 | 0.543796 | elenazaharieva |
602bbfc7140b3155dbd517deae98d7f8088c7c18 | 1,921 | hpp | C++ | modules/sdk/include/nt2/sdk/constant/eps_related.hpp | brycelelbach/nt2 | 73d7e8dd390fa4c8d251c6451acdae65def70e0b | [
"BSL-1.0"
] | 1 | 2022-03-24T03:35:10.000Z | 2022-03-24T03:35:10.000Z | modules/sdk/include/nt2/sdk/constant/eps_related.hpp | brycelelbach/nt2 | 73d7e8dd390fa4c8d251c6451acdae65def70e0b | [
"BSL-1.0"
] | null | null | null | modules/sdk/include/nt2/sdk/constant/eps_related.hpp | brycelelbach/nt2 | 73d7e8dd390fa4c8d251c6451acdae65def70e0b | [
"BSL-1.0"
] | null | null | null | /*******************************************************************************
* Copyright 2003 & onward LASMEA UMR 6602 CNRS/Univ. Clermont II
* Copyright 2009 & onward LRI UMR 8623 CNRS/Univ Paris Sud XI
*
* Distributed under the Boost Software License, Version 1.0.
* ... | 40.020833 | 80 | 0.637168 | brycelelbach |
6031d02aa3db17231cfb1c391c3bd805a361e4d6 | 4,907 | cpp | C++ | src/lib/ffi/ffi_cert.cpp | Sirrix-AG/botan | d2cb5601b28969b045762b66200f816639a9a763 | [
"BSD-2-Clause"
] | 16 | 2018-03-27T13:22:23.000Z | 2019-03-04T12:21:12.000Z | src/lib/ffi/ffi_cert.cpp | Sirrix-AG/botan | d2cb5601b28969b045762b66200f816639a9a763 | [
"BSD-2-Clause"
] | 2 | 2019-10-05T15:38:45.000Z | 2021-05-20T18:30:57.000Z | src/lib/ffi/ffi_cert.cpp | Sirrix-AG/botan | d2cb5601b28969b045762b66200f816639a9a763 | [
"BSD-2-Clause"
] | 3 | 2020-04-02T12:52:49.000Z | 2021-07-01T13:29:41.000Z | /*
* (C) 2015,2017 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/ffi.h>
#include <botan/internal/ffi_util.h>
#include <botan/internal/ffi_pkey.h>
#include <botan/x509cert.h>
#include <botan/data_src.h>
extern "C" {
using namespace Botan_FFI;
BOTAN_FFI_DECLARE... | 35.817518 | 132 | 0.715305 | Sirrix-AG |
6032c57b2dd21608241112da950d04839f32e68a | 1,777 | cpp | C++ | i4k/src/intro.cpp | unjello/intro_system | 33ffae5dd87044916e83b4db1e04206f8442a5d1 | [
"CC0-1.0"
] | 1 | 2021-03-19T12:41:07.000Z | 2021-03-19T12:41:07.000Z | i4k/src/intro.cpp | unjello/intro_system | 33ffae5dd87044916e83b4db1e04206f8442a5d1 | [
"CC0-1.0"
] | null | null | null | i4k/src/intro.cpp | unjello/intro_system | 33ffae5dd87044916e83b4db1e04206f8442a5d1 | [
"CC0-1.0"
] | null | null | null | //--------------------------------------------------------------------------//
// iq / rgba . tiny codes . 2008/2015 //
//--------------------------------------------------------------------------//
#include <cmath>
#include "system.h"
#include "fp.h"
#include "main.h"
static uns... | 25.028169 | 95 | 0.46314 | unjello |
6032ff1ef272513af1716a5519e7a7e994da0231 | 9,161 | cpp | C++ | source/core/intersector/accelerator/kd-tree/kdTreeAccelerator.cpp | xh5a5n6k6/cadise | 797b116b96d7d3989b58454422501f6ace04c4b8 | [
"MIT"
] | 33 | 2019-04-15T16:42:27.000Z | 2021-01-23T09:54:48.000Z | source/core/intersector/accelerator/kd-tree/kdTreeAccelerator.cpp | xh5a5n6k6/cadise | 797b116b96d7d3989b58454422501f6ace04c4b8 | [
"MIT"
] | null | null | null | source/core/intersector/accelerator/kd-tree/kdTreeAccelerator.cpp | xh5a5n6k6/cadise | 797b116b96d7d3989b58454422501f6ace04c4b8 | [
"MIT"
] | null | null | null | #include "core/intersector/accelerator/kd-tree/kdTreeAccelerator.h"
#include "core/intersector/accelerator/kd-tree/kdTreeBuilder.h"
#include "core/intersector/accelerator/kd-tree/kdTreeNodeInfo.h"
#include "core/ray.h"
#include "fundamental/assertion.h"
namespace cadise {
KdTreeAccelerator::KdTreeAccelerator(
co... | 36.066929 | 102 | 0.558673 | xh5a5n6k6 |
6033bf4ca2747987db836aef5eae2817bcba932a | 15,961 | cpp | C++ | src/widgets/CLabel.cpp | RoboticsDesignLab/chai3d | 66927fb9c81a173b988e1fc81cf6bfd57d69dcd7 | [
"BSD-3-Clause"
] | 75 | 2016-12-22T14:53:01.000Z | 2022-03-31T08:04:19.000Z | src/widgets/CLabel.cpp | RoboticsDesignLab/chai3d | 66927fb9c81a173b988e1fc81cf6bfd57d69dcd7 | [
"BSD-3-Clause"
] | 6 | 2017-04-03T21:27:16.000Z | 2019-08-28T17:05:23.000Z | src/widgets/CLabel.cpp | RoboticsDesignLab/chai3d | 66927fb9c81a173b988e1fc81cf6bfd57d69dcd7 | [
"BSD-3-Clause"
] | 53 | 2017-03-16T16:38:34.000Z | 2022-02-25T14:31:01.000Z | //==============================================================================
/*
Software License Agreement (BSD License)
Copyright (c) 2003-2016, CHAI3D.
(www.chai3d.org)
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are perm... | 37.118605 | 124 | 0.499217 | RoboticsDesignLab |
60370e303a635dd3ddecc4cf626830de410e66f5 | 2,498 | hpp | C++ | include/boost-1_34_1/boost/ptr_container/detail/map_iterator.hpp | memoryboxes/bitcoin_satoshi | efbe7e393c1ae3ee9f26a3040c423f176b1e48cd | [
"MIT"
] | 12 | 2019-10-29T01:42:55.000Z | 2021-11-14T18:33:43.000Z | include/boost-1_34_1/boost/ptr_container/detail/map_iterator.hpp | memoryboxes/bitcoin_satoshi | efbe7e393c1ae3ee9f26a3040c423f176b1e48cd | [
"MIT"
] | null | null | null | include/boost-1_34_1/boost/ptr_container/detail/map_iterator.hpp | memoryboxes/bitcoin_satoshi | efbe7e393c1ae3ee9f26a3040c423f176b1e48cd | [
"MIT"
] | 6 | 2019-10-29T08:02:35.000Z | 2021-07-30T16:57:29.000Z | //
// Boost.Pointer Container
//
// Copyright Thorsten Ottosen 2003-2005. Use, modification and
// distribution is subject to 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)
//
// For more information, see http://www.boost.org/li... | 28.386364 | 79 | 0.516813 | memoryboxes |
6038f35cbdc388f245825407664adec4577c467c | 251 | cpp | C++ | categorias/iniciante/c++/1114.cpp | carlos3g/URI-solutions | dc7f9b896cdff88aedf67611917b178d3ad60ab3 | [
"MIT"
] | 1 | 2022-01-26T23:38:17.000Z | 2022-01-26T23:38:17.000Z | categorias/iniciante/c++/1114.cpp | carlos3g/URI-solutions | dc7f9b896cdff88aedf67611917b178d3ad60ab3 | [
"MIT"
] | 1 | 2020-07-12T00:49:35.000Z | 2021-06-26T20:53:18.000Z | categorias/iniciante/c++/1114.cpp | carlos3g/URI-solutions | dc7f9b896cdff88aedf67611917b178d3ad60ab3 | [
"MIT"
] | 1 | 2020-07-04T03:27:04.000Z | 2020-07-04T03:27:04.000Z | #include <iostream>
#define PASS 2002
using namespace std;
int main() {
int input;
cin >> input;
while (input != PASS) {
cout << "Senha Invalida\n";
cin >> input;
}
cout << "Acesso Permitido\n";
return 0;
} | 13.944444 | 35 | 0.541833 | carlos3g |
603ca6aefadb0958e9dbdf6d4faf7dbccc3bbcc3 | 2,310 | cpp | C++ | src/interactivity/win32/consoleKeyInfo.cpp | hessedoneen/terminal | aa54de1d648f45920996aeba1edecc67237c6642 | [
"MIT"
] | 34,359 | 2019-05-06T21:04:42.000Z | 2019-05-14T22:06:43.000Z | src/interactivity/win32/consoleKeyInfo.cpp | Ingridamilsina/terminal | 788d33ce94d28e2903bc49f841ce279211b7f557 | [
"MIT"
] | 356 | 2019-05-06T21:03:35.000Z | 2019-05-14T21:38:47.000Z | src/interactivity/win32/consoleKeyInfo.cpp | Ingridamilsina/terminal | 788d33ce94d28e2903bc49f841ce279211b7f557 | [
"MIT"
] | 3,164 | 2019-05-06T21:06:01.000Z | 2019-05-14T20:25:52.000Z | // Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
#include "precomp.h"
#include "consoleKeyInfo.hpp"
// The following data structures are a hack to work around the fact that
// MapVirtualKey does not return the correct virtual key code in many cases.
// we store the correct info (from... | 26.860465 | 123 | 0.628139 | hessedoneen |
603f7aea274d3b9d4d8c50f42e7cbfa6fc57ae30 | 190 | cpp | C++ | competitive_programming/programming_contests/uri/password.cpp | LeandroTk/Algorithms | 569ed68eba3eeff902f8078992099c28ce4d7cd6 | [
"MIT"
] | 205 | 2018-12-01T17:49:49.000Z | 2021-12-22T07:02:27.000Z | competitive_programming/programming_contests/uri/password.cpp | LeandroTk/Algorithms | 569ed68eba3eeff902f8078992099c28ce4d7cd6 | [
"MIT"
] | 2 | 2020-01-01T16:34:29.000Z | 2020-04-26T19:11:13.000Z | competitive_programming/programming_contests/uri/password.cpp | LeandroTk/Algorithms | 569ed68eba3eeff902f8078992099c28ce4d7cd6 | [
"MIT"
] | 50 | 2018-11-28T20:51:36.000Z | 2021-11-29T04:08:25.000Z | // https://www.urionlinejudge.com.br/judge/en/problems/view/2146
#include <iostream>
using namespace std;
int main() {
int n;
while (cin >> n) {
cout << n-1 << endl;
}
return 0;
} | 12.666667 | 64 | 0.626316 | LeandroTk |
603fb3e33f0e2f0878495beddfab03b4d51c823a | 12,982 | cpp | C++ | src/dale/Form/Type/Type.cpp | ChengCat/dale | 4a764895611679cd1670d9a43ffdbee136661759 | [
"BSD-3-Clause"
] | null | null | null | src/dale/Form/Type/Type.cpp | ChengCat/dale | 4a764895611679cd1670d9a43ffdbee136661759 | [
"BSD-3-Clause"
] | null | null | null | src/dale/Form/Type/Type.cpp | ChengCat/dale | 4a764895611679cd1670d9a43ffdbee136661759 | [
"BSD-3-Clause"
] | null | null | null | #include "Type.h"
#include <cstdio>
#include <string>
#include <vector>
#include "../../Form/TopLevel/GlobalVariable/GlobalVariable.h"
#include "../../Units/Units.h"
#include "../Parameter/Parameter.h"
#include "../Struct/Struct.h"
#include "../Value/Value.h"
using namespace dale::ErrorInst;
static int anon_struct_... | 32.293532 | 72 | 0.529348 | ChengCat |
603fb99857ecfdfec3e4fcaf4858fa5f9f8bfd4b | 624 | hpp | C++ | TGEngine/public/graphics/GUIModule.hpp | Troblecodings/TGEngine | 09c845f6ad68f99e51fdd7f9139e45475010f3d9 | [
"Apache-2.0"
] | 9 | 2018-03-22T16:01:54.000Z | 2022-01-12T02:27:10.000Z | TGEngine/public/graphics/GUIModule.hpp | Troblecodings/TGEngine | 09c845f6ad68f99e51fdd7f9139e45475010f3d9 | [
"Apache-2.0"
] | 20 | 2018-03-11T12:35:55.000Z | 2020-02-19T17:36:47.000Z | TGEngine/public/graphics/GUIModule.hpp | Troblecodings/TGEngine | 09c845f6ad68f99e51fdd7f9139e45475010f3d9 | [
"Apache-2.0"
] | 6 | 2019-02-26T13:59:55.000Z | 2021-07-15T14:11:10.000Z | #pragma once
#include "../Module.hpp"
#include "GameGraphicsModule.hpp"
#include "WindowModule.hpp"
namespace tge::gui {
class GUIModule : public tge::main::Module {
public:
tge::graphics::WindowModule *winModule;
tge::graphics::APILayer *api;
void *pool;
void *buffer;
void *renderpass;
void *framebuff... | 18.352941 | 51 | 0.671474 | Troblecodings |
6041c522a9094b7342126553f6f21c0fa25cd960 | 312 | cc | C++ | src/main.cc | hedzr/hicc | c2a33afec2ff1f79c42ed9f888ad091710e7ae60 | [
"MIT"
] | null | null | null | src/main.cc | hedzr/hicc | c2a33afec2ff1f79c42ed9f888ad091710e7ae60 | [
"MIT"
] | null | null | null | src/main.cc | hedzr/hicc | c2a33afec2ff1f79c42ed9f888ad091710e7ae60 | [
"MIT"
] | null | null | null | #include <iostream>
#include "../include/core11.hh"
#include "hicc/hicc.hh"
void fatal_exit(const std::string &msg) {
std::cerr << msg << '\n';
exit(-1);
}
int main() {
std::string s1("a string", 2, 3);
std::cout << "Hello, World!" << s1 << '\n';
hicc_debug("ok");
return 0;
}
| 14.857143 | 47 | 0.535256 | hedzr |
6041ed1f1b6fe3caaefea953ec8b663423bc8c7c | 1,957 | cpp | C++ | LCS.cpp | shivamkrs89/DYNAMIC-PROGRAMMING | 7284918d61107ed9ac8092349b5289c69e628e2d | [
"MIT"
] | 2 | 2021-05-27T14:56:52.000Z | 2021-05-27T15:08:02.000Z | LCS.cpp | shivamkrs89/DYNAMIC-PROGRAMMING | 7284918d61107ed9ac8092349b5289c69e628e2d | [
"MIT"
] | null | null | null | LCS.cpp | shivamkrs89/DYNAMIC-PROGRAMMING | 7284918d61107ed9ac8092349b5289c69e628e2d | [
"MIT"
] | null | null | null | /*
Longest Common Subsequence
Given two sequences, find the length of longest subsequence present in both of them. Both the strings are of uppercase.
Example 1:
Input:
A = 6, B = 6
str1 = ABCDGH
str2 = AEDFHR
Output: 3
Explanation: LCS for input Sequences
“ABCDGH” and “AEDFHR” is “ADH” of
length 3.
Example 1:
Inpu... | 19.767677 | 189 | 0.58048 | shivamkrs89 |
604275d1b48b029296295a54a33ff8cc3e3291e5 | 820 | hpp | C++ | sparta/simdb/include/simdb/schema/ColumnTypedefs.hpp | knute-sifive/map | fb25626830a56ad68ab896bcd01929023ff31c48 | [
"MIT"
] | null | null | null | sparta/simdb/include/simdb/schema/ColumnTypedefs.hpp | knute-sifive/map | fb25626830a56ad68ab896bcd01929023ff31c48 | [
"MIT"
] | null | null | null | sparta/simdb/include/simdb/schema/ColumnTypedefs.hpp | knute-sifive/map | fb25626830a56ad68ab896bcd01929023ff31c48 | [
"MIT"
] | null | null | null | // <ColumnTypedefs> -*- C++ -*-
#ifndef __SIMDB_COLUMN_TYPEDEFS_H__
#define __SIMDB_COLUMN_TYPEDEFS_H__
#include <cstdint>
#include <cstddef>
#include <utility>
#include <string>
namespace simdb {
//! Data types supported by SimDB schemas
enum class ColumnDataType : int8_t {
int8_t,
uint8_t,
int16_t,
... | 18.222222 | 64 | 0.685366 | knute-sifive |
6047b468567f771dac6c62c948c09082fa6a3774 | 682 | cpp | C++ | tests/RadiansTests.cpp | kant/Sketchup-API-C-Wrapper | 807f450fc80d4111ac3a4f057013f300bca07bff | [
"MIT"
] | 20 | 2017-04-05T07:29:44.000Z | 2022-01-10T18:41:42.000Z | tests/RadiansTests.cpp | kant/Sketchup-API-C-Wrapper | 807f450fc80d4111ac3a4f057013f300bca07bff | [
"MIT"
] | 42 | 2017-05-21T07:47:14.000Z | 2019-10-31T16:19:00.000Z | tests/RadiansTests.cpp | kant/Sketchup-API-C-Wrapper | 807f450fc80d4111ac3a4f057013f300bca07bff | [
"MIT"
] | 9 | 2017-04-20T13:03:13.000Z | 2022-02-08T23:53:36.000Z | #include "gtest/gtest.h"
#include "SUAPI-CppWrapper/Geometry.hpp"
TEST(Radians, InitializeWithinRange)
{
CW::Radians radians(1.0);
ASSERT_DOUBLE_EQ(1.0, radians);
}
TEST(Radians, InitializeRollAroundPositive)
{
CW::Radians radians(7.0);
auto expected = 0.71681469282041377;
ASSERT_DOUBLE_EQ(expected, radia... | 23.517241 | 79 | 0.750733 | kant |
60483704b4c384f0503c5bdcdf909ec161334ca9 | 6,252 | cpp | C++ | resource/csdk/resource-directory/samples/rd_publishingClient.cpp | webispy/iotivity | 70154e7b27bbaa9feef0e625f9e0ee761d4de179 | [
"Apache-2.0"
] | 2 | 2019-10-02T08:36:35.000Z | 2020-11-27T05:42:34.000Z | iotivity/resource/csdk/resource-directory/samples/rd_publishingClient.cpp | 2nd-Chance/Fire-evacuation-guidance-system-IoT | 33031a8255fe1ae516ddd58f1baa808801cd3abf | [
"MIT"
] | 21 | 2019-10-02T08:31:36.000Z | 2021-12-09T21:46:49.000Z | resource/csdk/resource-directory/samples/rd_publishingClient.cpp | webispy/iotivity | 70154e7b27bbaa9feef0e625f9e0ee761d4de179 | [
"Apache-2.0"
] | 3 | 2020-05-11T07:06:42.000Z | 2020-11-27T05:42:37.000Z | //******************************************************************
//
// Copyright 2015 Samsung Electronics All Rights Reserved.
//
//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance... | 35.931034 | 99 | 0.511836 | webispy |
604bb7869e161d0ff0de2882a6eb1f8ea02779f6 | 26,591 | cpp | C++ | lib/Frontend/DiagnosticVerifier.cpp | francisvm/swift | 15e209ea2fde679ee78438d4ba949144acb7fee4 | [
"Apache-2.0"
] | 1 | 2018-01-11T07:08:30.000Z | 2018-01-11T07:08:30.000Z | lib/Frontend/DiagnosticVerifier.cpp | francisvm/swift | 15e209ea2fde679ee78438d4ba949144acb7fee4 | [
"Apache-2.0"
] | 153 | 2018-01-21T15:24:47.000Z | 2018-09-13T12:46:16.000Z | lib/Frontend/DiagnosticVerifier.cpp | francisvm/swift | 15e209ea2fde679ee78438d4ba949144acb7fee4 | [
"Apache-2.0"
] | 11 | 2017-12-13T08:08:15.000Z | 2019-06-18T14:27:32.000Z | //===--- DiagnosticVerifier.cpp - Diagnostic Verifier (-verify) -----------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/L... | 36.376197 | 101 | 0.625249 | francisvm |
604c0eb6edeb729ec1aec746438c2d4254fb2f75 | 1,357 | cpp | C++ | Motor2D/j1Label.cpp | knela96/Dev_class5_handout | ca137c8e696069bf1bb5709c97ceae79f280942b | [
"MIT"
] | null | null | null | Motor2D/j1Label.cpp | knela96/Dev_class5_handout | ca137c8e696069bf1bb5709c97ceae79f280942b | [
"MIT"
] | null | null | null | Motor2D/j1Label.cpp | knela96/Dev_class5_handout | ca137c8e696069bf1bb5709c97ceae79f280942b | [
"MIT"
] | null | null | null | #include "j1App.h"
#include "j1Render.h"
#include "j1Label.h"
#include "j1Fonts.h"
#include "p2Log.h"
#include "j1Textures.h"
#include "j1Textures.h"
#include "Brofiler\Brofiler.h"
j1Label::j1Label(fPoint position, p2SString text, int scale, int move, SDL_Texture* graphics, j1ElementGUI* parent, ElementUIType type) :... | 23 | 137 | 0.691231 | knela96 |
604c3d66594e2561d7a0e15ac2a20329cf4de1ae | 1,128 | cpp | C++ | playerpaddle.cpp | DDriggs00/Pong | 2da99d12e75e19201d9e50e414b1a78f1c33480e | [
"MIT"
] | null | null | null | playerpaddle.cpp | DDriggs00/Pong | 2da99d12e75e19201d9e50e414b1a78f1c33480e | [
"MIT"
] | null | null | null | playerpaddle.cpp | DDriggs00/Pong | 2da99d12e75e19201d9e50e414b1a78f1c33480e | [
"MIT"
] | null | null | null | #include "playerpaddle.h"
#include "game.h"
#include <QKeyEvent>
#include <QGraphicsItem>
extern game* g;
playerpaddle::playerpaddle(int h) {
setRect(0,0,20,100);
setPos(0,(h-100)/2);
setFlag(QGraphicsItem::ItemIsFocusable);
setFocus();
screenh = h;
}
//Up+Down Arrows
void playerpaddle::keyPress... | 22.56 | 66 | 0.465426 | DDriggs00 |
604e5c64e3641aa56163857d835936926f9f773c | 12,626 | hpp | C++ | external/armadillo-10.1.2/tmp/include/armadillo_bits/op_logmat_meat.hpp | hb407/libnome | cf11c6e34e6d147e28bfc6f54dd3ca81d2443438 | [
"MIT"
] | 55 | 2020-10-07T20:22:22.000Z | 2021-08-28T10:58:36.000Z | external/armadillo-10.1.2/tmp/include/armadillo_bits/op_logmat_meat.hpp | hb407/libnome | cf11c6e34e6d147e28bfc6f54dd3ca81d2443438 | [
"MIT"
] | 16 | 2020-12-06T22:02:38.000Z | 2021-08-19T09:37:56.000Z | external/armadillo-10.1.2/tmp/include/armadillo_bits/op_logmat_meat.hpp | hb407/libnome | cf11c6e34e6d147e28bfc6f54dd3ca81d2443438 | [
"MIT"
] | 11 | 2019-12-16T16:06:19.000Z | 2020-04-15T15:28:31.000Z | // Copyright 2008-2016 Conrad Sanderson (http://conradsanderson.id.au)
// Copyright 2008-2016 National ICT Australia (NICTA)
//
// 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... | 23.295203 | 154 | 0.591399 | hb407 |
604e99cf46428d2fd77b6008ef1e47c25aee8cd7 | 3,300 | cpp | C++ | src/tests/functional/inference_engine/lp_transformations/low_precision_transformations_test.cpp | ryanloney/openvino-1 | 4e0a740eb3ee31062ba0df88fcf438564f67edb7 | [
"Apache-2.0"
] | 1,127 | 2018-10-15T14:36:58.000Z | 2020-04-20T09:29:44.000Z | src/tests/functional/inference_engine/lp_transformations/low_precision_transformations_test.cpp | ryanloney/openvino-1 | 4e0a740eb3ee31062ba0df88fcf438564f67edb7 | [
"Apache-2.0"
] | 439 | 2018-10-20T04:40:35.000Z | 2020-04-19T05:56:25.000Z | src/tests/functional/inference_engine/lp_transformations/low_precision_transformations_test.cpp | ryanloney/openvino-1 | 4e0a740eb3ee31062ba0df88fcf438564f67edb7 | [
"Apache-2.0"
] | 414 | 2018-10-17T05:53:46.000Z | 2020-04-16T17:29:53.000Z | // Copyright (C) 2018-2022 Intel Corporation
// SPDX-License-Identifier: Apache-2.0
//
#include <gtest/gtest.h>
#include "low_precision/concat.hpp"
#include "low_precision/convolution.hpp"
#include "low_precision/mat_mul.hpp"
#include "low_precision/fuse_convert.hpp"
using namespace ::testing;
using namespace ngraph... | 46.478873 | 148 | 0.763636 | ryanloney |
604eda5c8cdc5a8d66efbeaad14b266cbed90143 | 4,624 | cpp | C++ | Salvare/main.cpp | rusucosmin/Cplusplus | 0e95cd01d20b22404aa4166c71d5a9e834a5a21b | [
"MIT"
] | 11 | 2015-08-29T13:41:22.000Z | 2020-01-08T20:34:06.000Z | Salvare/main.cpp | rusucosmin/Cplusplus | 0e95cd01d20b22404aa4166c71d5a9e834a5a21b | [
"MIT"
] | null | null | null | Salvare/main.cpp | rusucosmin/Cplusplus | 0e95cd01d20b22404aa4166c71d5a9e834a5a21b | [
"MIT"
] | 5 | 2016-01-20T18:17:01.000Z | 2019-10-30T11:57:15.000Z | #include <fstream>
#include <iostream>
#include <vector>
#include <bitset>
#include <string.h>
#include <algorithm>
#include <iomanip>
#include <math.h>
#include <time.h>
#include <stdlib.h>
#include <set>
#include <map>
#include <string>
#include <queue>
#include <cassert>
using namespace std;
const char infile[] = ... | 22.666667 | 86 | 0.467561 | rusucosmin |
604fe3d541cfc12556116a40a7cd82c09b30031a | 2,506 | cpp | C++ | B Problems/TIMUS1349 - Farm.cpp | UVE-R/CP-CPP | 67819f4115917f663c22ada899b27ace7b2e9b9e | [
"Unlicense"
] | 1 | 2021-08-24T21:05:28.000Z | 2021-08-24T21:05:28.000Z | B Problems/TIMUS1349 - Farm.cpp | UVE-R/CP-CPP | 67819f4115917f663c22ada899b27ace7b2e9b9e | [
"Unlicense"
] | null | null | null | B Problems/TIMUS1349 - Farm.cpp | UVE-R/CP-CPP | 67819f4115917f663c22ada899b27ace7b2e9b9e | [
"Unlicense"
] | null | null | null | # include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef long double ld;
typedef pair <int, int> pii;
typedef pair <pii, int> ppi;
typedef pair <int, pii> ... | 35.295775 | 132 | 0.343176 | UVE-R |
6054ed7731e661665bffa59ed2f1b41d03101ab1 | 6,759 | cpp | C++ | Siv3D/src/Siv3D-Platform/WindowsDesktop/Siv3D/Window/WindowProc.cpp | tetsurom/OpenSiv3D | 935525b9ad4f54966327ffa129227c956f08e231 | [
"MIT"
] | 709 | 2016-03-19T07:55:58.000Z | 2022-03-31T08:02:22.000Z | Siv3D/src/Siv3D-Platform/WindowsDesktop/Siv3D/Window/WindowProc.cpp | tetsurom/OpenSiv3D | 935525b9ad4f54966327ffa129227c956f08e231 | [
"MIT"
] | 415 | 2017-05-21T05:05:02.000Z | 2022-03-29T16:08:27.000Z | Siv3D/src/Siv3D-Platform/WindowsDesktop/Siv3D/Window/WindowProc.cpp | tetsurom/OpenSiv3D | 935525b9ad4f54966327ffa129227c956f08e231 | [
"MIT"
] | 123 | 2016-03-19T12:47:08.000Z | 2022-03-25T03:47:51.000Z | //-----------------------------------------------
//
// This file is part of the Siv3D Engine.
//
// Copyright (c) 2008-2021 Ryo Suzuki
// Copyright (c) 2016-2021 OpenSiv3D Project
//
// Licensed under the MIT License.
//
//-----------------------------------------------
# include <Siv3D/Error.hpp>
# include <Siv3D/E... | 21.663462 | 101 | 0.637224 | tetsurom |
605694f0cccea5188a2420b41942d03e8c882fef | 1,389 | cpp | C++ | lib/app/EnergyManager.cpp | dniklaus/batt-powered-device | a59a78a19453622007cf4b717fcfc8073cab0bc5 | [
"MIT"
] | null | null | null | lib/app/EnergyManager.cpp | dniklaus/batt-powered-device | a59a78a19453622007cf4b717fcfc8073cab0bc5 | [
"MIT"
] | null | null | null | lib/app/EnergyManager.cpp | dniklaus/batt-powered-device | a59a78a19453622007cf4b717fcfc8073cab0bc5 | [
"MIT"
] | null | null | null | /*
* EnergyManager.cpp
*
* Created on: 13.06.2019
* Author: dniklaus
*/
#include "main.h"
// #include "Timer.h"
#include "EnergyManager.h"
EnergyManager::EnergyManager()
{ }
EnergyManager::~EnergyManager()
{ }
void EnergyManager::enterMcuStopMode(uint32_t stopTimeMillis)
{
//if debugging:
#ifdef DEBUG
... | 23.15 | 89 | 0.716343 | dniklaus |
6056ea3bcf1f8838726b0c39c64cda15c493b5c8 | 9,707 | cc | C++ | net/cert/ct_serialization_unittest.cc | xzhan96/chromium.src | 1bd0cf3997f947746c0fc5406a2466e7b5f6159e | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | 1 | 2021-01-07T18:51:03.000Z | 2021-01-07T18:51:03.000Z | net/cert/ct_serialization_unittest.cc | emilio/chromium.src | 1bd0cf3997f947746c0fc5406a2466e7b5f6159e | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | null | null | null | net/cert/ct_serialization_unittest.cc | emilio/chromium.src | 1bd0cf3997f947746c0fc5406a2466e7b5f6159e | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | null | null | null | // Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "net/cert/ct_serialization.h"
#include <string>
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "net/base/test_com... | 36.908745 | 78 | 0.729989 | xzhan96 |
6057388ad1b26d8eab416803d9e5b3f46600481e | 49,242 | cpp | C++ | gdal/gcore/gdalpamrasterband.cpp | Esri/gdal | 8d9af5086ddb96f707ed281786a1cd278066a7f2 | [
"MIT"
] | 9 | 2019-05-30T17:01:56.000Z | 2021-01-30T01:06:41.000Z | gdal/gcore/gdalpamrasterband.cpp | Esri/gdal | 8d9af5086ddb96f707ed281786a1cd278066a7f2 | [
"MIT"
] | 4 | 2018-10-23T18:43:35.000Z | 2019-07-01T19:29:49.000Z | gdal/gcore/gdalpamrasterband.cpp | Esri/gdal | 8d9af5086ddb96f707ed281786a1cd278066a7f2 | [
"MIT"
] | 6 | 2019-02-03T14:19:32.000Z | 2021-12-19T06:36:49.000Z | /******************************************************************************
*
* Project: GDAL Core
* Purpose: Implementation of GDALPamRasterBand, a raster band base class
* that knows how to persistently store auxiliary metadata in an
* external xml file.
* Author: Frank Warmerdam, wa... | 35.708484 | 95 | 0.411722 | Esri |
605a9572ae1515ffb2c70eb9cec8529b1d2b5017 | 276 | cpp | C++ | Leetcode Solution/Arrays/Easy/1299. Replace Elements with Greatest Element on Right Side.cpp | bilwa496/Placement-Preparation | bd32ee717f671d95c17f524ed28b0179e0feb044 | [
"MIT"
] | 169 | 2021-05-30T10:02:19.000Z | 2022-03-27T18:09:32.000Z | Leetcode Solution/Arrays/Easy/1299. Replace Elements with Greatest Element on Right Side.cpp | bilwa496/Placement-Preparation | bd32ee717f671d95c17f524ed28b0179e0feb044 | [
"MIT"
] | 1 | 2021-10-02T14:46:26.000Z | 2021-10-02T14:46:26.000Z | Leetcode Solution/Arrays/Easy/1299. Replace Elements with Greatest Element on Right Side.cpp | bilwa496/Placement-Preparation | bd32ee717f671d95c17f524ed28b0179e0feb044 | [
"MIT"
] | 44 | 2021-05-30T19:56:29.000Z | 2022-03-17T14:49:00.000Z |
class Solution {
public:
vector<int> replaceElements(vector<int>& arr) {
int maxv = -1,temp;
for(int i=arr.size()-1;i>=0;i--)
{
temp = arr[i];
arr[i]=maxv;
maxv = max(maxv,temp);
}
return arr;
}
};
| 18.4 | 51 | 0.452899 | bilwa496 |
605c21f6e558f38f40c10cd0498b71e5f339440f | 38,026 | cc | C++ | src/poly/tiling/schtree_analyzer.cc | KnowingNothing/akg-test | 114d8626b824b9a31af50a482afc07ab7121862b | [
"Apache-2.0"
] | null | null | null | src/poly/tiling/schtree_analyzer.cc | KnowingNothing/akg-test | 114d8626b824b9a31af50a482afc07ab7121862b | [
"Apache-2.0"
] | null | null | null | src/poly/tiling/schtree_analyzer.cc | KnowingNothing/akg-test | 114d8626b824b9a31af50a482afc07ab7121862b | [
"Apache-2.0"
] | null | null | null | /**
* Copyright 2019 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.371342 | 119 | 0.596408 | KnowingNothing |
605ceb05dbdf44e088f8e7ba5f8dbbc841ff5504 | 259 | cpp | C++ | Hackerrank/Introduction/BasicDataTypes.cpp | i-see-pixels/Coffee-and-code | d0dde5417291f112bd7e0183b9753cfac38e135c | [
"MIT"
] | 12 | 2021-08-19T17:02:21.000Z | 2021-11-08T13:06:19.000Z | Hackerrank/Introduction/BasicDataTypes.cpp | i-see-pixels/Coffee-and-code | d0dde5417291f112bd7e0183b9753cfac38e135c | [
"MIT"
] | 11 | 2021-09-30T05:26:41.000Z | 2021-10-29T20:28:44.000Z | Hackerrank/Introduction/BasicDataTypes.cpp | i-see-pixels/Coffee-and-code | d0dde5417291f112bd7e0183b9753cfac38e135c | [
"MIT"
] | 29 | 2021-08-17T14:14:41.000Z | 2021-10-31T15:14:04.000Z | #include <iostream>
#include <cstdio>
using namespace std;
int main() {
int n;
long l;
char c;
float f;
double d;
scanf("%d%ld%*c%c%f%lf", &n, &l, &c, &f, &d);
printf("%d\n%ld\n%c\n%.3f\n%.9lf\n", n , l, c, f, d);
return 0;
}
| 17.266667 | 57 | 0.498069 | i-see-pixels |
605d87e7bcaaa4500f0365dd3c57d864ff56688e | 846 | cpp | C++ | Source/VoxelWorld/Application/Game/Crosshair.cpp | AirGuanZ/VoxelWorld | 8defdee9e2b8fb20607d33ba0f3a316b95273693 | [
"MIT"
] | 11 | 2018-01-15T16:05:44.000Z | 2021-06-27T09:00:08.000Z | Source/VoxelWorld/Application/Game/Crosshair.cpp | AirGuanZ/VoxelWorld | 8defdee9e2b8fb20607d33ba0f3a316b95273693 | [
"MIT"
] | null | null | null | Source/VoxelWorld/Application/Game/Crosshair.cpp | AirGuanZ/VoxelWorld | 8defdee9e2b8fb20607d33ba0f3a316b95273693 | [
"MIT"
] | 3 | 2018-03-01T06:33:37.000Z | 2021-07-03T10:35:02.000Z | /*================================================================
Filename: Crosshair.cpp
Date: 2018.1.23
Created by AirGuanZ
================================================================*/
#include <Resource\ResourceNameManager.h>
#include <Window\Window.h>
#include "Crosshair.h"
bool Crosshair::Initialize(void)
... | 30.214286 | 84 | 0.594563 | AirGuanZ |
60616bf10025a38d46ee1ec5377ee2947500d468 | 2,852 | cpp | C++ | tests/IoTeX/AddressTests.cpp | vladyslav-iosdev/wallet-core | 6f8f175a380bdf9756f38bfd82fedd9b73b67580 | [
"MIT"
] | 1,306 | 2019-08-08T13:25:24.000Z | 2022-03-31T23:32:28.000Z | tests/IoTeX/AddressTests.cpp | vladyslav-iosdev/wallet-core | 6f8f175a380bdf9756f38bfd82fedd9b73b67580 | [
"MIT"
] | 1,179 | 2019-08-08T07:06:10.000Z | 2022-03-31T12:33:47.000Z | tests/IoTeX/AddressTests.cpp | vladyslav-iosdev/wallet-core | 6f8f175a380bdf9756f38bfd82fedd9b73b67580 | [
"MIT"
] | 811 | 2019-08-08T13:27:44.000Z | 2022-03-31T21:22:53.000Z | // Copyright © 2017-2020 Trust Wallet.
//
// This file is part of Trust. The full Trust copyright notice, including
// terms governing use, modification, and redistribution, is contained in the
// file LICENSE at the root of the source code distribution tree.
#include <gtest/gtest.h>
#include "HexCoding.h"
#include "... | 36.101266 | 118 | 0.725806 | vladyslav-iosdev |
6064f5b687ba443515a025188a429f86a472ff62 | 265 | hpp | C++ | include/RED4ext/Scripting/Natives/Generated/quest/MultiplayerAIDirectorStatus.hpp | jackhumbert/RED4ext.SDK | 2c55eccb83beabbbe02abae7945af8efce638fca | [
"MIT"
] | 42 | 2020-12-25T08:33:00.000Z | 2022-03-22T14:47:07.000Z | include/RED4ext/Scripting/Natives/Generated/quest/MultiplayerAIDirectorStatus.hpp | jackhumbert/RED4ext.SDK | 2c55eccb83beabbbe02abae7945af8efce638fca | [
"MIT"
] | 38 | 2020-12-28T22:36:06.000Z | 2022-02-16T11:25:47.000Z | include/RED4ext/Scripting/Natives/Generated/quest/MultiplayerAIDirectorStatus.hpp | jackhumbert/RED4ext.SDK | 2c55eccb83beabbbe02abae7945af8efce638fca | [
"MIT"
] | 20 | 2020-12-28T22:17:38.000Z | 2022-03-22T17:19:01.000Z | #pragma once
// This file is generated from the Game's Reflection data
#include <cstdint>
namespace RED4ext
{
namespace quest {
enum class MultiplayerAIDirectorStatus : uint32_t
{
Enabled = 0,
Disabled = 1,
};
} // namespace quest
} // namespace RED4ext
| 16.5625 | 57 | 0.716981 | jackhumbert |
6066be9157e675d1efbd42822cb8395eae13447d | 12,631 | hpp | C++ | libs/boost_1_72_0/boost/move/algo/detail/pdqsort.hpp | henrywarhurst/matrix | 317a2a7c35c1c7e3730986668ad2270dc19809ef | [
"BSD-3-Clause"
] | null | null | null | libs/boost_1_72_0/boost/move/algo/detail/pdqsort.hpp | henrywarhurst/matrix | 317a2a7c35c1c7e3730986668ad2270dc19809ef | [
"BSD-3-Clause"
] | null | null | null | libs/boost_1_72_0/boost/move/algo/detail/pdqsort.hpp | henrywarhurst/matrix | 317a2a7c35c1c7e3730986668ad2270dc19809ef | [
"BSD-3-Clause"
] | null | null | null | //////////////////////////////////////////////////////////////////////////////
//
// (C) Copyright Orson Peters 2017.
// (C) Copyright Ion Gaztanaga 2017-2018.
// 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)
//
... | 34.416894 | 80 | 0.656243 | henrywarhurst |
6067424429414088effc449a9c689b47ae88ea88 | 9,998 | cc | C++ | src/mips64/debug-mips64.cc | arv/v8 | 79eb72c648fa215c0eac5917df63315d7f890ebc | [
"BSD-3-Clause-Clear",
"BSD-3-Clause"
] | 20 | 2015-08-26T06:46:00.000Z | 2019-02-27T09:05:58.000Z | src/mips64/debug-mips64.cc | HBOCodeLabs/v8 | 79eb72c648fa215c0eac5917df63315d7f890ebc | [
"BSD-3-Clause-Clear",
"BSD-3-Clause"
] | null | null | null | src/mips64/debug-mips64.cc | HBOCodeLabs/v8 | 79eb72c648fa215c0eac5917df63315d7f890ebc | [
"BSD-3-Clause-Clear",
"BSD-3-Clause"
] | 2 | 2015-08-26T05:49:35.000Z | 2020-02-03T20:22:43.000Z | // Copyright 2012 the V8 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.
#include "src/v8.h"
#if V8_TARGET_ARCH_MIPS64
#include "src/codegen.h"
#include "src/debug.h"
namespace v8 {
namespace internal {
void BreakLocati... | 33.438127 | 80 | 0.663133 | arv |
606aa4ef8e8f990d3dcfd018d1726394e1f6c20b | 7,383 | hpp | C++ | ThirdParty-mod/java2cpp/android/graphics/PathMeasure.hpp | kakashidinho/HQEngine | 8125b290afa7c62db6cc6eac14e964d8138c7fd0 | [
"MIT"
] | 1 | 2019-04-03T01:53:28.000Z | 2019-04-03T01:53:28.000Z | ThirdParty-mod/java2cpp/android/graphics/PathMeasure.hpp | kakashidinho/HQEngine | 8125b290afa7c62db6cc6eac14e964d8138c7fd0 | [
"MIT"
] | null | null | null | ThirdParty-mod/java2cpp/android/graphics/PathMeasure.hpp | kakashidinho/HQEngine | 8125b290afa7c62db6cc6eac14e964d8138c7fd0 | [
"MIT"
] | null | null | null | /*================================================================================
code generated by: java2cpp
author: Zoran Angelov, mailto://baldzar@gmail.com
class: android.graphics.PathMeasure
================================================================================*/
#ifndef J2CPP_INCLUDE_IMP... | 32.959821 | 142 | 0.732087 | kakashidinho |
606aadc755683f5255b12c9f898762b6f575d471 | 9,874 | cpp | C++ | cryptopp-CRYPTOPP_8_4_0/sm4_simd.cpp | sinipelto/secprog | ea5956f90472eec4513570813bf137b01cd3ec5a | [
"MIT"
] | 13 | 2020-05-01T02:03:14.000Z | 2022-02-03T17:48:26.000Z | cryptopp-CRYPTOPP_8_4_0/sm4_simd.cpp | sinipelto/secprog | ea5956f90472eec4513570813bf137b01cd3ec5a | [
"MIT"
] | 5 | 2021-01-22T11:58:21.000Z | 2022-01-21T21:06:17.000Z | cryptopp-CRYPTOPP_8_4_0/sm4_simd.cpp | sinipelto/secprog | ea5956f90472eec4513570813bf137b01cd3ec5a | [
"MIT"
] | 3 | 2021-01-22T09:05:50.000Z | 2022-01-12T09:16:44.000Z | // sm4_simd.cpp - written and placed in the public domain by
// Markku-Juhani O. Saarinen and Jeffrey Walton
//
// This source file uses intrinsics and built-ins to gain access to
// AESNI, ARM NEON and ARMv8a, and Power7 Altivec instructions. A separate
// source file is needed because addition... | 30.475309 | 99 | 0.693336 | sinipelto |
606cfbf5d512d352beedacd65728b048862463f2 | 2,219 | cpp | C++ | meeting-qt/meeting-app/meeting_app.cpp | GrowthEase/- | 5cc7cab95fc309049de8023ff618219dff22d773 | [
"MIT"
] | 48 | 2022-03-02T07:15:08.000Z | 2022-03-31T08:37:33.000Z | meeting-qt/meeting-app/meeting_app.cpp | chandarlee/Meeting | 9350fdea97eb2cdda28b8bffd9c4199de15460d9 | [
"MIT"
] | 1 | 2022-02-16T01:54:05.000Z | 2022-02-16T01:54:05.000Z | meeting-qt/meeting-app/meeting_app.cpp | chandarlee/Meeting | 9350fdea97eb2cdda28b8bffd9c4199de15460d9 | [
"MIT"
] | 9 | 2022-03-01T13:41:37.000Z | 2022-03-10T06:05:23.000Z | /**
* @copyright Copyright (c) 2021 NetEase, Inc. All rights reserved.
* Use of this source code is governed by a MIT license that can be found in the LICENSE file.
*/
#include "meeting_app.h"
#include <QUrl>
#include <QUrlQuery>
#include "nemeeting_sdk_manager.h"
MeetingApp::MeetingApp(int& argc, char*... | 36.983333 | 123 | 0.618297 | GrowthEase |
606dc6fb3ba7480c4d0e2d3d32f237c683bc213d | 414 | cpp | C++ | libraries/libc/assert.cpp | Rix565/skiftos-dailybuild | ef3abf0dda028b6d7b3e658946a031b1a1ba44c9 | [
"MIT"
] | 1,724 | 2019-03-02T18:31:16.000Z | 2022-03-31T18:35:42.000Z | libraries/libc/assert.cpp | Rix565/skiftos-dailybuild | ef3abf0dda028b6d7b3e658946a031b1a1ba44c9 | [
"MIT"
] | 280 | 2019-03-06T09:36:49.000Z | 2022-03-30T18:56:14.000Z | libraries/libc/assert.cpp | Rix565/skiftos-dailybuild | ef3abf0dda028b6d7b3e658946a031b1a1ba44c9 | [
"MIT"
] | 263 | 2019-03-14T15:04:12.000Z | 2022-03-26T19:28:36.000Z | #include <assert.h>
#include <stdlib.h>
#include <skift/Plugs.h>
static bool _nested = false;
void assert_failed(const char *expr, const char *file, const char *function, int line)
{
__plug_assert_failed(expr, file, function, line);
if (_nested)
{
// nested assert faillur...
exit(-1);
... | 16.56 | 86 | 0.601449 | Rix565 |
606dfc2cc247e232be3f548da59c54583d7a89bc | 4,267 | hpp | C++ | samples/deeplearning/gxm/include/Accuracy.hpp | mjanderson09/libxsmm | d8359effcbe456e1e7625c0b9b0cf5533ee0e370 | [
"BSD-3-Clause"
] | 1 | 2018-06-29T03:07:54.000Z | 2018-06-29T03:07:54.000Z | samples/deeplearning/gxm/include/Accuracy.hpp | qq332982511/libxsmm | e376c569252c042193ad2215857c35cfb598ec45 | [
"BSD-3-Clause"
] | 4 | 2018-03-19T18:18:22.000Z | 2018-07-05T05:09:09.000Z | samples/deeplearning/gxm/include/Accuracy.hpp | qq332982511/libxsmm | e376c569252c042193ad2215857c35cfb598ec45 | [
"BSD-3-Clause"
] | 5 | 2017-06-28T21:48:18.000Z | 2018-04-10T04:07:38.000Z | /******************************************************************************
** Copyright (c) 2017-2018, Intel Corporation **
** All rights reserved. **
** **
... | 34.691057 | 79 | 0.581673 | mjanderson09 |
606f9e19312fd2dd1be16d7527250852c016d8ff | 614 | cpp | C++ | code/tests/rlbox_glue/test_dylib_sandbox_glue.cpp | arkivm/rlbox_sandboxing_api | ad4513b1d88a17680bab8c2cac5783c1b616f686 | [
"MIT"
] | 207 | 2019-08-09T19:41:38.000Z | 2022-03-08T09:19:27.000Z | code/tests/rlbox_glue/test_dylib_sandbox_glue.cpp | arkivm/rlbox_sandboxing_api | ad4513b1d88a17680bab8c2cac5783c1b616f686 | [
"MIT"
] | 37 | 2019-08-09T03:21:17.000Z | 2022-03-07T22:16:14.000Z | code/tests/rlbox_glue/test_dylib_sandbox_glue.cpp | arkivm/rlbox_sandboxing_api | ad4513b1d88a17680bab8c2cac5783c1b616f686 | [
"MIT"
] | 15 | 2020-02-26T10:56:31.000Z | 2022-03-18T03:06:45.000Z | // NOLINTNEXTLINE
#define RLBOX_USE_EXCEPTIONS
#define RLBOX_ENABLE_DEBUG_ASSERTIONS
#define RLBOX_SINGLE_THREADED_INVOCATIONS
#include "rlbox_dylib_sandbox.hpp"
// NOLINTNEXTLINE
#define TestName "rlbox_dylib_sandbox"
// NOLINTNEXTLINE
#define TestType rlbox::rlbox_dylib_sandbox
#ifndef GLUE_LIB_PATH
# error "Missi... | 24.56 | 74 | 0.825733 | arkivm |
606fb5128a063ee56abea39b52b81c67c93384f9 | 3,373 | cpp | C++ | dogm/demo/utils/color_wheel_adder.cpp | andrey1908/dynamic-occupancy-grid-map | 132ba01361bebe1ce4f676d1637d5b8cf99e4ca3 | [
"MIT"
] | 98 | 2019-12-09T01:45:59.000Z | 2022-03-29T08:20:57.000Z | dogm/demo/utils/color_wheel_adder.cpp | andrey1908/dynamic-occupancy-grid-map | 132ba01361bebe1ce4f676d1637d5b8cf99e4ca3 | [
"MIT"
] | 59 | 2019-11-29T17:37:14.000Z | 2021-12-27T10:19:05.000Z | dogm/demo/utils/color_wheel_adder.cpp | andrey1908/dynamic-occupancy-grid-map | 132ba01361bebe1ce4f676d1637d5b8cf99e4ca3 | [
"MIT"
] | 26 | 2019-12-10T15:12:56.000Z | 2022-03-30T02:51:51.000Z | // Copyright (c) 2020 Michael Koesel and respective contributors
// SPDX-License-Identifier: MIT
// See accompanying LICENSE file for detailed information
#include "color_wheel_adder.h"
#include <opencv2/opencv.hpp>
static cv::Mat createCircularColorGradient(const int hue_offset)
{
// Set linear gradient (180 le... | 40.638554 | 110 | 0.698192 | andrey1908 |
6070e42474525a439fc3b2a7388ec5a7d2ab5909 | 1,750 | cpp | C++ | source/shared/cpp/ObjectModel/Separator.cpp | sivasakthiv/AdaptiveCards | dfa4bfef70c1111e1a5cc8eed90b2f1e8d76f75c | [
"MIT"
] | 1 | 2021-10-18T03:23:54.000Z | 2021-10-18T03:23:54.000Z | source/shared/cpp/ObjectModel/Separator.cpp | sivasakthiv/AdaptiveCards | dfa4bfef70c1111e1a5cc8eed90b2f1e8d76f75c | [
"MIT"
] | 43 | 2020-09-04T23:34:16.000Z | 2022-02-26T11:36:24.000Z | source/shared/cpp/ObjectModel/Separator.cpp | sivasakthiv/AdaptiveCards | dfa4bfef70c1111e1a5cc8eed90b2f1e8d76f75c | [
"MIT"
] | 16 | 2021-02-10T07:46:07.000Z | 2021-11-23T10:22:44.000Z | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
#include "pch.h"
#include "Separator.h"
#include "ParseUtil.h"
using namespace AdaptiveSharedNamespace;
Separator::Separator() : m_thickness(SeparatorThickness::Default), m_color(ForegroundColor::Default)
{
}
std::shared_... | 27.777778 | 139 | 0.772 | sivasakthiv |
607326b0aa6631d3f0987d47713b778501cb2b04 | 24,565 | cpp | C++ | Beeftext/Group/GroupList.cpp | xmidev/Beeftext | 17dfcc74bf51c20186c35d34a3c2c39175d4fadd | [
"MIT"
] | null | null | null | Beeftext/Group/GroupList.cpp | xmidev/Beeftext | 17dfcc74bf51c20186c35d34a3c2c39175d4fadd | [
"MIT"
] | null | null | null | Beeftext/Group/GroupList.cpp | xmidev/Beeftext | 17dfcc74bf51c20186c35d34a3c2c39175d4fadd | [
"MIT"
] | null | null | null | /// \file
/// \author Xavier Michelon
///
/// \brief Implementation of combo group list class
///
/// Copyright (c) Xavier Michelon. All rights reserved.
/// Licensed under the MIT License. See LICENSE file in the project root for full license information.
#include "stdafx.h"
#include "GroupList.h"
#include "Comb... | 41.285714 | 165 | 0.405699 | xmidev |
6074165c0802ac63a4e66751de461abdd50a1fef | 2,048 | cpp | C++ | Source/src/Main.cpp | Akita-Interactive/Hachiko-Engine | 0e3e0377ac5c8f5b15c525c8fcff384e9c92c14b | [
"MIT"
] | 5 | 2022-02-10T23:31:11.000Z | 2022-02-11T19:32:38.000Z | Source/src/Main.cpp | Akita-Interactive/Hachiko-Engine | 0e3e0377ac5c8f5b15c525c8fcff384e9c92c14b | [
"MIT"
] | null | null | null | Source/src/Main.cpp | Akita-Interactive/Hachiko-Engine | 0e3e0377ac5c8f5b15c525c8fcff384e9c92c14b | [
"MIT"
] | null | null | null | #include "core/hepch.h"
#include "instrumentation/MemoryLeaks.h"
enum class MainStates
{
MAIN_CREATION,
MAIN_START,
MAIN_UPDATE,
MAIN_FINISH,
MAIN_EXIT
};
Hachiko::Application* App = nullptr;
int main(int argc, char** argv)
{
_CrtSetDbgFlag(_CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF);
... | 25.6 | 86 | 0.517578 | Akita-Interactive |
6077d375e89864b8b6850e6541af14d71314e618 | 1,833 | cpp | C++ | examples/simpleMultithread.cpp | Klirxel/DataFlowFramework | 5da51e794a4dac613e1fed96d3e8da68af6d7203 | [
"BSL-1.0"
] | null | null | null | examples/simpleMultithread.cpp | Klirxel/DataFlowFramework | 5da51e794a4dac613e1fed96d3e8da68af6d7203 | [
"BSL-1.0"
] | null | null | null | examples/simpleMultithread.cpp | Klirxel/DataFlowFramework | 5da51e794a4dac613e1fed96d3e8da68af6d7203 | [
"BSL-1.0"
] | null | null | null | /*
* Copyright Schwenk, Kurt <Kurt.Schwenk@gmx.de> 2020
* 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)
*/
#include <iostream>
#include <dataflow/dataflow.h>
using namespace dataflow;
/... | 33.944444 | 97 | 0.661757 | Klirxel |
607a143e54fb06eba2922a2b567f30ec3bc24752 | 6,297 | hpp | C++ | 3rdParty/taocpp-json/include/tao/json/jaxn/internal/errors.hpp | rajeev02101987/arangodb | 817e6c04cb82777d266f3b444494140676da98e2 | [
"Apache-2.0"
] | 12,278 | 2015-01-29T17:11:33.000Z | 2022-03-31T21:12:00.000Z | 3rdParty/taocpp-json/include/tao/json/jaxn/internal/errors.hpp | rajeev02101987/arangodb | 817e6c04cb82777d266f3b444494140676da98e2 | [
"Apache-2.0"
] | 9,469 | 2015-01-30T05:33:07.000Z | 2022-03-31T16:17:21.000Z | 3rdParty/taocpp-json/include/tao/json/jaxn/internal/errors.hpp | rajeev02101987/arangodb | 817e6c04cb82777d266f3b444494140676da98e2 | [
"Apache-2.0"
] | 892 | 2015-01-29T16:26:19.000Z | 2022-03-20T07:44:30.000Z | // Copyright (c) 2017-2020 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/
#ifndef TAO_JSON_JAXN_INTERNAL_ERRORS_HPP
#define TAO_JSON_JAXN_INTERNAL_ERRORS_HPP
#include <string>
#include "../../external/pegtl/normal.hpp"
#include "../../external/pegtl/parse_... | 57.770642 | 131 | 0.67953 | rajeev02101987 |
607b622c3dbad5d98fa7a99c3da10227be999a66 | 5,508 | cpp | C++ | pynomial/extern/nanoflann/examples/pointcloud_adaptor_example.cpp | PaulDodd/pynomial | 8da81bf37ee96b8e3c49b40cdfcae075ba667632 | [
"Apache-2.0"
] | 13 | 2019-08-15T12:16:54.000Z | 2022-03-29T02:45:18.000Z | 3rdparty/nanoflann/examples/pointcloud_adaptor_example.cpp | giangrocker/wrinkledface | 8fc0e7062221949eab90789a33b91b3acaa1fc7f | [
"Apache-2.0"
] | 2 | 2019-11-28T05:19:55.000Z | 2019-12-17T01:32:50.000Z | 3rdparty/nanoflann/examples/pointcloud_adaptor_example.cpp | giangrocker/wrinkledface | 8fc0e7062221949eab90789a33b91b3acaa1fc7f | [
"Apache-2.0"
] | 4 | 2019-09-03T12:11:12.000Z | 2020-12-21T08:36:43.000Z | /***********************************************************************
* Software License Agreement (BSD License)
*
* Copyright 2011-2016 Jose Luis Blanco (joseluisblancoc@gmail.com).
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted p... | 31.83815 | 123 | 0.694808 | PaulDodd |
607f8c631ee79dc4868a176c60a462c7eccf98b2 | 7,957 | cpp | C++ | 01_Develop/libXMFFmpeg/Source/libavcodec/ac3.cpp | mcodegeeks/OpenKODE-Framework | d4382d781da7f488a0e7667362a89e8e389468dd | [
"MIT"
] | 2 | 2017-08-03T07:15:00.000Z | 2018-06-18T10:32:53.000Z | 01_Develop/libXMFFmpeg/Source/libavcodec/ac3.cpp | mcodegeeks/OpenKODE-Framework | d4382d781da7f488a0e7667362a89e8e389468dd | [
"MIT"
] | null | null | null | 01_Develop/libXMFFmpeg/Source/libavcodec/ac3.cpp | mcodegeeks/OpenKODE-Framework | d4382d781da7f488a0e7667362a89e8e389468dd | [
"MIT"
] | 2 | 2019-03-04T22:57:42.000Z | 2020-03-06T01:32:26.000Z | /*
* Common code between the AC-3 encoder and decoder
* Copyright (c) 2000 Fabrice Bellard
*
* This file is part of FFmpeg.
*
* FFmpeg 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
* v... | 34.297414 | 104 | 0.549202 | mcodegeeks |
607faaf09411c3a1c5bebaa4ad001fef83c4a0ce | 716 | cpp | C++ | CppPrimer/Content/Ch10_GenericAlgorithm/Ch10_03_lambda_05.cpp | ltimaginea/Cpp-Primer | a894d90cee2128a992c589c5c855457a6b5d71de | [
"MIT"
] | 1 | 2022-03-22T08:02:37.000Z | 2022-03-22T08:02:37.000Z | CppPrimer/Content/Ch10_GenericAlgorithm/Ch10_03_lambda_05.cpp | ltimaginea/Cpp-Primer | a894d90cee2128a992c589c5c855457a6b5d71de | [
"MIT"
] | null | null | null | CppPrimer/Content/Ch10_GenericAlgorithm/Ch10_03_lambda_05.cpp | ltimaginea/Cpp-Primer | a894d90cee2128a992c589c5c855457a6b5d71de | [
"MIT"
] | null | null | null | #include <iostream>
#include <future>
#include <thread>
using namespace std;
/*
* C++14还添加了广义捕获的概念,因此可以捕获表达式的结果,而不是对局部变量的直接拷贝或引用。最常见的方法是通过移动只移动的类型来捕获类型,而不是通过引用来捕获。
* 这里,promise通过p=std::move(p)捕获移到Lambda中,因此可以安全地分离线程,从而不用担心对局部变量的悬空引用。构建Lambda之后,p处于转移过来的状态,这就是为什么需要提前获得future的原因。
*/
future<int> spawn_async_task()
{
... | 23.096774 | 113 | 0.671788 | ltimaginea |
6082e030980679cff185831641e6a3c83158d84c | 11,532 | cpp | C++ | aspects/fluid/conductor/test/UtGunnsDriveShaftSpotter.cpp | nasa/gunns | 248323939a476abe5178538cd7a3512b5f42675c | [
"NASA-1.3"
] | 18 | 2020-01-23T12:14:09.000Z | 2022-02-27T22:11:35.000Z | aspects/fluid/conductor/test/UtGunnsDriveShaftSpotter.cpp | nasa/gunns | 248323939a476abe5178538cd7a3512b5f42675c | [
"NASA-1.3"
] | 39 | 2020-11-20T12:19:35.000Z | 2022-02-22T18:45:55.000Z | aspects/fluid/conductor/test/UtGunnsDriveShaftSpotter.cpp | nasa/gunns | 248323939a476abe5178538cd7a3512b5f42675c | [
"NASA-1.3"
] | 7 | 2020-02-10T19:25:43.000Z | 2022-03-16T01:10:00.000Z | /************************** TRICK HEADER ***********************************************************
@copyright Copyright 2019 United States Government as represented by the Administrator of the
National Aeronautics and Space Administration. All Rights Reserved.
LIBRARY DEPENDENCY:
((GunnsDriveShaftSpotte... | 40.181185 | 100 | 0.582553 | nasa |
60839bed0c96cbdc5f8a5b7a994d962bda6f82ee | 13,493 | hpp | C++ | tiny_fs/utilities.hpp | iamOgunyinka/tinydircpp | a147889c418dc6f81f868a56c13fe797dbf58357 | [
"MIT"
] | 12 | 2015-06-29T14:06:08.000Z | 2022-02-21T14:47:46.000Z | tiny_fs/utilities.hpp | iamOgunyinka/tinydircpp | a147889c418dc6f81f868a56c13fe797dbf58357 | [
"MIT"
] | 2 | 2015-05-28T02:37:52.000Z | 2019-01-31T14:20:54.000Z | tiny_fs/utilities.hpp | iamOgunyinka/tinydircpp | a147889c418dc6f81f868a56c13fe797dbf58357 | [
"MIT"
] | 3 | 2017-06-20T05:13:34.000Z | 2020-03-02T00:28:29.000Z | /*
Copyright (c) 2019 - Joshua Ogunyinka
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 and the followi... | 34.073232 | 121 | 0.543689 | iamOgunyinka |
6084ace8ad71f884de7348c21c35da29b4af00d8 | 3,635 | hpp | C++ | src/shared/traits/gta3/iii.hpp | gtaisbetterthanfn/modloader | 18f85c2766d4e052a452c7b1d8f5860a6daac24b | [
"MIT"
] | 186 | 2015-01-18T05:46:11.000Z | 2022-03-22T10:03:44.000Z | src/shared/traits/gta3/iii.hpp | AlisonMDL/modloader | 18f85c2766d4e052a452c7b1d8f5860a6daac24b | [
"MIT"
] | 82 | 2015-01-14T01:02:04.000Z | 2022-03-20T23:55:59.000Z | src/shared/traits/gta3/iii.hpp | AlisonMDL/modloader | 18f85c2766d4e052a452c7b1d8f5860a6daac24b | [
"MIT"
] | 34 | 2015-01-07T11:17:00.000Z | 2022-02-28T00:16:20.000Z | /*
* Copyright (C) 2016 LINK/2012 <dma_2012@hotmail.com>
* Licensed under the MIT License, see LICENSE at top level directory.
*
* Most of things game version dependent (not being addressed by the addr translator) should be handled by the game trait
*
*/
#pragma once
#include "base.hpp"
struct TraitsIII : TraitsGTA
... | 28.398438 | 126 | 0.646217 | gtaisbetterthanfn |
6084e1a9e02c7d5bc5206d4a1d8b24b492842ff8 | 25,475 | cc | C++ | src/carnot/planner/objects/dataframe.cc | hangqiu/pixie | 1dd4af47d40ff856c4d52a1d6de81f78a76ff31e | [
"Apache-2.0"
] | 1 | 2022-01-17T01:40:08.000Z | 2022-01-17T01:40:08.000Z | src/carnot/planner/objects/dataframe.cc | hangqiu/pixie | 1dd4af47d40ff856c4d52a1d6de81f78a76ff31e | [
"Apache-2.0"
] | 1 | 2022-03-11T23:23:50.000Z | 2022-03-11T23:23:50.000Z | src/carnot/planner/objects/dataframe.cc | hangqiu/pixie | 1dd4af47d40ff856c4d52a1d6de81f78a76ff31e | [
"Apache-2.0"
] | null | null | null | /*
* Copyright 2018- The Pixie 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 ag... | 46.150362 | 100 | 0.618724 | hangqiu |
6087d9ba55d4bc1b39ef5ba3306101323ae83bcd | 1,730 | cpp | C++ | contrib/nlohmann.cpp | avsej/json | cf1575f51636d56abc98a9a476920f45a4b22d38 | [
"BSD-3-Clause",
"Apache-2.0",
"MIT"
] | 495 | 2015-11-24T06:05:14.000Z | 2022-03-24T12:04:04.000Z | contrib/nlohmann.cpp | avsej/json | cf1575f51636d56abc98a9a476920f45a4b22d38 | [
"BSD-3-Clause",
"Apache-2.0",
"MIT"
] | 104 | 2016-01-26T01:36:20.000Z | 2022-02-23T12:10:13.000Z | contrib/nlohmann.cpp | avsej/json | cf1575f51636d56abc98a9a476920f45a4b22d38 | [
"BSD-3-Clause",
"Apache-2.0",
"MIT"
] | 85 | 2016-10-09T14:00:49.000Z | 2022-02-17T18:06:22.000Z | // Copyright (c) 2016-2020 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/
#include "test.hpp"
#include "nlohmann/from_value.hpp"
#include "nlohmann/json.hpp"
#include "nlohmann/to_value.hpp"
#include <tao/json/events/from_string.hpp>
#include <tao/json/eve... | 35.306122 | 146 | 0.559538 | avsej |
608893c315af904d04883754fd84e6d1c51eea45 | 652 | cpp | C++ | demo/arduino-due/blink-poll/main.cpp | wovo/hwcpp | 2462db6b360e585fd0c8c8c23fac2e5db24f52a0 | [
"BSL-1.0"
] | 21 | 2017-05-24T21:44:29.000Z | 2021-03-24T05:41:14.000Z | demo/arduino-due/blink-poll/main.cpp | wovo/hwcpp | 2462db6b360e585fd0c8c8c23fac2e5db24f52a0 | [
"BSL-1.0"
] | 3 | 2017-11-21T14:44:13.000Z | 2018-03-02T11:55:05.000Z | demo/arduino-due/blink-poll/main.cpp | wovo/hwcpp | 2462db6b360e585fd0c8c8c23fac2e5db24f52a0 | [
"BSL-1.0"
] | 2 | 2018-02-23T12:13:45.000Z | 2019-07-10T17:29:15.000Z | #include "hwcpp.hpp"
using target = hwcpp::target<>;
template< hwcpp::can_pin_out _led, typename interval >
struct blinker :
interval:: template callback< struct blinker< _led, interval > >
{
using led = hwcpp::pin_out< _led >;
static inline bool led_state = 0;
static void init(){
led::in... | 23.285714 | 75 | 0.608896 | wovo |
6089c5d0f3a1ff13d618740a01b0fbd95862ebf0 | 5,830 | cpp | C++ | external/cfmesh/utilities/surfaceGenerateBoundingBox/surfaceGenerateBoundingBox.cpp | MrAwesomeRocks/caelus-cml | 55b6dc5ba47d0e95c07412d9446ac72ac11d7fd7 | [
"mpich2"
] | null | null | null | external/cfmesh/utilities/surfaceGenerateBoundingBox/surfaceGenerateBoundingBox.cpp | MrAwesomeRocks/caelus-cml | 55b6dc5ba47d0e95c07412d9446ac72ac11d7fd7 | [
"mpich2"
] | null | null | null | external/cfmesh/utilities/surfaceGenerateBoundingBox/surfaceGenerateBoundingBox.cpp | MrAwesomeRocks/caelus-cml | 55b6dc5ba47d0e95c07412d9446ac72ac11d7fd7 | [
"mpich2"
] | null | null | null | /*---------------------------------------------------------------------------*\
Copyright (C) Creative Fields, Ltd.
-------------------------------------------------------------------------------
License
This file is part of cfMesh.
cfMesh is free software; you can redistribute it and/or modify it
under th... | 32.937853 | 79 | 0.594511 | MrAwesomeRocks |
608a83c7c73ff8d9cf6622b5f5e58dc01889b5e0 | 8,234 | cpp | C++ | src/core/SkEdgeBuilder.cpp | Frankie-666/color-emoji.skia | f1634a9952086155b9069d49ab91f1fa43b5ec6a | [
"BSD-3-Clause"
] | 39 | 2015-12-12T23:40:51.000Z | 2021-11-01T06:04:55.000Z | src/core/SkEdgeBuilder.cpp | Frankie-666/color-emoji.skia | f1634a9952086155b9069d49ab91f1fa43b5ec6a | [
"BSD-3-Clause"
] | 2 | 2017-07-25T09:37:22.000Z | 2017-08-04T07:18:56.000Z | src/core/SkEdgeBuilder.cpp | Frankie-666/color-emoji.skia | f1634a9952086155b9069d49ab91f1fa43b5ec6a | [
"BSD-3-Clause"
] | 30 | 2015-02-28T12:23:06.000Z | 2021-11-01T06:04:57.000Z |
/*
* Copyright 2011 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "SkEdgeBuilder.h"
#include "SkPath.h"
#include "SkEdge.h"
#include "SkEdgeClipper.h"
#include "SkLineClipper.h"
#include "SkGeometry.h"
template <typename T> static ... | 34.165975 | 82 | 0.491863 | Frankie-666 |
608abb26e24b112960f28886c0faa22af34487f1 | 14,796 | cpp | C++ | third_party/skia_m63/src/core/SkThreadedBMPDevice.cpp | kniefliu/WindowsSamples | c841268ef4a0f1c6f89b8e95bf68058ea2548394 | [
"MIT"
] | 2 | 2018-02-20T15:49:51.000Z | 2018-08-22T13:52:30.000Z | third_party/skia_m63/src/core/SkThreadedBMPDevice.cpp | kniefliu/WindowsSamples | c841268ef4a0f1c6f89b8e95bf68058ea2548394 | [
"MIT"
] | 2 | 2019-03-14T10:26:45.000Z | 2021-08-06T01:24:06.000Z | third_party/skia_m63/src/core/SkThreadedBMPDevice.cpp | kniefliu/WindowsSamples | c841268ef4a0f1c6f89b8e95bf68058ea2548394 | [
"MIT"
] | 1 | 2019-09-15T04:51:52.000Z | 2019-09-15T04:51:52.000Z | /*
* Copyright 2017 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "SkThreadedBMPDevice.h"
#include "SkPath.h"
#include "SkTaskGroup.h"
#include "SkVertices.h"
#include <mutex>
#include <vector>
constexpr int MAX_CACHE_LINE = 64;
... | 38.134021 | 100 | 0.587997 | kniefliu |
608c0236c17bb42b6af9bad0256e958031f3f79f | 462,460 | cpp | C++ | emulator/src/mame/drivers/aristmk5.cpp | rjw57/tiw-computer | 5ef1c79893165b8622d1114d81cd0cded58910f0 | [
"MIT"
] | 1 | 2022-01-15T21:38:38.000Z | 2022-01-15T21:38:38.000Z | emulator/src/mame/drivers/aristmk5.cpp | rjw57/tiw-computer | 5ef1c79893165b8622d1114d81cd0cded58910f0 | [
"MIT"
] | null | null | null | emulator/src/mame/drivers/aristmk5.cpp | rjw57/tiw-computer | 5ef1c79893165b8622d1114d81cd0cded58910f0 | [
"MIT"
] | null | null | null | // license:BSD-3-Clause
// copyright-holders:David Haywood, Palindrome, Roberto Fresca
/****************************************************************************************************************
Aristocrat MK5 / MKV hardware
possibly 'Acorn Archimedes on a chip' hardware
Current significant issues:
... | 58.215005 | 274 | 0.740592 | rjw57 |
608c50b0d70d4af700cae5cea588fb9a5b8e256c | 1,448 | hpp | C++ | OREData/ored/marketdata/fxspot.hpp | mrslezak/Engine | c46ff278a2c5f4162db91a7ab500a0bb8cef7657 | [
"BSD-3-Clause"
] | 335 | 2016-10-07T16:31:10.000Z | 2022-03-02T07:12:03.000Z | OREData/ored/marketdata/fxspot.hpp | mrslezak/Engine | c46ff278a2c5f4162db91a7ab500a0bb8cef7657 | [
"BSD-3-Clause"
] | 59 | 2016-10-31T04:20:24.000Z | 2022-01-03T16:39:57.000Z | OREData/ored/marketdata/fxspot.hpp | mrslezak/Engine | c46ff278a2c5f4162db91a7ab500a0bb8cef7657 | [
"BSD-3-Clause"
] | 180 | 2016-10-08T14:23:50.000Z | 2022-03-28T10:43:05.000Z | /*
Copyright (C) 2016 Quaternion Risk Management Ltd
All rights reserved.
This file is part of ORE, a free-software/open-source library
for transparent pricing and risk analysis - http://opensourcerisk.org
ORE is free software: you can redistribute it and/or modify it
under the terms of the Modified BSD License... | 27.846154 | 86 | 0.748619 | mrslezak |
608ca8da0b5a727550fd7a7faaaa49c7ddd0ade6 | 2,760 | cc | C++ | verilog/analysis/checkers/interface_name_style_rule.cc | ColtonProvias/verible | ded8ad5e03d0eca2125d9ae3ba6c4f07919b4565 | [
"Apache-2.0"
] | 2 | 2019-12-21T21:47:32.000Z | 2020-10-11T06:42:45.000Z | verilog/analysis/checkers/interface_name_style_rule.cc | ColtonProvias/verible | ded8ad5e03d0eca2125d9ae3ba6c4f07919b4565 | [
"Apache-2.0"
] | null | null | null | verilog/analysis/checkers/interface_name_style_rule.cc | ColtonProvias/verible | ded8ad5e03d0eca2125d9ae3ba6c4f07919b4565 | [
"Apache-2.0"
] | 2 | 2021-11-06T07:35:11.000Z | 2021-11-26T04:06:25.000Z | // Copyright 2017-2020 The Verible 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 o... | 34.5 | 79 | 0.749275 | ColtonProvias |
6093fe9b81ba3aaf2ab96ad527d447982323a153 | 3,511 | tcc | C++ | include/xflens/cxxblas/level1/asum.tcc | muncasterconsulting/xtensor-blas | a63b47e4f120ad7a4f48d7d64e3e422268b987f5 | [
"BSD-3-Clause"
] | 93 | 2017-04-20T14:24:01.000Z | 2019-10-09T17:41:15.000Z | include/xflens/cxxblas/level1/asum.tcc | muncasterconsulting/xtensor-blas | a63b47e4f120ad7a4f48d7d64e3e422268b987f5 | [
"BSD-3-Clause"
] | 81 | 2017-04-21T14:54:15.000Z | 2019-10-03T08:55:07.000Z | include/xflens/cxxblas/level1/asum.tcc | muncasterconsulting/xtensor-blas | a63b47e4f120ad7a4f48d7d64e3e422268b987f5 | [
"BSD-3-Clause"
] | 33 | 2017-04-20T14:17:54.000Z | 2019-08-22T02:05:30.000Z | /*
* Copyright (c) 2009, Michael Lehn
*
* 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,... | 31.348214 | 75 | 0.721732 | muncasterconsulting |
6094d3bc5c8d39e6b4647df2f3e9d646b94d490c | 916 | cpp | C++ | Wk5-BinaryTrees/Maze5/src/Cell.cpp | DanielCender/CST-201 | a001182db8445b71c82b19c08d3526ceb318e717 | [
"MIT"
] | null | null | null | Wk5-BinaryTrees/Maze5/src/Cell.cpp | DanielCender/CST-201 | a001182db8445b71c82b19c08d3526ceb318e717 | [
"MIT"
] | null | null | null | Wk5-BinaryTrees/Maze5/src/Cell.cpp | DanielCender/CST-201 | a001182db8445b71c82b19c08d3526ceb318e717 | [
"MIT"
] | null | null | null | /**
* Maze5/src Cell.h
* Author: Daniel Cender
* Date: 05/25/2019
* Description: This cpp implements a doubly linked node to store a map tile.
*/
#include "Cell.h"
#include <iostream>
using namespace std;
Cell::Cell(Cell_Type c_t, int col_pos, int row_pos, Cell *t, Cell *r, Cell *b, Cell *l) {
type = c_t;
... | 28.625 | 109 | 0.594978 | DanielCender |
609580e21e6c09dfd97daf71933777732357b6c7 | 1,226 | cpp | C++ | aws-cpp-sdk-mturk-requester/source/model/SendTestEventNotificationRequest.cpp | Neusoft-Technology-Solutions/aws-sdk-cpp | 88c041828b0dbee18a297c3cfe98c5ecd0706d0b | [
"Apache-2.0"
] | 1 | 2022-02-12T08:09:30.000Z | 2022-02-12T08:09:30.000Z | aws-cpp-sdk-mturk-requester/source/model/SendTestEventNotificationRequest.cpp | Neusoft-Technology-Solutions/aws-sdk-cpp | 88c041828b0dbee18a297c3cfe98c5ecd0706d0b | [
"Apache-2.0"
] | 1 | 2022-01-03T23:59:37.000Z | 2022-01-03T23:59:37.000Z | aws-cpp-sdk-mturk-requester/source/model/SendTestEventNotificationRequest.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/mturk-requester/model/SendTestEventNotificationRequest.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::MTurk::Model;
using namespace Aws::Uti... | 24.039216 | 121 | 0.777325 | Neusoft-Technology-Solutions |
6097e9b7e4a8e6bdc6326b9bf7a20a4f1cf3c8f1 | 22,297 | cpp | C++ | Source/Voxel/Private/VoxelRender/VoxelProceduralMeshComponent.cpp | SolarStormInteractive/VoxelPlugin | b0b8a1838262227fa586fbcb1b46a6184cdf1e8c | [
"MIT"
] | null | null | null | Source/Voxel/Private/VoxelRender/VoxelProceduralMeshComponent.cpp | SolarStormInteractive/VoxelPlugin | b0b8a1838262227fa586fbcb1b46a6184cdf1e8c | [
"MIT"
] | null | null | null | Source/Voxel/Private/VoxelRender/VoxelProceduralMeshComponent.cpp | SolarStormInteractive/VoxelPlugin | b0b8a1838262227fa586fbcb1b46a6184cdf1e8c | [
"MIT"
] | null | null | null | // Copyright 2020 Phyronnaz
#include "VoxelRender/VoxelProceduralMeshComponent.h"
#include "VoxelRender/VoxelProceduralMeshSceneProxy.h"
#include "VoxelRender/VoxelAsyncPhysicsCooker.h"
#include "VoxelRender/VoxelProcMeshBuffers.h"
#include "VoxelRender/VoxelMaterialInterface.h"
#include "VoxelRender/VoxelToolR... | 29.146405 | 212 | 0.669059 | SolarStormInteractive |
60994c4f1d100b9b17e714a2f1a5b94d8474e8dc | 4,913 | cpp | C++ | src/caffe/test/test_transformer_layer.cpp | ducha-aiki/caffe | c9b0c544d97f331ccb2f33fc2b649b360ee59c41 | [
"BSD-2-Clause"
] | 31 | 2015-05-30T12:48:14.000Z | 2019-04-26T07:56:51.000Z | src/caffe/test/test_transformer_layer.cpp | ducha-aiki/caffe | c9b0c544d97f331ccb2f33fc2b649b360ee59c41 | [
"BSD-2-Clause"
] | 1 | 2015-04-03T13:39:00.000Z | 2015-04-03T13:39:00.000Z | src/caffe/test/test_transformer_layer.cpp | ducha-aiki/caffe | c9b0c544d97f331ccb2f33fc2b649b360ee59c41 | [
"BSD-2-Clause"
] | 10 | 2015-03-04T03:13:05.000Z | 2022-03-28T06:13:21.000Z | #include <cmath>
#include <cstring>
#include <vector>
#include "gtest/gtest.h"
#include "caffe/blob.hpp"
#include "caffe/common.hpp"
#include "caffe/filler.hpp"
#include "caffe/vision_layers.hpp"
#include "caffe/test/test_caffe_main.hpp"
#include "caffe/test/test_gradient_check_util.hpp"
namespace caffe {
templat... | 43.477876 | 242 | 0.620395 | ducha-aiki |
6099e0ad7f0d51882eeb36b92d7b07523b326265 | 7,731 | cpp | C++ | pcl__/surface/src/3rdparty/opennurbs/opennurbs_linetype.cpp | avinfinity/UnmanagedCodeSnippets | 2bd848db88d7b271209ad30017c8f62307319be3 | [
"MIT"
] | 4 | 2016-11-17T02:10:04.000Z | 2019-09-05T22:53:23.000Z | software/SLAM/ygz_slam_ros/Thirdparty/PCL/surface/src/3rdparty/opennurbs/opennurbs_linetype.cpp | glider54321/GAAS | 5c3b8c684e72fdf7f62c5731a260021e741069e7 | [
"BSD-3-Clause"
] | null | null | null | software/SLAM/ygz_slam_ros/Thirdparty/PCL/surface/src/3rdparty/opennurbs/opennurbs_linetype.cpp | glider54321/GAAS | 5c3b8c684e72fdf7f62c5731a260021e741069e7 | [
"BSD-3-Clause"
] | 1 | 2018-06-29T05:47:25.000Z | 2018-06-29T05:47:25.000Z | /* $NoKeywords: $ */
/*
//
// Copyright (c) 1993-2012 Robert McNeel & Associates. All rights reserved.
// OpenNURBS, Rhinoceros, and Rhino3D are registered trademarks of Robert
// McNeel & Associates.
//
// THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT EXPRESS OR IMPLIED WARRANTY.
// ALL IMPLIED WARRANTIES OF FITNESS FOR A... | 21.356354 | 126 | 0.616608 | avinfinity |