blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 3 264 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 5 140 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 905
values | visit_date timestamp[us]date 2015-08-09 11:21:18 2023-09-06 10:45:07 | revision_date timestamp[us]date 1997-09-14 05:04:47 2023-09-17 19:19:19 | committer_date timestamp[us]date 1997-09-14 05:04:47 2023-09-06 06:22:19 | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 22
values | gha_event_created_at timestamp[us]date 2012-06-07 00:51:45 2023-09-14 21:58:39 ⌀ | gha_created_at timestamp[us]date 2008-03-27 23:40:48 2023-08-21 23:17:38 ⌀ | gha_language stringclasses 141
values | src_encoding stringclasses 34
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 3 10.4M | extension stringclasses 115
values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
d03cd90e49dd06083e6a75fb1eca63860d8bb368 | dcc6234fa754f09bab518f2c430ada8011783f90 | /SqlEngine.cc | b08de7b77443ab4f4d5a7e7978c306005da2906c | [] | no_license | cjsub/cs143_project2 | 2dd92f66aa21efc702827d5ceaa6d98adde9215d | 89ff17ee6b30e2d974511508c0c0842ccfd633ee | refs/heads/master | 2021-01-24T03:48:20.903331 | 2013-02-23T02:08:40 | 2013-02-23T02:08:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,552 | cc | /**
* Copyright (C) 2008 by The Regents of the University of California
* Redistribution of this file is permitted under the terms of the GNU
* Public License (GPL).
*
* @author Junghoo "John" Cho <cho AT cs.ucla.edu>
* @date 3/24/2008
*/
#include <cstdio>
#include <iostream>
#include <fstream>
#include "Bruinb... | [
"sehunchoi@gmail.com"
] | sehunchoi@gmail.com |
99cdc2d23710339b1d103c7a8e0ffa64a1a43032 | ead0b1c60e787f319242de5a56d246991d6e5464 | /test/TestApp/GDK/ATGTK/SampleGUI.h | 74ae6b0d97f80f0b393562d33585ca3645af1e11 | [] | no_license | jplafonta/XPlatCSdk | fbc9edcf7dadf88c5e20f26b6deaafa3bb512909 | 302c021dcfd7518959551b33c65499a45d7829de | refs/heads/main | 2023-07-30T04:54:27.901376 | 2021-08-31T14:26:52 | 2021-08-31T14:26:52 | 347,189,117 | 0 | 0 | null | 2021-04-15T01:09:33 | 2021-03-12T20:26:17 | C++ | UTF-8 | C++ | false | false | 36,089 | h | //--------------------------------------------------------------------------------------
// File: SampleGUI.h
//
// A simple set of UI widgets for use in ATG samples
//
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
// T... | [
"jlafonta0550@gmail.com"
] | jlafonta0550@gmail.com |
aa9edb21b8037e19d421980cc5b8f0f5606f16af | 787bde65fe076cca1f985390f3d4e87ddf58964f | /Batch Runs/7 BR/4.00/MyDirection.cpp | cc0a0df15f8f88844a0f8ccfa4e1cba8be9a56ae | [] | no_license | VajiraK/Marc | 8630b1c4f579bccb088a2e3a1e79f2b56e886bdb | 33d6ac18c0c9a85feb3d377b12b2012d26979c51 | refs/heads/main | 2023-01-12T17:17:13.029472 | 2020-11-15T14:49:24 | 2020-11-15T14:49:24 | 313,052,531 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,892 | cpp | // MyDirection.cpp: implementation of the CMyDirection class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "MyDirection.h"
CMyDirection::~CMyDirection(){}
//----------------------------------------------------------------------------------------
CMyDirection::... | [
"vajira.kulatunga@pearson.com"
] | vajira.kulatunga@pearson.com |
f7065d246c1eff486d04c4d4d275e7016919ddc6 | 9247d93d625768940e0a28b418879014286861e5 | /algorithm_winterstudy/27_백준10844_(틀림)쉬운계단수_120119.cpp | f1a324db076865c7d0ca80cf7aac099c7d6fab7c | [] | no_license | inhoinno/BOSSMONSTER | 5cf15fe2b0943ff709de1b42c657c5cebcff7ffb | 699db45efe1c75ba1e448b3e774bd5092018b2fc | refs/heads/master | 2020-12-31T23:36:49.368242 | 2020-02-24T05:23:12 | 2020-02-24T05:23:12 | 239,078,563 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 903 | cpp | #include <iostream>
#include <cstdio>
using namespace std;
int D_Stair(int n){
int d[101];
d[0] = 0;
d[1] = 9;
if(d[n]>0) return d[n];
else{
d[n] = D_Stair(n-1)*2 -1;
return d[n]; ... | [
"56788537+inhoinno@users.noreply.github.com"
] | 56788537+inhoinno@users.noreply.github.com |
3f8363e10dfa330b21fa9d0ad32970c7c97e28c3 | af0e1b9507d4ade87c312b0cc0bf1bf167fa83a0 | /3d_reconstruction/refinement.h | 85c1a59a78af32a8cc60e9413a9ece115ba3964c | [] | no_license | kolina/diploma | 07f560b24ae63e4449c5658f69b958f64ce93c94 | bc161e642d2db20be0162afd974f3328b16293bc | refs/heads/master | 2021-01-11T08:03:53.526604 | 2016-11-05T09:37:41 | 2016-11-05T09:37:41 | 72,917,046 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 2,454 | h | #ifndef INC_3D_RECONSTRUCTION_REFINEMENT_H
#define INC_3D_RECONSTRUCTION_REFINEMENT_H
#include "optimization.h"
struct AbsolutePoseEstimationOptions {
bool estimate_focal_length = false;
size_t num_focal_length_samples = 30;
double min_focal_length_ratio = 0.2;
double max_focal_length_ratio = 5;
int num... | [
"kolina93@yandex-team.ru"
] | kolina93@yandex-team.ru |
db0b032dced7dae81036ab31c0c51040887fb123 | c2621eab966ec23d2293d0fb8e00087d9b86003e | /components/cpp_utils/FreeRTOS.cpp | 7b2be5d024f1be673362fba77cf57e97bbafdcc0 | [] | no_license | NguyenPham0106/esp32-snippets-enchancements-test | e976042d0c41bbb21ba8d1b43d350d95a8043203 | 9f1715b01a7b7c30e3efce893fc1a380eb23dede | refs/heads/master | 2023-04-08T07:34:43.579773 | 2018-10-06T16:00:03 | 2018-10-06T16:00:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,531 | cpp | /*
* FreeRTOS.cpp
*
* Created on: Feb 24, 2017
* Author: kolban
*/
#include <freertos/FreeRTOS.h> // Include the base FreeRTOS definitions
#include <freertos/task.h> // Include the task definitions
#include <freertos/semphr.h> // Include the semaphore definitions
#include <string>
#include <sstre... | [
"imperiaonline4@gmail.com"
] | imperiaonline4@gmail.com |
5747e3682874ede22d23f926cccf91f574e165e5 | 493ac26ce835200f4844e78d8319156eae5b21f4 | /CHT_heat_transfer/constant/solid_15/polyMesh/faceZones | 8b03d9dfd282d08ea694fd5d235ee2a2d3c1dd21 | [] | no_license | mohan-padmanabha/worm_project | 46f65090b06a2659a49b77cbde3844410c978954 | 7a39f9384034e381d5f71191122457a740de3ff0 | refs/heads/master | 2022-12-14T14:41:21.237400 | 2020-08-21T13:33:10 | 2020-08-21T13:33:10 | 289,277,792 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 885 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v1912 |
... | [
"mohan.2611@gmail.com"
] | mohan.2611@gmail.com | |
fb625acb879fed0a0fe959409853a58e2e7101fb | 3c311327423d13735edc298230d3c36d2691f5c7 | /tensorflow/lite/tools/optimize/operator_property.cc | 01a10a575671f736e9a0dffb9585faffb6f3d543 | [
"Apache-2.0"
] | permissive | drewszurko/tensorflow | 6075aafff00893837da583ccc13fb399a6e40bcd | f2a9a2cdd87673182e94b3c25fcfc210315d014b | refs/heads/master | 2020-04-25T00:07:56.946637 | 2019-04-18T18:51:56 | 2019-04-18T18:51:56 | 172,368,205 | 0 | 0 | Apache-2.0 | 2019-04-18T18:44:45 | 2019-02-24T17:33:14 | C++ | UTF-8 | C++ | false | false | 5,682 | cc | /* Copyright 2019 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or a... | [
"gardener@tensorflow.org"
] | gardener@tensorflow.org |
b28d8002248070bc0a260aff788045ac20056452 | c3ba724f8fde86f644690e1d3aeec855d9dc395b | /third_person/Source/third_person/third_personGameMode.h | 147c80e36498c79c8027f5628e58bf7b36589871 | [] | no_license | wyxloading/ue4-samples | 4577522de40404104b7cc5cc76cab55e72b54a45 | 878c070f6f4dc1a5144f98475f237b111a688736 | refs/heads/master | 2021-06-07T03:01:56.077095 | 2016-09-07T00:18:52 | 2016-09-07T00:18:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 282 | h | // Copyright 1998-2016 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "GameFramework/GameMode.h"
#include "third_personGameMode.generated.h"
UCLASS(minimalapi)
class Athird_personGameMode : public AGameMode
{
GENERATED_BODY()
public:
Athird_personGameMode();
};
| [
"tonculture@hotmail.com"
] | tonculture@hotmail.com |
20f408772f0f1dc537584e1369149398a495ea95 | 4081245b8ed21b053664ebd66340db8d38ab8c4f | /BuildBSTDCB.cpp | 163729d9fa75a5a8c18481fbddc53627086eacff | [] | no_license | anandaditya444/LEETCODE | 5240f0adf1df6a87747e00842f87566b0df59f92 | 82e597c21efa965cfe9e75254011ce4f49c2de36 | refs/heads/master | 2020-05-07T15:48:19.081727 | 2019-08-25T16:03:57 | 2019-08-25T16:03:57 | 180,653,012 | 2 | 1 | null | 2019-10-05T13:45:29 | 2019-04-10T19:48:40 | C++ | UTF-8 | C++ | false | false | 955 | cpp | #include <bits/stdc++.h>
using namespace std;
#define int long long int
#define IOS ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);
#define ff first
#define ss second
#define pb push_back
#define pf push_front
#define endl "\n"
const int N = 1e3+5;
int a[N];
int t,n;
struct node
{
int data;
struct... | [
"anandaditya444@gmail.com"
] | anandaditya444@gmail.com |
e83c503c390bbfce7dec0304760ee4925031ef72 | 1d218b5b336936a8e611dc8924c88012585fe822 | /Temp/StagingArea/Data/il2cppOutput/Bulk_Mono.Security_0.cpp | 222ee51c098d5de8ca18f55eff41408abd944d2e | [] | no_license | DWesterdijk/TerrainDestruction | 515bdcef67c9e49f73aad6b5cb5286ff05f9c4a4 | f916af9034693dc7388cbbde7c50ae0c64420025 | refs/heads/master | 2022-03-10T19:20:21.548445 | 2018-10-10T14:21:42 | 2018-10-10T14:21:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,807,367 | cpp | #include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <cstring>
#include <string.h>
#include <stdio.h>
#include <cmath>
#include <limits>
#include <assert.h>
#include <stdint.h>
#include "il2cpp-class-internals.h"
#include "codegen/il2cpp-codegen.h"
#include "i... | [
"duncan.westerdijk@quicknet.nl"
] | duncan.westerdijk@quicknet.nl |
f346f64cbeadb4c7a9b4e5913dcb82b9d923e0f7 | 633ae1a2eb5151143dbe3744eb7fe70ba1112812 | /Chip-8/src/main.cpp | ad419783433c3b16aedbb8d8e16c07d8ad8e98f0 | [
"MIT"
] | permissive | MehTheHedgehog/Chiper8 | ff6118892082e91f47ef3155d93d36be215c4619 | 65cd16684e3edadb78dc27a32fa0dbe34cb1d46a | refs/heads/master | 2021-01-01T16:31:39.488061 | 2017-07-21T22:21:38 | 2017-07-21T22:21:38 | 97,849,987 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,433 | cpp | #include <string>
#include <tclap/CmdLine.h>
#include "SubSystem\Emulator.hpp"
int main(int argc, char** argv)
{
bool isDebug = false;
std::string strFileName;
//Parsing Command line arguments
try {
TCLAP::CmdLine cmd("Chip-8 emulator", ' ', "0.0.1a");
TCLAP::UnlabeledValueArg<std::string> fileArg("file", "Pa... | [
"mehthehedgehog@gmail.com"
] | mehthehedgehog@gmail.com |
9a87325c2c7c2703065440d75efc42e720bfeba2 | 4c0e956ba72bd9aeffae22ae4db32036a1c33a9e | /La_Library/demo43_41.cpp | 6349903686b079313e8d37254eeb2905812b4f85 | [] | no_license | dzylikecode/La_Library | 277650a3be19263acb9f5e83d86710498d5c884e | e46d126890bc1feb33ecac343588e096b478b525 | refs/heads/master | 2023-07-30T17:03:37.076898 | 2021-09-05T03:10:45 | 2021-09-05T03:10:45 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 9,360 | cpp |
/*
***************************************************************************************
* 程 序:
*
* 作 者: LaDzy
*
* 邮 箱: mathbewithcode@gmail.com
*
* 编译环境: Visual Studio 2019
*
* 创建时间: 2021/08/31 9:14:54
* 最后修改:
*
* 简 介:
*
****************************************************************************... | [
"1494977853@qq.com"
] | 1494977853@qq.com |
c8a8311151ccfa752ff7fbfc0bab0768eeeb5c21 | 3ad968797a01a4e4b9a87e2200eeb3fb47bf269a | /MFC CodeGuru/splitter/SplitterTog_source/SplitFrame.h | bf10ac6006fbf65faed545935c9aaa9069ac9ad5 | [] | no_license | LittleDrogon/MFC-Examples | 403641a1ae9b90e67fe242da3af6d9285698f10b | 1d8b5d19033409cd89da3aba3ec1695802c89a7a | refs/heads/main | 2023-03-20T22:53:02.590825 | 2020-12-31T09:56:37 | 2020-12-31T09:56:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,133 | h | #if ! defined( __SPLITFRAME_H__ )
#define __SPLITFRAME_H__
#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000
/*
** Author: Guy Gascoigne - Piggford
** Internet: guy@wyrdrune.com
**
** You can use this source in any way you like as long as you don't try to sell it.
**
** Any attempt to sell this in source ... | [
"pkedpekr@gmail.com"
] | pkedpekr@gmail.com |
07ee6988fb7b86e6fe9fb410facdd09df33dab39 | ab1712d65f8510a705a1f28064e4d3fc5a48cf64 | /SDK/SoT_WildRoseDefinition_classes.hpp | b8e743efd863e1aabd134859c109397f3b243e65 | [] | no_license | zk2013/SoT-SDK | 577f4e26ba969c3fa21a9191a210afc116a11dba | 04eb22c1c31aaa4d5cf822b0a816786c99e3ea2f | refs/heads/master | 2020-05-29T20:06:57.165354 | 2019-05-29T16:46:51 | 2019-05-29T16:46:51 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,063 | hpp | #pragma once
// Sea of Thieves (2.0) SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
#include "SoT_WildRoseDefinition_structs.hpp"
namespace SDK
{
//---------------------------------------------------------------------------
//Classes
//---------------------------------------------------------------------------... | [
"igromanru@yahoo.de"
] | igromanru@yahoo.de |
d967e9ce296f1e9863ada34d4923e275531e31aa | 9ce1f0f2652f81903f31452451bfd17ae6873623 | /Code/Tools/FBuild/FBuildCore/FBuild.cpp | 8f51ef7c788f1489e9edf36fcc2bc2d3508e4aa3 | [
"LicenseRef-scancode-unknown-license-reference",
"LicenseRef-scancode-other-permissive"
] | permissive | missmah/fastbuild | 7044b4f62b696956dbd1651b12262aa0bd052e06 | 310dcff973cf8e6902b2608cf72dbf928fe89e9c | refs/heads/master | 2021-01-19T16:50:38.890910 | 2017-04-14T19:27:44 | 2017-04-14T19:27:44 | 88,291,891 | 1 | 2 | null | 2019-10-30T04:37:30 | 2017-04-14T18:17:37 | C++ | UTF-8 | C++ | false | false | 21,962 | cpp | // FBuild - the main application
//------------------------------------------------------------------------------
// Includes
//------------------------------------------------------------------------------
#include "Tools/FBuild/FBuildCore/PrecompiledHeader.h"
#include "FBuild.h"
#include "FLog.h"
#include "BFF/BFF... | [
"franta.fulin@gmail.com"
] | franta.fulin@gmail.com |
d06d9d02dc25da3358c879f29b2b36551d71ba3c | 700bd6fb0f9eb2ec1d23ff39b069e5a3d7b26576 | /src/main.cpp | de74a6ea27d02346a50680020c25fa2823cd48ee | [] | no_license | iniwap/LeapMotion-SmallGame-With-OF | 6da32e0099cb8572ef51eba119cdd09c1214edd1 | c5fb0c97d4685c7cbeb4550d2ce33d36d584e3b9 | refs/heads/master | 2021-01-23T07:27:12.846640 | 2013-11-29T15:23:39 | 2013-11-29T15:23:39 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 413 | cpp | #include "ofMain.h"
#include "gameApp.h"
#include "ofAppGlutWindow.h"
//========================================================================
int main( ){
ofAppGlutWindow window;
ofSetupOpenGL(&window, 800,600, OF_WINDOW); // <-------- setup the GL context
// this kicks off the running of my app
// can b... | [
"iafun@iafuns-MacBook-Pro.local"
] | iafun@iafuns-MacBook-Pro.local |
def54fb831d8465aeb9d3f285236390c775cb212 | 13b25f161cc1f878c8aaa6e4635c20678068759f | /cplusplus_learning/rcf_client_learning/demo_client.cpp | aa4b7040febb591da6d00e883977e739ffd44887 | [] | no_license | JayL323/cpluspluslearning | d3df70859020e5758a68c1e74102f0dadba1b4e0 | 8f7912791bb15d6dd8019e42687f088c5270f94f | refs/heads/master | 2022-03-26T23:13:26.239058 | 2020-01-01T13:04:16 | 2020-01-01T13:05:06 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,012 | cpp | #include<iostream>
#include<iterator>
#include<RCF/RCF.hpp>
#include"demo_interface.h"
int main()
{
RCF::RcfInit rcfInit;
std::string ip = "127.0.0.1";
int port = 50001;
std::cout << "将要连接到" << ip << ":" << port << "\n";
std::vector<std::string> v;
v.push_back("one");
v.push_back("two");
v.push_back("three... | [
"942296928@qq.com"
] | 942296928@qq.com |
b5883035081eeeaf6a7d682e3a0aebdd2052ee70 | 2f10f807d3307b83293a521da600c02623cdda82 | /deps/boost/win/debug/include/boost/process/detail/windows/locale.hpp | da78bf0dd96785885ea645fdc9b3a5c7a89a1476 | [] | no_license | xpierrohk/dpt-rp1-cpp | 2ca4e377628363c3e9d41f88c8cbccc0fc2f1a1e | 643d053983fce3e6b099e2d3c9ab8387d0ea5a75 | refs/heads/master | 2021-05-23T08:19:48.823198 | 2019-07-26T17:35:28 | 2019-07-26T17:35:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 129 | hpp | version https://git-lfs.github.com/spec/v1
oid sha256:70e4104c44c9ba6d080542f5bc81dbcdd1a77212c9e0d719105ca80ade49495d
size 3154
| [
"YLiLarry@gmail.com"
] | YLiLarry@gmail.com |
86c98c5a5047ab3e0626b58aa26bfd5f3605e144 | 21aa7d1dbf2b6ae0582797b653090d0fb13d4da0 | /common/include/common/ConsoleLogger.h | 94143f554b7eb1fc22d6a8f27b06c8426da73daf | [
"MIT",
"LicenseRef-scancode-unknown",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | define-private-public/SpvGenTwo | 3b4e66a7ffb0732a8b3d28cedb11a1430ac4c767 | 5ff86437a0548134e7a3173f97edbefb5bedf7c3 | refs/heads/master | 2022-11-27T11:20:01.073015 | 2020-07-30T13:56:09 | 2020-07-30T13:56:09 | 284,812,481 | 0 | 0 | MIT | 2020-08-03T21:37:30 | 2020-08-03T21:37:29 | null | UTF-8 | C++ | false | false | 345 | h | #pragma once
#include "spvgentwo/Logger.h"
namespace spvgentwo
{
class ConsoleLogger : public ILogger
{
public:
ConsoleLogger();
ConsoleLogger(const ConsoleLogger&) = delete;
ConsoleLogger(ConsoleLogger&&) = delete;
private:
static void LogImpl(ILogger* _pInstance, LogLevel _level, const char* _pFormat, ... | [
"fwahlster@outlook.com"
] | fwahlster@outlook.com |
780021fc00970191d05fbc233e8c2baf8e05fd4d | f7d8dfb897e4ab2a6b2b769ab16e3093d7ff7dc1 | /main.cpp | 9233a2beb76ecd6ebff21d9aa14ad63fb2628ee2 | [] | no_license | Rogan003/SwimmingCareerSimulatorDemo | 228a85a0f4e63921ed087752b64bfd3993956ab5 | 3c41b31a2df75a858cc9b4c298d8d89b6262d716 | refs/heads/master | 2021-04-11T19:22:59.596928 | 2020-12-18T11:39:11 | 2020-12-18T11:39:11 | 249,046,687 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,347 | cpp | #include <iostream>
#include <cmath>
#include <ctime>
#include <cstdlib>
#include <list>
using namespace std;
enum drzava{Egipat,Jamajka,Srbija,Hrvatska,Svajcarska,Austrija,Italija,Rusija,Nemacka,Brazil,Australija,Kanada,Kina,VelikaBritanija,Japan,SAD};
enum Marka{TYR,Speedo,Arena};
#include "drzava.hpp"
#include "tren... | [
"roganovic.veselin@jjzmaj.edu.rs"
] | roganovic.veselin@jjzmaj.edu.rs |
fa72dd4ce48cf6fde1a6bcc772eab33f17bfd3b2 | c84629bf7158041eb5309f11cf5c678f116081b4 | /backUp/!_SHADER_GALLERY_noIndices/_SHADERS/velvet/velvet_INIT.cpp | 54e93413f74dc7f73145266c7743e94e85e287b4 | [] | no_license | marcclintdion/iOS_WIN3 | ce6358be75900a143f6639057c1d96b5e3f546b3 | d339cfab929534903abbdc6043ac0280ff68e558 | refs/heads/master | 2016-09-06T05:54:23.058832 | 2015-09-16T07:37:12 | 2015-09-16T07:37:12 | 42,571,722 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,335 | cpp | #ifdef __APPLE__
#import <OpenGLES/ES2/gl.h>
#import <OpenGLES/ES2/gl... | [
"marcclintdion@Marcs-iMac.local"
] | marcclintdion@Marcs-iMac.local |
b1938f62740a3f9a2853d1547de65b7300f4dc68 | f1ac5501fd36e4e420dfbc912890b4c848e4acc3 | /src/script/serverchecker.cpp | 9be7932a7dd5634e391cccadecd47644ba55270a | [] | no_license | whojan/KomodoOcean | 20ca84ea11ed791c407bed17b155134b640796e8 | f604a95d848222af07db0005c33dc4852b5203a3 | refs/heads/master | 2022-08-07T13:10:15.341628 | 2019-06-14T17:27:57 | 2019-06-14T17:27:57 | 274,690,003 | 1 | 0 | null | 2020-06-24T14:28:50 | 2020-06-24T14:28:49 | null | UTF-8 | C++ | false | false | 3,897 | cpp | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2014 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "serverchecker.h"
#include "script/cc.h"
#include "cc/eval.h"
#include ... | [
"ip_gpu@mail.ru"
] | ip_gpu@mail.ru |
10cbeb320b3df4a6572a5fa4430aab306363449a | c2fb6846d5b932928854cfd194d95c79c723f04c | /4rth_Sem_c++_backup/Amlyan/shit/arka.cpp | f24511a7e641de93ef0c21860f97c049ea65a80d | [
"MIT"
] | permissive | Jimut123/code-backup | ef90ccec9fb6483bb6dae0aa6a1f1cc2b8802d59 | 8d4c16b9e960d352a7775786ea60290b29b30143 | refs/heads/master | 2022-12-07T04:10:59.604922 | 2021-04-28T10:22:19 | 2021-04-28T10:22:19 | 156,666,404 | 9 | 5 | MIT | 2022-12-02T20:27:22 | 2018-11-08T07:22:48 | Jupyter Notebook | UTF-8 | C++ | false | false | 319 | cpp | #include<iostream>
#include<cmath>
using namespace std;
int main()
{
int i,size = 20,pow=1,j;
float sum = 0,den;
for(i=0;i<20;i++)
{
cout<<1<<"/"<<(i+1)<<"*"<<3<<"^"<<i<<" + ";
pow=1;
for(j=1;j<=i;j++)
pow=pow*3;
den = (i+1)*pow;
sum = sum + 1/den;
}
cout<<"Sum = "<<sum<<endl;
return 0;
}
| [
"jimutbahanpal@yahoo.com"
] | jimutbahanpal@yahoo.com |
237f461adbe2e62bd6bc2eb39a490f2d7f8e96c7 | 1bf1d70e40faa87d458942abf9fc7b0856476efc | /uri/2374.2.cpp | 3d06c7443f2b24e715f116c408007696897ba148 | [] | no_license | lilianefreitas/competitive-programming-questions | 418bfe9c60b30c1e21e5332862b45ff36b6f12aa | fe832f68b9cd89514a6b3888219db01cc8c93877 | refs/heads/master | 2023-03-29T21:48:37.156877 | 2021-03-28T07:38:45 | 2021-03-28T07:38:45 | 267,492,757 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 387 | cpp | #include <bits/stdc++.h>
using namespace std;
// N = pressão desejada pelo motorista
// M = pressão lida pela bomba
int N, M;
int main() {
// pegar as entradas
scanf("%d%d", &N, &M);
// diferença entre a pressao desejada e a lida
int diferenca = N - M;
// imprimindo a diferença
// colocar b... | [
"alunalilianefreitas@gmail.com"
] | alunalilianefreitas@gmail.com |
afa3ba926bc6a429b4d3d29dbc84898a68b18500 | 8f3ef878f138146a9df34440103d45607afeb48e | /Qt/Canvas/MainWindow.h | f19fa6f91c9a0665a5f9cca8a84124db1ae17b77 | [] | no_license | afester/CodeSamples | aa67a8d6f5c451dc92131a8722f301d026f5a894 | 10a2675f77e779d793d63e973672548aa263597b | refs/heads/main | 2023-01-05T06:45:52.130668 | 2022-12-23T21:36:36 | 2022-12-23T21:36:36 | 8,028,224 | 10 | 11 | null | 2022-10-02T18:53:29 | 2013-02-05T11:57:35 | Java | UTF-8 | C++ | false | false | 633 | h | /**
* This work is licensed under the Creative Commons Attribution 3.0 Unported
* License. To view a copy of this license, visit
* http://creativecommons.org/licenses/by/3.0/ or send a letter to Creative
* Commons, 444 Castro Street, Suite 900, Mountain View, California, 94041, USA.
*/
#include <QMainWindow>
... | [
"Andreas.Fester@gmx.de"
] | Andreas.Fester@gmx.de |
9fec39404899b69d0d269079355c32fd27ffdf6b | f3bdc5713fcbf31a5098e5c6bc7b536f63be1609 | /GameEngine/src/EventDispatcher.cpp | 2b63008d33ece7a180eeafe5f87e985f3f783aad | [] | no_license | leonardo98/GameEngine | 1cceaf0f6dc8bc66d9d1862f8523b8199ef54356 | 2f3c218437434c05afe9eaac0900c3ff46ff7055 | refs/heads/master | 2020-04-05T22:56:53.009769 | 2015-07-16T14:59:07 | 2015-07-16T14:59:07 | 33,198,384 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,319 | cpp | #include "EventDispatcher.h"
#include "Event.h"
namespace oxygine
{
EventDispatcher::EventDispatcher():_lastID(0), _listeners(0)
{
}
EventDispatcher::~EventDispatcher()
{
__doCheck();
delete _listeners;
}
int EventDispatcher::addEventListener(eventType et, EventCallback cb)
{
__doCheck();
if (!_list... | [
"am98pln@gmail.com"
] | am98pln@gmail.com |
9b9e1cd87852e72f62111137e22d054e1b1fddba | 45d87d819c13793102d01696dfde50619e14f243 | /src/visualization.h | 5488e4312da8d2cc5f32bfcc27f33f8169ab86a3 | [] | no_license | paraficial/perlin_noise_marching_cubes | aef77a75df024e6e0f28d09c52d63be1be6057dc | 33894becac715bb561afc18667d5bdbaaf30d47f | refs/heads/master | 2020-12-26T18:17:31.284278 | 2020-02-03T11:46:58 | 2020-02-03T11:46:58 | 237,593,565 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 446 | h | #ifndef VISUALIZATION_H
#define VISUALIZATION_H
#include <SDL2/SDL.h>
#include <glm/glm.hpp>
class Mesh;
class Shader;
class Visualization
{
public:
Visualization(int width, int height);
int init(int width, int height);
void loop(Mesh *mesh, Shader *shader, float angle);
private:
SDL_Window *window;
... | [
"gregor.wiese@gmx.de"
] | gregor.wiese@gmx.de |
670f419a089b0fc0015986991832c21ac74b99c9 | f180cdea1a82e9656c793a667081783029378b8e | /Derivator/sources/tree_dot_converter.cpp | 9367b89d5c18e6e9c81597050632eb853ae3a301 | [] | no_license | uberpup/industrial-programming-course | 21a09b600ac1c18c70c6669a2e615e103d48e171 | 50dec017ca2eb883e6af882c39dfe0418ea43ae4 | refs/heads/master | 2020-07-26T07:32:57.699106 | 2020-01-04T14:26:45 | 2020-01-04T14:26:45 | 208,578,669 | 0 | 0 | null | 2020-01-04T14:26:46 | 2019-09-15T10:41:06 | C++ | UTF-8 | C++ | false | false | 1,708 | cpp | #include "tree_dot_converter.h"
TreeDotConverter::TreeDotConverter(std::string filename) :
filename(std::move(filename)) {}
TreeDotConverter::~TreeDotConverter() {}
void TreeDotConverter::PrintTree(const Derivator& derivator) {
file = std::fopen(filename.c_str(), "w");
fprintf(file, "%s\n", "digraph ... | [
"tochilin.vn@phystech.edu"
] | tochilin.vn@phystech.edu |
9bf34289e7ab442b22cb72c6c1dac21db7cbcfc9 | 33d33eb0a459f8fd5f3fbd5f3e2ff95cbb804f64 | /40.combination-sum-ii.73403291.ac.cpp | 816fb5c08882b1450e8bafb4564b6f8412c7ab7e | [] | no_license | wszk1992/LeetCode-Survival-Notes | 7b4b7c9b1a5b7251b8053111510e2cefa06a0390 | 01f01330964f5c2269116038d0dde0370576f1e4 | refs/heads/master | 2021-01-01T17:59:32.945290 | 2017-09-15T17:57:40 | 2017-09-15T17:57:40 | 98,215,658 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 860 | cpp | class Solution {
public:
vector<vector<int>> combinationSum2(vector<int>& candidates, int target) {
vector<vector<int>> res;
vector<int> cmb;
sort(candidates.begin(), candidates.end());
combinationSumHelper(res, cmb, candidates, target, 0);
return res;
}
void com... | [
"wszk1992@gmail.com"
] | wszk1992@gmail.com |
37483ecc07f364f97236e6750815fa8e88668ace | 558b75f4715273ebb01e36e0b92446130c1a5c08 | /engine/src/qlcfixturedefcache.h | 316d75eeddec94822f159857ffb16069cb0f2af5 | [
"Apache-2.0",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | sbenejam/qlcplus | c5c83efe36830dcd75d41b3fba50944dc22019e1 | 2f2197ff086f2441d755c03f7d67c11f72ad21df | refs/heads/master | 2023-08-25T09:06:57.397956 | 2023-08-17T16:02:42 | 2023-08-17T16:02:42 | 502,436,497 | 0 | 0 | Apache-2.0 | 2022-06-11T19:17:52 | 2022-06-11T19:17:51 | null | UTF-8 | C++ | false | false | 5,715 | h | /*
Q Light Controller
qlcfixturedefcache.h
Copyright (c) Heikki Junnila
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 r... | [
"massimocallegari@yahoo.it"
] | massimocallegari@yahoo.it |
24bcf3591d31761d3deb26c0b8d3405372b36d91 | 5c41d1e2eb0f4a73c939b061657045363d4e667c | /src/graph/timing_internal_graph.cpp | 5b1326afcfec4c1f9f8c52ffe9ca20263a378369 | [] | no_license | me2x/iNARK | 93d2f2179466d6fd7c509e1789057fd39407db58 | f59dcfdedbe0306ebb814aaf6d26d3a6b0ec1096 | refs/heads/master | 2020-05-21T12:27:42.023362 | 2017-04-04T14:21:58 | 2017-04-04T14:21:58 | 47,130,570 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 31,971 | cpp | #include "timing_internal_graph.hpp"
#include "custom_visitors.hpp"
timing_internal_graph::timing_internal_graph()
{
ig = Timing_Graph();
}
void timing_internal_graph::build_graph(std::shared_ptr<Source_Graph> g){
std::cout<<"print called"<<std::endl;
PRINT_DEBUG("print called");
ig.clear();
std::p... | [
"vitali.ema@hotmail.it"
] | vitali.ema@hotmail.it |
f9529045320a5d906366cb6ba17268c783ec6a93 | 9007e49918e2b3f41188439d0c1c9ebfa5ab6f9d | /Cplusplus98/main.cc | f8898e11b24ea5fde9b971e911280f24d536bd64 | [] | no_license | lishaohsuai/threadpool | a60a30ada35628cfa741c77c583808b18f0d92ed | 6ab71cd1916bcf6c35b2b3157cf454a12f05f1e7 | refs/heads/main | 2023-03-13T00:35:05.433725 | 2021-02-25T11:37:48 | 2021-02-25T11:37:48 | 341,180,502 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,136 | cc | #include <iostream>
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <pthread.h>
#include <vector>
#include "threadPool.hh"
class MyTask: public zl::Task
{
public:
MyTask(){}
virtual int run() {
printf("thread[%lu] : %d\n", pthread_self(), *(int*)this->arg_);
... | [
"1049188593@qq.com"
] | 1049188593@qq.com |
276ed172ba95ca61cab0b2981ea9cd169e3e39f2 | 16137a5967061c2f1d7d1ac5465949d9a343c3dc | /cpp_code/meta/fib-slow.hpp | c41fa7fd7ff2e4c36579552b331d5c0dbcd304cf | [] | no_license | MIPT-ILab/cpp-lects-rus | 330f977b93f67771b118ad03ee7b38c3615deef3 | ba8412dbf4c8f3bee7c6344a89e0780ee1dd38f2 | refs/heads/master | 2022-07-28T07:36:59.831016 | 2022-07-20T08:34:26 | 2022-07-20T08:34:26 | 104,261,623 | 27 | 4 | null | 2021-02-04T21:39:23 | 2017-09-20T19:56:44 | TeX | UTF-8 | C++ | false | false | 460 | hpp | namespace Slower
{
template <unsigned TreePos, unsigned N>
struct FibSlower
{
enum
{
value = FibSlower<TreePos, N - 1>::value + FibSlower<TreePos + (1 << N), N - 2>::value
};
};
template <unsigned TreePos>
struct FibSlower<TreePos, 1>
{
enum
{
value = 1
};
};
template <unsigned Tr... | [
"konstantin.vladimirov@gmail.com"
] | konstantin.vladimirov@gmail.com |
727d9325b96507e69279b3f598819c892b4e50a1 | 831e7458aeae4c3bedd56ef49eb412915a83be8c | /utils/frisoutil.cpp | 6d07b31d6b072ab7c30617da816cfb88b64e9c9b | [] | no_license | frankiegu/WriterFly | 2510dea04fd3218854fa14fa76235b0ac1efdc36 | 6680b93eee34901dadbf4bd11a324909d14fd0f5 | refs/heads/master | 2020-04-29T07:14:37.060475 | 2019-03-13T07:55:08 | 2019-03-13T07:55:08 | 175,945,175 | 2 | 0 | null | 2019-03-16T08:17:59 | 2019-03-16T08:17:59 | null | UTF-8 | C++ | false | false | 1,683 | cpp | #include "frisoutil.h"
FrisoUtil::FrisoUtil()
{
inited = false;
initing = false;
valid = true;
}
FrisoUtil::~FrisoUtil()
{
Destructor();
}
QStringList FrisoUtil::WordSegment(QString _text)
{
Q_UNUSED(_text);
#if defined(Q_OS_WIN)
if (!valid)
return sList;
if (!inited)
{
... | [
"wxy19980615@gmail.com"
] | wxy19980615@gmail.com |
d8f5788723d71489a009b0c81715a4b6e690a2ce | f0cbd1891b71b73645e30a66eb3669512325ebd0 | /CarbonRender/Inc/CRGLHelper.h | bcd587b8682a54ce0302c7157f74e9b2a0a49641 | [
"MIT"
] | permissive | Hanggansta/CarbonRender | 0cba7b1abf0853069c117cd9124d9c831fe5d889 | f484dfbdf45403f0b548d51a4adbe72840aabdec | refs/heads/master | 2020-07-31T06:23:20.885346 | 2019-09-23T21:53:36 | 2019-09-23T21:53:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 585 | h | #ifndef CR_GLHELPER
#define CR_GLHELPER
#include "..\Inc\CRGloble.h"
class GLHelper
{
public:
static void SetGLArrayBuffer(GLuint bIndex, GLsizeiptr bSize, const GLvoid* bData, GLuint eSize, GLenum eType, GLuint aPos);
static GLuint SetGLRenderTexture(GLsizei w, GLsizei h, GLint internalFormat, GLenum format, GLenu... | [
"carbonsunsu@gmail.com"
] | carbonsunsu@gmail.com |
6b05cfeef0c81bc602cd9227b30c9ffc6498d62c | 82815230eeaf24d53f38f2a3f144dd8e8d4bc6b5 | /Laminar Pipe/laminarPipe3/system/blockMeshDict | 3491effb200ecd07d59f9db4f54f45ef738366ab | [
"MIT"
] | permissive | ishantja/KUHPC | 6355c61bf348974a7b81b4c6bf8ce56ac49ce111 | 74967d1b7e6c84fdadffafd1f7333bf533e7f387 | refs/heads/main | 2023-01-21T21:57:02.402186 | 2020-11-19T13:10:42 | 2020-11-19T13:10:42 | 312,429,902 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,740 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v1912 |
... | [
"ishantamrakat24@gmail.com"
] | ishantamrakat24@gmail.com | |
620ccb08c730b22e5d16a229cd44a2b9558f41a4 | 083ca3df7dba08779976d02d848315f85c45bf75 | /DungeonGame.cpp | 5bb3cd62583701edfed384c5947848a84e9253ee | [] | no_license | jiangshen95/UbuntuLeetCode | 6427ce4dc8d9f0f6e74475faced1bcaaa9fc9f94 | fa02b469344cf7c82510249fba9aa59ae0cb4cc0 | refs/heads/master | 2021-05-07T02:04:47.215580 | 2020-06-11T02:33:35 | 2020-06-11T02:33:35 | 110,397,909 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,304 | cpp | #include<iostream>
#include<vector>
using namespace std;
class Solution {
public:
int calculateMinimumHP(vector<vector<int> >& dungeon) {
int m = dungeon.size(), n = dungeon[0].size();
vector<vector<int> > dp(m, vector<int>(n));
dp[m-1][n-1] = max(1, 1 - dungeon[m-1][n-1]... | [
"jiangshen95@163.com"
] | jiangshen95@163.com |
678f8b1aa0dde8c824c72298218e5757d73b6334 | 8f58614751bd1eeace81c8b62ca51ea49c474645 | /uva/266/D.cpp | 640903cfa2cec8075d019f25af17776b6db060e2 | [] | no_license | iwiwi/programming-contests | 14d8a0c5739a4c31f1c3a4d90506e478fa4d08b5 | 8909560f9036de8f275f677dec615dc5fa993aff | refs/heads/master | 2021-01-25T04:08:39.627057 | 2015-05-10T13:28:20 | 2015-05-10T13:28:20 | 2,676,087 | 5 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 1,207 | cpp | #include <iostream>
#include <sstream>
#include <string>
#include <vector>
#include <stack>
#include <queue>
#include <set>
#include <map>
#include <algorithm>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cctype>
#include <cmath>
#include <cassert>
using namespace std;
#define all(c) (c).begin(), ... | [
"iw@iwi.tc"
] | iw@iwi.tc |
96f6217baf607bd5e28e25f0fb70b8a7ccd771a5 | 1130bcd2ab620dcc7c5ea81e6d275283fdfb9f88 | /channelinfo.cpp | 8faa4c83dfdacd089ca879afa2789351b9003b29 | [] | no_license | 372272083/mfds | c2245f98ee4d5e5ec89379e72e61826f00d3d334 | 659f01e9e206ff12c2aa327968d24ef717d2b65d | refs/heads/master | 2020-04-14T15:03:51.850005 | 2019-08-12T08:54:54 | 2019-08-12T08:54:54 | 143,227,303 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 75 | cpp | #include "channelinfo.h"
ChannelInfo::ChannelInfo() : TreeNodeInfo()
{
}
| [
"372272083@qq.com"
] | 372272083@qq.com |
52f55123b63e1c1d68a253a92e37cbca9eff51d3 | 4cdaf1bcf4ade491da75053d5240fc5b8c3c0566 | /TIDCore/TIDModel.cpp | f019ea714e92ab4fae017b53322e3a4f009cb179 | [] | no_license | presscad/Tid | 2deae59b344363e0ce132ae8d8c5a6d422eee489 | 528afa2fea893e3131fa8bb7673363fba5d6e67b | refs/heads/master | 2021-02-15T20:28:35.226199 | 2020-02-26T07:57:09 | 2020-02-26T07:57:09 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 81,676 | cpp | #include "StdAfx.h"
#include "tidmodel.h"
#include "SegI.h"
#include "list.h"
#include "ArrayList.h"
#include "LogFile.h"
#include "WirePlaceCode.h"
#if defined(_DEBUG)&&!defined(_DISABLE_DEBUG_NEW_)
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////... | [
"wxc_sxy@163.com"
] | wxc_sxy@163.com |
4ecd991fc4f3a7fa6a380ab861ee92ef6c21d754 | 737d18cdcc25bc1932d5888e5144c977af377eda | /Mouse Interfacing/src/mainwindow.cpp | 3c6df08e39958c5d399d56e7682268e82b455494 | [] | no_license | Kshitij09/Computer-Graphics | e2c94ee7d5dd15cf8b14a85a874b9c49155a6b07 | 736c8d1c41dc5c477c4e88c79428107c5e12b771 | refs/heads/master | 2020-03-09T02:48:00.749239 | 2018-04-09T22:00:20 | 2018-04-09T22:00:20 | 128,548,964 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,280 | cpp | #include "mainwindow.h"
#include "ui_mainwindow.h"
#include "clicklabel.h"
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
ui->label->setMouseTracking(true);
connect(ui->label,SIGNAL(mouse_pos()),this,SLOT(mouse_pos()));
connect(ui->lab... | [
"kshitijpatil98@gmail.com"
] | kshitijpatil98@gmail.com |
b06026c1c4399aeff61afe8e47faf58a27f385d2 | 5950c4973a1862d2b67e072deeea8f4188d23d97 | /Export/macos/obj/src/lime/_internal/format/Zlib.cpp | 21f17693b5e3be87344aae43fb108c7a8932d361 | [
"MIT"
] | permissive | TrilateralX/TrilateralLimeTriangle | b3cc0283cd3745b57ccc9131fcc9b81427414718 | 219d8e54fc3861dc1ffeb3da25da6eda349847c1 | refs/heads/master | 2022-10-26T11:51:28.578254 | 2020-06-16T12:32:35 | 2020-06-16T12:32:35 | 272,572,760 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | true | 3,762 | cpp | // Generated by Haxe 4.2.0-rc.1+cb30bd580
#include <hxcpp.h>
#ifndef INCLUDED_haxe_io_Bytes
#include <haxe/io/Bytes.h>
#endif
#ifndef INCLUDED_lime__internal_backend_native_NativeCFFI
#include <lime/_internal/backend/native/NativeCFFI.h>
#endif
#ifndef INCLUDED_lime__internal_format_Zlib
#include <lime/_internal/forma... | [
"none"
] | none |
eb481c4bc3c811826fe377121a4763d6f3c1bc8f | c5534a6df16a89e0ae8f53bcd49a6417e8d44409 | /trunk/Dependencies/Xerces/include/xercesc/internal/VecAttributesImpl.cpp | 421153a8851b0024e40bf368a251d425551fae51 | [] | no_license | svn2github/ngene | b2cddacf7ec035aa681d5b8989feab3383dac012 | 61850134a354816161859fe86c2907c8e73dc113 | refs/heads/master | 2023-09-03T12:34:18.944872 | 2011-07-27T19:26:04 | 2011-07-27T19:26:04 | 78,163,390 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,083 | cpp | /*
* Copyright 1999-2001,2004 The Apache Software 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
*
* Unle... | [
"Riddlemaster@fdc6060e-f348-4335-9a41-9933a8eecd57"
] | Riddlemaster@fdc6060e-f348-4335-9a41-9933a8eecd57 |
0ae73b4790010d8ad8ecd01d98650f3c1a960405 | 018c888d6a7d7916a7223a2982b574028e0fa88a | /src/test/rpc_tests.cpp | cdbd5847d9b50f2053086ede9222924a2a3bfd72 | [
"MIT"
] | permissive | Bigfootzz/NachoHash | c9f61590c5e30e044ee747700fde6b0084506323 | 9abed2654678a474c1067bbed2ec19abb16968ff | refs/heads/master | 2020-07-04T20:25:40.045003 | 2019-09-14T11:36:38 | 2019-09-14T11:36:38 | 202,404,765 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 12,950 | cpp | // Copyright (c) 2012-2013 The NachoHash Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "rpcserver.h"
#include "rpcclient.h"
#include "base58.h"
#include "netbase.h"
#include "util.h"
#include <bo... | [
"partridget9@gmail.com"
] | partridget9@gmail.com |
b0ed8a2cbed8c17ff2e7e7f5c2b83df2d7948b47 | cbca949c25ef12fb2f1134752d7f684251c00052 | /core/modules/cliff_settings.cpp | ca771b8ce01890b59d96f403381028471de5a6d3 | [
"MIT"
] | permissive | lebedyanka/rf | 7427dd5471e75951302e043a511eb40adafc2dd0 | aaedc7c8b7bdf6caf2732bf214db8936fa8dc018 | refs/heads/master | 2023-04-27T19:23:09.086283 | 2021-05-11T15:41:28 | 2021-05-11T15:41:28 | 366,419,878 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,140 | cpp | #include "cliff.h"
namespace prowogene {
namespace modules {
using std::string;
using utils::JsonObject;
static const string kEnabled = "enabled";
static const string kOctaves = "octaves";
static const string kLevels = "levels";
static const string kSeed = "seed";
static const string kGrain = "grain";
void Cl... | [
"lebedyanka97@gmail.com"
] | lebedyanka97@gmail.com |
3d268a7edf16a9fa16cd7adb6ea058d80afde752 | 94f31d216037a0ac16c4354d996149275d7d01d4 | /common/contrib/QSsh/inc/sshpacketparser_p.h | d7ed822ea183ce6fce928babd716a0ac514feec9 | [
"MIT"
] | permissive | cbtek/ClockNWork | 5fd62ab61e3b6565e9426ddc928a203384255a9a | 4b23043a8b535059990e4eedb2c0f3a4fb079415 | refs/heads/master | 2020-07-31T23:20:00.668554 | 2017-02-03T17:30:35 | 2017-02-03T17:30:35 | 73,588,090 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,050 | h | /**************************************************************************
**
** This file is part of Qt Creator
**
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
**
** Contact: http://www.qt-project.org/
**
**
** GNU Lesser General Public License Usage
**
** This file may be used under the terms... | [
"corey.berry@cbtek.net"
] | corey.berry@cbtek.net |
0501927f96666c4dae85cc7a079b7176aad2f81e | a0854ba75301d2ee083ddbde125bceb74774abb5 | /src/leveloso.cpp | cb5b3e70bb3ef3c71a429ffea34f336f05b3a69c | [] | no_license | angelmoro/laberinto | 04edddfeb97f1ca0dedb52d0a7e87c87521633e6 | ead523625be35a0c4479dd5a484a130c6acd677d | HEAD | 2016-08-12T04:58:01.843999 | 2016-04-09T12:33:20 | 2016-04-09T12:33:20 | 55,843,720 | 0 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 13,709 | cpp | /*
* leveloso.cpp
*
* Created on: 27/2/2016
* Author: Usuario
*/
#include <stdio.h>
#include <allegro5/allegro.h>
#include <allegro5/allegro_font.h>
#include <allegro5/allegro_ttf.h>
#include <allegro5/allegro_native_dialog.h>
#include <math.h>
#include "level.h"
#include "leveloso.h"
#includ... | [
"amoro1@telefonica.net"
] | amoro1@telefonica.net |
8f7fe346591e99e07b1521ac18f23a48fa07129d | 7a3fb6fafb5dff31d998d8db529361d462acca1d | /Games/Tactics/Code/Game/Rendering/Mesh.hpp | cfccf21c6c4101227c588da246b4ab422c9a96e2 | [] | no_license | jholan/Kaleidoscope | 643cc65bdcf43cfac292137f08ba5789396d51dc | 5aa3c91c75d73c8ed3718c031ae449b6199e1d44 | refs/heads/master | 2020-05-23T08:55:00.707693 | 2019-06-26T20:05:08 | 2019-06-26T20:05:08 | 186,697,847 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,701 | hpp | #pragma once
#include <vector>
#include <map>
#include "Engine/Strings/HashedString.hpp"
#include "Engine/XML/XMLUtils.hpp"
#include "Engine/Math/Primitives.hpp"
#include "Engine/Rendering/LowLevel/RenderingEnums.hpp"
class VertexBuffer;
class IndexBuffer;
class VertexLayout;
enum eResourceLoadState;
class Sub... | [
"jholan@smu.edu"
] | jholan@smu.edu |
7e2fd5fe7b4c53610b8cdcf9db027abce6755ccb | fac63a64d8c4e3c41c8eda6c651ae0da256c8dde | /Shadow/Shadow/main.cpp | 1251817df28f9952ac59a8dfea0fc2476a3bb760 | [] | no_license | SweeneyChoi/ShadowMapping | 129965677bffa9b67e66636c3c3f6ac642d59ce7 | 53367892b9b9cfdd84a243a5e6b5ab69dfa10f7c | refs/heads/master | 2021-04-06T12:29:44.060274 | 2018-03-10T10:30:46 | 2018-03-10T10:30:46 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,779 | cpp | #include <glad/glad.h>
#include <GLFW/glfw3.h>
#include "stb_image.h"
#include <glm/glm.hpp>
#include <glm/gtc/matrix_transform.hpp>
#include <glm/gtc/type_ptr.hpp>
#include "Shader.h"
#include "Camera.h"
#include "Model.h"
#include <iostream>
void framebuffer_size_callback(GLFWwindow* window, int width, int height... | [
"caitianxin001@163.com"
] | caitianxin001@163.com |
dd0db5f114f1c6942d2ac91d2e139d8db02c090a | d10e040d95efb72524fc2a093b3f514070ef54c5 | /Q1/main.cpp | c54996d88fd55de62fca425819cc94ae682ae85a | [] | no_license | lygiaagueda/Roteiro_4 | aa217e7e6154514c91a38307dc1745ed8d91960f | e7c906dac263047ca9d849ec2906683c4528ead3 | refs/heads/master | 2020-03-16T17:25:53.783881 | 2018-05-10T03:12:34 | 2018-05-10T03:12:34 | 132,831,946 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 514 | cpp | #include <iostream>
#include "restaurante_caseiro.h"
#include "mesa_de_restaurante.h"
#include "pedido.h"
using namespace std;
int main() {
Pedido pedido1 = Pedido(1, 1, 10.0, "PF com duas opcoes de carne");
Pedido pedido2 = Pedido(2, 2, 4.0, "Suco de laranja");
MesaDeRestaurante mesa = MesaDeRestaurant... | [
"luanmegax.ll@gmail.com"
] | luanmegax.ll@gmail.com |
f06c7946b8ece14ad3cd6a4226c2a1f669fc46cf | b136d3337b25b08bef4d60582e10fe14a24daa57 | /src/model/cpu/SignedMorsel.h | ef8169585aa7f8b0dc5ecee4ada7876c68a33ca6 | [] | no_license | jcantrell/cpusim | f5f61f52d5a35c9cd7f21a50c9986b854f280d84 | 619a3fe0f30c7eb8acc78b35bb47e50bd14b7fff | refs/heads/master | 2023-03-27T08:34:06.519382 | 2020-04-20T05:52:10 | 2020-04-20T05:52:10 | 351,300,683 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,581 | h | #ifndef SIGNEDMORSEL_H
#define SIGNEDMORSEL_H
#include <boost/dynamic_bitset.hpp>
#include <boost/functional/hash.hpp>
#include <iostream>
#include "UnsignedMorsel.h"
using namespace std;
using namespace boost;
class UnsignedMorsel;
class SignedMorsel
{
private:
UnsignedMorsel um;
friend class UnsignedMorsel... | [
"cantrel2@pdx.edu"
] | cantrel2@pdx.edu |
04e0f357c4185b13cab03f81baa283d46702ab88 | 347ec1a55e81d0c793554cb297d10a3d01184705 | /Mesh.cpp | 6f0a43bb99d78623d7bd4bcb201e5f8e4d67db6f | [] | no_license | hobgreenson/electrophysiology-stimulus | e36a303d0d03573f170f8ef629ee6258ed68b69c | 2fcae6c3fe0d93fa7a5a46d94d7a949235ede23e | refs/heads/master | 2020-05-27T09:38:36.259452 | 2015-08-21T15:09:50 | 2015-08-21T15:09:50 | 30,271,596 | 1 | 0 | null | 2015-08-21T15:09:50 | 2015-02-04T00:02:25 | C++ | UTF-8 | C++ | false | false | 11,653 | cpp | #include "Mesh.h"
Mesh::Mesh(const char* vs_path, const char* fs_path)
: vertex_shader_path_(vs_path),
fragment_shader_path_(fs_path) {
// set transform matrix to identity
GLfloat matrix[16] = {
1.0, 0.0, 0.0, 0.0,
0.0, 1.0, 0.0, 0.0,
0.0, 0.0, 1.0, 0.0,
0.0... | [
"m.hobson.green@gmail.com"
] | m.hobson.green@gmail.com |
0cba6e9e4e6cfacbc0be786a282f60caf1f9ba16 | 3b9b4049a8e7d38b49e07bb752780b2f1d792851 | /src/third_party/WebKit/Source/core/html/HTMLDetailsElement.cpp | bc329ff6f68854d3a218511215cc37f15f272061 | [
"LGPL-2.0-or-later",
"GPL-1.0-or-later",
"MIT",
"Apache-2.0",
"BSD-3-Clause",
"BSD-2-Clause",
"LGPL-2.1-only",
"LGPL-2.0-only",
"LicenseRef-scancode-warranty-disclaimer",
"GPL-2.0-only",
"LicenseRef-scancode-other-copyleft"
] | permissive | webosce/chromium53 | f8e745e91363586aee9620c609aacf15b3261540 | 9171447efcf0bb393d41d1dc877c7c13c46d8e38 | refs/heads/webosce | 2020-03-26T23:08:14.416858 | 2018-08-23T08:35:17 | 2018-09-20T14:25:18 | 145,513,343 | 0 | 2 | Apache-2.0 | 2019-08-21T22:44:55 | 2018-08-21T05:52:31 | null | UTF-8 | C++ | false | false | 6,014 | cpp | /*
* Copyright (C) 2010, 2011 Nokia Corporation and/or its subsidiary(-ies)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option)... | [
"changhyeok.bae@lge.com"
] | changhyeok.bae@lge.com |
26aae049b73a9398ee6645971023a5cbbf78528b | 51dc61072c6ba314932772b51b0c5457a9cd3983 | /c-c++/data-structures/heap-and-priority-queue/stl-priority-queue-based-minheap-user-defined-class.cpp | 8f0c2709b7abf69d18583e0c2f356927956875ba | [] | no_license | shiv4289/codes | 6bbadfcf1d1dcb1661f329d24a346dc956766a31 | 6d9e4bbbe37ebe2a92b58fa10e9c66b1ccff772d | refs/heads/master | 2021-01-20T14:31:38.981796 | 2017-07-07T13:43:10 | 2017-07-07T13:43:10 | 90,625,900 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,202 | cpp | /*
* stl-priority-queue-based-minheap-user-defined-class.cpp
*
* Created on: 09-May-2017
* Author: shivji
*
* Refrence: http://www.geeksforgeeks.org/implement-min-heap-using-stl/
*/
// C++ program to us priority_queue to implement Min Heap
// for user defined class
#include <bits/stdc++.h>
using namespac... | [
"shivji.jha@moveinsync.com"
] | shivji.jha@moveinsync.com |
047460e17b4befc25826ca22331853c9ae594c62 | e75cf3fc4e6569583270ac0f3626453c464fe020 | /Android/第三方完整APP源码/mogutt/TTWinClient/core/TTProtect/IniConfig.h | c8eea7408ae229140d613916f6b9e2ca4d6e36e7 | [] | no_license | hailongfeng/zhishiku | c87742e8819c1a234f68f3be48108b244e8a265f | b62bb845a88248855d118bc571634cc94f34efcb | refs/heads/master | 2022-12-26T00:00:48.455098 | 2020-02-26T09:22:05 | 2020-02-26T09:22:05 | 133,133,919 | 1 | 9 | null | 2022-12-16T00:35:57 | 2018-05-12T09:56:41 | Java | WINDOWS-1252 | C++ | false | false | 990 | h | /*******************************************************************************
* @file IniConfig.h 2014\9\1 13:15:52 $
* @author ¿ìµ¶<kuaidao@mogujie.com>
* @brief
******************************************************************************/
#ifndef INICONFIG_C0F81335_CB24_4C2D_BA6C_0E00FA00A17... | [
"no_1hailong@yeah.net"
] | no_1hailong@yeah.net |
c269b19eb7ea35fb7b6114a88f3d378120ceb580 | eb2f8b3271e8ef9c9b092fcaeff3ff8307f7af86 | /Grade 10-12/2018 autumn/NOIP/NOIP2018提高组Day1程序包/GD-Senior/answers/GD-0335/track/track.cpp | 6ebc82e694a8406e0f37db3014e485f6954a5c99 | [] | no_license | Orion545/OI-Record | 0071ecde8f766c6db1f67b9c2adf07d98fd4634f | fa7d3a36c4a184fde889123d0a66d896232ef14c | refs/heads/master | 2022-01-13T19:39:22.590840 | 2019-05-26T07:50:17 | 2019-05-26T07:50:17 | 188,645,194 | 4 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,612 | cpp | #include<cstdio>
#include<algorithm>
#include<cstring>
using namespace std;
#define MAXN 50010
struct ins
{
int x,y,z;
}in[MAXN];
inline int read()
{
int f=1,x=0;
char s=getchar();
while(s<'0'||s>'9'){if(s=='-')f=-1;s=getchar();}
while(s>='0'&&s<='9'){x=(x<<3)+(x<<1)+s-48;s=getchar();}
return f*x;
}
int tot=0,... | [
"orion545@qq.com"
] | orion545@qq.com |
c1e7472e39f0b344d4fca6bd44fc67f300b3280d | 9ebede2bbe515e7e0c5b24284ae91fd1ce759de4 | /labust_mission/include/labust_mission/serviceCall.hpp | f5f3ef3310f5af631fb81c8ac481270b1bfe3148 | [] | no_license | compiaffe/labust-ros-pkg | f0476f73c8a51d12d404a47c0703515eb0e75dfc | e4e5fc2093575932d6d86cb23ff652848171461c | refs/heads/master | 2021-01-18T16:52:18.457602 | 2014-08-26T16:27:58 | 2014-08-26T16:27:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,409 | hpp |
/*********************************************************************
* serviceCall.hpp
*
* Created on: Feb 26, 2014
* Author: Filip Mandic
*
********************************************************************/
/*********************************************************************
* Software License Agr... | [
"filip.mandic@gmail.com"
] | filip.mandic@gmail.com |
1f7da9e32817525f871d2f1ac1c55b3602f7b883 | 945e7bf2e9aef413082e32616b0db1d77f5e4c7e | /SceneModeller/SceneModeller/formats/vrml/GroupingNode.h | 0627376c40a805d0ac447c5ac3997ba7c50bd850 | [] | no_license | basarugur/bu-medialab | 90495e391eda11cdaddfedac241c76f4c8ff243d | 45eb9aebb375427f8e247878bc602eaa5aab8e87 | refs/heads/master | 2020-04-18T21:01:41.722022 | 2015-03-15T16:49:29 | 2015-03-15T16:49:29 | 32,266,742 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,617 | h | /******************************************************************
*
* CyberVRML97 for C++
*
* Copyright (C) Satoshi Konno 1996-2002
*
* File: GroupingNode.h
*
******************************************************************/
#ifndef _CV97_GROUPINGNODE_H_
#define _CV97_GROUPINGNODE_H_
#include "Node.h"
#include "B... | [
"esangin@19b6b63a-0a50-11de-97d8-e990b0f60ea0"
] | esangin@19b6b63a-0a50-11de-97d8-e990b0f60ea0 |
fc45f9a7997b282affb60cabbe2db699dab43734 | cccfb7be281ca89f8682c144eac0d5d5559b2deb | /components/services/app_service/public/cpp/icon_types.h | 5ec1b5296b018680715f38f79c470596fa6db543 | [
"BSD-3-Clause"
] | permissive | SREERAGI18/chromium | 172b23d07568a4e3873983bf49b37adc92453dd0 | fd8a8914ca0183f0add65ae55f04e287543c7d4a | refs/heads/master | 2023-08-27T17:45:48.928019 | 2021-11-11T22:24:28 | 2021-11-11T22:24:28 | 428,659,250 | 1 | 0 | BSD-3-Clause | 2021-11-16T13:08:14 | 2021-11-16T13:08:14 | null | UTF-8 | C++ | false | false | 4,867 | h | // Copyright 2021 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_SERVICES_APP_SERVICE_PUBLIC_CPP_ICON_TYPES_H_
#define COMPONENTS_SERVICES_APP_SERVICE_PUBLIC_CPP_ICON_TYPES_H_
#include <vector>
#inc... | [
"chromium-scoped@luci-project-accounts.iam.gserviceaccount.com"
] | chromium-scoped@luci-project-accounts.iam.gserviceaccount.com |
56ce558f78e29b6242bc5666a76ea09b7e40082c | 0f950f0466a6322842c85b51b8095f874417f718 | /include/EventAction.hh | e95ba24304bab58831f7ea53a9ec337ccbf5f9a3 | [] | no_license | mjkramer/WindowSim | 4e01b225b1ab622296e8273f6818b6ca0a99fa16 | 33b1abec6eb497bae0924d2d3ba8b4ed94475039 | refs/heads/master | 2020-04-02T01:07:56.363498 | 2016-01-25T23:24:11 | 2016-01-25T23:24:11 | 31,445,746 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,188 | hh | #ifndef EventAction_h
#define EventAction_h 1
#include <map>
#include <TFile.h>
#include <TTree.h>
#include <TH1F.h>
#include "G4UserEventAction.hh"
#include "G4UIcmdWithAString.hh"
#include "G4UImessenger.hh"
const int BUFSIZE = 1024;
class G4Track;
class EventAction : public G4UserEventAction, public G4UImessen... | [
"mkramer@lbl.gov"
] | mkramer@lbl.gov |
e238968aedcc1f976f612d31104bfb774736a75e | dd0126aadfd73fb0e190dfea24758da558730bbb | /ep3/include/FindCommand.hpp | 2f716bfdfd1406d4f4131504b76c1e6476d3b11f | [] | no_license | Mlordx/sistemasoperacionais | edddab4c45c94e5d7e02d2c63de9309c31c05c2a | 373b4d2eb8c3467454ae5b8c9032587e06de55e3 | refs/heads/master | 2021-01-21T22:26:35.139576 | 2015-11-22T01:54:14 | 2015-11-22T01:54:14 | 41,759,350 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 414 | hpp | #ifndef HPP_FINDCOMMAND_DEFINED
#define HPP_FINDCOMMAND_DEFINED
// Standard Libraries
#include <string>
#include <vector>
// EP3 Classes
#include "Command.hpp"
#include "FileEntry.hpp"
#include "FileSystem.hpp"
class FindCommand : public Command{
private:
std::shared_ptr<FileSystem> fileSystem_;
public:
FindComm... | [
"matbarrosrodrigues@gmail.com"
] | matbarrosrodrigues@gmail.com |
831960fe6ccf4891e3b302ebd91c4e7ba6b21f1d | a26d25c930aff826c25a79f9290748c24a0f43f8 | /src/code-events.h | 437b12c85ac6f438c8f60d31d6d5fd61a0987934 | [
"BSD-3-Clause",
"SunPro",
"bzip2-1.0.6"
] | permissive | saigowthamr/v8 | ce0cd017bc1015228def3289ab2b9d282653fdd9 | a0406ca909fc6848b722bfd543c5d723d55bb88f | refs/heads/master | 2021-09-08T14:07:57.610578 | 2018-03-09T21:49:26 | 2018-03-09T21:49:41 | 124,609,596 | 6 | 0 | null | 2018-03-10T01:03:14 | 2018-03-10T01:03:14 | null | UTF-8 | C++ | false | false | 7,053 | h | // Copyright 2016 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef V8_CODE_EVENTS_H_
#define V8_CODE_EVENTS_H_
#include <unordered_set>
#include "src/base/platform/mutex.h"
#include "src/globals.h"
#include "s... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
e391dffcabb4b370185bc9bd8b1740e4139c02e0 | 30a9b10558e71bf05128c2aff3eee23298ebcbe4 | /external/asio/include/asio/detail/reactive_socket_connect_op.hpp | 7aa54ca6afd726b2c09752cae0ea351c939ae4a6 | [
"BSL-1.0"
] | permissive | obergner/wally-io | e404718ddc585cedfd31cbcf720f143280d0b798 | ece72f22f24c7b91dc6338be18c1cf8c766a7acc | refs/heads/master | 2020-04-12T06:41:17.001595 | 2020-02-02T17:21:02 | 2020-02-02T17:21:02 | 37,421,244 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,888 | hpp | //
// detail/reactive_socket_connect_op.hpp
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//
// Copyright (c) 2003-2016 Christopher M. Kohlhoff (chris at kohlhoff dot com)
//
// 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.tx... | [
"olaf.bergner@gmx.de"
] | olaf.bergner@gmx.de |
299b06c12a8f6d58749b805331ed9f5bb75b1c25 | b6f5f44124554a4b57c6d3c051cf596141ee1e57 | /examples/TEST/SI4844_BASS_TREBLE/SI4844_BASS_TREBLE.ino | 34ca0a5f45520c1c4ace930f8ae3d47cf9ef574f | [
"MIT"
] | permissive | pu2clr/SI4844 | 1fa44c4a6c85f702860892d5b91f5c9101da1f5e | 0860ae0159a1a74983ddc7ae5f479ec91862af58 | refs/heads/master | 2023-08-08T15:03:54.546850 | 2023-08-04T01:22:29 | 2023-08-04T01:22:29 | 213,923,162 | 25 | 7 | null | null | null | null | UTF-8 | C++ | false | false | 2,959 | ino | /*
* SI4844 radio. Bass, treble and volume test.
*
* SI4844 and Arduino Pro Mini connections
*
* | SI4844 pin | Arduino pin | Description |
* | --------- | ------------ | ------------------------------------------------- |
* | 2 | 2 | Arduino... | [
"ricardo.caratti@adm.cogect"
] | ricardo.caratti@adm.cogect |
37b8c8c1ef5cbe2cefc49fa90d743a72dfa37827 | f926639250ab2f47d1b35b012c143f1127cc4965 | /legacy/platform/mt6755/v3/hwnode/test/RAW16Node/main.cpp | 13b9361d535bf0d00edd7424e16027d8d304d212 | [] | no_license | cllanjim/stereoCam | 4c5b8f18808c96581ccd14be2593d41de9e0cf35 | e2df856ed1a2c45f6ab8dd52b67d7eae824174cf | refs/heads/master | 2020-03-17T11:26:49.570352 | 2017-03-14T08:48:08 | 2017-03-14T08:48:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 23,538 | cpp | /* Copyright Statement:
*
* This software/firmware and related documentation ("MediaTek Software") are
* protected under relevant copyright laws. The information contained herein is
* confidential and proprietary to MediaTek Inc. and/or its licensors. Without
* the prior written permission of MediaTek inc. and/or ... | [
"Bret_liu@tw.shuttle.com"
] | Bret_liu@tw.shuttle.com |
5195560dca1af243d6b19d2a778eab0fffc92639 | dd949f215d968f2ee69bf85571fd63e4f085a869 | /tools/math/branches/dora-yr4-20120620/src/c++/math/Vector2.h | 16fc257370d0398b0fbc69a302c2616d01b0975a | [] | no_license | marc-hanheide/cogx | a3fd395805f1b0ad7d713a05b9256312757b37a9 | cb9a9c9cdfeba02afac6a83d03b7c6bb778edb95 | refs/heads/master | 2022-03-16T23:36:21.951317 | 2013-12-10T23:49:07 | 2013-12-10T23:49:07 | 219,460,352 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 14,359 | h | /**
* Yet another set of 2D vector utilities.
*
* Based on code by Marek Kopicky.
*
* A lot of set/get functions are provided to allow You to interface the Vector2
* class to representations or linear algebra packages You are already using.
*
* @author Michael Zillich
* @date February 2009
*/
#ifndef VECTOR... | [
"krsj@9dca7cc1-ec4f-0410-aedc-c33437d64837"
] | krsj@9dca7cc1-ec4f-0410-aedc-c33437d64837 |
8a135348bda85a158d5ce7376dee829dc16df3fa | be11a31bdca043685f330b9662a49b04fe9f6caf | /Include/AGRLoader.h | 45cf9a38b2d743ded96d47dbfd7d70e3b9028bda | [
"MIT"
] | permissive | mBr001/Cinema-4D-Source-Tools | e5413b9aafae2a6743b5b18d0d34f1a018567588 | 130472179849d935a510bff670662d6eb62dc514 | refs/heads/master | 2020-07-05T13:18:20.862633 | 2018-07-15T06:47:01 | 2018-07-15T06:47:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,009 | h | // Copyright (c) 2018 Brett Anthony. All rights reserved.
//
// This work is licensed under the terms of the MIT license.
// For a copy, see <https://opensource.org/licenses/MIT>.
#ifndef ST_AGR_LOADER_H
#define ST_AGR_LOADER_H
#include "c4d.h"
#include "c4d_symbols.h"
#include "c4d_quaternion.h"
#include "fagrloader... | [
"nwpbusiness@gmail.com"
] | nwpbusiness@gmail.com |
6f0fafd05640118397592bc54e959a1ac96cc528 | 0c930838cc851594c9eceab6d3bafe2ceb62500d | /include/boost/numeric/bindings/traits/ublas_hermitian.hpp | 032e7a2321e1f0e0b93ab1c4b91c38b104d80d10 | [
"BSD-3-Clause"
] | permissive | quantmind/jflib | 377a394c17733be9294bbf7056dd8082675cc111 | cc240d2982f1f1e7e9a8629a5db3be434d0f207d | refs/heads/master | 2021-01-19T07:42:43.692197 | 2010-04-19T22:04:51 | 2010-04-19T22:04:51 | 439,289 | 4 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 4,680 | hpp | /*
*
* Copyright (c) 2002, 2003 Kresimir Fresl, Toon Knapen and Karl Meerbergen
*
* 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)
*
* KF acknowledges the support of the Faculty of Civil Engineering,
* Uni... | [
"info@quantmind.com"
] | info@quantmind.com |
1bb2d02f73bd6525d52bf9cd17083ad043ed3eeb | 39c56def456a50abedd7368d13a9de880955bfa1 | /Boletin2N/Ejercicio19/main.cpp | df9e95ccf03ea86c35fdc73e1da6d097d89a94d7 | [] | no_license | Axyz1398/Boletines | 10ef4bef02e16f542c9c5d8fe0ec1d546adf1ec1 | 9c76aa3f4e64d773889cd659a02510a8bebeb605 | refs/heads/master | 2020-12-09T07:26:18.623000 | 2020-01-11T13:26:43 | 2020-01-11T13:26:43 | 233,236,366 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 581 | cpp | #include "cabecera.h"
#include <iostream>
using namespace std;
int main()
{
int num;
int div;
cout << "Introduzca el dividendo: ";
cin >> num;
cout << "Introduzca el divisor: ";
cin >> div;
cout << "---------NO FINAL----------"<<endl;
muestra(funcionNF(num,div));
cout << "****************************"<<end... | [
"axyz1398@gmail.com"
] | axyz1398@gmail.com |
53e04d2cb76ce6493fd4008066806e7913d80e5b | f50da5dfb1d27cf737825705ce5e286bde578820 | /Temp/il2cppOutput/il2cppOutput/mscorlib_System_Nullable_1_gen2303330647.h | 33dde5c4a7c6c83abf372743a357ea37cb4c43e7 | [] | no_license | magonicolas/OXpecker | 03f0ea81d0dedd030d892bfa2afa4e787e855f70 | f08475118dc8f29fc9c89aafea5628ab20c173f7 | refs/heads/master | 2020-07-05T11:07:21.694986 | 2016-09-12T16:20:33 | 2016-09-12T16:20:33 | 67,150,904 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,422 | h | #pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
#include "mscorlib_System_ValueType4014882752.h"
#include "mscorlib_System_DateTimeOffset3712260035.h"
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignore... | [
"magonicolas@gmail.com"
] | magonicolas@gmail.com |
3823dc465196493bc1313f97a5040440f620e3ba | 6253ab92ce2e85b4db9393aa630bde24655bd9b4 | /Common/Ibeo/IbeoTahoeCalibration.h | e58f3b0ab7b8d6fe16ec041401df1c40bacbd649 | [] | no_license | Aand1/cornell-urban-challenge | 94fd4df18fd4b6cc6e12d30ed8eed280826d4aed | 779daae8703fe68e7c6256932883de32a309a119 | refs/heads/master | 2021-01-18T11:57:48.267384 | 2008-10-01T06:43:18 | 2008-10-01T06:43:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,468 | h | #ifndef IBEO_TAHOE_CALIBRATION_H_SEPT_28_2007_SVL5
#define IBEO_TAHOE_CALIBRATION_H_SEPT_28_2007_SVL5
#include "../Math/Angle.h"
#include "../Fusion/Sensor.h"
#define __IBEO_SENSOR_CALIBRATION_CHEAT\
inline Sensor SensorCalibration(){\
Sensor ret;\
ret.SensorX = x;\
ret.SensorY = y;\
... | [
"anathan@5031bdca-8e6f-11dd-8a4e-8714b3728bc5"
] | anathan@5031bdca-8e6f-11dd-8a4e-8714b3728bc5 |
5b16a48522c9726ba1b3d41695f0311fd0f46f77 | 0f1ecb7f55872201aa12ae370482f2f37a8b1c32 | /1207_Unique_Number_of_Occurrences.cpp | 79497753eeff5aff8d53704ace98ef8f50136cb3 | [] | no_license | ketkimnaik/Algorithms | ed0c38d3f966be31e9f77f46a9c79adc2d635e73 | 178421c5bab10f18ddd11f865e3eba7b9645ddff | refs/heads/master | 2020-08-22T19:26:30.216871 | 2020-07-29T06:53:47 | 2020-07-29T06:53:47 | 216,464,387 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 410 | cpp | class Solution {
public:
bool uniqueOccurrences(vector<int>& arr) {
unordered_map<int, int> m;
unordered_map<int,int> mp;
for(auto &i : arr)
m[i]++;
for(auto it = m.begin(); it != m.end(); ++it) {
mp[it->second]++;
if(mp[it->secon... | [
"ketkimnaik@gmail.com"
] | ketkimnaik@gmail.com |
5aec8e06f61e6fa51b07857b28df02ab3001e38c | 12a149c91541243f7e0f9b9e834e7cea3be83ab9 | /chrome/browser/apps/app_service/app_platform_metrics.cc | 8ddbb9a8dc30573a06095ad2bd9e6834d3a8b39b | [
"BSD-3-Clause"
] | permissive | liutao5/chromium | 6840deed48ae77e961cbf7969519d6adcfecab31 | b4da5b0d03ed5f5f1961caca5e3b1e68889cdfcc | refs/heads/main | 2023-06-28T18:05:01.192638 | 2021-09-03T07:28:50 | 2021-09-03T07:28:50 | 402,694,820 | 1 | 0 | BSD-3-Clause | 2021-09-03T08:08:55 | 2021-09-03T08:08:54 | null | UTF-8 | C++ | false | false | 46,245 | cc | // Copyright 2021 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/apps/app_service/app_platform_metrics.h"
#include <set>
#include "base/containers/contains.h"
#include "base/json/values_util.h... | [
"chromium-scoped@luci-project-accounts.iam.gserviceaccount.com"
] | chromium-scoped@luci-project-accounts.iam.gserviceaccount.com |
8b9910e4abc5e4bc681d1fce2cbc72c88d646943 | 1edaa128b372b5894261de722f5161281c9f747c | /GLEANKernel/GLEANLib/Utility Classes/Numeric_utilities.h | d5015ff5d37bdfe9f078f92bf289991c75b32d6f | [
"MIT"
] | permissive | dekieras/GLEANKernel | 204878e82606871164f03dae91bb760cb2e3ad59 | fac01f025b65273be96c5ea677c0ce192c570799 | refs/heads/master | 2021-01-17T08:45:05.673100 | 2016-06-27T20:41:15 | 2016-06-27T20:41:15 | 62,086,577 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,323 | h | #ifndef NUMERIC_UTILITIES_H
#define NUMERIC_UTILITIES_H
#include <string>
// rounds x to an integer value returned in a double
double round_to_integer(double x);
// writes an integer value to a string
std::string int_to_string(int i);
// convert hours, minutes, and seconds to milliseconds (note long integer returne... | [
"kieras@umich.edu"
] | kieras@umich.edu |
80d6e6e0db9185f9e1587ff7a70fedfee45397e2 | 53cab9b585bcf81ba350e0148e268df077385fea | /UnitTestApp1/UnitTestApp1/util/Rotation2D.cpp | 59b19f3784801f9d1f03b31d2ed48d0a751e854e | [] | no_license | Frc2481/frc-2017 | 99653ec3d260b7533887640f02609f456e3bea0d | 8e37880f7c25d1a56e2c7d30e8b8a5b3a0ea3aad | refs/heads/master | 2021-03-19T08:58:57.360987 | 2017-07-21T23:45:25 | 2017-07-21T23:45:25 | 79,522,810 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,073 | cpp | #include <pch.h>
#include <cmath>
#include <limits>
#include "Rotation2D.h"
Rotation2D::Rotation2D()
{
Rotation2D(0, 1, false);
}
Rotation2D::Rotation2D(double x, double y, bool normalized)
: m_cos(x), m_sin(y) {
if (normalized) {
normalize();
}
}
Rotation2D::Rotation2D(const Rotation2D &other)
: m_cos(other.... | [
"kyle@team2481.com"
] | kyle@team2481.com |
36b2f5009809e7fc22dea64309a3df8b77ed18d5 | ad0bf144e8a6f9731a090e54b6b1e23d375cc1a0 | /16.cpp | 3fc7fb16e8e18cd5ad3e336d269eaa724c9d60f6 | [] | no_license | nflath/advent2017 | 060d6d52c36cf819dbc032172cdbd880dca8837f | 29043bdedd5c8564f21e1db0907be83e879623ea | refs/heads/master | 2021-09-01T15:04:42.911210 | 2017-12-27T15:55:49 | 2017-12-27T15:55:49 | 115,536,252 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,106 | cpp | #include <vector>
#include <map>
#include <iostream>
#include <fstream>
#include <set>
class List {
public:
List* next;
char name;
List(char name): name(name) {}
};
class Operation {
public:
char op;
int arg1;
int arg2;
Operation(char op, int arg1, int arg2):op(op),arg1(arg1),arg2(arg2) {}
};
int main(... | [
"nflath@Nathaniels-MacBook-Pro.local"
] | nflath@Nathaniels-MacBook-Pro.local |
1ef4019f8bc28244c01594b48e8578062d187377 | a0a6463c41494d16c93b17ad234cf4618154f13c | /src/protocols/ppp/CAuthen.h | a277512695b641c4db8f1bd6610f6c1bcf3ee177 | [
"BSD-3-Clause"
] | permissive | acoderhz/openbras-1 | 2f1f6d95302b9a489b846404f17e800a4e4042ef | cb227f48c5839ec95296c532b177a6639bfbd657 | refs/heads/master | 2021-09-13T06:48:41.247341 | 2018-04-26T05:12:16 | 2018-04-26T05:12:16 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 2,087 | h | /***********************************************************************
Copyright (c) 2017, The OpenBRAS project 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 sou... | [
"contact@wfnex.com"
] | contact@wfnex.com |
7abda08bac1b1175e6ffe513754e0adec539f346 | e8fff28763ecfa1df2f726ec44e9b90ad5482527 | /DeeBook/IEDumper.h | b3c97f43b7c7350f8b7017b39df12cb2407d7bfb | [
"WTFPL"
] | permissive | cdfmr/deebook | 285657851f9551f40bf309199b0be151c6faa830 | a351e6719d0f85e33b390115a30cff827efb5f20 | refs/heads/master | 2020-04-22T13:01:07.421813 | 2014-09-06T06:51:39 | 2014-09-06T06:51:39 | 23,728,499 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 6,113 | h | // IEDumper.h: interface for the CIEDumper class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_IEDUMPER_H__ECB86F48_5092_47E8_82E9_FDD9E3992ABC__INCLUDED_)
#define AFX_IEDUMPER_H__ECB86F48_5092_47E8_82E9_FDD9E3992ABC__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#e... | [
"im.linfan@gmail.com"
] | im.linfan@gmail.com |
6c117243c008efcf50ac7d9457f1a5fd2d00c783 | d1a7ec8df100d717f196bead369e8f72713476ff | /reserva/Reserva.cpp | ec5c495a15cfc0ed535a004ac9c5731a31c6b931 | [] | no_license | rosalia00/deustoparking | 7ff1964035e13fa493a914442951e030754f21b3 | 4e31a12737ec504906f9ce72dfabd672d223be15 | refs/heads/main | 2023-05-12T19:07:46.415955 | 2021-06-05T16:36:17 | 2021-06-05T16:36:17 | 352,308,789 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,975 | cpp | #include <iostream>
#include "Reserva.h"
using namespace std;
Reserva::Reserva() {
this->nombre = '\0';
this->apellido = '\0';
this->bono = 0;
this->datafin = '\0';
this->datainicio = '\0';
this->dni = '\0';
this->horainicio = 0;
this->horafinal = 0;
this->matricula = '\0';
this->plaza = '\0';
... | [
"tylerdemier@opendeusto.es"
] | tylerdemier@opendeusto.es |
8a12b7086ad98edbb2a9e6f40c5309e63b3eae2e | 3debbd631621eb898f8efa5d87b765adb927d5c2 | /math_vector.h | 2d7a2affa93a78e11e81c2e72d2429259bac2225 | [] | no_license | trololohunter/advanced | e4783287ed7b67418a956780ca51b84ecaa4071f | 640803ab39b4e86c2fadf397bfdd49b3b6dbfb0c | refs/heads/master | 2020-04-02T15:00:21.506574 | 2018-11-22T18:05:49 | 2018-11-22T18:05:49 | 154,547,878 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 545 | h | //
// Created by vover on 10/24/18.
//
#ifndef ADVANCED_MATH_VECTOR_H
#define ADVANCED_MATH_VECTOR_H
#include <vector>
#include <cstdint>
#include <tgmath.h>
double norm (const std::vector<double> &v);
double scalar_product (const std::vector<double> &v1, const std::vector<double> &v2);
std::vector<double> Projectio... | [
"vovik_n@mail.ru"
] | vovik_n@mail.ru |
dc7db6a79dd53e10ef65be58d257a52c2779c1d4 | 8cfda3fdba467cb5220e7858de29dbdb307c770b | /tale/ReturnExpr.h | 230d54e7e34ff879a5606d054f886bf5b03a56f0 | [] | no_license | HanzhouTang/Tale | 9a4e29edc629784ac57c7a25b982376a78ecb646 | a6bbb224cea29899390869973f12f7835122a5d3 | refs/heads/master | 2021-07-06T15:32:55.601463 | 2019-04-03T04:45:58 | 2019-04-03T04:45:58 | 143,662,758 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 973 | h | #pragma once
#include"Expr.h"
namespace expr {
struct ReturnExpr :Expr {
std::shared_ptr<Expr> content;
ReturnExpr(const std::shared_ptr<Expr>& runtime, const std::shared_ptr<Expr>& c) :
Expr(runtime), content(c) {
setType(TYPE_RETURN);
}
std::shared_ptr<Expr> getContent() { return content; }
static s... | [
"hanzhoutang@gmail.com"
] | hanzhoutang@gmail.com |
c0e7edfde051e5f8086295910b5afddd3cd8088e | 0aa273d9ede80dac001657e78e6c1dc87b4f1572 | /pa2/test_BST (2).cpp | 91be7d02effa57cebc262d61bcf2df38f7c0ce62 | [] | no_license | adj006/CSE_100 | 0f9c60c771b26a6499876cd2e274ddf2db7d03bf | 1ce8b6b2bdd7ea74707e66a99d6ab9cdd3aa8ca6 | refs/heads/master | 2020-09-14T06:16:38.292723 | 2019-11-20T23:33:30 | 2019-11-20T23:33:30 | 223,046,357 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,122 | cpp | #include "BST.hpp"
#include <iostream>
#include <algorithm>
#include <vector>
using std::cout;
using std::endl;
using std::vector;
/**
* A simple test driver for the BST class template.
* P1 CSE 100 2012
* Author: P. Kube (c) 2012
*/
int main() {
/* Create an STL vector of some ints */
vecto... | [
"ajim1989@gmail.com"
] | ajim1989@gmail.com |
f72097065154a1040305de5bb7345b1c827d1f98 | 316b8ce861009661c2d00233c701da70b14bfc27 | /backend/src/common_bk/message_store/message_store.h | b9f364e381a57f9ca2c0a09a85ed616e4235c222 | [] | no_license | oxfordyang2016/profitcode | eb2b35bf47469410ddef22647789071b40618617 | c587ad5093ed78699e5ba96fb85eb4023267c895 | refs/heads/master | 2020-03-23T14:37:33.288869 | 2018-07-20T08:53:44 | 2018-07-20T08:53:44 | 141,688,355 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 611 | h | #ifndef SRC_COMMON_MESSAGE_STORE_MESSAGE_STORE_H_
#define SRC_COMMON_MESSAGE_STORE_MESSAGE_STORE_H_
#include <vector>
#include "common/message_store/order_blob.h"
#include "zshared/lock.h"
class MessageStore {
public:
explicit MessageStore(int store_size = 500);
void Store(int msg_seq_num,
OrderSi... | [
"rcy-fudan@ioeb-FUDANdeMacBook-Pro.local"
] | rcy-fudan@ioeb-FUDANdeMacBook-Pro.local |
1746f96cadacc611ce1261b7b65387ff3e7120f1 | ca02d8a19bc0c06b2ee58d01d520f86ff7ae8279 | /midterm/midterm/Strategy.h | 0f9cbb1e79093d8bbe854c2be474906d4bab8879 | [] | no_license | K39101348/computational | 2a5db26f8bbf1d436c0dc03e9f4f2966f1d6ba6c | 5fc8e155a747247049fdfe786aa7630c9b937bec | refs/heads/master | 2023-02-04T23:21:31.510921 | 2020-12-27T07:16:19 | 2020-12-27T07:16:19 | 324,707,696 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,037 | h | #ifndef Strategy_h
#define Strategy_h
#include <vector>
#include <map>
#include <string>
#include <iostream>
#include<cmath>
/// Add Code Here -->
/// <-- Add Code Here
using namespace std;
/// user to item tabel RecomdList At most K Proposed Items user size i... | [
"K39101348@gmail.com"
] | K39101348@gmail.com |
2451b77db070a35a7ddd92cf242502cc9ba3e902 | 6dfdbefc50f6dc4aa84e01ac2aabf0df5d07ca39 | /mudclient/src/propertiesPages/propertiesPageHotkeys.h | 2ad1d9423e90d6f4c7709c2bda523b26b087b24b | [] | no_license | kvirund/tortilla | 04a6f8c1802294f09db79c5b61e675c8da54d8b9 | 338f2cf575a8b90057d291ba79a164ade749a635 | refs/heads/master | 2020-04-08T03:48:49.591154 | 2018-11-30T02:34:48 | 2018-11-30T02:34:48 | 158,787,484 | 0 | 0 | null | 2018-11-23T06:01:59 | 2018-11-23T06:01:58 | null | WINDOWS-1251 | C++ | false | false | 19,299 | h | #pragma once
#include "hotkeyTable.h"
#include "propertiesSaveHelper.h"
class HotkeyBox : public CWindowImpl<HotkeyBox, CEdit>
{
HotkeyTable m_table;
BEGIN_MSG_MAP(HotkeyBox)
MESSAGE_HANDLER(WM_KEYUP, OnKeyUp)
MESSAGE_HANDLER(WM_SYSKEYUP, OnKeyUp)
MESSAGE_HANDLER(WM_KEYDOWN, OnBlock)
... | [
"gm79@list.ru"
] | gm79@list.ru |
99cf9edd1af81c0ea4048ffdbb9c34817f8acb62 | 87e646034192ec657eead214c2592ac489cc2893 | /chapter4/DepthFirstPaths.hpp | 65182634d68047d9196b060b9b29e0d8c40a3b7e | [] | no_license | LurenAA/Algorithms | 4fcfe5cd99d6f5bc01d86648d2fa8abf919a1c52 | 5750022e75f96cabfdca8518fc9fc22380b393c0 | refs/heads/master | 2020-12-06T06:05:15.933130 | 2020-02-14T13:20:03 | 2020-02-14T13:20:03 | 232,366,889 | 16 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,283 | hpp | /*
* @Author: XiaoGongBai
* @Date: 2020-01-25 19:14:34
* @Last Modified by: XiaoGongBai
* @Last Modified time: 2020-01-25 20:27:27
*/
#pragma once
#include <list>
#include <fstream>
#include <vector>
#include <string>
#include <iterator>
#include <algorithm>
#include <Graph.hpp>
using namespace std;
/**
* 深度优先搜... | [
"978601499@qq.com"
] | 978601499@qq.com |
9997a0a38640a06dbf635d3309e19e945daaf4ee | 48b428695ad6b12390b068ae0994494edcfd893b | /Header Files/BitmapHandler.h | d307ff4ac517dcdabd99ab901041294f72dc35dc | [] | no_license | 0000duck/OLProgram | ba20ebe6239563f7c52416a65d892e9dfbd7f9fc | b1f1d1b40e3f7c1b237770834b42bbf11a04135a | refs/heads/master | 2020-04-12T08:37:18.793007 | 2016-11-11T09:37:04 | 2016-11-11T09:37:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,194 | h | // BitmapHandler.h : Declaration of the CBitmapHandler
#pragma once
#include "EliteSoftWare_i.h"
#include "resource.h" // main symbols
#include <comsvcs.h>
#include <list>
// CBitmapHandler
class ATL_NO_VTABLE CBitmapHandler :
public CComObjectRootEx<CComSingleThreadModel>,
public CComCoClass<CBitmapHandler... | [
"qqs318@126.com"
] | qqs318@126.com |
a2d1e168680eaf009a606e9e22794b225c0b197a | 63b6d834c7e04747874ef022ac3b33ae1d190133 | /libcef_dll/ctocpp/views/window_ctocpp.h | 77e4e05a7035b28fa10522d8bfd59340b4e0a8f3 | [
"BSD-3-Clause"
] | permissive | errNo7/cef | 2144485a9d8f2d91c3cd26dc71c5a554b505489f | 6f6072b857847af276cb84caec0948d5d442521d | refs/heads/master | 2023-08-19T10:34:29.985938 | 2021-09-09T07:50:10 | 2021-09-09T07:50:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,952 | h | // Copyright (c) 2021 The Chromium Embedded Framework Authors. All rights
// reserved. Use of this source code is governed by a BSD-style license that
// can be found in the LICENSE file.
//
// ---------------------------------------------------------------------------
//
// This file was generated by the CEF translato... | [
"magreenblatt@gmail.com"
] | magreenblatt@gmail.com |
63dba5473c259e4d964dbbbf3ac9a594d70d9ac8 | 50a570c7afc812fe43a1f7bf689b62d6ce6b6e8f | /src/net_main.cpp | 71dc74cc9a2c40720deb10bce1b0aec6d73b922a | [] | no_license | gsherwin3/opx-nas-linux | 2061d71ba5fbdb83082c064b77f45a363d3891bd | 78470fbf9e48ce8b21d2e2e96504d2a4bda42ca3 | refs/heads/master | 2021-01-11T20:01:20.057775 | 2017-02-13T15:12:44 | 2017-02-13T15:12:44 | 79,449,683 | 0 | 0 | null | 2017-01-19T12:08:48 | 2017-01-19T12:08:48 | null | UTF-8 | C++ | false | false | 25,285 | cpp | /*
* Copyright (c) 2016 Dell 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.apache.org/licenses/LICENSE-2.0
*
* THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARR... | [
"J.T.Conklin@Dell.Com"
] | J.T.Conklin@Dell.Com |
0622c69aa490235a284d6dc86425f07b312e421b | a1d319f22634908f4fb31ac7c2a21f66225cc991 | /Shared/cpp/openfst-1.2.10/src/include/fst/equivalent.h | f778c1e9af854ba84bd3f5ba374c1d647c025e85 | [
"Apache-2.0"
] | permissive | sdl-research/sdl-externals | 2ee2ae43a5d641cc0e2c0a7c642f48d15f32fbeb | 56459e0124eadf38ff551494b81544cb678a71d7 | refs/heads/master | 2021-01-17T15:06:59.783100 | 2016-07-10T06:40:45 | 2016-07-10T06:40:45 | 28,290,682 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,331 | h | // equivalent.h
// 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, softwar... | [
"mdreyer@sdl.com"
] | mdreyer@sdl.com |
8dd03c25d7cd6f47225b05cacb6285e0419a37e7 | 1414c4394b3f3fbd8f2ee027e699277a2f704374 | /node/src/node_clock.cpp | d340aa7dca1b0680dc32872f049ddc05f711c7ba | [
"Apache-2.0"
] | permissive | tempbottle/sopmq | f6810258d872d00c557007e9f388652dee3b348e | c940bcba5f9f69190e73f1628909ec344acdb374 | refs/heads/master | 2021-01-15T18:22:15.875738 | 2014-11-29T05:28:26 | 2014-11-29T05:28:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,029 | cpp | /*
* SOPMQ - Scalable optionally persistent message queue
* Copyright 2014 InWorldz, LLC
*
* 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-... | [
"david.daeschler@gmail.com"
] | david.daeschler@gmail.com |
5803af6c99ccc2343e5f7b19346e63f75f6ead0c | 5456502f97627278cbd6e16d002d50f1de3da7bb | /device/geolocation/geolocation_provider_impl.cc | 298366f8b49aa61fdcdd19e1c249c7f491006c7f | [
"BSD-3-Clause"
] | permissive | TrellixVulnTeam/Chromium_7C66 | 72d108a413909eb3bd36c73a6c2f98de1573b6e5 | c8649ab2a0f5a747369ed50351209a42f59672ee | refs/heads/master | 2023-03-16T12:51:40.231959 | 2017-12-20T10:38:26 | 2017-12-20T10:38:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,890 | cc | // Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "device/geolocation/geolocation_provider_impl.h"
#include <utility>
#include "base/bind.h"
#include "base/bind_helpers.h"
#includ... | [
"lixiaodonglove7@aliyun.com"
] | lixiaodonglove7@aliyun.com |
c34e5bfea26ef4ab8a21670090466588095aac9b | 02bb3366a65aaa0c5699a22aef4aafbbc9e93dcb | /workspace_c++/Skill_Set_TSP/src/functions.h | 1f3fba24cd402d58e810055c12f2fc8c97b52b5e | [] | no_license | xiaolindong/cppWorkspace | ec8f257c0a65be7176c66b86ff2fb83dde646c62 | ff370bdbfc9a306f8f1c60f876d315b2d28a416d | refs/heads/master | 2021-05-30T12:27:14.499318 | 2016-02-18T22:11:12 | 2016-02-18T22:11:12 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 15,469 | h | /*
* functions.h
*
* Created on: Mar 23, 2012
* Author: eia2
*/
#ifndef FUNCTIONS_H_
#define FUNCTIONS_H_
using namespace std;
/*********check a particular skill is in the worker's set*********************/
bool checkskill(int workerid, int jobskill)
{
if(jobskill >= skilllow[workerid] && jobskill <... | [
"Ehsan@Ehsans-MacBook-Pro.local"
] | Ehsan@Ehsans-MacBook-Pro.local |
4ba32c4d678d61f7a0106a46cea5a782808b40c4 | 6a4a2eb5cb08ea805733bd677ec44c62fb32ee91 | /host/test/cache.cpp | 7b9e0fb60cdbe39c1e2eb3b7dae946dc46fdc28f | [] | no_license | agrigomi/pre-te-o | 7b737dc715b6432880aeaa030421d35c0620d0c3 | ed469c549b1571e1dadf186330ee4c44d001925e | refs/heads/master | 2020-05-15T13:41:51.793581 | 2019-04-19T18:44:28 | 2019-04-19T18:44:28 | 182,310,069 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 32 | cpp | ../../core/driver/bdev/cache.cpp | [
"agrigomi@abv.bg"
] | agrigomi@abv.bg |
370b7d684a5b6080d5fdf55a4679f0d1d61306e1 | 6b2a8dd202fdce77c971c412717e305e1caaac51 | /solutions_2464487_0/C++/haker4o/A.cpp | d428bebf6e5b4b36ebc06e8f70f5138801bc6a36 | [] | no_license | alexandraback/datacollection | 0bc67a9ace00abbc843f4912562f3a064992e0e9 | 076a7bc7693f3abf07bfdbdac838cb4ef65ccfcf | refs/heads/master | 2021-01-24T18:27:24.417992 | 2017-05-23T09:23:38 | 2017-05-23T09:23:38 | 84,313,442 | 2 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 1,051 | cpp | #include <iostream>
#include <cstdio>
#include <cstdlib>
#include <vector>
#include <string>
#include <cstring>
#include <cmath>
#include <algorithm>
#include <queue>
#include <set>
#include <map>
#include <stack>
#include <sstream>
#define mp make_pair
#define MAXLL ((1LL<<63)-1)
using namespace std... | [
"eewestman@gmail.com"
] | eewestman@gmail.com |
3ebd81cfd02a398474dd86720181a7f32a30ff55 | 309fceba389acdb74c4de9570bfc7c43427372df | /Project2010/Bishamon/include/bm3/core/type/bm3_Keyframe.h | 274a05e25620df472edc0101dc19fc70bb1c3f7d | [] | no_license | Mooliecool/DemiseOfDemon | 29a6f329b4133310d92777a6de591e9b37beea94 | f02f7c68d30953ddcea2fa637a8ac8f7c53fc8b9 | refs/heads/master | 2020-07-16T06:07:48.382009 | 2017-06-08T04:21:48 | 2017-06-08T04:21:48 | null | 0 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 3,964 | h | #ifndef BM3_SDK_INC_BM3_CORE_TYPE_BM3_KEYFRAME_H
#define BM3_SDK_INC_BM3_CORE_TYPE_BM3_KEYFRAME_H
#include <ml/utility/ml_assert.h>
#include "../../system/bm3_Config.h"
#include "../bm3_Const.h"
#include "../bm3_CoreType.h"
namespace bm3{
BM3_BEGIN_PLATFORM_NAMESPACE
namespace internal{
template<typename T> struct K... | [
"tetares4@gmail.com"
] | tetares4@gmail.com |
f5f4b5cad902c3aa9d532929f0026936c8347ffb | ca29748604f0ab70b0e83f3d9cd4d1ed8684ef98 | /diamond.cpp | 6c9df8b3ec52c21468d83ea1cb0522419da261bd | [] | no_license | Sindhu624/my_first | 26d603ecf704c44ff4285d9ed1fc469d74c661c5 | e407cf294e5ed89d3c6debd044c6bc67e50669bf | refs/heads/master | 2022-02-22T10:45:33.799063 | 2019-10-04T12:20:03 | 2019-10-04T12:20:03 | 206,754,171 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 718 | cpp | #include<iostream>
using namespace std;
class Person {
// Data members of person
public:
Person(int x) { cout << "Person::Person(int ) called" << endl; }
};
class Faculty : public Person {
// data members of Faculty
public:
Faculty(int x):Person(x) {
cout<<"Faculty::Faculty(int ... | [
"Sindhu624"
] | Sindhu624 |
4bfbc7e74da1082f9377b104aae3c7d6278f96f9 | 0aa325d6d4e71aa66aa6101781476493bab85d19 | /Talkers/Behaviours/T-11/B-170/B-170.hpp | 1a40186066fc2ecf537b5fd134fe13bf2ee25f8d | [] | no_license | valentin-dufois/Protocol-Bernardo | 7a14004bd85000e7f3cbd25e5952f258c0b9a99c | 0e2225bb7f170e7517d2d55ea5a4aff3667c8ca3 | refs/heads/master | 2022-04-03T09:48:39.971882 | 2020-02-18T22:18:47 | 2020-02-18T22:18:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 655 | hpp | //
// B-170.hpp
// Talkers
//
// Created by Valentin Dufois on 2020-02-03.
//
#ifndef B_170_hpp
#define B_170_hpp
#ifdef B170
#undef B170
#endif
#include "../../Behaviour.hpp"
class B170: public Behaviour {
public:
B170(): Behaviour(170, // ID
11, // Tree ID
1, //... | [
"valentin@dufois.fr"
] | valentin@dufois.fr |
66f7d29ad14eba4e1967df493a8b3d8d40cee0fc | e17c43db9488f57cb835129fa954aa2edfdea8d5 | /Libraries/IFC/IFC4/include/IfcNumericMeasure.h | e023089d1665969c3d7931afe424172261ead4d4 | [] | no_license | claudioperez/Rts | 6e5868ab8d05ea194a276b8059730dbe322653a7 | 3609161c34f19f1649b713b09ccef0c8795f8fe7 | refs/heads/master | 2022-11-06T15:57:39.794397 | 2020-06-27T23:00:11 | 2020-06-27T23:00:11 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 919 | h | /* Code generated by IfcQuery EXPRESS generator, www.ifcquery.com */
#pragma once
#include <vector>
#include <map>
#include <sstream>
#include <string>
#include "IfcPPBasicTypes.h"
#include "IfcPPObject.h"
#include "IfcPPGlobal.h"
#include "IfcMeasureValue.h"
// TYPE IfcNumericMeasure = NUMBER;
class IFC... | [
"steva44@hotmail.com"
] | steva44@hotmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.