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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
e9b3af9529d78d404405ea32d38fbbace0364340 | 27c1cb57c1608b65639c6194dc945a440df25473 | /cg_exercise_02/cglib/lib/glm/glm/gtx/rotate_normalized_axis.hpp | 25e2722492030374fa14b3de83fac22edc61f4c0 | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer",
"BSD-2-Clause",
"LicenseRef-scancode-happy-bunny"
] | permissive | brankyy/CG | 41c7de721ffdba2aefda48db823521fb0d409710 | 217960504e0c723b73dab664e6ca0ccf3aeeeec8 | refs/heads/master | 2020-04-05T00:36:27.888286 | 2019-01-06T22:02:49 | 2019-01-06T22:02:49 | 156,395,913 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,355 | hpp | /// @ref gtx_rotate_normalized_axis
/// @file glm/gtx/rotate_normalized_axis.hpp
///
/// @see core (dependence)
/// @see gtc_matrix_transform
/// @see gtc_quaternion
///
/// @defgroup gtx_rotate_normalized_axis GLM_GTX_rotate_normalized_axis
/// @ingroup gtx
///
/// Include <glm/gtx/rotate_normalized_axis.hpp... | [
"brankyy@gmail.com"
] | brankyy@gmail.com |
b28026bbd189dab769b5d4b30b74ed26a1109c25 | 0c644d9604f248080bf49073ae61c4ff02a0feab | /C10/p566-4/소스.cpp | caf116cc552cc4cb517c2f7de88365f43739a669 | [] | no_license | 0083tony/Core-C-Programming | 12bbcc3b5b6dbdda692678cd95590e28f8bfe64f | d846e1544e170c4d010d88a09cf2fd5f91adaf6d | refs/heads/master | 2020-08-10T00:19:16.341746 | 2019-11-08T10:57:04 | 2019-11-08T10:57:04 | 214,206,173 | 2 | 1 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 439 | cpp | #define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <string.h>
struct AA {
int year = 0;
int month = 0;
int date = 0;
};
void print_date(int year, int month, int date) {
printf("%d / %d / %d\n", year, month, date);
}
int main(void) {
struct AA a;
printf("¿¬? ");
scanf("%d", &a.year);
printf("¿ù? ");
s... | [
"0083tony@gmail.com"
] | 0083tony@gmail.com |
c3dc78c791abcf5609fc5de37ca7567435ee778a | 736e7201d8133f7b5262bbe3f313441c70367a3d | /misc/internal/windows/src/Winport/Include/CxImage/ximapng.h | 57915562c1c96cbde0f33b0be47c2ce2bbe93c9d | [] | no_license | KarlHegbloom/texmacs | 32eea6e344fd27ff02ff6a8027c065b32ff2b976 | ddc05600d3d15a0fbc72a50cb657e6c8ebe7d638 | refs/heads/master | 2021-01-16T23:52:33.776123 | 2018-06-08T07:47:26 | 2018-06-08T07:47:26 | 57,338,153 | 24 | 4 | null | 2017-07-17T05:47:17 | 2016-04-28T22:37:14 | Tcl | UTF-8 | C++ | false | false | 3,101 | h | /*
* File: ximapng.h
* Purpose: PNG Image Class Loader and Writer
*/
/* === C R E D I T S & D I S C L A I M E R S ==============
* CxImagePNG (c) 07/Aug/2001 <ing.davide.pizzolato@libero.it>
* Permission is given by the author to freely redistribute and include
* this code in any program as long as this credit ... | [
"vdhoeven@lix.polytechnique.fr"
] | vdhoeven@lix.polytechnique.fr |
fa2b4c2ae8e2c4c1c665b29e582d0fb73999ca0d | 536205b4438d409e2bc6349efaa19d4603622249 | /求最大公约数/main.cpp | 958495f0310db1cd863ab17c887a45c9c7d75a79 | [] | no_license | cyendra/ACM_Training_Chapter_One | 78a8b38f6465dfe5e4238057830fed788769f5c4 | 8268a66edf1cc5ba9a0e5019b34b4ec97ce55268 | refs/heads/master | 2020-12-30T10:37:10.269991 | 2013-11-17T08:40:03 | 2013-11-17T08:40:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 319 | cpp | #include <iostream>
#include <cstdio>
using namespace std;
int gcd(int a,int b)
{
if (a<b)
{
swap(a,b);
}
if (b==0)
{
return a;
}
else
{
return gcd(b,a % b);
}
}
int main()
{
int a,b;
scanf("%d%d",&a,&b);
printf("%d",gcd(a,b));
return 0;
}
| [
"g1483335912@gmail.com"
] | g1483335912@gmail.com |
fd846a870302a9edbb23ea60d45ad53732d9138e | 5456502f97627278cbd6e16d002d50f1de3da7bb | /media/base/audio_buffer_converter.cc | a60dec571fb00403aefdbbb0b12c4ba5fa38575b | [
"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 | 8,729 | cc | // Copyright 2014 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 "media/base/audio_buffer_converter.h"
#include <algorithm>
#include <cmath>
#include "base/logging.h"
#include "media/base/audio_buff... | [
"lixiaodonglove7@aliyun.com"
] | lixiaodonglove7@aliyun.com |
4d7519c6c0dccdb9a3466832f4e745614b3aa648 | b1af8bb863a6730e6e4e93129efbad89d33cf509 | /SDK/SCUM_MovableWindow_functions.cpp | a98717a34b0e48d5af9a429c8717837cff74089d | [] | no_license | frankie-11/SCUM_SDK7.13.2020 | b3bbd8fb9b6c03120b865a6254eca6a2389ea654 | 7b48bcf9e8088aa8917c07dd6756eac90e3f693a | refs/heads/master | 2022-11-16T05:48:55.729087 | 2020-07-13T23:48:50 | 2020-07-13T23:48:50 | 279,433,512 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 7,432 | cpp | // SCUM (4.24) SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
#include "../SDK.hpp"
namespace SDK
{
//---------------------------------------------------------------------------
//Functions
//---------------------------------------------------------------------------
// Function MovableWindow.MovableWindow_C.A... | [
"60810131+frankie-11@users.noreply.github.com"
] | 60810131+frankie-11@users.noreply.github.com |
e4ba383c5a65824ea07ef3506356be1b117757d2 | df37112a73ede94bd1a712e59d4e3aaca474a250 | /lab6/lab6.cpp | 9fef53c742ff01aab33987a0911b10de0c9376e1 | [] | no_license | xsthunder/rpi-data-structure | 3d5b21e479304473ac2ebcc9bc2a8a7074f7c426 | b072b3af03d8db1eedde348411144cbe96d36770 | refs/heads/master | 2020-06-01T16:52:17.957826 | 2019-07-27T08:21:20 | 2019-07-27T08:21:20 | 190,856,112 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,436 | cpp | #include <iostream>
#include <cmath>
#include <list>
#include "dslist.h"
int main() {
// =======================================
// CHECKPOINT 1
// create a list of the sqrt of the first 10 integers
dslist<double> a;
for (int i = 0; i < 10; ++i)
a.push_back(sqrt(i));
// print out details of the li... | [
"xsthunder@outlook.com"
] | xsthunder@outlook.com |
cb1d767a78fdc4e25140f0805453cb0eda30bb51 | c6ecad18dd41ea69c22baf78dfeb95cf9ba547d0 | /src/boost_1_42_0/libs/units/test/fail_quantity_add_assign.cpp | 900e0af71d1c4c55a62e4ea99d96768d5ccd2eeb | [
"BSL-1.0"
] | permissive | neuschaefer/qnap-gpl | b1418d504ebe17d7a31a504d315edac309430fcf | 7bb76f6cfe7abef08777451a75924f667cca335b | refs/heads/master | 2022-08-16T17:47:37.015870 | 2020-05-24T18:56:05 | 2020-05-24T18:56:05 | 266,605,194 | 3 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 740 | cpp | // Boost.Units - A C++ library for zero-overhead dimensional analysis and
// unit/quantity manipulation and conversion
//
// Copyright (C) 2003-2008 Matthias Christian Schabel
// Copyright (C) 2008 Steven Watanabe
//
// Distributed under the Boost Software License, Version 1.0. (See
// accompanying file LICENSE_1_0.tx... | [
"j.neuschaefer@gmx.net"
] | j.neuschaefer@gmx.net |
cba02995d8711654f57aa252c4a21d576ca034af | bb910965169bfbb1fd36753fd0209e77cabffb05 | /tests/stdgpu/openmp/vector.cpp | b3a3d3f2d56ddb3a9abf941220b54f354f887359 | [
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
] | permissive | stotko/stdgpu | 8659aeacf82c807c1162e796d09a422c23a431bf | e085756a2cc5f99a6610301211ffc12b44aa2f65 | refs/heads/master | 2023-09-02T01:23:10.271531 | 2023-08-28T13:36:02 | 2023-08-28T13:56:17 | 202,712,923 | 1,012 | 75 | Apache-2.0 | 2023-09-13T13:54:36 | 2019-08-16T11:04:33 | C++ | UTF-8 | C++ | false | false | 635 | cpp | /*
* Copyright 2019 Patrick Stotko
* 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 agre... | [
"stotko@cs.uni-bonn.de"
] | stotko@cs.uni-bonn.de |
05089a39f3dacce4cecea4798575e6844938682d | 5b50e221121bd40d97f2fd7f4a3f6852865a146b | /newdev2population.h | 5dfbdd2ecc0cce5f25c656113ef51a82706d9f40 | [] | no_license | nb-/ParticleSwarms | 925d7419d011895333c1e4f1ddf07cc66faafac7 | 583bd3ed34bcf5cb2d011353e16f785e30d33c65 | refs/heads/master | 2016-09-11T03:17:56.317861 | 2013-11-23T17:30:35 | 2013-11-23T17:30:35 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,519 | h | #ifndef NEWDEV2POPULATION_H
#define NEWDEV2POPULATION_H
//==================================================================
// Second Implemented Idea
// Eval DParticles
// Sort by val
// Assign pool size based on ranking
// Assign neighbour based on ranking
// Best is special case, gaus... | [
"nathanbell.42@gmail.com"
] | nathanbell.42@gmail.com |
75d5f12c66ade9342c05fbb64f2b72f48eeb48bc | 5a60d60fca2c2b8b44d602aca7016afb625bc628 | /aws-cpp-sdk-iot/include/aws/iot/model/RemoveThingFromBillingGroupResult.h | 7b8a94b0bc5c8d7958904b311d5d78a0ea8dd601 | [
"Apache-2.0",
"MIT",
"JSON"
] | permissive | yuatpocketgems/aws-sdk-cpp | afaa0bb91b75082b63236cfc0126225c12771ed0 | a0dcbc69c6000577ff0e8171de998ccdc2159c88 | refs/heads/master | 2023-01-23T10:03:50.077672 | 2023-01-04T22:42:53 | 2023-01-04T22:42:53 | 134,497,260 | 0 | 1 | null | 2018-05-23T01:47:14 | 2018-05-23T01:47:14 | null | UTF-8 | C++ | false | false | 808 | h | /**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/iot/IoT_EXPORTS.h>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
}... | [
"aws-sdk-cpp-automation@github.com"
] | aws-sdk-cpp-automation@github.com |
3792ef941c66c35a4185b9e04c3c8ffd49ef3d4c | 2e18997d050334d9a8bc52401d2243b6ecfe811c | /main/main.ino | 9025a814ff75f1b108ce2f9e336138765b2a958c | [] | no_license | Alfarie/SHM1.0-MCU | 4ae7af574b1606514b9e3796bc0022aed9268873 | 30b57bf31e09b277ad1c7e54e6572cc0a5ddab35 | refs/heads/master | 2020-03-23T14:50:32.076121 | 2019-06-06T10:10:32 | 2019-06-06T10:10:32 | 141,703,024 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,816 | ino | #define VERSION "1.0.1"
#include <Task.h>
#include <Wire.h>
#include <LiquidCrystal_I2C.h>
#include <EEPROM.h>
#include <SPI.h>
// #include <MCP320X.h>
#include <LibHumidity.h>
HardwareSerial &mpuCom = Serial3;
HardwareSerial &debugCom = Serial;
LibHumidity humidity = LibHumidity(0);
// MCP320X adc(53);
LiquidCrysta... | [
"farhan.abuhazan@gmail.com"
] | farhan.abuhazan@gmail.com |
9c8786f0b5d905101f5379d2149de68f82fa0d4f | ddd15715b110587ca5ffeb75fba1f7d47c76dfeb | /EmojiGame/GUILoadEmoji.cpp | 0f0e9c07fe01f22b01f2aad87173bd5f05b9d474 | [] | no_license | Andy608/CSI-140-EmojiGame | 7727b8a201f7ebacfd971a76fc943519113e786c | 9872b1f633b36a0fbd55c9e9fd9ce4d35833b041 | refs/heads/master | 2020-12-15T14:20:00.943730 | 2020-01-20T15:28:17 | 2020-01-20T15:28:17 | 235,132,913 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,734 | cpp | /*
Author: Andrew Rimpici
Class: CSI-140-07
Assignment: Final Project
Date Assigned: 11/30/2016
Due Date: 12/9/2016
Description: An emoji pet simulator program where you take care of your emoji's and keeping
them alive.
Certification of Authenticity: I certify that this is entirely my own work, except where I ha... | [
"AndrewR608@gmail.com"
] | AndrewR608@gmail.com |
f5eebf90068fb691081bcc606ad9635f297d8e34 | 21611ce560980fa6f5f53563c44f8cde79d89f1e | /DialogMFC/DialogMFC/DialogMFC.h | 5cfb58b42002fff20ccf2b9a6f2b0f0faa41a163 | [] | no_license | TomShiDi/git-Lib | 80ffcb2b5a3a6fe3657c8ec23bba67502b9c3c8b | eaf908dd15003dd437f32623584524819dbdc052 | refs/heads/master | 2020-04-15T01:22:19.173862 | 2019-01-06T04:53:03 | 2019-01-06T04:53:03 | 164,273,598 | 0 | 1 | null | null | null | null | GB18030 | C++ | false | false | 474 | h |
// DialogMFC.h : PROJECT_NAME 应用程序的主头文件
//
#pragma once
#ifndef __AFXWIN_H__
#error "在包含此文件之前包含“stdafx.h”以生成 PCH 文件"
#endif
#include "resource.h" // 主符号
// CDialogMFCApp:
// 有关此类的实现,请参阅 DialogMFC.cpp
//
class CDialogMFCApp : public CWinApp
{
public:
CDialogMFCApp();
// 重写
public:
virtual BOOL InitInstance(... | [
"1341109792@qq.com"
] | 1341109792@qq.com |
d741743c0f83f585c824d4ef67ecfd213ddeada4 | 7fe3e44cf771a7a811890a7d2ac78ed6708ddedf | /Engine/source/gui/editor/guiInspector.cpp | f08b3f5bac63e7871792fd2f342eb5487b2eb855 | [] | no_license | konradkiss/meshloop | 988ee721fb6463fbfece183c70f678c047215dd5 | 25b98ce223d21e232593a6c4dc2d6d863aace02c | refs/heads/master | 2021-03-19T13:36:21.104735 | 2015-05-21T13:00:55 | 2015-05-21T13:00:55 | 36,012,137 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,911 | cpp | //-----------------------------------------------------------------------------
// Torque 3D
// Copyright (C) GarageGames.com, Inc.
//-----------------------------------------------------------------------------
#include "gui/editor/guiInspector.h"
#include "gui/editor/inspector/field.h"
#include "gui/editor/in... | [
"konrad@konradkiss.com"
] | konrad@konradkiss.com |
a14c385514a338cba42d7a6b14c655c8563fcc86 | 63a5a4751cd43a65d15ffc7fcf5fe9c1360354cf | /Source/NZGame/HUD/NZHUDWidgetMessage.cpp | 2ca40f98e30d00afef833b66cb5ccb37d626b8e9 | [] | no_license | terryzhong/NZGame | f13eecfd51cf329a8427ddb3b440d51e115ef77b | 6de8d3e071e48e865492aa3ebeeb1f2a7f40b3ba | refs/heads/master | 2021-01-19T02:54:57.677135 | 2017-03-25T17:37:12 | 2017-03-25T17:37:12 | 48,650,520 | 9 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 378 | cpp | // Fill out your copyright notice in the Description page of Project Settings.
#include "NZGame.h"
#include "NZHUDWidgetMessage.h"
void UNZHUDWidgetMessage::ReceiveLocalMessage(TSubclassOf<class UNZLocalMessage> MessageClass, APlayerState* RelatedPlayerState_1, APlayerState* RelatedPlayerState_2, uint32 MessageInde... | [
"terryzhong@tencent.com"
] | terryzhong@tencent.com |
f056d4b87c61b06d2a4804d9da7aaa2e9386b0c5 | a6352828dbdfc70485bfe96518d8de6c20d64f65 | /Net/include/TcpClient.h | 9223970e8bd4bfa32ec39ddd416ef38b57fea69e | [] | no_license | lxj362343/framework-nd | cbbed6ccb29e9a5ae130b17947d5b324604a810d | 9fe9d770af2bf0a96308fc92811c908b883ed21d | refs/heads/master | 2022-01-07T13:07:21.845762 | 2019-01-11T03:05:50 | 2019-01-11T03:05:50 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,170 | h | #ifndef TCPCLIENT_H
#define TCPCLIENT_H
#include "SocketConnection.h"
#include <string>
#include <boost/thread.hpp>
#include <boost/shared_ptr.hpp>
#include <event.h>
namespace Net
{
class IClientProtocol;
namespace Client
{
class TcpClient
{
public:
TcpClient(
IClientProtocol* thePr... | [
"noodle1983@126.com"
] | noodle1983@126.com |
24927ff50d29907e50ef3b6de1a5658cc811bcc5 | 0757852d8712bbebb0ee57b587469ea5422cb4a8 | /Calculator/Calculator.cpp | e1d0ef3511d9a0ca5664f832dcabfed1b6f0e992 | [] | no_license | zhivotnoe22/Calculator-MFC | 3a629957c7219bec8bff0c32eecd5bdd44b8e4e3 | 0f86360ccd7a3ad761da6b64f09dd4662568fc0a | refs/heads/master | 2023-03-16T22:38:12.416170 | 2016-03-08T16:01:54 | 2016-03-08T16:01:54 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,865 | cpp |
// Calculator.cpp : Defines the class behaviors for the application.
//
#include "stdafx.h"
#include "Calculator.h"
#include "CalculatorDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// CCalculatorApp
BEGIN_MESSAGE_MAP(CCalculatorApp, CWinApp)
ON_COMMAND(ID_HELP, &CWinApp::OnHelp)
END_MESSAGE_MAP()
// CCalc... | [
"francisc.balint94@gmail.com"
] | francisc.balint94@gmail.com |
ac4841f4150987bb5327461d768500965ac94210 | 555f0e159a88951f27b7f6303a9db1336ee74522 | /source/s23.cpp | fc347d91f3eadc36194315be17a01f9c77afa3c5 | [] | no_license | mashanivas/gplus | 6942bccbc9cd46556f243018213d5e724d45efee | a22896b7099d3860bd45d47af72ee262af5b4de5 | refs/heads/master | 2023-02-28T05:02:15.418097 | 2021-02-10T19:43:00 | 2021-02-10T19:43:00 | 337,835,313 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 286 | cpp | #include <iostream>
using namespace std;
template <class T>
T sum (T a, T b)
{
T result;
result = a + b;
return result;
}
int main () {
int i=5, j=6, k;
double f=2.0, g=0.5, h;
k=sum<int>(i,j);
h=sum<double>(f,g);
cout << k << '\n';
cout << h << '\n';
return 0;
}
| [
"mashanivas@gmail.com"
] | mashanivas@gmail.com |
552262cd601a8d368d91edf77cf70fe6f7eaa8b7 | 623a81d04ac1e0755e8fda2b33860ec37867fc01 | /URI_1071.cpp | 8e541a55262026450abda089c135fb42c65bc9c0 | [] | no_license | lalchan123/Contest-Programing-Code | aa4aade42413383916cafaa0653b5ec616fc0293 | 8e26e9a413723f7f2fb6a9172fa365b8e58ffaa8 | refs/heads/main | 2023-07-15T11:24:56.929980 | 2021-09-01T18:33:41 | 2021-09-01T18:33:41 | 301,860,777 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 245 | cpp | #include <iostream>
using namespace std;
int main() {
int a,b,i,sum=0;
cin >> a >> b;
for (i=b+1; i<a; i++) {
if (i%2 != 0) {
sum = sum + i;
}
}
cout << sum << endl;
return 0;
}
| [
"noreply@github.com"
] | noreply@github.com |
0ddc13980b44d6fc1e5d0cc9dd1dadeb48bec73c | b19b7e9a3e69e28c0961a0567f63bee0dd9b58b9 | /Editor/Plugins/GCore/Source/GCore/Private/System/GameDirector.cpp | a7c795df30083c569d22695e6eec51648a615ed2 | [] | no_license | 1097195326/Editor | ef80d49379675815ba2e3e58d524a7f000e6e7ca | 9bbb97bca0fcd648a9a8a68afc00b9d4bd00212b | refs/heads/master | 2020-03-17T20:59:25.173542 | 2018-05-18T10:20:36 | 2018-05-18T10:20:36 | 118,855,172 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,517 | cpp | // Fill out your copyright notice in the Description page of Project Settings.
#include "GCore.h"
#include "GTimerMgr.h"
#include "GPlatformMgr.h"
#include "AARefClasses.h"
#include "GController.h"
#include "UIManager.h"
#include "GResourceManager.h"
#include "GSchedulerManager.h"
#include "DownloadImageTool... | [
"fafa@fafadeMac-Pro.local"
] | fafa@fafadeMac-Pro.local |
0605af32bd20e2df7315abcb3563e10bc31fcec4 | bb59806476b9657eddda932a3a0e21388c43fba9 | /atcoder/codefes_2015_yosen_a/d.cpp | dfeab74f22be30b5c4e9589b4a187891decae6b0 | [] | no_license | atri-konami/kyo-pro | b0d53b196e0526774816df2aeb6f4c0a7fbc4745 | bf72a14da29828a29a5e59d2582f1e27ee65d545 | refs/heads/master | 2020-07-16T19:08:16.163064 | 2019-09-02T12:09:38 | 2019-09-02T12:09:38 | 205,849,043 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,023 | cpp | #include <bits/stdc++.h>
using namespace std;
int n,m;
vector<int> x,d;
bool ok(int t){
long long lb,ub,l;
d[0]=0;
for(int i=1;i<=m;i++){
l=x[i-1]-d[i-1]-1;
if(l>t) return false;
if (i==m){
return min(l*2+(n-x[i-1]),l+2*(n-x[i-1])) <= t;
}else{
... | [
"freude1994@gmail.com"
] | freude1994@gmail.com |
d6b07565651e31a181c788dcb04101d9c0cebb30 | 8992a0d6d36574525b0df1b6b322063135f46ad9 | /include/fileloader.h | e5b3eda31b3c09481109ecd5ec3b35a6715983f6 | [] | no_license | yyjxx2010xyu/KTruss | f137dce4b43b29e195238f2dedd53e3906e222c3 | 10bcac564acfe8c3867d737e66d0e563217cbc25 | refs/heads/main | 2023-02-16T17:13:20.095539 | 2021-01-10T08:20:06 | 2021-01-10T08:20:06 | 328,335,226 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,287 | h | #ifndef FILELOADER
#define FILELOADER
#include <cstdio>
#include <cstdlib>
#include <unistd.h>
#include <sys/types.h>
#include <sys/mman.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <unistd.h>
class fileLoade... | [
"yyjxx2010xyu@gmail.com"
] | yyjxx2010xyu@gmail.com |
970814b68fdd5928b64b07c43a8cd07c113319b4 | effce69116f96b9e9fc490920869224c536e1d6f | /Config.cpp | d589b215f6fcb11310bbc8c7347c2f4ace35e244 | [] | no_license | Just1045523143/sqlite-server | 82654f1594db7031f4df13163ec1281da87e6b6f | a9b254d3aead8495196cc8156602ca6d266b3cf0 | refs/heads/master | 2021-10-09T03:04:03.102379 | 2018-12-20T09:51:03 | 2018-12-20T09:51:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,761 | cpp | //
// Created by Miroslav Kudrnac on 06/03/2018.
//
#include <nlohmann/json.hpp>
#include <fmt/printf.h>
#include "Config.h"
using json = nlohmann::json;
boost::asio::ip::tcp::endpoint resolve_endpoint(const std::string& listen_ip, const uint16_t listen_port)
{
boost::asio::io_service io_service;
boost::asio... | [
"miroslav.kudrnac@rohlik.cz"
] | miroslav.kudrnac@rohlik.cz |
f0836ccf16f7cbe0b49500489ae509e58f0045c0 | edb8583175255ff8b54812cb9d1a26151abd11b0 | /Yanity/SphereColider.h | 46dbf84d3251a24bf7ba82bb9644a3274443b745 | [] | no_license | egod1537/Yanity_SDL | f5145354f602238107170ca42681793795f7d7c7 | 81186d4ca25c896265a31f59a0d2ac0c44d2f3c6 | refs/heads/master | 2022-03-31T04:34:57.499088 | 2019-11-27T15:53:48 | 2019-11-27T15:53:48 | null | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 364 | h | #pragma once
#include "Colider.h"
///@brief Sphere 형태의 Colider 컴포넌트 입니다.
class SphereColider : public Colider {
public:
float Radius; ///< SphereColider의 반지름
SphereColider() { }
void Awake();
void Update();
bool isCollision(Vector2);
bool isCollision(BoxColider*);
bool isCollision(SphereColider*);
void ... | [
"egod1537@gmail.com"
] | egod1537@gmail.com |
ebe8a044965fc48d815294940ed84fe57e5aef40 | 28c000caf6617ba2074e0f2a8fc936ccb8c01fb3 | /LeetCode/Flatten Binary Tree to Linked List.cpp | 242937b21b366b8f2039fea17786429bea1d925f | [] | no_license | ATM006/acm_problem_code | f597fa31033fd663b14d74ad94cae3f7c1629b99 | ac40d230cd450bcce60df801eb3b8ce9409dfaac | refs/heads/master | 2020-08-31T21:34:00.707529 | 2014-01-23T05:30:42 | 2014-01-23T05:30:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,614 | cpp |
class Solution
{
public:
void flatten(TreeNode *root)
{
stack<TreeNode *> st;
stack<int> state;
if(root)
{
st.push(root);
state.push(0);
}
vector<TreeNode *> node;
... | [
"wangjunyong@wangjunyong-PC.(none)"
] | wangjunyong@wangjunyong-PC.(none) |
51e97480f932b71df1909feebc276f4340ceb278 | 14355f60733dce9b2f73daca94afe507981fb99d | /exec/modules/verify_revoke.h | def30a9244682d94bcd8083c09aeb982239b8bbf | [
"LicenseRef-scancode-unknown-license-reference",
"MIT"
] | permissive | r4yan2/OpenPGP | 86906fd33440b1c567b4fc0f13ad4f11a925d632 | 0299d96ee3b60d1d29b2d59f43610603a1135a5e | refs/heads/master | 2021-12-31T09:19:32.855072 | 2018-02-13T12:36:55 | 2018-02-13T12:36:55 | 150,585,547 | 0 | 0 | MIT | 2018-09-27T12:45:55 | 2018-09-27T12:45:55 | null | UTF-8 | C++ | false | false | 2,807 | h | /*
verify_revoke.h
OpenPGP exectuable module
Copyright (c) 2013 - 2017 Jason Lee @ calccrypto at gmail.com
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without l... | [
"calccrypto@gmail.com"
] | calccrypto@gmail.com |
04e7cf987c9faf9e8ab0f8025e938ca2b91ab3fd | 36184239a2d964ed5f587ad8e83f66355edb17aa | /.history/hw3/main_20211016170701.cpp | 3a2831d36c34159637a9c86b8c307722c754b0a5 | [] | no_license | xich4932/csci3010 | 89c342dc445f5ec15ac7885cd7b7c26a225dae3e | 23f0124a99c4e8e44a28ff31ededc42d9f326ccc | refs/heads/master | 2023-08-24T04:03:12.748713 | 2021-10-22T08:22:58 | 2021-10-22T08:22:58 | 415,140,207 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 259 | cpp | #include<iostream>
#include<vector>
#include<map>
#include"ElectoralMap.h"
using namespace std;
int main(){
srand((unsigned int)TIME(NULL));
ElectoralMap firstmap = ElectoralMap::getInstance();
std::cout << firstmap << std::endl;
return 0;
} | [
"xich4932@colorado.edu"
] | xich4932@colorado.edu |
ad99dbdaaa3a9dafe71e6058082e45184cbcd467 | 439176618be20e13ee147046d4d395cdfb52bc33 | /IUnknownInterface.h | 827b17bfb5c6433f98c4c12ac498d4590aadf21c | [] | no_license | Daendaralus/AIMP-Discord-Presence | 0ed0215ca341e6d508a74f5e84219a1daa797b98 | a9df416d6ce638d6174cd390200ef6ac9623e2e5 | refs/heads/master | 2022-04-26T03:45:54.850677 | 2020-04-29T20:09:55 | 2020-04-29T20:09:55 | 259,918,958 | 3 | 2 | null | 2020-04-29T12:27:33 | 2020-04-29T12:27:33 | null | UTF-8 | C++ | false | false | 939 | h | #pragma once
template <typename T>
class IUnknownInterface : public T
{
public:
IUnknownInterface()
: m_cRef(0)
{}
virtual ~IUnknownInterface() {}
virtual HRESULT WINAPI QueryInterface(REFIID riid,
LPVOID* ppvObj)
{
// Always set out parameter to NULL, validating it firs... | [
"ddevim13@gmail.com"
] | ddevim13@gmail.com |
3537d551c90dd12e4d519d7800828f52d4d92e43 | 47c3c9b9f6d05e514da1d9fb2901bbc9b28a6f40 | /GameQuiz.cpp | c1f12220fcc938f4092f7d4a5c7c45f9507c585c | [] | no_license | Grubanosh/QuizGameC | 8dbcf1dc7b15fd2b33d8163757539cb10b22c54b | a11badbe756aa1ed7f686d7589aeff1d504a3298 | refs/heads/master | 2020-09-10T01:38:15.556562 | 2019-11-14T05:16:01 | 2019-11-14T05:16:01 | 221,617,248 | 0 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 44,397 | cpp | #include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <unistd.h>
char player1[15], player2[15], escolha1, escolha2;
int pontuacao1, pontuacao2, opc;
main(){
srand(time(NULL));
printf("Player 1: ");
scanf("%s", player1);
printf("Player 2: ");
scanf("%s", player2);
do{
opc=(rand()%... | [
"noreply@github.com"
] | noreply@github.com |
9267ab4601d8aa6ccde0b7cc0ceb95b9a5f6f6ee | e8da41785e3264a9506ece8b65b25e5c6e7ac574 | /oneflow/user/kernels/arg_where_kernel.cpp | 0598b44072d9b3afec50325d507a9a22a59a4bd9 | [
"Apache-2.0"
] | permissive | runner42195/oneflow | 91007547251ff02a2d725847457a2c9f128e8da3 | 2778e023dff3771d9da8b91abb40462333cc2fa4 | refs/heads/master | 2023-08-29T19:38:27.863610 | 2021-11-05T02:30:49 | 2021-11-05T02:30:49 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,796 | cpp | /*
Copyright 2020 The OneFlow 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 agre... | [
"noreply@github.com"
] | noreply@github.com |
62d621eef2d04b105c84f2408cf6df58ebde79b0 | ac4b68220b471230602a936538dfe9fbd84dc44e | /Doctor.cpp | 3d49698ba942a9b6199a28bc2cf9b8123ffac914 | [
"MIT"
] | permissive | DonnC/Hospital-Management-System | 493e320eb12a16604e52a180df3b4bf555564b02 | 5eb1d3d0e95b6bcd4aac179b6109f7ae5cc5af75 | refs/heads/master | 2022-12-14T22:51:31.043134 | 2020-09-04T07:26:24 | 2020-09-04T07:26:24 | 292,638,606 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,790 | cpp | #include <iostream>
#include <iomanip>
#include <Windows.h>
#include "Doctor.h"
using namespace std;
void Doctor::regPersonnel()
{
string nam, gendr, file_pw;
int i_d, eg;
getchar();
cout << "Doctor Registration. Provide registration details." << endl;
cout << "Name: " << endl;
getline(cin, ... | [
"donychinhuru@gmail.com"
] | donychinhuru@gmail.com |
86a8595f20eed2adc08d4ddfae349d8496c91227 | 3d2d8493bac65238cfb624f5d1c0438810ecff55 | /JaalMesh/include/Doublet.hpp | dd6c3c99bdd725dbd75c0ea8bf98aef155c95945 | [] | no_license | csv610/JaalGeometry | 238033bdac1e650b7b126a1721c7fe478304173d | f6c714e7bf1c24f2663a234ea300c02cd9ebb47b | refs/heads/master | 2020-12-30T22:43:36.729295 | 2017-02-14T19:41:50 | 2017-02-14T19:41:50 | 80,649,641 | 10 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 858 | hpp | #pragma once
#include "Mesh.hpp"
#include "MeshOptimization.hpp"
///////////////////////////////////////////////////////////////////////////////
class JDoublet : public JMeshTopologyOptimization
{
static JLogger *logger;
public:
static bool isDoublet(const JNodePtr &v);
static void addAttribute(const JMe... | [
"csverma@blackhole2"
] | csverma@blackhole2 |
d82ef20545f94445fd60d8450a76ff8f55a4ec41 | be3167504c0e32d7708e7d13725c2dbc9232f2cb | /mame/src/mame/includes/djmain.h | 79bfe453dd3e37339c66283004ed953e0e461a98 | [] | no_license | sysfce2/MAME-Plus-Plus-Kaillera | 83b52085dda65045d9f5e8a0b6f3977d75179e78 | 9692743849af5a808e217470abc46e813c9068a5 | refs/heads/master | 2023-08-10T06:12:47.451039 | 2016-08-01T09:44:21 | 2016-08-01T09:44:21 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,060 | h | class djmain_state : public driver_device
{
public:
djmain_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag) ,
m_obj_ram(*this, "obj_ram"){ }
int m_sndram_bank;
UINT8 *m_sndram;
int m_turntable_select;
UINT8 m_turntable_last_pos[2];
UINT16 ... | [
"mameppk@199a702f-54f1-4ac0-8451-560dfe28270b"
] | mameppk@199a702f-54f1-4ac0-8451-560dfe28270b |
25da0ac266139f67fe2017fa77fba176c2e69f7a | 709cd826da3ae55945fd7036ecf872ee7cdbd82a | /Term/WildMagic2/Applications/Imagics/ExtractLevelCurves/ImageInterp2D.h | 0b7eddea6012c07dcc1755c37e5ec9b06fa86b96 | [] | no_license | argapratama/kucgbowling | 20dbaefe1596358156691e81ccceb9151b15efb0 | 65e40b6f33c5511bddf0fa350c1eefc647ace48a | refs/heads/master | 2018-01-08T15:27:44.784437 | 2011-06-19T15:23:39 | 2011-06-19T15:23:39 | 36,738,655 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,147 | h | // Magic Software, Inc.
// http://www.magic-software.com
// http://www.wild-magic.com
// Copyright (c) 2003. All Rights Reserved
//
// The Wild Magic Library (WML) source code is supplied under the terms of
// the license agreement http://www.magic-software.com/License/WildMagic.pdf
// and may not be copied or ... | [
"pocatnas@gmail.com"
] | pocatnas@gmail.com |
db8f7249a6f46a6513d4b057d0d4f7b4a7065bf7 | 6ff98b8b145d494c37233e7606de1471cea06434 | /Bitest/print/PrintView.h | 89884914d30c7bfbcf75f057ee669dbe087a9b6e | [] | no_license | EasyMapOrg/Bitest | c3cff115a0fc2416763fe179ab17ce4966f4e3fd | 3b51889f1cb0c901733cc95e8ebdf9bcf6dc13c2 | refs/heads/master | 2020-03-07T20:26:37.970541 | 2016-05-21T06:41:25 | 2016-05-21T06:41:25 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 8,240 | h | #if !defined(AFX_PRINTVIEW_H__2AF9CEDE_8D19_4688_94ED_3995497B2427__INCLUDED_)
#define AFX_PRINTVIEW_H__2AF9CEDE_8D19_4688_94ED_3995497B2427__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// PrintView.h : header file
//
#include "DATASTRUCT.h"
#include "Util.h"
//////////////////////////////////... | [
"iloveghq@sina.com"
] | iloveghq@sina.com |
71c82596967cdd4fab7506d2504444fb017d7107 | 6aeccfb60568a360d2d143e0271f0def40747d73 | /sandbox/statistics/cross_validation/boost/statistics/detail/cross_validation/extractor/identity.hpp | 90639402e94af028a07ed580482c0c1e3dac1bf2 | [
"BSL-1.0"
] | permissive | ttyang/sandbox | 1066b324a13813cb1113beca75cdaf518e952276 | e1d6fde18ced644bb63e231829b2fe0664e51fac | refs/heads/trunk | 2021-01-19T17:17:47.452557 | 2013-06-07T14:19:55 | 2013-06-07T14:19:55 | 13,488,698 | 1 | 3 | null | 2023-03-20T11:52:19 | 2013-10-11T03:08:51 | C++ | UTF-8 | C++ | false | false | 1,325 | hpp | //////////////////////////////////////////////////////////////////////////////
// cross_validation::extractor::identity.hpp //
// //
// (C) Copyright 2009 Erwann Rogard //
// ... | [
"erwann.rogard@gmail.com"
] | erwann.rogard@gmail.com |
1fb97962d5dc3dfb01b19eb3c635eeacc85b1050 | 9104c971481ddadeb06e2af9a95305625e7c006f | /A_RTA/sol/ok.cpp | 4e143a29998c68e36180cbbb5d7f04a19d7432ac | [] | no_license | Aizu-Competitive-Programming-Club/acpc2020 | 55d7a896ac3e874482813e769bef72359343c365 | 369e2175dbdbd0536543dcac54a2429843dcfc32 | refs/heads/master | 2022-12-14T22:23:26.207777 | 2020-09-20T05:40:21 | 2020-09-20T05:40:21 | 282,199,819 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 125 | cpp | #include<iostream>
using namespace std;
int main(){
int a, b;
cin>>a>>b;
cout<<a * 2 + b * 3<<endl;
return 0;
}
| [
"ok1260026@gmail.com"
] | ok1260026@gmail.com |
84f047638f2942d316f5a24ad8f10ecf71a69fd2 | 0dbc8983b64f588369d5de1a5e29347c41bdd899 | /Project2/Person.h | 99ffa7012b8fad0720df17420148aa165f15b254 | [] | no_license | mrdiegoboy/Project2 | 733325677d0dcd90273b6c054d604b37af675032 | ffbf34e1a57835fee9c8c2e66344a6d457af886a | refs/heads/master | 2020-06-06T16:19:03.071916 | 2014-06-07T06:53:13 | 2014-06-07T06:53:13 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 548 | h | /*
* File: Person.h
* Author: Diego
*
* Created on June 5, 2014, 8:21 PM
*/
#ifndef PERSON_H
#define PERSON_H
#include <iostream>
using namespace std;
class Person{
protected:
string name;
string address;
string city;
string state;
int zip;
public:
string getName();
string getAddr... | [
"diego.montelongo@gmail.com"
] | diego.montelongo@gmail.com |
b22f889bc973abcf790951ea05e2e92fb154e97a | fdbb74a95924e2677466614f6ab6e2bb13b2a95a | /libc/nt/thunk/paint.inc | 5f9705a9f5bde287b61eb2bba17f82c70fab8b33 | [
"ISC"
] | permissive | jart/cosmopolitan | fb11b5658939023977060a7c6c71a74093d9cb44 | 0d748ad58e1063dd1f8560f18a0c75293b9415b7 | refs/heads/master | 2023-09-06T09:17:29.303607 | 2023-09-02T03:49:13 | 2023-09-02T03:50:18 | 272,457,606 | 11,887 | 435 | ISC | 2023-09-14T17:47:58 | 2020-06-15T14:16:13 | C | UTF-8 | C++ | false | false | 211 | inc | #define SetPixel(...) __imp_SetPixel(__VA_ARGS__)
#define GetPixel(...) __imp_GetPixel(__VA_ARGS__)
extern typeof(SetPixel) *const __imp_SetPixel __msabi;
extern typeof(GetPixel) *const __imp_GetPixel __msabi;
| [
"jtunney@gmail.com"
] | jtunney@gmail.com |
91e6543b09fb7cff6c28ee7fe1ce809ba7ada34f | 960c37661139294f79eca8a54e776f5377889425 | /recursion/reverse a stack.cpp | a3c5e40bad19df8ce1df014880ef4b03defab9bd | [] | no_license | wizee-B/DS | a462777229e959535eefb47cfcb6804f033f8d03 | b4f556b9a443b6ed5ba9767f9772fa821d924780 | refs/heads/master | 2022-11-13T19:31:17.282562 | 2020-07-04T07:56:16 | 2020-07-04T07:56:16 | 274,567,061 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 735 | cpp | #include<bits/stdc++.h>
using namespace std;
void print(stack<int> &s){
if(s.empty())return ;
int x=s.top();
cout<<x<<" ";
s.pop();
print(s);
s.push(x);
}
void put_at_end(stack<int> &s, int x){
if(s.empty()){s.push(x);return ;}
int y=s.top();
s.pop();
put_at_end(s,x);
s... | [
"nextresp@gmail.com"
] | nextresp@gmail.com |
01575c60e7e0a6d12061c4649c1a5f7192601145 | 4d657ab78b904f3103ff9f8dc2bd5c137fb0973a | /cses/concert-tickets1.cpp | 2eb77ad92e060a1dfaa5d26de6c892163849ee39 | [] | no_license | durgeshak19/Cpp_DS_Algos | 8b5eddcdea0d552f50f72fc4295bd632c4de6d61 | 42e5071b110e82a6cbda0ab08813daaf51119af2 | refs/heads/main | 2023-09-05T04:52:08.131393 | 2021-11-22T08:49:32 | 2021-11-22T08:49:32 | 367,378,037 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 567 | cpp | #include<bits/stdc++.h>
using namespace std;
typedef long long ll;
int main(){
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
#ifndef ONLINE_JUDGE
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#endif
int n,m,h,t; multiset<int> tickets;
cin >> n >> m;
for (int i=0;i<n;++i... | [
"durgesh.ak19@gmail.com"
] | durgesh.ak19@gmail.com |
f48ab9a2840b96c35bcd072acc3ff04546b8103d | 0b9d9c4ba6f17ab2a43ce5a339010f7919d115e1 | /src/main.cpp | 98ff6dda842065e2583cf78f09150a8e0be04169 | [] | no_license | paukert/fit-ctu-bi-pa2 | 95e3b342aa6a0c729f3e0f9480b7a6a607a3d19f | dda0d5c2bf531eef5a46a9fd4be6a4cac13809e9 | refs/heads/master | 2023-03-27T17:37:02.079674 | 2021-03-30T21:59:16 | 2021-03-30T21:59:16 | 352,959,443 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 386 | cpp | #include <iostream>
#include <exception>
#include "CApplication.h"
using namespace std;
int main() {
try {
CApplication().run();
}
catch (const exception & e) {
cerr << e.what() << endl;
return EXIT_FAILURE;
}
catch (...) {
cerr << "Something went wrong :(" << end... | [
"paukeluk@fit.cvut.cz"
] | paukeluk@fit.cvut.cz |
41a8bb48eb71fd79cca512cdc3cd84b033ef8348 | 5c18724055f2b86a5c9e6d04db24f86602d34bc1 | /tests/data/SimpleParser.cpp | 460c28b71bc937c08d12dca0105f4da7b57d49cb | [
"LLVM-exception",
"MIT",
"Apache-2.0",
"BSD-3-Clause"
] | permissive | FergusonAJ/Empirical | 35478e5b075bc0ad92eb8372fd0f1ab099787b4f | 944968bac43274b601237392dfc82323942ffc20 | refs/heads/master | 2023-08-22T04:01:53.003213 | 2023-08-09T20:45:36 | 2023-08-09T20:45:36 | 192,601,261 | 0 | 0 | null | 2023-08-09T20:45:37 | 2019-06-18T19:34:11 | C++ | UTF-8 | C++ | false | false | 11,051 | cpp | /**
* @note This file is part of Empirical, https://github.com/devosoft/Empirical
* @copyright Copyright (C) Michigan State University, MIT Software license; see doc/LICENSE.md
* @date 2022
*
* @file SimpleParser.cpp
*/
#define CATCH_CONFIG_MAIN
#include "third-party/Catch/single_include/catch2/catch.hpp"
... | [
"charles.ofria@gmail.com"
] | charles.ofria@gmail.com |
83f2698a3f436130e6c2d5efc1ecb244696be2b1 | aa675a2c3658ce6d8d44de3985dd5b8090ddba9a | /cocos/2d/CCAutoPolygon.cpp | 38a65c12a3275000b6989d2bd21c23695a10f713 | [
"MIT"
] | permissive | mowenli/cocos2d-x-lite | 7b08cb66ae9c99d33552b077babba8665ce2324e | a28324f91bbbf33158fb971688d57567b61f9916 | refs/heads/master | 2022-05-22T12:15:54.634012 | 2016-04-11T07:53:59 | 2016-04-11T07:53:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,321 | cpp | /****************************************************************************
Copyright (c) 2015-2016 Chukong Technologies Inc.
http://www.cocos2d-x.org
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 Sof... | [
"wenhai.lin@chukong-inc.com"
] | wenhai.lin@chukong-inc.com |
901190a5f7264a6f304b70accb818d33a368131a | 1f68636232e489e19b7b937f75f04f01e833ce3f | /mfc_source/VS2015/Chapter08/Subclass/CMyEdit.h | 4901e48ce19727c808e5ecb6e413df6e9cec7528 | [] | no_license | SKARTEI/OOP_MFC_lecture | 41de5922df2a607a688af8df5c79f7704cf7fb50 | d18d2ed3cac8ebb7dff0c27be66cacfcc71dcc70 | refs/heads/master | 2023-04-11T19:37:19.817736 | 2021-05-07T03:30:54 | 2021-05-07T03:30:54 | 347,792,292 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 234 | h | #pragma once
// CMyEdit
class CMyEdit : public CWnd
{
DECLARE_DYNAMIC(CMyEdit)
public:
CMyEdit();
virtual ~CMyEdit();
protected:
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnChar(UINT nChar, UINT nRepCnt, UINT nFlags);
};
| [
"skarte223@koreatech.ac.kr"
] | skarte223@koreatech.ac.kr |
81ce2a7a9c32b4405006d88acef9af07f56b3da7 | ba9322f7db02d797f6984298d892f74768193dcf | /live/src/model/DescribeLiveTopDomainsByFlowResult.cc | 8630b08812142eb38fc0ed32d4f6b701da43eaa2 | [
"Apache-2.0"
] | permissive | sdk-team/aliyun-openapi-cpp-sdk | e27f91996b3bad9226c86f74475b5a1a91806861 | a27fc0000a2b061cd10df09cbe4fff9db4a7c707 | refs/heads/master | 2022-08-21T18:25:53.080066 | 2022-07-25T10:01:05 | 2022-07-25T10:01:05 | 183,356,893 | 3 | 0 | null | 2019-04-25T04:34:29 | 2019-04-25T04:34:28 | null | UTF-8 | C++ | false | false | 3,101 | cc | /*
* Copyright 2009-2017 Alibaba Cloud 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... | [
"yixiong.jxy@alibaba-inc.com"
] | yixiong.jxy@alibaba-inc.com |
b0642cc51d13261c3013986080daab1b472abcc5 | d6b4bdf418ae6ab89b721a79f198de812311c783 | /teo/src/v20220106/model/CachePrefresh.cpp | 43f7898ad8b506d0938006a11407e9a0dee351c0 | [
"Apache-2.0"
] | permissive | TencentCloud/tencentcloud-sdk-cpp-intl-en | d0781d461e84eb81775c2145bacae13084561c15 | d403a6b1cf3456322bbdfb462b63e77b1e71f3dc | refs/heads/master | 2023-08-21T12:29:54.125071 | 2023-08-21T01:12:39 | 2023-08-21T01:12:39 | 277,769,407 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,959 | cpp | /*
* Copyright (c) 2017-2019 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
... | [
"tencentcloudapi@tencent.com"
] | tencentcloudapi@tencent.com |
ae8b25592e7f522971ca52e4eedb875bae3e4c91 | 80efeac532826891989c039100cb4913083ae197 | /Scripts/Tenny.cpp | 581d10470e066e979d3df156212d10d6e6a12222 | [] | no_license | lavelasco/Archon | 582e5b1ddde7379eabc106cd68299c43fee0159d | 287c8b25a0f347b24f069417ba174d76bb0cf449 | refs/heads/master | 2021-06-27T19:13:14.751151 | 2017-09-16T18:56:15 | 2017-09-16T18:56:15 | 82,961,292 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,320 | cpp | // Fill out your copyright notice in the Description page of Project Settings.
#include "Archon.h"
#include "Tenny.h"
#include "BossOwnedStates.h"
#include "Kismet/KismetSystemLibrary.h"
#include "DamagePlatform.h"
#include "FireProjectile.h"
// Sets default values
ATenny::ATenny(const FObjectInitializer ... | [
"noreply@github.com"
] | noreply@github.com |
426b2bcd02f93d1cbd170092c9fbc040db29ae17 | bd2e6b8a7ce917d08e4ad1c835928d51afe1c43f | /util.cpp | 047cfcf15ef979f2cda9c6b044acfa3508b85194 | [] | no_license | offthebus/Keyshare | 9491d8ad9994c2c3bc162440e27eff4aad8acc4c | fa0c4b8d3dd16d8e8acb3c7c58a12cce4450357e | refs/heads/master | 2022-12-31T11:11:32.916276 | 2020-10-09T12:11:48 | 2020-10-09T12:11:48 | 299,288,794 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,285 | cpp | #include "stdafx.h"
#include "util.h"
namespace util {
void printError()
{
// Retrieve the system error message for the last-error code
LPVOID lpMsgBuf;
LPVOID lpDisplayBuf;
DWORD dw = GetLastError();
FormatMessage(
FORMAT_MESSAGE_ALLOCATE_BUFFER |
FORMAT_MESSAGE_FROM_SYSTEM ... | [
"phantasme@offthebus.myzen.co.uk"
] | phantasme@offthebus.myzen.co.uk |
056608ef6b5c02757e27f449bae04b3dd14bf070 | cd726912664cea9c458ac8b609dd98bf33e3b9a0 | /snippets/cpp/VS_Snippets_CLR_System/system.ConsoleKeyInfo.GetHashcode/cpp/hash.cpp | 504f7fe19dfb74b0e2648f0f07c32fcf107d1556 | [
"MIT",
"CC-BY-4.0"
] | permissive | dotnet/dotnet-api-docs | b41fc7fa07aa4d54205df81284bae4f491286ec2 | 70e7abc4bcd692cb4fb6b4cbcb34bb517261dbaf | refs/heads/main | 2023-09-04T07:16:44.908599 | 2023-09-01T21:46:11 | 2023-09-01T21:46:11 | 111,510,915 | 630 | 1,856 | NOASSERTION | 2023-09-14T21:45:33 | 2017-11-21T06:52:13 | C# | UTF-8 | C++ | false | false | 2,607 | cpp | // ConsoleKeyInfo.GetHashCode.cpp : main project file.
// <Snippet1>
using namespace System;
using namespace System::Text;
String^ KeyCombination(ConsoleKeyInfo sourceCki);
void main()
{
String^ k1 = "\nEnter a key ......... ";
String^ key1 = "";
String^ hashCodeFmt = "The hash code for the {0} key is {1}.... | [
"noreply@github.com"
] | noreply@github.com |
3f0122afd4440afb385aa2c3f152997f15afc8bc | 4cfb925767003ede88b3314d744a1df9b329192b | /include/oglplus/enums/ext/compat_prim_type.ipp | 0505d8a845cadb67b38c87792f5f3e7bb436d846 | [
"BSL-1.0"
] | permissive | detunized/oglplus | 4ddd7617fd38f47d7069834128bd49e16a79233c | 184c9e2796d100f73800b924de1b9f8ba0b0fa62 | refs/heads/master | 2021-01-17T11:09:25.094741 | 2013-03-19T17:58:30 | 2013-03-19T17:58:30 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 752 | ipp | /*
* .file oglplus/enums/ext/compat_prim_type.ipp
*
* Automatically generated header file. DO NOT modify manually,
* edit 'source/enums/ext/compat_prim_type.txt' instead.
*
* Copyright 2010-2013 Matus Chochlik. Distributed under the Boost
* Software License, Version 1.0. (See accompanying file
* LICENSE_1... | [
"chochlik@gmail.com"
] | chochlik@gmail.com |
19e46114357156dd9f19323f0141fb76f22477ca | 6b2a8dd202fdce77c971c412717e305e1caaac51 | /solutions_5634947029139456_0/C++/rathi062/charging.cpp | e96c6940741e24b37a878ffd5b2f0fd47e3b05ef | [] | 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 | 2,814 | cpp | #include<iostream>
#include<list>
#include<string>
#include<cstring>
#include<sstream>
#include<cctype>
#include<string.h>
#include<algorithm>
#include<cmath>
#include<stack>
#include<fstream>
#include<cstdlib>
#include<vector>
#include<map>
#include<set>
#include<utility>
#include<iomanip>
#include<queue>
using names... | [
"eewestman@gmail.com"
] | eewestman@gmail.com |
1ef6c0f2b1c0095770d23e91f8f38210126b6c72 | d9e969f958bfd04eaeaf1b3f51cd1bca939fcac5 | /957.n-天后的牢房.cpp | 7a155350f0476190d790ba07f79cca21f6883787 | [] | no_license | SilverHL/Leetcode | 7a1682f0157e7e84779be4a9c100be5d0a9602e3 | deb89252a64e81341a53891058bc3ce58b17b50b | refs/heads/master | 2022-05-11T15:42:56.560481 | 2022-05-02T07:16:05 | 2022-05-02T07:16:05 | 196,130,078 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 562 | cpp | #include <vector>
using namespace std;
/*
* @lc app=leetcode.cn id=957 lang=cpp
*
* [957] N 天后的牢房
*/
// @lc code=start
class Solution {
public:
vector<int> prisonAfterNDays(vector<int>& cells, int N) {
int k = N % 14;
if (!k) k = 14;
vector<int> tmp(8, 0);
while (k--) {
... | [
"neojxwang@tencect.com"
] | neojxwang@tencect.com |
1a61c001159649e0872ef5cbdf1be100b813488c | 179d595010292190223b7aaf2ea3a39ab37ef52b | /DP/other_imp_problems/targetSum.cpp | 334058f6b76357abbafdc7cdad9ff85131d79141 | [] | no_license | dreamJarvis/Problem_Solving | d40359170ddfab456a62f9c4c2a55c31c6e2bdfb | 4db08f76e26e9f61d9aa0c0382629d3499dc337f | refs/heads/master | 2023-02-05T03:45:05.989338 | 2021-01-01T21:54:42 | 2021-01-01T21:54:42 | 174,203,367 | 0 | 1 | null | 2020-10-01T09:21:13 | 2019-03-06T19:01:05 | C++ | UTF-8 | C++ | false | false | 2,110 | cpp | // leetcode 494. Target Sum
#include <bits/stdc++.h>
using namespace std;
// to find if by assinging '+', '-' we can get the required sum
// recursive method
// tc : ~ O(2^n)
int targetSum(vector<int> &arr, int sum, int requiredSum, int index){
if(index == arr.size()){
if(sum == requiredSum){
r... | [
"jhatarun16@gmail.com"
] | jhatarun16@gmail.com |
cdb8688ab54c4b8f7878b4f2b6f32db4be9baa7b | 76e652e2ef2c5d57f8115eb4939e1fb460255549 | /Source/NetworkAbility/Private/ActionCharacterBase.cpp | 74a8219bcae181f6ba4625a1e5f88eb73bb9bdec | [] | no_license | alcachofalaruz/NetworkAbilityKit | 00fc5a565cb9a73ec0b7a6e2a84ee11ce4663ada | 7a90a74a1dc27f617bc50bb27e9c085b5df5f7c4 | refs/heads/master | 2023-06-08T09:22:44.172313 | 2021-06-30T18:06:07 | 2021-06-30T18:06:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,347 | cpp | // Fill out your copyright notice in the Description page of Project Settings.
#include "ActionCharacterBase.h"
#include "GameFramework/SpringArmComponent.h"
#include "Camera/CameraComponent.h"
#include "Components/ArrowComponent.h"
#include "Gameframework/Controller.h"
#include "NetworkAbilityKit/Public/AttributeCom... | [
"929509323@qq.com"
] | 929509323@qq.com |
9493a4a381392c1b667e8d3d533d537421fc84a4 | d38390276215ea79fe7a3c4b862d242dfabdd57b | /project3/echo_server.cpp | 2ee66354f3554658a356be01ecb0477786047c05 | [] | no_license | TommyWu-fdgkhdkgh/nctu_network_programming | f065662f118914c1e129aaa801298de5c8dc2454 | 122c0a33b4197b33947529cef49e04e933ba70a3 | refs/heads/master | 2022-07-13T13:33:25.338793 | 2019-04-06T08:29:04 | 2019-04-06T08:29:04 | 179,807,619 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,578 | cpp | #include <array>
#include <boost/asio.hpp>
#include <boost/process.hpp>
#include <boost/bind.hpp>
#include <boost/filesystem.hpp>
#include <cstdlib>
#include <iostream>
#include <memory>
#include <utility>
#include <sys/types.h>
#include <unistd.h>
#include <stdlib.h>
namespace bp = boost::process;
using namespace st... | [
"fdgkhdkgh@gmail.com"
] | fdgkhdkgh@gmail.com |
57e53d37435bdb345ceab8ab5276c7f63a7f4ed0 | 67476073317c1ee6505e3193037596d99c29973d | /atCoder/begginer145/B/b.cpp | 65a3cd56163130b6c001854b83c537d967f7fdba | [] | no_license | gabriellerosa/Codigos-Maratona | 67d68ede4d2c85991323453b0f0166d86e01d27a | 091225d258534b716fe3baa70e67d1fce68aa026 | refs/heads/master | 2023-01-19T10:39:56.153642 | 2020-11-24T21:24:28 | 2020-11-24T21:24:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 597 | cpp | #include <iostream>
using namespace std;
int n;
string s;
int main(){
string s1, s2;
cin >> n >> s;
s1 = s.substr(0,n/2);
s2 = s.substr(n/2,n);
if(s1 == s2) cout << "Yes" << endl;
else cout << "No" << endl;
//cout << s1 << " " << s2;
/*if(n % 2 != 0){
cout << "NO\n";
... | [
"gabi.rosa1@hotmail.com"
] | gabi.rosa1@hotmail.com |
5e17b88bfac6b51db8a2dc30efc3aaafc8f7fb8e | 7428b919f4df7923b5eca00a6cb1e2064f5e4320 | /pat1083. List Grades.cpp | 544ab63cec47cc468d6185c07c58d86906c18e24 | [] | no_license | mascure/PAT | 44eca3ec8b99894d13a128b0199848e24fe39aa9 | ed58818f66d696851d06cd3aaaa55b4bb2db76ab | refs/heads/master | 2020-05-18T11:48:03.769927 | 2014-08-25T07:49:58 | 2014-08-25T07:49:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 850 | cpp | #include<cstdio>
#include<cstring>
#include<cmath>
#include<vector>
#include<iostream>
#include<algorithm>
#include<memory>
#include<map>
#include<unordered_map>
#include<queue>
#include <sstream>
#include <set>
using namespace std;
const int MAX_N=105;
typedef long long ll;
typedef pair<ll,ll> P;
struct Student{
stri... | [
"linzhouwzj@163.com"
] | linzhouwzj@163.com |
1e66d822b8fc81e7b3f4cdabcb9f2bc3eedadeac | c474c200021d5f06fc382f2f2e672bd45f2262fc | /non_windows/codeEssential/source/chapter1/chap1/ch1.h | 06af637fe8f5f6191a0a1c358bfbf84dc060652a | [] | no_license | philipdongfei/EssentialCpp | 5914ba4d1dfceb5f991014c406cac277162ec5e2 | c1275e7b8e7b51cd1f56d83fb4133138a3c10a2f | refs/heads/master | 2020-04-22T09:15:08.938108 | 2019-02-12T06:43:22 | 2019-02-12T06:43:22 | 170,265,680 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,344 | h | /**************************************************
* Essential C++ -- Stanley Lippman
* Addison-Wesley
* ISBN 0-201-48518-4
* homepage: www.objectwrite.com
* email: slippman@objectwrite.com
*************************************************/
#ifndef CH1_H_
#define CH1_H_
#include <vector>
#include ... | [
"philip.dongfei@gmail.com"
] | philip.dongfei@gmail.com |
3ebba7ff9920d6c466ede78d449241bca25e403b | 600df3590cce1fe49b9a96e9ca5b5242884a2a70 | /third_party/WebKit/Source/modules/webdatabase/QuotaTracker.cpp | 326a22099cdd98d19369d6d87354414faa0e6db2 | [
"LGPL-2.0-or-later",
"GPL-1.0-or-later",
"MIT",
"Apache-2.0",
"BSD-3-Clause",
"LicenseRef-scancode-warranty-disclaimer",
"LGPL-2.1-only",
"GPL-2.0-only",
"LGPL-2.0-only",
"BSD-2-Clause",
"LicenseRef-scancode-other-copyleft"
] | permissive | metux/chromium-suckless | efd087ba4f4070a6caac5bfbfb0f7a4e2f3c438a | 72a05af97787001756bae2511b7985e61498c965 | refs/heads/orig | 2022-12-04T23:53:58.681218 | 2017-04-30T10:59:06 | 2017-04-30T23:35:58 | 89,884,931 | 5 | 3 | BSD-3-Clause | 2022-11-23T20:52:53 | 2017-05-01T00:09:08 | null | UTF-8 | C++ | false | false | 3,716 | cpp | /*
* Copyright (C) 2011 Google Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditio... | [
"enrico.weigelt@gr13.net"
] | enrico.weigelt@gr13.net |
9c49cbfa24b14e47ec3686a3a058c89afba4d54d | 3f1b0dc437c6f9b5009b3734fb46c16603eff7d7 | /trash/newmain.cpp | 448305b79293f1da7a63a44d1e00b6b57fcf27d5 | [] | no_license | leoneed03/all | a09b2b9366d7e9c1cedd0ca4dbce04a8cef06d84 | b1ee31cc71fe892b3757601c12764347beb042c7 | refs/heads/master | 2021-06-26T23:14:52.439810 | 2021-02-17T20:28:00 | 2021-02-17T20:28:00 | 218,765,141 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 567 | cpp | #include "huffman.hpp"
int main(int argc, char* argv[]) {
std::vector<std::string> my_argv(argc);
for (int i = 0; i < argc; ++i) {
my_argv[i] = std::string(argv[i]);
}
if ((argc < 4) || ((argc == 5) && (my_argv[1] != "-v"))) {
std::cout << "wrong args" << std::endl;
return 0;
... | [
"mr.senukov@mail.ru"
] | mr.senukov@mail.ru |
eeb10d84615b4c9084b7a5fb370d33a79e921f1c | ea4a165ee5ec50f3725cc6dba73328b596b1655b | /src/execution/arm64/simulator-arm64.cc | 829638b871bcf793b0a66b569ff84a3a99dfda57 | [
"BSD-3-Clause",
"Apache-2.0",
"SunPro"
] | permissive | cocos/v8 | aee84292afaf7d640fd98855766552e229b529f9 | 93dcb090f1141bf80d1adaf4bb919b3b4c49ea89 | refs/heads/main | 2023-05-02T23:41:56.618739 | 2023-04-26T20:06:42 | 2023-04-26T23:01:28 | 633,206,875 | 0 | 1 | null | 2023-04-27T02:24:22 | 2023-04-27T02:24:21 | null | UTF-8 | C++ | false | false | 207,460 | cc | // Copyright 2013 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "src/execution/arm64/simulator-arm64.h"
#include "src/execution/isolate.h"
#if defined(USE_SIMULATOR)
#include <stdlib.h>
#include <cmath>
... | [
"dumganhar@gmail.com"
] | dumganhar@gmail.com |
36cdb7f032b90975af80601b9da0d73fada3276b | dd331b88628ec852a1dbc07ce425084150e4e992 | /hphp/runtime/vm/jit/vasm-jumps.cpp | 78c6439ec2c8a4be279c47ed586334416e12790a | [
"PHP-3.01",
"Zend-2.0",
"BSD-3-Clause"
] | permissive | shjgiser/hhvm | eff6efeeb30f8d9be87243d3e635e0b5504111ac | 90ec368835344f8267cefb57ad56d7226ef7a0b5 | refs/heads/master | 2021-01-18T05:46:04.299598 | 2014-08-21T07:04:06 | 2014-08-21T07:30:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,481 | cpp | /*
+----------------------------------------------------------------------+
| HipHop for PHP |
+----------------------------------------------------------------------+
| Copyright (c) 2010-2013 Facebook, Inc. (http://www.facebook.com) |
+---------... | [
"hhvm-bot@fb.com"
] | hhvm-bot@fb.com |
1ee609338b4bf5d3ff16c84980edacfa42ed43b6 | 6589ef00c11b547e1b5af939968007eaaf17c12b | /common/Display/Adafruit_GFX.h | 036acff36a1133a7034c4a8c2e0b60e042adf9f7 | [
"BSD-3-Clause",
"BSD-2-Clause"
] | permissive | Nan0416/AVR-atmega328p | e2f2ce8fc16eaa495f54fc843a521c2605f381d2 | 3e9733f4e13e1a78e7ac4e80c78ddb4c5fbd8051 | refs/heads/master | 2021-09-05T17:04:37.935477 | 2018-01-29T21:24:11 | 2018-01-29T21:24:11 | 85,274,211 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 7,498 | h | #ifndef _ADAFRUIT_GFX_H
#define _ADAFRUIT_GFX_H
#include "Arduino.h"
#include "Print.h"
#include "gfxfont.h"
class Adafruit_GFX : public Print {
public:
Adafruit_GFX(int16_t w, int16_t h); // Constructor
// This MUST be defined by the subclass:
virtual void drawPixel(int16_t x, int16_t y, uint16_t color) =... | [
"15022299316@163.com"
] | 15022299316@163.com |
21c5bb9c6e9b5b79bf140901dd04bb0f82eb20a8 | 424d9d65e27cd204cc22e39da3a13710b163f4e7 | /components/autofill_assistant/browser/web/web_controller_browsertest.cc | 855ad835158ffb3e4d6b06bfd5286a73e52192e3 | [
"BSD-3-Clause"
] | permissive | bigben0123/chromium | 7c5f4624ef2dacfaf010203b60f307d4b8e8e76d | 83d9cd5e98b65686d06368f18b4835adbab76d89 | refs/heads/master | 2023-01-10T11:02:26.202776 | 2020-10-30T09:47:16 | 2020-10-30T09:47:16 | 275,543,782 | 0 | 0 | BSD-3-Clause | 2020-10-30T09:47:18 | 2020-06-28T08:45:11 | null | UTF-8 | C++ | false | false | 84,621 | 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 "components/autofill_assistant/browser/web/web_controller.h"
#include "base/bind.h"
#include "base/memory/ref_counted.h"
#include "base/strings/... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
4c38a96d0ac05def1da7ed205212fa9a31550a44 | 478506575299db25829f19efb565821ab2ff1bf3 | /include/netuit/arrange/CompleteTopologyFactory.hpp | e2f223ee530a739727acba8213da56d84e6f342f | [
"MIT"
] | permissive | perryk12/conduit | bf75d7b79f50f2ca123baa0a66cbc4080fd35328 | 3ea055312598353afd465536c8e04cdec1111c8c | refs/heads/master | 2023-01-01T21:56:19.210550 | 2020-10-22T14:55:44 | 2020-10-22T14:55:44 | 300,478,004 | 0 | 0 | MIT | 2020-10-22T15:39:56 | 2020-10-02T02:13:46 | C++ | UTF-8 | C++ | false | false | 1,343 | hpp | #pragma once
#ifndef NETUIT_ARRANGE_COMPLETETOPOLOGYFACTORY_HPP_INCLUDE
#define NETUIT_ARRANGE_COMPLETETOPOLOGYFACTORY_HPP_INCLUDE
#include "../../../third-party/Empirical/source/base/vector.h"
#include "../topology/TopoEdge.hpp"
#include "../topology/Topology.hpp"
#include "../topology/TopoNode.hpp"
namespace netui... | [
"mmore500.login+git@gmail.com"
] | mmore500.login+git@gmail.com |
738736edb2a1ac7ddda423501d20bd59bad3379e | 9e47fa2c44e8af9a2e2416563178ea1392b2990c | /rs232driver.h | 0b45cdf9f8761dd3baadc73826870573f697568b | [] | no_license | koboldwiz/grue-usb-avr | 39bfed8106efd1d269caae2a0e0f6fb92e56408f | f64151dd0017f9b545c4925706d4938ac76c14c1 | refs/heads/main | 2023-01-21T10:03:39.237482 | 2020-11-25T06:29:54 | 2020-11-25T06:29:54 | 315,848,855 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 196 | h | //Copyright (C) goon 2020. See the LICENSE file for details
class RS232Driver
{
public:
RS232Driver();
virtual ~RS232Driver();
protected:
private:
public:
private:
int fileno;
};
| [
"holyghost@ip-172-31-85-48.ec2.internal"
] | holyghost@ip-172-31-85-48.ec2.internal |
d3024fd884d2bc0913fc9da0c6d176091c3630b0 | 9afb4e19078c013d2ab04ff765d16cefb1c54075 | /BrowsePanel.h | 6b69e5aff455901a9a09f10ec98aac123d85478b | [] | no_license | Dofensmirtsz/TiEnEdit | bbdacbad8cecb107162f50cb1de10d0a307eef85 | 18115709339edfb88af0bf9e82af58eb1e98f74f | refs/heads/master | 2021-01-21T18:21:09.520277 | 2017-06-01T10:01:50 | 2017-06-01T10:01:50 | 92,034,232 | 0 | 0 | null | 2017-05-22T09:10:31 | 2017-05-22T09:10:31 | null | UTF-8 | C++ | false | false | 1,086 | h | #pragma once
#include "wm/Panel.h"
#include "wm/Image.h"
class TienEdit;
namespace vrlib { class Texture; }
class DraggableImage : public Image
{
TienEdit* editor;
DragProperties* dragProperties = nullptr;
public:
DraggableImage(TienEdit* editor, vrlib::Texture* texture, const glm::ivec2& position, const glm::iv... | [
"borfje@gmail.com"
] | borfje@gmail.com |
2db61685286fce5494bf9c405229cd41fecb3c57 | b6e8a1fa1085a52d7ba6ed6b6f11dbd82905f3ba | /source/lowlevel/brcriticalsection.cpp | 043593f2ba9794fb28581ea97378a03c2b6d3d4d | [
"LicenseRef-scancode-unknown-license-reference",
"MIT",
"LicenseRef-scancode-warranty-disclaimer",
"Zlib"
] | permissive | etsangsplk/burgerlib | ed4039b175ec96fe28c0ccd52d19f5715fbeccc9 | bec821be1ba1d7fbe08e3b128b086158d3bb1b21 | refs/heads/master | 2022-04-03T20:56:46.598519 | 2020-02-24T09:25:15 | 2020-02-24T09:25:15 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 20,361 | cpp | /***************************************
Root base class
Copyright (c) 1995-2017 by Rebecca Ann Heineman <becky@burgerbecky.com>
It is released under an MIT Open Source license. Please see LICENSE
for license details. Yes, you can use it in a
commercial title without paying anything, just give me a credit.
Ple... | [
"becky@burgerbecky.com"
] | becky@burgerbecky.com |
f1406dd40076bd44ba8c5f73835b7628b5600850 | f08a55d13af6ab107a868db6419e0b0cb0e1828a | /10972.cpp | 914947432170e5a0305e7255f6e4ee9b7af25bb0 | [] | no_license | mylvoh0714/BOJ | 3bf369c0e03d5fa2aff45075c8db753c709050f7 | f9456055bab897cce2041d2a3ad5468090a72a43 | refs/heads/master | 2018-11-29T09:02:55.134174 | 2018-11-16T18:06:58 | 2018-11-16T18:06:58 | 121,135,047 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 580 | cpp | #include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
vector<int> arr;
int main()
{
ios_base::sync_with_stdio(false);
int n;
cin >> n;
arr.resize(n);
for ( int i = 0; i < n; i++ )
cin >> arr[i];
int i = n - 1;
while ( i > 0 && arr[i - 1] >= arr[i] ) i--;
if ( i <= 0 )
{
printf... | [
"mylvoh0714@gmail.com"
] | mylvoh0714@gmail.com |
bca31fbf819a042d28449269bb5dcd6a2ec5c749 | b16e2f8cc94df8320f9caf8c8592fa21b1f7c413 | /Kattis/prefixfreecode/combinatorics_trie.cpp | e488721a5cb179d824748d149c05df24011d4f6b | [
"MIT"
] | permissive | codgician/Competitive-Programming | 000dfafea0575b773b0a10502f5128d2088f3398 | 391f3ce9b89b0a4bbbe3ff60eb2369fef57460d4 | refs/heads/master | 2022-06-13T04:59:52.322037 | 2020-04-29T06:38:59 | 2020-04-29T06:38:59 | 104,017,512 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,259 | cpp | #include <iostream>
#include <cstdio>
#include <algorithm>
#include <cmath>
#include <string>
#include <cstring>
#include <iomanip>
#include <climits>
#include <stack>
#include <queue>
#include <vector>
#include <set>
#include <map>
#include <functional>
#include <iterator>
using namespace std;
#define SIZE 1000010
#d... | [
"codgician@users.noreply.github.com"
] | codgician@users.noreply.github.com |
fa553f17f77a8e31d79e9321592e8c80d424ba59 | d7e41f16df202fe917d0d6398cb7a0185db0bbac | /include/wise.kernel/server/server_packets_factory.hpp | 463ba3dea7966bd312243d9f2b3b7ed98e3eb28f | [
"MIT"
] | permissive | npangunion/wise.kernel | 77a60d4e7fcecd69721d9bd106d41f0e5370282a | a44f852f5e7ade2c5f95f5d615daaf154bc69468 | refs/heads/master | 2020-12-28T16:17:29.077050 | 2020-05-18T15:42:30 | 2020-05-18T15:42:30 | 238,401,519 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 40 | hpp | #pragma once
void add_server_packets(); | [
"npangunion@gmail.com"
] | npangunion@gmail.com |
edf733116747146ee87ed1cabe69f71c4500b116 | 4759c53c009224317299082d075d67ca50835ad4 | /irondust/sg/isgelement.hpp | 21a39b1067e7cee7b1e888be92c6709e9d7a7538 | [] | no_license | HymiR/IronDust | bd980d807bf7e3a9eb3921f38bb2e51a5083ed5d | 0764c667c1f375aef00e41580516cb7f2e5d7525 | refs/heads/master | 2021-05-23T23:58:37.611125 | 2020-10-18T10:56:43 | 2020-10-18T10:56:43 | 35,041,701 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,138 | hpp | /**
** This file is part of the irondust project.
** Copyright 2019 CyberViking Softwareschmiede GbR <leghissa@cyber-viking.com>.
**
** This program is free software: you can redistribute it and/or modify
** it under the terms of the GNU Lesser General Public License as
** published by the Free Software Foundatio... | [
"armin.leghissa@gmail.com"
] | armin.leghissa@gmail.com |
e9456d6bbae376ad70a65702a5eec38b5d6c16fd | 38dd1218e921096135f4e9b1001a8020cfc2d2fb | /jni/Sound/OSLSound.cpp | 74c7ddc05f54a98e1ae7dd4d5254d55c29147035 | [] | no_license | cibergod/Pac-man-for-android-NDK | fb79431de7f786c211f492e39660f251ebac2de2 | b85828f17a6916589db2f515c3c7956d0efbd142 | refs/heads/master | 2021-01-18T08:34:15.413242 | 2014-01-21T08:10:26 | 2014-01-21T08:10:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,185 | cpp | #include "Sound/OSLSound.h"
#include "unistd.h"
OSLSound::~OSLSound(){
}
OSLSound::OSLSound( OSLContext * context){
this->context = context;
this->mgr = context->mgr;
player = NULL;
volume = 1;
}
OSLSound::OSLSound( OSLContext * context, char * path){
this->context = context;
this->mgr = context->mgr;
}
void O... | [
"all.nothing.name@gmail.com"
] | all.nothing.name@gmail.com |
305b5535d932a7f9d28701fe427d83ca0c512a2b | 0577a46d8d28e1fd8636893bbdd2b18270bb8eb8 | /update_notifier/thirdparty/wxWidgets/tests/strings/strings.cpp | 8bbe9d69adabd70e29ffb040d7c9cd306d4d2a30 | [
"BSD-3-Clause"
] | permissive | ric2b/Vivaldi-browser | 388a328b4cb838a4c3822357a5529642f86316a5 | 87244f4ee50062e59667bf8b9ca4d5291b6818d7 | refs/heads/master | 2022-12-21T04:44:13.804535 | 2022-12-17T16:30:35 | 2022-12-17T16:30:35 | 86,637,416 | 166 | 41 | BSD-3-Clause | 2021-03-31T18:49:30 | 2017-03-29T23:09:05 | null | UTF-8 | C++ | false | false | 41,962 | cpp | ///////////////////////////////////////////////////////////////////////////////
// Name: tests/strings/strings.cpp
// Purpose: wxString unit test
// Author: Vadim Zeitlin, Wlodzimierz ABX Skiba
// Created: 2004-04-19
// Copyright: (c) 2004 Vadim Zeitlin, Wlodzimierz Skiba
/////////////////////////... | [
"mathieu.caroff@free.fr"
] | mathieu.caroff@free.fr |
36eea9c0d76ac87ea937f2ed65671c1120a3bc3e | 700dc3170fddbdf6eb53ff39a0b29749e7645a39 | /debug/moc_digitaldiary.cpp | 11ce64f6f2266474150bfb2088285430acbd3937 | [] | no_license | pseudoPixels/digitalDiary | 6e2e40c86e1d58eb153889c2470c4466718116b6 | dad14aa70f819370111ee5747c1a734c15180f65 | refs/heads/master | 2020-04-05T06:22:39.567534 | 2018-11-08T02:06:26 | 2018-11-08T02:06:26 | 156,635,831 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,691 | cpp | /****************************************************************************
** Meta object code from reading C++ file 'digitaldiary.h'
**
** Created: Mon Apr 16 04:25:31 2012
** by: The Qt Meta Object Compiler version 62 (Qt 4.6.1)
**
** WARNING! All changes made in this file will be lost!
***************... | [
"golam.mostaeen@usask.ca"
] | golam.mostaeen@usask.ca |
9fc11d5c968dcf3aae8b2d1d374363350a495617 | 573445251e0b6ce115eaac7b7f8a593635cc7210 | /native-osx/src/DeviceListener.cpp | 40c7160a4156a44d3dda4201c453f7b744347dcb | [
"MIT"
] | permissive | CodeDistillery/myodaemon | d2592d1f9ea8ce7e9f359f120f992fdb930827a8 | 0db901ec9ca39fcf84eb88836c6f4477c8767f25 | refs/heads/master | 2020-02-26T13:48:38.881508 | 2014-11-21T16:45:41 | 2014-11-21T16:45:41 | 27,585,687 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,025 | cpp | #include <stdio.h>
#include "DeviceListener.hpp"
#include "Constants.h"
void DeviceListener::toggleEulerHandler(CFNotificationCenterRef center, void *observer, CFStringRef name, const void *object, CFDictionaryRef userInfo) {
NSDictionary *userInfoDictionary = (__bridge NSDictionary*)userInfo;
int toggleE... | [
"victor@logotype.se"
] | victor@logotype.se |
2ae9bc8bf1094c6851e7f6a7d36d80d8a3d48a14 | 5ec06dab1409d790496ce082dacb321392b32fe9 | /clients/cpp-qt5/generated/client/OAIComAdobeCqSocialReportingAnalyticsServicesImplAnalyticsReportMProperties.h | 7a8dcf48b73ee466d1724c3ad5d999d0d0367f7d | [
"Apache-2.0"
] | permissive | shinesolutions/swagger-aem-osgi | e9d2385f44bee70e5bbdc0d577e99a9f2525266f | c2f6e076971d2592c1cbd3f70695c679e807396b | refs/heads/master | 2022-10-29T13:07:40.422092 | 2021-04-09T07:46:03 | 2021-04-09T07:46:03 | 190,217,155 | 3 | 3 | Apache-2.0 | 2022-10-05T03:26:20 | 2019-06-04T14:23:28 | null | UTF-8 | C++ | false | false | 1,831 | h | /**
* Adobe Experience Manager OSGI config (AEM) API
* Swagger AEM OSGI is an OpenAPI specification for Adobe Experience Manager (AEM) OSGI Configurations API
*
* OpenAPI spec version: 1.0.0-pre.0
* Contact: opensource@shinesolutions.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openap... | [
"cliffano@gmail.com"
] | cliffano@gmail.com |
a352c36a0c7a2311a7b5c52482502e7d60a22baa | 6aef4e0826561f5b4c69e8233de301db7fb12b02 | /protobuf_prototype/cpp/src/Commands.cpp | a5fe240d250008e8bfb91fe4ebec011f7c3d05d6 | [] | no_license | PivotalSarge/experiments | daa40249b5e989510ed5af1e39e20198c5260a97 | f0d3af05bb3768a2de58b43bbb99ebf7a5d3f1c5 | refs/heads/master | 2020-06-14T21:05:52.236753 | 2017-12-12T21:01:00 | 2017-12-12T21:01:00 | 75,339,248 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,411 | cpp | #include "Commands.hpp"
#include <sstream>
#include "Delay.hpp"
namespace {
const bool debugLogging = (::getenv("DEBUG_LOGGING") &&
0 == ::strcmp(::getenv("DEBUG_LOGGING"), "true"));
} // namespace
Commands::Commands() {
// NOP
}
Commands::~Commands() {
// NOP
}
const std::string &... | [
"mdodge@pivotal.io"
] | mdodge@pivotal.io |
38dd47a62c3ef66dba52cc0f17bb8fb61c4696dd | 03565927bae4b336625dfefeb714898fcfccda79 | /test/Main.cpp | c8f18ccbbd97f10743442ebf67fd210555e427a0 | [
"MIT"
] | permissive | stjordanis/spool | 8a0a2328f2b221003958cec44813489752845215 | 5ff994ce1f626ef52e4bd2422ca76e2424d32bca | refs/heads/master | 2020-05-30T09:06:36.799880 | 2019-05-30T06:09:28 | 2019-05-30T08:26:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 893 | cpp | #include <spool.h>
#include "Test.hpp"
#include <cstdio>
static size_t test_count = 0;
static size_t test_passes = 0;
void test(bool condition, const char* cond_str, const char* file, int line)
{
++test_count;
if (condition)
{
++test_passes;
}
else
{
printf("[%s:%d] Test faile... | [
"jeremycong@gmail.com"
] | jeremycong@gmail.com |
17f46a20b910e5325d3654c88fc3b4efbcc7dae2 | 50a8a3fe0fdffb4141b12b0ee73363f218efc222 | /src/nas/ies/EPS_NAS_Security_Algorithms.cpp | 0de17a62c028a741d1a635481d06f862a587d042 | [] | no_license | dukl/fake_gnb | f89972ad50c6a50e620fe8590cece7200d2560da | b6f772e8fb82c61a9949a4f4c317637d97c36fb6 | refs/heads/master | 2022-12-07T21:55:26.285263 | 2020-08-27T07:11:37 | 2020-08-27T07:11:37 | 290,703,480 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,923 | cpp | #include "EPS_NAS_Security_Algorithms.hpp"
#include "logger.hpp"
#include <iostream>
using namespace nas;
using namespace std;
EPS_NAS_Security_Algorithms::EPS_NAS_Security_Algorithms() {}
EPS_NAS_Security_Algorithms::~EPS_NAS_Security_Algorithms() {}
EPS_NAS_Security_Algorithms::EPS_NAS_Security_Algorithms(uint8_t i... | [
"du_keliang@163.com"
] | du_keliang@163.com |
3a6e5f1df99ea0cdaf6b9279fd156c66fa057419 | 28eb24d30828981a0034fbf6c3f9e54a466e1da6 | /ros_navigation/move_base/include/move_base/move_base.h | 6d51d4440a853f20f7936202a546d348955caf2b | [] | no_license | jianming1481/Navigation | f871f93a37dd05bed11e139eed7c6308fe0e31e8 | 277b3864eb41e38cac136c4a563d3406ce00fdfa | refs/heads/master | 2021-01-20T10:23:54.638649 | 2017-05-05T07:45:53 | 2017-05-05T07:45:53 | 90,350,685 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,575 | h | /*********************************************************************
*
* Software License Agreement (BSD License)
*
* Copyright (c) 2008, Willow Garage, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following cond... | [
"jianming1481@gmail.com"
] | jianming1481@gmail.com |
44ae2074bbb261d4e6f6cc7feac5cfbb07b58486 | 255e355f120b528b20eb7ecf115df749a82b0fab | /src_code/RobotModel.cpp | 2fc7a72469dc15e89a9d8bd5c225bb918f559eb3 | [] | no_license | KhoiNguyen1304/RobotShopGUI | 06f0d5d67858db48743b1101d5bc4260b0562fc1 | 0cabf8b732530322aa53257020daae24b00c98c2 | refs/heads/master | 2020-07-05T20:15:37.482757 | 2016-11-22T05:49:27 | 2016-11-22T05:49:27 | 73,982,604 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 644 | cpp | #include "RobotPart.h"
#include "RobotModel.h"
#include <string>
#include <sstream>
using namespace std;
RobotModel::RobotModel(std::string kname, int kmodelNumber, double kprice) :
name(kname), modelNumber(kmodelNumber), price(kprice) {}
std::string RobotModel::GetName() { return name; }
int RobotM... | [
"mistycat1304@gmail.com"
] | mistycat1304@gmail.com |
8fb422fa0a7b682fc47e41b04a29b712211388ae | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/squid/gumtree/squid_new_hunk_571.cpp | 7f356e3563c5030bb309210ba0f84e4c9a28791b | [] | no_license | niuxu18/logTracker-old | 97543445ea7e414ed40bdc681239365d33418975 | f2b060f13a0295387fe02187543db124916eb446 | refs/heads/master | 2021-09-13T21:39:37.686481 | 2017-12-11T03:36:34 | 2017-12-11T03:36:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 891 | cpp | /* build request prefix and append it to a given MemBuf;
* return the length of the prefix */
mb_size_t
HttpStateData::buildRequestPrefix(MemBuf * mb)
{
const int offset = mb->size;
/* Uses a local httpver variable to print the HTTP/1.1 label
* since the HttpRequest may have an older version label.
*... | [
"993273596@qq.com"
] | 993273596@qq.com |
c9f841b3799eafe54d78a0054e45478d142530de | 8cea1e902a1df07136b68199eb9b6fb16ffb38fa | /passenger.h | 50f5ac63d062e27c59a37d9bb99e90c31d0ababa | [
"MIT"
] | permissive | robot-alien/airplane | 0819ddccf604a84a5d90d20ebc1f0b7b435ac938 | 1fb5f192c8942a14696c239b40fdbbbef8280a62 | refs/heads/main | 2022-12-24T11:33:54.374433 | 2020-10-12T00:50:03 | 2020-10-12T00:50:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 373 | h | //Passenger.h
#include<string>
#ifndef PASSENGER_H
#define PASSENGER_H
class Passenger{
private:
std::string name,booking;
public:
Passenger();
Passenger(std::string name);
Passenger(std::string name,std::string booking);
std::string getName();
std::string getBooking();
void setName(std::string name);
void setBooking(s... | [
"noreply@github.com"
] | noreply@github.com |
4bffa8b44487bdede48a0dd9dc7a5502f2b8d952 | 53abaa2c6535e6088a375d0e63f0fc1f174912bf | /Hackerrank/ssas.cpp | a86504d9a835db5562f4cb851b762546075fbcb7 | [] | no_license | Cinereouss/OLP-ICPC | 015130d074fbcf26b9227a68ca8c95149e4a97a6 | 87de30974838ca3328bc39b4478a12ade7c02092 | refs/heads/master | 2023-01-23T02:46:20.724053 | 2020-12-16T03:37:09 | 2020-12-16T03:37:09 | 319,627,957 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 658 | cpp | #include <bits/stdc++.h>
using namespace std;
int n;
bool ktra(int kt, int a[], int b[]){
for (int i = 0; i < kt; ++i){
if(a[kt-i]>=b[n-1-i])
return false;
}
return true;
}
main(){
freopen("input.txt", "r", stdin);
// freopen("output.txt", "w", stdout);
int tmp;
cin >> n;
int a[n];
i... | [
"hrcp.hieu@gmail.com"
] | hrcp.hieu@gmail.com |
967498e5992d8988ba4f284d27bc5aafec735958 | 7734798606ff9c2a7810b445039e3f17a5da01e9 | /armv6k/include/arm11_mpcore.h | a490e56196b79a650f6d4533773b8c69c0e3b8b3 | [] | no_license | ufoderek/mvp | 149a9cc58bd81895a82115830e8047e111fbf457 | 92f4d76dcf4ee02ba20a7794faa4f1b49030c3a9 | refs/heads/master | 2021-01-10T02:03:26.788801 | 2015-10-13T16:37:49 | 2015-10-13T16:38:03 | 43,765,523 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 947 | h | #ifndef _ARM11_MPCORE_H_
#define _ARM11_MPCORE_H_
#include <memory.h>
#include <stdint.h>
#include <systemc.h>
#include <boost/shared_ptr.hpp>
#include <armv6k.h>
#include <gic2_dist.h>
#include <gic2_cpu_if.h>
class ARM11_MPCORE: public sc_module
{
public:
sc_in_clk clk;
sc_in_clk clk_slow;
... | [
"ufoderek@gmail.com"
] | ufoderek@gmail.com |
5782bbde09f68a22313e033023a5ed6596cd67c1 | 2e222de5e03b948e5692f0011b6e38aa6067551b | /av/media/libvoicecall/libwebrtc_neteq/src/system_wrappers/source/tick_util.cc | f5a608f307b335a04e2e14f14f6a3f0837cd8b1e | [] | no_license | cnping/Framework_V3 | 2df169e82aad2a898f4128f186ff88cc48249a4a | 558bbd2175a46cb83c1a65af7146e8f5918f4bac | refs/heads/master | 2021-01-12T20:48:36.792426 | 2015-11-13T01:22:52 | 2015-11-13T01:22:52 | 48,948,388 | 3 | 3 | null | 2016-01-03T14:23:08 | 2016-01-03T14:23:07 | null | UTF-8 | C++ | false | false | 3,361 | cc | /*
* Copyright (c) 2012 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 contribut... | [
"978935078@qq.com"
] | 978935078@qq.com |
3c74b808e9a5ba4443180d0170448b867e8e47a8 | fa4cb41ef68d83a52d72da75492b0475327e8670 | /Debug/Generated Files/winrt/impl/Windows.UI.Notifications.1.h | 1ac24052b3718adb2be376bbf02a7fc315a14b7e | [
"MIT"
] | permissive | zedpoirier/JupiterEngine | 4ec595e886802dbc4c57b4d4503f91f9c48f8765 | 26afe2fede8e9fce0a48de3a768ef58839ae1565 | refs/heads/master | 2023-02-09T04:40:12.797148 | 2021-01-04T19:35:08 | 2021-01-04T19:35:08 | 298,377,326 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 25,879 | h | // WARNING: Please don't edit this file. It was generated by C++/WinRT v2.0.200921.6
#ifndef WINRT_Windows_UI_Notifications_1_H
#define WINRT_Windows_UI_Notifications_1_H
#include "winrt/impl/Windows.UI.Notifications.0.h"
WINRT_EXPORT namespace winrt::Windows::UI::Notifications
{
struct __declspec(empty_bases) IAd... | [
"49734422+zedpoirier@users.noreply.github.com"
] | 49734422+zedpoirier@users.noreply.github.com |
07e57983c4a796e1ff8e58ecb322c1e9a547eacf | b1842ae9b5fc773ca3d0b8b3f31862ef48464fc0 | /src/test/key_tests.cpp | 74f0829d6a4b0e01b5badb94d9ff31f98ba777da | [
"MIT"
] | permissive | ipocoin-dev/ipocoinCore | fb815a5b0a84e95631247f75158ee150debca815 | b5f6b612d4f0a67bb5150ab1f980476e2eb68550 | refs/heads/master | 2020-12-30T17:10:53.756105 | 2017-05-12T07:56:25 | 2017-05-12T07:56:25 | 91,060,777 | 0 | 1 | null | 2017-09-03T08:30:02 | 2017-05-12T06:53:05 | C++ | UTF-8 | C++ | false | false | 7,958 | cpp | // Copyright (c) 2012-2015 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 "key.h"
#include "base58.h"
#include "script/script.h"
#include "uint256.h"
#include "util.h"
#include "utilstrenco... | [
"production@francoin.fr"
] | production@francoin.fr |
57ca6b0bea97cc1a472120a576b7a56cf78ef097 | 0743ab744d46e044900baa74984513c3e723357c | /ErrorReport.cpp | 9cef1a9858436d3889bb730905cdc87bfbe821c4 | [] | no_license | Watergun/DuckLife | 5b94046188c131abbfaa20981788d9eb279662cc | f040c4ccea977becc3b55d50cf14b1955cf1f678 | refs/heads/master | 2022-10-16T17:52:55.636017 | 2014-05-13T22:31:01 | 2014-05-13T22:31:42 | 19,423,893 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 935 | cpp | #include "ErrorReport.h"
int ERROR_REPORT::ErrorCount = 0;
ERROR_REPORT::ERROR_REPORT()
{
ErrorCount = 0;
}
void ERROR_REPORT::ReportError(const char* ErrorMessage)
{
std::cout << "[ERROR] " << ErrorMessage << std::endl;
ErrorCount++;
}
void ERROR_REPORT::ReportError(const char* FileName,
const char* ClassNa... | [
"leonhardk@localhost.localdomain"
] | leonhardk@localhost.localdomain |
acd22dbd7e8bb48e4558b4044106436570c1e50e | ec5c36c490ef35e2e2e81e0e1a9640baae34de97 | /main.cpp | 559b3b370c2e7bd2a7f25f53f887a98d9b4d0c46 | [] | no_license | EC-TSJ/q2c | 8c78a28e9d0c86d0114c615a0d6a94f412117d60 | e1c43ac4c034ed37bfa0ba7dc909c9069788ea46 | refs/heads/master | 2020-12-23T14:11:08.814347 | 2020-01-30T09:16:50 | 2020-01-30T09:16:50 | 237,176,735 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,547 | cpp | /*********************************************************/
/* (%T% %S%), %J% <$A$> <$2.125$> */
/* (%W% 02/12/2019 ) Escrito */
/* (%X% 28/12/2019 ) Extendido extra en parámetros */
/* (%X% 29/12/2019 ) Impresión con qInfo */
/* (%M% 28/12/2019 ... | [
"noreply@github.com"
] | noreply@github.com |
ff2b52bcfb169bb866b66d8c1211b7ae85f6c39b | 95228129a4b71bca47c5970e38f7a7e4bb802eb8 | /fft.hpp | 686e4270b25c0e3da7ce1a7865b1cc13110b7a44 | [] | no_license | AntoinePlumerault/Pitch_Detection_Cpp | cddb95cdd26aa636b4b7557a92a3c73375549063 | 493052247533a8e9e062acaa032d8e304b700d75 | refs/heads/master | 2021-08-23T02:45:39.799083 | 2017-12-02T17:07:08 | 2017-12-02T17:07:08 | 108,756,323 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 266 | hpp | #ifndef FFT_HPP
#define FFT_HPP
#include <complex>
#include <math.h>
#include <vector>
#include <iostream>
#define PI 3.14159265359
typedef std::complex<double> Complex;
void separate(Complex *X, const size_t N);
void fft(Complex *X, const size_t N);
#endif
| [
"antoine.plumerault@gmail.com"
] | antoine.plumerault@gmail.com |
9c505c101c4880e12e41bf6a370abc17953b6982 | d9eba5307a0da1c82413f5ecb5e5aa7482a3b975 | /Emoogle Balance 12279/main.cpp | 5f347fbb11bc200d292a5c2891f1104fa5fa6509 | [] | no_license | eugenioLeal/MyNetBeansProjects | 3d1ad72362dff01aa162d1138ab9d5b00348666a | e58e9955a90207e853cae17077d73f63f39a475f | refs/heads/master | 2021-01-23T08:22:01.145355 | 2018-09-13T03:00:48 | 2018-09-13T03:00:48 | 80,540,601 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 572 | cpp | /*
* File: main.cpp
* Author: eugenioLeal
*
* Created on 24 de febrero de 2017, 21:32
*/
#include <bits/stdc++.h>
using namespace std;
int main(int argc, char** argv) {
int n, e, count = 1, res;
cin >> n;
while(n != 0) {
res = 0;
while (n--) {
cin >... | [
"eugenio.leal.333@gmail.com"
] | eugenio.leal.333@gmail.com |
9f4958c3fb369036075b2294beab52b186c8bc40 | 781b483f6449aa8987aeac9563e635525f7bea50 | /tests/ListContainer_test.hpp | 65f53f6b23359df48fb25be3b4609aa294769f25 | [] | no_license | NishPatel101/DesignPatterns_Math | 515f932aa64064a43a62891498f7ec4b30696046 | 09930c01c503b81a117295e239e43a255a065996 | refs/heads/master | 2023-05-10T08:38:55.078128 | 2020-05-28T16:45:13 | 2020-05-28T16:45:13 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,692 | hpp | #ifndef __LISTCONTAINER_TEST_HPP__
#define __LISTCONTAINER_TEST_HPP__
#include "gtest/gtest.h"
#include "../headers/op.hpp"
#include "../headers/sub.hpp"
#include "../headers/add.hpp"
#include "../headers/mult.hpp"
#include "../headers/ListContainer.hpp"
TEST(ListContainerTestSet, SwapElementTest) {
//Setup the ... | [
"umar.saad1998@gmail.com"
] | umar.saad1998@gmail.com |
83554b97df06e7aceb960f52bc234656b4abcf2c | 63a6b9087dfa9a4de551dc5e8209176e695302e3 | /T2/Code/w2/incrementpointervalue.cpp | edbcff4376051cc8d52e7dcbcf376bea6237948a | [] | no_license | Ernir/kennsluefni | e953352c2c54d744cb52686f4c931f730d97a7a2 | 56d05c2e349595ee7feee3cf144e6e2ee6c2d6a4 | refs/heads/master | 2021-01-17T01:12:49.857568 | 2018-08-06T21:11:35 | 2018-08-06T21:11:45 | 49,427,245 | 1 | 11 | null | null | null | null | UTF-8 | C++ | false | false | 592 | cpp | #include <iostream>
using namespace std;
void increment_pointed(int* p) {
/*
Increments the value pointed to by p.
*/
(*p)++;
}
void increment_value(int i) {
/*
Increments the value i. Then discards it.
*/
i++;
}
int main() {
int* j = new int;
*j = 7;
cout << "Fyrst er *... | [
"e.ernir@gmail.com"
] | e.ernir@gmail.com |
d1ab8b855ec2687e160bcad93468d5c498e6b167 | 93eb75a580dbe06063f8a74b8d3c0ad35e6beb9a | /Classes/BattleScene.cpp | 07f9a328e63e1e754af98967534605daaaa4c0ad | [] | no_license | rainbowlee/Pocket-Warriors | 2d3b5f677af4e790c1577a16eed411ae7d361ec2 | 322651e83550203182f2bae78e940408707e8146 | refs/heads/master | 2021-01-17T21:17:03.943016 | 2014-08-20T03:18:09 | 2014-08-20T03:18:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,474 | cpp | //
// BattleScene.cpp
// TestGame
//
// Created by lh on 13-9-18.
// www.9miao.com
//
#include "BattleScene.h"
#include "Voiceover.h"
#include "message.h"
CCScene * BattleScene::scene(){
CCScene * scene= CCScene :: create();
CCLayer * layer= BattleScene::create();
scene->addChild(layer);
return sc... | [
"195814193@qq.com"
] | 195814193@qq.com |
7ea18ac7d2997f3953123c5f7ed6220a9cfdcdcd | 206144923f04acfa22b9127755917df1c82ff18e | /src/MyChrome/SkinWnd/SkinWnd.h | c1d4db959b789ca2036c966aea945f712e59156e | [] | no_license | drivestudy/MyChrome | 5a98b36353bd4c518d9c1f796ec260590a3e495c | c34f1cafa6f417b533a0cfe9439154c9b90ecc68 | refs/heads/master | 2020-07-08T18:12:31.158318 | 2019-08-05T02:14:09 | 2019-08-05T02:14:09 | 203,741,250 | 3 | 0 | null | 2019-08-22T07:44:00 | 2019-08-22T07:43:59 | null | WINDOWS-1252 | C++ | false | false | 672 | h | #pragma once
#include "UIColorSkin.h"
class CSkinWnd
: public WindowImplBase
, public CSelectColorCallback
{
public:
CSkinWnd(void);
~CSkinWnd(void);
virtual LPCTSTR GetWindowClassName()const { return _T("»»·ô"); }
virtual CDuiString GetSkinFolder() { return _T("Skin"); }
virtual CDuiString GetSkinFile() ... | [
"yaojianing@meituan.com"
] | yaojianing@meituan.com |
77c0141f7788952638581f660819309c70e9db96 | ad71ab3c39785830a112951075afe97c9948f5bc | /ZF/ZFCore/zfsrc/ZFCore/ZFObjectDef/ZFSerializableDataSerializableConverter.cpp | 241e9747ce50134303df5c4147a1d5bf64610f73 | [
"Vim",
"MIT"
] | permissive | ZFFrameworkDist/ZFFramework | 0f8027126ef41e59c762cd68d878cac28fae1ea4 | 6b498e7b95ee6d6aaa28d8369eef8c2ff94daaf7 | refs/heads/master | 2021-08-04T04:40:41.207724 | 2021-05-25T08:36:10 | 2021-05-25T08:36:10 | 120,870,315 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 22,097 | cpp | #include "ZFSerializableDataSerializableConverter.h"
#include "ZFObjectImpl.h"
#include "ZFSerializableUtil.h"
ZF_NAMESPACE_GLOBAL_BEGIN
// ============================================================
/*
* // '-' for empty ClassName
*
* <ClassNameEncoded AttrKey1="AttrValue1" AttrKey2="AttrValue2" [
* <Child... | [
"z@zsaber.com"
] | z@zsaber.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.