hexsha stringlengths 40 40 | size int64 19 11.4M | ext stringclasses 13
values | lang stringclasses 1
value | max_stars_repo_path stringlengths 3 270 | max_stars_repo_name stringlengths 5 110 | max_stars_repo_head_hexsha stringlengths 40 40 | max_stars_repo_licenses listlengths 1 9 | max_stars_count float64 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 3 270 | max_issues_repo_name stringlengths 5 116 | max_issues_repo_head_hexsha stringlengths 40 78 | max_issues_repo_licenses listlengths 1 9 | max_issues_count float64 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 3 270 | max_forks_repo_name stringlengths 5 116 | max_forks_repo_head_hexsha stringlengths 40 78 | max_forks_repo_licenses listlengths 1 9 | max_forks_count float64 1 105k ⌀ | max_forks_repo_forks_event_min_datetime stringlengths 24 24 ⌀ | max_forks_repo_forks_event_max_datetime stringlengths 24 24 ⌀ | content stringlengths 19 11.4M | avg_line_length float64 1.93 229k | max_line_length int64 12 688k | alphanum_fraction float64 0.07 0.99 | matches listlengths 1 10 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
3acb9d700beb2c99c6898ec102203fe760f13835 | 1,860 | cpp | C++ | source/05_Graphs/04_Dinic's Maximum Flow.cpp | KerakTelor86/AlgoCopypasta | 900d989c0651b51b55c551d336c2e92faead0fc8 | [
"WTFPL"
] | 1 | 2021-06-25T05:46:11.000Z | 2021-06-25T05:46:11.000Z | source/05_Graphs/04_Dinic's Maximum Flow.cpp | KerakTelor86/AlgoCopypasta | 900d989c0651b51b55c551d336c2e92faead0fc8 | [
"WTFPL"
] | null | null | null | source/05_Graphs/04_Dinic's Maximum Flow.cpp | KerakTelor86/AlgoCopypasta | 900d989c0651b51b55c551d336c2e92faead0fc8 | [
"WTFPL"
] | null | null | null | // O(VE log(max_flow)) if scaling == 1
// O((V + E) sqrt(E)) if unit graph (turn scaling off)
// O((V + E) sqrt(V)) if bipartite matching (turn scaling off)
// indices are 0-based
const ll INF = 1e18;
struct Dinic {
struct Edge {
int v;
ll cap, flow;
Edge(int _v, ll _cap): v(_v), cap(_cap), flow(0) {}
... | 22.682927 | 70 | 0.474731 | [
"vector"
] |
3acc0da8e7f84649a0878cbfd1ddc8ca544cb08b | 1,462 | hh | C++ | include/Mu2eTargetInput.hh | brownd1978/Mu2eFast | 024f5155cc01e8a99cbed989f04a31281cbd6799 | [
"Apache-2.0"
] | null | null | null | include/Mu2eTargetInput.hh | brownd1978/Mu2eFast | 024f5155cc01e8a99cbed989f04a31281cbd6799 | [
"Apache-2.0"
] | null | null | null | include/Mu2eTargetInput.hh | brownd1978/Mu2eFast | 024f5155cc01e8a99cbed989f04a31281cbd6799 | [
"Apache-2.0"
] | null | null | null | // generate mu2e conversions on targets. Distributions given by
// beam parameters
#ifndef Mu2eTargetInput_HH
#define Mu2eTargetInput_HH
#include "mu2eFast/Mu2eInput.hh"
#include <TRandom3.h>
#include <TLorentzVector.h>
class PdtEntry;
class PacConfig;
class TRandom;
class TGraph;
class PacDetector;
class Mu2eTarget... | 23.580645 | 80 | 0.757182 | [
"vector"
] |
3acded6fc8e71632683edca5312326d68b902d3b | 21,470 | cpp | C++ | Source/src/utilities/UTF8.cpp | ProtonMail/cpp-openpgp | b47316c51357b8d15eb3bcc376ea5e59a6a9a108 | [
"MIT"
] | 5 | 2019-10-30T06:10:10.000Z | 2020-04-25T16:52:06.000Z | Source/src/utilities/UTF8.cpp | ProtonMail/cpp-openpgp | b47316c51357b8d15eb3bcc376ea5e59a6a9a108 | [
"MIT"
] | null | null | null | Source/src/utilities/UTF8.cpp | ProtonMail/cpp-openpgp | b47316c51357b8d15eb3bcc376ea5e59a6a9a108 | [
"MIT"
] | 2 | 2019-11-27T23:47:54.000Z | 2020-01-13T16:36:03.000Z | //
// UTF8.cpp
// OpenPGP
//
// Created by Yanfeng Zhang on 1/31/15.
//
// The MIT License
//
// Copyright (c) 2019 Proton Technologies AG
//
// 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 t... | 28.399471 | 117 | 0.449278 | [
"object"
] |
3ad36aca385c3a3e88e782639c87eabba0f0bd5c | 19,538 | cpp | C++ | firmware/arduino/get-started/libraries/EspMQTTClient/src/EspMQTTClient.cpp | fuyin21/lifuyin.github.io | cd1e229b9024481d53f42e16d755b75964d14e46 | [
"MulanPSL-1.0"
] | 480 | 2021-07-15T05:32:09.000Z | 2022-03-31T09:25:46.000Z | firmware/arduino/get-started/libraries/EspMQTTClient/src/EspMQTTClient.cpp | jsweidy2012/wumei-smart | 33ad05e288323342f20afad8e9984a6af45ee554 | [
"MulanPSL-1.0"
] | 5 | 2022-02-18T03:13:54.000Z | 2022-03-31T12:06:43.000Z | firmware/arduino/get-started/libraries/EspMQTTClient/src/EspMQTTClient.cpp | jsweidy2012/wumei-smart | 33ad05e288323342f20afad8e9984a6af45ee554 | [
"MulanPSL-1.0"
] | 150 | 2021-07-15T05:58:30.000Z | 2022-03-31T08:27:50.000Z | #include "EspMQTTClient.h"
// =============== Constructor / destructor ===================
// MQTT only (no wifi connection attempt)
EspMQTTClient::EspMQTTClient(
const char* mqttServerIp,
const short mqttServerPort,
const char* mqttClientName) :
EspMQTTClient(NULL, NULL, mqttServerIp, NULL, NULL, mqttClient... | 28.774669 | 195 | 0.686252 | [
"object"
] |
3ad5cc58d3459b9586fa756f1faf5144fbbc058e | 992 | cpp | C++ | books/tech/software_design/m_noback-object_design_style_guide/code/ch_03-creating_other_objs/05-validate_params_in_ctor/main.cpp | ordinary-developer/education | 1b1f40dacab873b28ee01dfa33a9bd3ec4cfed58 | [
"MIT"
] | null | null | null | books/tech/software_design/m_noback-object_design_style_guide/code/ch_03-creating_other_objs/05-validate_params_in_ctor/main.cpp | ordinary-developer/education | 1b1f40dacab873b28ee01dfa33a9bd3ec4cfed58 | [
"MIT"
] | null | null | null | books/tech/software_design/m_noback-object_design_style_guide/code/ch_03-creating_other_objs/05-validate_params_in_ctor/main.cpp | ordinary-developer/education | 1b1f40dacab873b28ee01dfa33a9bd3ec4cfed58 | [
"MIT"
] | null | null | null | #include <stdexcept>
#include <cassert>
namespace workspace {
class Line {
public:
static Line dotted(const int distanceBetweenDots) {
if (distanceBetweenDots <= 0)
throw std::invalid_argument("invalid distance between dots");
return Line(true, distanceBetweenDots);
}
static L... | 18.37037 | 79 | 0.584677 | [
"solid"
] |
3ad956438ad8daee0f842f29cca1c0c271692f27 | 51,827 | hpp | C++ | ptms/OneFilePTMWF.hpp | pramalhe/OneFile | 49654893f08123031b983c032066cb5b7a7db4ca | [
"MIT"
] | 158 | 2019-04-15T12:35:20.000Z | 2022-03-31T11:52:40.000Z | ptms/OneFilePTMWF.hpp | pramalhe/OneFile | 49654893f08123031b983c032066cb5b7a7db4ca | [
"MIT"
] | 1 | 2020-07-29T22:36:41.000Z | 2020-07-29T22:36:41.000Z | ptms/OneFilePTMWF.hpp | pramalhe/OneFile | 49654893f08123031b983c032066cb5b7a7db4ca | [
"MIT"
] | 18 | 2019-04-17T06:11:00.000Z | 2021-12-25T14:05:02.000Z | /*
* Copyright 2017-2019
* Andreia Correia <andreia.veiga@unine.ch>
* Pedro Ramalhete <pramalhe@gmail.com>
* Pascal Felber <pascal.felber@unine.ch>
* Nachshon Cohen <nachshonc@gmail.com>
*
* This work is published under the MIT license. See LICENSE.txt
*/
#ifndef _PERSISTENT_ONE_FILE_WAIT_FREE_TRANSACTI... | 43.883997 | 211 | 0.622919 | [
"object",
"vector",
"transform"
] |
3ada332022e16351d5924f74336c26b09a71ac61 | 11,907 | cpp | C++ | td/tl/tl_jni_object.cpp | 0855304041/td | 3a657d9072b324aad1143c6abe20a802f3b92cd5 | [
"BSL-1.0"
] | 1 | 2021-10-31T01:07:03.000Z | 2021-10-31T01:07:03.000Z | td/tl/tl_jni_object.cpp | 0855304041/td | 3a657d9072b324aad1143c6abe20a802f3b92cd5 | [
"BSL-1.0"
] | 8 | 2021-08-24T02:25:17.000Z | 2021-08-24T06:45:52.000Z | td/tl/tl_jni_object.cpp | 0855304041/td | 3a657d9072b324aad1143c6abe20a802f3b92cd5 | [
"BSL-1.0"
] | 1 | 2021-04-25T13:51:00.000Z | 2021-04-25T13:51:00.000Z | //
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2021
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
#include "td/tl/tl_jni_object.h"
#include "td/utils/common.h... | 33.075 | 117 | 0.640044 | [
"object",
"vector"
] |
3ae47df386ee604fe64c9010f1a1f4a696208d1c | 1,110 | cpp | C++ | c++/.leetcode/380.insert-delete-get-random-o-1.cpp | ming197/MyLeetCode | eba575765976b12db07be0857faad85b9c60d723 | [
"Apache-2.0"
] | null | null | null | c++/.leetcode/380.insert-delete-get-random-o-1.cpp | ming197/MyLeetCode | eba575765976b12db07be0857faad85b9c60d723 | [
"Apache-2.0"
] | null | null | null | c++/.leetcode/380.insert-delete-get-random-o-1.cpp | ming197/MyLeetCode | eba575765976b12db07be0857faad85b9c60d723 | [
"Apache-2.0"
] | null | null | null | /*
* @lc app=leetcode id=380 lang=cpp
*
* [380] Insert Delete GetRandom O(1)
*/
// @lc code=start
#include <bits/stdc++.h>
using namespace std;
class RandomizedSet {
private:
vector<int> nums;
unordered_map<int, int> indices;
public:
RandomizedSet() {
}
bool insert(int val) {
if(i... | 20.555556 | 69 | 0.562162 | [
"object",
"vector"
] |
3ae67038ca143c1cc1304d706535ff86acc07bf1 | 3,433 | cc | C++ | win_h264_accel/win_h264_factory.cc | eagle3dstreaming/webrtc | fef9b3652f7744f722785fc1f4cc6b099f4c7aa7 | [
"BSD-3-Clause"
] | null | null | null | win_h264_accel/win_h264_factory.cc | eagle3dstreaming/webrtc | fef9b3652f7744f722785fc1f4cc6b099f4c7aa7 | [
"BSD-3-Clause"
] | null | null | null | win_h264_accel/win_h264_factory.cc | eagle3dstreaming/webrtc | fef9b3652f7744f722785fc1f4cc6b099f4c7aa7 | [
"BSD-3-Clause"
] | null | null | null |
#include <vector>
#include "absl/strings/match.h"
#include "rtc_base/logging.h"
#include "win_h264_accel/win_h264_factory.h"
#include "win_h264_accel/H264Encoder/H264Encoder.h"
#include "win_h264_accel/H264Decoder/H264Decoder.h"
#include "modules/video_coding/codecs/vp8/include/vp8.h"
#include "modules/video_coding/c... | 34.33 | 83 | 0.718613 | [
"vector"
] |
3ae8fef022bb753b4a04dd9d7f7d9a1369ec2db5 | 5,172 | cpp | C++ | released_plugins/v3d_plugins/neurontracing_neutube/src_neutube/neurolabi/gui/z3drenderprocessor.cpp | zzhmark/vaa3d_tools | 3ca418add85a59ac7e805d55a600b78330d7e53d | [
"MIT"
] | 1 | 2021-12-27T19:14:03.000Z | 2021-12-27T19:14:03.000Z | released_plugins/v3d_plugins/neurontracing_neutube/src_neutube/neurolabi/gui/z3drenderprocessor.cpp | zzhmark/vaa3d_tools | 3ca418add85a59ac7e805d55a600b78330d7e53d | [
"MIT"
] | 1 | 2016-12-03T05:33:13.000Z | 2016-12-03T05:33:13.000Z | released_plugins/v3d_plugins/neurontracing_neutube/src_neutube/neurolabi/gui/z3drenderprocessor.cpp | zzhmark/vaa3d_tools | 3ca418add85a59ac7e805d55a600b78330d7e53d | [
"MIT"
] | null | null | null | #include "zglew.h"
#include "z3drenderprocessor.h"
#include "z3dshaderprogram.h"
#include "z3dcameraparameter.h"
#include "QsLog.h"
#include "z3dgpuinfo.h"
#include <QImageWriter>
Z3DRenderProcessor::Z3DRenderProcessor()
: Z3DProcessor()
, m_hardwareSupportVAO(Z3DGpuInfoInstance.isVAOSupported())
, m_privateVAO... | 27.510638 | 99 | 0.685808 | [
"vector"
] |
3aede1ca6898378e9e7122ba653a87ab6396c1d5 | 11,860 | cpp | C++ | Sources/Core/Emitter/VolumeParticleEmitter2.cpp | ADMTec/CubbyFlow | c71457fd04ccfaf3ef22772bab9bcec4a0a3b611 | [
"MIT"
] | 216 | 2017-01-25T04:34:30.000Z | 2021-07-15T12:36:06.000Z | Sources/Core/Emitter/VolumeParticleEmitter2.cpp | ADMTec/CubbyFlow | c71457fd04ccfaf3ef22772bab9bcec4a0a3b611 | [
"MIT"
] | 323 | 2017-01-26T13:53:13.000Z | 2021-07-14T16:03:38.000Z | Sources/Core/Emitter/VolumeParticleEmitter2.cpp | ADMTec/CubbyFlow | c71457fd04ccfaf3ef22772bab9bcec4a0a3b611 | [
"MIT"
] | 33 | 2017-01-25T05:05:49.000Z | 2021-06-17T17:30:56.000Z | // This code is based on Jet framework.
// Copyright (c) 2018 Doyub Kim
// CubbyFlow is voxel-based fluid simulation engine for computer games.
// Copyright (c) 2020 CubbyFlow Team
// Core Part: Chris Ohk, Junwoo Hwang, Jihong Sin, Seungwoo Yoo
// AI Part: Dongheon Cho, Minseo Kim
// We are making my contributions/subm... | 28.037825 | 80 | 0.66914 | [
"geometry",
"transform"
] |
3aeed3fe0e43b96ccf9df6db01952ec2a6944713 | 1,880 | cpp | C++ | json_viewer/test.cpp | void-hoge/json_tools | d13ff1f7cb30260ce0b0dff1c0fd77971141eba0 | [
"MIT"
] | null | null | null | json_viewer/test.cpp | void-hoge/json_tools | d13ff1f7cb30260ce0b0dff1c0fd77971141eba0 | [
"MIT"
] | null | null | null | json_viewer/test.cpp | void-hoge/json_tools | d13ff1f7cb30260ce0b0dff1c0fd77971141eba0 | [
"MIT"
] | null | null | null | #include <iostream>
#include <string>
#include <vector>
#include <algorithm>
std::string get_first_word(std::string& str, std::vector<char> separators) {
std::string res;
std::string remained;
std::string::size_type i = 0;
for (; i < str.length(); i++) {
if (std::find(separators.begin(), separators.end(), (char)... | 23.5 | 93 | 0.603723 | [
"vector"
] |
3af0f2048fbb421e6ff9b5224517133b0a29c3e2 | 2,286 | cpp | C++ | Engine/Source/Sapphire/SDK/Assets/Mesh/MeshAsset.cpp | SapphireSuite/Sapphire | f4ec03f2602eb3fb6ba8c5fa8abf145f66179a47 | [
"MIT"
] | 2 | 2020-03-18T09:06:21.000Z | 2020-04-09T00:07:56.000Z | Engine/Source/Sapphire/SDK/Assets/Mesh/MeshAsset.cpp | SapphireSuite/Sapphire | f4ec03f2602eb3fb6ba8c5fa8abf145f66179a47 | [
"MIT"
] | null | null | null | Engine/Source/Sapphire/SDK/Assets/Mesh/MeshAsset.cpp | SapphireSuite/Sapphire | f4ec03f2602eb3fb6ba8c5fa8abf145f66179a47 | [
"MIT"
] | null | null | null | // Copyright 2020 Sapphire development team. All Rights Reserved.
#include <SDK/Assets/Mesh/MeshAsset.hpp>
#include <fstream>
#include <SDK/Wrappers/TinyOBJWrapper.hpp>
namespace Sa
{
MeshAsset::MeshAsset() noexcept : IAsset(AssetType::Mesh)
{
}
void MeshAsset::SetRawData(RawMesh&& _rawData)
{
UnLoad_Intern... | 24.847826 | 98 | 0.724847 | [
"mesh"
] |
3af4226fad358d765e1f7fcf12dd196ad7213c22 | 18,214 | cpp | C++ | run.cpp | Avraiel/glorified-pixeltextgen | 2c990aaa3b2868db39bc6648e60dff453294f737 | [
"MIT"
] | null | null | null | run.cpp | Avraiel/glorified-pixeltextgen | 2c990aaa3b2868db39bc6648e60dff453294f737 | [
"MIT"
] | null | null | null | run.cpp | Avraiel/glorified-pixeltextgen | 2c990aaa3b2868db39bc6648e60dff453294f737 | [
"MIT"
] | null | null | null | #include <cctype>
#include <iostream>
#include <conio.h>
#include <windows.h>
#include <vector>
#include <string>
using namespace std;
char i = 's';
int currentX = 0;
int currentY = 0;
void gotoxy (int x, int y){
COORD coord;
coord.X = x;
coord.Y = y;
SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE),coor... | 17.547206 | 65 | 0.64412 | [
"vector"
] |
3af743a687a651a71fc5029fb03411145d6e65fc | 18,548 | hpp | C++ | include/HMUI/MouseBinder.hpp | RedBrumbler/BeatSaber-Quest-Codegen | 73dda50b5a3e51f10d86b766dcaa24b0c6226e25 | [
"Unlicense"
] | null | null | null | include/HMUI/MouseBinder.hpp | RedBrumbler/BeatSaber-Quest-Codegen | 73dda50b5a3e51f10d86b766dcaa24b0c6226e25 | [
"Unlicense"
] | null | null | null | include/HMUI/MouseBinder.hpp | RedBrumbler/BeatSaber-Quest-Codegen | 73dda50b5a3e51f10d86b766dcaa24b0c6226e25 | [
"Unlicense"
] | null | null | null | // Autogenerated from CppHeaderCreator
// Created by Sc2ad
// =========================================================================
#pragma once
// Begin includes
#include "beatsaber-hook/shared/utils/typedefs.h"
#include "beatsaber-hook/shared/utils/byref.hpp"
// Including type: System.Enum
#include "System/Enum.h... | 56.895706 | 510 | 0.730591 | [
"object",
"vector"
] |
3af8f296fb429c2a0c937ed7b1203ce1627b2f43 | 10,438 | cpp | C++ | src/SolAR3DTransformEstimationSACFrom3D3D.cpp | wemap/SolARModuleTools | 43e8fc48061ab692ac37ddcbed530f4ae147ed8a | [
"Apache-2.0"
] | null | null | null | src/SolAR3DTransformEstimationSACFrom3D3D.cpp | wemap/SolARModuleTools | 43e8fc48061ab692ac37ddcbed530f4ae147ed8a | [
"Apache-2.0"
] | 8 | 2018-10-02T15:49:59.000Z | 2021-07-27T15:12:40.000Z | src/SolAR3DTransformEstimationSACFrom3D3D.cpp | wemap/SolARModuleTools | 43e8fc48061ab692ac37ddcbed530f4ae147ed8a | [
"Apache-2.0"
] | 3 | 2019-07-24T15:03:43.000Z | 2021-06-14T15:37:29.000Z | /**
* @copyright Copyright (c) 2017 B-com http://www.b-com.com/
*
* 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... | 36.624561 | 254 | 0.704733 | [
"vector",
"transform",
"3d"
] |
3afaf9c36fc51a0d9787a60ce5af7bac4022dc01 | 2,897 | cpp | C++ | src/tasks.cpp | Algorithms-and-Data-Structures-2021/h00_cpp_basics-belyab | 92deb1b5ece0391335446637a677302356f90922 | [
"MIT"
] | null | null | null | src/tasks.cpp | Algorithms-and-Data-Structures-2021/h00_cpp_basics-belyab | 92deb1b5ece0391335446637a677302356f90922 | [
"MIT"
] | null | null | null | src/tasks.cpp | Algorithms-and-Data-Structures-2021/h00_cpp_basics-belyab | 92deb1b5ece0391335446637a677302356f90922 | [
"MIT"
] | null | null | null | #include <iostream> // cout
#include <algorithm> // copy, fill
#include "tasks.hpp"
// ИСПОЛЬЗОВАНИЕ ЛЮБЫХ ДРУГИХ БИБЛИОТЕК НЕ СОВЕТУЕТСЯ И МОЖЕТ ПОВЛИЯТЬ НА ВАШИ БАЛЛЫ
using std::cout;
using std::fill;
using std::copy;
// Задание 1
void swap_args(int *lhs, int *rhs) {
if(lhs && rhs){
int d = *lhs;
... | 23.362903 | 91 | 0.554712 | [
"vector"
] |
3afe6dad8ac3383f4202fe893a93c9d68feb9e11 | 10,580 | cpp | C++ | src/userdata.cpp | re3fork/librw-vita | 9f267c904d2ade5fd4703952b187241c0d7e997c | [
"MIT"
] | null | null | null | src/userdata.cpp | re3fork/librw-vita | 9f267c904d2ade5fd4703952b187241c0d7e997c | [
"MIT"
] | null | null | null | src/userdata.cpp | re3fork/librw-vita | 9f267c904d2ade5fd4703952b187241c0d7e997c | [
"MIT"
] | 1 | 2022-01-09T12:18:07.000Z | 2022-01-09T12:18:07.000Z | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include "rwbase.h"
#include "rwerror.h"
#include "rwplg.h"
#include "rwpipeline.h"
#include "rwobjects.h"
#include "rwengine.h"
#include "rwuserdata.h"
#include <vitaGL.h>
#define PLUGIN_ID ID_USERDATA
namespace rw {
UserDataGlobals us... | 28.828338 | 137 | 0.704537 | [
"geometry",
"object"
] |
d708930d52f3aa2d13c5411197b32870b9647f30 | 10,783 | cpp | C++ | tests/test-discovery.cpp | tklab-tud/umundo | 31da28e24c6c935370099745311dd78c80763bd8 | [
"BSD-3-Clause"
] | 44 | 2015-02-01T12:39:51.000Z | 2022-03-30T15:13:50.000Z | tests/test-discovery.cpp | tklab-tud/umundo | 31da28e24c6c935370099745311dd78c80763bd8 | [
"BSD-3-Clause"
] | 3 | 2015-01-13T12:47:21.000Z | 2017-06-24T04:13:46.000Z | tests/test-discovery.cpp | tklab-tud/umundo | 31da28e24c6c935370099745311dd78c80763bd8 | [
"BSD-3-Clause"
] | 19 | 2015-04-17T13:50:15.000Z | 2022-03-09T09:50:46.000Z | #define protected public
#define private public
#include "umundo.h"
#include "umundo/discovery/MDNSDiscovery.h"
#include "umundo/discovery/BroadcastDiscovery.h"
#include <iostream>
#include <stdio.h>
#include "umundo/connection/zeromq/ZeroMQNode.h"
#include "umundo/connection/zeromq/ZeroMQPublisher.h"
#include "umundo... | 26.823383 | 114 | 0.676621 | [
"vector"
] |
d70d84d5a345d233739c9635f5f6f094bde23ac1 | 8,099 | cpp | C++ | src/topp/BaselineFilter.cpp | raghav17083/OpenMS | ddcdd3068a93a7c415675c39bac43d796a845f1d | [
"BSL-1.0",
"Apache-2.0",
"Zlib"
] | null | null | null | src/topp/BaselineFilter.cpp | raghav17083/OpenMS | ddcdd3068a93a7c415675c39bac43d796a845f1d | [
"BSL-1.0",
"Apache-2.0",
"Zlib"
] | null | null | null | src/topp/BaselineFilter.cpp | raghav17083/OpenMS | ddcdd3068a93a7c415675c39bac43d796a845f1d | [
"BSL-1.0",
"Apache-2.0",
"Zlib"
] | null | null | null | // --------------------------------------------------------------------------
// OpenMS -- Open-Source Mass Spectrometry
// --------------------------------------------------------------------------
// Copyright The OpenMS Team -- Eberhard Karls University Tuebingen,
// ETH Zurich, and Freie Universit... | 42.403141 | 167 | 0.620447 | [
"shape"
] |
d70f4f8c9bd0937c68c45d9d351392181f0fca8a | 958 | cpp | C++ | locomotion_framework/controllers/hierarchical_control/src/actions/angles_merge.cpp | ADVRHumanoids/DrivingFramework | 34715c37bfe3c1f2bd92aeacecc12704a1a7820e | [
"Zlib"
] | 1 | 2019-12-02T07:10:42.000Z | 2019-12-02T07:10:42.000Z | locomotion_framework/controllers/hierarchical_control/src/actions/angles_merge.cpp | ADVRHumanoids/DrivingFramework | 34715c37bfe3c1f2bd92aeacecc12704a1a7820e | [
"Zlib"
] | null | null | null | locomotion_framework/controllers/hierarchical_control/src/actions/angles_merge.cpp | ADVRHumanoids/DrivingFramework | 34715c37bfe3c1f2bd92aeacecc12704a1a7820e | [
"Zlib"
] | 2 | 2020-10-22T19:06:44.000Z | 2021-06-07T03:32:52.000Z | #include "mwoibn/hierarchical_control/actions/angles_merge.h"
mwoibn::hierarchical_control::actions::AnglesMerge::AnglesMerge(actions::Compute& main_task, actions::Compute& secondary_task, hierarchical_control::State& state, mwoibn::Scalar eps, mwoibn::Scalar p, std::vector<mwoibn::hierarchical_control::tasks::Angle>... | 53.222222 | 474 | 0.695198 | [
"vector"
] |
d7108402ecdf56a485f1d0d8de3dfb99971cbcc3 | 13,915 | cpp | C++ | src/libzerocoin/Bulletproofs.cpp | PeterL73/veil | 2825d735275cd592b1fd5207b0dfdca2d4e3e78c | [
"MIT"
] | 1 | 2019-05-07T23:43:56.000Z | 2019-05-07T23:43:56.000Z | src/libzerocoin/Bulletproofs.cpp | PeterL73/veil | 2825d735275cd592b1fd5207b0dfdca2d4e3e78c | [
"MIT"
] | 1 | 2019-09-25T12:58:45.000Z | 2019-09-25T12:58:45.000Z | src/libzerocoin/Bulletproofs.cpp | PeterL73/veil | 2825d735275cd592b1fd5207b0dfdca2d4e3e78c | [
"MIT"
] | null | null | null | /**
* @file Bulletproofs.cpp
*
* @brief InnerProductArgument class for the Zerocoin library.
*
* @author Mary Maller, Jonathan Bootle and Gian Piero Dionisio
* @date May 2018
*
* @copyright Copyright 2018 The PIVX Developers
* @license This project is released under the MIT license.
*... | 32.360465 | 107 | 0.578512 | [
"vector"
] |
d710b0095f52adefe277f97448f6d17864956097 | 5,334 | cpp | C++ | test/lights_test.cpp | lij0511/pandora | 5988618f29d2f1ba418ef54a02e227903c1e7108 | [
"Apache-2.0"
] | null | null | null | test/lights_test.cpp | lij0511/pandora | 5988618f29d2f1ba418ef54a02e227903c1e7108 | [
"Apache-2.0"
] | null | null | null | test/lights_test.cpp | lij0511/pandora | 5988618f29d2f1ba418ef54a02e227903c1e7108 | [
"Apache-2.0"
] | null | null | null | /*
* gltest1.cpp
*
* Created on: 2015年12月10日
* Author: lijing
*/
#include "pola/scene/camera/PerspectiveCamera.h"
#include "pola/scene/camera/DefaultCameraController.h"
#include "pola/Device.h"
#include "pola/io/FileInputStream.h"
#include "pola/scene/mesh/MeshLoader.h"
#include "pola/scene/mesh/MD2Animated... | 38.934307 | 122 | 0.668166 | [
"mesh",
"render"
] |
d7120a5ff87f5646caaa24f4863f91b5849f3b8a | 13,026 | cpp | C++ | interface/src/ui/overlays/Circle3DOverlay.cpp | manlea/hifi | 2dff75dac126a11da2d2bcf6cb4a2ab55e633a10 | [
"Apache-2.0"
] | 1 | 2015-03-11T19:49:20.000Z | 2015-03-11T19:49:20.000Z | interface/src/ui/overlays/Circle3DOverlay.cpp | manlea/hifi | 2dff75dac126a11da2d2bcf6cb4a2ab55e633a10 | [
"Apache-2.0"
] | null | null | null | interface/src/ui/overlays/Circle3DOverlay.cpp | manlea/hifi | 2dff75dac126a11da2d2bcf6cb4a2ab55e633a10 | [
"Apache-2.0"
] | null | null | null | //
// Circle3DOverlay.cpp
// interface/src/ui/overlays
//
// Copyright 2014 High Fidelity, Inc.
//
// Distributed under the Apache License, Version 2.0.
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
//
// include this before QGLWidget, which includes an earlier version of... | 39.713415 | 121 | 0.595655 | [
"render",
"solid"
] |
d71548c1abffcda4791949d7fa458aad6e7dc20c | 6,400 | cpp | C++ | A Simple Logic Circuit Simulator/BoardCreator.cpp | amanda-matthes/A-Simple-Logic-Simulator | f4a884a72853d2d91245dfef69f69e2584b0c7bd | [
"MIT"
] | null | null | null | A Simple Logic Circuit Simulator/BoardCreator.cpp | amanda-matthes/A-Simple-Logic-Simulator | f4a884a72853d2d91245dfef69f69e2584b0c7bd | [
"MIT"
] | null | null | null | A Simple Logic Circuit Simulator/BoardCreator.cpp | amanda-matthes/A-Simple-Logic-Simulator | f4a884a72853d2d91245dfef69f69e2584b0c7bd | [
"MIT"
] | null | null | null | // A Simple Logic Circuit Simulator
// A project for PHYS 30762 Programming in C++
// Author : Amanda Matthes (10241789)
// Handed in on : 12.May.2018
// This program starts in Main.h
#include "BoardCreator.h"
void boardCreator() { // acts as a sub menu to navigate board creation
// 1. Ask for di... | 31.527094 | 133 | 0.602188 | [
"render",
"3d"
] |
d716158d36a97771554aab9770f439d4e0064331 | 6,834 | cc | C++ | pgutil/PgModelManager.cc | erikleitch/climax | 66ce64b0ab9f3a3722d3177cc5215ccf59369e88 | [
"MIT"
] | 1 | 2018-11-01T05:15:31.000Z | 2018-11-01T05:15:31.000Z | pgutil/PgModelManager.cc | erikleitch/climax | 66ce64b0ab9f3a3722d3177cc5215ccf59369e88 | [
"MIT"
] | null | null | null | pgutil/PgModelManager.cc | erikleitch/climax | 66ce64b0ab9f3a3722d3177cc5215ccf59369e88 | [
"MIT"
] | 2 | 2017-05-02T19:35:55.000Z | 2018-03-07T00:54:51.000Z | #include "gcp/pgutil/PgModelManager.h"
#include "cpgplot.h"
using namespace std;
using namespace gcp::util;
enum {
B_NORM=0,
B_LINE=1,
B_RECT=2,
B_YRNG=3,
B_XRNG=4,
B_YVAL=5,
B_XVAL=6,
B_CROSS=7
};
/**.......................................................................
* Constructor.
*/
PgModel... | 21.903846 | 112 | 0.546093 | [
"vector",
"model"
] |
d71a115adea0166275ce004fd10c916654b27bf9 | 13,754 | cpp | C++ | img/osu/main.cpp | Erawz/Bongo-cat | dd8f87a1c195c6283c6917b7574cda0cddebcbab | [
"MIT"
] | null | null | null | img/osu/main.cpp | Erawz/Bongo-cat | dd8f87a1c195c6283c6917b7574cda0cddebcbab | [
"MIT"
] | null | null | null | img/osu/main.cpp | Erawz/Bongo-cat | dd8f87a1c195c6283c6917b7574cda0cddebcbab | [
"MIT"
] | null | null | null | #include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <sstream>
#include <time.h>
#include <windows.h>
#include <math.h>
#include <SFML/Graphics.hpp>
#include "json/json.h"
std::tuple<double, double> bezier(double ratio, std::vector<double> &points, int length) {
double fact[22] = {0.0... | 28.01222 | 260 | 0.604551 | [
"vector"
] |
d71cb1ed0006e5fc5ef17d260c94569a40dc7a1c | 10,515 | cpp | C++ | vts-libs/vts/tileset/driver/httpfetcher.cpp | melowntech/vts-libs | ffbf889b6603a8f95d3c12a2602232ff9c5d2236 | [
"BSD-2-Clause"
] | 2 | 2020-04-20T01:44:46.000Z | 2021-01-15T06:54:51.000Z | externals/browser/externals/browser/externals/vts-libs/vts-libs/vts/tileset/driver/httpfetcher.cpp | HanochZhu/vts-browser-unity-plugin | 32a22d41e21b95fb015326f95e401d87756d0374 | [
"BSD-2-Clause"
] | 2 | 2020-01-29T16:30:49.000Z | 2020-06-03T15:21:29.000Z | externals/browser/externals/browser/externals/vts-libs/vts-libs/vts/tileset/driver/httpfetcher.cpp | HanochZhu/vts-browser-unity-plugin | 32a22d41e21b95fb015326f95e401d87756d0374 | [
"BSD-2-Clause"
] | 1 | 2019-09-25T05:10:07.000Z | 2019-09-25T05:10:07.000Z | /**
* Copyright (c) 2017 Melown Technologies SE
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice,
* this list of conditions and the f... | 31.960486 | 78 | 0.576034 | [
"mesh"
] |
d71d24d9f22e3aa25fd88896bfc8efd8e6c9f2db | 10,621 | cpp | C++ | utils/logging/operations.cpp | racktopsystems/kyua | 1929dccc5cda71cddda71485094822d3c3862902 | [
"BSD-3-Clause"
] | null | null | null | utils/logging/operations.cpp | racktopsystems/kyua | 1929dccc5cda71cddda71485094822d3c3862902 | [
"BSD-3-Clause"
] | null | null | null | utils/logging/operations.cpp | racktopsystems/kyua | 1929dccc5cda71cddda71485094822d3c3862902 | [
"BSD-3-Clause"
] | null | null | null | // Copyright 2011 The Kyua Authors.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditio... | 35.285714 | 80 | 0.699934 | [
"vector"
] |
d71d85c733a556dfaec4705e150952364fb26cc4 | 12,296 | cpp | C++ | src/gui/main_window.cpp | evopen/blackness | d0187d17d5fee01a754fd3bc19353a53caacc1b0 | [
"MIT"
] | 2 | 2020-04-26T12:35:30.000Z | 2021-07-27T06:50:59.000Z | src/gui/main_window.cpp | evopen/blackness | d0187d17d5fee01a754fd3bc19353a53caacc1b0 | [
"MIT"
] | 5 | 2020-04-27T00:28:17.000Z | 2020-04-27T17:56:50.000Z | src/gui/main_window.cpp | evopen/blackness | d0187d17d5fee01a754fd3bc19353a53caacc1b0 | [
"MIT"
] | null | null | null | #include "pch.h"
#include "image_generator.h"
#include "main_window.h"
#include "ui_main_window.h"
MainWindow::MainWindow(QWidget* parent) : QMainWindow(parent), ui_(new Ui::MainWindow)
{
img_generator_.reset(new ImageGenerator());
vid_generator_.reset(new VideoGenerator());
vid_generator_->Se... | 32.615385 | 119 | 0.643868 | [
"render"
] |
d71f5b3369866cdfa3d0b29ca3dec1f243b3f68a | 1,736 | cpp | C++ | Asteroids/Resources.cpp | kyranet/Asteroids | 9ec0ccadb28f9d7a6f3a2fa50c470e31dc80a643 | [
"MIT"
] | 1 | 2019-08-27T00:58:17.000Z | 2019-08-27T00:58:17.000Z | Asteroids/Resources.cpp | kyranet/Asteroids | 9ec0ccadb28f9d7a6f3a2fa50c470e31dc80a643 | [
"MIT"
] | null | null | null | Asteroids/Resources.cpp | kyranet/Asteroids | 9ec0ccadb28f9d7a6f3a2fa50c470e31dc80a643 | [
"MIT"
] | null | null | null | #include "Resources.h"
#include <tuple>
#include "sdl_includes.h"
vector<Resources::FontInfo> Resources::fonts_{
{ARIAL16, "../resources/fonts/ARIAL.ttf", 16},
{ARIAL24, "../resources/fonts/ARIAL.ttf", 24}};
vector<Resources::ImageInfo> Resources::images_{
{Blank, "../resources/images/blank.png"},
{Te... | 40.372093 | 69 | 0.666475 | [
"vector"
] |
d71f67a451dd7fe4d9b9d9694ededea1ee06cfea | 908 | cpp | C++ | cpp-leetcode/leetcode204-count-prims-sieveMethod_style2.cpp | yanglr/LeetCodeOJ | 27dd1e4a2442b707deae7921e0118752248bef5e | [
"MIT"
] | 45 | 2021-07-25T00:45:43.000Z | 2022-03-24T05:10:43.000Z | cpp-leetcode/leetcode204-count-prims-sieveMethod_style2.cpp | yanglr/LeetCodeOJ | 27dd1e4a2442b707deae7921e0118752248bef5e | [
"MIT"
] | null | null | null | cpp-leetcode/leetcode204-count-prims-sieveMethod_style2.cpp | yanglr/LeetCodeOJ | 27dd1e4a2442b707deae7921e0118752248bef5e | [
"MIT"
] | 15 | 2021-07-25T00:40:52.000Z | 2021-12-27T06:25:31.000Z | #include <algorithm>
#include <vector>
#include <cmath>
#include <iostream>
using namespace std;
class Solution {
public:
int countPrimes(int n) {
vector<int> isPrime(n, 1);
if(n < 2)
{
return 0;
}
else {
int count = 0;
for (int i = 2; i *... | 19.73913 | 82 | 0.362335 | [
"vector"
] |
d71f6981478360f6f930a77fd57bd12fe88a2000 | 3,224 | cc | C++ | libvis/src/libvis/test/point_cloud.cc | ulricheck/surfelmeshing | bacaf70a1877185af844b31597cb59d4cbed0722 | [
"BSD-3-Clause"
] | 1 | 2018-10-28T13:30:55.000Z | 2018-10-28T13:30:55.000Z | libvis/src/libvis/test/point_cloud.cc | ulricheck/surfelmeshing | bacaf70a1877185af844b31597cb59d4cbed0722 | [
"BSD-3-Clause"
] | null | null | null | libvis/src/libvis/test/point_cloud.cc | ulricheck/surfelmeshing | bacaf70a1877185af844b31597cb59d4cbed0722 | [
"BSD-3-Clause"
] | null | null | null | // Copyright 2018 ETH Zürich, Thomas Schöps
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice,
// this list of conditions and the follow... | 37.929412 | 80 | 0.699442 | [
"transform"
] |
d7215ebee2cc1cdb0f71e9196ec907563369d2a7 | 6,037 | hpp | C++ | DemoApps/Vulkan/Bloom/source/RenderScene.hpp | alexvonduar/gtec-demo-framework | 6f8a7e429d0e15242ba64eb4cb41bfc2dd7dc749 | [
"MIT",
"BSD-3-Clause"
] | null | null | null | DemoApps/Vulkan/Bloom/source/RenderScene.hpp | alexvonduar/gtec-demo-framework | 6f8a7e429d0e15242ba64eb4cb41bfc2dd7dc749 | [
"MIT",
"BSD-3-Clause"
] | null | null | null | DemoApps/Vulkan/Bloom/source/RenderScene.hpp | alexvonduar/gtec-demo-framework | 6f8a7e429d0e15242ba64eb4cb41bfc2dd7dc749 | [
"MIT",
"BSD-3-Clause"
] | null | null | null | #ifndef VULKAN_BLOOM_RENDERSCENE_HPP
#define VULKAN_BLOOM_RENDERSCENE_HPP
/****************************************************************************************************************************************************
* Copyright 2019 NXP
* All rights reserved.
*
* Redistribution and use in source and binary ... | 40.790541 | 150 | 0.692728 | [
"mesh",
"vector"
] |
d721c00e494c6e3334ff4f3e2f69383670cf094c | 1,867 | hpp | C++ | include/encoders/sdc_sequence.hpp | jermp/pthash | f0a0fb929ecfe1d925d88bc9bf41f7b4eaf0516b | [
"MIT"
] | 52 | 2021-04-21T09:55:12.000Z | 2022-02-27T03:00:11.000Z | include/encoders/sdc_sequence.hpp | jermp/pthash | f0a0fb929ecfe1d925d88bc9bf41f7b4eaf0516b | [
"MIT"
] | null | null | null | include/encoders/sdc_sequence.hpp | jermp/pthash | f0a0fb929ecfe1d925d88bc9bf41f7b4eaf0516b | [
"MIT"
] | 3 | 2021-05-03T00:59:57.000Z | 2022-01-03T15:42:23.000Z | #pragma once
#include "bit_vector.hpp"
#include "ef_sequence.hpp"
namespace pthash {
struct sdc_sequence {
sdc_sequence() : m_size(0) {}
template <typename Iterator>
void build(Iterator begin, uint64_t n) {
m_size = n;
auto start = begin;
uint64_t bits = 0;
for (uint64_t ... | 27.865672 | 92 | 0.562935 | [
"vector"
] |
d724c6db866b6a0a951f1c18fbd5e5f66d701b56 | 1,013 | cpp | C++ | TWL/PopulateEmitters.cpp | tom1milman/Thomas-Was-Late | 5fc62a79b372eb06a7cd226593c5e54804d7085a | [
"MIT"
] | null | null | null | TWL/PopulateEmitters.cpp | tom1milman/Thomas-Was-Late | 5fc62a79b372eb06a7cd226593c5e54804d7085a | [
"MIT"
] | null | null | null | TWL/PopulateEmitters.cpp | tom1milman/Thomas-Was-Late | 5fc62a79b372eb06a7cd226593c5e54804d7085a | [
"MIT"
] | null | null | null | #include "Engine.h"
using namespace sf;
using namespace std;
//Goes over fire blocks, and adds them as emitters to the vector
//skips any fire block in radious of 6 tiles from each emitter
void Engine::populateEmitters(vector <Vector2f>& vSoundEmitters, int** arrayLevel)
{
//Empty vector
vSoundEmitters.empty();
/... | 25.325 | 91 | 0.681145 | [
"vector"
] |
d72713859fab5ae3d4652916ba05e440273cdd0a | 2,143 | cpp | C++ | src/TestXE/XETCommon/EditorControllerSystem.cpp | devxkh/FrankE | 72faca02759b54aaec842831f3c7a051e7cf5335 | [
"MIT"
] | 11 | 2017-01-17T15:02:25.000Z | 2020-11-27T16:54:42.000Z | src/TestXE/XETCommon/EditorControllerSystem.cpp | devxkh/FrankE | 72faca02759b54aaec842831f3c7a051e7cf5335 | [
"MIT"
] | 9 | 2016-10-23T20:15:38.000Z | 2018-02-06T11:23:17.000Z | src/TestXE/XETCommon/EditorControllerSystem.cpp | devxkh/FrankE | 72faca02759b54aaec842831f3c7a051e7cf5335 | [
"MIT"
] | 2 | 2019-08-29T10:23:51.000Z | 2020-04-03T06:08:34.000Z | #include "EditorControllerSystem.hpp"
#include <XEngine.hpp>
#include <ThirdParty/imgui/imgui.h>
#include <XERenderer/Editor/ImGuizmo.h>
#include <XEngine/Editor/SceneViewerUIState.hpp>
#include <memory>
namespace XET {
EditorControllerSystem::EditorControllerSystem(XE::XEngine& engine)
: m_engine(engine)
{
... | 28.959459 | 167 | 0.716752 | [
"vector"
] |
c017ea5ab5aea682cfd23436a46dc0419c9fe15b | 8,608 | cpp | C++ | Vic2ToHoI4/Source/Configuration.cpp | Thinking-waffle/Vic2ToHoI4 | 127d6528aef1eb2e5e189da9153806bb2162d72b | [
"MIT"
] | 1 | 2021-01-03T21:11:33.000Z | 2021-01-03T21:11:33.000Z | Vic2ToHoI4/Source/Configuration.cpp | Thinking-waffle/Vic2ToHoI4 | 127d6528aef1eb2e5e189da9153806bb2162d72b | [
"MIT"
] | null | null | null | Vic2ToHoI4/Source/Configuration.cpp | Thinking-waffle/Vic2ToHoI4 | 127d6528aef1eb2e5e189da9153806bb2162d72b | [
"MIT"
] | null | null | null | #include "Configuration.h"
#include "CommonFunctions.h"
#include "CommonRegexes.h"
#include "Log.h"
#include "OSCompatibilityLayer.h"
#include "ParserHelpers.h"
#include "V2World/Mods/ModFactory.h"
#include <fstream>
#include <vector>
Configuration::Factory::Factory()
{
registerKeyword("SaveGame", [this](std::istre... | 39.127273 | 116 | 0.726417 | [
"shape",
"vector"
] |
c01f8e47b9586eebaa1868fd06c31ab4e06bbd71 | 4,713 | cpp | C++ | LightRays/Scene.cpp | xif-fr/LightRays | 511ffc92e6efce68973ad5cee699f644a3a0a98d | [
"MIT"
] | 1 | 2020-03-10T11:07:38.000Z | 2020-03-10T11:07:38.000Z | LightRays/Scene.cpp | xif-fr/LightRays | 511ffc92e6efce68973ad5cee699f644a3a0a98d | [
"MIT"
] | null | null | null | LightRays/Scene.cpp | xif-fr/LightRays | 511ffc92e6efce68973ad5cee699f644a3a0a98d | [
"MIT"
] | null | null | null | #include "Scene.h"
#include <cmath>
#include "sfml_c01.hpp"
// Test d'interception du rayon contre toutes les objets de la scène puis renvoi des
// rayons ré-émis; la première interception sur le trajet du rayon est choisie.
// Voir ObjetComposite::essai_intercept_composite pour un code similaire.
//
std::vector<Rayo... | 33.425532 | 135 | 0.708042 | [
"vector"
] |
c02eed36c793477b1738dffc58a3e4e880170415 | 12,687 | cpp | C++ | source/MaterialXView/Material.cpp | mjyip-lucasfilm/MaterialX | 19b0bd84c4537539350c1c065cc68fb400567f05 | [
"BSD-3-Clause"
] | 973 | 2017-07-06T02:29:09.000Z | 2022-02-28T18:49:10.000Z | source/MaterialXView/Material.cpp | mjyip-lucasfilm/MaterialX | 19b0bd84c4537539350c1c065cc68fb400567f05 | [
"BSD-3-Clause"
] | 213 | 2017-07-12T09:44:10.000Z | 2022-02-25T21:29:20.000Z | source/MaterialXView/Material.cpp | mjyip-lucasfilm/MaterialX | 19b0bd84c4537539350c1c065cc68fb400567f05 | [
"BSD-3-Clause"
] | 305 | 2017-07-11T19:05:41.000Z | 2022-02-14T12:25:43.000Z | #include <MaterialXView/Material.h>
#include <MaterialXRenderGlsl/External/GLew/glew.h>
#include <MaterialXRenderGlsl/GLTextureHandler.h>
#include <MaterialXRenderGlsl/GLUtil.h>
#include <MaterialXRender/Util.h>
#include <MaterialXFormat/Util.h>
//
// Material methods
//
bool Material::loadSource(const mx::FilePat... | 28.068584 | 128 | 0.642311 | [
"mesh"
] |
c032d4d5a2cbc4e061e2ee82d03fadd4a96f1ffa | 1,780 | cc | C++ | systems/framework/diagram_state.cc | RobotLocomotion/drake-python3.7 | ae397a4c6985262d23e9675b9bf3927c08d027f5 | [
"BSD-3-Clause"
] | 2 | 2021-02-25T02:01:02.000Z | 2021-03-17T04:52:04.000Z | systems/framework/diagram_state.cc | RobotLocomotion/drake-python3.7 | ae397a4c6985262d23e9675b9bf3927c08d027f5 | [
"BSD-3-Clause"
] | null | null | null | systems/framework/diagram_state.cc | RobotLocomotion/drake-python3.7 | ae397a4c6985262d23e9675b9bf3927c08d027f5 | [
"BSD-3-Clause"
] | 1 | 2021-06-13T12:05:39.000Z | 2021-06-13T12:05:39.000Z | #include "drake/systems/framework/diagram_state.h"
#include "drake/systems/framework/diagram_continuous_state.h"
#include "drake/systems/framework/diagram_discrete_values.h"
namespace drake {
namespace systems {
template <typename T>
DiagramState<T>::DiagramState(int size)
: State<T>(),
substates_(size),
... | 34.230769 | 78 | 0.733146 | [
"vector"
] |
c0391a2c5430b2b77dd26ab2a520ace29772338b | 9,964 | cc | C++ | chrome/browser/android/password_ui_view_android.cc | zipated/src | 2b8388091c71e442910a21ada3d97ae8bc1845d3 | [
"BSD-3-Clause"
] | 2,151 | 2020-04-18T07:31:17.000Z | 2022-03-31T08:39:18.000Z | chrome/browser/android/password_ui_view_android.cc | cangulcan/src | 2b8388091c71e442910a21ada3d97ae8bc1845d3 | [
"BSD-3-Clause"
] | 395 | 2020-04-18T08:22:18.000Z | 2021-12-08T13:04:49.000Z | chrome/browser/android/password_ui_view_android.cc | cangulcan/src | 2b8388091c71e442910a21ada3d97ae8bc1845d3 | [
"BSD-3-Clause"
] | 338 | 2020-04-18T08:03:10.000Z | 2022-03-29T12:33:22.000Z | // Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/android/password_ui_view_android.h"
#include <algorithm>
#include <memory>
#include <vector>
#include "base/android/callback_an... | 38.323077 | 86 | 0.718888 | [
"vector"
] |
c04438cdafba218a5c26288140ef882dbc832ff8 | 1,890 | hpp | C++ | src/process_posix.hpp | BadOPCode/Oblivion2-XRM | d65d9aa4b8021fc3b50b2c09edd0b19eb7baa1b9 | [
"Zlib"
] | 78 | 2015-10-08T07:14:37.000Z | 2022-02-10T04:51:21.000Z | src/process_posix.hpp | BadOPCode/Oblivion2-XRM | d65d9aa4b8021fc3b50b2c09edd0b19eb7baa1b9 | [
"Zlib"
] | 117 | 2015-12-14T16:51:42.000Z | 2020-02-16T07:00:36.000Z | src/process_posix.hpp | BadOPCode/Oblivion2-XRM | d65d9aa4b8021fc3b50b2c09edd0b19eb7baa1b9 | [
"Zlib"
] | 10 | 2015-12-10T16:54:24.000Z | 2022-02-10T04:51:29.000Z | #ifndef PROCESS_POSIX_HPP
#define PROCESS_POSIX_HPP
#include "process_base.hpp"
#include <termios.h>
#include <memory>
#include <vector>
#include <string>
class SessionData;
typedef std::shared_ptr<SessionData> session_data_ptr;
/**
* @struct ThreadArguments
* @date 28/05/2017
* @brief pthread (Posix) Arguments... | 18.712871 | 90 | 0.658201 | [
"vector"
] |
c0497761a9ef3d614fa615fbca16a63b6793b8bc | 570 | cc | C++ | libs/core/src/core/default_parse.cc | madeso/euphoria | 59b72d148a90ae7a19e197e91216d4d42f194fd5 | [
"MIT"
] | 24 | 2015-07-27T14:32:18.000Z | 2021-11-15T12:11:31.000Z | libs/core/src/core/default_parse.cc | madeso/euphoria | 59b72d148a90ae7a19e197e91216d4d42f194fd5 | [
"MIT"
] | 27 | 2021-07-09T21:18:40.000Z | 2021-07-14T13:39:56.000Z | libs/core/src/core/default_parse.cc | madeso/euphoria | 59b72d148a90ae7a19e197e91216d4d42f194fd5 | [
"MIT"
] | null | null | null | #include "core/default_parse.h"
#include "core/stringmerger.h"
#include "core/functional.h"
namespace euphoria::core::argparse
{
std::string
quote_and_combine_english_or(const std::vector<std::string>& matches)
{
const auto quoted_names =
map<std::string>(matches, [](const std::string... | 22.8 | 73 | 0.542105 | [
"vector"
] |
c04e759aa6f56d249782a0dcf6507ecf4d61af58 | 45,155 | hpp | C++ | unicorn/string.hpp | alesapin/unicorn-lib | b08b565fe2e8051d877193e8a6d0b355a14cca84 | [
"MIT"
] | 238 | 2016-02-12T11:00:16.000Z | 2021-12-29T00:29:53.000Z | unicorn/string.hpp | alesapin/unicorn-lib | b08b565fe2e8051d877193e8a6d0b355a14cca84 | [
"MIT"
] | 6 | 2016-02-13T17:26:08.000Z | 2022-01-17T03:38:12.000Z | unicorn/string.hpp | alesapin/unicorn-lib | b08b565fe2e8051d877193e8a6d0b355a14cca84 | [
"MIT"
] | 23 | 2016-02-12T21:40:14.000Z | 2021-11-17T06:10:46.000Z | #pragma once
#include "unicorn/character.hpp"
#include "unicorn/segment.hpp"
#include "unicorn/utf.hpp"
#include "unicorn/utility.hpp"
#include <algorithm>
#include <cerrno>
#include <cmath>
#include <cstring>
#include <initializer_list>
#include <iterator>
#include <limits>
#include <stdexcept>
#include <string>
#inc... | 41.694367 | 177 | 0.599026 | [
"vector"
] |
c05657d5c593145bc161110ad0cf32754869b194 | 3,492 | cpp | C++ | ml-juce/JuceLookAndFeel/MLTriToggleButton.cpp | ngwese/soundplane | 92ed75035694db1a8886e4791aab0a23efff4cc3 | [
"MIT"
] | 20 | 2015-01-26T05:34:53.000Z | 2022-01-31T07:09:35.000Z | ml-juce/JuceLookAndFeel/MLTriToggleButton.cpp | ngwese/soundplane | 92ed75035694db1a8886e4791aab0a23efff4cc3 | [
"MIT"
] | 35 | 2015-03-07T18:26:09.000Z | 2021-07-16T17:07:32.000Z | ml-juce/JuceLookAndFeel/MLTriToggleButton.cpp | ngwese/soundplane | 92ed75035694db1a8886e4791aab0a23efff4cc3 | [
"MIT"
] | 8 | 2015-03-10T08:44:04.000Z | 2021-01-04T00:31:12.000Z |
// MadronaLib: a C++ framework for DSP applications.
// Copyright (c) 2013 Madrona Labs LLC. http://www.madronalabs.com
// Distributed under the MIT license: http://madrona-labs.mit-license.org/
#include "MLTriToggleButton.h"
#include "MLLookAndFeel.h"
#include "MLAppView.h"
MLTriToggleButton::MLTriToggleButton(MLWi... | 30.631579 | 136 | 0.662658 | [
"geometry"
] |
c056babb5a818b4483221746ab02ae4c7f703307 | 5,401 | cpp | C++ | common/tool/imageconv/main.cpp | lovewsy/patrace | 97376a6aa759c1695e29dc9530aa609c9385cbd8 | [
"MIT"
] | 41 | 2018-12-09T13:41:18.000Z | 2022-03-25T03:05:32.000Z | common/tool/imageconv/main.cpp | lovewsy/patrace | 97376a6aa759c1695e29dc9530aa609c9385cbd8 | [
"MIT"
] | 37 | 2019-01-24T04:09:10.000Z | 2022-03-29T10:35:38.000Z | common/tool/imageconv/main.cpp | lovewsy/patrace | 97376a6aa759c1695e29dc9530aa609c9385cbd8 | [
"MIT"
] | 27 | 2018-12-09T13:41:38.000Z | 2022-03-30T08:24:24.000Z | #include <GLES2/gl2.h>
#include <GLES2/gl2ext.h>
#include <cstring>
#include "tool/config.hpp"
#include "eglstate/common.hpp"
#include "image/image_all.hpp"
using namespace pat;
namespace
{
void PrintUsage(const char *argv0)
{
std::cout <<
"\n"
"Usage: " << argv0 << " [OPTION] INPUT_IMAGE [OUTPUT... | 33.75625 | 122 | 0.563599 | [
"vector",
"transform"
] |
c056de59bc2facf2fd9755d72a773de0c0cfaa96 | 3,166 | cpp | C++ | frameworks/core/components/split_container/render_row_split.cpp | openharmony-gitee-mirror/ace_ace_engine | 78013960cdce81348d1910e466a3292605442a5e | [
"Apache-2.0"
] | null | null | null | frameworks/core/components/split_container/render_row_split.cpp | openharmony-gitee-mirror/ace_ace_engine | 78013960cdce81348d1910e466a3292605442a5e | [
"Apache-2.0"
] | null | null | null | frameworks/core/components/split_container/render_row_split.cpp | openharmony-gitee-mirror/ace_ace_engine | 78013960cdce81348d1910e466a3292605442a5e | [
"Apache-2.0"
] | 1 | 2021-09-13T11:17:50.000Z | 2021-09-13T11:17:50.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 ... | 32.979167 | 119 | 0.688882 | [
"vector"
] |
c05a2b0a3f0bf4a98ad2323a7f023588a3ef07cc | 12,297 | cpp | C++ | src/APGreenhouse.cpp | dtrotzjr/greenhouse_data_server | ade7f71404e48759d1c9702acb3c0cca2f70cd76 | [
"MIT"
] | null | null | null | src/APGreenhouse.cpp | dtrotzjr/greenhouse_data_server | ade7f71404e48759d1c9702acb3c0cca2f70cd76 | [
"MIT"
] | null | null | null | src/APGreenhouse.cpp | dtrotzjr/greenhouse_data_server | ade7f71404e48759d1c9702acb3c0cca2f70cd76 | [
"MIT"
] | null | null | null | //
// Created by David Trotz on 5/29/16.
//
#include "APGreenhouse.h"
#include "APSimpleJSONQuery.h"
#include "APSimpleSQL.h"
#include "APSQLException.h"
#include <sstream>
#include <string.h>
#include <json/json.h>
APGreenhouse::APGreenhouse(Json::Value& config) {
_jsonQueryObj = new APSimpleJSONQuery();
std... | 43.606383 | 295 | 0.567212 | [
"object",
"vector"
] |
c05c9ef768af3654f538b9742d59c0294e18dcbd | 9,680 | cpp | C++ | src/elona/adventurer.cpp | ElonaFoobar/ElonaFoobar | 35864685dcca96c4c9ad683c4f5b3537e86bc06f | [
"MIT"
] | 84 | 2018-03-03T02:44:32.000Z | 2019-07-14T16:16:24.000Z | src/elona/adventurer.cpp | ki-foobar/ElonaFoobar | d251cf5bd8c21789db3b56b1c9b1302ce69b2c2e | [
"MIT"
] | 685 | 2018-02-27T04:31:17.000Z | 2019-07-12T13:43:00.000Z | src/elona/adventurer.cpp | ki-foobar/ElonaFoobar | d251cf5bd8c21789db3b56b1c9b1302ce69b2c2e | [
"MIT"
] | 23 | 2019-07-26T08:52:38.000Z | 2021-11-09T09:21:58.000Z | #include "adventurer.hpp"
#include <string>
#include "area.hpp"
#include "character.hpp"
#include "character_status.hpp"
#include "data/types/type_item.hpp"
#include "data/types/type_skill.hpp"
#include "equipment.hpp"
#include "game.hpp"
#include "i18n.hpp"
#include "inventory.hpp"
#include "item.hpp"
#include "item... | 25.882353 | 79 | 0.489979 | [
"vector"
] |
c05dc3b1258560a99ac7a9fec264d91ba38c571d | 43,132 | hpp | C++ | include/geneva/GConstrainedFPT.hpp | denisbertini/geneva | eff76fc489001512022d1a20c5561623d73efc32 | [
"Apache-2.0",
"BSD-3-Clause"
] | 4 | 2020-05-20T07:23:19.000Z | 2021-09-12T23:12:21.000Z | include/geneva/GConstrainedFPT.hpp | denisbertini/geneva | eff76fc489001512022d1a20c5561623d73efc32 | [
"Apache-2.0",
"BSD-3-Clause"
] | 10 | 2020-05-05T13:24:08.000Z | 2021-07-27T13:23:17.000Z | include/geneva/GConstrainedFPT.hpp | denisbertini/geneva | eff76fc489001512022d1a20c5561623d73efc32 | [
"Apache-2.0",
"BSD-3-Clause"
] | 7 | 2020-04-09T10:33:11.000Z | 2021-09-08T12:24:55.000Z | /********************************************************************************
*
* This file is part of the Geneva library collection. The following license
* applies to this file:
*
* ------------------------------------------------------------------------------
* Licensed under the Apache License, Version 2.... | 41.156489 | 167 | 0.623922 | [
"object"
] |
c061dcc30bd327540e47de2f1e54b46048876779 | 28,850 | cpp | C++ | plugins/cinema4dsdk/source/gui/objectdata_getsetdparameter.cpp | urender-vt/cinema4d_cpp_sdk_extended | 77235d2e382d1536e0e694609929dbb74883072a | [
"Apache-2.0"
] | 23 | 2018-09-05T21:11:07.000Z | 2022-01-12T10:43:17.000Z | plugins/cinema4dsdk/source/gui/objectdata_getsetdparameter.cpp | urender-vt/cinema4d_cpp_sdk_extended | 77235d2e382d1536e0e694609929dbb74883072a | [
"Apache-2.0"
] | null | null | null | plugins/cinema4dsdk/source/gui/objectdata_getsetdparameter.cpp | urender-vt/cinema4d_cpp_sdk_extended | 77235d2e382d1536e0e694609929dbb74883072a | [
"Apache-2.0"
] | 4 | 2019-07-12T16:57:20.000Z | 2021-06-23T15:33:09.000Z | // Example on how to handle Get-/SetDParameter for certain CustomGUIs
// This example has no use for the user.
// It simply creates CustomGUI descriptions dynamically and handles all subchannels in Get-/SetDParameter(),
// emulating the internal behavior of these CustomGUIs.
#include "c4d.h"
#include "c4d_symbols.h"
#... | 36.704835 | 158 | 0.740485 | [
"object",
"vector"
] |
c06864629af4138bd89e28ff5a8f458999fc5d81 | 8,200 | cpp | C++ | test/test_rbdl.cpp | eric-heiden/tiny-differentiable-simulator | 025ed85c35c4241ac4a30ff9d28b418900bcaf48 | [
"Apache-2.0"
] | 1 | 2020-07-09T08:07:47.000Z | 2020-07-09T08:07:47.000Z | test/test_rbdl.cpp | eric-heiden/tiny-differentiable-simulator | 025ed85c35c4241ac4a30ff9d28b418900bcaf48 | [
"Apache-2.0"
] | 6 | 2020-10-20T21:31:32.000Z | 2021-07-02T06:12:49.000Z | test/test_rbdl.cpp | eric-heiden/tiny-differentiable-simulator | 025ed85c35c4241ac4a30ff9d28b418900bcaf48 | [
"Apache-2.0"
] | 1 | 2020-08-31T02:18:49.000Z | 2020-08-31T02:18:49.000Z | #include <gtest/gtest.h>
#include "rbdl_test_utils.hpp"
using namespace tds;
using namespace TINY;
using Algebra = TinyAlgebra<double, DoubleUtils>;
using Tf = Transform<Algebra>;
using Vector3 = Algebra::Vector3;
using VectorX = typename Algebra::VectorX;
using Matrix3 = Algebra::Matrix3;
using RigidBodyInertia = R... | 35.497835 | 80 | 0.569268 | [
"model",
"transform"
] |
c06e37e09d2103dd842da21d723558d1a1678484 | 7,090 | cpp | C++ | tests/tests_atomics/tests_mains/devicesSwitch.cpp | SimulationEverywhere/NEP_DAM | bc8cdf661c4a4e050abae12fb756f41ec6240e6b | [
"BSD-2-Clause"
] | null | null | null | tests/tests_atomics/tests_mains/devicesSwitch.cpp | SimulationEverywhere/NEP_DAM | bc8cdf661c4a4e050abae12fb756f41ec6240e6b | [
"BSD-2-Clause"
] | null | null | null | tests/tests_atomics/tests_mains/devicesSwitch.cpp | SimulationEverywhere/NEP_DAM | bc8cdf661c4a4e050abae12fb756f41ec6240e6b | [
"BSD-2-Clause"
] | null | null | null | /**
* Copyright (c) 2017, Cristina Ruiz Martin
* Carleton University, Universidad de Valladolid
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* 1. Redistributions of source code must reta... | 40.056497 | 165 | 0.730183 | [
"model"
] |
c06eef1cc271e0c59bc6af0586fb6a2f48d78295 | 3,808 | cxx | C++ | osprey/common/com/x8664/targ_em_elf.cxx | sharugupta/OpenUH | daddd76858a53035f5d713f648d13373c22506e8 | [
"BSD-2-Clause"
] | null | null | null | osprey/common/com/x8664/targ_em_elf.cxx | sharugupta/OpenUH | daddd76858a53035f5d713f648d13373c22506e8 | [
"BSD-2-Clause"
] | null | null | null | osprey/common/com/x8664/targ_em_elf.cxx | sharugupta/OpenUH | daddd76858a53035f5d713f648d13373c22506e8 | [
"BSD-2-Clause"
] | null | null | null | /*
* Copyright 2005, 2006 PathScale, Inc. All Rights Reserved.
*/
/*
Copyright (C) 2000, 2001 Silicon Graphics, Inc. All Rights Reserved.
This program is free software; you can redistribute it and/or modify it
under the terms of version 2 of the GNU General Public License as
published by the Free Softwar... | 23.949686 | 73 | 0.664653 | [
"object"
] |
c07ebe50f0b9b6d0dfe22152c1fd89e7e9523740 | 32,377 | hpp | C++ | include/crest/geometry/indexed_mesh.hpp | Andlon/crest | f79bf5a68f3eb86f5e3422881678bc6f9011730a | [
"MIT"
] | null | null | null | include/crest/geometry/indexed_mesh.hpp | Andlon/crest | f79bf5a68f3eb86f5e3422881678bc6f9011730a | [
"MIT"
] | 5 | 2017-01-24T10:45:27.000Z | 2017-01-27T16:21:37.000Z | include/crest/geometry/indexed_mesh.hpp | Andlon/crest | f79bf5a68f3eb86f5e3422881678bc6f9011730a | [
"MIT"
] | null | null | null | #pragma once
#include <crest/geometry/vertex.hpp>
#include <crest/geometry/triangle.hpp>
#include <crest/util/algorithms.hpp>
#include <array>
#include <vector>
#include <cstdint>
#include <algorithm>
#include <unordered_map>
#include <ostream>
#include <limits>
#include <cassert>
namespace crest {
typedef uint3... | 44.781466 | 121 | 0.582203 | [
"mesh",
"geometry",
"vector"
] |
c08f3f921f53663f14b7668f58e9e9da71bca687 | 846 | cc | C++ | implement/cpp/MyQueue.cc | 4soos/leetcode_practices | 0b6bde3f6832ce983bb39482c0da47509fc23c78 | [
"MIT"
] | null | null | null | implement/cpp/MyQueue.cc | 4soos/leetcode_practices | 0b6bde3f6832ce983bb39482c0da47509fc23c78 | [
"MIT"
] | null | null | null | implement/cpp/MyQueue.cc | 4soos/leetcode_practices | 0b6bde3f6832ce983bb39482c0da47509fc23c78 | [
"MIT"
] | null | null | null | #include <stack>
class MyQueue {
public:
MyQueue() {
}
void push(int x) {
in.push(x);
}
int pop() {
if (out.empty()) {
in_to_out();
}
int x = out.top();
out.pop();
return x;
}
int peek() {
if (out.emp... | 16.92 | 63 | 0.433806 | [
"object"
] |
6a51125827f955a9ed909945afc282fee9e1f9ee | 62,524 | cpp | C++ | math3/sphere.cpp | Mixaill/directxmathtest | 0a7d946e4980608d9ee22c7887e37a1a87d2765e | [
"MIT"
] | null | null | null | math3/sphere.cpp | Mixaill/directxmathtest | 0a7d946e4980608d9ee22c7887e37a1a87d2765e | [
"MIT"
] | null | null | null | math3/sphere.cpp | Mixaill/directxmathtest | 0a7d946e4980608d9ee22c7887e37a1a87d2765e | [
"MIT"
] | null | null | null | //-------------------------------------------------------------------------------------
// sphere.cpp - DirectXMath Test Suite
//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
//
// http://go.microsoft.com/fwlink/?LinkID=615560
//---------------------------------... | 39.0775 | 159 | 0.427468 | [
"vector",
"transform"
] |
6a520ff210d09b5a80fa16f7de0168fa93be2aeb | 82,681 | cxx | C++ | com/ole32/com/objact/actvator.cxx | npocmaka/Windows-Server-2003 | 5c6fe3db626b63a384230a1aa6b92ac416b0765f | [
"Unlicense"
] | 17 | 2020-11-13T13:42:52.000Z | 2021-09-16T09:13:13.000Z | com/ole32/com/objact/actvator.cxx | sancho1952007/Windows-Server-2003 | 5c6fe3db626b63a384230a1aa6b92ac416b0765f | [
"Unlicense"
] | 2 | 2020-10-19T08:02:06.000Z | 2020-10-19T08:23:18.000Z | com/ole32/com/objact/actvator.cxx | sancho1952007/Windows-Server-2003 | 5c6fe3db626b63a384230a1aa6b92ac416b0765f | [
"Unlicense"
] | 14 | 2020-11-14T09:43:20.000Z | 2021-08-28T08:59:57.000Z | //+-------------------------------------------------------------------
//
// File: actvator.cxx
//
// Contents: Implementation of client context system activator.
//
// Classes: CClientContextActivator
//
// History: 21-Feb-98 SatishT Created
// 22-Jun-98 CBiks See ... | 33.969187 | 142 | 0.501312 | [
"object"
] |
6a52525818b16318b8f526bf5b1e56ebe4baed4c | 3,621 | cpp | C++ | soapy/src/test/test_air_packet_7.cpp | siglabsoss/s-modem | 0a259b4f3207dd043c198b76a4bc18c8529bcf44 | [
"BSD-3-Clause"
] | null | null | null | soapy/src/test/test_air_packet_7.cpp | siglabsoss/s-modem | 0a259b4f3207dd043c198b76a4bc18c8529bcf44 | [
"BSD-3-Clause"
] | null | null | null | soapy/src/test/test_air_packet_7.cpp | siglabsoss/s-modem | 0a259b4f3207dd043c198b76a4bc18c8529bcf44 | [
"BSD-3-Clause"
] | null | null | null | #include <rapidcheck.h>
#include <vector>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include "cpp_utils.hpp"
#include "driver/AirPacket.hpp"
#include "schifra_galois_field.hpp"
#include "schifra_galois_field_polynomial.hpp"
#include "schifra_sequential_root_generator_polynomial_creator.hpp"
#include "... | 22.079268 | 79 | 0.586854 | [
"vector"
] |
6a526c6f51b26f3c1b78f36d67a11c62d238ab1b | 7,961 | cc | C++ | chainerx_cc/chainerx/backward_builder_test.cc | zaltoprofen/chainer | 3b03f9afc80fd67f65d5e0395ef199e9506b6ee1 | [
"MIT"
] | 3,705 | 2017-06-01T07:36:12.000Z | 2022-03-30T10:46:15.000Z | chainerx_cc/chainerx/backward_builder_test.cc | zaltoprofen/chainer | 3b03f9afc80fd67f65d5e0395ef199e9506b6ee1 | [
"MIT"
] | 5,998 | 2017-06-01T06:40:17.000Z | 2022-03-08T01:42:44.000Z | chainerx_cc/chainerx/backward_builder_test.cc | zaltoprofen/chainer | 3b03f9afc80fd67f65d5e0395ef199e9506b6ee1 | [
"MIT"
] | 1,150 | 2017-06-02T03:39:46.000Z | 2022-03-29T02:29:32.000Z | #include "chainerx/backward_builder.h"
#include <utility>
#include <gtest/gtest.h>
#include "chainerx/array.h"
#include "chainerx/backward.h"
#include "chainerx/backward_context.h"
#include "chainerx/dtype.h"
#include "chainerx/macro.h"
#include "chainerx/routines/creation.h"
#include "chainerx/shape.h"
#include "ch... | 35.540179 | 98 | 0.625173 | [
"shape"
] |
6a58d0e6e3701bf9d31ad3dea385c97d84243cfa | 2,374 | cc | C++ | src/ufo/filters/obsfunctions/ObsErrorFactorTransmitTopRad.cc | rnt20/ufo | 68dab85486f5d79991956076ac6b962bc1a0c5bd | [
"Apache-2.0"
] | 1 | 2021-10-08T16:37:25.000Z | 2021-10-08T16:37:25.000Z | src/ufo/filters/obsfunctions/ObsErrorFactorTransmitTopRad.cc | rnt20/ufo | 68dab85486f5d79991956076ac6b962bc1a0c5bd | [
"Apache-2.0"
] | 9 | 2021-06-25T17:18:06.000Z | 2021-10-08T17:40:31.000Z | src/ufo/filters/obsfunctions/ObsErrorFactorTransmitTopRad.cc | rnt20/ufo | 68dab85486f5d79991956076ac6b962bc1a0c5bd | [
"Apache-2.0"
] | 31 | 2021-06-24T18:07:53.000Z | 2021-10-08T15:40:39.000Z | /*
* (C) Copyright 2019 UCAR
*
* This software is licensed under the terms of the Apache Licence Version 2.0
* which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
*/
#include "ufo/filters/obsfunctions/ObsErrorFactorTransmitTopRad.h"
#include <math.h>
#include <algorithm>
#include <iomanip>
#inc... | 31.236842 | 98 | 0.600253 | [
"vector",
"model"
] |
6a5bcbbf39539fa4a14d1a32a85e0cc40393a343 | 6,573 | cpp | C++ | abp/Sound/BASSlib/BASS_TAGS/ORIGINAL/src/tags/keywords.cpp | pyrroman/au3-boilerplate | 596a3aa68d4d6b48dd79ed737d1e11604ac9e92f | [
"BSD-3-Clause"
] | 8 | 2019-07-02T15:59:30.000Z | 2021-07-13T05:13:43.000Z | abp/Sound/BASSlib/BASS_TAGS/ORIGINAL/src/tags/keywords.cpp | pyrroman/au3-boilerplate | 596a3aa68d4d6b48dd79ed737d1e11604ac9e92f | [
"BSD-3-Clause"
] | null | null | null | abp/Sound/BASSlib/BASS_TAGS/ORIGINAL/src/tags/keywords.cpp | pyrroman/au3-boilerplate | 596a3aa68d4d6b48dd79ed737d1e11604ac9e92f | [
"BSD-3-Clause"
] | 1 | 2019-07-02T15:59:31.000Z | 2019-07-02T15:59:31.000Z | //////////////////////////////////////////////////////////////////////////
//
// keywords.cpp - format string parser implementation
//
// Author: Wraith, 2k5-2k6
// Public domain. No warranty.
//
// (internal)
//
#include <string>
#include <vector>
#include <algorithm>
#include "simplemap.h"
#include "tags_impl.h"
#... | 19.858006 | 88 | 0.54876 | [
"vector"
] |
6a654fc56d67ca15db26e0c676a2c93ec54b46ce | 5,870 | hpp | C++ | core/base/allocator.hpp | cho-uc/ginkgo | 8ec17e93c3fdf555edf6911fd145c0cf1c2914e9 | [
"BSD-3-Clause"
] | null | null | null | core/base/allocator.hpp | cho-uc/ginkgo | 8ec17e93c3fdf555edf6911fd145c0cf1c2914e9 | [
"BSD-3-Clause"
] | 1 | 2021-01-06T19:28:11.000Z | 2021-01-06T19:29:21.000Z | core/base/allocator.hpp | cho-uc/ginkgo | 8ec17e93c3fdf555edf6911fd145c0cf1c2914e9 | [
"BSD-3-Clause"
] | 1 | 2019-02-05T22:42:43.000Z | 2019-02-05T22:42:43.000Z | /*******************************<GINKGO LICENSE>******************************
Copyright (c) 2017-2020, the Ginkgo authors
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source co... | 33.352273 | 78 | 0.685179 | [
"vector"
] |
6a6b0cceaff1e286ab204fb0a81ad8d62aa99f76 | 471 | cc | C++ | 3_MoreBasics/Casting.cc | p62jired/UdemyC | 306abc808e90027b33cc9592bc973511028047cd | [
"MIT"
] | null | null | null | 3_MoreBasics/Casting.cc | p62jired/UdemyC | 306abc808e90027b33cc9592bc973511028047cd | [
"MIT"
] | null | null | null | 3_MoreBasics/Casting.cc | p62jired/UdemyC | 306abc808e90027b33cc9592bc973511028047cd | [
"MIT"
] | null | null | null | #include <iomanip>
#include <iostream>
// 1a. C++: static_cast<newDtype>(varName) - converts object from one type to another
// 1b. C: (newDtytpe)(varName)
int main()
{
double number = 3.13;
std::cout << std::setprecision(30) << number << std::endl;
int number2 = number;
std::cout << number2 << std::end... | 27.705882 | 85 | 0.624204 | [
"object"
] |
6a6c756125d23de4917184c6c72c70122b47a3b2 | 3,210 | cpp | C++ | src/mzIMLTools/CModification.cpp | mrchipset/MyMSToolKit | 70c5a7c5a2f914b676bdd630ace3c47e4c7de36b | [
"Apache-2.0"
] | 17 | 2021-09-22T20:16:18.000Z | 2022-03-30T19:26:17.000Z | src/mzIMLTools/CModification.cpp | mrchipset/MyMSToolKit | 70c5a7c5a2f914b676bdd630ace3c47e4c7de36b | [
"Apache-2.0"
] | 12 | 2021-10-01T18:53:25.000Z | 2022-03-02T19:27:04.000Z | src/mzIMLTools/CModification.cpp | mrchipset/MyMSToolKit | 70c5a7c5a2f914b676bdd630ace3c47e4c7de36b | [
"Apache-2.0"
] | 4 | 2021-11-08T23:43:41.000Z | 2022-03-21T05:57:15.000Z | /*
Copyright 2017, Michael R. Hoopmann, Institute for Systems Biology
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 ... | 28.40708 | 101 | 0.67134 | [
"vector"
] |
6a6faba0d1a5c7dc732b1f1654fdb890f2e0816e | 19,122 | cpp | C++ | print/src/type_printer.cpp | ember91/vrt_tools_cmd | 6c56d8d9c9d069db68f229912eb39364c4294cf2 | [
"MIT"
] | null | null | null | print/src/type_printer.cpp | ember91/vrt_tools_cmd | 6c56d8d9c9d069db68f229912eb39364c4294cf2 | [
"MIT"
] | null | null | null | print/src/type_printer.cpp | ember91/vrt_tools_cmd | 6c56d8d9c9d069db68f229912eb39364c4294cf2 | [
"MIT"
] | 1 | 2021-06-29T14:23:49.000Z | 2021-06-29T14:23:49.000Z | #include "type_printer.h"
#include <iomanip>
#include <iostream>
#include <sstream>
#include <string>
#include "vrt/vrt_string.h"
#include "vrt/vrt_time.h"
#include "vrt/vrt_types.h"
#include "vrt/vrt_util.h"
#include "stringify.h"
namespace vrt::print {
/**
* Print calendar time.
*
* \param tsf Timestamp... | 43.262443 | 120 | 0.668706 | [
"vector"
] |
6a72da0c4e31a7f685665ea89310a4daa93a9436 | 6,143 | hpp | C++ | include/Oculus/Platform/VoipPCMSourceNative.hpp | sc2ad/BeatSaber-Quest-Codegen | ba8acaae541cfe1161e05fbc3bf87f4bc46bc4ab | [
"Unlicense"
] | 23 | 2020-08-07T04:09:00.000Z | 2022-03-31T22:10:29.000Z | include/Oculus/Platform/VoipPCMSourceNative.hpp | sc2ad/BeatSaber-Quest-Codegen | ba8acaae541cfe1161e05fbc3bf87f4bc46bc4ab | [
"Unlicense"
] | 6 | 2021-09-29T23:47:31.000Z | 2022-03-30T20:49:23.000Z | include/Oculus/Platform/VoipPCMSourceNative.hpp | sc2ad/BeatSaber-Quest-Codegen | ba8acaae541cfe1161e05fbc3bf87f4bc46bc4ab | [
"Unlicense"
] | 17 | 2020-08-20T19:36:52.000Z | 2022-03-30T18:28:24.000Z | // Autogenerated from CppHeaderCreator
// Created by Sc2ad
// =========================================================================
#pragma once
// Begin includes
#include "extern/beatsaber-hook/shared/utils/typedefs.h"
#include "extern/beatsaber-hook/shared/utils/byref.hpp"
// Including type: Oculus.Platfor... | 51.191667 | 190 | 0.725704 | [
"object",
"vector"
] |
6a7c015a5cddf178e19dd64870d6d8207f02e616 | 9,456 | cpp | C++ | EsculptorQT/sculptor.cpp | igorsergioJS/sculptor_3.0 | 61470dfa24910dfefa9e1ebb8301150aa6b6f71d | [
"MIT"
] | null | null | null | EsculptorQT/sculptor.cpp | igorsergioJS/sculptor_3.0 | 61470dfa24910dfefa9e1ebb8301150aa6b6f71d | [
"MIT"
] | null | null | null | EsculptorQT/sculptor.cpp | igorsergioJS/sculptor_3.0 | 61470dfa24910dfefa9e1ebb8301150aa6b6f71d | [
"MIT"
] | null | null | null | #include <iostream>
#include <iomanip>
#include "sculptor.h"
#include "mainwindow.h"
#include <fstream>
#include <string>
#include <math.h>
#include <cstdlib>
using namespace std;
Sculptor::Sculptor(int _nx, int _ny, int _nz)
{
nx = _nx; ny = _ny; nz = _nz;
if(nx <= 0 || ny <= 0 || nz <= 0){
nx = ny... | 29.55 | 208 | 0.354907 | [
"vector"
] |
6a7ed43c379922869561650e59146b420cc743b2 | 11,265 | cpp | C++ | test/c++/nda_basic.cpp | TRIQS/nda | 7256006985a8909f21b57b1c5bd7813fd7f4f7e7 | [
"Apache-2.0"
] | 3 | 2021-05-26T08:53:25.000Z | 2021-06-13T00:39:10.000Z | test/c++/nda_basic.cpp | TRIQS/nda | 7256006985a8909f21b57b1c5bd7813fd7f4f7e7 | [
"Apache-2.0"
] | 10 | 2020-08-11T21:02:47.000Z | 2022-01-26T19:21:34.000Z | test/c++/nda_basic.cpp | TRIQS/nda | 7256006985a8909f21b57b1c5bd7813fd7f4f7e7 | [
"Apache-2.0"
] | 4 | 2021-05-24T12:43:08.000Z | 2022-02-28T01:33:03.000Z | // Copyright (c) 2019-2020 Simons Foundation
//
// 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.txt
//
// Unless required by applicable l... | 28.1625 | 150 | 0.510342 | [
"shape",
"vector",
"3d"
] |
6a82583740b7df07b7e90498fcb303548b92375f | 1,040 | hpp | C++ | include/xul/net/url_session.hpp | hindsights/xul | 666ce90742a9919d538ad5c8aad618737171e93b | [
"MIT"
] | 2 | 2018-03-16T07:06:48.000Z | 2018-04-02T03:02:14.000Z | include/xul/net/url_session.hpp | hindsights/xul | 666ce90742a9919d538ad5c8aad618737171e93b | [
"MIT"
] | null | null | null | include/xul/net/url_session.hpp | hindsights/xul | 666ce90742a9919d538ad5c8aad618737171e93b | [
"MIT"
] | 1 | 2019-08-12T05:15:29.000Z | 2019-08-12T05:15:29.000Z | #pragma once
//#include <xul/net/tcp_socket.hpp>
#include <xul/lang/object.hpp>
#include <stdint.h>
namespace xul {
class tcp_socket;
class url_response;
class url_session;
class url_session_listener
{
public:
virtual void on_session_close(url_session* session) = 0;
};
/// handles a single url request from... | 21.22449 | 73 | 0.707692 | [
"object"
] |
6a84295d70ce9b2d213de08d60b175dc7931b36f | 3,637 | cpp | C++ | FokkerPlankCPP/main.cpp | kcdodd/masters | e96fc2feaa6edffb99f90278e14a8fcdd138db75 | [
"MIT"
] | null | null | null | FokkerPlankCPP/main.cpp | kcdodd/masters | e96fc2feaa6edffb99f90278e14a8fcdd138db75 | [
"MIT"
] | null | null | null | FokkerPlankCPP/main.cpp | kcdodd/masters | e96fc2feaa6edffb99f90278e14a8fcdd138db75 | [
"MIT"
] | null | null | null | #include <iostream>
#include "dynarray.hpp"
#include "dynmatrix.hpp"
#include "LoadInelasticRates.hpp"
#include "FokkerPlanck.hpp"
#include "FokkerPlanck.cpp"
#include "SaveF.hpp"
#include <cmath>
#include "Constants.hpp"
#include <sstream>
#include <stdio.h>
#include <boost/thread/thread.hpp>
#include <boost/b... | 25.256944 | 184 | 0.612868 | [
"vector"
] |
6a8904a881b1f36c7646e8cf90c691e496162429 | 2,364 | cpp | C++ | modules/task_3/loganov_a_radix_sort/main.cpp | LioBuitrago/pp_2020_autumn_informatics | 1ecc1b5dae978295778176ff11ffe42bedbc602e | [
"BSD-3-Clause"
] | null | null | null | modules/task_3/loganov_a_radix_sort/main.cpp | LioBuitrago/pp_2020_autumn_informatics | 1ecc1b5dae978295778176ff11ffe42bedbc602e | [
"BSD-3-Clause"
] | 1 | 2021-02-13T03:00:05.000Z | 2021-02-13T03:00:05.000Z | modules/task_3/loganov_a_radix_sort/main.cpp | LioBuitrago/pp_2020_autumn_informatics | 1ecc1b5dae978295778176ff11ffe42bedbc602e | [
"BSD-3-Clause"
] | 1 | 2020-10-11T09:11:57.000Z | 2020-10-11T09:11:57.000Z | // Copyright 2020 Loganov Andrei
#include <mpi.h>
#include <gtest-mpi-listener.hpp>
#include <gtest/gtest.h>
#include <vector>
#include <random>
#include <ctime>
#include <numeric>
#include "./radix.h"
TEST(TEST_PARALEL_MPI, TEST1) {
int rank;
MPI_Comm_rank(MPI_COMM_WORLD, &rank);
int n = 100;
std::vect... | 26.561798 | 78 | 0.623519 | [
"vector"
] |
6a8b2b503858f07ffeec16acc1fdd154a0792f86 | 29,020 | cpp | C++ | src/tests/accuracy_test_directed.cpp | JishinMaster/clFFT | b22bef6eab6f22ee5cd6d589177af6b829644a84 | [
"Apache-2.0"
] | null | null | null | src/tests/accuracy_test_directed.cpp | JishinMaster/clFFT | b22bef6eab6f22ee5cd6d589177af6b829644a84 | [
"Apache-2.0"
] | null | null | null | src/tests/accuracy_test_directed.cpp | JishinMaster/clFFT | b22bef6eab6f22ee5cd6d589177af6b829644a84 | [
"Apache-2.0"
] | null | null | null | /* ************************************************************************
* Copyright 2013 Advanced Micro Devices, Inc.
*
* 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... | 38.744993 | 182 | 0.643832 | [
"vector"
] |
6a8c0fb835ee3903807b70c48cce9bd57a1e6def | 1,349 | hpp | C++ | hyper/console/switch.hpp | hyperlib/console | 045b36a3a1f0ad3493c7032409f1c4af156ad37a | [
"MIT"
] | null | null | null | hyper/console/switch.hpp | hyperlib/console | 045b36a3a1f0ad3493c7032409f1c4af156ad37a | [
"MIT"
] | null | null | null | hyper/console/switch.hpp | hyperlib/console | 045b36a3a1f0ad3493c7032409f1c4af156ad37a | [
"MIT"
] | null | null | null | // "command.hpp> -*- C++ -*-
/**
* Hyper
*
* (c) 2017 Axel Etcheverry
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
#pragma once
#include <sstream>
#include <string>
#include <vector>
#include "option.hpp"
#include "option_val... | 22.114754 | 110 | 0.576723 | [
"vector"
] |
6a926b89fd6155330c009332e92ebcd63a764d66 | 3,488 | cpp | C++ | Code/Framework/AzToolsFramework/AzToolsFramework/Application/EditorEntityManager.cpp | CStudios15/o3de | 9dc85000a3ec1a6c6633d718f5c455ab11a46818 | [
"Apache-2.0",
"MIT"
] | 11 | 2021-07-08T09:58:26.000Z | 2022-03-17T17:59:26.000Z | Code/Framework/AzToolsFramework/AzToolsFramework/Application/EditorEntityManager.cpp | RoddieKieley/o3de | e804fd2a4241b039a42d9fa54eaae17dc94a7a92 | [
"Apache-2.0",
"MIT"
] | 29 | 2021-07-06T19:33:52.000Z | 2022-03-22T10:27:49.000Z | Code/Framework/AzToolsFramework/AzToolsFramework/Application/EditorEntityManager.cpp | RoddieKieley/o3de | e804fd2a4241b039a42d9fa54eaae17dc94a7a92 | [
"Apache-2.0",
"MIT"
] | 4 | 2021-07-06T19:24:43.000Z | 2022-03-31T12:42:27.000Z | /*
* Copyright (c) Contributors to the Open 3D Engine Project.
* For complete copyright and license terms please see the LICENSE at the root of this distribution.
*
* SPDX-License-Identifier: Apache-2.0 OR MIT
*
*/
#include <AzToolsFramework/Application/EditorEntityManager.h>
#include <AzToolsFramework/API/Tool... | 33.538462 | 140 | 0.69008 | [
"3d"
] |
6a9380042b6ece8eee08df7241998810430f9513 | 4,246 | cc | C++ | tmp/regex.cc | hankai17/test | 8f38d999a7c6a92eac94b4d9dc8e444619d2144f | [
"MIT"
] | 7 | 2017-07-16T15:09:26.000Z | 2021-09-01T02:13:15.000Z | tmp/regex.cc | hankai17/test | 8f38d999a7c6a92eac94b4d9dc8e444619d2144f | [
"MIT"
] | null | null | null | tmp/regex.cc | hankai17/test | 8f38d999a7c6a92eac94b4d9dc8e444619d2144f | [
"MIT"
] | 3 | 2017-09-13T09:54:49.000Z | 2019-03-18T01:29:15.000Z | #include <pcre.h>
#include<iostream>
#include<stdio.h>
#include<string.h>
#include<string>
#include<stdlib.h>
#include <cstdio>
#include <fstream>
#include <errno.h>
class DomainRegex {
public:
DomainRegex()
: _hits(0), _rex_string(NULL), _options(0), _rex(NULL), _extra(NULL), _next(NULL), _order(0) {}
... | 27.571429 | 103 | 0.529204 | [
"vector"
] |
6a9569477c00ed0198ff1bad9cb78534010f0d6f | 7,379 | hpp | C++ | SYCL/ESIMD/api/functional/ctors/ctor_move.hpp | tyoungsc/llvm-test-suite | 2206708dbe2829cfdd265368a5fddb5190ca83df | [
"Apache-2.0"
] | null | null | null | SYCL/ESIMD/api/functional/ctors/ctor_move.hpp | tyoungsc/llvm-test-suite | 2206708dbe2829cfdd265368a5fddb5190ca83df | [
"Apache-2.0"
] | null | null | null | SYCL/ESIMD/api/functional/ctors/ctor_move.hpp | tyoungsc/llvm-test-suite | 2206708dbe2829cfdd265368a5fddb5190ca83df | [
"Apache-2.0"
] | null | null | null | //===-- ctor_move.hpp - Functions for tests on simd vector constructor
// definition. -------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identif... | 35.138095 | 80 | 0.647378 | [
"vector"
] |
6a95e7536aa2ba595720b8ee8b3bdd2fc52f9159 | 12,649 | cpp | C++ | cpp/src/cylon/indexing/index.cpp | ahmet-uyar/cylon | 112ea97faf6e4643ae7e012078d454342a327fc3 | [
"Apache-2.0"
] | null | null | null | cpp/src/cylon/indexing/index.cpp | ahmet-uyar/cylon | 112ea97faf6e4643ae7e012078d454342a327fc3 | [
"Apache-2.0"
] | null | null | null | cpp/src/cylon/indexing/index.cpp | ahmet-uyar/cylon | 112ea97faf6e4643ae7e012078d454342a327fc3 | [
"Apache-2.0"
] | 1 | 2020-06-30T23:09:26.000Z | 2020-06-30T23:09:26.000Z | /*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed u... | 35.233983 | 119 | 0.711598 | [
"vector"
] |
6a96348a68f04f60f782f5dbe94bb130a9e95f60 | 23,633 | cpp | C++ | tests/tests4.cpp | shlyamster/sqlite_orm | a6c07b588a173f93c9a818371dd07c199442791d | [
"BSD-3-Clause"
] | 1 | 2021-12-27T15:23:13.000Z | 2021-12-27T15:23:13.000Z | tests/tests4.cpp | shlyamster/sqlite_orm | a6c07b588a173f93c9a818371dd07c199442791d | [
"BSD-3-Clause"
] | null | null | null | tests/tests4.cpp | shlyamster/sqlite_orm | a6c07b588a173f93c9a818371dd07c199442791d | [
"BSD-3-Clause"
] | null | null | null | #include <sqlite_orm/sqlite_orm.h>
#include <catch2/catch.hpp>
#include <numeric>
#include <algorithm> // std::count_if
#include <iostream>
#ifdef SQLITE_ORM_OPTIONAL_SUPPORTED
#include <optional> // std::optional
#endif // SQLITE_ORM_OPTIONAL_SUPPORTED
using namespace sqlite_orm;
using std::cout;
using std::endl... | 34.805596 | 120 | 0.557568 | [
"object",
"vector"
] |
6a9695d756ffe19d9b2c4c5fc9547f64ca07f24d | 14,363 | cpp | C++ | gensim/src/generators/ExecutionEngine/InterpEEGenerator.cpp | Linestro/Gensim_Y | 031b74234a92622cf2d2d2ebc2d5ba03ca28ecf8 | [
"MIT"
] | 10 | 2020-07-14T22:09:30.000Z | 2022-01-11T09:57:52.000Z | gensim/src/generators/ExecutionEngine/InterpEEGenerator.cpp | Linestro/Gensim_Y | 031b74234a92622cf2d2d2ebc2d5ba03ca28ecf8 | [
"MIT"
] | 6 | 2020-07-09T12:01:57.000Z | 2021-04-27T10:23:58.000Z | gensim/src/generators/ExecutionEngine/InterpEEGenerator.cpp | Linestro/Gensim_Y | 031b74234a92622cf2d2d2ebc2d5ba03ca28ecf8 | [
"MIT"
] | 10 | 2020-07-29T17:05:26.000Z | 2021-12-04T14:57:15.000Z | /* This file is Copyright University of Edinburgh 2018. For license details, see LICENSE. */
#include "arch/ArchDescription.h"
#include "isa/ISADescription.h"
#include "generators/ExecutionEngine/InterpEEGenerator.h"
#include "generators/GenCInterpreter/GenCInterpreterGenerator.h"
#include "genC/ssa/SSAContext.h"
#inc... | 40.345506 | 303 | 0.686765 | [
"vector"
] |
6a9b34730ea551f944fec432a07122eb6c08ad21 | 3,759 | cpp | C++ | src/tile.cpp | GabLeRoux/dkc2-maps | 2d8a6a587b3731be27f9571b9bf3e93132283091 | [
"MIT"
] | 9 | 2015-12-07T13:59:23.000Z | 2022-03-15T13:20:59.000Z | src/tile.cpp | GabLeRoux/dkc2-maps | 2d8a6a587b3731be27f9571b9bf3e93132283091 | [
"MIT"
] | 1 | 2019-10-14T01:51:13.000Z | 2019-10-14T01:55:45.000Z | src/tile.cpp | GabLeRoux/dkc2-maps | 2d8a6a587b3731be27f9571b9bf3e93132283091 | [
"MIT"
] | 4 | 2015-12-07T13:59:36.000Z | 2019-11-24T22:13:11.000Z |
#include "stdafx.h"
#include <vector>
#include "tile.h"
#include "bitmap.h"
TilePalette::TilePalette()
{
for (UINT i = 0; i < 16; i++) {
transparent_[i] = 0x00000000;
}
}
bool TilePalette::LoadSpriteSubPal(CartFile& cart, UINT id)
{
CartFile::Scope scope(cart);
DWORD addr;
addr = 0x0... | 23.203704 | 60 | 0.54323 | [
"vector"
] |
6a9cc6a8509b1670fe35185fd89ebf458ad15329 | 50,244 | cpp | C++ | demoinfogo/demofiledump.cpp | MeyerFabian/csgo-demoinfo | 6af1d42e640d53b8314a3bbb03cf67ab8aea3ad8 | [
"BSD-2-Clause"
] | null | null | null | demoinfogo/demofiledump.cpp | MeyerFabian/csgo-demoinfo | 6af1d42e640d53b8314a3bbb03cf67ab8aea3ad8 | [
"BSD-2-Clause"
] | null | null | null | demoinfogo/demofiledump.cpp | MeyerFabian/csgo-demoinfo | 6af1d42e640d53b8314a3bbb03cf67ab8aea3ad8 | [
"BSD-2-Clause"
] | null | null | null | //====== Copyright (c) 2014, Valve 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 the above copyright notice, this
// lis... | 30.432465 | 231 | 0.665313 | [
"vector"
] |
6a9d50cb30e20f1d3c230b793def9f32dc879305 | 837 | cpp | C++ | CPlusPlus-Class/ListePhrase/ListePhrase.cpp | ValentinIannantuoni/SAE921-GRP4100-CPlusPlus-Class-VIannantuoni | 019505cd24dd4d8cd7084db4a2084243d90d12e6 | [
"MIT"
] | null | null | null | CPlusPlus-Class/ListePhrase/ListePhrase.cpp | ValentinIannantuoni/SAE921-GRP4100-CPlusPlus-Class-VIannantuoni | 019505cd24dd4d8cd7084db4a2084243d90d12e6 | [
"MIT"
] | null | null | null | CPlusPlus-Class/ListePhrase/ListePhrase.cpp | ValentinIannantuoni/SAE921-GRP4100-CPlusPlus-Class-VIannantuoni | 019505cd24dd4d8cd7084db4a2084243d90d12e6 | [
"MIT"
] | null | null | null | #include<iostream>
#include <vector>
#include <list>
#include <string>
std::list<std::string> getMots(std::string sentence_, char separator_)
{
std::list<std::string> mots;
int leftPosition = 0;
int rigthposition = 0;
if (!sentence_.empty())
{
do
{
rigthposition = sentence_.find(separator_, leftPositi... | 15.5 | 87 | 0.657109 | [
"vector"
] |
6aa308d3c440e4e8b44aa4086be0d7f6cbe78b0e | 5,076 | hpp | C++ | include/fdc2ypos_heabang.hpp | serjinio/thesis_ana | 633a61dee56cf2cf4dcb67997ac87338537fb578 | [
"MIT"
] | null | null | null | include/fdc2ypos_heabang.hpp | serjinio/thesis_ana | 633a61dee56cf2cf4dcb67997ac87338537fb578 | [
"MIT"
] | null | null | null | include/fdc2ypos_heabang.hpp | serjinio/thesis_ana | 633a61dee56cf2cf4dcb67997ac87338537fb578 | [
"MIT"
] | null | null | null |
#include "consts.hpp"
#include "commonalg.hpp"
#include "drawing.hpp"
#include "scattyield.hpp"
#include "elacuts.hpp"
namespace s13 {
namespace ana {
class Fdc2YposHeAbangAlg : public SimpleTTreeAlgorithmBase {
using ElaCuts = s13::ana::ElasticScatteringCuts;
using Evt = s13::ana::ScatteringEven... | 32.126582 | 88 | 0.613081 | [
"vector"
] |
6aa412002f3687dacff582c671777977244c82b3 | 11,574 | cpp | C++ | src/field3D_Tools.cpp | gatgui/Field3DMaya | c2b5fe21970b93bea73e5a1da1d3bb39d446b7f7 | [
"BSD-3-Clause"
] | null | null | null | src/field3D_Tools.cpp | gatgui/Field3DMaya | c2b5fe21970b93bea73e5a1da1d3bb39d446b7f7 | [
"BSD-3-Clause"
] | null | null | null | src/field3D_Tools.cpp | gatgui/Field3DMaya | c2b5fe21970b93bea73e5a1da1d3bb39d446b7f7 | [
"BSD-3-Clause"
] | null | null | null | // Copyright (c) 2011 Prime Focus Film.
//
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
//
// Redistributions of source code must retain the above copyright
// notice, this list of condi... | 33.068571 | 145 | 0.672024 | [
"vector"
] |
6aa6162e026c9d9a95e693db56d532387f60fe9e | 833 | cpp | C++ | LeetCode/186.cpp | sptuan/PAT-Practice | 68e1ca329190264fdeeef1a2a1d4c2a56caa27f6 | [
"MIT"
] | null | null | null | LeetCode/186.cpp | sptuan/PAT-Practice | 68e1ca329190264fdeeef1a2a1d4c2a56caa27f6 | [
"MIT"
] | null | null | null | LeetCode/186.cpp | sptuan/PAT-Practice | 68e1ca329190264fdeeef1a2a1d4c2a56caa27f6 | [
"MIT"
] | null | null | null | class Solution {
public:
void reverseWords(vector<char>& s) {
stack<string> st;
string temp;
for(int i=0; i<s.size(); i++){
if(s[i]==' '){
if(temp.size()!=0){
st.push(temp);
temp.clear();
}
}
... | 21.921053 | 40 | 0.351741 | [
"vector"
] |
6aa6cf73012427e18f278f652530480a12113110 | 9,677 | cpp | C++ | OpenSim/Simulation/Model/PathSpring.cpp | MaartenAfschrift/OpenSim_SourceAD | e063021c44e15744cfc5438b5fe5250d02018098 | [
"Apache-2.0"
] | 2 | 2020-10-30T09:08:44.000Z | 2020-12-08T07:15:54.000Z | OpenSim/Simulation/Model/PathSpring.cpp | MaartenAfschrift/OpenSim_SourceAD | e063021c44e15744cfc5438b5fe5250d02018098 | [
"Apache-2.0"
] | null | null | null | OpenSim/Simulation/Model/PathSpring.cpp | MaartenAfschrift/OpenSim_SourceAD | e063021c44e15744cfc5438b5fe5250d02018098 | [
"Apache-2.0"
] | null | null | null | ///* -------------------------------------------------------------------------- *
// * OpenSim: PathSpring.cpp *
// * -------------------------------------------------------------------------- *
// * The OpenSim API is a toolkit for musculoskeletal modeling and simulat... | 39.497959 | 88 | 0.556991 | [
"object",
"vector",
"model"
] |
6aaa5bf78da60974065811486d61e755fae47958 | 25,150 | cpp | C++ | hex/src/controllers/stages/DecompositionStage.cpp | KaiSut0/interactive-hex-meshing | 187c926610ca5617f569405c23ab5a62b189e100 | [
"MIT"
] | 129 | 2021-09-07T17:15:18.000Z | 2022-02-28T08:59:02.000Z | hex/src/controllers/stages/DecompositionStage.cpp | KaiSut0/interactive-hex-meshing | 187c926610ca5617f569405c23ab5a62b189e100 | [
"MIT"
] | 2 | 2021-10-03T07:30:20.000Z | 2022-01-06T16:05:41.000Z | hex/src/controllers/stages/DecompositionStage.cpp | KaiSut0/interactive-hex-meshing | 187c926610ca5617f569405c23ab5a62b189e100 | [
"MIT"
] | 11 | 2021-09-08T11:29:09.000Z | 2022-03-17T08:39:50.000Z | #include <GLFW/glfw3.h>
#include <imgui.h>
#include <vkoo/st/components/Tracing.h>
#include "DecompositionStage.h"
#include "controllers/GlobalController.h"
#include "logging.h"
#include "utility/ImGuiEx.h"
#include "vkoo/core/InputEvent.h"
namespace hex {
namespace {
const float kDuplicateOffset = 0.01f;
const float... | 35.372714 | 80 | 0.657058 | [
"mesh",
"object",
"shape",
"vector"
] |
6aab352d4d65c3bc1e5204a0f9540c7c134bee89 | 2,755 | cpp | C++ | SPOJ/salman.cpp | a3X3k/Competitive-programing-hacktoberfest-2021 | bc3997997318af4c5eafad7348abdd9bf5067b4f | [
"Unlicense"
] | 12 | 2021-06-05T09:40:10.000Z | 2021-10-07T17:59:51.000Z | SPOJ/salman.cpp | a3X3k/Competitive-programing-hacktoberfest-2021 | bc3997997318af4c5eafad7348abdd9bf5067b4f | [
"Unlicense"
] | 21 | 2020-10-10T10:41:03.000Z | 2020-10-31T10:41:23.000Z | SPOJ/salman.cpp | a3X3k/Competitive-programing-hacktoberfest-2021 | bc3997997318af4c5eafad7348abdd9bf5067b4f | [
"Unlicense"
] | 67 | 2021-08-01T10:04:52.000Z | 2021-10-10T00:25:04.000Z | #include <bits/stdc++.h>
using namespace std;
const long long N = 1 << 19;
long long t,n,q;
vector<long long> adj[N];
long long res[N],l[N],r[N];
vector<long long> s;
struct node
{
long long mn,sum;
friend node operator+(const node &a,const node &b)
{
node ret;
ret.mn = min(a.mn,b.mn);
... | 25.045455 | 92 | 0.49873 | [
"vector"
] |
6aaba5d7fc94b81faa49a38f7461f3cb7dbdf1a3 | 18,939 | cc | C++ | src/update_engine/payload_state_unittest.cc | flatcar-linux/update_engine | 748eb99b18b67747f2e047327e9f2a18aa09d3b5 | [
"BSD-3-Clause"
] | 4 | 2019-11-13T15:09:11.000Z | 2022-03-11T08:42:20.000Z | src/update_engine/payload_state_unittest.cc | flatcar-linux/update_engine | 748eb99b18b67747f2e047327e9f2a18aa09d3b5 | [
"BSD-3-Clause"
] | 4 | 2020-03-11T10:28:56.000Z | 2022-03-10T11:30:03.000Z | src/update_engine/payload_state_unittest.cc | flatcar-linux/update_engine | 748eb99b18b67747f2e047327e9f2a18aa09d3b5 | [
"BSD-3-Clause"
] | 1 | 2021-05-26T08:32:18.000Z | 2021-05-26T08:32:18.000Z | // Copyright (c) 2012 The Chromium OS 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 <glib.h>
#include "gmock/gmock.h"
#include "gtest/gtest.h"
#include "strings/string_printf.h"
#include "update_engine/omaha_request_acti... | 43.043182 | 80 | 0.747558 | [
"object"
] |
6aad5b7b0a2562aa1ef32d6129ba2d40cc341600 | 22,714 | cc | C++ | src/arith/solve_linear_inequality.cc | XiaoSong9905/tvm | 48940f697e15d5b50fa1f032003e6c700ae1e423 | [
"Apache-2.0"
] | 4,640 | 2017-08-17T19:22:15.000Z | 2019-11-04T15:29:46.000Z | src/arith/solve_linear_inequality.cc | XiaoSong9905/tvm | 48940f697e15d5b50fa1f032003e6c700ae1e423 | [
"Apache-2.0"
] | 3,022 | 2020-11-24T14:02:31.000Z | 2022-03-31T23:55:31.000Z | src/arith/solve_linear_inequality.cc | XiaoSong9905/tvm | 48940f697e15d5b50fa1f032003e6c700ae1e423 | [
"Apache-2.0"
] | 1,352 | 2017-08-17T19:30:38.000Z | 2019-11-04T16:09:29.000Z | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | 39.094664 | 100 | 0.642291 | [
"vector",
"transform"
] |
6aaea0aa20650004f02d46244203373d6f99fa6d | 899 | cpp | C++ | Sort/49_Group-Anagrams/49_Group-Anagrams.cpp | YunWGui/LeetCode | 2587eca22195ec7d9263227554467ec4010cfe05 | [
"MIT"
] | null | null | null | Sort/49_Group-Anagrams/49_Group-Anagrams.cpp | YunWGui/LeetCode | 2587eca22195ec7d9263227554467ec4010cfe05 | [
"MIT"
] | null | null | null | Sort/49_Group-Anagrams/49_Group-Anagrams.cpp | YunWGui/LeetCode | 2587eca22195ec7d9263227554467ec4010cfe05 | [
"MIT"
] | null | null | null | /******************************************************************************
* Title:
* 49. Group Anagrams
* 49. 字母异位词分组
* Address:
* https://leetcode-cn.com/problems/group-anagrams/
******************************************************************************/
#include <iostream>
#include <vector... | 21.926829 | 79 | 0.447164 | [
"vector"
] |
6aafc71676d2a95c7b1accae67ab02c45ead8406 | 6,050 | cpp | C++ | kmsecure.cpp | matteofumagalli1275/kmsecure | 8f86d252e23f5100e17766ea75f516c48ca8b9a5 | [
"MIT"
] | null | null | null | kmsecure.cpp | matteofumagalli1275/kmsecure | 8f86d252e23f5100e17766ea75f516c48ca8b9a5 | [
"MIT"
] | null | null | null | kmsecure.cpp | matteofumagalli1275/kmsecure | 8f86d252e23f5100e17766ea75f516c48ca8b9a5 | [
"MIT"
] | null | null | null | /*
* KMSECURE
* The MIT License (MIT)
* Copyright (c) 2015 Matteo Fumagalli
*/
#include "kmsecure.h"
using namespace std;
kmsecure::kmsecure()
{
kmcrypto = NULL;
}
int kmsecure::get_len_padded_dim(int size)
{
int len8;
uint16_t minblk = kmcrypto->get_minimum_block_size();
int padding_length = si... | 26.077586 | 101 | 0.605289 | [
"vector"
] |
6ab3e59ffb5731b668f5d8b4e4b921726516e2b3 | 1,499 | cc | C++ | net/ip-encoding_test.cc | iceb0y/trunk | 8d21be238d8478691f947ce1ecf905ac9b75787b | [
"Apache-2.0"
] | 6 | 2019-12-01T00:49:31.000Z | 2020-07-26T07:35:07.000Z | net/ip-encoding_test.cc | iceboy233/trunk | 83024a83f07a587e00a3f2e1906361de521d8f12 | [
"Apache-2.0"
] | null | null | null | net/ip-encoding_test.cc | iceboy233/trunk | 83024a83f07a587e00a3f2e1906361de521d8f12 | [
"Apache-2.0"
] | 1 | 2020-07-26T06:39:30.000Z | 2020-07-26T06:39:30.000Z | #include "net/ip-encoding.h"
#include <vector>
#include <gmock/gmock.h>
#include <gtest/gtest.h>
#include "net/asio.h"
namespace net {
namespace {
using ::testing::ElementsAre;
TEST(IpEncoding, encode) {
std::vector<uint8_t> bytes;
encode(make_address("127.0.0.1"), bytes);
EXPECT_THAT(bytes, ElementsAre... | 31.229167 | 76 | 0.594396 | [
"vector"
] |
6ab88e1c38faa0f9f5740b4a9700265d1b1c96c4 | 451 | cpp | C++ | leetcode/two_sum/leetcode_167.cpp | HuangJingGitHub/PracMakePert_C | 94e570c55d9e391913ccd9c5c72026ab926809b2 | [
"Apache-2.0"
] | null | null | null | leetcode/two_sum/leetcode_167.cpp | HuangJingGitHub/PracMakePert_C | 94e570c55d9e391913ccd9c5c72026ab926809b2 | [
"Apache-2.0"
] | null | null | null | leetcode/two_sum/leetcode_167.cpp | HuangJingGitHub/PracMakePert_C | 94e570c55d9e391913ccd9c5c72026ab926809b2 | [
"Apache-2.0"
] | null | null | null | class Solution {
public:
vector<int> twoSum(vector<int>& numbers, int target) {
int left = 0, right = numbers.size() - 1, sum;
while (left < right) {
sum = numbers[left] + numbers[right];
if (sum > target)
right--;
else if (sum < target)
... | 25.055556 | 58 | 0.436807 | [
"vector"
] |
6ab945e2fe0de0747bb08699104811e934ebdca4 | 4,513 | hh | C++ | src/PSOEncryption.hh | clint-david/newserv | 40aa08bd4f391d8d3f6d41d3b539de5bc4c5c679 | [
"MIT"
] | null | null | null | src/PSOEncryption.hh | clint-david/newserv | 40aa08bd4f391d8d3f6d41d3b539de5bc4c5c679 | [
"MIT"
] | null | null | null | src/PSOEncryption.hh | clint-david/newserv | 40aa08bd4f391d8d3f6d41d3b539de5bc4c5c679 | [
"MIT"
] | null | null | null | #pragma once
#include <inttypes.h>
#include <stddef.h>
#include <memory>
#include <string>
#include <vector>
#include <phosg/Encoding.hh>
#include "Text.hh" // for parray
#define PC_STREAM_LENGTH 56
#define GC_STREAM_LENGTH 521
#define BB_STREAM_LENGTH 1042
class PSOEncryption {
public:
vir... | 28.929487 | 89 | 0.69887 | [
"vector"
] |
6abba4e44f1ae873a04e5029f8bf5cc291210b83 | 5,503 | cpp | C++ | Directx11FPS/Help/Graphic/Base/class.HLSL.cpp | sekys/FPS | d582b6b5fb55adc88b6c4aa6a4cd2145488db31f | [
"MIT"
] | null | null | null | Directx11FPS/Help/Graphic/Base/class.HLSL.cpp | sekys/FPS | d582b6b5fb55adc88b6c4aa6a4cd2145488db31f | [
"MIT"
] | null | null | null | Directx11FPS/Help/Graphic/Base/class.HLSL.cpp | sekys/FPS | d582b6b5fb55adc88b6c4aa6a4cd2145488db31f | [
"MIT"
] | 1 | 2018-03-27T16:02:28.000Z | 2018-03-27T16:02:28.000Z | #include "class.HLSL.h"
#include <fstream>
#include <assert.h>
#include "../../../Global.h"
using namespace Shaders;
using namespace std;
HLSLBase::HLSLBase() {
m_vertexShader = 0;
m_pixelShader = 0;
m_sampleState = 0;
m_layout = 0;
}
HLSLBase::~HLSLBase() {
// Shutdown the vertex and pixel Bases as well as the... | 29.427807 | 133 | 0.740869 | [
"render"
] |
6abfc4ccd688e5af665fdbf8ba2d96da973c9999 | 675 | cpp | C++ | SimpleInformationRetrievalTools/SimpleInformationRetrievalTools/StaticQualityScore.cpp | smilenow/Information-Retrieval | 7d4829f4249d95a5aac46f94c9cec819d1f05901 | [
"MIT"
] | null | null | null | SimpleInformationRetrievalTools/SimpleInformationRetrievalTools/StaticQualityScore.cpp | smilenow/Information-Retrieval | 7d4829f4249d95a5aac46f94c9cec819d1f05901 | [
"MIT"
] | null | null | null | SimpleInformationRetrievalTools/SimpleInformationRetrievalTools/StaticQualityScore.cpp | smilenow/Information-Retrieval | 7d4829f4249d95a5aac46f94c9cec819d1f05901 | [
"MIT"
] | null | null | null | //
// StaticQualityScore.cpp
// SimpleInformationRetrievalTools
//
// Created by ryecao on 6/22/15.
// Copyright (c) 2015 Zhendong Cao. All rights reserved.
//
#include <string>
#include <vector>
#include <cmath>
#include <unordered_map>
#include "StaticQualityScore.h"
#include "InvertedIndex.h"
StaticQualityScor... | 21.774194 | 101 | 0.688889 | [
"vector"
] |
6ac2b1e472d72bae4533a3662ef4125a836e31c1 | 15,368 | cc | C++ | mysql-server/sql/sql_test.cc | silenc3502/MYSQL-Arch-Doc-Summary | fcc6bb65f72a385b9f56debc9b2c00cee5914bae | [
"MIT"
] | null | null | null | mysql-server/sql/sql_test.cc | silenc3502/MYSQL-Arch-Doc-Summary | fcc6bb65f72a385b9f56debc9b2c00cee5914bae | [
"MIT"
] | null | null | null | mysql-server/sql/sql_test.cc | silenc3502/MYSQL-Arch-Doc-Summary | fcc6bb65f72a385b9f56debc9b2c00cee5914bae | [
"MIT"
] | null | null | null | /* Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2.0,
as published by the Free Software Foundation.
This program is also distributed with certai... | 32.353684 | 80 | 0.626236 | [
"shape",
"3d"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.