blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 201 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 7 100 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 260
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 11.4k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 17
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 80
values | src_encoding stringclasses 28
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 8 9.86M | extension stringclasses 52
values | content stringlengths 8 9.86M | authors listlengths 1 1 | author stringlengths 0 119 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
dc0fc47d5b83251439d5220969a7de1b05f41500 | 0ac89ef66f99c323003eaf5fc05d9562e8fa6d69 | /NQueenII.cc | 0481ad4db039bd340ef0aa59f837184715e1a24d | [] | no_license | YuxiKou/leetcode | 22ce9324e4afef1a864454f477a2f369a5617ac3 | 283faadbe85ebcdd8bdd34ebabf601b7d6db4612 | refs/heads/master | 2021-01-18T19:18:51.040690 | 2014-10-22T02:23:33 | 2014-10-22T02:23:33 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 557 | cc | /*
Follow up for N-Queens problem.
Now, instead outputting board configurations, return the total number of distinct solutions.
*/
class Solution
{
public:
int cnt,upper;
int totalNQueens(int n)
{
cnt = 0;
upper = (1<<n)-1 ;
Queen(0,0,0);
return cnt;
}
void Queen(int row,int ld,int rd)
... | [
"koukou1213@gmail.com"
] | koukou1213@gmail.com |
0d2c0eb8f88756616a04cee01f03e001b1bfef17 | fb0b4ff48221365f8546b86c4a45ea10c55210ca | /ArenaShooter UE4/Source/ArenaShooter/Public/Character/BaseCharacter.h | 351842c32568e6aa8bfc48a5a2da68e257e00258 | [] | no_license | dantheman94/ArenaShooter_UE4 | 2e445621529851fbf2455bd0d7be484e291ee284 | 512b740f72c3faee9ebda89a88612ed8604beb32 | refs/heads/master | 2023-02-11T02:57:29.215439 | 2021-01-12T11:11:15 | 2021-01-12T11:11:15 | 241,025,353 | 6 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 73,776 | h | // Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "Curves/CurveVector.h"
#include "GameFramework/Character.h"
#include "Structures.h"
#include "BaseCharacter.generated.h"
// *** DEFINITIONS
#define _MAX_FLESH_HEALTH 100.0f
#define _MAX_SHI... | [
"dmarton94@gmail.com"
] | dmarton94@gmail.com |
ecc8538a31907d5ab0d0dde461e15c53e49d4e2a | 2483bfb32a5a2c0e94dd975a3acf14cfb0432d96 | /game/Battlegrounds/ArenaTeam.cpp | c311a8ad5c2a3fd90d9c59228c96812ec304cdac | [] | no_license | gragonvlad/MStorm-Master | c78680b314433b07aeec588f7113fff4766a50a4 | 5e3ef21f16b34cd6c795456811c91e4eb85a4bc0 | refs/heads/master | 2021-01-01T20:31:23.256784 | 2017-06-18T00:03:21 | 2017-06-18T00:03:21 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 33,977 | cpp | /*
* Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/>
* Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either ver... | [
"darkmasters@yandex.ru"
] | darkmasters@yandex.ru |
4c8360684214ba98ab50cb2e4eb059b693f42ebf | afb4cf30e328c78efc7adad573a4e4a1870754b6 | /College/Matthew C++ Classes/Matthew Project/Cs 2/Lab 4/Main.cpp | 5bd1fb5e2e86ac258c14fd257fde9367e95409de | [
"Apache-2.0"
] | permissive | mmcclain117/School-Code | 5c404aaa9b95df136ba382dff79cb7d44e56b4bc | aa9c501d42fc51fa9a66f53c65b875408a40ea0c | refs/heads/main | 2023-01-21T00:27:18.669866 | 2020-11-29T21:32:52 | 2020-11-29T21:32:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,583 | cpp | #include <stdlib.h>
#include "Token.h"
WCS_String Temp;
Token Toke;
void PrintResult()
{
for (int i = 0; i < Toke.numchars; i++)
{
cout << Toke.chars[i];
}
cout << endl;
}
void main (int argc, char * argv [])
{
if (argc < 2)
{
cout << "You need to place the file name on the command line" << endl;
e... | [
"codingmace@gmail.com"
] | codingmace@gmail.com |
847928973c9e3a02b58b5bcef28c7009cee9bc4b | 88ae8695987ada722184307301e221e1ba3cc2fa | /third_party/grpc/src/src/core/lib/event_engine/posix_engine/posix_engine_listener.cc | b395bff00d620a614f41609487e8d4863bcb82e0 | [
"BSD-3-Clause",
"MPL-2.0",
"Apache-2.0",
"LGPL-2.0-or-later",
"MIT",
"GPL-1.0-or-later"
] | permissive | iridium-browser/iridium-browser | 71d9c5ff76e014e6900b825f67389ab0ccd01329 | 5ee297f53dc7f8e70183031cff62f37b0f19d25f | refs/heads/master | 2023-08-03T16:44:16.844552 | 2023-07-20T15:17:00 | 2023-07-23T16:09:30 | 220,016,632 | 341 | 40 | BSD-3-Clause | 2021-08-13T13:54:45 | 2019-11-06T14:32:31 | null | UTF-8 | C++ | false | false | 11,104 | cc | // Copyright 2022 gRPC Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | [
"jengelh@inai.de"
] | jengelh@inai.de |
ced30fabe9373c44d1fb7d7419d2cfbb266ec9f4 | 45f4a3c690df533d6631d410319b5c9f678c486e | /Source.cpp | 0145e7d0561d097d098584cc0c247398ca9a7a91 | [] | no_license | KiroAlbear/Bank-Mangment | 64814956c2d85ef7aa424b298c764b9469606a65 | e0d46ebecd9c0245dc15170e19fda9b02ad998ae | refs/heads/master | 2020-12-24T20:52:22.977827 | 2016-05-20T22:57:46 | 2016-05-20T22:57:46 | 59,330,898 | 0 | 0 | null | 2016-05-20T22:57:46 | 2016-05-20T22:52:22 | C++ | UTF-8 | C++ | false | false | 9,421 | cpp | #include <Windows.h>
#include <tchar.h>
#include <iostream>
#include <string>
#include <fstream>
#include <cstdlib>
#include <string.h>
#include <dirent.h>
#include <iterator>
using namespace std;
void deleteClient()
{
string name, email, temp, line,blr;
int id, age, money;
cout << "Enter ID number:... | [
"kirolosa4@gmail.com"
] | kirolosa4@gmail.com |
0a4f934eb325f074ac50d4f50f58ad6dfe2baa2f | 59461cfb3126538f3e64146e5f9c211d1d8cf02d | /Leetcode-Mooc/Chapter9-动态规划/Q63_Unique_Paths_II.h | b09038066522f7f1ac7f3782e38b664a03cb7996 | [] | no_license | shexuan/cpp_practice | 4001ea11dfd2812bcb6b489041326fa8c2dfebe8 | a5b47ee00735ad3fd27d9cfd354ead4f255f26ce | refs/heads/main | 2023-03-17T16:43:43.190405 | 2021-03-06T17:10:03 | 2021-03-06T17:10:03 | 334,880,551 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,774 | h | //
// Created by shexuan on 2021/3/5.
//
#ifndef CHAPTER9__Q63_UNIQUE_PATHS_II_H
#define CHAPTER9__Q63_UNIQUE_PATHS_II_H
#include <vector>
#include <string>
using namespace std;
class Solution {
public:
int uniquePathsWithObstacles(vector<vector<int>>& obstacleGrid) {
int nrow = obstacleGrid.size(), nco... | [
"shexuan@mininglamp.com"
] | shexuan@mininglamp.com |
afff494bfaf73cfa47ef9602386e3e2f9b100796 | 6a16318ae41875c771477a1279044cdc8fc11c83 | /Horoscopes/src/managers/loginmanager/facebookloginmanager.cc | 997c17070675135c33888ca01d2ae3a6ba6f309c | [] | no_license | JasF/horoscopes | 81c5ad2e9809c67d16606a2e918fd96b0450dbee | 880fdf92d6cd48a808e24928dc54a106bda34ce6 | refs/heads/master | 2021-09-10T13:43:46.246063 | 2018-03-27T06:24:02 | 2018-03-27T06:24:02 | 118,770,043 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,376 | cc | //
// facebookloginmanager.c
// Horoscopes
//
// Created by Jasf on 29.10.2017.
// Copyright © 2017 Freedom. All rights reserved.
//
#include "facebookloginmanager.h"
#include <vector>
#include <sstream>
namespace horo {
using namespace std;
FacebookLoginManager::FacebookLoginManager(strong<FacebookMa... | [
"andreivoe@gmail.com"
] | andreivoe@gmail.com |
9558761e8b4f3bb12a44fc3edb366c68b56f5a95 | 78ebffe1622c799f6f6169a1c378f69babb7a196 | /palindromic_doubly_linked_list.cpp | cdb0ac4da065af38030e0b76d1205b85b1325b60 | [] | no_license | Parshantbalwaria129/C-C-Hack2021 | e5cc11b4092894c474d41639843e6d38b7ca5ff9 | 855238de01708ed042b5c13dbd0bbe874c4354fd | refs/heads/main | 2023-08-30T09:48:40.619826 | 2021-10-17T20:21:56 | 2021-10-17T20:21:56 | 412,716,910 | 1 | 26 | null | 2021-10-06T09:38:54 | 2021-10-02T06:56:28 | C++ | UTF-8 | C++ | false | false | 1,817 | cpp | #include<iostream>
using namespace std;
//Class for Doubly Linked Lists
class node{
public:
int data;
node* next;
node* prev;
node(int val)
{
data = val;
prev = NULL;
next = NULL;
}
};
void insertAtHead(node* &head, int val) {
node* n = new node(val);
n->next = head;
if (head != NULL) {
head->prev =... | [
"68791455+Gaurisha21@users.noreply.github.com"
] | 68791455+Gaurisha21@users.noreply.github.com |
3eba9e7a56cad1ab4fb0d28a84463fe90b53401a | d9b5acacda3f9e0ac13ce80611b2465f40e04038 | /spoj/ZSUM.cpp | 6a1490051b156ff2183f200c116940a0616915e2 | [] | no_license | rathoresrikant/competitive-programming-solutions | f71cc8641761e0c0ef05771ffd06212b806276c8 | adb85068f1765e608548835b7a25c29f5600638e | refs/heads/master | 2021-06-17T08:38:55.477588 | 2020-10-02T08:30:26 | 2020-10-02T08:30:26 | 151,747,671 | 81 | 248 | null | 2023-06-07T09:57:14 | 2018-10-05T16:17:14 | C++ | UTF-8 | C++ | false | false | 357 | cpp | #define mq 10000007
#include <iostream>
using namespace std;
typedef long long ll;
ll pow(ll a, ll b){
ll ans=1;
while(b!=0){
if(b%2==1)
ans = (ans*a)%mq;
a = (a*a)%mq;
b/=2;
}
return ans;
}
int main() {
ll n,k;
cin>>n>>k;
while(n!=0&&k!=0){
cout<<(2*(pow(n-1,k)+pow(n-1,n-1)) + pow(n,k) + pow(n,n))%mq... | [
"noreply@github.com"
] | noreply@github.com |
9f87f39ec841fd349813394554eb5d195faffaf1 | d60fa37053a864b3d2e46c2d1b3d72b899743da9 | /DQM/TrackingMonitorClient/interface/TrackingActionExecutor.h | d653dd3d40dd519d6ccbdfb1a072fdeec2c8c2d5 | [] | no_license | ikrav/cmssw | ba4528655cc67ac8c549d24ec4a004f6d86c8a92 | d94717c9bfaecffb9ae0b401b6f8351e3dc3432d | refs/heads/CMSSW_7_2_X | 2020-04-05T23:37:55.903032 | 2014-08-15T07:56:46 | 2014-08-15T07:56:46 | 22,983,843 | 2 | 1 | null | 2016-12-06T20:56:42 | 2014-08-15T08:43:31 | null | UTF-8 | C++ | false | false | 1,478 | h | #ifndef _TrackingActionExecutor_h_
#define _TrackingActionExecutor_h_
#include "DQMServices/Core/interface/MonitorElement.h"
#include "FWCore/Framework/interface/ESHandle.h"
#include "FWCore/Framework/interface/EventSetup.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include <iostream>
#include <fstream... | [
"mia.tosi@cern.ch"
] | mia.tosi@cern.ch |
a0da05c15b825ca36b2f092a46ccc9daf34da6ba | 48a400042c41feb1b305da0aff3b8a2ad535bdc1 | /llvm/lib/IR/DataLayout.cpp | f76ac12ba8ad2347a17cdec962e8b75ad7c59cf4 | [
"NCSA",
"LLVM-exception",
"Apache-2.0"
] | permissive | Daasin/tpc_llvm | d9942f0a031213ba5f23e2053d04c3649aa67b03 | ece488f96ae81dd9790f07438a949407dc87ef66 | refs/heads/main | 2023-07-29T16:10:36.488513 | 2021-08-23T10:38:48 | 2021-09-10T05:48:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 31,621 | cpp | //===- DataLayout.cpp - Data size & alignment routines ---------------------==//
//
// 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-Identifier: Apache-2.0 WITH LLVM-exception
//
//===---------------------------... | [
"ogabbay@kernel.org"
] | ogabbay@kernel.org |
dbbbe7d6b5ee96478d8989779fc74195d729ffbc | 037d518773420f21d74079ee492827212ba6e434 | /blazetest/src/mathtest/dmatdmatschur/DDaMDa.cpp | 3e58d97bd3a81d61873a971d95c202c2025d7b69 | [
"BSD-3-Clause"
] | permissive | chkob/forked-blaze | 8d228f3e8d1f305a9cf43ceaba9d5fcd603ecca8 | b0ce91c821608e498b3c861e956951afc55c31eb | refs/heads/master | 2021-09-05T11:52:03.715469 | 2018-01-27T02:31:51 | 2018-01-27T02:31:51 | 112,014,398 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,998 | cpp | //=================================================================================================
/*!
// \file src/mathtest/dmatdmatschur/DDaMDa.cpp
// \brief Source file for the DDaMDa dense matrix/dense matrix Schur product math test
//
// Copyright (C) 2012-2018 Klaus Iglberger - All Rights Reserved
//
// This... | [
"klaus.iglberger@gmail.com"
] | klaus.iglberger@gmail.com |
f11ab9a14d5c7eb816404542b4a1d697f8c090aa | 3569a7ffe4fde10dacc3967f6bb1b7a43e156b11 | /examples/ping_pong.cpp | d8ca4c258aa2f3b37f4494972830364855e8c690 | [] | no_license | PlumpMath/cosche | afb93cf006f17eb36c9754e3441e161cf5e21434 | f177ea686c559717bb33107bb5ccce20086fe649 | refs/heads/master | 2021-01-20T09:54:24.040850 | 2016-10-02T09:08:05 | 2016-10-02T09:08:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,782 | cpp | #include "scheduler.hpp"
#include "cycle.hpp"
#include "task.hpp"
#include <iostream>
#include <cstdlib>
#include <future>
#include <chrono>
int main()
{
cosche::Scheduler scheduler;
//scheduler.reserveTasks<void>(2);
auto ping = scheduler.getNewTask<void>();
auto pong = scheduler.getNewTask<void>()... | [
"camille.brugel@openmailbox.org"
] | camille.brugel@openmailbox.org |
28a6bf19c6fea3a22bb0bec4a078d2b680dcab3f | f9e9f62e77407c1554e500e9b823fcf78fbcda96 | /src/argo_rc/argo_rc_lib.hpp | de8dee2eb4e22156e363a27aa26580f22a8fbe08 | [] | no_license | DavidFair/argo_arduino | bd4534ef792ba70b9a02f830f99b3583b8487083 | f0a399f293fc1c8ced3c5c66a76aa437500dd309 | refs/heads/master | 2021-03-24T12:50:55.916790 | 2018-04-26T20:09:32 | 2018-04-26T20:09:32 | 121,495,519 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,195 | hpp | #ifndef ARGO_RC_LIB_H_
#define ARGO_RC_LIB_H_
#include <stdint.h>
#include "ArduinoInterface.hpp"
#include "Encoder.hpp"
#include "PidController.hpp"
#include "SerialComms.hpp"
#include "Timer.hpp"
#include "move.hpp"
namespace ArgoRcLib {
/// Implements main loop to be executed on the vehicle
class ArgoRc {
public... | [
"DavidFair@users.noreply.github.com"
] | DavidFair@users.noreply.github.com |
200153ea4cffa60b81e63921b3b3979b2acb341e | 25d77f8535bf00ecebc0755b41d8fe60390daf85 | /TILE/src/LYSimPrimaryGeneratorAction.cc | d3ed1ef164809cf92e316f47e4f98987c0a963f8 | [] | no_license | umd-fire-spd/HGCal-Dimple-Tile | ae27cd658d71141cb2349b10b93d009e6c25d1e8 | bc4b333a735415f8c30d551559b75accde2ed1d8 | refs/heads/master | 2020-05-14T22:16:25.910594 | 2019-02-25T15:30:01 | 2019-02-25T15:30:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,218 | cc | //
// ********************************************************************
// * License and Disclaimer *
// * *
// * The Geant4 software is copyright of the Copyright Holders of *
// * the Geant4 Collaboration... | [
"noreply@github.com"
] | noreply@github.com |
90ba32fcc74901393d2d022cbe3c12b98207d2a2 | 020d93bf1bacc3edaff58445076cd4f4c7fd15b9 | /CloudJudge/L14/Rational.cpp | cf067284f929bd9f708647719b60263a2861299b | [] | no_license | mushrooms1121/OOP | 63ac63b82ea8a5221831d0cc32841f61382af31c | 8883c9195e3f673d29e1dd31bab763d2225c155d | refs/heads/master | 2022-11-05T14:52:18.651856 | 2020-06-23T18:28:17 | 2020-06-23T18:28:17 | 259,918,824 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,837 | cpp | #include"Rational.h"
Rational::Rational(int numerator, int denominator) :numerator(0), denominator(0)
{
int factor = gcd(numerator, denominator);
this->numerator = ((denominator > 0 ? 1 : 0) * numerator / factor);
this->denominator = abs(denominator) / factor;
}
int Rational::getNumerator() c... | [
"noreply@github.com"
] | noreply@github.com |
00d284c881016fe6a7e04725ae7c4defb821a6c6 | 4e8691216558f94d128c0103bef689586d1a5743 | /Lab's_Cit/Client_lab's/Client_lab_1/client.cpp | 4f4ada3ec3f54e596850f21dc7526096ed11255a | [] | no_license | MacDouglas/labs_from_university | c8fe28dd85f4ee4e4fbd1bbc6f2336af6bc09de4 | cbcc5a0d5ba4031d42792bafa56f11f98c1bf91b | refs/heads/master | 2022-04-07T12:43:32.840361 | 2020-02-27T02:28:18 | 2020-02-27T02:28:18 | 217,210,693 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 773 | cpp | #include "client.h"
using namespace std;
namespace clients_objects {
client::client(int port)
{
WSADATA WsaData;
err = WSAStartup(0x0101, &WsaData);
if (err == SOCKET_ERROR) {
printf("WSAStartup() failed: %ld\n", GetLastError());
throw "Error with a creation socked";
}
int s = socket(AF_INET, SOCK_S... | [
"stalkergta-99@mail.ru"
] | stalkergta-99@mail.ru |
10cc4065ed9fce25e1ecb7b3d8768016661e6aad | 851f81f109966962af55bee8f231e13b43baed8d | /КСиС/Server/Server/Server.cpp | af8605839d97d4286984c1dccab6a811d927dceb | [] | no_license | Beeelzebub/labs | 0a0829ad8c476fd9ae0be2429e5a96bc09f9713b | bb5f0abd6b5a02450a0b0a0ceedab179d8de5582 | refs/heads/master | 2022-10-24T21:13:42.634382 | 2020-06-19T13:12:57 | 2020-06-19T13:12:57 | 259,646,792 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 907 | cpp | #pragma comment(lib, "ws2_32.lib")
#include <winsock2.h>
#include <iostream>
#pragma warning(disable: 4996)
int main()
{
WSAData wsaData;
WORD DLLVersion = MAKEWORD(2, 1);
if (WSAStartup(DLLVersion, &wsaData) != 0) {
std::cout << "Error" << std::endl;
exit(1);
}
SOCKADDR_IN addr;
int sizeofaddr = sizeof(... | [
"43516722+Beeelzebub@users.noreply.github.com"
] | 43516722+Beeelzebub@users.noreply.github.com |
6759f83862003f3aab5ee0c516e9741a2fa2b580 | 830db549df5998b80ddb05e730439ceb4d8d5733 | /ext_deepmimic01/DeepMimicCore/scenes/SceneImitateTargetHeading.cpp | 8c56f7abfee4866a0cbef90babbbcd5aacb6ea0f | [
"MIT"
] | permissive | TwTravel/Dem2Ue4 | 9d9d14ff50f6a99ce2a5842f1ef19a445d4d63e2 | 0dbbbab01f0ccfedbbf6a7c72103475050799119 | refs/heads/master | 2020-05-16T01:22:06.554419 | 2019-04-22T01:17:02 | 2019-04-22T01:17:02 | 182,600,663 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,136 | cpp | #include "SceneImitateTargetHeading.h"
#include "SceneImitate.h"
#include <iostream>
cSceneImitateTargetHeading::cSceneImitateTargetHeading()
{
mEnableRandRotReset = false;
mSyncCharRootPos = true;
mSyncCharRootRot = false;
mEnableRootRotFail = false;
mHoldEndFrame = 0;
mSceneGoal<< 0.5, 0.5;
}
cSceneImitateT... | [
"twtravel@126.com"
] | twtravel@126.com |
8d412e7aa677f48cff2d4312418d74e2a47d72d7 | eb2abebe422deeec4041153a94f50075fd9e6be3 | /lectures/inheritance/virtual.cpp | d830071568592b5540b262217c41f3719b6c05ca | [] | no_license | apachalieva/advanced_programming | 2592295cc34daf2967f81041c4284896fd39e4bc | 076894eb4df8024abebb031693f2df42e90bb244 | refs/heads/master | 2020-05-29T11:57:43.081744 | 2014-01-30T14:32:06 | 2014-01-30T14:32:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,265 | cpp | /** @file
* This file is part of the Advanced Progamming lecture.
*
* @author Alexander Breuer (breuera AT in.tum.de, http://www5.in.tum.de/wiki/index.php/Dipl.-Math._Alexander_Breuer)
*
* @section LICENSE
* Copyright (c) 2014
* Technische Universitaet Muenchen
* Department of Informatics
* Chair of Scientific... | [
"breuer@mytum.de"
] | breuer@mytum.de |
cdfb1fd85ef8cbad5eb2b04b4ae20a1d0dae24cc | 0bcf6cf143f30781288d67d23ef3fa5efdf10b94 | /cs16/lab08/linkedListFuncs.cpp | 9b16c0d9db3eec814539a9db22065f70ccfb6233 | [] | no_license | Gopu2001/ucsb_ccs_labs | e787f2f2a330a512563cd9d1f03b09693c045278 | c02ae4c698bd8e9e1662c8ad09c3ce4a504180d5 | refs/heads/master | 2023-01-29T18:43:20.583703 | 2020-12-14T21:40:22 | 2020-12-14T21:40:22 | 301,958,082 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,884 | cpp | #include <iostream>
#include <string>
#include <sstream> // for ostringstream
#include <cassert>
#include "linkedList.h"
#include "linkedListFuncs.h"
LinkedList * arrayToLinkedList(int *a, int size) {
LinkedList * list = new LinkedList;
list->head=NULL;
list->tail=NULL;
for (int i=0; i<si... | [
"41317321+Gopu2001@users.noreply.github.com"
] | 41317321+Gopu2001@users.noreply.github.com |
6cca666c246533157deee3edf1136b24573e1c24 | e32e47ec121d70d975bad723ca143efb0157e1fc | /Samples/Chapter 7/DisplayTable/main.cpp | 2cae76062b055a0740e47d7024f4975e43638e92 | [
"MIT"
] | permissive | Anil1111/COSC1436 | 02d781045fad38066e7f21c836566a52a53cacb4 | 33a607e51f2a51c70ab11a24945f3f06de50f7fc | refs/heads/master | 2020-03-30T18:33:22.439731 | 2017-08-15T01:05:01 | 2017-08-15T01:05:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 894 | cpp | /*
* COSC 1436
*
* Demonstrates enumerating a table of values.
*/
#include <iostream>
#include <iomanip>
using namespace std;
const int ARRAY_SIZE = 12;
//Prints out a table.
void DisplayTable ( int table[][ARRAY_SIZE], int rows )
{
//Display header
cout << left << setw(4) << "Row";
for (int col = 0; col < AR... | [
"michael.taylor769@my.tccd.edu"
] | michael.taylor769@my.tccd.edu |
1188116b4e2b4d748f3a861bd78e50fcfd244b85 | 5456502f97627278cbd6e16d002d50f1de3da7bb | /ui/gfx/image/image_family.h | ee40898705554d946676766f0e5e1680ec0bf60f | [
"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,101 | h | // 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.
#ifndef UI_GFX_IMAGE_IMAGE_FAMILY_H_
#define UI_GFX_IMAGE_IMAGE_FAMILY_H_
#include <iterator>
#include <map>
#include <utility>
#include "ui/... | [
"lixiaodonglove7@aliyun.com"
] | lixiaodonglove7@aliyun.com |
f7f94305cda2905d08852ff05ad2d40246b8f773 | 6f40de67648684c5f5112aeb550d7efb5bf8251b | /UVa/10369.cpp | 92360f8463edb3f7a5d19684bc9161df04e107aa | [] | no_license | Mohib04/Competitive-Programming | 91381fa5ba2ff2e9b6cf0aeee165f7cf31b43d0d | 529f7db770b801eff32f2f23b31a98b1b9f35e51 | refs/heads/master | 2021-10-21T07:53:03.645288 | 2019-03-03T14:53:47 | 2019-03-03T14:53:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,007 | cpp | #include <bits/stdc++.h>
using namespace std;
struct edge {
int first,second;
double w;
edge(int uu, int vv, double ww) {
first=uu; second=vv; w=ww;
}
bool operator < (const edge e) const {
return w < e.w;
}
};
double dist(pair<int,int>p1, pair<int,int>p2 ) {
return sq... | [
"shariarsajib@gmail.com"
] | shariarsajib@gmail.com |
3121b676bb52103ae287f81e6cd6944c51db766e | ce7326d8186d3732095047d7b40da6faece2d114 | /src/qt/tradeplus_coin/receivewidget.cpp | d782614200cdd421d57c3898773acc5d6c999ab7 | [
"MIT"
] | permissive | tdpsdevextreme/TradePlusCoin | e094d60c3d8d088f26bc16819194930ce39f7f6d | b3f49f72dff3c61edaed2f4be95c4dfa21893f7f | refs/heads/master | 2020-09-05T18:47:52.916679 | 2020-07-29T07:37:59 | 2020-07-29T07:37:59 | 220,183,704 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,772 | cpp | // Copyright (c) 2019 The TradePlus_Coin developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "qt/tradeplus_coin/receivewidget.h"
#include "qt/tradeplus_coin/forms/ui_receivewidget.h"
#include "qt/tradeplus_coin/r... | [
"57004535+tdpsdevextreme@users.noreply.github.com"
] | 57004535+tdpsdevextreme@users.noreply.github.com |
633bc76ad7c72fbf9bbe5202900d5f305306a5a8 | 387549ab27d89668e656771a19c09637612d57ed | /DRGLib UE project/Source/FSD/Public/IconGeneratable.h | 19aa793436106aa620b9bafa523ccf8b9c0ced71 | [
"MIT"
] | permissive | SamsDRGMods/DRGLib | 3b7285488ef98b7b22ab4e00fec64a4c3fb6a30a | 76f17bc76dd376f0d0aa09400ac8cb4daad34ade | refs/heads/main | 2023-07-03T10:37:47.196444 | 2023-04-07T23:18:54 | 2023-04-07T23:18:54 | 383,509,787 | 16 | 5 | MIT | 2023-04-07T23:18:55 | 2021-07-06T15:08:14 | C++ | UTF-8 | C++ | false | false | 270 | h | #pragma once
#include "CoreMinimal.h"
#include "UObject/Interface.h"
#include "IconGeneratable.generated.h"
UINTERFACE()
class UIconGeneratable : public UInterface {
GENERATED_BODY()
};
class IIconGeneratable : public IInterface {
GENERATED_BODY()
public:
};
| [
"samamstar@gmail.com"
] | samamstar@gmail.com |
24c718d70add411f060c930681170600495796d3 | 1e0eb2151d862465d8c1ba9974fdda35c68628bb | /tensorflow/core/grappler/op_types.h | 8667f72c7ecd213d61c92edabc62610a7e7f1595 | [
"Apache-2.0"
] | permissive | cpy321/tensorflow | e4dcbb584bd740742d6c940d7f870f6bdc27243f | 08e4863ea6c7e75c85f097760216509f85081916 | refs/heads/master | 2020-03-08T23:43:22.461608 | 2018-04-06T20:29:34 | 2018-04-06T20:29:34 | 128,471,182 | 0 | 1 | Apache-2.0 | 2018-04-06T21:15:45 | 2018-04-06T21:15:44 | null | UTF-8 | C++ | false | false | 6,833 | h | /* Copyright 2017 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 |
a12a4947cd0f2829ba675e5b7f72b6525615275e | 9baba146d8ace8a675069f5266377380f37734a0 | /Motor Control/courseMovement/courseMovement.ino | d71476a1ef7d0b56416c029962a73e11931a3e61 | [] | no_license | kw531/UMKC-Robot-Team-01 | 9c32e5e2f5e236be66bee0e80a691d0ef4d6ca1d | 49acc005f46c0eddf7bf12b38ddd3c842c5ac587 | refs/heads/master | 2021-09-11T00:20:02.126477 | 2018-04-04T23:53:01 | 2018-04-04T23:53:01 | 104,284,120 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 536 | ino | #include "path.h"
#include "motion.h"
void setup() {
motionSetup();
pinMode(goPin, INPUT);
pinMode(modePin, OUTPUT);
pinMode(dispensePin,OUTPUT);
digitalWrite(modePin, LOW);
digitalWrite(dispensePin, LOW);
}
void loop() {
// if (digitalRead(goPin) == HIGH) {
//Serial.print("I made it!");
//runC... | [
"katiwilliams531@gmail.com"
] | katiwilliams531@gmail.com |
dbaf70d7e211d8d8b470702832b9f936b63f70f2 | b718ced8853ef2ea733fe549f1d06ff035878f85 | /source/test/main.cpp | af8ba0e7f4c13e043397ba4f96fa74500f6179e1 | [
"BSD-3-Clause"
] | permissive | erje3158/1d_fem_dem_frac | db7fe54d790c54d2d9ee1f8bfa8b476c7b7c14b6 | beb79589bc74ce1b848367feac6a4be0f359d0f6 | refs/heads/master | 2021-01-23T17:04:15.217225 | 2020-02-04T19:07:45 | 2020-02-04T19:07:45 | 102,755,354 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 481 | cpp | //
// userinput.cpp
// Jensen_code
//
// Created by Erik Jensen 8/11/2017.
// Copyright �� 2017 Erik Jensen. All rights reserved.
//
#include <iostream>
#include <fstream>
#include <string>
#include "userInput.h"
using namespace std;
int main (int argc, char * argv[])
{
const char * inputFile = argv[1];
... | [
"erje3158@topaz04.erdc.hpc.mil"
] | erje3158@topaz04.erdc.hpc.mil |
e6348cdefe3ac3341f49b8f3f7dfd49d55120ee3 | 95a43c10c75b16595c30bdf6db4a1c2af2e4765d | /codecrawler/_code/hdu5387/16216745.cpp | a28e113970516c62caff93e15de506841813faf2 | [] | no_license | kunhuicho/crawl-tools | 945e8c40261dfa51fb13088163f0a7bece85fc9d | 8eb8c4192d39919c64b84e0a817c65da0effad2d | refs/heads/master | 2021-01-21T01:05:54.638395 | 2016-08-28T17:01:37 | 2016-08-28T17:01:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,893 | cpp | #include <iostream>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <algorithm>
using namespace std;
int main() {
int T;
int hh,mm,ss;
scanf("%d",&T);
while(T--) {
scanf("%d:%d:%d",&hh, &mm, &ss);
int sum = hh * 60 * 60 + mm * 60 + ss;
sum %= (12 * 3600);
... | [
"zhouhai02@meituan.com"
] | zhouhai02@meituan.com |
1dee4d3fba315777c55cf3432226a8434c0decd0 | 1d161076bd2fe2a395e02ed7ca08afdd23618abc | /ListaFactura/nodofactura.h | ed015c8b3d0ea74d005430cca4075c4691d7502e | [] | no_license | MacoChave/Practica1_SalesManager | 3d4d0c74549c3edb12d97309a72bd081229a3c07 | 0dce62b149a0db9a94a16178bf7978662e6ad56e | refs/heads/master | 2021-05-01T09:06:55.265813 | 2018-03-18T19:00:33 | 2018-03-18T19:00:33 | 121,093,133 | 3 | 0 | null | 2018-03-25T05:01:11 | 2018-02-11T06:30:30 | C++ | UTF-8 | C++ | false | false | 569 | h | #ifndef NODOFACTURA_H
#define NODOFACTURA_H
#include <QString>
#include "Tad/tadfactura.h"
class NodoFactura
{
TADFactura *item;
NodoFactura *anterior;
NodoFactura *siguiente;
public:
NodoFactura();
NodoFactura(TADFactura *value);
~NodoFactura();
void setItem(TADFactura *value);
TADFac... | [
"totto_cha@hotmail.com"
] | totto_cha@hotmail.com |
dcb5604ca11dc09a174660339c913ef788554eb0 | 4daed53ef188fe57fc90771c9042dd137e306261 | /WebKit/Source/WebKit2/WebProcess/WebPage/qt/LayerTreeHostQt.h | 8527c528b8b7032caad102e5811c375c68250f9c | [
"Apache-2.0"
] | permissive | JavaScriptTesting/LJS | ece7d0537b514e06f7f6b26cb06a9ab4e6cd7e10 | 9818dbdb421036569fff93124ac2385d45d01c3a | refs/heads/master | 2020-03-12T14:28:41.437178 | 2018-04-25T10:55:15 | 2018-04-25T10:55:15 | 130,668,210 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,891 | h | /*
Copyright (C) 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) an... | [
"cumtcsgpf@gmail.com"
] | cumtcsgpf@gmail.com |
ebc976458b41aee4d0a76d53591a3fa334fddad3 | 1dbf007249acad6038d2aaa1751cbde7e7842c53 | /gaussdbforopengauss/include/huaweicloud/gaussdbforopengauss/v3/model/OpenGaussCoordinators.h | 11512399e8462307b03ed5c50a869603723d0677 | [] | permissive | huaweicloud/huaweicloud-sdk-cpp-v3 | 24fc8d93c922598376bdb7d009e12378dff5dd20 | 71674f4afbb0cd5950f880ec516cfabcde71afe4 | refs/heads/master | 2023-08-04T19:37:47.187698 | 2023-08-03T08:25:43 | 2023-08-03T08:25:43 | 324,328,641 | 11 | 10 | Apache-2.0 | 2021-06-24T07:25:26 | 2020-12-25T09:11:43 | C++ | UTF-8 | C++ | false | false | 1,742 | h |
#ifndef HUAWEICLOUD_SDK_GAUSSDBFOROPENGAUSS_V3_MODEL_OpenGaussCoordinators_H_
#define HUAWEICLOUD_SDK_GAUSSDBFOROPENGAUSS_V3_MODEL_OpenGaussCoordinators_H_
#include <huaweicloud/gaussdbforopengauss/v3/GaussDBforopenGaussExport.h>
#include <huaweicloud/core/utils/ModelBase.h>
#include <huaweicloud/core/http/HttpRespo... | [
"hwcloudsdk@huawei.com"
] | hwcloudsdk@huawei.com |
5bdbfaad5b245e44ce62c616e548af7da4fac546 | 65d7c3f2d18258603a03caa04aa026c00b43aef4 | /src/test/zerocoin_denomination_tests.cpp | 7a7367e0cda0107008cbe961d45457d3970149ae | [
"MIT"
] | permissive | xdccash/xdcash-core | ac9faecf5cd518a2dd4c525128ad734b8a272faa | 4a59768fa49b248b904f7077d366ce50ba9d0914 | refs/heads/master | 2020-06-05T23:54:24.263259 | 2019-07-06T14:36:46 | 2019-07-06T14:36:46 | 192,578,921 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 21,491 | cpp | // Copyright (c) 2012-2014 The Bitcoin Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "amount.h"
#include "chainparams.h"
#include "coincontrol.h"
#include "denomination_functions.h"
#include "main.... | [
"51966303+xdccash@users.noreply.github.com"
] | 51966303+xdccash@users.noreply.github.com |
2faab1e5c72ae7d1a54fe47a7e4a9d44d104bd85 | 604838d93fc6c9a7df1db59856126da74abc2853 | /SoftEngine/Library/Graphics/TriangleBuffer.h | 2c7140295cacf45b4c41e19acea406f7fd6e9561 | [] | no_license | mbellman/dungeon-crawler | b7a4f78e418eda7dd47b0a549d05e213b0fc059a | b73afbffdad6d300f70ce37b61c18735f8932c38 | refs/heads/master | 2020-04-28T07:11:30.848512 | 2019-05-11T16:17:59 | 2019-05-11T16:17:59 | 175,083,562 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 609 | h | #pragma once
#include <System/Geometry.h>
#include <vector>
namespace Soft {
class TriangleBuffer {
public:
TriangleBuffer();
~TriangleBuffer();
void bufferTriangle(Triangle* triangle);
const std::vector<Triangle*>& getBufferedTriangles();
int getTotalRequestedTriangles();
int getTotalNonStaticTriangles();
T... | [
"mbellman@nwe.com"
] | mbellman@nwe.com |
d5b818b9cbbf440d22e54fe254ab5de09f0dab58 | d115cf7a1b374d857f6b094d4b4ccd8e9b1ac189 | /pyplusplus_dev/indexing_suite_v2/indexing_suite/list.hpp | 27f271f0a96a91fade9636ac79bc63c689de7259 | [
"BSL-1.0"
] | permissive | gatoatigrado/pyplusplusclone | 30af9065fb6ac3dcce527c79ed5151aade6a742f | a64dc9aeeb718b2f30bd6a5ff8dcd8bfb1cd2ede | refs/heads/master | 2016-09-05T23:32:08.595261 | 2010-05-16T10:53:45 | 2010-05-16T10:53:45 | 700,369 | 4 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 5,762 | hpp | // Copyright (c) 2003 Raoul M. Gough
//
// Use, modification and distribution is subject to the Boost Software
// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy
// at http://www.boost.org/LICENSE_1_0.txt)
//
// Header file list.hpp
//
// Indexing algorithms support for std::list instances
... | [
"roman_yakovenko@dc5859f9-2512-0410-ae5c-dd123cda1f76"
] | roman_yakovenko@dc5859f9-2512-0410-ae5c-dd123cda1f76 |
85bf1ab4e22a82c3739bf20176e426cc629b77ea | f875f2ff25629091b2f234140891f407ef537608 | /aws-cpp-sdk-lexv2-models/include/aws/lexv2-models/model/DescribeBotLocaleRequest.h | 0651be4da96400c75885ff72578b944799e72959 | [
"MIT",
"Apache-2.0",
"JSON"
] | permissive | Adam9911/aws-sdk-cpp | 39f0c057c25053929aec41ef8de81a9664c1a616 | da78cc54da7de3894af2742316cec2814832b3c1 | refs/heads/main | 2023-06-03T10:25:53.887456 | 2021-05-15T14:49:26 | 2021-05-15T14:49:26 | 367,572,100 | 0 | 0 | Apache-2.0 | 2021-05-15T07:52:14 | 2021-05-15T07:52:13 | null | UTF-8 | C++ | false | false | 7,766 | h | /**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/lexv2-models/LexModelsV2_EXPORTS.h>
#include <aws/lexv2-models/LexModelsV2Request.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
nam... | [
"aws-sdk-cpp-automation@github.com"
] | aws-sdk-cpp-automation@github.com |
a87d32f7b168015de16195b0f4ff37307df52a98 | 7a83513e32715f1f17b72e4e74b8b9d28b480ce9 | /main.cpp | 155873c2eda5a62695a2ea0d3e9d42d1300fa931 | [] | no_license | kannan-xiao4/opengl-tutorial | bc83cbf170bd678b2a519956cf58aa7d6f27a39a | a4d59875bcb5269e29f61ac76ccbcd085ffc1cd8 | refs/heads/master | 2020-07-22T05:30:07.531373 | 2019-09-24T15:04:48 | 2019-09-24T15:04:48 | 207,087,170 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,339 | cpp | #include <cmath>
#include <cstdlib>
#include <iostream>
#include <vector>
#include <memory>
#include <unistd.h>
#include <GL/glew.h>
#include <GLFW/glfw3.h>
#include "load_window.hpp"
#include "class/Object.h"
#include "class/Shape.h"
#include "class/ShapeIndex.h"
#include "class/SolidShapeIndex.h"
#include "class/Soli... | [
"wingrakhi@live.jp"
] | wingrakhi@live.jp |
9cfdcdfa9d41ce203280c22c83ab3ad03fa8e237 | bb107c57ebf239a25d127f9c98978c42c4dd4405 | /cpp/faceDetection.cpp | 2e5a279d0dc47381333945859137971e0cb8876f | [] | no_license | pato/cfcontroller | 2e8691c40fec1c6a6a46401b5537b693384bc207 | 7c47026d0ff94b7fa01d5da85979a5d11721d0f9 | refs/heads/master | 2020-06-03T16:48:47.244187 | 2014-05-06T18:54:37 | 2014-05-06T18:54:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,419 | cpp | #include "opencv2/objdetect/objdetect.hpp"
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include <iostream>
#include <stdio.h>
using namespace std;
using namespace cv;
/** Function Headers */
void detectAndDisplay( Mat frame );
/** Global variables */
String face_cascade_... | [
"plankenau@gmail.com"
] | plankenau@gmail.com |
0c6984cf39ae1b2f3d7cacdd29bfa4eb3023223c | 6ca69f81bc9ce9362ab36a72940ebd9abc55c312 | /evaluation/2refactor/mse-error.h | b8b6a46e759bedfadb040d345415aaae3c08c1e1 | [
"Apache-2.0"
] | permissive | nicholasRenninger/dfasat | 18414e1fd776923db25a52e5376d4aa0553046b8 | d1cf04ada0831d0605a3651971ef9a02091d8823 | refs/heads/master | 2023-07-23T16:37:18.329120 | 2020-02-28T20:33:18 | 2020-02-28T20:33:18 | 237,639,593 | 2 | 1 | NOASSERTION | 2023-07-06T21:08:41 | 2020-02-01T16:04:08 | C++ | UTF-8 | C++ | false | false | 585 | h | #ifndef __MSEERROR__
#define __MSEERROR__
#include "evaluate.h"
class mse_error: public evaluation_function{
protected:
REGISTER_DEC_TYPE(mse_error);
public:
double merge_error;
virtual bool consistent(state_merger *merger, apta_node* left, apta_node* right);
virtual void update_score(state_merger *merger,... | [
"christian.hammerschmidt@uni.lu"
] | christian.hammerschmidt@uni.lu |
ffc25ba3e488b3073b52b24fd51ad13711c0c367 | 7eb2988d141e1ff7e22640a031a2e4cf493e40fc | /Hmwk/Assignment 1/Savitch_9thEd_Chap1_Prob3_CoinCounter/main.cpp | da5e8f2a588d9de2604bb425d34ba61ed49fadd7 | [] | no_license | junotang96/TangMinhQuan_2648772 | b9147f57cb87ae3c80c52c520780ba781916f43a | e96c71a0c571bfc9f1ec343cb449ad9d38dd5f78 | refs/heads/master | 2020-04-10T19:45:55.893026 | 2016-12-12T16:54:35 | 2016-12-12T16:54:35 | 68,021,414 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 758 | cpp | /*
File: main
Author: Minh Quan Tang
Created on September 15, 2016, 5:08 PM
Purpose: Count the number of coin
*/
//System Libraries
#include <iostream> //Input/Output objects
using namespace std; //Name-space used in the System Library
//User Libraries
//Global Constants
//Function prototypes
//... | [
"junolais@hotmail.com"
] | junolais@hotmail.com |
7f8246b13ec2c945d3fce31c8f517363ddd51ef3 | 2fded77fc7028f6c7ae11233f8162e5adae3dadb | /vtkVisualizer/inc/vtk/Rendering/Volume/Testing/Cxx/TestGPUVolumeRayCastMapper.cxx | c0faf2631b99c99be07a1cfcdf7d3de10b13bf56 | [] | no_license | nagyistge/MedicalVisualization | ab70c38100c487fb9fa94beb6938530de913813e | 40bcd54f465f1acdb18ccd641105a6002374fe05 | refs/heads/master | 2020-04-11T23:46:30.450284 | 2016-01-18T16:30:55 | 2016-01-18T16:30:55 | 52,168,821 | 2 | 0 | null | 2016-02-20T18:34:11 | 2016-02-20T18:34:11 | null | UTF-8 | C++ | false | false | 47,746 | cxx | /*=========================================================================
Program: Visualization Toolkit
Module: TestGPUVolumeRayCastMapper.cxx
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This s... | [
"gguayaqu@purdue.edu"
] | gguayaqu@purdue.edu |
b34a7a6e486a23bba05355af1ae54113d315adaa | 4dbb45758447dcfa13c0be21e4749d62588aab70 | /iOS/Classes/Native/mscorlib_U3CPrivateImplementationDetailsU3E_U24Arr3379220377.h | 7d2830e6e8ba24c70ec769e7fa9aa940e60a31ba | [
"MIT"
] | permissive | mopsicus/unity-share-plugin-ios-android | 6dd6ccd2fa05c73f0bf5e480a6f2baecb7e7a710 | 3ee99aef36034a1e4d7b156172953f9b4dfa696f | refs/heads/master | 2020-12-25T14:38:03.861759 | 2016-07-19T10:06:04 | 2016-07-19T10:06:04 | 63,676,983 | 12 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,265 | h | #pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
#include "mscorlib_System_ValueType1744280289.h"
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignore... | [
"lii@rstgames.com"
] | lii@rstgames.com |
f43b6bf84dafc918a8d736eb4b2b339141be6d93 | 4d98e912914065939775b3aa4ecbd78b18ca00c2 | /main.cpp | b5388c21cc58a8586e644dbd8d31126710f5693b | [] | no_license | longyf/exer-18 | 9dff58cb504f71a1a3f843e4c5a2fb27e47b7897 | 6523cb0589351c8dc86a1b67c797a82042ee9222 | refs/heads/master | 2020-03-13T06:51:46.242908 | 2018-04-25T13:48:39 | 2018-04-25T13:48:39 | 131,013,467 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,913 | cpp | #include <iostream>
#include <stdexcept>
#include "listNode.h"
using namespace std;
void printList(ListNode **head) {
if (*head==nullptr) {
cout<<"The list is already empty."<<endl;
return;
}
ListNode *pNode=head[0];
while (pNode!=nullptr) {
cout<<pNode->value<<" ";
pNode=pNode->next;
}
cout<<endl;
}
... | [
"longyf@pku.edu.cn"
] | longyf@pku.edu.cn |
457de1198fd7634d8a5123cdd513db7227392cff | 1d9b1b78887bdff6dd5342807c4ee20f504a2a75 | /lib/libcxx/include/__algorithm/ranges_fill.h | 7ce4a76ba9e967d7eba1fd4829dd55c707fab305 | [
"MIT",
"LicenseRef-scancode-other-permissive",
"NCSA",
"LLVM-exception",
"Apache-2.0"
] | permissive | mikdusan/zig | 86831722d86f518d1734ee5a1ca89d3ffe9555e8 | b2ffe113d3fd2835b25ddf2de1cc8dd49f5de722 | refs/heads/master | 2023-08-31T21:29:04.425401 | 2022-11-13T15:43:29 | 2022-11-13T15:43:29 | 173,955,807 | 1 | 0 | MIT | 2021-11-02T03:19:36 | 2019-03-05T13:52:53 | Zig | UTF-8 | C++ | false | false | 1,900 | h | //===----------------------------------------------------------------------===//
//
// 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-Identifier: Apache-2.0 WITH LLVM-exception
//
//===---------------------------... | [
"andrew@ziglang.org"
] | andrew@ziglang.org |
c8c0da0a5d22e1ce59881302b5bc6eb047806dde | 1af97641ad391b037572113151c4e4a9f40308a7 | /Tetris/Component.h | 4fadba56be74939a9c577a0e9e2ec46d54b86609 | [] | no_license | axelbertrand/Tetris | 5c075c6aa14ac8dba0fc78a5782d6cdfb3f057cc | 673a3a8cf19aa6dfcc29f2a0af1cacd7b4a3ad00 | refs/heads/master | 2022-04-10T18:29:19.385818 | 2020-02-26T20:50:59 | 2020-02-26T20:50:59 | 116,061,109 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 571 | h | #pragma once
#include "GameLib.h"
#include <memory>
namespace gui
{
class Component : public sf::Drawable, public sf::Transformable, private sf::NonCopyable
{
public:
Component() = default;
virtual ~Component() = default;
virtual bool isSelectable() const = 0;
bool isSelected() const;
virtual void selec... | [
"axel.bertrand2@etu.univ-lyon1.fr"
] | axel.bertrand2@etu.univ-lyon1.fr |
377e6e27cf51e5f3f356429e4c005dc35c7b2167 | b28305dab0be0e03765c62b97bcd7f49a4f8073d | /chrome/browser/net/spdyproxy/data_reduction_proxy_browsertest.cc | 9b1a8a5b44524bd2a249009fe56d172449f4026a | [
"BSD-3-Clause"
] | permissive | svarvel/browser-android-tabs | 9e5e27e0a6e302a12fe784ca06123e5ce090ced5 | bd198b4c7a1aca2f3e91f33005d881f42a8d0c3f | refs/heads/base-72.0.3626.105 | 2020-04-24T12:16:31.442851 | 2019-08-02T19:15:36 | 2019-08-02T19:15:36 | 171,950,555 | 1 | 2 | NOASSERTION | 2019-08-02T19:15:37 | 2019-02-21T21:47:44 | null | UTF-8 | C++ | false | false | 28,884 | cc | // Copyright 2018 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 <tuple>
#include "base/strings/strcat.h"
#include "base/strings/string_util.h"
#include "base/test/metrics/histogram_tester.h"
#include "base/te... | [
"artem@brave.com"
] | artem@brave.com |
15ab615739117bf6be17060b2f6eae9d9874f81d | a46fae5a473963f970f3cfc654498dba455d5208 | /src/recsys/thrift/cpp/DataHost.h | 647bb71fd7b050f5ab06fd9d887f83420600d2b4 | [] | no_license | manazhao/RecEngine | 1465e60511bdc6866b53ff5ee2f703e45042313b | 8a9081ed68742a9bc46a467e2dc0a106e034e719 | refs/heads/master | 2020-05-01T03:40:07.573554 | 2014-10-06T12:14:17 | 2014-10-06T12:14:17 | 18,185,495 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | true | 39,979 | h | /**
* Autogenerated by Thrift Compiler (1.0.0-dev)
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
* @generated
*/
#ifndef DataHost_H
#define DataHost_H
#include <thrift/TDispatchProcessor.h>
#include "data_types.h"
namespace recsys { namespace thrift {
class DataHostIf {
public:
virtua... | [
"manazhao@gmail.com"
] | manazhao@gmail.com |
921da29a2a172607c235743c27ac90fb0fc46581 | b3b965f9ae51dc255af6d16b4f057b2648507830 | /source/Level1.cpp | 03c9fb811b95f9a0a86e859a1313d607d83a6bd7 | [] | no_license | rad-corps/FinalDefense | 9fd956575f13202066bd29f49e42a2a31ea97460 | a85aeee6c59a989c59c4ad988a5646a06c68f7b9 | refs/heads/master | 2020-04-06T04:28:58.589028 | 2015-03-25T10:17:49 | 2015-03-25T10:17:49 | 32,300,295 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,912 | cpp | #include "Level1.h"
#include "Enemy1.h"
#include "Enemy2.h"
#include <iostream>
Level1::Level1(float * plyrX, float * plyrY) : LevelBase(plyrX, plyrY)
{
CreateNextWave();
this->plyrX = plyrX;
this->plyrY = plyrY;
}
Level1::~Level1()
{
}
//Just like the drinking game
// 1 2 3 4 ... | [
"hulbert.adam@gmail.com"
] | hulbert.adam@gmail.com |
86f88f6570bd1483e95e7f86be44e64dce7e823f | c724f0be56a2c45d523d47924b78ba635cb742d9 | /lab2/src/fifo-queue.h | bb17ca0b8a56c1a49ade71710dda967e419e2d45 | [] | no_license | warejc/CSE274b | 9a5a203f8165d0246ca58b9ece9ac58d43de48e9 | e826099b98d64d45976d3fd3b0e8490b382c3663 | refs/heads/master | 2021-01-24T20:02:21.753475 | 2014-12-05T00:20:21 | 2014-12-05T00:20:21 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 736 | h | /*
* fifo-queue.h
*
* Created on: Sep 2, 2014
* Author: warejc2
*/
#ifndef FIFO_QUEUE_H_
#define FIFO_QUEUE_H_
class FifoQueue {
private:
char array[50];
public:
FifoQueue();
bool Enqueue(char item);
char Dequeue();
};
FifoQueue::FifoQueue(){
//Complexity is o^n
for(int i = 0; i < sizeof(... | [
"jcware8@gmail.com"
] | jcware8@gmail.com |
c6ac300b2cffad3e6e1ed5103589dd3ff8a625d1 | df6ddd4c08f8714f018cfa4b151e914284add7cb | /zipf.cpp | 7e0e73db951c3b1bd63548311fc69c7c9b34ebdd | [] | no_license | Yuya-Nakata/Zipf_make | 08bf7d829b41e14f5241ab8cc6b3f88f8a41cfcc | fe32fc6b03bb01d7443523f7a1dae19a9d78758f | refs/heads/master | 2020-04-29T21:53:22.239017 | 2019-04-17T02:17:05 | 2019-04-17T02:17:05 | 176,428,425 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,165 | cpp | /*
zip.h
created on: 2019/2/1
Author Yuya Nakata
*/
#include <iostream>
#include <vector>
#include<cmath>
using namespace std;
int main(){
double alpha = 0.7;
double numerator = 0;
int Ncontnets = 100;
//int trycount = 10000; //試行回数
// vector <int> A(100);
/// for(int i=0; i<100; i++){
// A[i]=0;
// }
... | [
"noreply@github.com"
] | noreply@github.com |
29c9388b4891fd932fb46f02d09673e3905e61a2 | ff6ee3069abb0a04410c4c625bc47d85ca5a7b12 | /CL15/CL15.cpp | 0c8a89451c35e6457d1f9afe6a075c6bce6e371b | [] | no_license | bsnow3/CS200 | 8f900a798c86ccce7ae3b6ffa6f890e65d7932be | a7b9ec9bfc1fd74d5ed8894e69278b71c28039f8 | refs/heads/master | 2021-01-11T18:10:40.467184 | 2017-04-28T01:17:07 | 2017-04-28T01:17:07 | 79,510,476 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,110 | cpp | #include <iostream>
#include <fstream>
#include <string>
using namespace std;
class Room
{
private :
string m_title;
int m_width;
int m_length;
public :
int GetWidth()
{
return m_width;
}
int GetLength()
{
return m_length;
}
int GetArea()
{
return m_length * m_width;
}
string GetTitle()
{
return ... | [
"noreply@github.com"
] | noreply@github.com |
9fdda35c9416c75dd139581ae9f7462584fa4f38 | 9e8dd3691b77b3739f670f1cbf5df887a54d96f6 | /Plataforma.cpp | 158353f47cb8b5722e56da2c501d5915f0e984e2 | [] | no_license | antoniorv6/JoustGame | d8ef0be7767f80fae8cdb1577dd501ce40703cbd | 3b8a43b416bc2158695aafac9d028af6f93da759 | refs/heads/master | 2020-03-09T10:36:10.519155 | 2018-04-13T08:47:18 | 2018-04-13T08:47:18 | 128,740,810 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,954 | cpp | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/*
* File: Plataforma.cpp
* Author: antonio
*
* Created on 16 de febrero de 2018, 17:12
*/
#include "Plataforma.hpp"
namesp... | [
"antoniorv6@gmail.com"
] | antoniorv6@gmail.com |
0d0ade11442b9a35b5eac43ece72ac5788fbfc50 | d1fdf0102b11ea19c06e482b07b093d6c28e01b6 | /orbit/master_server/slavedata_collector.cc | 97c96cad1f01e0c1a06c4d221a0564ab425e7453 | [] | no_license | romange/StreamOperation | ef1af6a12b3ed035476e8c6234af235103e21918 | 7c9baf3f06255708bc20506123efa75edb0f46c0 | refs/heads/master | 2021-05-03T05:55:42.169016 | 2017-07-09T16:01:36 | 2017-07-09T16:01:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,617 | cc | /*
* Copyright (C) 2016 Orangelab Inc. All Rights Reserved.
* Author: zhihan@orangelab.cn (Zhihan He)
*
* slavedata_collector.cc
* ---------------------------------------------------------------------------
* Defines the exporte_var for the variables exported to /varz handler.
* ---------------------------------... | [
"jluluqu@163.com"
] | jluluqu@163.com |
486b0043447597440d90781e7656cba41da74cf5 | fea08e89058a927d341447a28bf716ef05db4038 | /libraries/I2CKeyPad/I2CKeyPad.h | 9aa22683eca5fc43af539859ce52e560012037a9 | [
"MIT"
] | permissive | hendog993/Arduino | 774e48deab0fb3e417613a2d3b9953043c68a8e3 | 0ebb451644154fbe63b42c32f933a9ba2a476283 | refs/heads/master | 2022-11-11T02:49:39.998758 | 2022-11-07T14:28:23 | 2022-11-07T14:28:23 | 169,162,653 | 0 | 0 | MIT | 2019-02-04T22:54:56 | 2019-02-04T22:54:56 | null | UTF-8 | C++ | false | false | 1,466 | h | #pragma once
//
// FILE: I2CKeyPad.h
// AUTHOR: Rob Tillaart
// VERSION: 0.3.2
// PURPOSE: Arduino library for 4x4 KeyPad connected to an I2C PCF8574
// URL: https://github.com/RobTillaart/I2CKeyPad
#include "Arduino.h"
#include "Wire.h"
#define I2C_KEYPAD_LIB_VERSION (F("0.3.2"))
#define I2C_KEYPAD_NOK... | [
"rob.tillaart@gmail.com"
] | rob.tillaart@gmail.com |
f1b81a0bdc78b502db708c05dce11a422ad5aec6 | ee9d6a53eb2f4f506f02b553cf397e0570a37540 | /src/wallet/rpcdump.cpp | 7fc8c3463bde1de31e7812e4df0efddfae3c8bf3 | [
"MIT"
] | permissive | adcoin-project/AdCoin-old | 399f7091810defd742f0370435dea60a559feefe | ab202457b17ec7014e0afc862edfc3f6da88fb67 | refs/heads/master | 2021-09-26T11:02:02.943144 | 2018-10-29T20:04:13 | 2018-10-29T20:04:13 | 97,236,000 | 3 | 0 | MIT | 2019-02-18T00:09:45 | 2017-07-14T13:21:52 | C++ | UTF-8 | C++ | false | false | 45,951 | cpp | // Copyright (c) 2009-2016 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 "base58.h"
#include "chain.h"
#include "rpc/server.h"
#include "init.h"
#include "validation.h"
#include "script/scr... | [
"peter@codebuffet.co"
] | peter@codebuffet.co |
155a32397bfda5306e9c98e9a45f57f1f7991d61 | 029d1fe4fde9ee2d066304476cec46b451f046fa | /unicode_far/UCD/nsSJISProber.h | b63bb5d64e5d4082277e18bb6dd483ff36fbb41a | [
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | shmuz/Spring | a6a38a3cb53e2ed424c4b6012d5a1dfbb416ae2b | 2b604a3dad5d19af85d0713c655c770dcaa69a73 | refs/heads/master | 2021-01-22T03:01:37.293701 | 2014-04-26T17:56:23 | 2014-04-26T17:56:23 | 4,823,343 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,934 | h | /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the... | [
"zg@bmg.lv"
] | zg@bmg.lv |
a29d869754963b7b8a92b35df0de53fbe393e6f9 | 99249e222a2f35ac11a7fd93bff10a3a13f6f948 | /ros2_mod_ws/install/include/robobo_msgs/srv/talk__request.hpp | c56822dbfcce63dd101586884868a2003b1e4cb1 | [
"Apache-2.0"
] | permissive | mintforpeople/robobo-ros2-ios-port | 87aec17a0c89c3fc5a42411822a18f08af8a5b0f | 1a5650304bd41060925ebba41d6c861d5062bfae | refs/heads/master | 2020-08-31T19:41:01.124753 | 2019-10-31T16:01:11 | 2019-10-31T16:01:11 | 218,764,551 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 360 | hpp | // generated from rosidl_generator_cpp/resource/msg.hpp.em
// generated code does not contain a copyright notice
#ifndef ROBOBO_MSGS__SRV__TALK__REQUEST_HPP_
#define ROBOBO_MSGS__SRV__TALK__REQUEST_HPP_
#include "robobo_msgs/srv/talk__request__struct.hpp"
#include "robobo_msgs/srv/talk__request__traits.hpp"
#endif ... | [
"lfllamas93@gmail.com"
] | lfllamas93@gmail.com |
1078e50023397609fa9563f73725c9db2f791033 | c7ec53823bda5e3ea2998a608313fae8c42c633c | /cpp/oneapi/dal/detail/array_compat.hpp | 6f4cc862a64aebaa5e32f997e7526c6c3a37c02e | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference",
"Intel",
"LicenseRef-scancode-warranty-disclaimer",
"BSD-2-Clause",
"MIT",
"Zlib"
] | permissive | orazve/oneDAL | 837c202e1e229a3740f8f79efbfc97c9917fd8aa | 0ef858641a7d2e81bd73b7b75ce8fefa7cc0e87b | refs/heads/master | 2022-01-30T07:29:22.311883 | 2022-01-03T14:53:59 | 2022-01-03T14:53:59 | 253,419,713 | 0 | 0 | Apache-2.0 | 2021-05-25T16:29:13 | 2020-04-06T07:00:34 | C++ | UTF-8 | C++ | false | false | 11,280 | hpp | /*******************************************************************************
* Copyright 2020-2021 Intel Corporation
*
* 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.apa... | [
"noreply@github.com"
] | noreply@github.com |
ae2fb18f15e35456ec6bd729ad96c7aafc059a76 | e4625e88354a5a5964441bdfe474ff20a04b34c9 | /Source/Common/HyContainerImpl.h | b329bca339a8034bd5aa653cb4ca33832e912693 | [] | no_license | frostazy/VoxelGame | 0d46d63587ee76b34a6384295d60583a43bb6206 | 6ab76fd001fc601ba30ebab4b4be3f6b52ed63e6 | refs/heads/master | 2020-12-03T09:15:01.697059 | 2016-09-19T03:11:06 | 2016-09-19T03:11:06 | 68,564,067 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 774 | h | #pragma once
#include <vector>
namespace HyVoxel {
template<typename T>
class hyvector : public std::vector<T>
{
public:
int Find(const T& val) const {
const_iterator findRes = std::find(begin(), end(), val);
if (findRes != end())
return (int)(findRes - begin());
else
return -1;
}
hyvecto... | [
"Zhou Yun"
] | Zhou Yun |
911d9bca9c411e8b2dbfc6e0fb6f7bd4aca53424 | bdf425c54f5a42eb3fa4d4b14cad76486aa761b0 | /algorithm/1026_보물.cpp | b71e7f6e319e6385e3a61e9655fb076624ecd1f3 | [] | no_license | SoHyunJiiiiiii/myCode | 130332fde96fc86e008efcce5386a37dde74d832 | 3df247a1a32daef6333c39b6dfe5336589babe31 | refs/heads/master | 2020-12-30T15:53:52.630922 | 2017-10-09T01:36:31 | 2017-10-09T01:36:31 | 91,177,182 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 652 | cpp | //
// main.cpp
// 1026_보물
//
// Created by 지소현 on 2017. 9. 2..
// Copyright © 2017년 지소현. All rights reserved.
//
#include <iostream>
#include <algorithm>
using namespace std;
int main(int argc, const char * argv[]) {
// insert code here...
int N,result=0;
int a[51]={0,},b[51]={0,};
scanf("%... | [
"thgus4545@daum.net"
] | thgus4545@daum.net |
eb444b2c7ecc962c8c934013cc3d9304b613d8d0 | a3d6556180e74af7b555f8d47d3fea55b94bcbda | /chrome/browser/ash/borealis/testing/features.h | 4f700b43e94d79d2df2c6494c873e39fc1d21239 | [
"BSD-3-Clause"
] | permissive | chromium/chromium | aaa9eda10115b50b0616d2f1aed5ef35d1d779d6 | a401d6cf4f7bf0e2d2e964c512ebb923c3d8832c | refs/heads/main | 2023-08-24T00:35:12.585945 | 2023-08-23T22:01:11 | 2023-08-23T22:01:11 | 120,360,765 | 17,408 | 7,102 | BSD-3-Clause | 2023-09-10T23:44:27 | 2018-02-05T20:55:32 | null | UTF-8 | C++ | false | false | 1,034 | h | // Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_ASH_BOREALIS_TESTING_FEATURES_H_
#define CHROME_BROWSER_ASH_BOREALIS_TESTING_FEATURES_H_
#include "base/memory/raw_ptr.h"
#include "base/test/scoped_fea... | [
"chromium-scoped@luci-project-accounts.iam.gserviceaccount.com"
] | chromium-scoped@luci-project-accounts.iam.gserviceaccount.com |
b68200775bd04b2cfb286dbfd74fe70f07866337 | 23d61d61262946c7a6078b890367aa8fb85a0399 | /include/snake.h | 3501602983fb290401f3e33572f8a9a6e1b92f71 | [] | no_license | Alakeel/CppND-Capstone-Snake-Game | f83d180f4f5e0eef3ada96d7a1b3afc443b09393 | f75f30dd0f7ac3b65a41e7f3061d8328a80e1305 | refs/heads/master | 2022-11-19T08:04:26.620056 | 2020-07-19T13:48:52 | 2020-07-19T13:48:52 | 279,513,513 | 0 | 0 | null | 2020-07-14T07:25:22 | 2020-07-14T07:25:21 | null | UTF-8 | C++ | false | false | 1,153 | h | #ifndef SNAKE_H
#define SNAKE_H
#include "SDL.h"
#include <vector>
class Snake
{
public:
enum class Direction
{
kUp,
kDown,
kLeft,
kRight
};
Snake(int grid_width, int grid_height);
~Snake() = default;
Snake(const Snake &source);
Snake& operator=(const Snake &source);... | [
"Abdul.Alakeel@gmail.com"
] | Abdul.Alakeel@gmail.com |
a5925ce80ba389ae3327771ed0963fb1f868b23a | 25c877d5e922fa46cad1a7781cd15ada6fad2ce6 | /Dev_class11_handout2_homework/Dev_class11_handout2/Motor2D/Window.h | df956e3d22c8c6b0caa5680c76b4cdbd5a39ffcb | [] | no_license | RustikTie/GameDev_Handouts | b43be92cec0c23ea7fb2b42c3442b9b7f9f84769 | 6c4a308b72bbad58c4b47f229bf571102f37841a | refs/heads/master | 2021-08-23T10:54:14.106457 | 2017-12-04T15:54:29 | 2017-12-04T15:54:29 | 104,047,513 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 371 | h | #ifndef __WINDOW_H__
#define __WINDOW_H__
#include "Element.h"
#include "p2List.h"
class Window : public Element
{
public:
Window(int x, int y, ElementType type, SDL_Rect rec);
void LinkElement(Element* elem);
void Draw();
~Window();
private:
SDL_Rect rec;
SDL_Texture* tex = nullptr;
p2List<Element*>* link... | [
"rustiktie@gmail.com"
] | rustiktie@gmail.com |
3eb8595f78ecc1016b3337e167ef74f77ccc2867 | b02e73154282b30c64a119c8008dc1a14c1c45e9 | /cxnumlib.cpp | e4ccad9433c8d91fcc0b118ea141c88da1a962d5 | [] | no_license | tyllukasz/Math_Complex_Numbers_Library | 36ae037788abcb3f8defe5d0f759acf128da75d4 | e19a4e4855ab6441af4a485201dfe806d16c3b65 | refs/heads/main | 2023-06-20T21:57:33.843386 | 2021-08-01T13:55:29 | 2021-08-01T13:55:29 | 391,400,459 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,420 | cpp | #include <iostream>
#include <cstdlib>
#include <cmath>
#include "cxnumlib.hpp"
//constructor
ComplexNumber::ComplexNumber(double in_re, double in_im): re(in_re), im(in_im) {}
//destructor
ComplexNumber::~ComplexNumber() {}
//methods
//display number
void ComplexNumber::display() {
if (im > 0 ) {
... | [
"tyl.lukasz@protonmail.com"
] | tyl.lukasz@protonmail.com |
9f3148e4d4829d1b6273d995537aaf5328bedf36 | 9d9fed4fa45e3a02ff403e5249042989871f6454 | /KWResearchWork/trunk/KWResearchWork/ControlPanel/CPExtrusion.cpp | 021fdee37a670f604827ac174e2725f7ee12c3cc | [] | no_license | kaiwangntu/surface-reconstruction | 688c247283f2a661428bfda4e00abee9b52aec22 | b3672155181ad2aaced1bb94207b9b8a42e26041 | refs/heads/master | 2021-05-29T20:31:28.038057 | 2013-05-25T09:44:43 | 2013-05-25T09:44:43 | 40,125,371 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,376 | cpp | // CPExtrusion.cpp : implementation file
//
#include "stdafx.h"
#include "../KWResearchWork.h"
#include "CPExtrusion.h"
// CCPExtrusion dialog
IMPLEMENT_DYNAMIC(CCPExtrusion, CDialog)
CCPExtrusion::CCPExtrusion(CWnd* pParent /*=NULL*/)
: CDialog(CCPExtrusion::IDD, pParent)
{
}
CCPExtrusion::~C... | [
"wangk0705@2731d4dc-b63b-3451-c659-d6235836ed29"
] | wangk0705@2731d4dc-b63b-3451-c659-d6235836ed29 |
dd7a3d5a1fbab4aca532966b1c88647e340546ff | 58d35c7cb0d26524f1910976f2a3326862098c00 | /src/arith_uint256.cpp | 62b4fb7286092097085bffc55b54c823230b8865 | [
"MIT"
] | permissive | TMRO2020/LeefCoin | e0a53110e1d0e39f1fb489450cc6bec30a015c43 | 97a54171f6a7207338d8a8b904cfb087de53c361 | refs/heads/main | 2023-06-16T09:16:58.109520 | 2021-07-08T06:10:02 | 2021-07-08T06:10:02 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,507 | cpp | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2018 The Bitcoin Core developers
// Copyright (c) 2021 The LeefCoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include <arith_uint256.h>
#i... | [
"gilad.leef@gmail.com"
] | gilad.leef@gmail.com |
6f4de19634c27b6ccb1e070b52a4260d2843a059 | f739df1f252d7c961ed881be3b8babaf62ff4170 | /softs/SCADAsoft/5.3.2/inc/hisltserver_i.h | b8045b0c67dceabbbe5e0df3f16acd1631557a73 | [] | no_license | billpwchan/SCADA-nsl | 739484691c95181b262041daa90669d108c54234 | 1287edcd38b2685a675f1261884f1035f7f288db | refs/heads/master | 2023-04-30T09:15:49.104944 | 2021-01-10T21:53:10 | 2021-01-10T21:53:10 | 328,486,982 | 0 | 0 | null | 2023-04-22T07:10:56 | 2021-01-10T21:53:19 | C++ | ISO-8859-1 | C++ | false | false | 7,448 | h | //-*-c++-*-
/******************************************************************************/
/* */
/* FILE : hisltserver_i.h */
/* FULL NAME : ... | [
"billpwchan@hotmail.com"
] | billpwchan@hotmail.com |
8c5e97d995863cd53a32b94e4991eba067fb19b3 | 03ae9e574fc4005da14c2692d9c359e2d40cb593 | /765.cpp | 5cf83510801886da7485f32352aed6c92052110b | [] | no_license | rum2mojito/Leetcode | addfb30375780d509841bf9b84365f745e21c94d | 89eaf6d78622205d6606694147998ce98be40b00 | refs/heads/master | 2022-11-10T01:30:57.660130 | 2022-10-02T12:44:03 | 2022-10-02T12:44:03 | 121,218,790 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 681 | cpp | // 765. Couples Holding Hands
class Solution {
public:
int minSwapsCouples(vector<int>& row) {
vector<int> pos(row.size(), 0);
for(int i=0; i<row.size(); i++)
pos[row[i]] = i;
int res = 0;
for(int i=0; i<row.size(); i+=2) {
if(row[i]/2 == row[i+... | [
"noreply@github.com"
] | noreply@github.com |
8d347fd3614943bb58117ffbdfede052b6db5b11 | 4c571269e54c892a0b9fa75be0cbe680e0a393a7 | /dotNetNumerical/NumericalComputation/NumericalComputation.cpp | 4836c56e4a59efef0e6ced4883168c62cd0bc750 | [] | no_license | umbersar/cpp | 08546d2dc210dfe8b406c248eee12d0176bde74c | 14d29c91fab8dd59166a63854a36018af45d8cfa | refs/heads/master | 2023-07-08T05:49:27.130173 | 2021-08-16T06:17:03 | 2021-08-16T06:17:03 | 286,211,494 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,130 | cpp | // NumericalComputation.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
std::map<double(*)(double), std::string> function_map;
#define REGISTER_FUNCTION(f) function_map[f] = BOOST_PP_STRINGIZE(f);
//4sinx-e^x=0
//solve for x=sin^-1(e^x/4)
//for iterative solver using successive appro... | [
"ramneek.singh@csiro.au"
] | ramneek.singh@csiro.au |
e3def6f0334d378434d837c58147400c4fe6b395 | a66456f188ddd320615e2d6d88054f566c94069e | /src/exceptions/runtime_exception.h | 58e0f36ea11cfcda7248eb02226a18c7cee38f96 | [
"MIT"
] | permissive | joakimthun/stereo | a7f3198bfacea97abe6f11b8279663304047b54f | fcebb352bf0b0eb5314ad429de1abbccb43fb392 | refs/heads/master | 2020-04-18T00:13:48.996492 | 2016-10-03T20:46:11 | 2016-10-03T20:46:11 | 67,899,483 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 289 | h | #pragma once
#include "stereo_exception.h"
namespace stereo {
namespace exceptions {
class RuntimeException : public StereoException
{
public:
inline RuntimeException(const std::wstring& message) : StereoException(message) {}
};
}
}
| [
"joakimthun@gmail.com"
] | joakimthun@gmail.com |
eb300bdd58e16a2a16d7211f07a5d4d2b11d19eb | eee6c9efb7ee2767188ce958b41e4a049eee19ba | /calc__relaxation__1000.h | 71387ee9dcf0d8466c01282f7d75d2b3caf3f774 | [] | no_license | cjfullerton/MC_glass | e618e7ed8336925911dc3f2b9a04fd44a538ed46 | d554b3dcdb989bcac62cdc76f34e1e53f3736436 | refs/heads/main | 2023-08-10T20:17:33.480354 | 2021-09-24T15:26:22 | 2021-09-24T15:26:22 | 370,006,667 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 759 | h | #include "poly_sphere.h"
#include "part_hard_spheres.h"
#include "no_field.h"
#include "no_boundary.h"
#include "JRand_dyn.h"
#include "box__neighbour_list__cell_list__HS.h"
#include "box__neighbour_list__cell_list.h"
#include "integrator_MC_NPT_HS.h"
#include "sys_info__mean_squared_displacement.h"
#include "sys_info_... | [
"3920981+cjfullerton@users.noreply.github.com"
] | 3920981+cjfullerton@users.noreply.github.com |
12525e7e536e6c1bc4c3caa6f04e5ce496c5b90c | 018f773f7165b8d9ef95a39b385ebd0cd9318448 | /sycl/test-e2e/ESIMD/ext_math.cpp | 47a9e7b251532166d5505606a6eb88e65989e682 | [
"NCSA",
"LLVM-exception",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | dm-vodopyanov/llvm | 70c1a915188ef04aed03a5d248ab8d401fcbd8ae | 8e0cc4b7a845df9389a1313a3e680babc4d87782 | refs/heads/sycl | 2023-08-30T20:55:11.736361 | 2023-08-04T22:42:35 | 2023-08-04T22:44:40 | 353,722,444 | 0 | 1 | NOASSERTION | 2023-06-19T11:10:19 | 2021-04-01T14:12:45 | null | UTF-8 | C++ | false | false | 17,479 | cpp | //==---------------- ext_math.cpp - DPC++ ESIMD extended math test --------==//
//
// 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-Identifier: Apache-2.0 WITH LLVM-exception
//
//===---------------------------... | [
"noreply@github.com"
] | noreply@github.com |
2ad45487fc9039e9411c50a3fa4693a801e47605 | 86368e5fc2ca6ab93267675689c85c06540cd1dd | /CODE/LL/classic/0general.cpp | e965ed77537d3481240b693f3e6656fb8fa361cf | [] | no_license | alenthankz/Master_DSA | 471e091720fff6e3b8c1e38965af73e566728ddf | 131fc45211e1fe08c958f8d34674faa90c16fc8c | refs/heads/main | 2023-07-28T00:01:46.291091 | 2021-09-08T05:39:43 | 2021-09-08T05:39:43 | 404,223,486 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,578 | cpp | #include<bits/stdc++.h>
using namespace std;
// push pop insert delete
class Node {
public:
Node* next;
int data;
Node(int dat){
next=NULL;
data=dat;
}
};
void push(Node ** head,int dat){
Node * tNode =new Node(dat);
if((*head)==NULL){
*head =tNode;
return;
... | [
"alenthankz@gmail.com"
] | alenthankz@gmail.com |
82c9cf50119c80e8bdbd24728e466a9934b0fb54 | 0b68953d7f9feace080fb4d80a3ab271e025852b | /problem_solving/leetcode/1905_countSubIslands_medium.cc | eaf3ddfc153c759972de6788dbaa259286ef6b80 | [] | no_license | xlpiao/code | 465f6b606f377919f195db2c596639ec9ccc856d | 0a929107c0d145f53ec511e2f73b90d4f8cdf749 | refs/heads/master | 2023-06-22T19:06:24.622423 | 2023-06-08T13:46:34 | 2023-06-12T02:13:11 | 38,992,963 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,593 | cc | #include <iostream>
#include <vector>
using namespace std;
class Solution {
public:
void dfs(vector<vector<int>>& grid1, vector<vector<int>>& grid2, int r, int c,
int row, int col, int& check) {
if (r < 0 || c < 0 || r >= row || c >= col || grid2[r][c] == 0) return;
if (grid1[r][c] != grid2[r][... | [
"lanxlpiao@gmail.com"
] | lanxlpiao@gmail.com |
f2f2a3fbd11617ca259c80ea31c9cc6f89c0c5bb | e2b0fa9f1ef3db511d8044bea80e7b98448b0b7b | /Source/WinWaker/SplashDlg.h | 61bcda10d21ee942397d951bfced641445d76e22 | [
"Apache-2.0",
"LicenseRef-scancode-other-permissive",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | bingart/WinWaker | 7d4f18501d31189103699e300380837a4d227921 | dc3f6c067a5f215c17aa2e0c3386f92f158ec941 | refs/heads/master | 2021-01-21T12:46:11.053176 | 2017-09-26T03:41:35 | 2017-09-26T03:41:35 | 102,094,327 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 506 | h | #pragma once
#include "pictureex.h"
// CSplashDlg dialog
class CSplashDlg : public CDialogEx
{
DECLARE_DYNAMIC(CSplashDlg)
public:
CSplashDlg(CWnd* pParent = NULL); // standard constructor
virtual ~CSplashDlg();
// Dialog Data
enum { IDD = IDD_SPLASH_DIALOG };
protected:
virtual void DoDataExchange(CDataEx... | [
"feisun@westwin.com"
] | feisun@westwin.com |
f1ff3dd2ef5d88b01fab354d66a894262d9c4a6d | 4fb6ac5060727f05abd056cf9f3ee830a0734aee | /codeforces/1113C.cpp | cdc62e1c016dd70c5781a106a658ad19ad443f69 | [] | no_license | booneng/competitive_programming | 6141c1ab60e49ffd1ae1cf4ede018622b122ed6b | b6a39e1574c4b8b513945d6fa6e9075a4f458370 | refs/heads/master | 2021-04-15T12:50:59.351207 | 2019-07-23T08:01:06 | 2019-07-23T08:01:06 | 126,816,788 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 583 | cpp | #include <iostream>
#include <map>
#include <vector>
using namespace std;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
int n;
cin >> n;
map<int, long long> seen_odd;
map<int, long long> seen_even;
seen_odd[0]++;
int x = 0;
long long cnt = 0;
for (int i = 0; ... | [
"ohbooneng@gmail.com"
] | ohbooneng@gmail.com |
eda4edce9a85e2aaa8b309545fdb0f3c23b08533 | 385cfbb27ee3bcc219ec2ac60fa22c2aa92ed8a0 | /ThirdParty/bullet-2.75/Extras/COLLADA_DOM/include/1.4/dom/domCommon_newparam_type.h | 70da2346e71687a7a17b2068fc8e12e753c0935c | [
"Zlib",
"LicenseRef-scancode-unknown-license-reference",
"LicenseRef-scancode-unknown",
"MIT"
] | permissive | palestar/medusa | edbddf368979be774e99f74124b9c3bc7bebb2a8 | 7f8dc717425b5cac2315e304982993354f7cb27e | refs/heads/develop | 2023-05-09T19:12:42.957288 | 2023-05-05T12:43:35 | 2023-05-05T12:43:35 | 59,434,337 | 35 | 18 | MIT | 2018-01-21T01:34:01 | 2016-05-22T21:05:17 | C++ | UTF-8 | C++ | false | false | 15,682 | h | /*
* Copyright 2006 Sony Computer Entertainment Inc.
*
* Licensed under the SCEA Shared Source License, Version 1.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://research.scea.com/scea_shared_source_license.html
*
* Unless r... | [
"rlyle@palestar.com"
] | rlyle@palestar.com |
75e86a5931dad6fd222b21da6cd07d9c24df8708 | ec521fca9985e18b09a0403cca88b1c8baba2deb | /Sandbox/src/Sandbox2D.cpp | 20c2444c975d902d77e63a7742ddbaac8b3e48f1 | [] | no_license | clemb01/ClemEngine | bd2ccd383a6d1a5408a6e59e17c1ff929b997ec8 | de2d9a7f4593fc9aefba5cedb2cff16d5a663169 | refs/heads/master | 2023-04-04T04:00:19.709581 | 2021-04-20T06:57:38 | 2021-04-20T06:57:38 | 313,054,965 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,396 | cpp | #include "Sandbox2D.h"
#include "imgui/imgui.h"
#include <glm/gtc/matrix_transform.hpp>
#include <glm/gtc/type_ptr.hpp>
Sandbox2D::Sandbox2D()
: Layer("Sandbox2D"), m_CameraController(1280.0f / 720.0f)
{
}
void Sandbox2D::OnAttach()
{
CE_PROFILE_FUNCTION();
m_CheckerboardTexture = ClemEngine::Texture2D::Create(... | [
"coladaitp19-bcl@ccicampus.fr"
] | coladaitp19-bcl@ccicampus.fr |
3582e8f3cd5f13c516a877be58e71eb05cd54690 | 57d1d62e1a10282e8d4faa42e937c486102ebf04 | /judges/codeforces/done/1294a.cpp | 64773b28c9041947499355d538924ef84ee84d40 | [] | no_license | diegoximenes/icpc | 91a32a599824241247a8cc57a2618563f433d6ea | 8c7ee69cc4a1f3514dddc0e7ae37e9fba0be8401 | refs/heads/master | 2022-10-12T11:47:10.706794 | 2022-09-24T04:03:31 | 2022-09-24T04:03:31 | 178,573,955 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 832 | cpp | #include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define fast_io ios::sync_with_stdio(false)
#define pb push_back
#define mp make_pair
#define fi first
#define se second
const int INF = 0x3f3f3f3f;
const ll INFLL = 0x3f3f3f3f3f3f3f3fLL;
const double PI = acos(-1);
const double EPS = 1e-9;
inline in... | [
"dxmendes1@gmail.com"
] | dxmendes1@gmail.com |
5aa490de866368ef5ccedb36e939857ed6818c01 | a74af4b480bf2962dc8ec6e4bca793fed7c7a2ab | /Remove-Specify-Items-master/Svn/Server/game/src/char.h | 644c8552186b878191dd2cc08ac1cbc971ac56d2 | [] | no_license | Bobo199/Metin2 | 50c372d0f99fe37741e1c8826342898451f10ae7 | 43e90898df54ad201011b3bd8a6fec63cdb6a842 | refs/heads/master | 2022-11-14T21:20:04.196159 | 2020-06-28T15:39:14 | 2020-06-28T15:39:14 | 275,601,572 | 2 | 0 | null | 2020-06-28T15:34:35 | 2020-06-28T14:27:03 | C++ | UTF-8 | C++ | false | false | 140 | h | //Find
void RemoveSpecifyItem(DWORD vnum, DWORD count = 1);
///Add
bool RemoveSpecifyItems(std::set<DWORD> _ilist, int count); | [
"noreply@github.com"
] | noreply@github.com |
4a2925e6e113daba8cac3429341642f62f109e30 | 3fedacdc9a43f35609cafa4715c0b098c609c325 | /HackerRank/DownToZeroII/DownToZeroII.cpp | d2e4c08d822ad71c556110aeb47b24a9fc0a759c | [] | no_license | codecameo/ProblemSolved | 7f7fc5ce9829cde4bcb239da6c0893852e370d2c | 77fe538c76276319bc40ad98f77b59072d6368a0 | refs/heads/master | 2020-03-14T22:03:30.851199 | 2018-07-13T14:16:19 | 2018-07-13T14:16:19 | 131,319,185 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,080 | cpp | #include <iostream>
#include <queue>
#include <stdio.h>
#include <algorithm>
#include <math.h>
using namespace std;
/*
* Complete the downToZero function below.
*/
vector<int> divisor[1000001];
int steps[1000001] = {0};
void getPrimes(){
divisor[0].push_back(0);
divisor[1].push_back(1);
for(int i=2;i<=... | [
"codecameo92@gmail.com"
] | codecameo92@gmail.com |
2e2a02580d40e9fe178cf12d77f8fcfe68fb090a | c67cbd22f9bc3c465fd763fdf87172f2c8ec77d4 | /Desktop/Please Work/build/Android/Preview/app/src/main/include/Fuse.Physics.Spring.h | 909f31cf557df9014049256743ca09697efa378e | [] | no_license | AzazelMoreno/Soteria-project | 7c58896d6bf5a9ad919bde6ddc2a30f4a07fa0d4 | 04fdb71065941176867fb9007ecf38bbf851ad47 | refs/heads/master | 2020-03-11T16:33:22.153713 | 2018-04-19T19:47:55 | 2018-04-19T19:47:55 | 130,120,337 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,097 | h | // This file was generated based on C:/Users/rudy0/AppData/Local/Fusetools/Packages/Fuse.Physics/1.8.1/Spring.uno.
// WARNING: Changes might be lost if you edit this file directly.
#pragma once
#include <Fuse.Behavior.h>
#include <Fuse.Binding.h>
#include <Fuse.INotifyUnrooted.h>
#include <Fuse.IProperties.h>
#include... | [
"rudy0604594@gmail.com"
] | rudy0604594@gmail.com |
6262c1e99fa666abce66afbdd47b24ce0819f76d | c776476e9d06b3779d744641e758ac3a2c15cddc | /examples/litmus/c/run-scripts/tmp_5/MP+dmb.sy+ctrl-addr-[fr-rf]-addr-rfi.c.cbmc_out.cpp | 07fa5ff4e90bd2e7e310838cc26fa7cae2c945cf | [] | no_license | ashutosh0gupta/llvm_bmc | aaac7961c723ba6f7ffd77a39559e0e52432eade | 0287c4fb180244e6b3c599a9902507f05c8a7234 | refs/heads/master | 2023-08-02T17:14:06.178723 | 2023-07-31T10:46:53 | 2023-07-31T10:46:53 | 143,100,825 | 3 | 4 | null | 2023-05-25T05:50:55 | 2018-08-01T03:47:00 | C++ | UTF-8 | C++ | false | false | 64,001 | cpp | // Global variabls:
// 0:vars:4
// 7:atom_1_X11_1:1
// 4:atom_1_X0_1:1
// 5:atom_1_X5_0:1
// 6:atom_1_X7_1:1
// Local global variabls:
// 0:thr0:1
// 1:thr1:1
// 2:thr2:1
#define ADDRSIZE 8
#define LOCALADDRSIZE 3
#define NTHREAD 4
#define NCONTEXT 5
#define ASSUME(stmt) __CPROVER_assume(stmt)
#define ASSERT(stmt) __C... | [
"tuan-phong.ngo@it.uu.se"
] | tuan-phong.ngo@it.uu.se |
86cf8aabea0a7c534a697131e59253ead1fe9103 | 8dc84558f0058d90dfc4955e905dab1b22d12c08 | /third_party/webrtc/rtc_base/strings/audio_format_to_string.h | de0ce16e66054a62749f25e92da3b534bfb643a9 | [
"LicenseRef-scancode-unknown-license-reference",
"BSD-3-Clause",
"LicenseRef-scancode-google-patent-license-webm",
"LicenseRef-scancode-google-patent-license-webrtc",
"GPL-1.0-or-later",
"LicenseRef-scancode-takuya-ooura",
"MIT",
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-unknown",
... | permissive | meniossin/src | 42a95cc6c4a9c71d43d62bc4311224ca1fd61e03 | 44f73f7e76119e5ab415d4593ac66485e65d700a | refs/heads/master | 2022-12-16T20:17:03.747113 | 2020-09-03T10:43:12 | 2020-09-03T10:43:12 | 263,710,168 | 1 | 0 | BSD-3-Clause | 2020-05-13T18:20:09 | 2020-05-13T18:20:08 | null | UTF-8 | C++ | false | false | 844 | h | /*
* Copyright 2018 The WebRTC Project Authors. All rights reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing ... | [
"arnaud@geometry.ee"
] | arnaud@geometry.ee |
8c38a0245166db5042fc106a00e74016ca30a473 | b401f3c964467a0f8dc857d4615bd2e3688ca2e4 | /tests/ctypes/annotation_inout_tests.cpp | 140c9dd48370c7b6aa93204d8cc19bf8ffccb60c | [
"MIT",
"BSD-3-Clause",
"JSON",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | mehrdad-shokri/ctypes | 3eb3273fe633b614db89bb0bbc168efd44f77622 | 7d3d26adc7b6b09573de42410192d8133657684a | refs/heads/master | 2021-08-28T23:09:09.855236 | 2017-12-13T07:59:26 | 2017-12-13T07:59:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,505 | cpp | /**
* @file tests/ctypes/annotation_inout_tests.cpp
* @brief Tests for the @c annotation_inout module.
* @copyright (c) 2017 Avast Software, licensed under the MIT license
*/
#include <memory>
#include <gtest/gtest.h>
#include "ctypes/annotation_inout.h"
#include "ctypes/context.h"
using namespace ::testing;
names... | [
"petr.zemek@avast.com"
] | petr.zemek@avast.com |
94252def4a8b636224d42affcc1c1943b19b23aa | 67f988dedfd8ae049d982d1a8213bb83233d90de | /external/chromium/chrome/browser/ui/fullscreen/fullscreen_controller.h | 757774ef4753c6f35d4bde60b9f4fd8dbb70b147 | [
"BSD-3-Clause"
] | permissive | opensourceyouthprogramming/h5vcc | 94a668a9384cc3096a365396b5e4d1d3e02aacc4 | d55d074539ba4555e69e9b9a41e5deb9b9d26c5b | refs/heads/master | 2020-04-20T04:57:47.419922 | 2019-02-12T00:56:14 | 2019-02-12T00:56:14 | 168,643,719 | 1 | 1 | null | 2019-02-12T00:49:49 | 2019-02-01T04:47:32 | C++ | UTF-8 | C++ | false | false | 7,174 | h | // 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.
#ifndef CHROME_BROWSER_UI_FULLSCREEN_FULLSCREEN_CONTROLLER_H_
#define CHROME_BROWSER_UI_FULLSCREEN_FULLSCREEN_CONTROLLER_H_
#include "base/basictypes... | [
"rjogrady@google.com"
] | rjogrady@google.com |
ef6326a99aa6548c08198520972434881a0cf47d | 242b28657a27c5761407195f4921189f0bfdb7d9 | /tp04.cpp | e590dc8d8036628dd5e696d6afce7a22f429e63f | [] | no_license | TallerDeLenguajes1/tpn4-RoblesJP | b848e7d8ef440a2df3893db6ab2e1f5555a917be | 884faf5493c06155fd7e1464b4970a7e23ac1152 | refs/heads/master | 2022-07-10T01:36:03.830090 | 2020-05-15T16:44:03 | 2020-05-15T16:44:03 | 261,266,851 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,649 | cpp | #include <cstring>
#include <iostream>
using namespace std;
// estructuras
typedef struct {
int id;
char* descripcion;
int duracion; // [10, 100]
} TAREA;
struct NODO {
TAREA* tarea;
struct NODO* siguiente;
};
typedef struct NODO* LISTA;
// funciones
LISTA crearLista();
TAREA* ... | [
"juan.robles1417@gmail.com"
] | juan.robles1417@gmail.com |
c456991bd308953ab819e71dae0c23bb6c4ed433 | 5e8db76679d5cf4d67a435858eee9c4a97ec75af | /4a.2.0/source/hitprocess/clas12/ftof_hitprocess.cc | 4cbdbd7ec729a258feb41fe1f10c8eb6ebbfd1b7 | [] | no_license | efrainsegarra/clas12Tags | 94f5daa18a6640107953de733a98eeb4d5239368 | ccf90c57d086554e930dd4119f901cd1ea6ad176 | refs/heads/master | 2023-01-09T20:36:53.053681 | 2020-11-10T20:52:19 | 2020-11-10T20:52:19 | 285,655,680 | 0 | 0 | null | 2020-08-06T19:35:40 | 2020-08-06T19:35:39 | null | UTF-8 | C++ | false | false | 11,943 | cc | // G4 headers
#include "G4Poisson.hh"
#include "Randomize.hh"
#include <CCDB/Calibration.h>
#include <CCDB/Model/Assignment.h>
#include <CCDB/CalibrationGenerator.h>
using namespace ccdb;
// gemc headers
#include "ftof_hitprocess.h"
// CLHEP units
#include "CLHEP/Units/PhysicalConstants.h"
using namespace CLHEP;
st... | [
"maurizio.ungaro@cnu.edu"
] | maurizio.ungaro@cnu.edu |
566704fcb4bcce88f0827e6962a9d46c316a942c | 6a4866cb714f35190cf3b661160ad66bf46a183c | /BOJ/15001-20000/17672(ugly ver).cpp | 22fa08aadbf138805b85dcd4058c8895875faa5d | [] | no_license | dsstar-codes/Problem-Solving | 152e298381fc2a4027a9af4623d8fdf7a0863202 | 5d55d103a7e727429f046322f6b9db0799a80ccb | refs/heads/master | 2022-10-24T09:29:40.977070 | 2022-10-03T07:00:25 | 2022-10-03T07:00:25 | 241,553,243 | 7 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,201 | cpp | #include <bits/stdc++.h>
#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
#define fi first
#define se second
#define eb emplace_back
#define all(V) (V).begin(), (V).end()
using namespace std;
typedef long long ll;
typedef pair<int, ll> pil;
const ll INF = 1ll<<60;
ll F[1<<21], lz1[1<<21], lz2[1<<21];... | [
"dennisstar2003@gmail.com"
] | dennisstar2003@gmail.com |
7ea1870edc5baa275c425ebb471a4445daa6db7b | 4c5012252b205930be8de808d39739845778c4b9 | /deviceworld/deviceworld.cpp | 4fd6a20ad6366c379ced66515c2331c760d40467 | [] | no_license | abdo5520/rlcpp | ca85b6541b6ee84c9e7d9c45ae4648db70df541d | fb06a01fdb07ab29907973d7d325b0430871ab8e | refs/heads/master | 2021-01-12T05:16:36.706908 | 2015-09-30T09:17:18 | 2015-09-30T09:17:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,404 | cpp | /*
* Copyright (c) 2015 Vrije Universiteit Brussel
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify,... | [
"steckdenis@yahoo.fr"
] | steckdenis@yahoo.fr |
4d355f9c18fd9d54e1409a1de885122b85916429 | a1861705822bb503dcf4269ffe1122538b17c957 | /day04/ex03/Ice.cpp | 6c45efb06be51e731f8a98b352c4e703f7470a4b | [] | no_license | iliaselbadaoui/CPP_POOL | 05230278a2f43307de62b0aa7f0d805badb37fd6 | a2fdb35533a17272a9c460263036796c80b85a0e | refs/heads/main | 2023-06-17T08:08:07.275547 | 2021-07-08T16:49:55 | 2021-07-08T16:49:55 | 376,026,999 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 835 | cpp | #include "Ice.hpp"
/*
** ------------------------------- CONSTRUCTOR --------------------------------
*/
Ice::Ice() : AMateria("ice")
{ }
Ice::Ice( const Ice & src ) : AMateria(src)
{ }
/*
** -------------------------------- DESTRUCTOR --------------------------------
*/
Ice::~Ice()
{
}
/*
** ------------------... | [
"iliassovich@outlook.com"
] | iliassovich@outlook.com |
a59520525accb2e9b3dc4c2c2394be05cf2c5242 | f9ef63d68b4a87836f8611e802828fcb1bb62656 | /Intermediate/ParallaxBumpMap/OGLES2/Content/VertShader.cpp | f02578a17c9a3b326dca6575d25ae20ea1a1f686 | [] | no_license | ThreeNG/Examples | 557aecb1c126479c077c6a87f08b2508c50e2c23 | 28af63cf097cbe4389cfb3c151dc1bceec19ba24 | refs/heads/master | 2021-05-26T19:29:27.809842 | 2013-08-20T19:13:04 | 2013-08-20T19:13:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,514 | cpp | // This file was created by Filewrap 1.1
// Little endian mode
// DO NOT EDIT
#include "../PVRTMemoryFileSystem.h"
// using 32 bit to guarantee alignment.
#ifndef A32BIT
#define A32BIT static const unsigned int
#endif
// ******** Start: VertShader.vsh ********
// File data
static const char _VertShad... | [
"0xb000@gmail.com"
] | 0xb000@gmail.com |
7390173fb62509e8c2809eb44a00cb7288881ce4 | 98157b3124db71ca0ffe4e77060f25503aa7617f | /tlx/troc-4/d.cpp | 77c9356111f896220457513cc248f05833b2f6c5 | [] | no_license | wiwitrifai/competitive-programming | c4130004cd32ae857a7a1e8d670484e236073741 | f4b0044182f1d9280841c01e7eca4ad882875bca | refs/heads/master | 2022-10-24T05:31:46.176752 | 2022-09-02T07:08:05 | 2022-09-02T07:08:35 | 59,357,984 | 37 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 276 | cpp | #include <bits/stdc++.h>
using namespace std;
int main() {
int t;
scanf("%d", &t);
while (t--) {
int n, k;
scanf("%d %d", &n, &k);
bool ans = 1;
k *= 2;
if ((n % k) == 0 && ((n/k) & 1))
ans = 0;
puts(ans ? "YES" : "NO");
}
return 0;
} | [
"wiwitrifai@gmail.com"
] | wiwitrifai@gmail.com |
785a9e1a0a2bbf2dd695cc49db291101222ce517 | 17dce91611fec0b02875d84c98a328cfed0ba8ce | /Observer/TestObserver.cpp | f64012c78b9912771225c338b485dbb301bbbf91 | [] | no_license | EmbeddedSystemClass/DesignPatterns_cpp | e6156d7138e0961a8a2f7eb6634562140455d674 | 43991b58055efbf8f1b214a54fa7cfc034c6b3f7 | refs/heads/master | 2021-06-10T05:50:05.712062 | 2016-11-12T08:00:14 | 2016-11-12T08:00:14 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 708 | cpp | #include <iostream>
#include <iomanip>
#include <string>
#include <list>
#include "Investor.h"
#include "Stock.h"
using namespace std;
/**
* Story:
* Create a stock, and 3 investors
* 3 investors buy the stock
* When the stock price changed, the investors get notification
**/
void testObserver()
{
cout << e... | [
"take.iwiw2222@gmail.com"
] | take.iwiw2222@gmail.com |
421b8c1fb17185128978d71ceb45c8fe0ebfab87 | a2111a80faf35749d74a533e123d9da9da108214 | /raw/workshop12/workshop2012-data-20120906/trunk/.svn/pristine/42/421b8c1fb17185128978d71ceb45c8fe0ebfab87.svn-base | e2bd1756f2dcb3259d28196f0cb81c924dcd7f6f | [
"BSD-3-Clause",
"MIT"
] | permissive | bkahlert/seqan-research | f2c550d539f511825842a60f6b994c1f0a3934c2 | 21945be863855077eec7cbdb51c3450afcf560a3 | refs/heads/master | 2022-12-24T13:05:48.828734 | 2015-07-01T01:56:22 | 2015-07-01T01:56:22 | 21,610,669 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,982 | // ==========================================================================
// SeqAn - The Library for Sequence Analysis
// ==========================================================================
// Copyright (c) 2006-2012, Knut Reinert, FU Berlin
// All rights reserved.
//
// Redistribution and us... | [
"mail@bkahlert.com"
] | mail@bkahlert.com | |
0a45b0b76f652ed55a570d04029dcae5aeb9feb9 | 81ed1280eca8b7cab677bc0d42438bb590b71ae2 | /src/test/fs_tests.cpp | 27192bcd0ceab95ca3ca668dc4eb2daf6a80d94f | [
"MIT"
] | permissive | btcavenue/btcavenue | 09d595d8cc3392890e4ceb1272569d41e059f7d8 | 63c135c40dbb1aef3078abb4dffefa04b8ef8217 | refs/heads/master | 2021-03-24T23:51:21.263328 | 2020-03-16T00:02:29 | 2020-03-16T00:02:29 | 247,573,014 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,701 | cpp | // Copyright (c) 2011-2019 The Btcavenue Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
//
#include <fs.h>
#include <test/util/setup_common.h>
#include <util/system.h>
#include <boost/test/unit_test.hpp>
BOOST_... | [
"root@ns349841.ip-188-165-202.eu"
] | root@ns349841.ip-188-165-202.eu |
304f936e8ae1e4571107109d38cc2f89e45a6c32 | 94050a3c740d735a7b008f6a1e12fd7b5d56fafd | /moc_menu.cpp | f6746df084697deb3798bf757fa9e90d6bdddb95 | [] | no_license | ProjectRobal/Punto_Navi | 1bc929179a9d76014ac366518506c995cab9171a | 12f2d8827459c1dd2be0425c0d3491cc1020e6de | refs/heads/main | 2023-08-27T23:51:00.913271 | 2021-09-25T12:01:49 | 2021-09-25T12:01:49 | 397,277,568 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,663 | cpp | /****************************************************************************
** Meta object code from reading C++ file 'menu.h'
**
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.12.8)
**
** WARNING! All changes made in this file will be lost!
***************************************************************... | [
"patryk1-70@wp.pl"
] | patryk1-70@wp.pl |
3234eab04794da72969a5e1a9b4438a0475b4574 | 958f8ce3496c86e229651e38ab28077f29f7baf5 | /c++/sjexercise_Graph/Graph.h | 240a8a141a0034adb1bb648ed18c8473a5f6daa9 | [] | no_license | XingwenZhang/codeDemo | 213542e5260b273dd929ad31c3bef94c78256aac | 3ed6ff77826e69b6a974044adc203b20f0b04e0f | refs/heads/master | 2021-01-11T07:57:27.741444 | 2016-10-27T18:26:48 | 2016-10-27T18:26:48 | 72,135,714 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 3,059 | h | //#ifndef GRAPH_H
//#define GRAPH_H
//#include<>
//class Graph
//{
//private:
//
//
//};
//
//
//
//
//int visited[MAX_VERTEX_NUM] ;
//void dfs_trave(ALGraph alg)
//{
// int i ;
// for(i = 0; i < alg.vexnum; i++)
// {
// visited[i] = 0 ;
// }
// for(i=0; i < alg.vexnum; i++)
// {
// if(visited[i] = 0)
// dfs(alg,i)... | [
"zhangxingwen0428@gmail.com"
] | zhangxingwen0428@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.