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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
cbbf71f481103279183d9f713a9ec90c1d136e25 | 280 | cc | C++ | CSE-1305/class-practice/exception-handling/setTerminate.cc | imrande/university-courses | e10af95d1e6bfc2f0a0e467e732f9b39bf8d99c1 | [
"MIT"
] | null | null | null | CSE-1305/class-practice/exception-handling/setTerminate.cc | imrande/university-courses | e10af95d1e6bfc2f0a0e467e732f9b39bf8d99c1 | [
"MIT"
] | null | null | null | CSE-1305/class-practice/exception-handling/setTerminate.cc | imrande/university-courses | e10af95d1e6bfc2f0a0e467e732f9b39bf8d99c1 | [
"MIT"
] | null | null | null | #include <iostream>
using namespace std;
void my_terminateFunction(){
cout << "Uncaught error handle" <<endl;
}
int main(){
is_terminate(my_terminateFunction);
try {
throw 5;
} catch(char x){
cout << "Testing Purpose" <<endl;
}
return 0;
}
| 15.555556 | 42 | 0.607143 | imrande |
cbc0c05ba53e0d28b2d17504ee3360b3a1f1e423 | 1,455 | cpp | C++ | trees/priority_queue.cpp | triffon/sdp-2015-16 | bb15cea4b4cad7791d82f55d106c3975b287af4e | [
"MIT"
] | 3 | 2015-10-12T14:02:43.000Z | 2021-06-22T13:02:48.000Z | trees/priority_queue.cpp | triffon/sdp-2015-16 | bb15cea4b4cad7791d82f55d106c3975b287af4e | [
"MIT"
] | null | null | null | trees/priority_queue.cpp | triffon/sdp-2015-16 | bb15cea4b4cad7791d82f55d106c3975b287af4e | [
"MIT"
] | null | null | null | /*
* priority_queue.cpp
*
* Created on: 4.12.2015 г.
* Author: trifon
*/
#include "bintree.cpp"
template <typename T>
class PriorityQueue : BinaryTree<T> {
private:
using P = BinaryTreePosition<T>;
void insertAndSiftUp(P pos, T const& x) {
if (pos) {
P newpos = (x % 2) ? -pos : +pos;
insertAndSi... | 17.962963 | 54 | 0.58488 | triffon |
cbc111cee1890731f510c5be40358b4a87132982 | 5,155 | cc | C++ | src/developer/memory/monitor/tests/metrics_unittest.cc | winksaville/Fuchsia | a0ec86f1d51ae8d2538ff3404dad46eb302f9b4f | [
"BSD-3-Clause"
] | 3 | 2020-08-02T04:46:18.000Z | 2020-08-07T10:10:53.000Z | src/developer/memory/monitor/tests/metrics_unittest.cc | winksaville/Fuchsia | a0ec86f1d51ae8d2538ff3404dad46eb302f9b4f | [
"BSD-3-Clause"
] | null | null | null | src/developer/memory/monitor/tests/metrics_unittest.cc | winksaville/Fuchsia | a0ec86f1d51ae8d2538ff3404dad46eb302f9b4f | [
"BSD-3-Clause"
] | 1 | 2020-08-07T10:11:49.000Z | 2020-08-07T10:11:49.000Z | // Copyright 2019 The Fuchsia 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/developer/memory/monitor/metrics.h"
#include <lib/gtest/real_loop_fixture.h>
#include <gtest/gtest.h>
#include <src/cobalt/bin/testing/fake... | 38.185185 | 81 | 0.537342 | winksaville |
cbc52e1b7326324fe9d676e4322614e29ea60d75 | 1,128 | cpp | C++ | leetcode_solutions/others/leetcode_492.cpp | EatAllBugs/leetcode_cpp | 3f5c58b32f0c3b115a706dd172c3fb72e4cc67ba | [
"MIT"
] | 4 | 2021-12-07T19:39:03.000Z | 2021-12-23T09:15:08.000Z | leetcode_solutions/others/leetcode_492.cpp | EatAllBugs/leetcode_cpp | 3f5c58b32f0c3b115a706dd172c3fb72e4cc67ba | [
"MIT"
] | null | null | null | leetcode_solutions/others/leetcode_492.cpp | EatAllBugs/leetcode_cpp | 3f5c58b32f0c3b115a706dd172c3fb72e4cc67ba | [
"MIT"
] | null | null | null | #include<iostream>
#include<vector>
#include<limits.h>
#include<algorithm>
#include<numeric>
#include<unordered_set>
#include<cmath>
using namespace std;
/*
作为一位web开发者, 懂得怎样去规划一个页面的尺寸是很重要的。 现给定一个具体的矩形页面面积,你的任务是设计一个长度为 L 和宽度为 W 且满足以下要求的矩形的页面。要求:
1. 你设计的矩形页面必须等于给定的目标面积。
2. 宽度 W 不应大于长度 L,换言之,要求 L >= W 。
3. 长度 L 和宽度 W 之间的差... | 20.888889 | 87 | 0.590426 | EatAllBugs |
cbc810cfeb0de84d45088c9b9ecb861e9f28e79d | 586 | cpp | C++ | zoe/src/zoe/display/Game/Sprite.cpp | NudelErde/zoe | 456e38bba86058f006a7c0fd5168af5039714c6c | [
"MIT"
] | 7 | 2019-12-16T20:23:39.000Z | 2020-10-26T08:46:12.000Z | zoe/src/zoe/display/Game/Sprite.cpp | NudelErde/zoe | 456e38bba86058f006a7c0fd5168af5039714c6c | [
"MIT"
] | 13 | 2020-01-13T20:19:06.000Z | 2021-09-10T21:23:52.000Z | zoe/src/zoe/display/Game/Sprite.cpp | NudelErde/zoe | 456e38bba86058f006a7c0fd5168af5039714c6c | [
"MIT"
] | 7 | 2019-12-29T22:46:23.000Z | 2020-07-15T19:56:32.000Z | //
// Created by Florian on 10.07.2020.
//
#include "Sprite.h"
namespace Zoe{
void Sprite::onDraw(const Camera& camera) {}
void Sprite::onUpdate(double time) {}
void Sprite::onInputEvent(Event &event) {}
void Sprite::fill(const XMLNode &node) {
if(node.attributes.count("x")>0){
position.x = std::stof(n... | 20.206897 | 56 | 0.616041 | NudelErde |
cbcdd815e81296e1dfc4d91a622d85790312973c | 1,545 | cxx | C++ | svc_kube_vision_opencvplus/dependencies/cmake-3.4.1/Source/cmCPackPropertiesGenerator.cxx | lucmichalski/kube-vproxy | c7cc0edbcbcd07a48f0fc48b9457eae693b76688 | [
"Apache-2.0"
] | 3 | 2018-06-22T07:55:51.000Z | 2021-06-21T19:18:16.000Z | svc_kube_vision_opencvplus/dependencies/cmake-3.4.1/Source/cmCPackPropertiesGenerator.cxx | lucmichalski/kube-vproxy | c7cc0edbcbcd07a48f0fc48b9457eae693b76688 | [
"Apache-2.0"
] | null | null | null | svc_kube_vision_opencvplus/dependencies/cmake-3.4.1/Source/cmCPackPropertiesGenerator.cxx | lucmichalski/kube-vproxy | c7cc0edbcbcd07a48f0fc48b9457eae693b76688 | [
"Apache-2.0"
] | 1 | 2020-11-04T04:56:50.000Z | 2020-11-04T04:56:50.000Z | #include "cmCPackPropertiesGenerator.h"
#include "cmOutputConverter.h"
#include "cmLocalGenerator.h"
cmCPackPropertiesGenerator::cmCPackPropertiesGenerator(
cmLocalGenerator* lg,
cmInstalledFile const& installedFile,
std::vector<std::string> const& configurations):
cmScriptGenerator("CPACK_BUILD_CONFIG", co... | 32.1875 | 79 | 0.682201 | lucmichalski |
cbce4032e94199fa3e8d2c448f4278774f45f7fa | 2,692 | cpp | C++ | sources/http/response.cpp | deguangchow/NetFlex | 8fbdee6601dcbaa5be12e467bee82f1f648cd63b | [
"MIT"
] | null | null | null | sources/http/response.cpp | deguangchow/NetFlex | 8fbdee6601dcbaa5be12e467bee82f1f648cd63b | [
"MIT"
] | null | null | null | sources/http/response.cpp | deguangchow/NetFlex | 8fbdee6601dcbaa5be12e467bee82f1f648cd63b | [
"MIT"
] | null | null | null | // The MIT License (MIT)
//
// Copyright (c) 2015-2017 Simon Ninon <simon.ninon@gmail.com>
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitat... | 22.813559 | 85 | 0.737741 | deguangchow |
cbcedc2d6774b39d58401968d95377fe3e199385 | 2,039 | cpp | C++ | components/common/tests/streams/wxf_writer.cpp | untgames/funner | c91614cda55fd00f5631d2bd11c4ab91f53573a3 | [
"MIT"
] | 7 | 2016-03-30T17:00:39.000Z | 2017-03-27T16:04:04.000Z | components/common/tests/streams/wxf_writer.cpp | untgames/Funner | c91614cda55fd00f5631d2bd11c4ab91f53573a3 | [
"MIT"
] | 4 | 2017-11-21T11:25:49.000Z | 2018-09-20T17:59:27.000Z | components/common/tests/streams/wxf_writer.cpp | untgames/Funner | c91614cda55fd00f5631d2bd11c4ab91f53573a3 | [
"MIT"
] | 4 | 2016-11-29T15:18:40.000Z | 2017-03-27T16:04:08.000Z | #include "shared.h"
using namespace math;
typedef stl::set<stl::string> MySet;
int main ()
{
printf ("Results of wxf_writer_test:\n");
try
{
int array [] = {1,2,3,4,5,6,7,8,9,10};
MySet set;
set.insert ("world");
set.insert ("sunny");
set.insert ("hello");
... | 32.887097 | 105 | 0.567435 | untgames |
cbd03db1164e9615f0994bd2b3d87714d016b12c | 4,313 | cc | C++ | remove-invalid-parentheses.cc | ArCan314/leetcode | 8e22790dc2f34f5cf2892741ff4e5d492bb6d0dd | [
"MIT"
] | null | null | null | remove-invalid-parentheses.cc | ArCan314/leetcode | 8e22790dc2f34f5cf2892741ff4e5d492bb6d0dd | [
"MIT"
] | null | null | null | remove-invalid-parentheses.cc | ArCan314/leetcode | 8e22790dc2f34f5cf2892741ff4e5d492bb6d0dd | [
"MIT"
] | null | null | null | #include <string>
#include <bitset>
#include <vector>
#include <cctype>
#include <unordered_set>
#include <deque>
#include <iostream>
class Solution
{
public:
bool check(const std::string &s, const std::bitset<25> &valid) const
{
int stack_count = 0;
for (int i = 0; i < s.size(); i++)
{... | 31.253623 | 106 | 0.392534 | ArCan314 |
cbd0590bc3e83d3833293f7f960910798fa68b3c | 768 | cpp | C++ | src/PhaserNativeEvent.cpp | mchiasson/PhaserNative | f867454602c395484bf730a7c43b9c586c102ac2 | [
"MIT"
] | null | null | null | src/PhaserNativeEvent.cpp | mchiasson/PhaserNative | f867454602c395484bf730a7c43b9c586c102ac2 | [
"MIT"
] | null | null | null | src/PhaserNativeEvent.cpp | mchiasson/PhaserNative | f867454602c395484bf730a7c43b9c586c102ac2 | [
"MIT"
] | 1 | 2019-01-25T13:55:25.000Z | 2019-01-25T13:55:25.000Z | #include "PhaserNativeEvent.h"
std::vector<SDL_Event*> PhaserNativeEvent::Timers;
uint32_t PhaserNativeEvent::Timeout = 0;
uint32_t PhaserNativeEvent::ImageDecoded = 0;
uint32_t PhaserNativeEvent::RequestAnimationFrame = 0;
uint32_t PhaserNativeEvent::XHR = 0;
std::vector<JSC::Object> PhaserNativeEvent::keyDownListe... | 42.666667 | 64 | 0.81901 | mchiasson |
cbd0cecbc1a854b0bac056d1739c3577662fc95e | 1,155 | cpp | C++ | C++/problem0594.cpp | 1050669722/LeetCode-Answers | c8f4d1ccaac09cda63b60d75144335347b06dc81 | [
"MIT"
] | null | null | null | C++/problem0594.cpp | 1050669722/LeetCode-Answers | c8f4d1ccaac09cda63b60d75144335347b06dc81 | [
"MIT"
] | null | null | null | C++/problem0594.cpp | 1050669722/LeetCode-Answers | c8f4d1ccaac09cda63b60d75144335347b06dc81 | [
"MIT"
] | null | null | null | #include <iostream>
#include <iomanip>
#include <vector>
#include <map>
#include <set>
#include <algorithm>
#include <cmath>
#include <ctime>
#include <cstdlib>
#include <windows.h>
#include <string>
#include <numeric>
using namespace std;
class Solution
{
public:
int findLHS(vector<int>& nums) {
... | 21 | 63 | 0.442424 | 1050669722 |
cbd41b49a3e4434c897b2a025ec33f574c3b1996 | 1,782 | cpp | C++ | src/map.cpp | johnpeterflynn/visual-orb-slam | 443427895ab513b78d164ff31da1a55efd1cc289 | [
"BSD-3-Clause"
] | 3 | 2020-11-18T09:15:22.000Z | 2021-12-30T19:40:09.000Z | src/map.cpp | ParikaGoel/orb-slam | 6eb93da00ef3e29ca7c4addd92941ccf95746b48 | [
"BSD-3-Clause"
] | null | null | null | src/map.cpp | ParikaGoel/orb-slam | 6eb93da00ef3e29ca7c4addd92941ccf95746b48 | [
"BSD-3-Clause"
] | null | null | null | #include "map.h"
Map::Map() {}
std::vector<Landmark*> Map::getAllLandmarks() {
std::unique_lock<std::mutex>(mutexMap);
return std::vector<Landmark*>(mLandmarks.begin(), mLandmarks.end());
}
void Map::addLandmark(Landmark* lm) {
std::unique_lock<std::mutex>(mutexMap);
mLandmarks.push_back(lm);
}
void Map::ad... | 24.75 | 70 | 0.688552 | johnpeterflynn |
cbd7b33cdc290bfc98be048f396e031fd1ca7586 | 1,472 | hpp | C++ | include/Jam/Instance.hpp | DrJonki/Kajak-Games-Finlandia-Jam | 7c5e44c11ec5a3edbbf4ae006fab4fd5921141e7 | [
"MIT"
] | null | null | null | include/Jam/Instance.hpp | DrJonki/Kajak-Games-Finlandia-Jam | 7c5e44c11ec5a3edbbf4ae006fab4fd5921141e7 | [
"MIT"
] | null | null | null | include/Jam/Instance.hpp | DrJonki/Kajak-Games-Finlandia-Jam | 7c5e44c11ec5a3edbbf4ae006fab4fd5921141e7 | [
"MIT"
] | null | null | null | #pragma once
#include <SFML/Graphics/RenderWindow.hpp>
#include <SFML/Graphics/RenderTexture.hpp>
#include <SFML/System/Clock.hpp>
#include <SFML/Graphics/RectangleShape.hpp>
#include <SFML/Network/TcpSocket.hpp>
#include <SFML/Network/UdpSocket.hpp>
#include <rapidjson/document.h>
#include <memory>
#include <Jam/Reso... | 19.116883 | 82 | 0.696332 | DrJonki |
cbdbda7941c47992cd7ca837bfd8134df0947c23 | 3,439 | cpp | C++ | secure_tunneling/source/IotSecureTunnelingClient.cpp | gregbreen/aws-iot-device-sdk-cpp-v2 | 57ded0046d1cda3b35fbe9298eed308392961435 | [
"Apache-2.0"
] | 88 | 2019-11-29T19:30:29.000Z | 2022-03-28T02:29:51.000Z | secure_tunneling/source/IotSecureTunnelingClient.cpp | gregbreen/aws-iot-device-sdk-cpp-v2 | 57ded0046d1cda3b35fbe9298eed308392961435 | [
"Apache-2.0"
] | 194 | 2019-12-01T15:54:42.000Z | 2022-03-31T22:06:11.000Z | secure_tunneling/source/IotSecureTunnelingClient.cpp | gregbreen/aws-iot-device-sdk-cpp-v2 | 57ded0046d1cda3b35fbe9298eed308392961435 | [
"Apache-2.0"
] | 64 | 2019-12-17T14:13:40.000Z | 2022-03-12T07:43:13.000Z | /* Copyright 2010-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file a... | 38.640449 | 115 | 0.540855 | gregbreen |
cbdc28c1ebf146761dfe69734807d0defed1e9a7 | 1,549 | cpp | C++ | src/hotrod/api/RemoteCacheManager.cpp | tristantarrant/cpp-client | 11f5f0919978d21284ecba6d015ca88c41134dbb | [
"Apache-2.0"
] | null | null | null | src/hotrod/api/RemoteCacheManager.cpp | tristantarrant/cpp-client | 11f5f0919978d21284ecba6d015ca88c41134dbb | [
"Apache-2.0"
] | null | null | null | src/hotrod/api/RemoteCacheManager.cpp | tristantarrant/cpp-client | 11f5f0919978d21284ecba6d015ca88c41134dbb | [
"Apache-2.0"
] | null | null | null | #include "infinispan/hotrod/RemoteCacheManager.h"
#include "infinispan/hotrod/ConfigurationBuilder.h"
#include "hotrod/impl/RemoteCacheManagerImpl.h"
#include "hotrod/impl/protocol/CodecFactory.h"
#include "hotrod/impl/operations/OperationsFactory.h"
namespace infinispan {
namespace hotrod {
using namespace protocol... | 28.685185 | 104 | 0.780504 | tristantarrant |
cbdc8a04e9c4399ac7090b2fd640bc26f3caa9dd | 60,743 | cxx | C++ | inetsrv/iis/setup/osrc/webcomp.cxx | npocmaka/Windows-Server-2003 | 5c6fe3db626b63a384230a1aa6b92ac416b0765f | [
"Unlicense"
] | 17 | 2020-11-13T13:42:52.000Z | 2021-09-16T09:13:13.000Z | inetsrv/iis/setup/osrc/webcomp.cxx | sancho1952007/Windows-Server-2003 | 5c6fe3db626b63a384230a1aa6b92ac416b0765f | [
"Unlicense"
] | 2 | 2020-10-19T08:02:06.000Z | 2020-10-19T08:23:18.000Z | inetsrv/iis/setup/osrc/webcomp.cxx | sancho1952007/Windows-Server-2003 | 5c6fe3db626b63a384230a1aa6b92ac416b0765f | [
"Unlicense"
] | 14 | 2020-11-14T09:43:20.000Z | 2021-08-28T08:59:57.000Z | /*++
Copyright (c) 2001 Microsoft Corporation
Module Name :
webcomp.cxx
Abstract:
Class used to install the World Wide Web component
Author:
Christopher Achille (cachille)
Project:
Internet Services Setup
Revision History:
... | 29.77598 | 173 | 0.571424 | npocmaka |
cbe6f9ef05ae9b282678961e29744424f091b87b | 10,888 | cc | C++ | sdk/lib/syslog/cpp/logging_unittest.cc | dahlia-os/fuchsia-pine64-pinephone | 57aace6f0b0bd75306426c98ab9eb3ff4524a61d | [
"BSD-3-Clause"
] | 14 | 2020-10-25T05:48:36.000Z | 2021-09-20T02:46:20.000Z | sdk/lib/syslog/cpp/logging_unittest.cc | JokeZhang/fuchsia | d6e9dea8dca7a1c8fa89d03e131367e284b30d23 | [
"BSD-3-Clause"
] | 1 | 2022-01-14T23:38:40.000Z | 2022-01-14T23:38:40.000Z | sdk/lib/syslog/cpp/logging_unittest.cc | JokeZhang/fuchsia | d6e9dea8dca7a1c8fa89d03e131367e284b30d23 | [
"BSD-3-Clause"
] | 4 | 2020-12-28T17:04:45.000Z | 2022-03-12T03:20:44.000Z | // Copyright 2019 The Fuchsia 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 <lib/syslog/cpp/log_settings.h>
#include <lib/syslog/cpp/logging_backend.h>
#include <lib/syslog/cpp/macros.h>
#include <string>
#include <gmock... | 33.195122 | 100 | 0.673035 | dahlia-os |
cbe87e0656a63e5395e46851df7dd8290e5e7831 | 368 | cpp | C++ | src/Render/ShaderImporter/ShaderImporterRegister_FillMode.cpp | Ubpa/DustEngine | 4fc32d4011ce21ab5ab2a8149e398d9baa3cbdc0 | [
"MIT"
] | 9 | 2020-08-03T02:11:07.000Z | 2020-09-29T09:12:45.000Z | src/Render/ShaderImporter/ShaderImporterRegister_FillMode.cpp | Ubpa/DustEngine | 4fc32d4011ce21ab5ab2a8149e398d9baa3cbdc0 | [
"MIT"
] | null | null | null | src/Render/ShaderImporter/ShaderImporterRegister_FillMode.cpp | Ubpa/DustEngine | 4fc32d4011ce21ab5ab2a8149e398d9baa3cbdc0 | [
"MIT"
] | 1 | 2020-08-10T03:34:52.000Z | 2020-08-10T03:34:52.000Z | #include "ShaderImporterRegisterImpl.h"
#include <Utopia/Render/RenderState.h>
using namespace Ubpa::Utopia;
using namespace Ubpa::UDRefl;
void Ubpa::Utopia::details::ShaderImporterRegister_FillMode() {
UDRefl::Mngr.RegisterType<FillMode>();
UDRefl::Mngr.SimpleAddField<FillMode::WIREFRAME>("WIREFRAME");
UDRefl::M... | 28.307692 | 63 | 0.779891 | Ubpa |
cbeb6fc37640ac96d23eb339c45b0d391d9554d1 | 926 | hpp | C++ | sdk/boost_1_30_0/boost/preprocessor/comparison.hpp | acidicMercury8/xray-1.0 | 65e85c0e31e82d612c793d980dc4b73fa186c76c | [
"Linux-OpenIB"
] | 10 | 2021-05-04T06:40:27.000Z | 2022-01-20T20:24:28.000Z | sdk/boost_1_30_0/boost/preprocessor/comparison.hpp | acidicMercury8/xray-1.0 | 65e85c0e31e82d612c793d980dc4b73fa186c76c | [
"Linux-OpenIB"
] | null | null | null | sdk/boost_1_30_0/boost/preprocessor/comparison.hpp | acidicMercury8/xray-1.0 | 65e85c0e31e82d612c793d980dc4b73fa186c76c | [
"Linux-OpenIB"
] | 2 | 2020-05-17T10:01:14.000Z | 2020-09-11T20:17:27.000Z | # /* Copyright (C) 2001
# * Housemarque Oy
# * http://www.housemarque.com
# *
# * Permission to copy, use, modify, sell and distribute this software is
# * granted provided this copyright notice appears in all copies. This
# * software is provided "as is" without express or implied warranty, and
# * with ... | 35.615385 | 75 | 0.730022 | acidicMercury8 |
cbf49c5a24e61e4f2b4d97be0848f6efdc9ebb5b | 4,236 | hpp | C++ | Manipulation.hpp | theoden8/rubikscube | 94ffd4a99f03729b28db41f1b05cbb208b4eceba | [
"MIT"
] | 1 | 2021-03-22T22:14:49.000Z | 2021-03-22T22:14:49.000Z | Manipulation.hpp | theoden8/rubikscube | 94ffd4a99f03729b28db41f1b05cbb208b4eceba | [
"MIT"
] | null | null | null | Manipulation.hpp | theoden8/rubikscube | 94ffd4a99f03729b28db41f1b05cbb208b4eceba | [
"MIT"
] | null | null | null | #pragma once
#include <cmath>
#ifndef M_PI
#define M_PI 3.141592653589793238462643383279502884L
#endif
#include <vector>
#include <queue>
#include <Logger.hpp>
#include <Debug.hpp>
#include <Face.hpp>
struct Manipulation {
const Face face;
const Rotation rot;
float progress = 0.;
/* inline Manipulation(... | 24.485549 | 130 | 0.595373 | theoden8 |
cbf69c5dd1c88758b676cdbdba78f8059d3ae2df | 13,160 | hpp | C++ | src/util/lp/square_dense_submatrix.hpp | greatmazinger/z3 | 52e9ddcb64e1d1dc94f280801995f4b30c8fe58b | [
"MIT"
] | 18 | 2018-05-25T03:16:11.000Z | 2022-01-25T01:41:20.000Z | src/util/lp/square_dense_submatrix.hpp | greatmazinger/z3 | 52e9ddcb64e1d1dc94f280801995f4b30c8fe58b | [
"MIT"
] | null | null | null | src/util/lp/square_dense_submatrix.hpp | greatmazinger/z3 | 52e9ddcb64e1d1dc94f280801995f4b30c8fe58b | [
"MIT"
] | 9 | 2019-11-12T05:42:08.000Z | 2022-02-18T01:09:53.000Z | /*++
Copyright (c) 2017 Microsoft Corporation
Module Name:
<name>
Abstract:
<abstract>
Author:
Lev Nachmanson (levnach)
Revision History:
--*/
#include "util/vector.h"
#include "util/lp/square_dense_submatrix.h"
namespace lp {
template <typename T, typename X>
square_dense_submatrix<T, X>::square_d... | 35.663957 | 160 | 0.607979 | greatmazinger |
cbf72f21062fb5d21cb485db47a0c04898cd36de | 7,545 | cpp | C++ | src/liblvr2/io/BoctreeIO.cpp | uos/lvr | 9bb03a30441b027c39db967318877e03725112d5 | [
"BSD-3-Clause"
] | 38 | 2019-06-19T15:10:35.000Z | 2022-02-16T03:08:24.000Z | src/liblvr2/io/BoctreeIO.cpp | uos/lvr | 9bb03a30441b027c39db967318877e03725112d5 | [
"BSD-3-Clause"
] | 9 | 2019-06-19T16:19:51.000Z | 2021-09-17T08:31:25.000Z | src/liblvr2/io/BoctreeIO.cpp | uos/lvr | 9bb03a30441b027c39db967318877e03725112d5 | [
"BSD-3-Clause"
] | 13 | 2019-04-16T11:50:32.000Z | 2020-11-26T07:47:44.000Z | /**
* Copyright (c) 2018, University Osnabrück
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this li... | 31.701681 | 103 | 0.533333 | uos |
cbf736ce4a477ce6fe1054fb591394ad3b9fcdf8 | 2,115 | hpp | C++ | src/misc/containers.hpp | kmaninis/COB_public | e4cb02a4c6e9ffa85951bec36846581dc98e68de | [
"BSD-2-Clause-FreeBSD"
] | 205 | 2016-08-10T04:13:40.000Z | 2022-01-28T08:57:37.000Z | src/misc/containers.hpp | kmaninis/COB_public | e4cb02a4c6e9ffa85951bec36846581dc98e68de | [
"BSD-2-Clause-FreeBSD"
] | 19 | 2016-09-19T13:05:59.000Z | 2021-05-13T12:39:33.000Z | src/misc/containers.hpp | kmaninis/COB_public | e4cb02a4c6e9ffa85951bec36846581dc98e68de | [
"BSD-2-Clause-FreeBSD"
] | 70 | 2016-08-03T03:36:53.000Z | 2022-02-03T20:44:43.000Z | // ------------------------------------------------------------------------
// Copyright (C)
// ETH Zurich - Switzerland
//
// Kevis-Kokitsi Maninis <kmaninis@vision.ee.ethz.ch>
// Jordi Pont-Tuset <jponttuset@vision.ee.ethz.ch>
// July 2016
// --------------------------------------------------------------------... | 26.111111 | 98 | 0.533333 | kmaninis |
cbfbb58db9322b4e56c3c01538754afe49203555 | 14,499 | cpp | C++ | src/CDocScriptAmendments.cpp | QtWorks/CDoc | 64b806a39b24bedd8aede6a7134326c248c0c614 | [
"MIT"
] | 1 | 2019-04-24T02:14:34.000Z | 2019-04-24T02:14:34.000Z | src/CDocScriptAmendments.cpp | QtWorks/CDoc | 64b806a39b24bedd8aede6a7134326c248c0c614 | [
"MIT"
] | null | null | null | src/CDocScriptAmendments.cpp | QtWorks/CDoc | 64b806a39b24bedd8aede6a7134326c248c0c614 | [
"MIT"
] | null | null | null | #include "CDocI.h"
/*----------------------------------------------------------------*/
#define DUMMY_AMENDMENT 0
#define AMENDMENT_ISSUED 1
#define AMENDMENT_ADDED 2
struct CDAmendmentData {
int type;
char *issue;
char *amend;
char *detail;
char *author;
char *date;
char *approve;
char *agree;
... | 27.564639 | 93 | 0.63294 | QtWorks |
cbfe304763b786b823615c143eab5a26bb544307 | 2,140 | cpp | C++ | src/WebConf.cpp | VisaJE/DoomsdayTetris-2 | a5f460ca2f8c55a533926c8ec2fe5248df2450e5 | [
"FTL",
"MIT"
] | 1 | 2019-09-20T20:37:35.000Z | 2019-09-20T20:37:35.000Z | src/WebConf.cpp | VisaJE/DoomsdayTetris-2 | a5f460ca2f8c55a533926c8ec2fe5248df2450e5 | [
"FTL",
"MIT"
] | null | null | null | src/WebConf.cpp | VisaJE/DoomsdayTetris-2 | a5f460ca2f8c55a533926c8ec2fe5248df2450e5 | [
"FTL",
"MIT"
] | null | null | null | #include "WebConf.h"
#include <iostream>
#include <vector>
#include <cstdio>
#include <sstream>
#include <fstream>
#include "Paths.h"
#include "rapidjson/document.h"
#include "rapidjson/writer.h"
#include "rapidjson/stringbuffer.h"
#include "rapidjson/filewritestream.h"
#include "rapidjson/filereadstream.h"
using na... | 22.291667 | 74 | 0.609346 | VisaJE |
02021723a676015654d72928189fa57966f6e418 | 3,065 | hpp | C++ | include/ftl/map_container_const_iterator.hpp | ftlorg/ftl | 75a580043ddf011477f0fbcb0ed1dc01be37814d | [
"BSL-1.0"
] | 47 | 2020-07-17T07:31:42.000Z | 2022-02-18T10:31:45.000Z | include/ftl/map_container_const_iterator.hpp | ftlorg/ftl | 75a580043ddf011477f0fbcb0ed1dc01be37814d | [
"BSL-1.0"
] | 40 | 2020-07-23T09:01:39.000Z | 2020-12-19T15:19:44.000Z | include/ftl/map_container_const_iterator.hpp | ftlorg/ftl | 75a580043ddf011477f0fbcb0ed1dc01be37814d | [
"BSL-1.0"
] | 1 | 2020-07-26T18:21:36.000Z | 2020-07-26T18:21:36.000Z |
// Copyright Grzegorz Litarowicz and Lukasz Gut 2020 - 2020.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// https://www.boost.org/LICENSE_1_0.txt)
#pragma once
#include <ftl/iterator_interface.hpp>
#include <ftl/iterator_member_provid... | 50.245902 | 122 | 0.804568 | ftlorg |
02024a9538028ed67ae53f0a4acc741c4f8e4b72 | 8,617 | cpp | C++ | tst/OpcUaStackCore/BuildInTypes/OpcUaVariantValue_t.cpp | gianricardo/OpcUaStack | ccdef574175ffe8b7e82b886abc5e5403968b280 | [
"Apache-2.0"
] | 108 | 2018-10-08T17:03:32.000Z | 2022-03-21T00:52:26.000Z | tst/OpcUaStackCore/BuildInTypes/OpcUaVariantValue_t.cpp | gianricardo/OpcUaStack | ccdef574175ffe8b7e82b886abc5e5403968b280 | [
"Apache-2.0"
] | 287 | 2018-09-18T14:59:12.000Z | 2022-01-13T12:28:23.000Z | tst/OpcUaStackCore/BuildInTypes/OpcUaVariantValue_t.cpp | gianricardo/OpcUaStack | ccdef574175ffe8b7e82b886abc5e5403968b280 | [
"Apache-2.0"
] | 32 | 2018-10-19T14:35:03.000Z | 2021-11-12T09:36:46.000Z | #include "unittest.h"
#include "OpcUaStackCore/BuildInTypes/OpcUaVariant.h"
using namespace OpcUaStackCore;
BOOST_AUTO_TEST_SUITE(OpcUaVariantValue_)
BOOST_AUTO_TEST_CASE(OpcUaVariantValue_)
{
std::cout << "OpcUaVariantValue_t" << std::endl;
}
BOOST_AUTO_TEST_CASE(OpcUaVariantValue_uint32_copyTo)
{
OpcUaVariantVa... | 31.797048 | 93 | 0.799698 | gianricardo |
02040891dafb90e53001c2e859a50fce3d3691db | 3,576 | cpp | C++ | pxr/imaging/hd/renderPass.cpp | DougRogers-DigitalFish/USD | d8a405a1344480f859f025c4f97085143efacb53 | [
"BSD-2-Clause"
] | 38 | 2019-03-05T18:34:28.000Z | 2022-03-26T11:30:28.000Z | pxr/imaging/hd/renderPass.cpp | DougRogers-DigitalFish/USD | d8a405a1344480f859f025c4f97085143efacb53 | [
"BSD-2-Clause"
] | 5 | 2021-12-16T03:19:10.000Z | 2022-03-31T23:14:02.000Z | pxr/imaging/hd/renderPass.cpp | DougRogers-DigitalFish/USD | d8a405a1344480f859f025c4f97085143efacb53 | [
"BSD-2-Clause"
] | 9 | 2019-08-10T02:40:50.000Z | 2022-03-31T08:30:10.000Z | //
// Copyright 2016 Pixar
//
// Licensed under the Apache License, Version 2.0 (the "Apache License")
// with the following modification; you may not use this file except in
// compliance with the Apache License and the following modification to it:
// Section 6. Trademarks. is deleted and replaced with:
//
// 6. Trad... | 29.311475 | 80 | 0.667226 | DougRogers-DigitalFish |
020488f372a97cea57732f61db4c270581acce67 | 1,204 | cpp | C++ | src/scenes/hannahWhitney/hannahWhitney.cpp | yxcde/RTP_MIT_RECODED | 181deb2e3228484fa9d4ed0e6bf3f4a639d99419 | [
"MIT"
] | 12 | 2019-10-28T19:07:59.000Z | 2021-08-21T22:00:52.000Z | src/scenes/hannahWhitney/hannahWhitney.cpp | yxcde/RTP_MIT_RECODED | 181deb2e3228484fa9d4ed0e6bf3f4a639d99419 | [
"MIT"
] | 1 | 2019-10-28T19:20:05.000Z | 2019-10-28T20:14:24.000Z | src/scenes/hannahWhitney/hannahWhitney.cpp | yxcde/RTP_MIT_RECODED | 181deb2e3228484fa9d4ed0e6bf3f4a639d99419 | [
"MIT"
] | 8 | 2019-10-28T19:11:30.000Z | 2020-01-12T05:18:31.000Z |
#include "hannahWhitney.h"
void hannahWhitney::setup(){
// setup pramaters
// if your original code use an ofxPanel instance dont use it here, instead
// add your parameters to the "parameters" instance as follows.
// param was declared in mitScene1.h
//parameters.add(param.set("param", 5, 0, 100));
param... | 28 | 75 | 0.585548 | yxcde |
0208cfad27722f229571d73aba766e592097b786 | 5,636 | cpp | C++ | src/journal_manager/replay/replay_stripe.cpp | hsungyang/poseidonos | 0f523b36ccf0d70726364395ea96ac6ae3b845c3 | [
"BSD-3-Clause"
] | 38 | 2021-04-06T03:20:55.000Z | 2022-03-02T09:33:28.000Z | src/journal_manager/replay/replay_stripe.cpp | gye-ul/poseidonos | bce8fe2cd1f36ede8647446ecc4cf8a9749e6918 | [
"BSD-3-Clause"
] | 19 | 2021-04-08T02:27:44.000Z | 2022-03-23T00:59:04.000Z | src/journal_manager/replay/replay_stripe.cpp | gye-ul/poseidonos | bce8fe2cd1f36ede8647446ecc4cf8a9749e6918 | [
"BSD-3-Clause"
] | 28 | 2021-04-08T04:39:18.000Z | 2022-03-24T05:56:00.000Z | /*
* BSD LICENSE
* Copyright (c) 2021 Samsung Electronics Corporation
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source code must retain th... | 30.301075 | 137 | 0.709368 | hsungyang |
0209710921734a953f6fe988de49529a58cfd8ba | 58,870 | cc | C++ | third/blackwidow/src/blackwidow.cc | kxtry/pika | 476a7cf1ae5d5518a744e5933ada59b8fd765f6e | [
"MIT"
] | null | null | null | third/blackwidow/src/blackwidow.cc | kxtry/pika | 476a7cf1ae5d5518a744e5933ada59b8fd765f6e | [
"MIT"
] | 2 | 2020-02-26T11:54:45.000Z | 2021-05-20T11:26:21.000Z | third/blackwidow/src/blackwidow.cc | kxtry/pika | 476a7cf1ae5d5518a744e5933ada59b8fd765f6e | [
"MIT"
] | null | null | null | // Copyright (c) 2017-present The blackwidow Authors. All rights reserved.
// This source code is licensed under the BSD-style license found in the
// LICENSE file in the root directory of this source tree. An additional grant
// of patent rights can be found in the PATENTS file in the same directory.
#include "b... | 30.282922 | 107 | 0.588109 | kxtry |
020fa493133b6e9da26f5f4c8311ae1bc6227599 | 36,430 | cc | C++ | modules/synApps_5_6/support/seq-2-1-3/src/pv/pvKtl.cc | A2-Collaboration/epics | b764a53bf449d9f6b54a1173c5e75a22cf95098c | [
"OML"
] | null | null | null | modules/synApps_5_6/support/seq-2-1-3/src/pv/pvKtl.cc | A2-Collaboration/epics | b764a53bf449d9f6b54a1173c5e75a22cf95098c | [
"OML"
] | null | null | null | modules/synApps_5_6/support/seq-2-1-3/src/pv/pvKtl.cc | A2-Collaboration/epics | b764a53bf449d9f6b54a1173c5e75a22cf95098c | [
"OML"
] | null | null | null | /* Implementation of EPICS sequencer KTL library (pvKtl)
*
* William Lupton, W. M. Keck Observatory
*/
// ### check all object creation and call cantProceed on failure
// ### review locking policy (need to be clear on why, how and when)
#include <stdio.h>
#include <string.h>
#include <sys/time.h>
#include <sys/ty... | 25.709245 | 83 | 0.620231 | A2-Collaboration |
0211373261e4a69c016dbb3cd97997a936868459 | 1,467 | cpp | C++ | atcoder.jp/abc195/abc195_f/main.cpp | Shahraaz/CP_S5 | 2cfb5467841d660c1e47cb8338ea692f10ca6e60 | [
"MIT"
] | 3 | 2020-02-08T10:34:16.000Z | 2020-02-09T10:23:19.000Z | atcoder.jp/abc195/abc195_f/main.cpp | Shahraaz/CP_S5 | 2cfb5467841d660c1e47cb8338ea692f10ca6e60 | [
"MIT"
] | null | null | null | atcoder.jp/abc195/abc195_f/main.cpp | Shahraaz/CP_S5 | 2cfb5467841d660c1e47cb8338ea692f10ca6e60 | [
"MIT"
] | 2 | 2020-10-02T19:05:32.000Z | 2021-09-08T07:01:49.000Z | #include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
#include "/debug.h"
#else
#define db(...)
#endif
#define all(v) v.begin(), v.end()
#define pb push_back
using ll = long long;
const int NAX = 2e5 + 5, MOD = 1000000007;
vector<int> primes = {2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, ... | 24.864407 | 98 | 0.497614 | Shahraaz |
021a7093b387714c0e9a8e0b19e30baa4b9a3179 | 1,572 | cpp | C++ | mainwindow.cpp | jiangfangzheng/JfzQtFramework | 676d9ac2c2d7bce90bf7e3b176a5cac26cc9eba5 | [
"Apache-2.0"
] | 1 | 2019-11-18T06:38:58.000Z | 2019-11-18T06:38:58.000Z | mainwindow.cpp | jiangfangzheng/JfzQtFramework | 676d9ac2c2d7bce90bf7e3b176a5cac26cc9eba5 | [
"Apache-2.0"
] | null | null | null | mainwindow.cpp | jiangfangzheng/JfzQtFramework | 676d9ac2c2d7bce90bf7e3b176a5cac26cc9eba5 | [
"Apache-2.0"
] | null | null | null | #include "mainwindow.h"
#include "ui_mainwindow.h"
#include "skins/skins.h"
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
// Skin
this->initSkins();
// 托盘
myTray = new SystemTray(this);
connect(myTray,SIGNAL(showWidget()),this,SLOT(ShowWindow()));//... | 22.782609 | 139 | 0.667939 | jiangfangzheng |
021d1f0c93284d9dd8db0d3cef62784aec55eebb | 5,827 | cpp | C++ | lang/steve/Syntax.cpp | flowgrammable/steve-legacy | 5e7cbc16280c199732d26a2cb0703422695abe16 | [
"Apache-2.0"
] | 1 | 2017-07-30T04:18:56.000Z | 2017-07-30T04:18:56.000Z | lang/steve/Syntax.cpp | flowgrammable/steve-legacy | 5e7cbc16280c199732d26a2cb0703422695abe16 | [
"Apache-2.0"
] | null | null | null | lang/steve/Syntax.cpp | flowgrammable/steve-legacy | 5e7cbc16280c199732d26a2cb0703422695abe16 | [
"Apache-2.0"
] | null | null | null |
#include <steve/Syntax.hpp>
#include <steve/Print.hpp>
#include <steve/Debug.hpp>
namespace steve {
void
init_trees() {
// Terms
init_node(id_tree, "id-tree");
init_node(lit_tree, "lit-tree");
init_node(brace_tree, "brace-tree");
init_node(call_tree, "call-tree");
init_node(index_tree, "index-tree");
i... | 26.130045 | 66 | 0.665866 | flowgrammable |
0223e335169af73587acf33e192b13720d7cf256 | 4,795 | hpp | C++ | libs/iostreams/test/write_bidir_filter_test.hpp | zyiacas/boost-doc-zh | 689e5a3a0a4dbead1a960f7b039e3decda54aa2c | [
"BSL-1.0"
] | 198 | 2015-01-13T05:47:18.000Z | 2022-03-09T04:46:46.000Z | libs/iostreams/test/write_bidir_filter_test.hpp | sdfict/boost-doc-zh | 689e5a3a0a4dbead1a960f7b039e3decda54aa2c | [
"BSL-1.0"
] | 9 | 2015-01-28T16:33:19.000Z | 2020-04-12T23:03:28.000Z | libs/iostreams/test/write_bidir_filter_test.hpp | sdfict/boost-doc-zh | 689e5a3a0a4dbead1a960f7b039e3decda54aa2c | [
"BSL-1.0"
] | 139 | 2015-01-15T20:09:31.000Z | 2022-01-31T15:21:16.000Z | // (C) Copyright 2008 CodeRage, LLC (turkanis at coderage dot com)
// (C) Copyright 2004-2007 Jonathan Turkanis
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt.)
// See http://www.boost.org/libs/iostreams for d... | 35.518519 | 85 | 0.572471 | zyiacas |
0227bf12c90e0a56a4e0729185a2f700f4eab792 | 21,446 | cpp | C++ | test/queuemanager.cpp | bogdasar1985/newsboat | 3ccc76b45ea86116d25a3dd7602a95350f878c77 | [
"MIT"
] | null | null | null | test/queuemanager.cpp | bogdasar1985/newsboat | 3ccc76b45ea86116d25a3dd7602a95350f878c77 | [
"MIT"
] | null | null | null | test/queuemanager.cpp | bogdasar1985/newsboat | 3ccc76b45ea86116d25a3dd7602a95350f878c77 | [
"MIT"
] | null | null | null | #include "queuemanager.h"
#include "3rd-party/catch.hpp"
#include "test_helpers/chmod.h"
#include "test_helpers/envvar.h"
#include "test_helpers/misc.h"
#include "test_helpers/tempfile.h"
#include "cache.h"
#include "configcontainer.h"
#include "rssfeed.h"
#include "rssitem.h"
#include "utils.h"
using namespace news... | 32.741985 | 108 | 0.698126 | bogdasar1985 |
022b965947434f1dd36d4fb5de90befa2c568d30 | 22,449 | cxx | C++ | inetsrv/iis/admin/adsi/adsiis/var2sec.cxx | npocmaka/Windows-Server-2003 | 5c6fe3db626b63a384230a1aa6b92ac416b0765f | [
"Unlicense"
] | 17 | 2020-11-13T13:42:52.000Z | 2021-09-16T09:13:13.000Z | inetsrv/iis/admin/adsi/adsiis/var2sec.cxx | sancho1952007/Windows-Server-2003 | 5c6fe3db626b63a384230a1aa6b92ac416b0765f | [
"Unlicense"
] | 2 | 2020-10-19T08:02:06.000Z | 2020-10-19T08:23:18.000Z | inetsrv/iis/admin/adsi/adsiis/var2sec.cxx | sancho1952007/Windows-Server-2003 | 5c6fe3db626b63a384230a1aa6b92ac416b0765f | [
"Unlicense"
] | 14 | 2020-11-14T09:43:20.000Z | 2021-08-28T08:59:57.000Z | //+---------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1992 - 1997.
//
// File: var2sec.cxx
//
// Contents:
//
// Functions:
//
// History: 25-Apr-97 KrishnaG Created.
//
//---------------------------... | 23.191116 | 92 | 0.526928 | npocmaka |
022e8cdc7fd979350a932c73f852b0e1b194b98d | 5,516 | cpp | C++ | modules/fraction-calc-by-using-gcd/test/test_fraction-calc.cpp | gurylev-nikita/devtools-course-practice | bab6ba4e39f04940e27c9ac148505eb152c05d17 | [
"CC-BY-4.0"
] | null | null | null | modules/fraction-calc-by-using-gcd/test/test_fraction-calc.cpp | gurylev-nikita/devtools-course-practice | bab6ba4e39f04940e27c9ac148505eb152c05d17 | [
"CC-BY-4.0"
] | 3 | 2021-04-22T17:12:19.000Z | 2021-05-14T12:16:25.000Z | modules/fraction-calc-by-using-gcd/test/test_fraction-calc.cpp | taktaev-artyom/devtools-course-practice | 7cf19defe061c07cfb3ebb71579456e807430a5d | [
"CC-BY-4.0"
] | null | null | null | // Copyright 2021 Yurin Stanislav
#include <gtest/gtest.h>
#include <tuple>
#include "include/fraction.h"
typedef testing::TestWithParam<int>
Can_create_one_parametres_constructor;
TEST_P(Can_create_one_parametres_constructor, can_create_constructor) {
int n = GetParam();
Fraction f(n);
ASSER... | 24.959276 | 72 | 0.624184 | gurylev-nikita |
02302931af860c17425a037e76f15ed0e75bbcf7 | 19,549 | cc | C++ | common/system/dvfs_manager.cc | NoCModellingLab/Graphite | 1b4bb98f5bfb96ca394b71e7ef3e9e500a1e3997 | [
"MIT"
] | 94 | 2015-02-21T09:44:03.000Z | 2022-03-13T03:06:19.000Z | common/system/dvfs_manager.cc | NoCModellingLab/Graphite | 1b4bb98f5bfb96ca394b71e7ef3e9e500a1e3997 | [
"MIT"
] | null | null | null | common/system/dvfs_manager.cc | NoCModellingLab/Graphite | 1b4bb98f5bfb96ca394b71e7ef3e9e500a1e3997 | [
"MIT"
] | 36 | 2015-01-09T16:48:18.000Z | 2022-03-13T03:06:21.000Z | #include <string.h>
#include <utility>
#include <iostream>
using std::make_pair;
#include "dvfs_manager.h"
#include "memory_manager.h"
#include "simulator.h"
#include "tile.h"
#include "core.h"
#include "network_model.h"
#include "core_model.h"
#include "packetize.h"
#include "utils.h"
#include "tile_energy_monitor.h"
... | 34.057491 | 164 | 0.674459 | NoCModellingLab |
0232802607ad516a0c835f7e054b1575e1853625 | 2,026 | cpp | C++ | aws-cpp-sdk-comprehendmedical/source/ComprehendMedicalErrors.cpp | Neusoft-Technology-Solutions/aws-sdk-cpp | 88c041828b0dbee18a297c3cfe98c5ecd0706d0b | [
"Apache-2.0"
] | 1 | 2022-02-10T08:06:54.000Z | 2022-02-10T08:06:54.000Z | aws-cpp-sdk-comprehendmedical/source/ComprehendMedicalErrors.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-comprehendmedical/source/ComprehendMedicalErrors.cpp | ravindra-wagh/aws-sdk-cpp | 7d5ff01b3c3b872f31ca98fb4ce868cd01e97696 | [
"Apache-2.0"
] | 1 | 2022-02-28T21:36:42.000Z | 2022-02-28T21:36:42.000Z | /**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/core/client/AWSError.h>
#include <aws/core/utils/HashingUtils.h>
#include <aws/comprehendmedical/ComprehendMedicalErrors.h>
using namespace Aws::Client;
using namespace Aws::Utils;
usin... | 34.931034 | 115 | 0.793189 | Neusoft-Technology-Solutions |
0232eeb510200469751013099396a3adc5fc492f | 3,196 | cpp | C++ | Tap_The_Rainbow/traitement_images.cpp | arnaudricaud/Tap_The_Rainbow | 0250783e9ddced9e21560e7ebd201206dc4cd2f7 | [
"MIT"
] | null | null | null | Tap_The_Rainbow/traitement_images.cpp | arnaudricaud/Tap_The_Rainbow | 0250783e9ddced9e21560e7ebd201206dc4cd2f7 | [
"MIT"
] | 8 | 2017-04-04T12:32:17.000Z | 2017-06-06T15:11:55.000Z | Tap_The_Rainbow/traitement_images.cpp | arnaudricaud/Tap_The_Rainbow | 0250783e9ddced9e21560e7ebd201206dc4cd2f7 | [
"MIT"
] | null | null | null | #include "traitement_images.h"
#include <QElapsedTimer>
Traitement_images::Traitement_images()
{
}
void Traitement_images::reconstruction(Mat calibration, Mat capture){
//DEBUT
Mat origine = calibration.clone();
Mat frame = capture.clone();
//MATRICE SOUSTRACTION ET NIVEAU DE GRIS
Mat soustractio... | 27.791304 | 80 | 0.566333 | arnaudricaud |
023c8262be32991debf319bf51b6071b9b1d9457 | 98,660 | cpp | C++ | admin/activec/designer/vb98ctls/mssnapd/mssnapd/pstoolbr.cpp | npocmaka/Windows-Server-2003 | 5c6fe3db626b63a384230a1aa6b92ac416b0765f | [
"Unlicense"
] | 17 | 2020-11-13T13:42:52.000Z | 2021-09-16T09:13:13.000Z | admin/activec/designer/vb98ctls/mssnapd/mssnapd/pstoolbr.cpp | sancho1952007/Windows-Server-2003 | 5c6fe3db626b63a384230a1aa6b92ac416b0765f | [
"Unlicense"
] | 2 | 2020-10-19T08:02:06.000Z | 2020-10-19T08:23:18.000Z | admin/activec/designer/vb98ctls/mssnapd/mssnapd/pstoolbr.cpp | sancho1952007/Windows-Server-2003 | 5c6fe3db626b63a384230a1aa6b92ac416b0765f | [
"Unlicense"
] | 14 | 2020-11-14T09:43:20.000Z | 2021-08-28T08:59:57.000Z | //=--------------------------------------------------------------------------------------
// pstoolbr.cpp
//=--------------------------------------------------------------------------------------
//
// Copyright (c) 1999, Microsoft Corporation.
// All Rights Reserved.
//
// Information Contain... | 29.026184 | 313 | 0.524184 | npocmaka |
023db6b22b9a28d346cbb2f1953bc3307b8e2a74 | 624 | hpp | C++ | raisim/win32/mt_release/include/raisim/constraints/StiffLengthConstraint.hpp | simRepoRelease/raisimLib | 00724ac2abb0b4c11aadb4ddd3455fc42c57a34e | [
"Apache-2.0"
] | 142 | 2020-10-21T18:18:13.000Z | 2022-03-29T11:49:25.000Z | raisim/win32/mt_release/include/raisim/constraints/StiffLengthConstraint.hpp | simRepoRelease/raisimLib | 00724ac2abb0b4c11aadb4ddd3455fc42c57a34e | [
"Apache-2.0"
] | 192 | 2020-10-21T15:51:15.000Z | 2022-03-28T12:56:01.000Z | raisim/win32/mt_release/include/raisim/constraints/StiffLengthConstraint.hpp | simRepoRelease/raisimLib | 00724ac2abb0b4c11aadb4ddd3455fc42c57a34e | [
"Apache-2.0"
] | 51 | 2020-10-26T08:29:54.000Z | 2022-03-23T12:00:23.000Z | //----------------------------//
// This file is part of RaiSim//
// Copyright 2020, RaiSim Tech//
//----------------------------//
#ifndef RAISIM_STIFFWIRE_HPP
#define RAISIM_STIFFWIRE_HPP
#include "LengthConstraint.hpp"
namespace raisim {
class StiffLengthConstraint : public LengthConstraint {
public:
StiffLe... | 21.517241 | 133 | 0.689103 | simRepoRelease |
023f04b5d143edd11c52d56b5ab6e1297a7fe7ba | 6,666 | cpp | C++ | src/transaction/transactors/SetREL.cpp | hawx1993/truechain-testnet-core | a75edfe83562b3764fb3140144bc41943ebb995a | [
"MIT"
] | null | null | null | src/transaction/transactors/SetREL.cpp | hawx1993/truechain-testnet-core | a75edfe83562b3764fb3140144bc41943ebb995a | [
"MIT"
] | null | null | null | src/transaction/transactors/SetREL.cpp | hawx1993/truechain-testnet-core | a75edfe83562b3764fb3140144bc41943ebb995a | [
"MIT"
] | null | null | null | //------------------------------------------------------------------------------
/*
Copyright (c) 2012, 2013 Skywell Labs Inc.
Copyright (c) 2017-2018 TrueChain Foundation.
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that ... | 33.33 | 100 | 0.581458 | hawx1993 |
02453a9c5f55e1e5df7a191a9c251533ef2e9fb6 | 6,259 | cpp | C++ | KRender/Internal/KConstantDefinition.cpp | King19931229/KApp | f7f855b209348f835de9e5f57844d4fb6491b0a1 | [
"MIT"
] | 13 | 2019-10-19T17:41:19.000Z | 2021-11-04T18:50:03.000Z | KRender/Internal/KConstantDefinition.cpp | King19931229/KApp | f7f855b209348f835de9e5f57844d4fb6491b0a1 | [
"MIT"
] | 3 | 2019-12-09T06:22:43.000Z | 2020-05-28T09:33:44.000Z | KRender/Internal/KConstantDefinition.cpp | King19931229/KApp | f7f855b209348f835de9e5f57844d4fb6491b0a1 | [
"MIT"
] | null | null | null | #include "KConstantDefinition.h"
namespace KConstantDefinition
{
static ConstantBufferDetail CAMERA_DETAILS;
static ConstantBufferDetail SHADOW_DETAILS;
static ConstantBufferDetail CASCADED_SHADOW_DETAILS;
static ConstantBufferDetail GLOBAL_DETAILS;
static ConstantBufferDetail VOXEL_DETAILS;
static ConstantBuffe... | 37.479042 | 196 | 0.743569 | King19931229 |
02463ee3cc7e4690157dbd368464b97456f7ada8 | 5,987 | hpp | C++ | src/QDMEwald/src/kokkos_linalg.hpp | fossabot/xtp | e82cc53f23e213d09da15da80ada6e32ac031a07 | [
"Apache-2.0"
] | null | null | null | src/QDMEwald/src/kokkos_linalg.hpp | fossabot/xtp | e82cc53f23e213d09da15da80ada6e32ac031a07 | [
"Apache-2.0"
] | null | null | null | src/QDMEwald/src/kokkos_linalg.hpp | fossabot/xtp | e82cc53f23e213d09da15da80ada6e32ac031a07 | [
"Apache-2.0"
] | null | null | null | /*
* Copyright 2019 Forschungszentrum Juelich GmbH
* Copyright 2020 The VOTCA Development Team
* (http://www.votca.org)
*
* Licensed under the Apache License, Version 2.0 (the "License")
*
* You may not use this file except in compliance with the License.
* You m... | 33.261111 | 79 | 0.614665 | fossabot |
0246f016c86ddd1b481370923aba444454513ec4 | 1,671 | cpp | C++ | TAO/tao/DiffServPolicy/DiffServ_Service_Context_Handler.cpp | cflowe/ACE | 5ff60b41adbe1772372d1a43bcc1f2726ff8f810 | [
"DOC"
] | 36 | 2015-01-10T07:27:33.000Z | 2022-03-07T03:32:08.000Z | TAO/tao/DiffServPolicy/DiffServ_Service_Context_Handler.cpp | cflowe/ACE | 5ff60b41adbe1772372d1a43bcc1f2726ff8f810 | [
"DOC"
] | 2 | 2018-08-13T07:30:51.000Z | 2019-02-25T03:04:31.000Z | TAO/tao/DiffServPolicy/DiffServ_Service_Context_Handler.cpp | cflowe/ACE | 5ff60b41adbe1772372d1a43bcc1f2726ff8f810 | [
"DOC"
] | 38 | 2015-01-08T14:12:06.000Z | 2022-01-19T08:33:00.000Z | // $Id: DiffServ_Service_Context_Handler.cpp 95623 2012-03-20 11:46:15Z sma $
#include "tao/DiffServPolicy/DiffServ_Service_Context_Handler.h"
#include "tao/DiffServPolicy/Client_Network_Priority_Policy.h"
#include "tao/CDR.h"
#include "tao/TAO_Server_Request.h"
#include "tao/Transport.h"
#include "tao/ORB_Core.h"
#i... | 26.109375 | 86 | 0.705566 | cflowe |
02496a9d11e2f2c402f399026afa68502c18c5b9 | 598 | hpp | C++ | irohad/model/query_response.hpp | artyom-yurin/iroha-archive | 1ad3a149d21d30e99c650a9a4bad88b2792d751d | [
"Apache-2.0"
] | 31 | 2019-04-17T19:32:05.000Z | 2022-02-05T01:35:02.000Z | irohad/model/query_response.hpp | artyom-yurin/iroha-archive | 1ad3a149d21d30e99c650a9a4bad88b2792d751d | [
"Apache-2.0"
] | 11 | 2016-10-13T10:09:55.000Z | 2019-06-13T08:49:11.000Z | irohad/model/query_response.hpp | artyom-yurin/iroha-archive | 1ad3a149d21d30e99c650a9a4bad88b2792d751d | [
"Apache-2.0"
] | 12 | 2019-06-03T10:31:31.000Z | 2021-12-13T12:17:15.000Z | /**
* Copyright Soramitsu Co., Ltd. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef IROHA_QUERY_RESPONSE_HPP
#define IROHA_QUERY_RESPONSE_HPP
#include <memory>
#include "crypto/hash_types.hpp"
#include "model/client.hpp"
#include "model/query.hpp"
namespace iroha {
namespace model {
/... | 19.290323 | 53 | 0.658863 | artyom-yurin |
024a4d8d95c5a6b2a0db4e4836429606715b30b5 | 3,576 | hpp | C++ | Source/AllProjects/Tests2/TestCIDMData/TestCIDMData_AttrData.hpp | MarkStega/CIDLib | 82014e064eef51cad998bf2c694ed9c1c8cceac6 | [
"MIT"
] | null | null | null | Source/AllProjects/Tests2/TestCIDMData/TestCIDMData_AttrData.hpp | MarkStega/CIDLib | 82014e064eef51cad998bf2c694ed9c1c8cceac6 | [
"MIT"
] | null | null | null | Source/AllProjects/Tests2/TestCIDMData/TestCIDMData_AttrData.hpp | MarkStega/CIDLib | 82014e064eef51cad998bf2c694ed9c1c8cceac6 | [
"MIT"
] | null | null | null | //
// FILE NAME: TestCIDMData_AttrData.hpp
//
// AUTHOR: Dean Roddey
//
// CREATED: 08/07/2018
//
// COPYRIGHT: Charmed Quark Systems, Ltd @ 2019
//
// This software is copyrighted by 'Charmed Quark Systems, Ltd' and
// the author (Dean Roddey.) It is licensed under the MIT Open Source
// license:
//
// https://ope... | 34.384615 | 78 | 0.39877 | MarkStega |
024e35c748f5e1bf6e23fd964c2a970f67ea639d | 8,227 | cpp | C++ | 3rdparty/GPSTk/ext/lib/Rxio/AshtechMBEN.cpp | mfkiwl/ICE | e660d031bb1bcea664db1de4946fd8781be5b627 | [
"MIT"
] | 50 | 2019-10-12T01:22:20.000Z | 2022-02-15T23:28:26.000Z | 3rdparty/GPSTk/ext/lib/Rxio/AshtechMBEN.cpp | wuyou33/Enabling-Robust-State-Estimation-through-Measurement-Error-Covariance-Adaptation | 2f1ff054b7c5059da80bb3b2f80c05861a02cc36 | [
"MIT"
] | null | null | null | 3rdparty/GPSTk/ext/lib/Rxio/AshtechMBEN.cpp | wuyou33/Enabling-Robust-State-Estimation-through-Measurement-Error-Covariance-Adaptation | 2f1ff054b7c5059da80bb3b2f80c05861a02cc36 | [
"MIT"
] | 14 | 2019-11-05T01:50:29.000Z | 2021-08-06T06:23:44.000Z | //============================================================================
//
// This file is part of GPSTk, the GPS Toolkit.
//
// The GPSTk 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; ei... | 30.025547 | 80 | 0.476601 | mfkiwl |
024e57bdb0089575ac829640706113b6c2366713 | 970 | cpp | C++ | source/RegistRTTR.cpp | xzrunner/visiongraph | 476ea49bbf56d6a2caa062d05677e768575d7ea1 | [
"MIT"
] | null | null | null | source/RegistRTTR.cpp | xzrunner/visiongraph | 476ea49bbf56d6a2caa062d05677e768575d7ea1 | [
"MIT"
] | null | null | null | source/RegistRTTR.cpp | xzrunner/visiongraph | 476ea49bbf56d6a2caa062d05677e768575d7ea1 | [
"MIT"
] | null | null | null | #define EXE_FILEPATH "visiongraph/comp_include_gen.h"
#include "visiongraph/comp_regist_cfg.h"
#undef EXE_FILEPATH
#include <rttr/registration>
#define REGIST_COMP_TYPE(type, name) \
rttr::registration::class_<visiongraph::comp::type>("vg::"#name) \
.constructor<>() ... | 23.658537 | 78 | 0.64433 | xzrunner |
0250cf74aa64e31b658e46e6a43e7457387ae8ae | 1,846 | cc | C++ | content/renderer/render_view_fuchsia.cc | sarang-apps/darshan_browser | 173649bb8a7c656dc60784d19e7bb73e07c20daa | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | null | null | null | content/renderer/render_view_fuchsia.cc | sarang-apps/darshan_browser | 173649bb8a7c656dc60784d19e7bb73e07c20daa | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | null | null | null | content/renderer/render_view_fuchsia.cc | sarang-apps/darshan_browser | 173649bb8a7c656dc60784d19e7bb73e07c20daa | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | 2 | 2021-01-05T23:43:46.000Z | 2021-01-07T23:36:34.000Z | // Copyright (c) 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/renderer/render_view_impl.h"
#include "third_party/blink/public/platform/web_font_render_style.h"
namespace content {
namespace {... | 34.830189 | 73 | 0.766522 | sarang-apps |
0250d212edfdbdd165811d908620272c8b6add10 | 2,149 | hpp | C++ | src/utility/Timer.hpp | jabra98/chip8EMU | b0b4c6d78fc8d30087c06468ef037ffd17bfea46 | [
"MIT"
] | 6 | 2020-06-02T12:03:48.000Z | 2021-07-05T20:52:03.000Z | src/utility/Timer.hpp | jabra98/chip8EMU | b0b4c6d78fc8d30087c06468ef037ffd17bfea46 | [
"MIT"
] | null | null | null | src/utility/Timer.hpp | jabra98/chip8EMU | b0b4c6d78fc8d30087c06468ef037ffd17bfea46 | [
"MIT"
] | 1 | 2020-04-10T15:31:01.000Z | 2020-04-10T15:31:01.000Z | #ifndef TIMER_HPP
#define TIMER_HPP
#include <chrono>
#include <stdexcept>
class Timer
{
public:
enum class Type
{
cpu,
framerate,
seconds,
milliseconds
};
bool is_ready(Type t, long long required_rate)
{
if (required_rate == 0)
return false;... | 27.202532 | 84 | 0.500233 | jabra98 |
025334e2d5c165cb66a31173789ab578b259f7be | 1,692 | hpp | C++ | rococo-dst/rrr/misc/dball.hpp | SJTU-IPADS/dst | 897b929a692642cbf295c105d9d6e64090abb673 | [
"Apache-2.0"
] | 9 | 2020-12-17T01:59:13.000Z | 2022-03-30T16:25:08.000Z | rococo-dst/rrr/misc/dball.hpp | SJTU-IPADS/dst | 897b929a692642cbf295c105d9d6e64090abb673 | [
"Apache-2.0"
] | 1 | 2021-07-30T12:06:33.000Z | 2021-07-31T10:16:09.000Z | rococo-dst/rrr/misc/dball.hpp | SJTU-IPADS/dst | 897b929a692642cbf295c105d9d6e64090abb673 | [
"Apache-2.0"
] | 1 | 2021-08-01T13:47:07.000Z | 2021-08-01T13:47:07.000Z | /**
* DragonBall is an interesting abstraction of event driven
* programming. Typically after you collect all dragon balls you can
* call for the holy dragon and he will make your wish become true.
*
* DragonBall is not thread-safe for now.
*/
#pragma once
#include <mutex>
#include <functional>
namespace rrr ... | 20.385542 | 68 | 0.567376 | SJTU-IPADS |
0256646db1940ee49d099786ccb4fa7b8ec9d819 | 3,652 | cpp | C++ | src/smt/smt_lookahead.cpp | vmishenev/misynth | 5bd977cb32144a6d61670c874efad49982f75932 | [
"MIT"
] | 55 | 2015-08-15T22:37:02.000Z | 2022-03-27T03:08:02.000Z | src/smt/smt_lookahead.cpp | ekpyron/z3 | 28cb13fb96c15714eb244bf05d1d7f56e84cda5e | [
"MIT"
] | 16 | 2016-04-13T23:48:33.000Z | 2020-02-02T12:38:52.000Z | src/smt/smt_lookahead.cpp | ekpyron/z3 | 28cb13fb96c15714eb244bf05d1d7f56e84cda5e | [
"MIT"
] | 18 | 2015-08-11T08:37:41.000Z | 2021-09-16T14:24:04.000Z | /*++
Copyright (c) 2006 Microsoft Corporation
Module Name:
smt_lookahead.cpp
Abstract:
Lookahead cuber for SMT
Author:
nbjorner 2019-05-27.
Revision History:
--*/
#include <cmath>
#include "ast/ast_smt2_pp.h"
#include "smt/smt_lookahead.h"
#include "smt/smt_context.h"
namespace smt {
lookahea... | 26.852941 | 69 | 0.452903 | vmishenev |
025eb732d987b4fc72682018667827dc98edc763 | 3,199 | cc | C++ | chrome/renderer/renderer_histogram_snapshots.cc | zachlatta/chromium | c4625eefca763df86471d798ee5a4a054b4716ae | [
"BSD-3-Clause"
] | 1 | 2021-09-24T22:49:10.000Z | 2021-09-24T22:49:10.000Z | chrome/renderer/renderer_histogram_snapshots.cc | changbai1980/chromium | c4625eefca763df86471d798ee5a4a054b4716ae | [
"BSD-3-Clause"
] | null | null | null | chrome/renderer/renderer_histogram_snapshots.cc | changbai1980/chromium | c4625eefca763df86471d798ee5a4a054b4716ae | [
"BSD-3-Clause"
] | null | null | null | // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/renderer/renderer_histogram_snapshots.h"
#include <ctype.h>
#include "base/histogram.h"
#include "base/logging.h"
#include "ba... | 34.031915 | 79 | 0.754298 | zachlatta |
02623bf040c4c0dcbcd4295874d50adcfb8adedc | 4,292 | cc | C++ | libartbase/base/bit_memory_region_test.cc | Paschalis/android-llvm | 317f7fd4b736a0511a2273a2487915c34cf8933e | [
"Apache-2.0"
] | 20 | 2021-06-24T16:38:42.000Z | 2022-01-20T16:15:57.000Z | libartbase/base/bit_memory_region_test.cc | Paschalis/android-llvm | 317f7fd4b736a0511a2273a2487915c34cf8933e | [
"Apache-2.0"
] | null | null | null | libartbase/base/bit_memory_region_test.cc | Paschalis/android-llvm | 317f7fd4b736a0511a2273a2487915c34cf8933e | [
"Apache-2.0"
] | 4 | 2021-11-03T06:01:12.000Z | 2022-02-24T02:57:31.000Z | /*
* Copyright (C) 2018 The Android Open Source Project
*
* 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 app... | 42.078431 | 98 | 0.657036 | Paschalis |
026b4f500cd2619f0f7fc036d74b2cb3c8f5edbc | 6,372 | cpp | C++ | Engine/Threading/QueuedTask.cpp | Higami69/Leviathan | 90f68f9f6e5506d6133bcefcf35c8e84f158483b | [
"BSL-1.0"
] | 16 | 2018-12-22T02:09:05.000Z | 2022-03-09T20:38:59.000Z | Engine/Threading/QueuedTask.cpp | Higami69/Leviathan | 90f68f9f6e5506d6133bcefcf35c8e84f158483b | [
"BSL-1.0"
] | 46 | 2018-04-02T11:06:01.000Z | 2019-12-14T11:16:04.000Z | Engine/Threading/QueuedTask.cpp | Higami69/Leviathan | 90f68f9f6e5506d6133bcefcf35c8e84f158483b | [
"BSL-1.0"
] | 14 | 2018-04-09T02:26:15.000Z | 2021-09-11T03:12:15.000Z | // ------------------------------------ //
#include "QueuedTask.h"
using namespace Leviathan;
// ------------------------------------ //
DLLEXPORT Leviathan::QueuedTask::QueuedTask(std::function<void ()> functorun) :
FunctionToRun(functorun)
{
}
DLLEXPORT Leviathan::QueuedTask::~QueuedTask(){
}
// -------------... | 28.963636 | 95 | 0.724105 | Higami69 |
02708b7439eb12b269ed15441d947c783cb9f908 | 1,944 | cpp | C++ | fennel/calculator/CalcInit.cpp | alexavila150/luciddb | e3125564eb18238677e6efb384b630cab17bb472 | [
"Apache-2.0"
] | 14 | 2015-07-21T06:31:22.000Z | 2020-05-13T14:18:33.000Z | fennel/calculator/CalcInit.cpp | alexavila150/luciddb | e3125564eb18238677e6efb384b630cab17bb472 | [
"Apache-2.0"
] | 1 | 2020-05-04T23:08:51.000Z | 2020-05-04T23:08:51.000Z | fennel/calculator/CalcInit.cpp | alexavila150/luciddb | e3125564eb18238677e6efb384b630cab17bb472 | [
"Apache-2.0"
] | 22 | 2015-01-03T14:27:36.000Z | 2021-09-14T02:09:13.000Z | /*
// Licensed to DynamoBI Corporation (DynamoBI) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. DynamoBI licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may ... | 31.868852 | 77 | 0.769033 | alexavila150 |
027373011eeebb62442bcd1bfa260027f24b3989 | 8,371 | hpp | C++ | ThirdParty-mod/java2cpp/java/util/concurrent/ExecutorCompletionService.hpp | kakashidinho/HQEngine | 8125b290afa7c62db6cc6eac14e964d8138c7fd0 | [
"MIT"
] | 1 | 2019-04-03T01:53:28.000Z | 2019-04-03T01:53:28.000Z | ThirdParty-mod/java2cpp/java/util/concurrent/ExecutorCompletionService.hpp | kakashidinho/HQEngine | 8125b290afa7c62db6cc6eac14e964d8138c7fd0 | [
"MIT"
] | null | null | null | ThirdParty-mod/java2cpp/java/util/concurrent/ExecutorCompletionService.hpp | kakashidinho/HQEngine | 8125b290afa7c62db6cc6eac14e964d8138c7fd0 | [
"MIT"
] | null | null | null | /*================================================================================
code generated by: java2cpp
author: Zoran Angelov, mailto://baldzar@gmail.com
class: java.util.concurrent.ExecutorCompletionService
================================================================================*/
#ifndef... | 44.057895 | 196 | 0.751523 | kakashidinho |
02744dba2b60bc5b64e6547a3ceb7ea98c3c761f | 4,907 | cpp | C++ | interfaces/kits/napi/aafwk/wantConstant/want_constant.cpp | chaoyangcui/aafwk_standard | 6a1ba0b0aa175c709e7a0d684f89ebd41a006061 | [
"Apache-2.0"
] | null | null | null | interfaces/kits/napi/aafwk/wantConstant/want_constant.cpp | chaoyangcui/aafwk_standard | 6a1ba0b0aa175c709e7a0d684f89ebd41a006061 | [
"Apache-2.0"
] | null | null | null | interfaces/kits/napi/aafwk/wantConstant/want_constant.cpp | chaoyangcui/aafwk_standard | 6a1ba0b0aa175c709e7a0d684f89ebd41a006061 | [
"Apache-2.0"
] | 1 | 2021-09-13T12:07:39.000Z | 2021-09-13T12:07:39.000Z | /*
* Copyright (c) 2021 Huawei Device 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 ... | 51.114583 | 118 | 0.75912 | chaoyangcui |
0275f4fa5198d87b64f0fe69c9de5e91eb58b7ea | 323 | cpp | C++ | src/main/cpp/pistis/logging/Log.cpp | tomault/pistis-logging | 26f1411d161dc08c5684f0df4a95d929e3bbef35 | [
"Apache-2.0"
] | null | null | null | src/main/cpp/pistis/logging/Log.cpp | tomault/pistis-logging | 26f1411d161dc08c5684f0df4a95d929e3bbef35 | [
"Apache-2.0"
] | null | null | null | src/main/cpp/pistis/logging/Log.cpp | tomault/pistis-logging | 26f1411d161dc08c5684f0df4a95d929e3bbef35 | [
"Apache-2.0"
] | null | null | null | #include "Log.hpp"
using namespace pistis::logging;
Log::Log(LogMessageFactory* msgFactory, LogMessageReceiver* msgReceiver,
const std::string& destination, LogLevel logLevel):
msgFactory_(msgFactory), msgReceiver_(msgReceiver),
destination_(destination), logLevel_(logLevel) {
// Intentionally left blank
... | 26.916667 | 72 | 0.770898 | tomault |
027659d075d26f6856fc5298629383779d8ee66f | 1,268 | cpp | C++ | src/chat/test/ElizaTest.cpp | OznOg/xania | 4effa29e1c88c7290400a8cf8a67e03ad71c851a | [
"BSD-2-Clause"
] | null | null | null | src/chat/test/ElizaTest.cpp | OznOg/xania | 4effa29e1c88c7290400a8cf8a67e03ad71c851a | [
"BSD-2-Clause"
] | null | null | null | src/chat/test/ElizaTest.cpp | OznOg/xania | 4effa29e1c88c7290400a8cf8a67e03ad71c851a | [
"BSD-2-Clause"
] | null | null | null | /*************************************************************************/
/* Xania (M)ulti(U)ser(D)ungeon server source code */
/* (C) 1995-2020 Xania Development Team */
/* See the header to file: merc.h for original code copyrights */
/* Chat bot ori... | 45.285714 | 116 | 0.554416 | OznOg |
027886a0999a02c0467b08869548bf4f8ce7c909 | 6,310 | cpp | C++ | src/py/wrapper_1826ae426a86563c999d176eb03c6750.cpp | nikhilkalige/ClangLite | dcb6d7385cca25c0a888bb56ae3ec1eb951cd752 | [
"Apache-2.0"
] | 5 | 2017-11-13T18:34:24.000Z | 2021-08-10T02:22:22.000Z | src/py/wrapper_1826ae426a86563c999d176eb03c6750.cpp | nikhilkalige/ClangLite | dcb6d7385cca25c0a888bb56ae3ec1eb951cd752 | [
"Apache-2.0"
] | 4 | 2017-11-15T13:13:36.000Z | 2019-02-26T00:21:14.000Z | src/py/wrapper_1826ae426a86563c999d176eb03c6750.cpp | nikhilkalige/ClangLite | dcb6d7385cca25c0a888bb56ae3ec1eb951cd752 | [
"Apache-2.0"
] | 7 | 2017-11-15T11:58:33.000Z | 2021-03-15T18:16:16.000Z | #include "_clanglite.h"
class ::clang::ConstructorUsingShadowDecl * (*method_pointer_c4b918ac39155b0a900dcfa85e003fbb)(class ::clang::ASTContext &, class ::clang::DeclContext *, class ::clang::SourceLocation , class ::clang::UsingDecl *, class ::clang::NamedDecl *, bool )= ::clang::ConstructorUsingShadowDecl::Create;
... | 166.052632 | 479 | 0.82916 | nikhilkalige |
027a3d5f2e034521e419ceb3bdf9cb0ea025e3f5 | 2,528 | cpp | C++ | library/cpp/threading/mux_event/mux_event_ut.cpp | jochenater/catboost | de2786fbc633b0d6ea6a23b3862496c6151b95c2 | [
"Apache-2.0"
] | 6,989 | 2017-07-18T06:23:18.000Z | 2022-03-31T15:58:36.000Z | library/cpp/threading/mux_event/mux_event_ut.cpp | birichie/catboost | de75c6af12cf490700e76c22072fbdc15b35d679 | [
"Apache-2.0"
] | 1,978 | 2017-07-18T09:17:58.000Z | 2022-03-31T14:28:43.000Z | library/cpp/threading/mux_event/mux_event_ut.cpp | birichie/catboost | de75c6af12cf490700e76c22072fbdc15b35d679 | [
"Apache-2.0"
] | 1,228 | 2017-07-18T09:03:13.000Z | 2022-03-29T05:57:40.000Z | #include <library/cpp/testing/unittest/registar.h>
#include <library/cpp/threading/mux_event/mux_event.h>
#include <util/system/thread.h>
struct TMuxEventText: public TTestBase {
UNIT_TEST_SUITE(TMuxEventText);
UNIT_TEST(CheckOneWait);
UNIT_TEST(CheckTwoWait);
UNIT_TEST(CheckSignalAfterWait);
UNIT_... | 34.630137 | 102 | 0.689873 | jochenater |
027a6ebc2ac3a25e7bc902f573cb157e364f0d05 | 1,188 | hpp | C++ | Value/ValueVisitorPrinter.hpp | Sevenrip/value-container | a2c586a134f10c2a1802ee5947e0c4b8a4b046dc | [
"MIT"
] | null | null | null | Value/ValueVisitorPrinter.hpp | Sevenrip/value-container | a2c586a134f10c2a1802ee5947e0c4b8a4b046dc | [
"MIT"
] | null | null | null | Value/ValueVisitorPrinter.hpp | Sevenrip/value-container | a2c586a134f10c2a1802ee5947e0c4b8a4b046dc | [
"MIT"
] | null | null | null | #pragma once
#include <ostream>
#include <memory>
#include <type_traits>
#include <unordered_map>
#include <string>
#include <sstream>
#include "../Utils/Utils.hpp"
class ValueVisitorPrinter
{
public:
explicit ValueVisitorPrinter(std::stringstream & stream)
: _stream(stream) {}
Val... | 19.47541 | 73 | 0.564815 | Sevenrip |
027dbd873a120220b9c64c2d82a5a7f0e8a07408 | 7,996 | cpp | C++ | code/wxWidgets/utils/configtool/src/configitemselector.cpp | Bloodknight/NeuTorsion | a5890e9ca145a8c1b6bec7b70047a43d9b1c29ea | [
"MIT"
] | 38 | 2016-02-20T02:46:28.000Z | 2021-11-17T11:39:57.000Z | code/wxWidgets/utils/configtool/src/configitemselector.cpp | Bloodknight/NeuTorsion | a5890e9ca145a8c1b6bec7b70047a43d9b1c29ea | [
"MIT"
] | 17 | 2016-02-20T02:19:55.000Z | 2021-02-08T15:15:17.000Z | code/wxWidgets/utils/configtool/src/configitemselector.cpp | Bloodknight/NeuTorsion | a5890e9ca145a8c1b6bec7b70047a43d9b1c29ea | [
"MIT"
] | 46 | 2016-02-20T02:47:33.000Z | 2021-01-31T15:46:05.000Z | /////////////////////////////////////////////////////////////////////////////
// Name: configitemselector.cpp
// Purpose: Selector for one or more config items
// Author: Julian Smart
// Modified by:
// Created: 2003-06-04
// RCS-ID: $Id: configitemselector.cpp,v 1.11 2005/02/01 20:44:05 ABX Ex... | 28.866426 | 185 | 0.681591 | Bloodknight |
027f93f9f55f52c8c10d1e4c7a8670ed046b9008 | 1,939 | cpp | C++ | usaco/section3.1/contact.cpp | chasingegg/Online_Judge | 8a3f4b5b207cbeda921c743a527a25bf9c7b6248 | [
"MIT"
] | 1 | 2017-10-13T10:34:46.000Z | 2017-10-13T10:34:46.000Z | usaco/section3.1/contact.cpp | chasingegg/Online_Judge | 8a3f4b5b207cbeda921c743a527a25bf9c7b6248 | [
"MIT"
] | null | null | null | usaco/section3.1/contact.cpp | chasingegg/Online_Judge | 8a3f4b5b207cbeda921c743a527a25bf9c7b6248 | [
"MIT"
] | null | null | null | /*
PROG: contact
LANG: C++
*/
//2017.5.29
//这道题我选择抄答案
//不过发现在进行字符串的匹配过程中其实实现的依然是暴力的做法
//主要的想法就是hash 把字符串的数值作为index保存下来 但有问题就是 00 000 0000 这种情况方式就是前面加上1作为区分
#include<iostream>
#include<fstream>
#include<string>
#include<memory.h>
#include<algorithm>
using namespace std;
ifstream fin("contact.in");
ofstream fout("cont... | 22.546512 | 69 | 0.436307 | chasingegg |
028104b7714953839a12c04612e6e6e671966089 | 11,207 | cpp | C++ | PS4Engine/PS4Engine/api_gnm/simplet-gs-stream-out/simplet-gs-stream-out.cpp | Enderderder/SonyEngine | ee8b3726d293c667d2e2a849808b993e954b84c7 | [
"MIT"
] | 2 | 2020-02-22T01:27:28.000Z | 2021-12-20T08:41:43.000Z | PS4Engine/PS4Engine/api_gnm/simplet-gs-stream-out/simplet-gs-stream-out.cpp | Enderderder/SonyEngine | ee8b3726d293c667d2e2a849808b993e954b84c7 | [
"MIT"
] | null | null | null | PS4Engine/PS4Engine/api_gnm/simplet-gs-stream-out/simplet-gs-stream-out.cpp | Enderderder/SonyEngine | ee8b3726d293c667d2e2a849808b993e954b84c7 | [
"MIT"
] | 2 | 2019-09-17T19:54:00.000Z | 2020-03-06T15:08:52.000Z | /* SIE CONFIDENTIAL
PlayStation(R)4 Programmer Tool Runtime Library Release 05.008.001
* Copyright (C) 2016 Sony Interactive Entertainment Inc.
* All Rights Reserved.
*/
// Simplet #7
// This simplet shows how to setup es, gs shaders to create geometry
#include "../toolkit/simplet-common.h"
#include "std_cbuffer.h"
... | 35.577778 | 237 | 0.725618 | Enderderder |
0281ccab2da476acf4f88b7b6f45cf1692cf0505 | 320 | cpp | C++ | main.cpp | cfiutak1/AdaptiveCacheAwareBlockQuickselect | e736585e276832d9c6d50ce67ad37e72b87129ef | [
"MIT"
] | 1 | 2020-09-11T19:29:30.000Z | 2020-09-11T19:29:30.000Z | main.cpp | cfiutak1/AdaptiveCacheAwareBlockQuickselect | e736585e276832d9c6d50ce67ad37e72b87129ef | [
"MIT"
] | null | null | null | main.cpp | cfiutak1/AdaptiveCacheAwareBlockQuickselect | e736585e276832d9c6d50ce67ad37e72b87129ef | [
"MIT"
] | null | null | null | #include <iterator>
#include <algorithm>
#include <cmath>
#include <chrono>
#include <vector>
#include <cassert>
#include <random>
#include "adaptive_blockquickselect.hpp"
//#include "BlockQuicksort/quickselect.hpp"
//#include "MedianOfNinthers/src/median_of_ninthers.h"
int main() {
std::srand(42);
}
| 11.428571 | 54 | 0.7125 | cfiutak1 |
0286bd92415463a20b1fec294ade82406f00fe82 | 16,714 | cpp | C++ | msvc/EuhatExpert/Expert/peer/FileMan/FileManSubDlg.cpp | euhat/EuhatExpert | 3932238a0bd72a8f12b4ae6ced1ade6482228fe0 | [
"BSD-2-Clause"
] | null | null | null | msvc/EuhatExpert/Expert/peer/FileMan/FileManSubDlg.cpp | euhat/EuhatExpert | 3932238a0bd72a8f12b4ae6ced1ade6482228fe0 | [
"BSD-2-Clause"
] | null | null | null | msvc/EuhatExpert/Expert/peer/FileMan/FileManSubDlg.cpp | euhat/EuhatExpert | 3932238a0bd72a8f12b4ae6ced1ade6482228fe0 | [
"BSD-2-Clause"
] | null | null | null | #include "stdafx.h"
#include "../../Expert.h"
#include "../../ExpertDlg.h"
#include "FileManDlg.h"
#include "FileManCfgDlg.h"
#include "FileManSubDlg.h"
#include "../EuhatPeerDlg.h"
#include "../../EuhatRightDlg.h"
#include "../../EuhatLeftDlg.h"
#include "FmFileDlg.h"
#include <app/FileMan/client/FileManClient.h>
#inc... | 26.958065 | 136 | 0.698875 | euhat |
02877bf755aa8eaf21aa65649d106f0e1b00c707 | 3,249 | cc | C++ | trick_source/er7_utils/integration/beeman/src/beeman_integrator_constructor.cc | TheCivilAge/RogueKitten | 0b9fbe17624e77752f6160463c6d8aa5a781aad1 | [
"NASA-1.3"
] | null | null | null | trick_source/er7_utils/integration/beeman/src/beeman_integrator_constructor.cc | TheCivilAge/RogueKitten | 0b9fbe17624e77752f6160463c6d8aa5a781aad1 | [
"NASA-1.3"
] | null | null | null | trick_source/er7_utils/integration/beeman/src/beeman_integrator_constructor.cc | TheCivilAge/RogueKitten | 0b9fbe17624e77752f6160463c6d8aa5a781aad1 | [
"NASA-1.3"
] | null | null | null | /**
* @if Er7UtilsUseGroups
* @addtogroup Er7Utils
* @{
* @addtogroup Integration
* @{
* @endif
*/
/**
* @file
* Defines member functions for the class BeemanIntegratorConstructor.
*/
/*
Purpose: ()
*/
// System includes
// Interface includes
#include "er7_utils/interface/include/alloc.hh"
// Integration... | 24.246269 | 84 | 0.761773 | TheCivilAge |
0288d98acb7eb8d694d664c6cd7fc5dc8baf8af8 | 1,175 | hpp | C++ | src/JMParser.hpp | iCurlmyster/JMLang | cec9f66dcdcebfc87cdd3538c10c50bb85c2ab8e | [
"MIT"
] | null | null | null | src/JMParser.hpp | iCurlmyster/JMLang | cec9f66dcdcebfc87cdd3538c10c50bb85c2ab8e | [
"MIT"
] | null | null | null | src/JMParser.hpp | iCurlmyster/JMLang | cec9f66dcdcebfc87cdd3538c10c50bb85c2ab8e | [
"MIT"
] | null | null | null | #ifndef JMPARSER_HPP
#define JMPARSER_HPP
#include <string>
#include <vector>
#include "JMTypes.h"
namespace JM {
class Parser
{
/**
* Instance variable to hold the current string being parsed.
* @type std::string
*/
std::string parsedString;
/**
* Instance variable to hold the current Type the par... | 20.258621 | 75 | 0.67234 | iCurlmyster |
0289b5f250b067f6fcf14d97a0f4b9525b403928 | 3,257 | cc | C++ | base-usage/cplusplus/test_thread.cc | sczzq/symmetrical-spoon | aa0c27bb40a482789c7c6a7088307320a007b49b | [
"Unlicense"
] | null | null | null | base-usage/cplusplus/test_thread.cc | sczzq/symmetrical-spoon | aa0c27bb40a482789c7c6a7088307320a007b49b | [
"Unlicense"
] | null | null | null | base-usage/cplusplus/test_thread.cc | sczzq/symmetrical-spoon | aa0c27bb40a482789c7c6a7088307320a007b49b | [
"Unlicense"
] | null | null | null | #include <inttypes.h>
#include <chrono>
#include <cstdio>
#include <cstdlib>
#include <ctime>
#include <string>
#include <thread>
#include <vector>
#include <iostream>
#include <atomic>
#define OS_LINUX
#if defined(OS_LINUX)
#include <dirent.h>
#include <signal.h>
#include <sys/stat.h>
#include <sys/types.h>
#include ... | 24.30597 | 76 | 0.61529 | sczzq |
028b40ad3998317c2d2901b8165ebcbcc0570857 | 832 | cpp | C++ | Engine/Plugins/2D/Paper2D/Source/Paper2DEditor/Private/PaperFlipbookFactory.cpp | windystrife/UnrealEngine_NVIDIAGameWork | b50e6338a7c5b26374d66306ebc7807541ff815e | [
"MIT"
] | 1 | 2022-01-29T18:36:12.000Z | 2022-01-29T18:36:12.000Z | Engine/Plugins/2D/Paper2D/Source/Paper2DEditor/Private/PaperFlipbookFactory.cpp | windystrife/UnrealEngine_NVIDIAGameWork | b50e6338a7c5b26374d66306ebc7807541ff815e | [
"MIT"
] | null | null | null | Engine/Plugins/2D/Paper2D/Source/Paper2DEditor/Private/PaperFlipbookFactory.cpp | windystrife/UnrealEngine_NVIDIAGameWork | b50e6338a7c5b26374d66306ebc7807541ff815e | [
"MIT"
] | null | null | null | // Copyright 1998-2017 Epic Games, Inc. All Rights Reserved.
#include "PaperFlipbookFactory.h"
#define LOCTEXT_NAMESPACE "Paper2D"
/////////////////////////////////////////////////////
// UPaperFlipbookFactory
UPaperFlipbookFactory::UPaperFlipbookFactory(const FObjectInitializer& ObjectInitializer)
: Super(ObjectI... | 28.689655 | 156 | 0.746394 | windystrife |
028bc7541879411c849c8e67746d3f439745f7a8 | 937 | hpp | C++ | Source/Engine/ClientSubsystem/Renderer/RenderingCommon.hpp | Scapior/KompotEngine | 9de8c7c6a1158198a18aa237e6a2dbe41ffb44cc | [
"MIT"
] | null | null | null | Source/Engine/ClientSubsystem/Renderer/RenderingCommon.hpp | Scapior/KompotEngine | 9de8c7c6a1158198a18aa237e6a2dbe41ffb44cc | [
"MIT"
] | 36 | 2020-10-14T15:17:46.000Z | 2022-02-07T22:10:54.000Z | Source/Engine/ClientSubsystem/Renderer/RenderingCommon.hpp | Scapior/KompotEngine | 9de8c7c6a1158198a18aa237e6a2dbe41ffb44cc | [
"MIT"
] | 1 | 2019-05-12T16:59:50.000Z | 2019-05-12T16:59:50.000Z | /*
* RenderingCommon.hpp
* Copyright (C) 2021 by Maxim Stoianov
* Licensed under the MIT license.
*/
#pragma once
#include <string_view>
namespace Kompot
{
class Window;
}
namespace Kompot::Rendering
{
struct WindowRendererAttributes
{
virtual ~WindowRendererAttributes()
{
}
};
enum class Shade... | 17.351852 | 81 | 0.629669 | Scapior |
028d25724e5d7df7470a92a80d20211526021349 | 3,715 | hpp | C++ | source/utils.hpp | albanbruder/BruderAlban_119902_Assignment5 | 9cfea32263feef896e2780dffb0726c008e899d4 | [
"MIT"
] | null | null | null | source/utils.hpp | albanbruder/BruderAlban_119902_Assignment5 | 9cfea32263feef896e2780dffb0726c008e899d4 | [
"MIT"
] | null | null | null | source/utils.hpp | albanbruder/BruderAlban_119902_Assignment5 | 9cfea32263feef896e2780dffb0726c008e899d4 | [
"MIT"
] | null | null | null | #include <vector>
#include <stdlib.h>
#include <time.h>
#include <algorithm>
#include <math.h>
#include "line.hpp"
#include "segment.hpp"
/**
* Checks if a point p is in the bounding box spanned by points a and b.
*/
bool between(Point const& p, Point const& a, Point const& b) {
// check for x-coordinates
if(p.... | 23.814103 | 115 | 0.607268 | albanbruder |
028d72478ee03fe80f132207cdc39cf07d68c7fa | 2,293 | hpp | C++ | stan/math/prim/meta/is_constant.hpp | kedartal/math | 77248cf73c1110660006c9700f78d9bb7c02be1d | [
"BSD-3-Clause"
] | null | null | null | stan/math/prim/meta/is_constant.hpp | kedartal/math | 77248cf73c1110660006c9700f78d9bb7c02be1d | [
"BSD-3-Clause"
] | null | null | null | stan/math/prim/meta/is_constant.hpp | kedartal/math | 77248cf73c1110660006c9700f78d9bb7c02be1d | [
"BSD-3-Clause"
] | null | null | null | #ifndef STAN_MATH_PRIM_META_IS_CONSTANT_HPP
#define STAN_MATH_PRIM_META_IS_CONSTANT_HPP
#include <stan/math/prim/fun/Eigen.hpp>
#include <stan/math/prim/meta/is_eigen.hpp>
#include <stan/math/prim/meta/bool_constant.hpp>
#include <stan/math/prim/meta/conjunction.hpp>
#include <stan/math/prim/meta/is_vector.hpp>
#inclu... | 35.276923 | 79 | 0.73877 | kedartal |
028e4a951c4340e2adc3ea867763a7a604804e74 | 9,052 | cpp | C++ | cwinte.cpp | dylancarlson/citplus | 90aedfc7047fe92bdd0d09f1eb1671d7ddcde8a3 | [
"Unlicense"
] | 1 | 2020-08-11T06:12:01.000Z | 2020-08-11T06:12:01.000Z | cwinte.cpp | dylancarlson/citplus | 90aedfc7047fe92bdd0d09f1eb1671d7ddcde8a3 | [
"Unlicense"
] | null | null | null | cwinte.cpp | dylancarlson/citplus | 90aedfc7047fe92bdd0d09f1eb1671d7ddcde8a3 | [
"Unlicense"
] | null | null | null | // --------------------------------------------------------------------------
// Citadel: CWinTE.CPP
//
// Citadel Windows Text Editor
#ifndef WINCIT
#include "ctdl.h"
#pragma hdrstop
#include "cwindows.h"
// --------------------------------------------------------------------------
// Contents
Bool teH... | 19.056842 | 78 | 0.422559 | dylancarlson |
028fc7c23e790ff567d5c756ef09fadbcf3eda44 | 1,324 | cpp | C++ | tests/test_silence_remover.cpp | CyberSinh/chromaprint | 3dbc9adeec86f1bafc7a05969766562b9217deac | [
"MIT"
] | 582 | 2016-06-14T14:49:36.000Z | 2022-03-27T16:17:57.000Z | tests/test_silence_remover.cpp | CyberSinh/chromaprint | 3dbc9adeec86f1bafc7a05969766562b9217deac | [
"MIT"
] | 72 | 2016-07-28T14:27:55.000Z | 2022-03-19T18:32:44.000Z | tests/test_silence_remover.cpp | CyberSinh/chromaprint | 3dbc9adeec86f1bafc7a05969766562b9217deac | [
"MIT"
] | 102 | 2016-08-21T17:36:10.000Z | 2022-02-13T15:35:44.000Z | #include <gtest/gtest.h>
#include <algorithm>
#include <vector>
#include <fstream>
#include "test_utils.h"
#include "silence_remover.h"
#include "audio_buffer.h"
#include "utils.h"
using namespace chromaprint;
TEST(SilenceRemover, PassThrough)
{
short samples[] = { 1000, 2000, 3000, 4000, 5000, 6000 };
std::vector<... | 27.583333 | 75 | 0.679758 | CyberSinh |
0290b3d813d44d635d181b3bcf1ee27ab2365b82 | 1,362 | cpp | C++ | data/transcoder_evaluation_gfg/cpp/COUNT_INDEX_PAIRS_EQUAL_ELEMENTS_ARRAY.cpp | mxl1n/CodeGen | e5101dd5c5e9c3720c70c80f78b18f13e118335a | [
"MIT"
] | 241 | 2021-07-20T08:35:20.000Z | 2022-03-31T02:39:08.000Z | data/transcoder_evaluation_gfg/cpp/COUNT_INDEX_PAIRS_EQUAL_ELEMENTS_ARRAY.cpp | mxl1n/CodeGen | e5101dd5c5e9c3720c70c80f78b18f13e118335a | [
"MIT"
] | 49 | 2021-07-22T23:18:42.000Z | 2022-03-24T09:15:26.000Z | data/transcoder_evaluation_gfg/cpp/COUNT_INDEX_PAIRS_EQUAL_ELEMENTS_ARRAY.cpp | mxl1n/CodeGen | e5101dd5c5e9c3720c70c80f78b18f13e118335a | [
"MIT"
] | 71 | 2021-07-21T05:17:52.000Z | 2022-03-29T23:49:28.000Z | // Copyright (c) 2019-present, Facebook, Inc.
// All rights reserved.
//
// This source code is licensed under the license found in the
// LICENSE file in the root directory of this source tree.
//
#include <iostream>
#include <cstdlib>
#include <string>
#include <vector>
#include <fstream>
#include <iomanip>
#include... | 32.428571 | 446 | 0.561674 | mxl1n |
02950af9a8771f70640dd8f535517ebb3b106091 | 5,382 | cpp | C++ | EncoderOpus.cpp | dcealopez/VUPlayer | ff8a5032579a0adf01740e03a9067aa2875d7af1 | [
"MIT"
] | 57 | 2017-06-05T00:10:05.000Z | 2022-02-17T10:59:54.000Z | EncoderOpus.cpp | dcealopez/VUPlayer | ff8a5032579a0adf01740e03a9067aa2875d7af1 | [
"MIT"
] | 26 | 2018-07-09T00:05:46.000Z | 2021-12-30T22:50:24.000Z | EncoderOpus.cpp | dcealopez/VUPlayer | ff8a5032579a0adf01740e03a9067aa2875d7af1 | [
"MIT"
] | 4 | 2019-07-31T13:31:51.000Z | 2021-08-16T21:50:32.000Z | #include "EncoderOpus.h"
#include "Handler.h"
#include "Utility.h"
#include <vector>
// Minimum/maximum/default bit rates.
static const int s_MinimumBitrate = 8;
static const int s_MaximumBitrate = 256;
static const int s_DefaultBitrate = 128;
EncoderOpus::EncoderOpus() :
Encoder(),
m_Channels( 0 ),
m_OpusEncode... | 28.17801 | 166 | 0.63861 | dcealopez |
029dcd2075705ce8d975377091a9464af8e6fff7 | 6,343 | cpp | C++ | src/ftxui/component/component_options.cpp | VatamanuBogdan/FTXUI | 62fb6298bef19618a43aff9f09401309c307a156 | [
"MIT"
] | 1 | 2022-01-24T23:53:32.000Z | 2022-01-24T23:53:32.000Z | src/ftxui/component/component_options.cpp | VatamanuBogdan/FTXUI | 62fb6298bef19618a43aff9f09401309c307a156 | [
"MIT"
] | null | null | null | src/ftxui/component/component_options.cpp | VatamanuBogdan/FTXUI | 62fb6298bef19618a43aff9f09401309c307a156 | [
"MIT"
] | null | null | null | #include "ftxui/component/component_options.hpp"
#include <memory> // for allocator, shared_ptr
#include "ftxui/component/animation.hpp" // for Function, Duration
#include "ftxui/dom/elements.hpp" // for Element, operator|, text, bold, dim, inverted, automerge
namespace ftxui {
void AnimatedColorOption::Set(Colo... | 27.69869 | 98 | 0.63976 | VatamanuBogdan |
029e698687a9d36ee1095d0ed42fd2d9c03112ad | 4,960 | cpp | C++ | deprecated_compiler/src/StringReader.cpp | Limvot/kraken | 6e5a372f07a864555c0e6492de4f46ffab75bfe7 | [
"MIT"
] | 14 | 2015-12-28T10:33:33.000Z | 2022-03-29T04:04:52.000Z | deprecated_compiler/src/StringReader.cpp | Limvot/kraken | 6e5a372f07a864555c0e6492de4f46ffab75bfe7 | [
"MIT"
] | 3 | 2016-04-20T23:10:09.000Z | 2022-01-30T21:59:56.000Z | deprecated_compiler/src/StringReader.cpp | Limvot/kraken | 6e5a372f07a864555c0e6492de4f46ffab75bfe7 | [
"MIT"
] | 1 | 2016-04-20T01:02:53.000Z | 2016-04-20T01:02:53.000Z | #include "StringReader.h"
#include <cassert>
StringReader::StringReader()
{
str_pos = 0;
}
StringReader::StringReader(std::string inputString)
{
str_pos = 0;
setString(inputString);
}
StringReader::~StringReader()
{
//dtor
}
void StringReader::setString(std::string inputString)
{
rd_string = inp... | 29.700599 | 217 | 0.509879 | Limvot |
02a21e1be3d55119cb4936b7741881775c7b9f5e | 3,117 | cpp | C++ | tools/relation_finder_client.cpp | fhd/relation-finder | 37dec835be079e6158c1304cffcb33d43cd13393 | [
"MIT"
] | 1 | 2018-09-11T02:37:42.000Z | 2018-09-11T02:37:42.000Z | tools/relation_finder_client.cpp | fhd/relation-finder | 37dec835be079e6158c1304cffcb33d43cd13393 | [
"MIT"
] | null | null | null | tools/relation_finder_client.cpp | fhd/relation-finder | 37dec835be079e6158c1304cffcb33d43cd13393 | [
"MIT"
] | null | null | null | /*
* This is an example client for relation-finder, demonstrating its protocol
* using Boost.Asio for network communication.
*
* The protocol is pretty simple, the only data send is a couple of unsigned
* 32-bit integers. It basically works like this:
* 1. Connect to relation-finder via TCP.
* 2. Send the user I... | 30.558824 | 78 | 0.582291 | fhd |
02a5613c565618469ee306948cf7090e8838a3ae | 1,293 | cpp | C++ | leetcode/cpp/qt_binary_tree_upside_down.cpp | qiaotian/CodeInterview | 294c1ba86d8ace41a121c5ada4ba4c3765ccc17d | [
"WTFPL"
] | 5 | 2016-10-29T09:28:11.000Z | 2019-10-19T23:02:48.000Z | leetcode/cpp/qt_binary_tree_upside_down.cpp | qiaotian/CodeInterview | 294c1ba86d8ace41a121c5ada4ba4c3765ccc17d | [
"WTFPL"
] | null | null | null | leetcode/cpp/qt_binary_tree_upside_down.cpp | qiaotian/CodeInterview | 294c1ba86d8ace41a121c5ada4ba4c3765ccc17d | [
"WTFPL"
] | null | null | null | /**
* @Author: Tian Qiao <qiaotian>
* @Date: 2016-07-06T23:46:38+08:00
* @Email: qiaotian@me.com
* @Last modified by: qiaotian
* @Last modified time: 2016-07-07T01:33:48+08:00
* @Inc: LinkedIn
*/
Given a binary tree where all the right nodes are either leaf nodes with a sibling (a left node that shares the same... | 23.944444 | 264 | 0.603248 | qiaotian |
02a5f62e1280a8f6927bc550e79d8ad56d3f86b0 | 3,072 | cpp | C++ | mr.Sadman/Classes/GameAct/Objects/Physical/Shared/Pivot/Pivot.cpp | 1pkg/dump | 0ee579cb6a97ae64d5367cc624b2407d7d4b1c7b | [
"MIT"
] | null | null | null | mr.Sadman/Classes/GameAct/Objects/Physical/Shared/Pivot/Pivot.cpp | 1pkg/dump | 0ee579cb6a97ae64d5367cc624b2407d7d4b1c7b | [
"MIT"
] | 3 | 2020-12-11T10:01:27.000Z | 2022-02-13T22:12:05.000Z | mr.Sadman/Classes/GameAct/Objects/Physical/Shared/Pivot/Pivot.cpp | 1pkg/dump | 0ee579cb6a97ae64d5367cc624b2407d7d4b1c7b | [
"MIT"
] | null | null | null | #include "Pivot.hpp"
namespace GameAct
{
namespace Physical
{
void
Pivot::initialize()
{
Object::initialize();
getBody()->setDynamic( false );
}
std::string
Pivot::getResourcesName() const
{
return "Pivot";
}
void
Pivot::setAdditionalParam( std::string additionalParam )
{
std::string ... | 27.185841 | 112 | 0.627279 | 1pkg |
02a894c5184a9621599baf2368ed75fa3c656fd6 | 7,840 | cpp | C++ | Tests/DlrComLibrary/SimpleErrors.cpp | TwoUnderscorez/dlr | 60dfacb9852ec022dd076c152e286b116553c905 | [
"Apache-2.0"
] | 307 | 2015-01-03T19:57:57.000Z | 2022-03-30T21:22:59.000Z | Src/Tests/DlrComLibrary/SimpleErrors.cpp | rudimk/dlr-dotnet | 71d11769f99d6ff1516ddbaed091a359eb46c670 | [
"MS-PL"
] | 72 | 2015-09-28T16:23:24.000Z | 2022-03-14T00:47:04.000Z | Src/Tests/DlrComLibrary/SimpleErrors.cpp | rudimk/dlr-dotnet | 71d11769f99d6ff1516ddbaed091a359eb46c670 | [
"MS-PL"
] | 85 | 2015-01-03T19:58:01.000Z | 2021-12-23T15:47:11.000Z | // SimpleErrors.cpp : Implementation of CSimpleErrors
#include "stdafx.h"
#include "SimpleErrors.h"
#include "corerror.h"
int CSimpleErrors::s_cConstructed;
int CSimpleErrors::s_cReleased;
// CSimpleErrors
STDMETHODIMP CSimpleErrors::genMseeAppDomainUnloaded(void)
{
//return MSEE_E_APPDOMAINUNLOADED;
return 0x80... | 17.5 | 63 | 0.826276 | TwoUnderscorez |
02a94f378ed16f784a838b13b832a3baa61b2354 | 5,554 | cpp | C++ | cynosdb/src/v20190107/model/NetAddr.cpp | suluner/tencentcloud-sdk-cpp | a56c73cc3f488c4d1e10755704107bb15c5e000d | [
"Apache-2.0"
] | 1 | 2022-01-27T09:27:34.000Z | 2022-01-27T09:27:34.000Z | cynosdb/src/v20190107/model/NetAddr.cpp | suluner/tencentcloud-sdk-cpp | a56c73cc3f488c4d1e10755704107bb15c5e000d | [
"Apache-2.0"
] | null | null | null | cynosdb/src/v20190107/model/NetAddr.cpp | suluner/tencentcloud-sdk-cpp | a56c73cc3f488c4d1e10755704107bb15c5e000d | [
"Apache-2.0"
] | null | null | null | /*
* Copyright (c) 2017-2019 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
... | 25.59447 | 135 | 0.662405 | suluner |
02aa1c90a68e80c19bcdd0b2a1f9d1f98238024d | 5,709 | cpp | C++ | examples/airhockey/openglwindow.cpp | LJC-DB/abcg | e771d847b17eaf1af9c0d1b383ddbb9d7416ae65 | [
"MIT"
] | null | null | null | examples/airhockey/openglwindow.cpp | LJC-DB/abcg | e771d847b17eaf1af9c0d1b383ddbb9d7416ae65 | [
"MIT"
] | null | null | null | examples/airhockey/openglwindow.cpp | LJC-DB/abcg | e771d847b17eaf1af9c0d1b383ddbb9d7416ae65 | [
"MIT"
] | null | null | null | #include "openglwindow.hpp"
#include <imgui.h>
#include <string>
#include "abcg.hpp"
void OpenGLWindow::handleEvent(SDL_Event &event) {
// Keyboard events
if (event.type == SDL_KEYDOWN) {
if (event.key.keysym.sym == SDLK_UP)
m_gameData.m_input.set(static_cast<size_t>(Input::Up));
if (event.key.key... | 30.529412 | 79 | 0.652128 | LJC-DB |
02ac059c16f068988bd9a138885c13f70391079a | 1,589 | cpp | C++ | source/Ch10/Drill10.cpp | DBalazs22/UDProg-Introduction | b443a831f2e3496928593d4b5d73db141d8be17c | [
"CC0-1.0"
] | null | null | null | source/Ch10/Drill10.cpp | DBalazs22/UDProg-Introduction | b443a831f2e3496928593d4b5d73db141d8be17c | [
"CC0-1.0"
] | null | null | null | source/Ch10/Drill10.cpp | DBalazs22/UDProg-Introduction | b443a831f2e3496928593d4b5d73db141d8be17c | [
"CC0-1.0"
] | null | null | null | #include "std_lib_facilities.h"
struct Point
{
int x,y;
};
vector<Point> original_points;
vector<Point> processed_points;
void get_points()
{
int x,y;
while (cin >> x >> y )
{
original_points.push_back(Point{x,y});
if(original_points.size()==7) break;
}
}
void write_points()
{
string name = "pontok.txt... | 16.050505 | 101 | 0.618628 | DBalazs22 |
02ad6d84b1eaec671870f9e2ea6e046182267ef9 | 2,173 | cc | C++ | chromium/chrome/browser/geolocation/geolocation_infobar_delegate_android.cc | wedataintelligence/vivaldi-source | 22a46f2c969f6a0b7ca239a05575d1ea2738768c | [
"BSD-3-Clause"
] | null | null | null | chromium/chrome/browser/geolocation/geolocation_infobar_delegate_android.cc | wedataintelligence/vivaldi-source | 22a46f2c969f6a0b7ca239a05575d1ea2738768c | [
"BSD-3-Clause"
] | null | null | null | chromium/chrome/browser/geolocation/geolocation_infobar_delegate_android.cc | wedataintelligence/vivaldi-source | 22a46f2c969f6a0b7ca239a05575d1ea2738768c | [
"BSD-3-Clause"
] | null | null | null | // Copyright 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/geolocation/geolocation_infobar_delegate_android.h"
#include "chrome/browser/android/android_theme_resources.h"
#include "chrome... | 41 | 80 | 0.754257 | wedataintelligence |
02add380db14246448830f81bc6c9ae9dc762dba | 6,669 | hpp | C++ | src/config/config-schema.hpp | bsc-ssrg/NORNS | 4fd2d181019eceadb8b1b04a94e3756476326239 | [
"MIT"
] | 2 | 2019-11-11T11:34:56.000Z | 2020-12-08T02:13:48.000Z | src/config/config-schema.hpp | bsc-ssrg/NORNS | 4fd2d181019eceadb8b1b04a94e3756476326239 | [
"MIT"
] | null | null | null | src/config/config-schema.hpp | bsc-ssrg/NORNS | 4fd2d181019eceadb8b1b04a94e3756476326239 | [
"MIT"
] | null | null | null | /*************************************************************************
* Copyright (C) 2017-2019 Barcelona Supercomputing Center *
* Centro Nacional de Supercomputacion *
* All rights reserved. *
* ... | 42.477707 | 76 | 0.504873 | bsc-ssrg |
02b01f26a2187256df07b830867909f11f98be27 | 8,378 | cxx | C++ | pandatool/src/pstatserver/pStatReader.cxx | cmarshall108/panda3d-python3 | 8bea2c0c120b03ec1c9fd179701fdeb7510bb97b | [
"PHP-3.0",
"PHP-3.01"
] | null | null | null | pandatool/src/pstatserver/pStatReader.cxx | cmarshall108/panda3d-python3 | 8bea2c0c120b03ec1c9fd179701fdeb7510bb97b | [
"PHP-3.0",
"PHP-3.01"
] | null | null | null | pandatool/src/pstatserver/pStatReader.cxx | cmarshall108/panda3d-python3 | 8bea2c0c120b03ec1c9fd179701fdeb7510bb97b | [
"PHP-3.0",
"PHP-3.01"
] | null | null | null | /**
* PANDA 3D SOFTWARE
* Copyright (c) Carnegie Mellon University. All rights reserved.
*
* All use of this software is subject to the terms of the revised BSD
* license. You should have received a copy of this license along
* with this source code in a file named "LICENSE."
*
* @file pStatReader.cxx
* @aut... | 28.304054 | 89 | 0.700645 | cmarshall108 |
02b18662fc96a17a916f6576826a6c7903305d48 | 2,882 | cpp | C++ | dibot _template/DIBotFramework/CAN/can.cpp | Guvernant/DIBot | dfda9924b0fd39eca725a2724bc759e7b62ef671 | [
"Apache-2.0"
] | null | null | null | dibot _template/DIBotFramework/CAN/can.cpp | Guvernant/DIBot | dfda9924b0fd39eca725a2724bc759e7b62ef671 | [
"Apache-2.0"
] | null | null | null | dibot _template/DIBotFramework/CAN/can.cpp | Guvernant/DIBot | dfda9924b0fd39eca725a2724bc759e7b62ef671 | [
"Apache-2.0"
] | null | null | null | #include "can.hpp"
Can::Can()
{
}
bool Can::begin()
{
static PORT_InitTypeDef PortInit;
/* Fill PortInit structure*/
PortInit.PORT_PULL_UP = PORT_PULL_UP_OFF;
PortInit.PORT_PULL_DOWN = PORT_PULL_DOWN_OFF;
PortInit.PORT_PD_SHM = PORT_PD_SHM_OFF;
PortInit.PORT_PD = PORT_PD_DRIVER;
Port... | 23.430894 | 85 | 0.667939 | Guvernant |
02b4a4cd0b1806a0738989533c578016d79446a2 | 1,464 | hpp | C++ | src/types/inc/User32Utils.hpp | hessedoneen/terminal | aa54de1d648f45920996aeba1edecc67237c6642 | [
"MIT"
] | 34,359 | 2019-05-06T21:04:42.000Z | 2019-05-14T22:06:43.000Z | src/types/inc/User32Utils.hpp | Ingridamilsina/terminal | 788d33ce94d28e2903bc49f841ce279211b7f557 | [
"MIT"
] | 356 | 2019-05-06T21:03:35.000Z | 2019-05-14T21:38:47.000Z | src/types/inc/User32Utils.hpp | 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.
// Routine Description:
// - Retrieves the string resource from the current module with the given ID
// from the resources files. See resource.h and the .rc definitions for valid
// IDs.
// Arguments:
// - id - Resource ID
// Retur... | 45.75 | 81 | 0.661202 | hessedoneen |
02b5e1ad621cc806ee5bd2275752aab00db6b8a8 | 12,117 | hpp | C++ | libraries/belle/Source/Modern/Music/State.hpp | jogawebb/Spaghettis | 78f21ba3065ce316ef0cb84e94aecc9e8787343d | [
"Zlib",
"BSD-2-Clause",
"BSD-3-Clause"
] | 47 | 2017-09-05T02:49:22.000Z | 2022-01-20T08:11:47.000Z | libraries/belle/Source/Modern/Music/State.hpp | jogawebb/Spaghettis | 78f21ba3065ce316ef0cb84e94aecc9e8787343d | [
"Zlib",
"BSD-2-Clause",
"BSD-3-Clause"
] | 106 | 2018-05-16T14:58:52.000Z | 2022-01-12T13:57:24.000Z | libraries/belle/Source/Modern/Music/State.hpp | jogawebb/Spaghettis | 78f21ba3065ce316ef0cb84e94aecc9e8787343d | [
"Zlib",
"BSD-2-Clause",
"BSD-3-Clause"
] | 11 | 2018-05-16T06:44:51.000Z | 2021-11-10T07:04:46.000Z |
/*
Copyright (c) 2007-2013 William Andrew Burnson.
Copyright (c) 2013-2020 Nicolas Danet.
*/
/* < http://opensource.org/licenses/BSD-2-Clause > */
// -----------------------------------------------------------------------------------------------------------
// ------------------------------------------... | 34.132394 | 110 | 0.28885 | jogawebb |
02b5f782dd156093ddf25189a779ef8ad353b5fd | 3,107 | hpp | C++ | src/gui/solarsys/CelestialBodyPropertiesPanel.hpp | ddj116/gmat | 39673be967d856f14616462fb6473b27b21b149f | [
"NASA-1.3"
] | 1 | 2020-05-16T16:58:21.000Z | 2020-05-16T16:58:21.000Z | src/gui/solarsys/CelestialBodyPropertiesPanel.hpp | ddj116/gmat | 39673be967d856f14616462fb6473b27b21b149f | [
"NASA-1.3"
] | null | null | null | src/gui/solarsys/CelestialBodyPropertiesPanel.hpp | ddj116/gmat | 39673be967d856f14616462fb6473b27b21b149f | [
"NASA-1.3"
] | null | null | null | //$Id$
//------------------------------------------------------------------------------
// CelestialBodyPropertiesPanel
//------------------------------------------------------------------------------
// GMAT: General Mission Analysis Tool.
//
// Copyright (c) 2002-2011 United States Go... | 26.109244 | 91 | 0.626006 | ddj116 |
02b8d4f257288fd229dc1d940117855bd9d32eaf | 2,241 | cpp | C++ | klib_renewal/menu_squad.cpp | asm128/gpk_samples | 7875af0c9116d0c9377a2e7ade0a61364358f4b1 | [
"Apache-2.0"
] | null | null | null | klib_renewal/menu_squad.cpp | asm128/gpk_samples | 7875af0c9116d0c9377a2e7ade0a61364358f4b1 | [
"Apache-2.0"
] | null | null | null | klib_renewal/menu_squad.cpp | asm128/gpk_samples | 7875af0c9116d0c9377a2e7ade0a61364358f4b1 | [
"Apache-2.0"
] | null | null | null | #include "Agent_helper.h"
#include "draw.h"
::klib::SGameState drawSquadSetupMenu (::klib::SGame& instanceGame) {
::klib::drawSquadSlots(instanceGame);
::klib::SGamePlayer & player = instanceGame.Players[::klib::PLAYER_INDEX_USER];
::gpk::array_obj<::gpk::array_p... | 43.941176 | 121 | 0.629183 | asm128 |