blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 3 264 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 5 140 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 905
values | visit_date timestamp[us]date 2015-08-09 11:21:18 2023-09-06 10:45:07 | revision_date timestamp[us]date 1997-09-14 05:04:47 2023-09-17 19:19:19 | committer_date timestamp[us]date 1997-09-14 05:04:47 2023-09-06 06:22:19 | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 22
values | gha_event_created_at timestamp[us]date 2012-06-07 00:51:45 2023-09-14 21:58:39 ⌀ | gha_created_at timestamp[us]date 2008-03-27 23:40:48 2023-08-21 23:17:38 ⌀ | gha_language stringclasses 141
values | src_encoding stringclasses 34
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 3 10.4M | extension stringclasses 115
values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
c21dfd1a67cdf375d1b58344bf8b9052f0cfbda2 | da9c4798a6e30152382eb1ba876718b51b9bd4f2 | /leetcode-cn-cpp/leetcode-cn-122/main.cpp | e84f8ec0330871f573be6b004520975466ce63d9 | [] | no_license | zivyou/labofziv | cb2b51f48b3315a8f408eafa940fdc04e1797bfa | e0319d6bc1bbb417f49275bdd07c28019e4b4089 | refs/heads/master | 2023-08-17T03:10:05.615780 | 2023-08-07T06:42:05 | 2023-08-07T06:42:05 | 6,417,825 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,024 | cpp | #include <iostream>
#include <vector>
using namespace std;
class Solution {
public:
int maxProfit(vector<int>& prices) {
int dp[prices.size()+1];
for (int i=0; i<=prices.size(); i++)
dp[i] = 0;
for (int i=1; i<prices.size(); i++){
if (prices[i] < prices[i-1])
... | [
"yzq529@qq.com"
] | yzq529@qq.com |
363bf4f07ae59ca8cc1d85dc9a272ea1ae8cdd2c | 91a882547e393d4c4946a6c2c99186b5f72122dd | /Source/XPSP1/NT/admin/wmi/wbem/winmgmt/ess3/ess.cpp | 2476218f1742971f583594aa039921444e909ddb | [] | no_license | IAmAnubhavSaini/cryptoAlgorithm-nt5src | 94f9b46f101b983954ac6e453d0cf8d02aa76fc7 | d9e1cdeec650b9d6d3ce63f9f0abe50dabfaf9e2 | refs/heads/master | 2023-09-02T10:14:14.795579 | 2021-11-20T13:47:06 | 2021-11-20T13:47:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 64,515 | cpp | //=============================================================================
//
// Copyright (c) 1996-1999, Microsoft Corporation, All rights reserved
//
// ESS.CPP
//
// Implements the class that contains all the fuctionality of the ESS by
// virtue of containing all the necessary components.
//
// See ess.h ... | [
"support@cryptoalgo.cf"
] | support@cryptoalgo.cf |
edd4126f2de5a399e1a39c0a7644e4f5f14c61cc | 3cb8f70f8829677e06c1bf1814673f5b983ee72d | /Finger-app/Finger/RegistDlg.cpp | ef0d4ad5f73022a2129fdfc083c259796c05da4b | [] | no_license | liuyib/MFC-Finger | 7b565057fdefd2ffd14bd01062639505763e9918 | d9c73d726f1bd9e5936ac53e2bd0cda7e2e5dfae | refs/heads/master | 2022-04-03T12:41:13.675129 | 2019-12-17T02:34:19 | 2019-12-17T02:34:19 | 207,508,528 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 6,562 | cpp | // RegistDlg.cpp: 实现文件
//
#pragma once
#include "stdafx.h"
#include "Finger.h"
#include "RegistDlg.h"
#include "afxdialogex.h"
#include "step.h"
using namespace std;
int sexa = 0;
// CRegistDlg 对话框
IMPLEMENT_DYNAMIC(CRegistDlg, CDialog)
CRegistDlg::CRegistDlg(CWnd* pParent /*=nullptr*/)
: CDialog(IDD_DIALOG2, pPar... | [
"674965440@qq.com"
] | 674965440@qq.com |
d3b0fd10b60b2afd53f982751c524f12e55763bb | acdeb1c4cc639779401f2cac3d590eb5ece498ac | /D0Firmware/includes/Audio.h | 4e3bd0e108c0fcdc2129ea4b40e3ab01db4c0fe3 | [] | no_license | coreyshuman/D-0 | 67f1280f4cac04fcef2b05b3ff52fa505f449f22 | 58be1415aff9a2c6219bc778c89bd0471de08b8c | refs/heads/master | 2020-09-13T03:41:01.211152 | 2019-12-03T11:39:08 | 2019-12-03T11:39:08 | 222,646,383 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 221 | h |
#ifndef __AUDIO_H
#define __AUDIO_H
#include <Adafruit_VS1053.h>
class Audio {
public:
void setup();
void loop(int test);
private:
Adafruit_VS1053_FilePlayer *audioPlayerPtr;
};
#endif | [
"ctshuman89@gmail.com"
] | ctshuman89@gmail.com |
23839b38931a1e7a3a34f76166d6de9e2e93e85a | 84e4235c9d45ee39da836723fbfed086553abf6d | /applications/DelaunayMeshingApplication/custom_python/delaunay_meshing_python_application.cpp | f7ab153f6fa5e5381e39e91275743459bf7723f7 | [
"BSD-2-Clause",
"BSD-3-Clause"
] | permissive | JoshGrose/Kratos | 6ce1d7fb9399bafec17deb0b006d63d89c44c8d6 | 0d9148b65eb783a3f3f871a7853e7782c2e529bc | refs/heads/master | 2020-04-03T01:02:54.520550 | 2018-10-26T15:41:32 | 2018-10-26T15:41:32 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,611 | cpp | //
// Project Name: KratosDelaunayMeshingApplication $
// Created by: $Author: JMCarbonell $
// Last modified by: $Co-Author: $
// Date: $Date: April 2018 $
// Revision: $Revision: 0.0 $
//
//
// Sy... | [
"cpuigbo@cimne.upc.edu"
] | cpuigbo@cimne.upc.edu |
af363ed057ac2f9902caa89c5274e088142b45b7 | 87b9bde9394feaa92192c5726006140969b27aa4 | /TrueAxis/Physics/zpta034.cpp | 125e52dfcb67007eb3eeab5ad6949eaeda1bd0cb | [] | no_license | moldfield1995/C-Engine | e68698c6e030f836e8253268f0e62c0916550447 | c19b9f3a9a27823a66404b62c5ffad4f76a5e203 | refs/heads/master | 2021-03-24T12:16:54.116241 | 2018-05-29T05:20:55 | 2018-05-29T05:20:55 | 114,689,685 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 284 | cpp | //---------------------------------------------------------------------------------
// File Name: zpta034.cpp
//
// Copyright (C) 2004 - 2006 True Axis Pty Ltd, Australia.
// All Rights Reserved.
//
//---------------------------------------------------------------------------------
| [
"moldfield1995@users.noreply.github.com"
] | moldfield1995@users.noreply.github.com |
ffb9d68fbb9e284d4beb6f525ad778413cd85ca2 | 9f27d89e01b1614dd933f5f6c967c9b9980f1bc6 | /mainwindow.h | fd2065206e8f1e597fcde935276affa4bd46cf87 | [] | no_license | fengzhang2011/readafterme | f41488f90b1bf3c4be10dd7209b96f29afff21c9 | 281c90b8ba4dcb25c7e4b188f1376a0f9ed38dad | refs/heads/master | 2021-01-18T08:29:47.017814 | 2014-06-25T19:13:35 | 2014-06-25T19:13:35 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 678 | h | #ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QMediaPlayer>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
protected:
QString timeToString(qint64);
... | [
"zhjinf@gmail.com"
] | zhjinf@gmail.com |
68dc6e2ea3e345c05ea61c93241c4e1eee838f23 | 237acec099992ddb5fc8d55f59d7a89b25724350 | /src/Scenes/TestScene.cpp | af9a0edb374283edc16f7ca7a715225ab5c138ce | [] | no_license | polyeezy/mouillette_indie | dbefe96b6ebf96143e152c95dced7093e75f5d42 | 268084ec43a6f1006399915c3141a6193ba96359 | refs/heads/master | 2021-01-11T06:09:28.384481 | 2016-06-06T21:32:20 | 2016-06-06T21:32:20 | 57,026,638 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 615 | cpp | //
// TestScene.cpp for in /home/polyeezy/rendu/CPP/mouillette_indie/src/Scenes
//
// Made by Valérian Polizzi
// Login <polizz_v@epitech.net>
//
// Started on Mon May 30 02:47:04 2016 Valérian Polizzi
// Last update Wed Jun 1 07:15:21 2016 Valérian Polizzi
//
#include <TestScene.hh>
TestScene::TestScene(irr::... | [
"valerian.polizzi@epitech.eu"
] | valerian.polizzi@epitech.eu |
4944295784175686ab038cbd9bcc9d35bfa578e5 | 6aeae2030112858fdab27bcea33518a190f5bb66 | /Appendix E - Microcontroller Code/CRC.INC | aacd620aaf986550ae4859a224194f09aa59d302 | [
"MIT"
] | permissive | liwenyip/adhoc | 3cda18979dae10a05fdc53e41a3d37f3fa6e1a74 | d5402c347b229847a8242c89eb0ee97ee4d67d26 | refs/heads/master | 2021-01-18T20:38:00.306704 | 2017-04-02T12:28:15 | 2017-04-02T12:28:15 | 86,979,777 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 169 | inc | ;*************************************************************************
; CRC Check Header File
; Version 1.00
; 16/09/2005
extern CALC_CRC
extern crclow, crchigh
| [
"liwen.yip@gmail.com"
] | liwen.yip@gmail.com |
b6e7e396333baf6141498d6660c8075b825734c8 | 492d766930c581e322221ce361538a64a7603143 | /Classes/PauseLayer.cpp | 13701eacf7dd557673cac51ea97013f4a227b7e9 | [] | no_license | zhengting00219142/Rich_07 | 0556e4d8bc32178d3292133d22219e4c2cdacf0d | b7065357cc75463da66a13ea70a17f4ece1a7702 | refs/heads/master | 2020-05-20T05:55:29.754437 | 2015-09-11T05:22:45 | 2015-09-11T05:22:45 | 41,666,842 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,759 | cpp | //
// PauseLayer.cpp
// Richer
//
// Created by Macbook Air on 9/2/15.
//
//
#include "PauseLayer.h"
#include "StartLayer.h"
USING_NS_CC;
using namespace cocostudio::timeline;
using namespace cocos2d::ui;
Scene* PauseLayer::createScene()
{
auto scene = Scene::create();
auto layer = PauseLayer::create();
... | [
"tulongd7@163.com"
] | tulongd7@163.com |
1a2aff066899d602705d92bc4b2a673acd473f87 | 74af32d04639d5c442f0e94b425beb68a2544b3c | /LeetCode/Normal/1500-1599/1582.cpp | bc81ab08d4da2ad92b18ff1a31010c5e361878de | [] | no_license | dlvguo/NoobOJCollection | 4e4bd570aa2744dfaa2924bacc34467a9eae8c9d | 596f6c578d18c7beebdb00fa3ce6d6d329647360 | refs/heads/master | 2023-05-01T07:42:33.479091 | 2023-04-20T11:09:15 | 2023-04-20T11:09:15 | 181,868,933 | 8 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 751 | cpp | #include <bits/stdc++.h>
using namespace std;
class Solution
{
public:
int numSpecial(vector<vector<int>> &mat)
{
int m = mat.size(), n = mat[0].size();
vector<int> rowsSum(m);
vector<int> colsSum(n);
for (int i = 0; i < m; i++)
{
for (int j = 0; j < n; j++)
... | [
"dlvguo@qq.com"
] | dlvguo@qq.com |
c66f442f775f5c08806947ff2fbbffe28dc2af05 | e992aa2b1ee29bc2da3b5a7870726ec3e8efeba7 | /src/rpc/misc.cpp | 862ea1ba50bbdc0f456cff60c3b337d30df95f4a | [
"MIT"
] | permissive | EarthcoinCash/EarthcoinCash | 56d8c97456cb7b9bd33a21aed0844a4a7412d093 | cec3a4af17eeed5b47c79925386ab23b7ef1edaf | refs/heads/master | 2021-01-01T13:38:11.036653 | 2020-03-14T20:35:55 | 2020-03-14T20:35:55 | 239,302,398 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 22,066 | cpp | // Copyright (c) 2010 Satoshi Nakamoto
// Copyright (c) 2009-2018 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 <chain.h>
#include <clientversion.h>
#include <core_io.h>
#include <crypto/ri... | [
"yanding2@outlook.com"
] | yanding2@outlook.com |
7db6cde204d0edfdd72b005ff18f94b574922048 | b836547d53e6b9f085e82a702c6159dade80d3a1 | /ProjectEngine/Game.cpp | c19a08016899299af387816cc71023981f3064ff | [] | no_license | Hontp/ProjectGameEngine | eeccdf9123339fca8b266329a3e340b7ca32cec0 | f9b6ef9cecd5dffc5457a344d094785162937360 | refs/heads/master | 2021-01-18T01:58:30.088060 | 2015-06-08T04:51:26 | 2015-06-08T04:51:26 | 32,619,747 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 554 | cpp | #include "Game.h"
Game::Game()
{
sceneManager = new SceneManager();
gameAssetFactory = new GameAssetFactory();
}
Game::~Game()
{
if (sceneManager != nullptr)
{
delete sceneManager;
delete gameAssetFactory;
}
}
void Game::Initialize()
{
sceneManager->Initialize();
Engine::Initialize();
}
void Game::Lo... | [
"troy@soundfolder.com"
] | troy@soundfolder.com |
6efb61805f32d546a9e1ce020da4af4f7c6cc13b | 6c996ca5146bd307a062f38819acec16d710656f | /workspace/iw8/code_source/src/game_mp/g_client_fields_mp.cpp | 5d78de9e341d9db83642fa3dc93b182440bf2321 | [] | no_license | Omn1z/OpenIW8 | d46f095d4d743d1d8657f7e396e6d3cf944aa562 | 6c01a9548e4d5f7e1185369a62846f2c6f8304ba | refs/heads/main | 2023-08-15T22:43:01.627895 | 2021-10-10T20:44:57 | 2021-10-10T20:44:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 24,446 | cpp | /*
==============
G_ClientFieldsMP_Init
==============
*/
void G_ClientFieldsMP_Init(void)
{
?G_ClientFieldsMP_Init@@YAXXZ();
}
/*
==============
ClientScr_SetRadarMode
==============
*/
void ClientScr_SetRadarMode(scrContext_t *scrContext, gclient_s *pSelf, const GClientField *pField)
{
scr_string_t ConstString;... | [
"zkitx@zkitx.jp"
] | zkitx@zkitx.jp |
6494b58928911d054689c7820ba978bcfed489c5 | c047518e0bc0be1d1a46b734fbf53610cb8a407f | /UVa/362.cpp | a522da07ccec4beaec9691beda7ce1b0e97acf44 | [] | no_license | fernandozanutto/competitive_programming | c3e006544ddba1702a37eeb437cb015713e8c2d1 | cf721a7bcce6c5d5fc9f739ad729079c939fc421 | refs/heads/master | 2020-06-19T06:57:32.288602 | 2020-04-04T14:58:45 | 2020-04-04T14:58:45 | 196,607,123 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,001 | cpp | #include <bits/stdc++.h>
using namespace std;
int main(){
int t = 0;
int bytes;
while(1){
cin >> bytes;
if (bytes == 0)
return 0;
int cont = 0;
int temp = 0;
cout << "Output for data set "<< ++t <<", " << bytes << " bytes:" << ... | [
"ferzanutto1999@gmail.com"
] | ferzanutto1999@gmail.com |
a48674e631540c60dcc8ca8e50cd8130fa456695 | a94bfc1fbf7cb150028300f7479358dc70804089 | /3dmod/info_menu.cpp | bba6c22d7133fe124c2e8abfc6157e6afae10819 | [] | no_license | imod-mirror/IMOD | 29f2a0d3f2c2156dc8624c917b9b36b3f23a38ec | 499d656bc7784a23c9614380234511e5c758be4f | refs/heads/master | 2021-01-02T08:47:39.133329 | 2015-08-25T06:42:46 | 2015-08-25T06:42:46 | 41,421,626 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 35,126 | cpp | /* info_menu.cpp -- Menu slots for the imod information window; part
* of the InfoWindow class declared in info_setup.h
* and constructed in info_setup.cpp
*
* Original author: James Kremer
* Revised by: David Mastronarde email: mast@colorado.edu
*
* Copyright (C... | [
"mast@localhost"
] | mast@localhost |
bb2a9a4a3ca368a1fe53fa46f79d9702807c4903 | 9ac67ee209c34a2f943d2ff9cf7d88013382552f | /common/filterui/cusermanage.cpp | 29dd05e0c0736a5a8ac8b15d74f7430132b882d1 | [] | no_license | lzk/hornet | d7499dd245855e83d0474be2a33b9facb30565d7 | 7cdc0ee95042afbdb02627471134b5d627ce70c4 | refs/heads/master | 2020-09-09T09:07:52.619801 | 2019-11-05T02:31:23 | 2019-11-05T02:31:23 | 221,408,207 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,080 | cpp | #include "cusermanage.h"
#include <QFile>
#include "log.h"
CUserManage::CUserManage(QObject *parent) : QObject(parent)
{
CheckUser = NULL;
}
bool CUserManage::initdll()
{
QString sPath, sFileName;
#if 0
//#ifdef DEBUG_DEBUG
#ifdef Q_OS_DARWIN
sFileName = "/tmp/libhxpl3zum.dylib";
#else
sFileName =... | [
"jacky@Jackys"
] | jacky@Jackys |
d05dcc0128f154aaa3f9be58b7b76ac72958b10b | 35ff9300e63d4ca8239a1173284e5c67b744eb2e | /form_bloc_web/windows/runner/main.cpp | e0197ce99571c481c90eec547c172fccff3277ee | [] | no_license | GiancarloCode/form_bloc | df5987f38e51fb7f433c4c8a25fc12410ac98332 | a74a63558884f2cac4130c7b1a1455eae46fdca2 | refs/heads/master | 2023-08-31T20:44:56.351505 | 2023-08-25T12:33:26 | 2023-08-25T12:33:26 | 200,876,055 | 455 | 194 | null | 2023-08-25T12:25:42 | 2019-08-06T15:15:09 | Dart | UTF-8 | C++ | false | false | 1,309 | cpp | #include <flutter/dart_project.h>
#include <flutter/flutter_view_controller.h>
#include <windows.h>
#include "flutter_window.h"
#include "utils.h"
int APIENTRY wWinMain(_In_ HINSTANCE instance, _In_opt_ HINSTANCE prev,
_In_ wchar_t *command_line, _In_ int show_command) {
// Attach to ... | [
"GiancarloCode@gmail.com"
] | GiancarloCode@gmail.com |
f61cddf0b5ad3a662260f011c2dc6b2acf34031b | e8c605ddc599199de0924677a0bb56b876b52a63 | /3.1 Calcularea pretului unei masini/main.cpp | 6052fd7b6de9c631e5d3cc25be81411833e419bc | [] | no_license | toni1333/CAPITOLUL_3_ | 4d64e1f431093518e634cd0759e3f7b07fb8a8cd | 50a3469ba653d61822c7d3b6b4607123c906eb96 | refs/heads/master | 2022-11-04T21:01:00.658367 | 2020-06-28T12:35:46 | 2020-06-28T12:35:46 | 271,046,210 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 982 | cpp | #include <iostream>
using namespace std;
int main()
{
unsigned int pret= 7000;
cout<<"DORITI SA ADAUGATI CLIMA? 500EURO (d /n)"<<endl;
char raspuns ='n';
cin>>raspuns;
if ((raspuns == 'd') || (raspuns == 'D'))
pret+=500;
cout<<"VRETI SA A... | [
"antoniebohak@yahoo.com"
] | antoniebohak@yahoo.com |
1ff8687ac1f579cead104acb8d767cb5552dd628 | 169e75df163bb311198562d286d37aad14677101 | /tensorflow/tensorflow/compiler/tf2xla/kernels/scatter_nd_op.cc | 14709bb6cbce4b3ae0f7ff859b0fa622c6eda293 | [
"Apache-2.0"
] | permissive | zylo117/tensorflow-gpu-macosx | e553d17b769c67dfda0440df8ac1314405e4a10a | 181bc2b37aa8a3eeb11a942d8f330b04abc804b3 | refs/heads/master | 2022-10-19T21:35:18.148271 | 2020-10-15T02:33:20 | 2020-10-15T02:33:20 | 134,240,831 | 116 | 26 | Apache-2.0 | 2022-10-04T23:36:22 | 2018-05-21T08:29:12 | C++ | UTF-8 | C++ | false | false | 4,711 | cc | /* Copyright 2018 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... | [
"thomas.warfel@pnnl.gov"
] | thomas.warfel@pnnl.gov |
e354a981837b0742c1815a22d456fde5c37d7b59 | ad737f6b2872819b8ea88835edee8356da58a82e | /software/tools/arm/arm-none-eabi/include/c++/7.3.1/bits/unordered_set.h | 85c2562f89edbb6f647c31b10e0832554bf6ec97 | [
"MIT"
] | permissive | UASLab/RAPTRS | e4f3240aaa41000f8d4843cbc26e537ccedf2d48 | ebcebf87b5195623a228f9844a66c34d557d2714 | refs/heads/master | 2022-05-03T02:23:16.231397 | 2022-04-04T14:02:07 | 2022-04-04T14:02:07 | 208,188,913 | 4 | 3 | MIT | 2022-04-11T18:13:21 | 2019-09-13T03:29:57 | C++ | UTF-8 | C++ | false | false | 53,824 | h | // unordered_set implementation -*- C++ -*-
// Copyright (C) 2010-2017 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library 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... | [
"brian.taylor@bolderflight.com"
] | brian.taylor@bolderflight.com |
72ca2a1926133fbfd2cf434d8d142d5955fe7f94 | b75f0c6e8e2c4caf895eb094eb48ae6913c3d2a1 | /feature_extractor/llvm/lib/ir_pass/CoalescedMemFeature.cpp | b1e99d0cd40133edb0d396375db2188fa34a1e1e | [
"Unlicense"
] | permissive | ssrg-vt/aira | 0a76f84588b3dcf512256a79c60e2cecae51afa4 | 96a830480d1ed8317e0175a10d950d7991fb2bb7 | refs/heads/master | 2021-05-12T17:15:34.098162 | 2018-01-11T02:51:11 | 2018-01-11T02:51:11 | 117,041,015 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,919 | cpp | /*****************************************************************************/
/* Implementation of CoalescedMemFeature class */
/*****************************************************************************/
#include <iostream>
#include <assert.h>
#include <llvm/IR/Function.h>
#include... | [
"rlyerly@vt.edu"
] | rlyerly@vt.edu |
46bae0fcb06b4622273ad2d532e9fa1cd590ea8a | b93947d283c77a025bdb447f4daa299b251f2f2d | /535_house-robber-iii/house-robber-iii.cpp | 4dfab3f570da0b9252f79a7aff58c7ca57f545ed | [] | no_license | JasonLin6086/Lintcode | 6abf7173be7b96d29d7171429d8e0beee5e0a9c2 | 02e022ed6054ede9aca209a28af48c334ab655dd | refs/heads/master | 2020-04-06T07:11:43.189562 | 2016-09-10T20:15:28 | 2016-09-10T20:15:28 | 65,408,474 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 951 | cpp | /*
@Copyright:LintCode
@Author: jerhaulin
@Problem: http://www.lintcode.com/problem/house-robber-iii
@Language: C++
@Datetime: 16-07-13 17:39
*/
/**
* Definition of TreeNode:
* class TreeNode {
* public:
* int val;
* TreeNode *left, *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
*... | [
"jason.lin.6086@gmail.com"
] | jason.lin.6086@gmail.com |
8fcda3b8b07ba06f3399c7f14d3e0cd87d5e1c01 | f82cd75666c164da58bb7fdaeabcac0f13377e38 | /numpy_eigen/src/autogen_test_module/test_14_12_int.cpp | abb00458f6bacba2756954120b0285a3bbfbc5b2 | [] | no_license | omaris/Schweizer-Messer | 54b4639d3a30bed03db29458c713a05fdfa6f91a | ec4d523d9ac7c377e0701ce0b5fdede3043ecd8a | refs/heads/master | 2021-01-15T17:37:01.645963 | 2013-06-18T06:52:50 | 2013-06-18T06:52:50 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 249 | cpp | #include <Eigen/Core>
#include <numpy_eigen/boost_python_headers.hpp>
Eigen::Matrix<int, 14, 12> test_int_14_12(const Eigen::Matrix<int, 14, 12> & M)
{
return M;
}
void export_int_14_12()
{
boost::python::def("test_int_14_12",test_int_14_12);
}
| [
"paul.furgale@gmail.com"
] | paul.furgale@gmail.com |
2e90c96cd0c40cce6967c1f5b697caaf030e6ca8 | 53c4c607786fd3e5b33ed34e9e54c331f1902523 | /Share/Share/TimerManager.h | e9a5b3444c2f5e80ece863565d6be07daa611a9a | [] | no_license | thereisnoposible/Shared | 7057d30de955900cf4c7dc706c9f619c57914469 | a7fdfb0cefed951609cb288a2e3be3f24cbedde4 | refs/heads/master | 2020-12-03T10:38:47.042091 | 2018-03-13T08:38:16 | 2018-03-13T08:38:16 | 68,799,603 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,531 | h | #pragma once
#include "Timer.h"
#include <hash_map>
#include "Singleton.h"
typedef Timer* TMHANDLE;
class Comparator
{
public:
bool operator()(const Timer* a, const Timer* b)
{
return a->time() > b->time();
}
};
class TimerManager : public Singleton<TimerManager>
{
public:
TimerManager() : _interval(0)
{
}
... | [
"543811678@qq.com"
] | 543811678@qq.com |
22f3b6d35fd50a1f83c0f02d84629be62854f426 | dd1b40473d216cc4e7ee5faf0a3b5f40a6f7d42a | /Shooting Game/Bg.h | a5e2006a981961740113663d93d59b14614cec7a | [] | no_license | sksmssk4/Revenge-Kuriko | 09449c7473c119882be81bc15393df7db916693d | e971c2470647a194e4692e912607b19a737b1d5a | refs/heads/master | 2021-06-18T02:29:43.543400 | 2017-06-23T03:11:11 | 2017-06-23T03:11:11 | 91,696,387 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 149 | h | #pragma once
#include "entity.h"
#ifndef BG_H
#define BG_H
class Bg :public entity {
public:
void init(float x, float y);
void move();
};
#endif | [
"tlvmak7@naver.com"
] | tlvmak7@naver.com |
54d043884aeaed7db806c7422c2d86ff2b08d695 | 40b0530ef3eb345c49fc0d2face8bed9088a58c5 | /v1.3/lib/monty/type.cpp | 62326cfa0e2a846e3b835a8761dc471f3daf0f77 | [
"LicenseRef-scancode-public-domain",
"Unlicense"
] | permissive | Enjection/monty | 1262974ab1c74b82fc0ce4cef7906b36eea77bdb | e7f2ecaf1b7f2ed0ce24f5aaa4c14e801d18dfde | refs/heads/main | 2023-07-18T16:17:08.465840 | 2021-08-25T09:30:01 | 2021-08-25T09:30:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 22,729 | cpp | // type.cpp - collection types and type system
#include "monty.h"
#include <cassert>
#include <cstdarg>
using namespace monty;
Tuple const Tuple::emptyObj;
Value const monty::Empty {Tuple::emptyObj};
Type Inst::info (Q(0,"<instance>"));
Lookup const Bytes::attrs;
Lookup const Class::attrs;
Lookup const Inst::attrs... | [
"jc@wippler.nl"
] | jc@wippler.nl |
2af9b85f539dd963c61c450d4126ac17bac1bec6 | 98d9f492488db1cadb11524e1c11802429ec98df | /NewGit/address-book-master/address-book-master/src/qtcontactform.cpp | e93150605628c2cc4900d5ab90bbf748295a91da | [] | no_license | alwinpinakasj/addressbook-APJ | 4c349a360654242b412898abdb26e4ad852e3330 | 5c6838f3513ff7e98d8bd062a84084afea5b65f2 | refs/heads/master | 2021-01-12T12:28:03.930966 | 2016-11-11T21:13:11 | 2016-11-11T21:13:11 | 72,503,199 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 852 | cpp | #include <QLabel>
#include <QLineEdit>
#include <QFormLayout>
#include "qtcontactform.h"
QtContactForm::QtContactForm(QWidget *parent) :
QFormLayout(parent), firstNameField(new QLineEdit()),
lastNameField(new QLineEdit()),
addressField(new QLineEdit()),
phoneNumberField(new QLineEdit... | [
"japinakas@hotmail.com"
] | japinakas@hotmail.com |
fb8741519d6075b402d4ebdfa0c7f9b63abc232a | a5de1de8ba3e4d0825bdbbb8428e0ee4471227c5 | /trunk/activemq-cpp-2.2.6/src/test/activemq/connector/openwire/marshal/v3/ActiveMQBytesMessageMarshallerTest.h | a8aaff8ebb2723f672cd96296f6c471675837a91 | [
"Apache-2.0"
] | permissive | ypdxcn/ActiveMQClient | 91de74526f2d63ab31e4911298376db07917d92d | 311068b73d6a84e4f4fe25b67a520f93af5f83b0 | refs/heads/master | 2020-03-23T09:45:07.281201 | 2018-07-18T08:43:53 | 2018-07-18T08:43:53 | 141,406,347 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,281 | h | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... | [
"ypdxcn@163.com"
] | ypdxcn@163.com |
c77d1adc59dbadce453c334ef00ee5944ba30fe0 | e9b04f8de5edac585cc95e214b0c0d706a54338c | /include/dga/aliases.h | b62c03dae0d3f26fae6cb40fe8571471a9cdb2a6 | [] | no_license | dgavedissian/base | 31caf7def8be337dee3609e548c175c98af3b402 | 231b92abba98eb73901b73a9764c94a1bf110453 | refs/heads/master | 2020-09-23T13:02:17.239384 | 2020-01-26T01:39:36 | 2020-01-26T01:51:23 | 225,506,662 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 557 | h | /* Base library
* Written by David Avedissian (c) 2018-2020 (git@dga.dev) */
#pragma once
#include <cstdint>
#include <cstddef>
/*
* Rust style primitive type aliases.
*/
namespace dga {
using uint = unsigned int;
using usize = std::size_t;
using intptr = std::intptr_t;
using uintptr = std::uintptr_t;
using i8 ... | [
"git@dga.dev"
] | git@dga.dev |
dbd0da4c01bbfca904af33e4d58c8c61a55075bb | c322776b39fd9a7cd993f483a5384b700b0c520e | /gdal.mod/gdal/ogr/ogrsf_frmts/geojson/ogrgeojsonlayer.cpp | d596dcc59fb02552f41f62862ec85564b79cc04c | [] | no_license | maxmods/bah.mod | c1af2b009c9f0c41150000aeae3263952787c889 | 6b7b7cb2565820c287eaff049071dba8588b70f7 | refs/heads/master | 2023-04-13T10:12:43.196598 | 2023-04-04T20:54:11 | 2023-04-04T20:54:11 | 14,444,179 | 28 | 26 | null | 2021-11-01T06:50:06 | 2013-11-16T08:29:27 | C++ | UTF-8 | C++ | false | false | 13,542 | cpp | /******************************************************************************
* $Id$
*
* Project: OpenGIS Simple Features Reference Implementation
* Purpose: Implementation of OGRGeoJSONLayer class (OGR GeoJSON Driver).
* Author: Mateusz Loskot, mateusz@loskot.net
*
****************************************... | [
"woollybah@b77917fb-863c-0410-9a43-030a88dac9d3"
] | woollybah@b77917fb-863c-0410-9a43-030a88dac9d3 |
0fdd3189964547d66902712b3b29028ea9490512 | f1f9db9631b5a39323e626b99b511d9ee792ac4c | /algorithms/cpp/103.cc | 9fd4b10be0c1d7e6c5163828f7b03dc349d7a36f | [] | no_license | dsudheerdantuluri/leetcode | e397b82d4b5d450b76f6c7aab6e755af8797982a | f695bb47c033fd7364ec4e633260892a4ec9db7a | refs/heads/master | 2021-01-15T14:54:38.381757 | 2017-12-22T16:09:46 | 2017-12-22T16:09:46 | 99,700,782 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 925 | cc | #include <vector>
#include <queue>
#include <iostream>
#include <algorithm>
using namespace std;
struct TreeNode {
int val;
TreeNode *left;
TreeNode *right;
TreeNode(int x) : val(x), left(NULL), right(NULL) {}
};
class Solution {
public:
vector<vector<int>> zigzagLevelOrder(TreeNode* root)
{
vector<vec... | [
"dsudheer@gmail.com"
] | dsudheer@gmail.com |
3afa7d832d03911132849e93b3b81488c4981ea4 | 4b08802a781540161a71e5b351415fdc2c0aa73c | /libs/nim_sdk_desktop/nim_cpp_sdk/nim_sdk_cpp/api/nim_cpp_vchat.h | ea8d99082fdb09639f35e5a57e4be1e322c923e6 | [] | no_license | Strongc/NIM_PC_UIKit | cbc0b9882693239346d831cb0db9b2ed9f39b08f | 02b174310bb32167e10613a58c7cd9eac09cd00a | refs/heads/master | 2020-02-26T17:04:02.945283 | 2015-12-03T03:04:30 | 2015-12-03T03:04:30 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,264 | h | #ifndef _NIM_SDK_CPP_VCHAT_H_
#define _NIM_SDK_CPP_VCHAT_H_
#include <string>
namespace nim
{
#include "nim_vchat_def.h"
#include "nim_device_def.h"
/** @class VChat
* @brief NIM VChat提供的音视频(包括设备)相关接口
* @copyright (c) 2015, NetEase Inc. All rights reserved
* @author gq
* @date 2015/4/30
*/
class VChat
{
... | [
"redrains@qq.com"
] | redrains@qq.com |
17ec9e3803acfd6e04e7ad09ecd37b848b73cc50 | 2f7527706dba18858a7b98ca1d266061e5fdd6ee | /src/qt/guiutil.cpp | 493ca412a2d380ab1b5abaac601ff2b5a01994aa | [
"MIT"
] | permissive | riocoin/enter | 2bda594e3fa599768f248458e5ef82142669224c | ac4286a8029c4d9233cf33ef5736b6263aa1a334 | refs/heads/master | 2021-01-17T19:51:08.806535 | 2016-06-28T18:15:37 | 2016-06-28T18:15:37 | 62,164,165 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,448 | cpp | #include "guiutil.h"
#include "bitcoinaddressvalidator.h"
#include "walletmodel.h"
#include "bitcoinunits.h"
#include "util.h"
#include "init.h"
#include <QString>
#include <QDateTime>
#include <QDoubleValidator>
#include <QFont>
#include <QLineEdit>
#include <QUrl>
#include <QTextDocument> // For Qt::escape
#include ... | [
"rio@scryptmail.com"
] | rio@scryptmail.com |
eaeafdda593bef5df10c9a683e235b15ff4f9afb | b16d107efa823e4933ec0afc3d3cb8843ebaf8f2 | /interviews/tries.cpp | 48b869421b4a66a83855bfedb95608e0c3fff2d2 | [] | no_license | BradGalway/algorithms | 67c668bb5e82f2cb1c6dba780ce33f813d191398 | c72ba3fd09a5063e242cef552fa3742e9114555b | refs/heads/master | 2020-06-04T07:29:15.392844 | 2015-05-07T16:43:51 | 2015-05-07T16:43:51 | 26,885,424 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,133 | cpp | #include <iostream>
#include <fstream>
#include <vector>
using namespace std;
class TrieNode{
public:
string letter;
enum { NumChars = 26 };
bool isWord;
TrieNode *letters[NumChars];
TrieNode(){
isWord = false;
for( int i = 0; i < NumChars; i++ ){
letters[i] = NULL;
}
}
~TrieNode(){
for( int i ... | [
"bradleygalway@gmail.com"
] | bradleygalway@gmail.com |
675ac602c9946f6ad424dc7adb695c74dc68cbe6 | 1e0eb122a703f3edb78b8dfdf82fed5c4defd6aa | /src/event/PlayerProgressEvent.cpp | f55510cdba034e0a0004e56523557ac7671a9d85 | [] | no_license | dwks/HexRacer | 66043a6cfefeb5458bad26c68ea7260739e33da8 | e24ef120a34aa6ca6619fb01e9f0a5885e3af25b | refs/heads/master | 2020-07-03T10:27:45.157003 | 2015-09-09T21:55:18 | 2015-09-09T21:55:18 | 42,206,529 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 119 | cpp | #include "PlayerProgressEvent.h"
namespace Project {
namespace Event {
} // namespace Event
} // namespace Project
| [
"dwks42@gmail.com"
] | dwks42@gmail.com |
efda55567a14f55932d7340b7261f1cd062818e1 | cd686045140d7d640dd82c9dcfd3690a2a9493d6 | /libhls/hls/include/hls/Common.h | 576bcc594fd58661986da2568df3baa535a44007 | [] | no_license | chxj1980/hls | 614e48241599f5fd055154c86b83381e705b7305 | ff6c78de26b1446f95c7fb802e4a3c6680d6d13c | refs/heads/master | 2022-11-06T20:33:29.481569 | 2020-04-28T10:58:48 | 2020-05-06T08:19:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 748 | h | #ifndef HLS_COMMON_H_
#define HLS_COMMON_H_
#include "iwu/Log.h"
#include "iwu/backport/Language_support.h"
#include <gsl/gsl>
#include <optional.hpp>
#undef Expects
#undef Ensures
#define IWU_CONTRACT_ALWAYS_THROW 1
#include "iwu/Contract.h"
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wheader-... | [
"nikola.spiric@rt-rk.com"
] | nikola.spiric@rt-rk.com |
75d7b025917a8b3dd38714746d0bbee3312a7d46 | c287f063100e0ddb29bcf27e9f901b914cca0f2e | /thirdparty/qt53/include/QtCore/5.3.0/QtCore/private/qnoncontiguousbytedevice_p.h | 4606ac268669d263fe14649afd274c87735c93d8 | [
"MIT"
] | permissive | imzcy/JavaScriptExecutable | 803c55db0adce8b32fcbe0db81531d248a9420d0 | 723a13f433aafad84faa609f62955ce826063c66 | refs/heads/master | 2022-11-05T01:37:49.036607 | 2016-10-26T17:13:10 | 2016-10-26T17:13:10 | 20,448,619 | 3 | 1 | MIT | 2022-10-24T23:26:37 | 2014-06-03T15:37:09 | C++ | UTF-8 | C++ | false | false | 6,004 | h | /****************************************************************************
**
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the QtCore module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** Commercial License Usage
** Licensees... | [
"zcy920225@gmail.com"
] | zcy920225@gmail.com |
b9370302fee451ae8886c4aa0c494f6ab847de44 | ce19972766ae48a7cf6ac17b0ff088f32696757d | /Factory_connector/modules/modules.cpp | 2e77e50012e82bb0e8615c6f96d639cccbeb9a4e | [] | no_license | ArefyevDenis/ArefyevDenis | d513ecb8ea89dc49688b344bb0e90c6e0c32ae1c | ea1842e571d96c096830af6cb8952434592458db | refs/heads/master | 2021-10-11T15:58:58.378205 | 2021-09-29T09:30:25 | 2021-09-29T09:30:25 | 207,562,322 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,830 | cpp | #include "modules.h"
#include <iostream>
#include <typeinfo>
#include <factory_morf.h>
#include <opencv2/core/cvstd.hpp>
#include <opencv2/opencv.hpp>
REGISTER_SERIALIZABLE(Mod_a);
Mod_a::Mod_a() { std::cout << __PRETTY_FUNCTION__ << '\n'; }
Mod_a::~Mod_a() { std::cout << __PRETTY_FUNCTION__ << '\n'; }
void Mod_a:... | [
"denisarefyev04@gmail.com"
] | denisarefyev04@gmail.com |
002ca3d06b4bbc725489b43e668bb88493e2f4a5 | a3fd186dc0e1b1e30902e0a584b139d334d35db3 | /cpp/data.cpp | 28672078378b5dc747f0e3b8dd272dc1f4493310 | [] | no_license | sunkejl/c_programming | eb750ad5bc94eda7e362f0fde85953bae8a400fa | a967ddfc5e4bec55dd45c09210e20add440b36bb | refs/heads/master | 2020-04-01T07:24:50.058647 | 2019-05-18T06:27:04 | 2019-05-18T06:27:04 | 152,988,891 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 199 | cpp | #include <iostream>
#include "data.h"
using namespace std;
Data::Date(int m,int d){
month = m;
day = d;
}
int Data:: getMonth(){
return month;
}
int Data:: getDay(){
return day;
}
| [
"sunkejl@live.com"
] | sunkejl@live.com |
64866ef9335f7eace6dbc22cd2b7cc1b55e43d62 | 2da48b07fa9c017408103bf27698a7bca06dc0d2 | /utt/wallet-cli/src/main.cpp | 058965498cc14039bd3a48bf3d0b8d4f0a6118fa | [
"LicenseRef-scancode-generic-cla",
"Apache-2.0",
"MIT"
] | permissive | HristoStaykov/concord-bft | bdb0b91ffc3f91f0fba6723dcf3161f0f3200be2 | 64729dfdb93ca914a47b61b331bc64802eb31caf | refs/heads/master | 2023-06-28T10:34:43.186358 | 2022-09-28T10:47:37 | 2022-09-28T10:47:37 | 243,783,141 | 0 | 0 | null | 2020-02-28T14:38:35 | 2020-02-28T14:38:34 | null | UTF-8 | C++ | false | false | 4,414 | cpp | #include <iostream>
#include <grpcpp/grpcpp.h>
#include "api.grpc.pb.h" // Generated from utt/wallet/proto/api
int main(int argc, char* argv[]) {
(void)argc;
(void)argv;
std::cout << "UTT Wallet CLI Application.\n";
// [TODO-UTT] The wallet should use the UTT Client Library for UTT requests.
// [TODO-UTT]... | [
"edzhurov@vmware.com"
] | edzhurov@vmware.com |
0a634d50cd1a76d8379b0bd22dba4f03d6130d1b | d2c739b7ff69a0ef8b44c6af07ee93d6b6357cb1 | /src/1069.cpp | 3c83db18c748eb1b4c3eecc64bf9e70d919050c4 | [] | no_license | dshnightmare/hihoCoderC | 01dfd744c26506d9d8626e1238dfd4d168ae366d | 131bcd0561e0b606eafa473630b1326ddc958b69 | refs/heads/master | 2016-09-03T07:17:58.517233 | 2015-03-31T10:15:19 | 2015-03-31T10:15:19 | 31,111,109 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,993 | cpp | #include <stdio.h>
#include <vector>
#include <unordered_map>
#include <iostream>
using namespace std;
const int NMax = 100010;
int head[NMax] = {0}, height[NMax], indexs[NMax];
int dp[NMax << 1][18];
string name[NMax];
int T, N, M;
unordered_map<string, int> map;
inline int getId(string s){
if(map.find(s) == map.e... | [
"331254291@qq.com"
] | 331254291@qq.com |
474246eb538fca7e32cf51f8b2d6898c7d1e8127 | 86a70b4a86a9751ea19c248c047c22546b743cc5 | /src/serial/aliasinfo.cpp | d0dc4b33ce676b6e64f904165e13daf8ab6f5151 | [] | no_license | mkuhn/blast-matrix | 05b9b8a274b5d8eaa220ec89df6741ffbc8c62d6 | 915ba9ac3a81549c53b314a059188c937993efd8 | refs/heads/master | 2020-12-22T10:51:47.040589 | 2012-10-24T09:14:24 | 2012-10-24T09:14:24 | 236,756,103 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,857 | cpp | /* $Id: aliasinfo.cpp 196998 2010-07-12 17:44:07Z gouriano $
* ===========================================================================
*
* PUBLIC DOMAIN NOTICE
* National Center for Biotechnology Information
*
* This software/database is a "United States Government Work" u... | [
"mkuhn@localhost"
] | mkuhn@localhost |
0d92a553976a043b0b135d65ced654850da697ce | e06605aa4ba6069f50cac23cb99a97a9b4b88284 | /blocos/src/game.h | 349376352f061df5c1343ac535b154932b7dd955 | [] | no_license | darcamo/learning | 2228b212865980e982de45d53885c705cada42aa | c331a0d3b6faf3fa79f2384c34587b64d96ca6af | refs/heads/master | 2021-01-10T12:45:36.661225 | 2015-05-25T23:36:52 | 2015-05-25T23:40:17 | 36,232,931 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,362 | h | #ifndef GAME_H
#define GAME_H
#include <SDL/SDL.h>
#include <vector>
#include <SDL/SDL_ttf.h>
#include "general_defs.h"
#include "board.h"
#include "figurebolt.h"
#include "figurebolt2.h"
#include "figureline.h"
#include "figuresquare.h"
#include "figuret.h"
#include "figureldireito.h"
#include "figurelesquerdo.h"
#in... | [
"darcamo@gmail.com"
] | darcamo@gmail.com |
f9f3b1ec4c969e9276fd8c4ae9c944faafa8f551 | 770f7b9bcdbc85ce927a3c4858b781df3c07cd07 | /src/TxPool/TxPoolEntry.h | a939004f17d136406fac91bc735b915d492e0164 | [
"MIT"
] | permissive | aleqx/GrinPlusPlus | cda04b61304e1e7ca26d911427c1d05eea5af9b0 | ff85ed2a6e8f344dae64928c54019b238bf05938 | refs/heads/master | 2020-09-22T06:29:50.059858 | 2019-12-01T00:58:39 | 2019-12-01T00:58:39 | 225,088,381 | 0 | 0 | null | 2019-12-01T00:44:46 | 2019-12-01T00:44:45 | null | UTF-8 | C++ | false | false | 1,715 | h | #pragma once
#include <Core/Models/Transaction.h>
#include <TxPool/DandelionStatus.h>
#include <ctime>
class TxPoolEntry
{
public:
//
// Constructors
//
TxPoolEntry(const Transaction& transaction, const EDandelionStatus status, const std::time_t timestamp)
: m_transaction(transaction), m_status(status), m_times... | [
"davidburkett38@gmail.com"
] | davidburkett38@gmail.com |
0695abe6caf10a4b5d5f90ac0138947532eb5692 | e7001311db016029f0864c722f7ff2c1071b09b0 | /KRayCasting/Face.cpp | be709656e5e09dfcbcf32886b1b2abfd52d982bb | [] | no_license | karlositalo/Computer-Graphics | 6fae789969f81311acf3da6a272cc071d706ed38 | 629bd4bd3b0b7b243f0a5a099509e28839471c37 | refs/heads/master | 2021-05-04T23:58:31.686257 | 2018-01-30T02:13:03 | 2018-01-30T02:13:03 | 119,450,684 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,405 | cpp | #include "Face.h"
#include "LinearSystems.h"
#include <iostream>
using namespace std;
Face::Face(Kvertex* u, Kvertex* v, Kvertex* w, Material* mat){
v1 = u;
v2 = v;
v3 = w;
propMat = mat;
}
Kvertex* Face::calculateNormal(){
Kvertex* w1 = v2->subtractVectors(v1);
Kvertex* w2 = v3->subtractVecto... | [
"karlosinfbastos@gmail.com"
] | karlosinfbastos@gmail.com |
6cd6636c357454d648612127302758e4a1e837ff | 1ed35aab6eb725686d860896f03836ca2128daf5 | /ServerModule/myServer.cpp | daa5b67c40fc8ab045ed216ebedca5900a4a6e3e | [] | no_license | acordi96/Real-time-collaborative-text-editor | b27eb3af361f399edcdb86b17ff579ce4d7a636d | 7f247d48862f99b67ab20db9a06a7a32a7fe23cc | refs/heads/master | 2022-04-22T22:06:18.915313 | 2020-04-21T14:14:34 | 2020-04-21T14:14:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,133 | cpp | //
// Created by giova on 01/10/2019.
//
#include <boost/asio.hpp>
#include <iostream>
#include <memory>
#include <utility>
#include "header_files/myServer.h"
#include "header_files/session.h"
using boost::asio::ip::tcp;
myServer::myServer(boost::asio::io_context& io_context, const tcp::endpoint& endpoint)
... | [
"giovanni.cala@hotmail.it"
] | giovanni.cala@hotmail.it |
6a7469806a4d9389cf0143725b713bf5b5a45cc7 | 2c62385f15b1f8e6072138d5175d7a70dd236b98 | /blazetest/src/mathtest/dmatdmatsub/UDaHDb.cpp | 842a0b444260c26999c648249d6d5cd12ada8094 | [
"BSD-3-Clause"
] | permissive | lyxm/blaze | 665e4c6f6e1a717973d2d98e148c720030843266 | 10dbaa368790316b5e044cfe9b92f5534f60a2dc | refs/heads/master | 2021-01-12T20:31:45.197297 | 2015-10-15T21:39:17 | 2015-10-15T21:39:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,038 | cpp | //=================================================================================================
/*!
// \file src/mathtest/dmatdmatsub/UDaHDb.cpp
// \brief Source file for the UDaHDb dense matrix/dense matrix subtraction math test
//
// Copyright (C) 2013 Klaus Iglberger - All Rights Reserved
//
// This file is ... | [
"klaus.iglberger@gmail.com"
] | klaus.iglberger@gmail.com |
de4312b0f44a2161256894f90540f60db78d6b7a | 742d5726adf9cf207d75cf818a98315257721154 | /BOJ/2133.cpp | aa07b852d2996afd3adc72ce2ed4e3e8af421747 | [] | no_license | SanghoonYu/PROBLEM_SOLVING | 3238f88624957b64f4572fa28cac8890e0e0d485 | 146e3d3d58b3fac927f6860bc9afd24ec64b399e | refs/heads/master | 2021-06-30T08:05:26.652064 | 2020-09-30T10:31:40 | 2020-09-30T10:31:40 | 161,966,915 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 590 | cpp | #include <iostream>
#define MAX(a, b) ((a > b) ? a : b)
#define MIN(a, b) ((a < b) ? a : b)
using namespace std;
int DP[30] = {0};
//F[n] = F[n-2] * 3 + (F(N-4 ... 0) * 2)
int main()
{
int N;
freopen("input.txt", "r", stdin);
scanf("%d", &N);
DP[0] = 1;
DP[2] = 3;
if (N % 2 != 0) {
... | [
"45908739+SanghoonYu@users.noreply.github.com"
] | 45908739+SanghoonYu@users.noreply.github.com |
783babdde6ed6e1f7ddc8044d51242e55f5b1e6b | 79f69fddd31ec12abcacd8205d5ae0a6b547cd54 | /Grapth/StableMarriage.cpp | 2553d7b7239f05430133739c2a3f7bfbe1cd1ef0 | [] | no_license | bachbachkhoa/Data-Structures-and-Algorithms | 6aeb67a70a21f34350f63f2870be094d121fc727 | 601408305702a390893aa9847e1b141f2d765d68 | refs/heads/master | 2020-08-21T19:02:48.748683 | 2020-03-10T08:15:40 | 2020-03-10T08:15:40 | 216,224,479 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,115 | cpp | #include <iostream>
using namespace std;
// Number of men and women
#define n 4
// This function return true if women w prefers men m1 over men m
bool wPrefersM1OverM(int prefer[2*n][n], int w, int m1, int m)
{
for (int i; i < n; ++i)
{
if (prefer[w][i] == m1)
return true;
if (pre... | [
"42577469+bachbachkhoa@users.noreply.github.com"
] | 42577469+bachbachkhoa@users.noreply.github.com |
1738c960caf4def7a2a654a1e18c740085136d10 | 600c9ec551e0238520e75974f1c4d2198e7f487b | /BOJ/Recursive/15684_Recursive.cpp | 9b5df3b223f77083fc4f6eca8d9a1e4bdccf05f5 | [] | no_license | 100winone/algorithm | f20b035208d309b48959daeace235e9e52c5ff2e | 90483b779e979b970732c9c217cb9b4831bff164 | refs/heads/master | 2021-01-07T18:02:56.267051 | 2020-07-15T12:28:49 | 2020-07-15T12:28:49 | 241,776,396 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,358 | cpp | #include <iostream>
using namespace std;
int graph[31][11];
int N, M, H;
int answer = 987654321;
bool isValidLadder(){
for (int i = 1; i <= N; ++i) {
int curPos = i;
for (int j = 1; j <= H; ++j) {
if(graph[j][curPos] == 1) curPos++;
else if(graph[j][curPos - 1] == 1) curPos--... | [
"53801551+100winone@users.noreply.github.com"
] | 53801551+100winone@users.noreply.github.com |
545e4d742f3080495381d5067c055978d4fd5d24 | c1f40215bd8e7c2423e56422018de94bb9daaa09 | /venv/lib/python3.7/site-packages/pystan/stan/lib/stan_math/stan/math/rev/mat/fun/log_sum_exp.hpp | 5903ff8fc4dc39304c3df542c158ab3ecad28da6 | [
"MIT",
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | vchiapaikeo/prophet | e05fc1854fed35387449e6a11f89f03187f344a1 | e8c250ca7bfffc280baa7dabc80a2c2d1f72c6a7 | refs/heads/master | 2022-04-22T04:49:09.716851 | 2020-04-18T15:21:18 | 2020-04-18T15:21:18 | 256,718,973 | 0 | 0 | MIT | 2020-04-18T14:34:53 | 2020-04-18T09:53:39 | Python | UTF-8 | C++ | false | false | 1,571 | hpp | #ifndef STAN_MATH_REV_MAT_FUN_LOG_SUM_EXP_HPP
#define STAN_MATH_REV_MAT_FUN_LOG_SUM_EXP_HPP
#include <stan/math/rev/core.hpp>
#include <stan/math/rev/scal/fun/calculate_chain.hpp>
#include <stan/math/prim/scal/fun/log_sum_exp.hpp>
#include <stan/math/prim/mat/fun/Eigen.hpp>
#include <limits>
namespace stan {
namespac... | [
"vchiapaikeo@etsy.com"
] | vchiapaikeo@etsy.com |
a0a50fb87fefcd57174991f06b56c23aa4eb59b9 | c51febc209233a9160f41913d895415704d2391f | /library/ATF/_throw_skill_result_other_zoclInfo.hpp | 57b5874e87b3a329af25d8d38872ff25f63c6ba4 | [
"MIT"
] | permissive | roussukke/Yorozuya | 81f81e5e759ecae02c793e65d6c3acc504091bc3 | d9a44592b0714da1aebf492b64fdcb3fa072afe5 | refs/heads/master | 2023-07-08T03:23:00.584855 | 2023-06-29T08:20:25 | 2023-06-29T08:20:25 | 463,330,454 | 0 | 0 | MIT | 2022-02-24T23:15:01 | 2022-02-24T23:15:00 | null | UTF-8 | C++ | false | false | 660 | hpp | // This file auto generated by plugin for ida pro. Generated code only for x64. Please, dont change manually
#pragma once
#include <common/common.h>
#include <_throw_skill_result_other_zocl.hpp>
START_ATF_NAMESPACE
namespace Info
{
using _throw_skill_result_other_zoclctor__throw_skill_result... | [
"b1ll.cipher@yandex.ru"
] | b1ll.cipher@yandex.ru |
09b2110a51a66d1754a66d04c8b96522cb5ba8e7 | 6415307dc4005e606ecd7685e1f25cf5a082763a | /android-7.0.0_r1/external/pdfium/xfa/src/fee/include/fx_wordbreak.h | d5b56ddff8a092edcee22c955204301ec5562355 | [
"BSD-3-Clause"
] | permissive | ghsecuritylab/sources | 218679f40e3c93204f0a65c1d314f51e12ca2e90 | 01d0cec9801852c7ed36e7684133be28cb2b4189 | refs/heads/master | 2021-03-05T08:41:45.905446 | 2019-12-27T09:59:55 | 2019-12-27T09:59:55 | 246,107,890 | 0 | 0 | null | 2020-03-09T18:07:51 | 2020-03-09T18:07:50 | null | UTF-8 | C++ | false | false | 842 | h | // Copyright 2014 PDFium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
#ifndef _FX_WORDBREAK_H
#define _FX_WORDBREAK_H
class IFX_CharIter;
class IFX... | [
"mail@itdog.fun"
] | mail@itdog.fun |
b3a84b733e21c31b8a38bb1882a35cf81e1b58dd | 82fe55932fbd8230f99a123f3fc1c65a0feb76de | /m3/test/test_observer_pattern.cc | b9b08e5fe13e37f5adf112966de0b1ac5e6b15bf | [] | no_license | ggordonvi/CSCE240-Intro-to-Software-Engineering-Cpp | d28dff413da63f66b7338a155bd3ac0a510bc938 | 093a97705b960b8032566a57ff5064ffcb4a04eb | refs/heads/master | 2022-04-27T14:32:27.742498 | 2019-08-12T18:47:19 | 2019-08-12T18:47:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,910 | cc | /* Copyright 2018 LewisJS4@cse.sc.edu */
#include <iterator>
#include <iostream>
#include <string>
#include <sstream>
#include <utility>
#include <vector>
#include "average_temp_display.h"
#include "display.h"
#include "observable.h"
#include "observer.h"
#include "sensor_net.h"
#include "temp_display.h"
#include "we... | [
"ggordon@email.sc.edu"
] | ggordon@email.sc.edu |
6edaca7c3c1020369f206d05d5faa19b3a190af8 | 4fd2c7f78072ad2e9f4a71b7470e5b0379cd224f | /cpp/CHARACTER_FONTS/four_TEX.cpp | f097e6d24e2c7eb71b26b5bbf198f14585c20582 | [] | no_license | marcclintdion/_MATHMATICAL_MARIO_6 | d0e57773b969c2ae05389520b0b4c306c991fab9 | f863f92b4b7378dde9a4cbc6e1059d6f2eaef3b1 | refs/heads/master | 2020-04-28T23:37:06.821972 | 2015-09-17T09:53:52 | 2015-09-17T09:53:52 | 42,648,498 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 492 | cpp | Texture four_TEX[] =
{
//number of vertices = 18
{0.327083, 0.566799},
{0.286878, 0.566799},
{0.306981, 0.660256},
{0.286878, 0.566799},
{0.205848, 0.539892},
{0.139583, 0.577596},
{0.327083, 0.566799},
{0.293083, 0.415426},
{0.286878, 0.566799},
{0.315026, 0.339744},
{0.293083, 0.415426},
... | [
"marcclintdion@Marcs-iMac.local"
] | marcclintdion@Marcs-iMac.local |
380fc88d2b879b505263fcc76f37672b64d1699f | 984fb63b30f815316ed9020a96235755658f02b6 | /sample01/src/widget_explorer.cpp | 6f102f29ec1ad8af7d8582021bf7745de187bbc2 | [] | no_license | zinx2/qtmodelingstudio | 3e1860d7b79fbe83a3ad375d3ec72c0a3e0ac97c | 342ccb644d88cbb8340e98c70efba843c71340a0 | refs/heads/master | 2021-08-29T12:08:08.058733 | 2017-12-13T23:12:40 | 2017-12-13T23:12:40 | 113,717,525 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 101 | cpp | #include "widget_explorer.h"
WidgetExplorer::WidgetExplorer(QWidget *parent) :
WWidget(parent)
{
} | [
"zhwan85@gmail.com"
] | zhwan85@gmail.com |
590d5e8a1ee58cda181fee29fe5ee3f9c77ee899 | 50a3c0f632b1f441613ce14a88f046cb42810e6c | /OOP/OOP_ConstructorDestructor.cpp | 57500e6d74a68e26889dcca18efad8bf58c2ac03 | [] | no_license | joaoreiser/Cplusplus | 25ff501b422286eadcf6a5d4610d22d1a404206c | 5cd9f8a6b6194041fd76e12d2a4255da813bcbe4 | refs/heads/master | 2020-04-23T00:16:49.144855 | 2019-03-18T20:00:55 | 2019-03-18T20:00:55 | 170,773,548 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,577 | cpp | #include <iostream>
#include <vector>
#include <string>
using std::cout;
using std::endl;
using std::cin;
using std::vector;
using std::string;
/*
CONSTRUCTOR
-> invoked during object creation
-> useful for initialization
-> same name as the class and no return
-> can be overloaded
class Player{
private:
string nam... | [
"reiser.jguilherme@gmail.com"
] | reiser.jguilherme@gmail.com |
cf59296cbaeb652064c7dc6f92240eb3cd2bd995 | be1bd9a4350a2282f996d5aa4f5878b9f2f831f8 | /Tangram/Piece.h | e1e91af6d878c6badf7ff2e0bb253c5fcba8e221 | [] | no_license | Dzuvan/Puzzle | 12d7f350f04def8602da107314e0127af01d124c | 3047fc3435cf48c195600b6bf2cfb89f414575cc | refs/heads/master | 2021-07-14T03:25:18.805006 | 2017-10-08T16:05:39 | 2017-10-08T16:05:39 | 104,529,594 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,614 | h | #pragma once
#include <SDL.h>
#include <vector>
#include "Vec2.h"
class Piece{
public:
Piece() {}
Piece(Vec2 position, Vec2 position2, Vec2 dimension, Vec2 dimension2,SDL_Color color):
m_position(position), m_position2(position2), m_position_reset(position), m_position2_reset(position2),
m_dim... | [
"hrnjak.jovan1@gmail.com"
] | hrnjak.jovan1@gmail.com |
b84d8b09db8a1f2b8325947190c35641ed7df390 | b71b8bd385c207dffda39d96c7bee5f2ccce946c | /testcases/CWE590_Free_Memory_Not_on_Heap/s01/CWE590_Free_Memory_Not_on_Heap__delete_array_long_alloca_10.cpp | 26b1e5bf2e823d1e9d65530e132521a92c1eb700 | [] | no_license | Sporknugget/Juliet_prep | e9bda84a30bdc7938bafe338b4ab2e361449eda5 | 97d8922244d3d79b62496ede4636199837e8b971 | refs/heads/master | 2023-05-05T14:41:30.243718 | 2021-05-25T16:18:13 | 2021-05-25T16:18:13 | 369,334,230 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,515 | cpp | /* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE590_Free_Memory_Not_on_Heap__delete_array_long_alloca_10.cpp
Label Definition File: CWE590_Free_Memory_Not_on_Heap__delete_array.label.xml
Template File: sources-sink-10.tmpl.cpp
*/
/*
* @description
* CWE: 590 Free Memory Not on Heap
* BadSource: alloca Data buffer i... | [
"jaredzap@rams.colostate.edu"
] | jaredzap@rams.colostate.edu |
03e7c7e95dcc0122f116bd78329b5d2d29d7f5a3 | 6aeccfb60568a360d2d143e0271f0def40747d73 | /sandbox/variadic_templates/libs/mpl/test/map.cpp | 3a2ce3155c0e4878343c9b6f82b90fc2e832f18d | [] | no_license | 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 | 7,291 | cpp |
// Copyright Aleksey Gurtovoy 2003-2004
// Copyright David Abrahams 2003-2004
//
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
//
// See http://www.boost.org/libs/mpl for documentation.
// $Id$
// $Date: 20... | [
"cppljevans@suddenlink.net"
] | cppljevans@suddenlink.net |
b9dfa9bb0455e2650df77c4aa286955df01cbb5a | 9c477cd0cf1a59ef4b374a45b0e08531f95f7e31 | /Solar System Game/QSMLProject/client.h | b82bdb65f52a1705c9637307ddf1433dd7fb9a94 | [] | no_license | 519984307/projects | 5f31e2b572b7d2b79a92b63e392cf9b5ee0a5a3b | a2fd17589778eb28c65f5892df479f51b6d3665c | refs/heads/master | 2023-03-17T14:27:58.938665 | 2018-02-24T04:25:57 | 2018-02-24T04:25:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 821 | h | #ifndef CLIENT_H
#define CLIENT_H
#include <SFML/Network.hpp>
#include <iostream>
#include <QString>
#include <QObject>
#include "player.h"
class Client : public QObject
{
Q_OBJECT
public:
Client();
~Client();
void ClientConnect(QString user);
//void SendData(std::string data);
void ProcessD... | [
"connerschacherer@gmail.com"
] | connerschacherer@gmail.com |
bb84bc2aaeab5024de864dba31fbd0c03949d472 | ac1c9fbc1f1019efb19d0a8f3a088e8889f1e83c | /out/release/clang_x86_v8_arm/gen/v8/torque-generated/src/objects/cell-tq-csa.cc | e7c3d3d9337f3d74eca6613fa35209592ad7735f | [
"BSD-3-Clause"
] | permissive | xueqiya/chromium_src | 5d20b4d3a2a0251c063a7fb9952195cda6d29e34 | d4aa7a8f0e07cfaa448fcad8c12b29242a615103 | refs/heads/main | 2022-07-30T03:15:14.818330 | 2021-01-16T16:47:22 | 2021-01-16T16:47:22 | 330,115,551 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,675 | cc | #include "src/builtins/builtins-array-gen.h"
#include "src/builtins/builtins-bigint-gen.h"
#include "src/builtins/builtins-collections-gen.h"
#include "src/builtins/builtins-constructor-gen.h"
#include "src/builtins/builtins-data-view-gen.h"
#include "src/builtins/builtins-iterator-gen.h"
#include "src/builtins/builtin... | [
"xueqi@zjmedia.net"
] | xueqi@zjmedia.net |
63dd1bf258c98984583b9b7d032a6543973f932e | bee606a8a277d259abbcf8cc3db975864ae8d8d4 | /2805.cpp | fb0e44cea1a5ec272865f5c8752de17181496f89 | [] | no_license | springseol/acmicpc | b1c7bef252022efeb91a9ba14ec833ff19b6a176 | 115208fead273ba4dc2cd7ca6ada73cc5e498d5e | refs/heads/master | 2020-01-19T21:34:13.257391 | 2017-07-11T00:46:58 | 2017-07-11T00:46:58 | 94,218,820 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 550 | cpp | #include <iostream>
#include <algorithm>
using namespace std;
int main()
{
long long n, m, ans;
cin >> n >> m;
long long *h = new long long[n];
for (int i = 0; i < n; i++) cin >> h[i];
sort(h, h + n);
long long left = 0, right = h[n - 1];
while (left <= right)
{
long long mid = (left + right) / 2, sum = 0;
... | [
"devspring28@naver.com"
] | devspring28@naver.com |
3e5d753c8f77534faeba3ab98876a2ca2c2053a7 | b71556aee4654b48e91ba8124a3a8ded26de273e | /contest/36/F.2.cpp | addf6379503ab81bfcf9dfd84888322df456cc1f | [] | no_license | young-zy/algorithm | 0255a327390c6b149870b34fbd34816dc002e82e | 536eddd9a6bc03e81c566afa05c53f555eb14a86 | refs/heads/master | 2021-07-23T07:23:29.929221 | 2020-04-23T16:33:28 | 2020-04-23T16:33:28 | 149,439,464 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,966 | cpp | #include<bits/stdc++.h>
using namespace std;
struct state{
int x;
int y;
int turn;
int heading;
};
int main(){
stack<state> st;
int n,m;
cin>>n>>m;
char a[n][m];
int startx,starty;
for(int i = 0; i< n ;i++){
for(int j = 0 ; j< m;j++){
cin>>a[i][j];
... | [
"youngzhaozhou@gmail.com"
] | youngzhaozhou@gmail.com |
001565324d2b80e5f714948f00e738fd8f3d7ff8 | 73ee941896043f9b3e2ab40028d24ddd202f695f | /external/chromium_org/sync/tools/sync_client.cc | e38254654ad3864677fd44532980a4486fb733fe | [
"BSD-3-Clause"
] | permissive | CyFI-Lab-Public/RetroScope | d441ea28b33aceeb9888c330a54b033cd7d48b05 | 276b5b03d63f49235db74f2c501057abb9e79d89 | refs/heads/master | 2022-04-08T23:11:44.482107 | 2016-09-22T20:15:43 | 2016-09-22T20:15:43 | 58,890,600 | 5 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 14,483 | cc | // Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <cstddef>
#include <cstdio>
#include <string>
#include "base/at_exit.h"
#include "base/command_line.h"
#include "base/compiler_specific.h"
#... | [
"ProjectRetroScope@gmail.com"
] | ProjectRetroScope@gmail.com |
c3503392946506beeda7676a1c1101274f4e55a7 | 17bf9f59d33c8a760cf339dfd553b93c04e6b47f | /misc/fexcept/execdump/xxlib/Std/std_sprt.cpp | e1617cd0bd268a2083dc2d23863e5c503b367a73 | [] | no_license | svn2github/farmanager-code | 69a6c3c74857d6791c691069f08433b309a47bbe | 467ba5c23757389bfa33fdcf1ae89669af4973aa | refs/heads/master | 2023-09-03T09:34:48.183286 | 2017-10-20T14:12:08 | 2017-10-20T14:12:08 | 77,119,677 | 4 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 3,900 | cpp | #include <all_lib.h>
#pragma hdrstop
#if defined(__MYPACKAGE__)
#pragma package(smart_init)
#endif
#include <limits.h>
//[sprintf_.cpp]
HDECLSPEC int MYRTLEXP _VSNprintf( char *buf, size_t cnt, const char *fmt, va_list args );
#if defined(__UNICODE__)
HDECLSPEC int MYRTLEXP _VSNwprintf( wchar_t *buf, size_... | [
"yjh@c1b7062c-c171-47ca-83b1-3db94eb7eadf"
] | yjh@c1b7062c-c171-47ca-83b1-3db94eb7eadf |
4852fd69af99a7d6c6e107d96d46447f9df66d90 | f739df1f252d7c961ed881be3b8babaf62ff4170 | /softs/SCADAsoft/5.3.1/ACE_Wrappers/TAO/tao/LF_Event.inl | 5318e91346fe54bf68daf39621c18f358e38e970 | [] | 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++ | UTF-8 | C++ | false | false | 649 | inl | // -*- C++ -*-
//
// $Id: LF_Event.inl 935 2008-12-10 21:47:27Z mitza $
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
ACE_INLINE int
TAO_LF_Event::bind (TAO_LF_Follower *follower)
{
if (this->follower_ != 0)
return -1;
this->follower_ = follower;
return 0;
}
ACE_INLINE int
TAO_LF_Event::unbind (TAO_LF_Follower *)
{
... | [
"billpwchan@hotmail.com"
] | billpwchan@hotmail.com |
dac0133fca0117ed80b112ccc2ea50492647ee40 | 17baded0fa7f0785f2bd9b61f79281084f488056 | /AcademyBilling/AcademyBillingTests/DefaultBillingRulesTests.cpp | 35c63c898f94ef874b1514a8c769ac656b62433c | [] | no_license | 4d6178/academy-billing | 280fbba9f43f5434f4f3cbfb932f6347141244e9 | 10021ea245bc54dc2c602308eab1d04627c70784 | refs/heads/master | 2020-04-06T11:22:39.734845 | 2014-06-17T21:48:24 | 2014-06-17T21:48:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,295 | cpp | #include "DefaultBillingRulesTests.h"
#include <DefaultBillingRules.h>
#include <Call.h>
#include <Refill.h>
#include <Subscriber.h>
namespace AcademyBillingTesting
{
time_t DefaultBillingRulesTests::timeByDayOfWeek(int weekDay)
{
assert(weekDay >= 0 && weekDay <= 6 && "Week day out of range");
... | [
"toderswat@gmail.com"
] | toderswat@gmail.com |
24629280544500e0f67f68367769e16f3d159657 | 922680cb43d8d63f4b932b04a393607c2cd1adf7 | /src/ofApp.cpp | b841c6b7a10c8837d5cc3044f1be1724f26ba75c | [
"MIT"
] | permissive | jssolichin/of-kinect-Deferrrrrrrrred | fb57a0bdca47470bccd39a93e2658b1c8b2d0cf5 | 98786f486bfe6ab47fbbb93578e44e4cab025542 | refs/heads/master | 2020-05-29T12:27:57.986681 | 2016-10-04T16:04:03 | 2016-10-04T16:04:03 | 35,085,107 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 15,786 | cpp | #include "ofApp.h"
//--------------------------------------------------------------
void ofApp::setup(){
//--- EDITABLES
//OPENCV Threshold
nearThreshold = 0;
farThreshold = 170;
//MyPointCloud Threshold
w = 640;
h = 480;
nearby = 20;
minConnectionDistance = 30;
maxConnect... | [
"jssolichin@gmail.com"
] | jssolichin@gmail.com |
f35e8cfa6d529ad1598c0e699494a6d1ffb2a0a2 | c12dc233139fc8aa95877e6081e671c4a972b091 | /PVBAR/IlcPVBARSurvey1.cxx | b29f33f9d0a9dd8dc240de0db0925fb8e78ac75c | [] | no_license | yanqicw/ORKA-ILCRoot | b4be984cb9f1991b0c174da7428366af4973ef84 | 6e66c4cbae6835586274a385bee9bed254a63976 | refs/heads/master | 2020-04-01T02:27:50.942859 | 2012-12-03T17:51:10 | 2012-12-03T17:51:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,888 | cxx | /**************************************************************************
* 2012-2013 Infrastructure for Large Collider Experiment. *
* All rights reserved. *
* Author: The International Lepton Collider Off-line Project. *
* ... | [
"anna@fbb65c11-2394-7148-9363-1d506dd39c89"
] | anna@fbb65c11-2394-7148-9363-1d506dd39c89 |
1f55b1e6d966260ec924ed317ce1b8d8ef80c42d | 3ef16236cc4566b03328552843b28adde7389612 | /chrome/browser/share/share_features.cc | d0f1f2baedd45a19e5c300d8f508a40534d178ab | [
"BSD-3-Clause"
] | permissive | moteesh-in2tive/chromium | c5962834c8218ba607846ce59d0ba008be00fe2b | e1e495b29e1178a451f65980a6c4ae017c34dc94 | refs/heads/main | 2023-09-05T00:46:48.898998 | 2021-11-23T19:52:34 | 2021-11-23T19:52:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 919 | cc | // Copyright 2021 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/share/share_features.h"
namespace share {
const base::Feature kPersistShareHubOnAppSwitch{
"PersistShareHubOnAppSwitch", ba... | [
"chromium-scoped@luci-project-accounts.iam.gserviceaccount.com"
] | chromium-scoped@luci-project-accounts.iam.gserviceaccount.com |
119e64161742db613ac04473add7c57b880c67bb | 6f6818ef04db0c8a9300fe08bbca21773845f611 | /08_QT/02_ProjetCentraleAlarme/TD2/CentraleDalarme/centraledalarme.cpp | 5635b58e4a4de68e9c42fb32ceb2b673a3a6a2c6 | [] | no_license | cbourgouin/Apprendre_CPP | 6c449c33165fe237bd7cedc25aee5ae678df0e33 | 3f19053fb35bd3b0703b1d1126229f6fa7235b45 | refs/heads/master | 2023-02-28T15:46:06.880194 | 2021-02-03T09:53:07 | 2021-02-03T09:53:07 | 292,542,024 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 787 | cpp | #include <QDebug>
#include "centraledalarme.h"
#include "clavier.h"
CentraleDalarme::CentraleDalarme(const int _tailleCode, QObject *_parent) :
QObject(_parent),
tailleCode(_tailleCode),
indiceCourant(0)
{
combinaison = new quint8[tailleCode];
for(int i = 0 ; i < tailleCode ; i++)
combinais... | [
"charlybourgouin@gmail.com"
] | charlybourgouin@gmail.com |
4ed3c466ad9d2798163b300d3667cddabd8dffbe | 2cfa657fd119a23de2a5c2ae6d55e6d2516bae2d | /src/qt/test/uritests.h | 41f6dc73bad012f3423d17b1d3f263d936216b18 | [
"MIT"
] | permissive | vivuscoin/vivuscoin | 640b10ae3a72c03b501e03b07caae09ce6c87c81 | ba0db89712234bf68b2d6b63ef2c420d65c7c25d | refs/heads/master | 2023-05-07T06:26:26.241247 | 2021-05-25T03:54:32 | 2021-05-25T03:54:32 | 362,198,076 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 488 | h | // Copyright (c) 2009-2015 The Bitcoin Core developers
// Copyright (c) 2021 The Vivuscoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef VIVUSCOIN_QT_TEST_URITESTS_H
#define VIVUSCOIN_QT_TEST_URITESTS_H... | [
"support@vivuscoin.com"
] | support@vivuscoin.com |
cceb1089b5ffdb6f1d3bfea8ca68821716c357d4 | 2b1d18ed39d97e9d6018985aac32e0a60e86ddd6 | /include/glbinding/gl/values13ext.h | 5385844a7d098e31767af0fcf076d24e7f4f91af | [] | no_license | Stealthmate/deva-framework | 354f78e7a4ad879cc8de11bdbff4ea765f14289f | adf188f76a40dcce0133e1aeb67f01c75e47f2b9 | refs/heads/master | 2020-12-19T14:08:29.425903 | 2018-02-18T17:44:44 | 2018-02-18T17:44:44 | 41,647,765 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 193 | h | #pragma once
#include <glbinding/nogl.h>
#include <glbinding/gl/values.h>
namespace gl13ext
{
using gl::GL_INVALID_INDEX;
using gl::GL_TIMEOUT_IGNORED;
} // namespace gl13ext
| [
"Stealthmate"
] | Stealthmate |
e58272ff5eef3b6f621b9bb1aca6d19c7e8e6057 | 76fe0a0404ca1d71779fc6c1122b87e0d7a7aa1b | /judges/spoj/subsums.cpp | fe24ab41716aa9683a5f2ea87fc241fd88edbf1e | [] | no_license | vitorguidi/Competitive-Programming | 905dd835671275284418c5885a4a1fae2160f451 | 823a9299dce7b7f662ea741f31b4687f854bb963 | refs/heads/master | 2021-06-25T06:58:53.670233 | 2020-12-19T16:53:15 | 2020-12-19T16:53:15 | 133,260,248 | 3 | 0 | null | 2018-05-13T17:46:43 | 2018-05-13T17:40:24 | null | UTF-8 | C++ | false | false | 1,370 | cpp | #include "bits/stdc++.h"
using namespace std;
#define pb push_back
#define mp make_pair
#define fst first
#define snd second
#define fr(i,n) for(int i=0;i<n;i++)
#define frr(i,n) for(int i=1;i<=n;i++)
#define ms(x,i) memset(x,i,sizeof(x))
#define dbg(x) cout << #x << " = " << x << endl
#define all(x) x.begin(),x.en... | [
"vitorguidi@gmail.com"
] | vitorguidi@gmail.com |
0d587e1de82d051d34cae69071bbbd3a55af13be | 06bed8ad5fd60e5bba6297e9870a264bfa91a71d | /LayoutEditor/positionableellipsexml.cpp | cbd7d3ebce46926efc1dfc2238ff680ee1cde0f3 | [] | no_license | allenck/DecoderPro_app | 43aeb9561fe3fe9753684f7d6d76146097d78e88 | 226c7f245aeb6951528d970f773776d50ae2c1dc | refs/heads/master | 2023-05-12T07:36:18.153909 | 2023-05-10T21:17:40 | 2023-05-10T21:17:40 | 61,044,197 | 4 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 2,361 | cpp | #include "positionableellipsexml.h"
#include "positionableellipse.h"
#include "editor.h"
PositionableEllipseXml::PositionableEllipseXml(QObject *parent) :
PositionableShapeXml(parent)
{
log = new Logger("PositionableEllipseXml");
}
/**
* Handle configuration for display.PositionableShape objects
*
* @autho... | [
"allenck@windstream.net"
] | allenck@windstream.net |
3206df6f72d637582dc5091a502eafbd4ddfc9b4 | 0da3c4e7912260a1ad5d1e5271c6c878fcd0337f | /bt_ch01/src/check_battery.h | f578cd52548692c23764e0eae90b41c8211713bb | [
"MIT"
] | permissive | SilasYoome/behaviortree_test | ebb76278736dcc3aed3b011f5f699ae19436f366 | 902b21ed224a3dc78a9606845b7c745b0cc4be8c | refs/heads/main | 2023-08-05T00:40:22.268534 | 2021-09-14T07:58:04 | 2021-09-14T07:58:04 | 373,444,102 | 0 | 1 | null | 2021-06-04T06:37:00 | 2021-06-03T09:00:21 | CMake | UTF-8 | C++ | false | false | 318 | h | #pragma once
#include <behaviortree_cpp_v3/action_node.h>
#include "behaviortree_cpp_v3/behavior_tree.h"
#include "behaviortree_cpp_v3/bt_factory.h"
// Simple function that return a NodeStatus
BT::NodeStatus CheckBattery()
{
std::cout << "[ CheckBattery OK ]" << std::endl;
return BT::NodeStatus::SUCCESS;
}
| [
"axxx2934@gmail.com"
] | axxx2934@gmail.com |
02590edb753b7348abcba71b15e70c89fb8ae497 | d3d764f8218a2749911896551f42b395366dcc69 | /10.4.1/ClassInClass/class2.h | d6c4b3151f4eb630b03313d7a165378ba9327d62 | [] | no_license | zjp-bit/CPP | 8ff8d36c5b8f4fc27493a743bf9f42da464e690a | a9b2a2e500c19a433c2be3f5f4eea2d949a79a40 | refs/heads/master | 2022-08-02T04:19:17.530304 | 2020-05-04T12:53:56 | 2020-05-04T12:53:56 | 257,902,912 | 0 | 0 | null | 2020-05-04T12:53:57 | 2020-04-22T13:01:41 | C++ | UTF-8 | C++ | false | false | 362 | h | ////#pragma once
//#ifndef PET_H_
//#define PET_H_
//
//#include<string>
//#include<time.h>
//
//class Pet
//{
//private:
// std::string pet_name;
// int pet_age;
//
//public:
// Pet();
// ~Pet();
//
//};
//
//Pet::Pet()
//{
// pet_name = "Xiaoqiang";
// pet_age = 2;
//
//
//};
//
//Pet::~... | [
"you@example.com"
] | you@example.com |
0143fbe1e39dfe4d592641d9ef2624a5307191a0 | d0be9a869d4631c58d09ad538b0908554d204e1c | /utf8/src/client/game/script/environment.cc | e0a70db680125b2ec247840f3cae1b814010320b | [] | no_license | World3D/pap | 19ec5610393e429995f9e9b9eb8628fa597be80b | de797075062ba53037c1f68cd80ee6ab3ed55cbe | refs/heads/master | 2021-05-27T08:53:38.964500 | 2014-07-24T08:10:40 | 2014-07-24T08:10:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,446 | cc | #include "LuaPlus.h"
#include "vengine/resource/provider.h"
#include "vengine/exception/base.h"
#include "client/game/global.h"
#include "client/game/procedure/base.h"
#include "client/game/script/system.h"
#include "client/game/script/environment.h"
namespace script {
Environment::Environment(const char* name, const... | [
"viticm@126.com"
] | viticm@126.com |
cf1e78958e1cdc6b6e668d458ec3e51b8400220e | b0bfa7ae76c15b95410e8ac758af33df220e9629 | /SteamBlast/Plugins/VRExpansionPlugin/VRExpansionPlugin/Intermediate/Build/Win64/UE4/Inc/VRExpansionPlugin/VRExpansionFunctionLibrary.generated.h | 9747c969da440c35e28a228b8fd0e222a0cd24bf | [
"MIT"
] | permissive | M-Hamdy23/Steam-Blast | b67220e1115cf85954ba3b4537c41bd327b21ac6 | 3adda97f9e21d7d239db8fd329baba68415420cc | refs/heads/master | 2021-09-17T02:38:54.510687 | 2018-06-26T19:30:41 | 2018-06-26T19:30:41 | 131,474,414 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 30,743 | h | // Copyright 1998-2018 Epic Games, Inc. All Rights Reserved.
/*===========================================================================
Generated code exported from UnrealHeaderTool.
DO NOT modify this manually! Edit the corresponding .h files instead!
==========================================================... | [
"mohamedhamdy231995@gmail.com"
] | mohamedhamdy231995@gmail.com |
404da56ffc904dfbd23ce7fc09b8c29c039bb311 | 6037be418d531e35a9870474646ca7cd85637e3c | /source/linux-gtkmm2/globals.cpp | 027932c2400c53b58cc814c57ab2d55269bb0274 | [
"MIT"
] | permissive | DeepInThought/openwl | a70825e498d6473bf9f137ab12e9856a717fd438 | 082d3da3a8aa513ddc99461ed5ce67912a26294e | refs/heads/master | 2020-05-09T12:16:32.833600 | 2019-04-12T07:57:04 | 2019-04-12T07:57:04 | 181,107,171 | 0 | 1 | MIT | 2019-04-13T01:48:30 | 2019-04-13T01:47:53 | C++ | UTF-8 | C++ | false | false | 202 | cpp | //
// Created by dang on 2/11/18.
//
#include "globals.h"
wlEventCallback eventCallback;
Gtk::Main *appMain;
Glib::RefPtr<Gtk::AccelGroup> globalAccelGroup;
Glib::RefPtr<Gtk::Clipboard> gtkClipboard;
| [
"Daniel@Win10"
] | Daniel@Win10 |
870d73e1a4faa8bc8055748d38cb809fd0c579b3 | d143454845b06971ffc6842ee1f0c6693060684a | /source/toro02.cpp | 9239c8684415355f43ff0a08433c08f44cfe963f | [] | no_license | hninanya/Attenuation-laws | 7158c97120a943fad92eeaf4f5f152dfdef1b814 | d46fce1560c480c25182abd390f1e860c842d55a | refs/heads/master | 2021-10-25T04:32:48.411244 | 2019-04-01T04:24:48 | 2019-04-01T04:24:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 16,630 | cpp | //#include <iostream>
//#include <fstream>
//#include <vector>
//#include <string>
//#include <sstream>
//#include <iomanip>
//#include <map>
//#include <cstdlib>
//#include <iterator>
//#include <algorithm>
//#include <cmath>
//
//#ifndef WIDTH
//#define WIDTH 16
//#endif // !WIDTH
//#ifndef PGA
//#define PGA 100.0
/... | [
"aninanya@outlook.com"
] | aninanya@outlook.com |
7af7b81964fcc4ff46a53a742245c53c006fccbf | fc5c70eb69e7e51dcb1996eb1a4723aba8cbdf7b | /Runtime/Manager/File/FileManager.hpp | e4f3204320de04117e66703573425ab28a0f6735 | [
"MIT"
] | permissive | LinkClinton/MinesweeperVersus | 7d3c6daa493517a7e0a427161cb81fad64d660a2 | fc5d4fa8aa7e2b6d4fd798d52a1614c243f4e308 | refs/heads/master | 2020-09-21T23:40:55.402481 | 2020-02-25T01:46:09 | 2020-02-25T01:46:09 | 224,974,144 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 649 | hpp | #pragma once
#include "Component/FileComponent.hpp"
#include "../Manager.hpp"
#include <map>
namespace Minesweeper {
class FileManager : public Manager {
public:
explicit FileManager(
const std::shared_ptr<RuntimeSharing>& sharing);
void initialize() override;
void finalize() override;
void addCompo... | [
"LinkClinton@outlook.com"
] | LinkClinton@outlook.com |
a53734e15a21f95238357d04a0a86e8a5797b93e | 66deb611781cae17567efc4fd3717426d7df5e85 | /pcmanager/src/import/kxe_improve_publish/kpfw/kpfw_common_dpt_def.h | 51f79452823866c1a70b48c7042390db0ca27bbe | [
"Apache-2.0"
] | permissive | heguoxing98/knoss-pcmanager | 4671548e14b8b080f2d3a9f678327b06bf9660c9 | 283ca2e3b671caa85590b0f80da2440a3fab7205 | refs/heads/master | 2023-03-19T02:11:01.833194 | 2020-01-03T01:45:24 | 2020-01-03T01:45:24 | 504,422,245 | 1 | 0 | null | 2022-06-17T06:40:03 | 2022-06-17T06:40:02 | null | GB18030 | C++ | false | false | 5,599 | h | ////////////////////////////////////////////////////////////////////////////////
//
// common include File for kpfw
//
// File : kpfw_common_dpt_def.h
// Version : 1.0
// Comment : 定义网镖服务和界面之间的转HTTP_RPC接口定义文件
//
// Create at : 2009-07-09
// Create by : c... | [
"dreamsxin@qq.com"
] | dreamsxin@qq.com |
8b883b094f0b1810b8ce83be005dcd99d65b7b6c | 5237a1b7ea138744cea4441b5c7a2456a01fa47d | /tizen/client/SamiPostitDeleteApiKeyResponse.h | 927c81de0d92899580c693f418c271c8c675c351 | [] | no_license | henrydavidge/postit-clients | b5f1513871292b2b6f680d66a43296b58db5da74 | c903c0174bc34dc2aaf0d55b22d84ac55168aef3 | refs/heads/master | 2020-05-29T12:26:03.599940 | 2016-05-13T21:52:40 | 2016-05-13T21:52:40 | 58,773,746 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 825 | h | /*
* SamiPostitDeleteApiKeyResponse.h
*
*
*/
#ifndef SamiPostitDeleteApiKeyResponse_H_
#define SamiPostitDeleteApiKeyResponse_H_
#include <FApp.h>
#include <FBase.h>
#include <FSystem.h>
#include <FWebJson.h>
#include "SamiHelpers.h"
#include "SamiObject.h"
using namespace Tizen::Web::Json;
namespace Swagg... | [
"henrydavidge@Henrons-MacBook-Pro.local"
] | henrydavidge@Henrons-MacBook-Pro.local |
69823ba39e52a3f25fd9fdeb00d534474e0aeff8 | f3433d71351f21ce87fbb96b8225c648e8c605c4 | /Arrays/Merge_OverLapping_Intervals.cc | c013c70decf3114e29ceaf0aeca2b673cd382c35 | [] | no_license | baskar-shanmugam/Coding-InterviewBit | 97c8cddf3d93dea896ab48fd0dc68ee5606c3d7f | b107c5a424058cc070164e64bd6173cd2a6c64f3 | refs/heads/master | 2020-04-02T15:46:57.891692 | 2019-02-14T00:25:31 | 2019-02-14T00:25:31 | 154,582,880 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,348 | cc | /*
Given a collection of intervals, merge all overlapping intervals.
For example:
Given [1,3],[2,6],[8,10],[15,18],
return [1,6],[8,10],[15,18].
Make sure the returned intervals are sorted.*/
/**
* Definition for an interval.
* struct Interval {
* int start;
* int end;
* Interval() : start(0), e... | [
"hibasky@gmail.com"
] | hibasky@gmail.com |
40d9168fe7415234ab9e716a228a3dface15ad4d | 6cecdbbe6eb721a0e43c07ed2b31bdcc9e553c55 | /Sail2D/Runs/first_flatplate_150_8/case/constant/polyMesh/boundary | 1868ace7950aaa89eb43c67379d61fd4d890bde3 | [] | no_license | kiranhegde/Gmsh | 799d8cbefb7dd3f3d35ded15b40292fd3ede6468 | fefa906dabfddd9b87cc1f0256df81b4735420e1 | refs/heads/master | 2021-01-19T23:21:57.414954 | 2015-01-21T02:02:37 | 2015-01-21T02:02:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,675 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.3.0 |
... | [
"rlee32@gatech.edu"
] | rlee32@gatech.edu | |
fa616c4c2517c394a6cecec29ddc87af7afe725d | 600df3590cce1fe49b9a96e9ca5b5242884a2a70 | /third_party/WebKit/Source/modules/fetch/BlobBytesConsumer.cpp | 06a8eb64827250e09f72e4b81384b3609cb4a634 | [
"BSD-3-Clause",
"LGPL-2.0-or-later",
"LicenseRef-scancode-warranty-disclaimer",
"LGPL-2.1-only",
"GPL-1.0-or-later",
"GPL-2.0-only",
"LGPL-2.0-only",
"BSD-2-Clause",
"LicenseRef-scancode-other-copyleft",
"MIT",
"Apache-2.0"
] | 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 | 8,637 | cpp | // Copyright 2016 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 "modules/fetch/BlobBytesConsumer.h"
#include "core/fetch/FetchInitiatorTypeNames.h"
#include "core/loader/ThreadableLoader.h"
#include "modules/... | [
"enrico.weigelt@gr13.net"
] | enrico.weigelt@gr13.net |
93ce31687144809d71915104ccc3851bc3991fa6 | 91a882547e393d4c4946a6c2c99186b5f72122dd | /Source/XPSP1/NT/net/tapi/skywalker/parser/sdpver.cpp | 56cfdad1cdc2b2eb103ff65c2852cebd7fb2ba43 | [] | no_license | IAmAnubhavSaini/cryptoAlgorithm-nt5src | 94f9b46f101b983954ac6e453d0cf8d02aa76fc7 | d9e1cdeec650b9d6d3ce63f9f0abe50dabfaf9e2 | refs/heads/master | 2023-09-02T10:14:14.795579 | 2021-11-20T13:47:06 | 2021-11-20T13:47:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,152 | cpp | /*
Copyright (c) 1997-1999 Microsoft Corporation
*/
#include "sdppch.h"
#include "sdpgen.h"
#include "sdpver.h"
// maximum value in a ushort variable
const USHORT USHORT_MAX = -1;
// no transition table for the base class
// no need to set the start state as the parse engine is not used
SDP_VERSION::SDP_VER... | [
"support@cryptoalgo.cf"
] | support@cryptoalgo.cf |
319018e27f05cbedeb3b26f6fcd85735fc2cced1 | 5ccd63be77bf7502fea134c4eac8a11f2a2c4073 | /inc/Trunk.h | 884d70f14e4d15da30472f05e4d92481952ec42b | [] | no_license | KPO-2020-2021/zad5_2-xHeler | 73b50c518568bcfd735a3d221e7841c0c413f707 | 0db390492681ea59eeeccf0f8180f98c6c702d4e | refs/heads/main | 2023-05-12T11:37:04.817359 | 2021-06-10T11:26:36 | 2021-06-10T11:26:36 | 372,549,416 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 741 | h | #pragma once
#include "Polygon.h"
const double LENGHT = 75;
const double HEIGHT = 25;
class Trunk : public Object {
private:
std::vector<Polygon<RECTANGLE>> walls;
void createMainWalls(double lenght, double height);
void createOtherWalls();
public:
Trunk(double _scale = 1, double lenght = LENGHT, ... | [
"258966@student.pwr.edu.pl"
] | 258966@student.pwr.edu.pl |
ee268d37abe4e8a1328fd29717cdd710050b9dec | 6a00ce88e93d412ac0e1531b2f7eefe769d86ad1 | /Source/FilterView.h | 7864ddc2ca50276727bf67746555910359a76bab | [] | no_license | denisfitz57/Duasynth | 4cdc8e2be84aff2a4b096d373355b7263f185da7 | 87499b605878ae5bc9e59ca5ced088115f1da7d7 | refs/heads/master | 2020-08-28T18:50:48.658833 | 2019-02-27T01:18:15 | 2019-02-27T01:18:15 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 659 | h | /*
==============================================================================
FilterView.h
Created: 18 Dec 2018 9:53:43pm
Author: shaun.rasmusen
==============================================================================
*/
#pragma once
#include "../JuceLibraryCode/JuceHeader.h"
//=========... | [
"shaunrasmusen@gmail.com"
] | shaunrasmusen@gmail.com |
203dbf4c3c3b764589648ec0f659614687ba337d | 3a5ffab5cdab873157a91b9a85738d7f754db06e | /8382/Yankin Daniil/TheGame/main.cpp | c4a51afa1f09e8855bfd9bb03df89e4ca6869380 | [] | no_license | alex-stak/oop | cc0cf58e2664c38f5fd7805e09c19c372c2a64f7 | 03ce9199ca464c0cd1a102ab1140adb1287e0ed9 | refs/heads/master | 2022-08-29T15:44:47.797521 | 2020-04-29T10:50:41 | 2020-04-29T10:50:41 | 261,551,937 | 0 | 0 | null | 2020-05-05T18:27:20 | 2020-05-05T18:27:20 | null | UTF-8 | C++ | false | false | 176 | cpp | #include "UI/MainWindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}
| [
"daniil.yank@yandex.ru"
] | daniil.yank@yandex.ru |
56b18666264b361f202ef01052e8f935e96963c0 | 248bdd698605a8b2b623fe82899eec15bc80b889 | /gfx/skia/skia/src/ports/SkMemory_mozalloc.cpp | 693069bb89d0d7b8cdec7734ee9d3fdad33d6222 | [
"LicenseRef-scancode-unknown-license-reference",
"BSD-3-Clause"
] | permissive | Feodor2/Mypal68 | 64a6f8055cb22ae6183a3a018e1487a44e20886e | dc92ce6bcc8032b5311ffc4f9f0cca38411637b1 | refs/heads/main | 2023-08-31T00:31:47.840415 | 2023-08-26T10:26:15 | 2023-08-26T10:26:15 | 478,824,817 | 393 | 39 | NOASSERTION | 2023-06-23T04:53:57 | 2022-04-07T04:21:39 | null | UTF-8 | C++ | false | false | 1,045 | cpp | /*
* Copyright 2011 Google Inc.
* Copyright 2012 Mozilla Foundation
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "SkMalloc.h"
#include "SkTypes.h"
#include "mozilla/mozalloc.h"
#include "mozilla/mozalloc_abort.h"
#include "mozilla/mozalloc_o... | [
"Feodor2@mail.ru@"
] | Feodor2@mail.ru@ |
5986b6955c5ed18d646d2fdaf5281d6ac63b6e26 | 09b9045b31e141ce910b4b4de1b34c9fa30d9137 | /newMethod.cpp | f8cff05d3d4e3e6657f32e079f1b6f53afd8e4ce | [] | no_license | minoshiLiyanage/OOP | 07349974568e101e39ebb4f34d9d23a56890eb59 | ed3516462bb693ef1ea1e05cb3850d5fd8681013 | refs/heads/master | 2021-07-15T13:27:54.294208 | 2020-10-01T06:46:04 | 2020-10-01T06:46:04 | 214,956,412 | 0 | 0 | null | 2019-10-14T05:35:49 | 2019-10-14T05:35:49 | null | UTF-8 | C++ | false | false | 7,874 | cpp | #include <iostream>
#include <fstream>
#include <sstream>
#include <vector>
#include <iterator>
#include <string>
#include <cmath>
using namespace std;
const int MAXSUBJECTS = 10;
const int MAXSTUDENTS = 100;
struct student{
string stdId;
int mark;
char grade;
};
class subject{
pri... | [
"thdeema@gmail.com"
] | thdeema@gmail.com |
c17f3c04baaa539e832b1ef5eb033fc90aa00e3f | a67c70c6ccd97819adb094cdfb5d272a10fa5284 | /hw2_team9/problem3/BinomialTreePricer.hpp | 06f9b373c4500f008e9d4fc33261c7049e828c4f | [] | no_license | RancyChepchirchir/MTH9821-Numerical-Methods-for-Finance-1 | b488e84613cdcb069601b71c3031c026c7a1f62e | f04890e484d28c18e7a90341f79bfd312ac921b8 | refs/heads/master | 2021-09-17T19:40:33.412912 | 2018-07-04T17:04:59 | 2018-07-04T17:04:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,347 | hpp | //
// BinomialTreePricer.hpp
// BinomialTreeII
//
// Created by Changheng Chen on 9/3/17.
// Copyright © 2017 Changheng Chen. All rights reserved.
//
#ifndef BinomialTreePricer_hpp
#define BinomialTreePricer_hpp
#include <iostream>
#include <vector>
#include <array>
// (1) Binomial tree method
double BT(int N, d... | [
"chiongheng.chen@gmail.com"
] | chiongheng.chen@gmail.com |
1b49ed5ee1ed169eaa505983628bb5f118a1f943 | 04822224b9d2bb5c56ca0dda3a1ea3ac3ffecfc9 | /cs109/assignment5/testin/cix-client.cpp | 8e18172ed87ce1512966cb559a54b50379ab6acb | [] | no_license | oozemon/coursework | 95198d940df657812e47d294d26cfda8b6ec6c57 | 4be1adde98b04abfa3b001dcf84d9632f0547318 | refs/heads/master | 2020-03-18T13:12:23.202484 | 2018-05-24T23:24:39 | 2018-05-24T23:24:39 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,170 | cpp | // $Id: cix-client.cpp,v 1.7 2014-07-25 12:12:51-07 - - $
//PRATEEK BHATT
//MARVIN CORRO
#include <iostream>
#include <string>
#include <vector>
#include <unordered_map>
#include <fstream>
using namespace std;
#include <libgen.h>
#include <sys/types.h>
#include <unistd.h>
#include "cix_protocol.h"
#inc... | [
"usman@eduroam-169-233-246-210.ucsc.edu"
] | usman@eduroam-169-233-246-210.ucsc.edu |
633b7ea65056a91d969d60d8ed978f9e97a08abb | 915e809b77f5b1bff05b0d93be050188c7fe0951 | /OGLApp/src/PBRMaterial.cpp | b62c6c4fe86377721ee336251dab7c4afa4336fe | [
"MIT"
] | permissive | Consalv0/OGLApp | bb6da2011b2a74daaa6d6c292d3b7a91e5e34686 | 45bc0e3a4460f3d094b1ac5b9c6ac0d6fc40d4fd | refs/heads/master | 2020-03-18T22:19:51.243813 | 2018-09-25T22:52:24 | 2018-09-25T22:52:24 | 135,339,040 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,872 | cpp | #pragma once
#include "oaMaterial.h"
#include "oaCamera.h"
#include "GLM\common.hpp"
#include "GLM\gtc\type_ptr.hpp"
#include "GLM\gtc\matrix_transform.hpp"
#define GLM_ENABLE_EXPERIMENTAL
#include <GLM\gtx\transform.hpp>
#include <cereal\types\memory.hpp>
#include <cereal\archives\xml.hpp>
#include <ce... | [
"gonzaloceciliano@gmail.com"
] | gonzaloceciliano@gmail.com |
697f8e7df042760713457530fdfd440efea209ed | 93343c49771b6e6f2952d03df7e62e6a4ea063bb | /SDUSTOJ/1802.cpp | 5e6c2ecf2c1748a80bd3d379322b41d1f6ba68a5 | [] | no_license | Kiritow/OJ-Problems-Source | 5aab2c57ab5df01a520073462f5de48ad7cb5b22 | 1be36799dda7d0e60bd00448f3906b69e7c79b26 | refs/heads/master | 2022-10-21T08:55:45.581935 | 2022-09-24T06:13:47 | 2022-09-24T06:13:47 | 55,874,477 | 36 | 9 | null | 2018-07-07T00:03:15 | 2016-04-10T01:06:42 | C++ | UTF-8 | C++ | false | false | 1,894 | cpp | #include <cstdio>
#include <cstdlib>
#include <cstring>
using namespace std;
/*
bool check(int inc)
{
if(inc%36!=0) return false;
char buff[32];
memset(buff,0,32);
sprintf(buff,"%d",inc);
if(strstr(buff,"36")==NULL) return false;
int len=strlen(buff);
for(int i=0;i<len;i++)
{
if(... | [
"1362050620@qq.com"
] | 1362050620@qq.com |
ef21e257c85fae9ef7152a3aafa711c3a0634f4d | e47319035ba7422b224125a28434fa45569e3a9f | /Longest-Increasing-Subsequence/Longest-Increasing-Subsequence/Source.cpp | ce9ce9a64a6909c047a3fed7b1b1cb40721ea707 | [] | no_license | HassanMahmoudd/DataStructures-Algorithms | 76e5b521a34fb0ba215e109b9e6819fa6e437b5d | e043202e06e195e5222eb6c0c6e3d42eb6604298 | refs/heads/master | 2021-01-17T07:31:34.715538 | 2017-09-17T01:05:39 | 2017-09-17T01:05:39 | 83,744,593 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,173 | cpp | #include<set>
#include<map>
#include<list>
#include<iomanip>
#include<cmath>
#include<string>
#include<vector>
#include<queue>
#include<stack>
#include<complex>
#include<sstream>
#include<iostream>
#include<fstream>
#include<iterator>
#include<algorithm>
#include<numeric>
#include<utility>
#include<functional>
#include... | [
"hassanmahmoudsd@gmail.com"
] | hassanmahmoudsd@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.