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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0747199684b9f8728081d8218d77404c0e8ce1d7 | ff6b880d6c254069e6ea47ed693f979946397552 | /OOP/Lab5/Lab5/laba4/laba4/Win32Project2/PointEditor.h | 8df63ed40423791c81437b9d55a247766d6a48f5 | [] | no_license | Slavick-Vinnitskyi/University | 047b293c61cc1b53e88e8e61fec829cef020a95a | d040d1515cccbd45e7c9e0ae1e60953a04e44f89 | refs/heads/master | 2021-07-10T14:18:27.855192 | 2018-11-19T17:30:59 | 2018-11-19T17:30:59 | 135,054,965 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 405 | h | #pragma once
#include "Editor.h"
#include "ShapeEditor.h"
#include "PointShape.h"
class PointEditor: public ShapeEditor
{
public:
void OnLBdown(HWND hwnd, int x, int y) {}
void NewShape()
{
shape = new Point();
}
void OnLBup(HWND hwnd, int x, int y)
{
shape->SetX1Y1(x, y);
}
... | [
"noreply@github.com"
] | noreply@github.com |
d51bcd7367213da5902fbb484e013be18a821aab | 19daf06821b0d51541102254383e0c92f0136750 | /include/cool-tree.handcode.h | f971125fced40dcb8c88870fa4dd85e35260c29a | [] | no_license | rish246/CompilerDesign | b39e2ebdb5543752c0771a546eb49847b18d0cc7 | 5bdade7731741a020d622eb9bde7ea4a929c8d0f | refs/heads/main | 2023-03-08T14:35:18.525267 | 2021-02-22T05:54:30 | 2021-02-22T05:54:30 | 326,186,078 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,865 | h | //
// The following include files must come first.
// Read this first
// Then Read the COOL_TREE_H
#ifndef COOL_TREE_HANDCODE_H
#define COOL_TREE_HANDCODE_H
#include <iostream>
<<<<<<< HEAD
#include "./tree.h"
=======
#include "./tree.hpp"
>>>>>>> f3b6a6f722898ad27256033354da69be5af6ce9a
#include "./cool.h"
#include ... | [
"rishabhkatna2228@gmail.com"
] | rishabhkatna2228@gmail.com |
4a218545c0287975271517023738dfc852323481 | 74f084a0a5d2cc70fa49708a4f070aa271dba1b3 | /src/server/server/game/src/HackShield_Impl.h | 245895242f02eb1c4a763bdaa3d8f23feeceda32 | [] | no_license | rafalohaki/Metin2-Work | 293f9c2318fca74bd433942a7156a3f8ba18241d | c0adbc14cd15ea12a78e61db570b3963d755ab75 | refs/heads/main | 2023-05-30T17:23:56.347527 | 2021-06-14T18:44:54 | 2021-06-14T18:44:54 | 382,686,870 | 0 | 0 | null | 2021-07-03T18:38:23 | 2021-07-03T18:38:22 | null | UTF-8 | C++ | false | false | 963 | h |
#ifndef HACK_SHIELD_IMPL_H_
#define HACK_SHIELD_IMPL_H_
#include <boost/unordered_map.hpp>
#ifdef __FreeBSD__
// Live build only
#define UNIX
#include <AntiCpXSvr.h>
#undef UNIX
#endif
#pragma pack(1)
typedef struct SPacketGCHSCheck
{
uint8_t bHeader;
#ifdef __FreeBSD__
AHNHS_TRANS_BUFFER Req;
#endif
} TPacketGC... | [
"46651742+ASIKOO@users.noreply.github.com"
] | 46651742+ASIKOO@users.noreply.github.com |
83cc0d126d99f8069d7965b7fa6b0e8682317013 | 0d7cd9b8f04d6b924a5183e056731c9b7c3eb651 | /GeekForGeeks/Queues/reverseque.cpp | 73a167bea57edbf282537772d8fbfb8c38586803 | [] | no_license | SayantoRoy/DS-and-ALGO | a5e065d0ba84580fb4190331a49aa658ef865463 | 2246e4fd9df3b88ec2228c6b0334cc8a38016c63 | refs/heads/master | 2022-12-12T00:39:37.630556 | 2020-09-04T17:36:15 | 2020-09-04T17:36:15 | 260,521,579 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,198 | cpp |
#include<iostream>
#include<stack>
using namespace std;
struct node
{
int data;
node* next;
};
node* head = NULL;
node* tail = NULL;
void push(int x)
{
node* temp = new node;
temp->data =x;
temp->next =NULL;
if(head == NULL)
{
head = temp;
tail = temp;
}
else
... | [
"sroy.sayanto@gmail.com"
] | sroy.sayanto@gmail.com |
de7ebbee79d1a6afcaaa99b50a43fd23e9065f12 | 9e0864a47932097f584cafb9606b1038d3d99fc5 | /cmake/include/irrlicht/IParticleGravityAffector.h | 22421edf0d7ebd8aa385665dff81bde1e0e1e285 | [] | no_license | arzeo68/OOP_indie_studio | d7a83d6363a711fd6a27027cf8221d079f67b4a8 | 14ad93650d7fa09ac63ee0158f327b7996defe96 | refs/heads/master | 2022-12-11T22:25:29.843477 | 2020-09-04T15:16:22 | 2020-09-04T15:16:22 | 292,878,597 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,426 | h | // Copyright (C) 2002-2012 Nikolaus Gebhardt
// This file is part of the "Irrlicht Engine".
// For conditions of distribution and use, see copyright notice in irrlicht.h
#ifndef __I_PARTICLE_GRAVITY_AFFECTOR_H_INCLUDED__
#define __I_PARTICLE_GRAVITY_AFFECTOR_H_INCLUDED__
#include "IParticleAffector.h"
namespace irr
... | [
"alexis.walter@epitech.eu"
] | alexis.walter@epitech.eu |
7b2d43b3abff9c8a52de8ea7201716f26caf65de | a3634de7800ae5fe8e68532d7c3a7570b9c61c5b | /hackerrank/non-divisible-subset.cpp | b8662f659eed1438d0ac6d1c31149dcb50bfea1e | [] | no_license | MayankChaturvedi/competitive-coding | a737a2a36b8aa7aea1193f2db4b32b081f78e2ba | 9e9bd21de669c7b7bd29a262b29965ecc80ad621 | refs/heads/master | 2020-03-18T01:39:29.447631 | 2018-02-19T15:04:32 | 2018-02-19T15:04:32 | 134,152,930 | 0 | 1 | null | 2018-05-20T13:27:35 | 2018-05-20T13:27:34 | null | UTF-8 | C++ | false | false | 669 | cpp | #include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
int main() {
/* Enter your code here. Read input from STDIN. Print output to STDOUT */
int n, k;
cin>>n>>k;
int q[k]={0};
int count=0, s[n];
for(int i=0; i<n; i++)
cin>>s[i]... | [
"f20160006@goa.bits-pilani.ac.in"
] | f20160006@goa.bits-pilani.ac.in |
c14dbf178bdc3b9f060a1a4eb71cfa668fc970d0 | 6c1fdffe8569ea66178264210a5dc2cdb2cc2f9c | /linkedlist/SinglyLinkedList.h | f17e8c64138d055cd2b710d98967d672e69edd28 | [] | no_license | DarBeck/singlylinkedlist | 2d09253b20db458656312335080d93502d9ba94a | f961e4677be5e308d16ac8147353c52f0265b6b1 | refs/heads/master | 2022-12-24T07:08:59.291208 | 2020-10-04T02:01:53 | 2020-10-04T02:01:53 | 300,086,995 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 300 | h | #pragma once
#include "Node.h"
class SinglyLinkedList
{
public:
SinglyLinkedList();
void InsertAtBack(shared_ptr<Student> data);
void RemoveStudent(int studentId);
shared_ptr<Student> SearchStudent(int studentId);
void DisplayList();
void DestroyList();
private:
shared_ptr<Node> head;
};
| [
"darren.beckford@hotmail.com"
] | darren.beckford@hotmail.com |
9003897b16b65341eb8a9c3e52469c6cf7507a3d | 67fc9e51437e351579fe9d2d349040c25936472a | /wrappers/7.0.0/vtkRectilinearGridToTetrahedraWrap.h | d5cd2b0424f78a3075645f6f81663e593ac1a5cb | [] | permissive | axkibe/node-vtk | 51b3207c7a7d3b59a4dd46a51e754984c3302dec | 900ad7b5500f672519da5aa24c99aa5a96466ef3 | refs/heads/master | 2023-03-05T07:45:45.577220 | 2020-03-30T09:31:07 | 2020-03-30T09:31:07 | 48,490,707 | 6 | 0 | BSD-3-Clause | 2022-12-07T20:41:45 | 2015-12-23T12:58:43 | C++ | UTF-8 | C++ | false | false | 2,383 | h | /* this file has been autogenerated by vtkNodeJsWrap */
/* editing this might proof futile */
#ifndef NATIVE_EXTENSION_VTK_VTKRECTILINEARGRIDTOTETRAHEDRAWRAP_H
#define NATIVE_EXTENSION_VTK_VTKRECTILINEARGRIDTOTETRAHEDRAWRAP_H
#include <nan.h>
#include <vtkSmartPointer.h>
#include <vtkRectilinearGridToTetrahedra.h>
... | [
"axkibe@gmail.com"
] | axkibe@gmail.com |
5e02ffa4015efbf4482b13056d9315cef9eafda8 | 0314af7877ed3cde78101aca56d45673dce223c6 | /MotionSwitchAccumulator/ManageRecordedDataOnMySQL/src/embodied_brain/main.cpp | 3def8fe1466d0642af1c5a6837356f569343a8cc | [] | no_license | t-inamura/EmbodiedBrain | 60be19b9ee5385159f153e4d7b95699917ae6b75 | dc10dfabe19e7d321b612e96c965b4b6cfa6109f | refs/heads/master | 2020-12-18T15:22:20.422154 | 2018-05-20T00:24:05 | 2018-05-20T00:24:05 | 26,864,993 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,469 | cpp | /*
* データベース(MySQL)に収録された各種データを簡易なコマンドでメンテナンスする
*
* <流れ>
* 1. コンソールからのコマンド入力で、テーブルをメンテナンスする
* メンテナンス対象テーブルは以下
* ・Perception Neuron動作サマリテーブル(perception_neuron_motions_summary)
* ・Perception Neuron動作時系列テーブル(perception_neuron_motions_time_series)
* ・動作切替実験_収録情報テーブル(msw_recording_info)
* 2... | [
"tome-yamada@nii.ac.jp"
] | tome-yamada@nii.ac.jp |
a66ddc0778723d03664190d750427db60841e7d8 | ab0a8234e443a6aa152b9f7b135a1e2560e9db33 | /Server/CGSF/LogicLayer/MOGame/triggerareacomponent.h | 0b524aefa2f4ee2ea12ec21f3f8817695afb8c82 | [] | no_license | zetarus/Americano | 71c358d8d12b144c8858983c23d9236f7d0e941b | b62466329cf6f515661ef9fb9b9d2ae90a032a60 | refs/heads/master | 2023-04-08T04:26:29.043048 | 2018-04-19T11:21:14 | 2018-04-19T11:21:14 | 104,159,178 | 9 | 2 | null | 2023-03-23T12:10:51 | 2017-09-20T03:11:44 | C++ | UTF-8 | C++ | false | false | 3,315 | h | /*
* The Mana Server
* Copyright (C) 2006-2010 The Mana World Development Team
* Copyright (C) 2012 The Mana Developers
*
* This file is part of The Mana Server.
*
* The Mana Server is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as publishe... | [
"sinyonzzang@gmail.com"
] | sinyonzzang@gmail.com |
fc098f061c84e4f1637d855df27dd824cf9ec2d8 | ab4eb5ad30c66fb309f39bf6e1d30483a6b2c295 | /Pg1_03.cpp | 5a861757224c6ef2aa6ad6d76b07d4a2baf3f408 | [] | no_license | Kuro524/programming-at-nit | 1162e302ac04abb06579e73bd7175da0adee2b41 | af4ba96b08865916320e7b7d34a95e31f47c6b09 | refs/heads/master | 2021-01-10T16:48:29.204377 | 2016-04-14T21:21:27 | 2016-04-14T21:21:27 | 55,895,062 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 846 | cpp | /*//////////////////////////////////////////////////////////////////////////////////
課題3 5つの値の最大値を求め表示するプログラムを作成しなさい。
キーワード:if文、比較演算子、代入演算子
最終更新日:2016.03.28
*/
#define _CRT_SECURE_NO_WARNINGS // 余計な警告が出ないようにする
#include <stdio.h>
int main( void )
{
int a, b, c, d, e; // 調べる値
... | [
"Kota Konishi"
] | Kota Konishi |
e4a6c59359d8a21ebb876877162bc6caf2c85c5b | 9cd2aae81efacf6e661cf238d42a4ecf345a92c6 | /tests/studentTests.cpp | 4789da58636ad74927f434adf910f307bbc49f07 | [] | no_license | liu861/Letter-Encryptor-Decryptor | 8019b6e7fad73431ca80a29bbbf85b774bc4e22e | ce28b9ba12bb1e8bacb736aa097b01bfb18b93b7 | refs/heads/master | 2022-11-10T16:56:45.168058 | 2020-07-02T04:04:54 | 2020-07-02T04:04:54 | 260,891,306 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,128 | cpp | #include "catch.hpp"
#include "srcmain.h"
// Helper function declarations (don't change this)
extern bool CheckTextFilesSame(const std::string& fileNameA,
const std::string& fileNameB);
// Your tests -- only add sections
TEST_CASE("Substitution Decrypt Tests", "[student]")
{
SECTION("Decrypt -- Simple")
{
... | [
"scottmai@usc.edu"
] | scottmai@usc.edu |
d9bc1b7751d00cd3b0e326ee7b6acee7299c7369 | 5f9b26a41102c38da28b8f757a5586f9bc7cf71a | /crates/zig_build_bin_windows_x86_64/zig-windows-x86_64-0.5.0+80ff549e2/lib/zig/libcxx/include/string | 1db9ee4433ce6f5996c91cbf6a0166e220ac301a | [
"NCSA",
"LLVM-exception",
"MIT",
"Apache-2.0"
] | permissive | jeremyBanks/zig_with_cargo | f8e65f14adf17ed8d477f0856257422c2158c63f | f8ee46b891bbcdca7ff20f5cad64aa94c5a1d2d1 | refs/heads/master | 2021-02-06T10:26:17.614138 | 2020-03-09T04:46:26 | 2020-03-09T04:46:26 | 243,905,553 | 4 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 165,858 | // -*- C++ -*-
//===--------------------------- string -----------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===-----... | [
"_@jeremy.ca"
] | _@jeremy.ca | |
03c59e7794f106e0acf809198048c94a5287470a | 0fad1e93f2a737b0f533427e6bbdd7c8a7541247 | /ldr/ldr.ino | f61f370ee62d28872f92b0fff846d4b7db4baf2d | [
"MIT"
] | permissive | shikya/arduino-automation-strip | 62fa75a0c13f3fabfc9e350f98b6b18712c4f91b | ad1ae3bd98eca37c2962ad27a64f7a0692cf5fc3 | refs/heads/master | 2020-04-13T06:08:55.242295 | 2019-01-13T19:46:18 | 2019-01-13T19:46:18 | 163,012,412 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 332 | ino | int ldr = A7;
int led = 6;
int value =0;
void setup() {
// put your setup code here, to run once:
pinMode(ldr, INPUT);
pinMode(led, OUTPUT);
Serial.begin(9600);
}
void loop() {
// put your main code here, to run repeatedly:
value = analogRead(ldr);
Serial.println(value);
//Serial.print(" ");
de... | [
"shrikantsonone@gmail.com"
] | shrikantsonone@gmail.com |
6731817a8e045fec4b89ed01233e9d3d46ee4e8b | a403d656bec65074adb17d193b8742a0b4cd60af | /1048.cpp | 19f42bde4fe69c45209e827ef2ca2d4a2bf4d9a7 | [] | no_license | LucVeloso/URI_CPP | 87835b5073e96846c170066550e33e19b8b3c927 | 5d068c274dfa77623ff6701a5900a2bc2c78444e | refs/heads/master | 2023-01-31T09:44:20.555578 | 2020-12-11T13:48:11 | 2020-12-11T13:48:11 | 320,577,646 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,046 | cpp | #include <bits/stdc++.h>
using namespace std;
int main()
{
double a, b;
cin >> a;
cout << fixed << setprecision(2);
if ( a <= 400.00 )
{
b = a*15/100;
cout << "Novo salario: " << a+b << endl;
cout << "Reajuste ganho: " << b << endl;
cout << "Em percentual: 15 %" << endl;
}
else if ( a... | [
"lucasvelosobp@gmail.com"
] | lucasvelosobp@gmail.com |
f8c54b9e889eb239491c063d5d3798bf12becb41 | edd6b6ee0cafee8299b4ecdc1df2b8f49f6762f5 | /src/Histogramming/Recon/HistogrammingMuonRegions.cpp | 8c4c00f8dda5af870ab3c275251172d1e2907580 | [] | no_license | leggat/tWIHEPFramework | 4512ea9a0bc798309112ac4111636e929fbf6443 | 0ad97e207dc9b41c8c989b268cd72c57f5d241c9 | refs/heads/master | 2022-02-09T20:34:22.678309 | 2021-08-24T17:33:09 | 2021-08-24T17:33:09 | 62,226,837 | 0 | 4 | null | 2021-10-05T08:04:02 | 2016-06-29T13:12:19 | C++ | UTF-8 | C++ | false | false | 18,730 | cpp | /******************************************************************************
* HistogramMuonRegions.cpp *
* *
* Books and fills histograms *
... | [
"leggat@cern.ch"
] | leggat@cern.ch |
e1485d07df40425ea9049b52eadad1cb25847f8a | a8d4404dc9f8ecfbedf2af7e83bb9572ec8120f2 | /libs/ofxTwitter/src/Entities.cpp | 092a930902b899d38c74947b21d484954bfee34a | [
"LicenseRef-scancode-unknown-license-reference",
"MIT"
] | permissive | bakercp/ofxTwitter | 835469a57d9bfc1bdb0717a6fd572ebadcf8509f | 1a4713bbca66b978948070527d1b6b560aa5e8c2 | refs/heads/master | 2021-03-24T09:14:23.946322 | 2018-12-22T17:57:58 | 2018-12-22T17:57:58 | 14,264,957 | 18 | 7 | MIT | 2020-09-17T22:55:01 | 2013-11-09T20:59:43 | C++ | UTF-8 | C++ | false | false | 21,788 | cpp | //
// Copyright (c) 2009 Christopher Baker <https://christopherbaker.net>
//
// SPDX-License-Identifier: MIT
//
#include "ofx/Twitter/Entities.h"
#include "ofx/Twitter/User.h"
#include "ofx/Twitter/Utils.h"
#include "ofLog.h"
#include "Poco/Exception.h"
#include "Poco/URI.h"
namespace ofx {
namespace Twitter {
Ba... | [
"me@christopherbaker.net"
] | me@christopherbaker.net |
0261bac3aa65f62afb10613529fd105b7209542a | 260e5dec446d12a7dd3f32e331c1fde8157e5cea | /Indi/SDK/Indi_Spell_PerkEffect_Resilient_2_classes.hpp | 4b3574fdfbbb2bfc2fa9acd4f5964b2c71d61037 | [] | no_license | jfmherokiller/TheOuterWorldsSdkDump | 6e140fde4fcd1cade94ce0d7ea69f8a3f769e1c0 | 18a8c6b1f5d87bb1ad4334be4a9f22c52897f640 | refs/heads/main | 2023-08-30T09:27:17.723265 | 2021-09-17T00:24:52 | 2021-09-17T00:24:52 | 407,437,218 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 735 | hpp | #pragma once
// TheOuterWorlds SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
#include "Indi_Spell_PerkEffect_Resilient_2_structs.hpp"
namespace SDK
{
//---------------------------------------------------------------------------
//Classes
//----------------------------------------------------------------------... | [
"peterpan0413@live.com"
] | peterpan0413@live.com |
63aacfc2f2e4f568890e6b6efafbaddd5ad82c68 | 5fdd476476fbaf3b6ea859691c3afcd17eab5001 | /Системное программирование/Win32Project - обработчик событий/Win32Project1/Win32Project1.cpp | 886525afddfc3e2969434febd9435ec78b7d1ab5 | [] | no_license | itstepP21014/PirozhnikDZ | 9c9e854a2a7cf757016161de982227e5fafcc6d8 | 94f52c304923bd6d2f47531592368135ab2c2541 | refs/heads/master | 2021-01-23T19:13:23.408395 | 2016-11-19T09:41:15 | 2016-11-19T09:41:15 | 27,079,112 | 0 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 5,854 | cpp | // Win32Project1.cpp : Defines the entry point for the application.
//
#include "stdafx.h"
#include "Win32Project1.h"
#define MAX_LOADSTRING 100
// Global Variables:
HINSTANCE hInst; // current instance
TCHAR szTitle[MAX_LOADSTRING]; // The title bar text
TCHAR szWindowClass[MAX_LOADSTRING]; // the main... | [
"pirozhenka@yandex.ru"
] | pirozhenka@yandex.ru |
ceec6109664c8771797934415dd04741446fbf07 | 7926bafb7e46fca5ad0ff1a5ed4235746b51f086 | /src/cryptonote_core/cryptonote_tx_utils.cpp | 54d73cfe2f318b6fc8c7ae400b6312c42e336619 | [
"LicenseRef-scancode-unknown-license-reference",
"BSD-3-Clause"
] | permissive | btmdteam/bitcoinmedal | 40253796139ed029832d2720d28a200e136407da | 7688ce1b30cf0a728bd590841b02c772b606e43f | refs/heads/master | 2020-04-10T10:22:36.919475 | 2018-12-08T17:53:55 | 2018-12-08T17:53:55 | 160,963,325 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 20,798 | cpp | // Copyrights(c) 2017-2018, The BitcoinMedal Project
// Copyrights(c) 2014-2017, The Monero Project
//
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without modification, are
// permitted provided that the following conditions are met:
//
// 1. Redistributions of source cod... | [
"btmdteam@gmail.com"
] | btmdteam@gmail.com |
737b8d7bf652de7c6220777eb2df8d60f13a53cf | 94bd295572de3f4934a3896ce1bb882fb4d35edc | /ash/shell/example_session_controller_client.h | 1cdbd2f8343d5fc034a5996a9fd3421145bd1756 | [
"BSD-3-Clause"
] | permissive | WebGameLinux/chromium | 06109b62d6019b051474cd479f3d577e0eec4463 | a35a1e2ce2ab74eccc467aa390eda1a8e29e3e09 | refs/heads/master | 2023-03-07T14:07:56.342758 | 2017-04-08T02:33:08 | 2017-04-08T03:38:27 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 990 | h | // Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_SHELL_EXAMPLE_SESSION_CONTROLLER_CLIENT_H_
#define ASH_SHELL_EXAMPLE_SESSION_CONTROLLER_CLIENT_H_
#include "ash/common/test/test_session_cont... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
911d84568996387472cb8ceca5ce577dea38c312 | bec0383f2afd255a72afeb9049a898615e547327 | /src/test/fuzz/message.cpp | 3aaddd8547f0075fbe40bf850ee922ffcb9c1924 | [
"MIT"
] | permissive | Bitcoin-ABC/bitcoin-abc | a73024a513be2c9c419f8bece06dbadde2af3fb7 | 57176a00e4d660487c41b92207da4bf27e5c0026 | refs/heads/master | 2023-09-04T11:26:24.295624 | 2023-09-01T14:24:40 | 2023-09-04T05:20:03 | 89,913,655 | 1,359 | 768 | MIT | 2023-07-19T16:41:26 | 2017-05-01T09:58:15 | C++ | UTF-8 | C++ | false | false | 2,276 | cpp | // Copyright (c) 2020 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 <chainparams.h>
#include <config.h>
#include <key_io.h>
#include <util/message.h>
#include <util/strencodings.h>
#includ... | [
"fabcien@gmail.com"
] | fabcien@gmail.com |
d982735413a93d810139ccbea4b1e94afd3a1e22 | 11856d165da17c57f463754092c90d50b7ef2bb6 | /src/Mapper.h | 33d7357b48bee45353071c6fe3b3d017b78f7ef0 | [] | no_license | dempo93/png-mapper | a792e32ba1ec16fd51ad0d5ec3900af65d2b580e | 08e04cef1708841f70d0737297a0b7198d1eb7da | refs/heads/master | 2020-04-21T13:57:26.502985 | 2019-02-10T18:29:11 | 2019-02-10T18:29:11 | 169,618,175 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 784 | h | //
// Created by simone on 10.02.19.
//
#ifndef PNG_MAPPER_MAPPER_H
#define PNG_MAPPER_MAPPER_H
#include <memory>
#include "Png.h"
#include "Io.h"
class Mapper
{
public:
static void HankaSimoneTransformation(double scale, const std::filesystem::path& input,
const std:... | [
"sdp@3yourmind.com"
] | sdp@3yourmind.com |
b6cf34d7ffacf447f527ac5a83ee1d78f9788652 | c401c09363701619100a6b99bfa9543417c9e20c | /Linear DS/stack_using_array.cpp | b806c798942f2ff0782e0af4b55e090cdd62222c | [] | no_license | ksatyendra/DS-Algo | 22a2b6c975268c697048ad761c86b030a3f0b444 | 0b6673ce8d60b3d41a45b0dbeaf014cdb6095686 | refs/heads/master | 2020-04-10T10:15:52.594044 | 2018-12-08T17:08:34 | 2018-12-08T17:08:34 | 160,960,120 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,556 | cpp | #include<iostream>
#include<conio.h>
using namespace std;
int *a;
int top,n;
bool isempty()
{
if(top==-1)
{
cout<<"\nStack is EMPTY!\n";
return true;
}
return false;
}
bool isfull()
{
if(top==n-1)
{
cout<<"\nStack is FULL!\n";
return true;
}
return false;
}
void display()
{
if(... | [
"ksatyendra218@gmail.com"
] | ksatyendra218@gmail.com |
5db1a23400a828c822f106e21faca6613c8be3ca | 5789692527454dbafd354ab496522c0615beb6bf | /Diem.h | 032222ceb3989dcee51f2c8bd59761aa8e86ff40 | [] | no_license | nhatquan1702/ThiTracNghiem | aadb43f28071b60e71a32ee43e051154e98a1635 | 04a710a829e60aac4239845f3d3098d5a8728896 | refs/heads/master | 2022-12-05T23:26:37.545296 | 2020-08-24T15:06:56 | 2020-08-24T15:06:56 | 289,959,046 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 380 | h | #ifndef DIEM_H
#define DIEM_H
#include "MyFunction.h"
class Diem
{
public:
Diem();
void inMaMH();
void inD();
void inDiem();
void setMaMH(char ma[]);
void setDiem(float d);
float getDiem();
char *getMaMH();
void setDiemNext(Diem* d);
Diem* getDiemNext();
private:
char maMh[siz... | [
"noreply@github.com"
] | noreply@github.com |
06043d1e0dac5774e968c241e635c8b8f2bbbed2 | 976879c57fdc14ca8c3aa02dc87e8a165889e4c0 | /cs211/hw9.cpp | c7555b1a1dec3f7045dad574cf9a82c2b8dbc296 | [] | no_license | avanwest/C-plus-plus | 18c126f9a48a5f7b01a963d9a34f2136bb4b8850 | 2068d03dc91f960d6734b25182d276c49591b13a | refs/heads/master | 2021-02-09T01:06:40.558056 | 2020-03-01T23:03:12 | 2020-03-01T23:03:12 | 244,220,085 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 812 | cpp | // Adam vanWestrienen
// HW#9 - Integration
#include <iostream>
using namespace std;
typedef double (*FUNC)(double);
double integrate(FUNC f, double a, double b);
double line(double x);
double square(double x);
double cube(double x);
int main() {
cout << "The integral of f(x)=x between 1 and 5 is: " << integra... | [
"noreply@github.com"
] | noreply@github.com |
9aeeed9e5dcf6008a4b08cd22d63a2d56bd74afc | d56dce868785cdfb0414fc65311f7897c29570e6 | /面向对象四则运算/面向对象四则运算/allclass.cpp | b46e364a9c65057528c27752ae3c033119d05fb1 | [] | no_license | LineseWorld/ExerciseProgram | 8e56dc694209a9aab2b3c6f888aa0a6f9052b889 | 637a343a749ad51fad3b3f221de05d3994675a1d | refs/heads/master | 2022-12-22T11:53:36.641726 | 2017-06-13T13:29:42 | 2017-06-13T13:29:42 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 7,490 | cpp | #include "allclass.h"
template <class T>
void StackClear(stack<T> &s) //清空栈
{
while (!s.empty())
s.pop();
}
int expresses::IsOperator(char c)//判断是否为运算符
{
switch (c)
{
case '+':
case '-':
case '*':
case '/':
case '(':
case ')':
case '=':
return 1;
break;
default:
return 0;
break;
}
}
int express... | [
"1076452761@qq.com"
] | 1076452761@qq.com |
319e389c8f811281ab9abb538d35b38fa0e3646d | e36e8f998e14711fedb616818587fdd19e5061f5 | /v1.0/module/lz_db/src/daotunnel.cpp | f8e2b58a26bedf51fbd488c249811492d18559a3 | [] | no_license | fanxiang090909/Railway-Tunnel-Construction-Dlearance-Measure-LanZhou | af07dbbccbc563da2f91a0aba11a564fded525f9 | 745e3049839be0532bc1214bf494730d2c7df156 | refs/heads/master | 2016-09-10T13:37:05.093754 | 2015-11-22T10:04:02 | 2015-11-22T10:04:02 | 38,955,294 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 12,845 | cpp | #include <QStandardItemModel>
#include <QStringListModel>
#include <QSqlQuery>
#include <QDebug>
#include "daotunnel.h"
#include "daoline.h"
/**
* 隧道数据访问对象类实现
*
* @author fanxiang
* @version 1.0.0
* @date 2013-8-8
*/
// singleton设计模式,静态私有实例变量
TunnelDAO * TunnelDAO::tunnelDAOInstance = NULL;
/**
* singleton设... | [
"fanxiang090909@126.com"
] | fanxiang090909@126.com |
5d4cfcdd167c00756cf9cefc2bf4f959089fa7ae | 5ec06dab1409d790496ce082dacb321392b32fe9 | /clients/cpp-qt5-qhttpengine-server/generated/server/src/models/OAIComAdobeCqDtmImplServletsDTMDeployHookServletInfo.h | 423a83f7fd8071213b20912db3375a44d3edf96e | [
"Apache-2.0",
"MIT"
] | 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 | 2,053 | 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 |
d175c597bac36fe373996702341a131c40b38630 | f0b7bcc41298354b471a72a7eeafe349aa8655bf | /codebase/apps/titan/src/CIDD_titan/render_xsect_grids.cc | 73282a98c3c4b8b4e30cb7aff37030f0513d9c76 | [
"BSD-3-Clause"
] | permissive | NCAR/lrose-core | 23abeb4e4f1b287725dc659fb566a293aba70069 | be0d059240ca442883ae2993b6aa112011755688 | refs/heads/master | 2023-09-01T04:01:36.030960 | 2023-08-25T00:41:16 | 2023-08-25T00:41:16 | 51,408,988 | 90 | 53 | NOASSERTION | 2023-08-18T21:59:40 | 2016-02-09T23:36:25 | C++ | UTF-8 | C++ | false | false | 11,173 | cc | // *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
// ** Copyright UCAR (c) 1990 - 2016
// ** University Corporation for Atmospheric Research (UCAR)
// ** National Center for Atmospheric Research (NCAR)
// ** Bo... | [
"dixon@ucar.edu"
] | dixon@ucar.edu |
73ec68c1ca400b6d7fb2cc9344130f90b15d54b4 | 02095cd4aeaa3a0d724f7362cdb8795fe9a81620 | /oplink/algorithms/team/src/plugins/scores/HVSynergyPairs/HVSynergyPairs.h | d4c9c7c38ca64ffe947c9261dda57a51946bc942 | [] | no_license | PAL-ULL/software-metco | ba5123cb1423fed4a2ac678ab375728ba4bbfbc8 | 59edc4e49bddbd9fc7237bf2f24271bdfc8afd79 | refs/heads/master | 2021-04-15T04:12:56.292543 | 2021-03-08T13:29:14 | 2021-03-08T13:29:14 | 126,484,450 | 10 | 5 | null | 2020-07-21T18:43:10 | 2018-03-23T12:49:10 | C++ | ISO-8859-1 | C++ | false | false | 2,646 | h | /***********************************************************************************
* AUTORES
* Carlos Segura González
*
* DESCRIPCION
* Algoritmo de puntuacion que implementa el algoritmo basado en detección
* de "pares sinérgicos".
* Al módulo se le debe pasar el número de islas esclavas que intervien... | [
"edusegre@gmail.com"
] | edusegre@gmail.com |
156cdab558d3a82b97d42de974a228325ddf5da5 | d0be9a869d4631c58d09ad538b0908554d204e1c | /utf8/lib/client/kernelengine/include/CGAL3.2.1/include/CGAL/Delaunay_triangulation_3.h | 8dbb514bce53a5d51c17dab59337defe723f85cc | [] | 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 | 53,213 | h | // Copyright (c) 1999-2004 INRIA Sophia-Antipolis (France).
// All rights reserved.
//
// This file is part of CGAL (www.cgal.org); you may redistribute it under
// the terms of the Q Public License version 1.0.
// See the file LICENSE.QPL distributed with CGAL.
//
// Licensees holding a valid commercial license may ... | [
"viticm@126.com"
] | viticm@126.com |
9a793f0bee197ceed6ec4499504bcf175ea5ed64 | 49e4e03786019f9c346570d7276c8ded43cbd86b | /firmware/AlarmsManager.cpp | bf853222eea93ada0b220a916f733c19df4833b4 | [] | no_license | nickswalker/tock | b94060a658293af12cfd48fd6addabe00bb0a239 | 6ac5dc737a85c1b5080c8164bb65d493d241e1e8 | refs/heads/master | 2021-01-22T17:47:33.724302 | 2015-02-01T06:16:50 | 2015-02-01T06:16:50 | 14,816,265 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,674 | cpp | #include "AlarmsManager.h"
#include "AlarmT.h"
#include "Time.h"
#include "Settings.h"
#include <EEPROM.h>
void AlarmsManager::setAlarm(AlarmNumber alarmNumber, AlarmT alarm){
EEPROM.write(Settings::getAlarmMinuteAddress(alarmNumber), alarm.getTriggerMinute());
EEPROM.write(Settings::getAlarmHourAddress(alarmN... | [
"nick@nickswalker.com"
] | nick@nickswalker.com |
373e291faf8ead7fe303882207ff8dfdae2d0706 | 948f4e13af6b3014582909cc6d762606f2a43365 | /testcases/juliet_test_suite/testcases/CWE762_Mismatched_Memory_Management_Routines/s01/CWE762_Mismatched_Memory_Management_Routines__delete_array_int64_t_realloc_32.cpp | df36ca93e5584b240c65c85718496cbe5c1553b8 | [] | no_license | junxzm1990/ASAN-- | 0056a341b8537142e10373c8417f27d7825ad89b | ca96e46422407a55bed4aa551a6ad28ec1eeef4e | refs/heads/master | 2022-08-02T15:38:56.286555 | 2022-06-16T22:19:54 | 2022-06-16T22:19:54 | 408,238,453 | 74 | 13 | null | 2022-06-16T22:19:55 | 2021-09-19T21:14:59 | null | UTF-8 | C++ | false | false | 3,667 | cpp | /* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE762_Mismatched_Memory_Management_Routines__delete_array_int64_t_realloc_32.cpp
Label Definition File: CWE762_Mismatched_Memory_Management_Routines__delete_array.label.xml
Template File: sources-sinks-32.tmpl.cpp
*/
/*
* @description
* CWE: 762 Mismatched Memory ... | [
"yzhang0701@gmail.com"
] | yzhang0701@gmail.com |
5fda5bfc215a15601646edcfb31c1b76e9cd6874 | 8c8625977a22b340f8290761ad153a3b7f0055b1 | /src/qt/clientmodel.h | 4fc36f3c62307b96e17980a13313102cea4e674b | [
"MIT"
] | permissive | nigelflaming/VYI | 8979c83167fa9e73adcdd5e70a1ce2fc8d12cfae | 487e699959fe1191a7de6af4b657b74f80a365fd | refs/heads/master | 2020-03-29T13:41:03.345265 | 2018-06-27T10:57:46 | 2018-06-27T10:57:46 | 149,976,303 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,156 | h | // Copyright (c) 2011-2014 The Bitcoin developers
// Copyright (c) 2014-2015 The Dash developers
// Copyright (c) 2015-2017 The PIVX developers
// Copyright (c) 2017 The Vyigrat developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-l... | [
"sarkawt909@yahoo.com"
] | sarkawt909@yahoo.com |
58e0d8d2ee0d28d51410b91d119adc94397d66ee | b7dddc7e7b9b98d661abe05fcc9ba98c6746112d | /CountAndSay/main.cpp | 13b2153bd82a36d249a0a7d5c608f44598eada74 | [] | no_license | scutLaoYi/leetcode | 7427c4c76b993e31d3f62bf8f04106ea2daeba77 | bfd959c5f0418f0f7de3e883e2746753ba0232bc | refs/heads/master | 2021-01-19T09:41:48.995695 | 2015-01-06T12:40:03 | 2015-01-06T12:40:03 | 28,499,121 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 211 | cpp | #include <iostream>
#include "CountAndSay.h"
using namespace std;
int main()
{
int n;
while(cin>>n)
{
Solution solution;
cout<<solution.countAndSay(n)<<endl;
}
return 0;
}
| [
"scutLaoYi@gmail.com"
] | scutLaoYi@gmail.com |
d28699999a7a17a0ae9bb6023844746b3afd42bf | 3af68b32aaa9b7522a1718b0fc50ef0cf4a704a9 | /cpp/E/E/E/D/C/AEEEDC.cpp | f17fe340a08f0ef0ed372267c2bec2d1e7c39b8a | [] | no_license | devsisters/2021-NDC-ICECREAM | 7cd09fa2794cbab1ab4702362a37f6ab62638d9b | ac6548f443a75b86d9e9151ff9c1b17c792b2afd | refs/heads/master | 2023-03-19T06:29:03.216461 | 2021-03-10T02:53:14 | 2021-03-10T02:53:14 | 341,872,233 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 108 | cpp | #include "AEEEDC.h"
namespace AEEEDC {
std::string run() {
std::string out("AEEEDC");
return out;
}
} | [
"nakhyun@devsisters.com"
] | nakhyun@devsisters.com |
803510f111c085ef08faf548261d2be1cfb4fdf4 | d26652dc856c66276f1aa17f8ce714c47bea4b64 | /Editor/EditorInterop/EntityFactory.cpp | e4027f7f35ba59f111456a24025e3f94eacd3d19 | [] | no_license | PeterValtersson/Editor | 7b759f04918cb5b69d237d46e159ab338eaea93d | 78206df6b749b88b7a9b11825d5005a1d2f473f2 | refs/heads/master | 2023-03-15T10:18:23.041658 | 2023-03-08T20:47:46 | 2023-03-08T20:47:46 | 237,368,457 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 44 | cpp | #include "pch.h"
#include "EntityFactory.h"
| [
"peter.walter.valtersson@gmail.com"
] | peter.walter.valtersson@gmail.com |
b3bf676ba2b392db55e41e72755af55f08a3a16f | 009c5fae8003f25e92e3dbf149e3177fefbc8d56 | /recombination.h | 7e38d5ac2ff57bd7816653f4d4f83179be90e4f7 | [] | no_license | fuyiqing/mpi_openmp_mopso | 963d3aa3057b81590d557fde03973ffdb6bb790c | 7ede129d2efe25b2bf50abb610079b3d0854a6eb | refs/heads/master | 2022-03-26T22:25:51.057138 | 2016-03-02T07:26:36 | 2016-03-02T07:26:36 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 9,531 | h | #ifndef _RECOMBINATION_H_
#define _RECOMBINATION_H_
#include <iostream>
#include <fstream>
#include <cstring>
#include <stdlib.h>
#include <stdio.h>
#include <math.h>
#include <time.h>
#include <memory.h>
#include"random.h"
//目标函数数、每个粒子的维度、邻居数量、粒子数量、进化次数
const int numObjectives = 2;
const int numVariables = 10;
const ... | [
"jzzlee@163.com"
] | jzzlee@163.com |
f3a7da1925afd693d47258cdb709b3aa81f37145 | 4cc7c74b4bb7b818562bedffd026a86f9ec78f41 | /chrome/browser/ui/app_list/search/omnibox_result.cc | e38e3977dfb2ad61b8d277c95c8b58069b0df555 | [
"BSD-3-Clause"
] | permissive | jennyb2911/chromium | 1e03c9e5a63af1cf82832e0e99e0028e255872bd | 62b48b4fdb3984762f4d2fd3690f02f167920f52 | refs/heads/master | 2023-01-10T01:08:34.961976 | 2018-09-28T03:36:36 | 2018-09-28T03:36:36 | 150,682,761 | 1 | 0 | NOASSERTION | 2018-09-28T03:49:28 | 2018-09-28T03:49:27 | null | UTF-8 | C++ | false | false | 7,501 | 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 "chrome/browser/ui/app_list/search/omnibox_result.h"
#include <stddef.h>
#include "ash/public/cpp/app_list/app_list_config.h"
#include "ash/pub... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
abdebfb0eb9a4e8a7fc4855b2524a8cf0b3b801c | 91c71db50d3c9d60545e654b78a505adf99b6449 | /function.cpp | 78fc06c509cca8f052e0ab0d2aea1f3121c139a2 | [] | no_license | Tejas8765/scaling | 7d0e5b153edb97d279ae90f7b48a71083ff6c25d | e8bcd3f76f938217fddf4eda366b6fbfc0f368dd | refs/heads/master | 2023-01-08T05:19:56.190610 | 2020-11-09T17:21:21 | 2020-11-09T17:21:21 | 311,409,529 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 212 | cpp | #include <iostream>
using namespace std;
void sqr(void);
int main()
{
sqr();
return 0;
}
void sqr()
{
int a;
cout<<"\n \tenter a no. ";
cin>>a;
cout<<"\n \tsqr of "<<a<<" is "<<a*a;
}
| [
"tejasawasthi8765@gmail.com"
] | tejasawasthi8765@gmail.com |
32f728d47d24af0fc0eda5bc91166b8b886f8b6b | 5168d97461d4335784082f88ba2f90d3dee71769 | /Coding Questions/2-D Array/Tutorial Sheet/Ques10.cpp | 4f227a2e17aac89158b8c19fbe94d90e8b9e3be6 | [] | no_license | parasjain929/Karma | eb4021397f085cbc24a08b2651d2d20103047484 | 7e52e7f5698f8a6e15684800ee336ae24dae8c36 | refs/heads/master | 2020-06-01T23:27:10.785809 | 2019-07-05T08:57:04 | 2019-07-05T08:57:04 | 190,964,636 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 674 | cpp | #include<bits/stdc++.h>
using namespace std;
int main()
{
int n,i,j,k;
cin>>n;
int a[n][n],b[n][n],c[n][n]={};
for(i=0;i<n;i++)
{
for(j=0;j<n;j++)
{
cin>>a[i][j];
}
}
for(i=0;i<n;i++)
{
for(j=0;j<n;j++)
{
cin>>b[i][j];
... | [
"parasjain929@gmail.com"
] | parasjain929@gmail.com |
186d1ba8b2e1a7f68836800c9f46370e83d937fb | 287dc1683f7e19a5239c2b8addbc8531809f9177 | /mooc40-bobo-Interview/Play-with-Algorithm-Interview-master/03-Using-Array/cpp/05-Sort-Colors/main2.cpp | b30136a2b541fb0a4d106314094c35b01e81c72f | [
"Apache-2.0"
] | permissive | yaominzh/CodeLrn2019 | ea192cf18981816c6adafe43d85e2462d4bc6e5d | adc727d92904c5c5d445a2621813dfa99474206d | refs/heads/master | 2023-01-06T14:11:45.281011 | 2020-10-28T07:16:32 | 2020-10-28T07:16:32 | 164,027,453 | 2 | 0 | Apache-2.0 | 2023-01-06T00:39:06 | 2019-01-03T22:02:24 | C++ | UTF-8 | C++ | false | false | 1,038 | cpp | #include <iostream>
#include <vector>
#include <cassert>
using namespace std;
// 75. Sort Colors
// https://leetcode.com/problems/sort-colors/description/
//
// 三路快速排序的思想
// 对整个数组只遍历了一遍
// 时间复杂度: O(n)
// 空间复杂度: O(1)
class Solution {
public:
void sortColors(vector<int> &nums) {
int zero = -1; // ... | [
"mcuallen@gmail.com"
] | mcuallen@gmail.com |
ea7912c07dfd5feb2a5143cded6c8d17fcadeff3 | 60b41b520961aec238fcff1fec8329fec33b3bfc | /src/pca.cpp | 243e68b90a88e66bb8cdc74b10b460bc773a5a36 | [] | no_license | kugelblitz1235/optical-character-recognition-Metnum | 7adfdf00a0bd43b50d59419a8bcead45f1770d0f | 015d129abb647abb4bade28c82e2e5fa04b4b1f4 | refs/heads/master | 2023-03-05T19:11:44.477697 | 2021-02-08T20:55:40 | 2021-02-08T20:55:40 | 337,206,027 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,693 | cpp | #include <iostream>
#include "pca.h"
#include "eigen.h"
using namespace std;
PCA::PCA(unsigned int n_components) {
this->alpha = n_components;
}
void PCA::fit(Matrix X) {
_V = get_eigenvectorMatrix(X);
}
MatrixXd PCA::transform(Matrix X) {
return (X*_V);
}
MatrixXd PCA::get_eigenvectorMatrix(Matrix X) ... | [
"brunolml99@outlook.es"
] | brunolml99@outlook.es |
4c941727d5bff1d7e51a7782a8fccb1327f1e26c | fa13641f306497840a1348dd1577b42dddcd1173 | /arduino/CallibrateCompass/src/Main.cpp | 96aa4dad075766405bdba44a9b4ab37b2e0b69c1 | [] | no_license | hexgecko/ZumoRobotRemote | 7cae094447cd0a9fea546864c06390dc9797de2e | 32aa0743e86f225405db95cc37d2b5d647c0b2d0 | refs/heads/master | 2020-09-03T19:18:29.437082 | 2019-11-04T16:22:14 | 2019-11-04T16:22:14 | 219,544,641 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,009 | cpp | #include <Arduino.h>
/* This example uses the magnetometer in the Zumo Shield's onboard
* LSM303DLHC to help the Zumo make precise 90-degree turns and drive
* in squares. It uses ZumoMotors, Pushbutton, and the LSM303
* (compass) library.
*
* This program first calibrates the compass to account for offsets in
* ... | [
"stefan.elmlund@gmail.com"
] | stefan.elmlund@gmail.com |
be24ac2dce771091a6a9511f3ff838fcd22716de | bf44ac4b80e485ee3b48afb714e47129b5f07c5e | /Maze Solving/stack_test.cpp | 31c0195039ee0bb929d22a4be25bded9255b741f | [] | no_license | ayushashi11/dsa | 3df8818b57de9be44511e051a40561275893d8c9 | 662d36c6f1e5aefbe5515835f4f9b9350383e201 | refs/heads/master | 2023-04-13T02:23:32.615694 | 2023-04-04T02:49:24 | 2023-04-04T02:49:24 | 230,466,217 | 0 | 0 | null | 2021-11-30T05:07:40 | 2019-12-27T15:21:14 | C++ | UTF-8 | C++ | false | false | 195 | cpp | #include<stack>
#include<iostream>
using namespace std;
stack<int> st;
int main(){
cout<<"hello\n";
for(int i=0;i<5;i++){
st.push(i);
}
cout<<(st.top()+2);
return 0;
} | [
"ayushashi11@gmail.com"
] | ayushashi11@gmail.com |
9df2d2c9bda897c1f7d5f0ddec85ccaac7e49604 | ba939b57e04c1ba5180ae1b47c2f71e02885e025 | /main.cpp | 6d43275fb6e83e989b80356e7df00ece8f0c8587 | [
"MIT"
] | permissive | aoleg94/gamepad-launcher | 9ea29195a3f8a4d2a461c4a1486b3c975a0b251c | f104ddb79e51ee759a2ed83b8ceb16a30d5bfc41 | refs/heads/master | 2021-01-11T17:43:14.546485 | 2017-02-01T18:47:47 | 2017-02-01T18:57:50 | 79,823,675 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 232 | cpp | #include "mainwindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
a.setApplicationName("Gamepad Launcher");
MainWindow w;
//w.show();
return a.exec();
}
| [
"aoleg94@gmail.com"
] | aoleg94@gmail.com |
0d440ca4cdf4ae46d5bd9bbc9dca2306a407e1a6 | 7c94bc78c07023c7b1491418bd17585f52a9698d | /codeforces/contest-1136/3.cpp | 4cdf814ec8c62b7f8acdcbea29623a48fbefc49b | [] | no_license | vitkarpov/dcp | beac190e653190781a6c1ddcdb3e89448e4d78ef | 51cd0bed4e9909f7c01c8881e2e47704a5a49926 | refs/heads/master | 2021-07-17T22:36:59.764499 | 2020-04-27T15:34:01 | 2020-04-27T15:34:01 | 141,915,045 | 16 | 2 | null | 2019-11-13T15:29:13 | 2018-07-22T17:05:57 | C++ | UTF-8 | C++ | false | false | 1,496 | cpp | #include <algorithm>
#include <iostream>
#include <vector>
using namespace std;
void read_matrix(vector<vector<int>> &m, int xx, int yy) {
for (int i = 0; i < yy; i++) {
for (int j = 0; j < xx; j++) {
cin >> m[i][j];
}
}
}
bool check_transform(const vector<vector<int>> &m1,
con... | [
"viktor.karpov@toptal.com"
] | viktor.karpov@toptal.com |
530d76e8837d06ac3ee5be00e1c37c25e922f183 | d56a7b237481a81353c22a4772abd2376709e7b4 | /Ejercicios LP1/Ejercicio13-factura exenta/factura exenta.cpp | e5b0ac537c0b32181b6a4dcbab3f32db76f7667d | [
"MIT"
] | permissive | IrisVH/cpp | 89bafb23689822bd8e8e4d995688c28f3586f580 | 2abeca0df70cfdc6e95e8b07160062b66e4b2799 | refs/heads/master | 2022-12-26T13:21:26.389770 | 2020-10-05T02:14:20 | 2020-10-05T02:14:20 | 276,538,918 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 820 | cpp | #include <iostream>
using namespace std;
int main(int argc, char** argv) {
double subtotal=0;
double total=0;
double impuesto=0;
char estaexenta;
double calculoImpuesto=0;
int descuento=0;
double calculoDescuento=0;
cout <<"Ingrese el valor de la factura:";
cin >>subtotal;
cout <<"Ingrese el descuen... | [
"ivhernandez@unah.hn"
] | ivhernandez@unah.hn |
b5ccf891fcd5263a788b04a041d37e1e8f098280 | 0ca8832a2818af66f1a584d7cf6c56abf0af8591 | /src/thirdparty/boost/boost/ptr_container/ptr_sequence_adapter.hpp | cb51cd14e4ee6ffc7576cd01b692e9a7450fe9ba | [] | no_license | knobik/source-python | 241e27d325d40fc8374fc9fb8f8311a146dc7e77 | e57308a662c25110f1a1730199985a5f2cf11713 | refs/heads/master | 2021-01-10T08:28:55.402519 | 2013-09-12T04:00:12 | 2013-09-12T04:00:12 | 54,717,312 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 26,327 | hpp | //
// Boost.Pointer Container
//
// Copyright Thorsten Ottosen 2003-2005. Use, modification and
// distribution is subject to the Boost Software License, Version
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
//
// For more information, see http://www.boos... | [
"satoon101@gmail.com"
] | satoon101@gmail.com |
2c3809abab313609399dedd10082c951f9df08ec | 0dae1ca57bc87080ffde4eebf8ce9e9ac1338637 | /src/netfulfilledman.h | 5ec3b7fb3f7f0a256b198131f5b17499217e38d1 | [
"MIT"
] | permissive | kiranrh/innoket-master | 393cee942e2aadbeb3bc55a71b5928a1069da152 | 9bc414a7caea3ce1eaef8a171909d32e1e56711d | refs/heads/master | 2021-04-06T05:46:22.665334 | 2018-03-18T14:57:56 | 2018-03-18T14:57:56 | 125,207,942 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,587 | h | // Copyright (c) 2014-2017 The Dash Core developers
// Copyright (c) 2017-2018 The Innoket Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef NETFULFILLEDMAN_H
#define NETFULFILLEDMAN_H
#include "netbas... | [
"36470139+Innoket@users.noreply.github.com"
] | 36470139+Innoket@users.noreply.github.com |
684d121d1a32c385cee5527c94bc401662b29e6f | a64a8d76aac2c9a9cba574f7361f055472488557 | /Semester 1/Praktikum/TUGAS SORTING 1/SelectionSortModul.cpp | de326c4a6e2f9b324341b6e0f9f37e33f182c94a | [] | no_license | danielsitepu36/Cpp-as-the-first | 10ea28beff8557afecea15e4db5d677ac08e4ee2 | d94b8b7cfe8c3bdb3fbd55fb3cea11ee72534bd6 | refs/heads/master | 2020-07-06T12:49:53.446105 | 2019-08-28T12:29:16 | 2019-08-28T12:29:16 | 203,023,073 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 621 | cpp | #include<iostream>
using namespace std;
int main(){
int data[]={5,3,7,2,0,9,4,1,8,6};
int i,dataSize,temp,min;
dataSize=sizeof(data)/sizeof(data[0]);
cout<<"PROGRAM SELECTION SORT"<<endl;
cout<<"Data sebelum diurutkan = "<<endl;
for(int j=0;j<dataSize;j++){
cout<<data[j]<<" ";
}
for(int i=0;i<dataSize-1;i++)... | [
"danielsitepu96@users.noreply.github.com"
] | danielsitepu96@users.noreply.github.com |
16c1a993a0caa920577026a20c4a430fc21e36ef | 3333dd52c91331597c0a785c1ae8e663ae12dfdd | /CNT/Semester 3/CNT353/LAB3/LAB3/Germ.cpp | 01193b8e95834a3820184ad209b478619769b378 | [] | no_license | mtikoian/School | 2e20f2fc1d6992d0047bc8686c8ac34be4369c3c | 901d5ea0fd384c1713f6a7415401f15cbc75e274 | refs/heads/master | 2020-12-03T08:44:16.261018 | 2018-01-31T16:22:19 | 2018-01-31T16:22:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,903 | cpp | /****************************************************
Project: Lab 03 - Petri dish
Files: Germ.h, Germ.cpp, Dish.h, Dish.cpp
Date: 06 Mar 2007
Author: Addison Babcock Class: CNT3K
Instructor: Herb V. Course: CNT353
Description: Petri dish simulation
****************************************************/
#inclu... | [
"addison@a587bc9e-4a24-0a48-8c52-e76df6254a9c"
] | addison@a587bc9e-4a24-0a48-8c52-e76df6254a9c |
a7dcfa2045ab95010df4273dd18f2fdae51b4b72 | 32f0212af6c615868940f44b2e57686f9d755d57 | /Judge/BaekjoonOnline/baekjoon5582.cpp | c3230da0da72122723938b59a22b26213c993856 | [] | no_license | micMalloc/Algorithm | 9aa3c47b492fe7be2239a14501aac4fd9efc5a47 | 766626bea64af6c681803efc153eaf23a7c305a2 | refs/heads/master | 2021-06-11T18:42:35.917637 | 2020-07-01T15:25:48 | 2020-07-01T15:25:48 | 93,248,063 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 840 | cpp | #include <iostream>
#include <algorithm>
#define _BUFSIZE 4001
using namespace std;
int dp[_BUFSIZE][_BUFSIZE];
int LCS (string str1, string str2) {
int max_length;
int len1, len2;
len1 = str1.length();
len2 = str2.length();
max_length = 0;
for (int i = 0; i <= max(len1, len2); ++ i) {
... | [
"hesue615@naver.com"
] | hesue615@naver.com |
93ad8979f335cc3fb89e410a3ea99ee9d6cc0068 | 2cc9e5f2faf6016243e63fa43aff8725c0b41260 | /Assignments/Solutions/Assign6_Q3.cpp | f96064dd07e76e7bd8744d784e104eb8e794d1df | [] | no_license | prakharshreyash/DSA_Uplift_Project | 3e16f8c4a2433647e8ec0e28c644027f40282900 | 100316efca135f7fcb8b30c42f105b5c664952df | refs/heads/master | 2023-08-03T10:35:39.512939 | 2021-09-11T02:38:18 | 2021-09-11T02:38:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 790 | cpp | #include <bits/stdc++.h>
using namespace std;
int binarySearch(int arr[], int low, int high, int x)
{
while (low <= high)
{
int mid = (low + high) / 2;
if (arr[mid] == x)
return mid;
else if (arr[mid] > x)
high = mid - 1;
else
low = mid + 1;
}
}
string isKSortedArray(int a... | [
"noreply@github.com"
] | noreply@github.com |
6f0e1ba6c37becfb3e245d6bdf0970cb1cb3ebf8 | c47c254ca476c1f9969f8f3e89acb4d0618c14b6 | /datasets/tensorflow-1.0.1/tensorflow/compiler/tf2xla/kernels/gather_op.cc | b98d3864790ea24e8c80c2c7e0c083a4a9ad1acf | [
"BSD-2-Clause",
"Apache-2.0"
] | permissive | yijunyu/demo | 5cf4e83f585254a28b31c4a050630b8f661a90c8 | 11c0c84081a3181494b9c469bda42a313c457ad2 | refs/heads/master | 2023-02-22T09:00:12.023083 | 2021-01-25T16:51:40 | 2021-01-25T16:51:40 | 175,939,000 | 3 | 6 | BSD-2-Clause | 2021-01-09T23:00:12 | 2019-03-16T07:13:00 | C | UTF-8 | C++ | false | false | 4,105 | cc | /* Copyright 2017 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or a... | [
"y.yu@open.ac.uk"
] | y.yu@open.ac.uk |
32e97d2a8e4c4f972fce948a89ea06be137b385e | b030fcd33d6960af0e5d0d4ddc0c5b12d9ec3fcb | /Invader2.cpp | bb6de4b8ac63d6c0462e20a6f6f8ddb4a4ce64b1 | [] | no_license | Jun1981/C-- | 43e147becb5d1fb49a589d4e0a87a62e4add08c4 | e1ce08ed7d9280a38e15f1fcb6494e7faef10652 | refs/heads/master | 2021-01-13T01:35:51.485086 | 2014-07-16T15:04:39 | 2014-07-16T15:04:39 | null | 0 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 24,298 | cpp | /************************************
* *
* シューティングゲームループ *
* *
************************************
*/
//------ インクルードファイルの読み込み ------//
#include "../DxLib/DxLib.h"
#include<windows.h>
#include<time.h>
#include <stdlib.h>
#define kazu 100
#define ... | [
"j1981_1@nifty.com"
] | j1981_1@nifty.com |
5a267f97801b8a5b7b62faa3504c109215cf731d | 4b078004300df75077b85531a0b030b62d93058d | /pentevo/unreal/Unreal/wldr_pro.cpp | a41700e72c8a5c81818e63f732e78b588f9a5117 | [] | no_license | fromGoogleCode/zx-evo-fpga | 551932681cd1a997ef9d64e3eda68e376d4a5536 | aa70245c677cd3adb1ce9881213b6b2cb7a5766a | refs/heads/master | 2021-01-25T07:34:09.654849 | 2015-01-25T23:09:22 | 2015-01-25T23:09:22 | 32,766,483 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,459 | cpp | #include "std.h"
#include "emul.h"
#include "vars.h"
#include "util.h"
static const u8 sn0[] = { 1, 2, 3, 4, 9 };
static const u8 sn[] = { 1, 2, 3, 4, 5 };
void FDD::format_pro()
{
newdisk(80, 2);
for (unsigned c = 0; c < cyls; c++)
{
for (unsigned h = 0; h < 2; h++)
{
t... | [
"EARL@localhost"
] | EARL@localhost |
c994446f7fea0c480df3954ff41e860dfceaf84d | c2755e421e716a2e30b61c3b2ebfeaed99118f17 | /Library/Il2cppBuildCache/Android/arm64-v8a/il2cppOutput/Assembly-CSharp_Attr.cpp | d6d4bbcce8e7ab99bdd8b676e8adcd92755abe3e | [] | no_license | phunghocong/Shooting-Birds | cb7b7a7f02c40252bb61778d92e9a1e0a752d291 | 9def07452788b044bf67e428ff341a6c232acad3 | refs/heads/master | 2023-07-19T23:42:04.991614 | 2021-09-08T12:57:36 | 2021-09-08T12:57:36 | 404,345,174 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 38,029 | cpp | #include "pch-cpp.hpp"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <limits>
#include <stdint.h>
// System.Char[]
struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34;
// System.Type[]
struct TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755;
// System.Reflection.Bin... | [
"phunghocong@gmai.com"
] | phunghocong@gmai.com |
668fb7878605745fb407174d3ce55eb8376d7b07 | 1371149539079f7ce890f4450131f4b651697d8c | /gateway/S_message.h | c81e30e2496220721fc8ecf3c1af9da533f13770 | [] | no_license | shred444/homesensornetwork | 3aa9e8de24c3258a09ad8d118a70da4238978f3a | 365da1edc33314b1cb651a7e504806df30673c20 | refs/heads/master | 2021-01-10T03:49:45.651124 | 2016-02-18T02:44:45 | 2016-02-18T02:44:45 | 51,885,259 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 730 | h | /*
Copyright (C) 2011 J. Coliz <maniacbug@ymail.com>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
version 2 as published by the Free Software Foundation.
*/
#ifndef __S_MESSAGE_H__
#define __S_MESSAGE_H__
// STL headers
// C headers
//... | [
"shred444@gmail.com"
] | shred444@gmail.com |
cc18754473a4909d8ee3752be1bc3d6e56fe1e1a | 4ffa82dfd1b6cf9c34c16ab0e70d292cc2615502 | /Mega_Man_Requiem/Motor2D/j1Fonts.h | 60799ebd9d159820fe4f371c7f9cbeb8b9b06946 | [] | no_license | lFreecss/Mega-Man-Requiem | 1e0fb150e1576d0554e397309b972c79fa983558 | 4c38971991366812e955e5578d486485cc742839 | refs/heads/master | 2021-08-30T11:50:15.549110 | 2017-12-17T20:40:00 | 2017-12-17T20:40:00 | 108,882,913 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 810 | h | #ifndef __j1FONTS_H__
#define __j1FONTS_H__
#include "j1Module.h"
#include "SDL\include\SDL_pixels.h"
#define DEFAULT_FONT "fonts/Mega_Man_2.ttf"
#define DEFAULT_FONT_SIZE 12
struct SDL_Texture;
struct _TTF_Font;
class j1Fonts : public j1Module
{
public:
j1Fonts();
// Destructor
virtual ~j1Fonts();
// Called... | [
"d.valdiviamartinez@gmail.com"
] | d.valdiviamartinez@gmail.com |
62d90597285e2635e57a6b67874f02a740a05d98 | e6148031b471d952dbf1615d05eb47013591216f | /code/20190323/K_zayin.cpp | d6aa19034e0065bab177090b0d3fb27d490e96d6 | [] | no_license | Dafenghh/Training_Summary | 1bdc2a3efaf5dd8e71f9c4a566c4245727769c57 | c38f8d2062a87ead98cf65f3255a5960351f6002 | refs/heads/master | 2021-06-03T11:49:03.488574 | 2020-02-09T16:19:53 | 2020-02-09T16:19:53 | 144,736,350 | 5 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 809 | cpp | #include<bits/stdc++.h>
#define maxn 10005
using namespace std;
int n,m;
int pos[maxn];
int d[maxn],D[maxn];
queue<int> q;
bool cmpd(int i,int j) {
return d[i]<d[j];
}
bool cmpD(int i,int j) {
return D[i]>D[j];
}
int main() {
scanf("%d%d",&n,&m);
while (m--) {
int u,v;
scanf("%d%d",&u,&v);
++d[u],++d[v];
... | [
"xudafeng88@qq.com"
] | xudafeng88@qq.com |
e11351b3d2a0d4c93edac27afa14279615e54bad | b123b9b5241f88acc5715b85311ae0546d6856d3 | /30_days_tutorial/day_01_data_types.cpp | aa5bb485f0aa0b7334d93b783664cd4542843715 | [
"MIT"
] | permissive | clebsonc/hackerrank | de0a599611938ee8b0e200668b1613adee94dfac | 48076b3e294a2b61b2879b9b06a641b1cca86f44 | refs/heads/master | 2020-09-17T11:41:07.363483 | 2018-10-02T23:14:25 | 2018-10-02T23:14:25 | 67,635,736 | 0 | 0 | null | 2017-03-25T18:03:15 | 2016-09-07T19:09:08 | C++ | UTF-8 | C++ | false | false | 453 | cpp | #include <iostream>
#include <iomanip>
#include <limits>
using namespace std;
int main() {
int i = 4;
double d = 4.0;
string s = "HackerRank ";
cout << setprecision(1) << fixed;
int a=0;
float b=0.0;
string c;
cin >> a;
cin >> b;
cin.clear();
cin.ignore(numeric_limits<int>... | [
"clebsondm@gmail.com"
] | clebsondm@gmail.com |
965d58b00f7d06ed8fcbf7a27cc8d7970ea4e980 | e90bb6a20665f2b875e047f12bd05839c2396c5d | /blasius_laminar_github/7.6/uniform/functionObjects/functionObjectProperties | e0863d863bb6bda7e0ea0131bdad395f895a7cc4 | [] | no_license | fluidko/laminar_BL_OpenFOAM | 5dabd283090720211ef819367bd92109df068105 | c3e0bf11355d723ed47a3712e121d48edb4e8c92 | refs/heads/master | 2023-03-16T14:30:33.059718 | 2020-06-16T01:59:58 | 2020-06-16T01:59:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 897 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v1906 |
... | [
"tong011@e.ntu.edu.sg"
] | tong011@e.ntu.edu.sg | |
eb48f5c505238ab6a694cbdd3703481b79027aed | 4e44e0eb828c8501999d6e4101c8335d67ddfd70 | /Crimsonite/Crimsonite/source/render/FrameBuffer.h | 7b5e49a72b4e8ead77af1f909409125bbeb2b48a | [
"MIT"
] | permissive | Fletcher-Morris/Crimsonite-Engine | 2cd846285bfba4105db9c3d4deb629a7ce66d1c1 | e07a8183e50def61f1ff4e8dc83c3a72e78d0699 | refs/heads/master | 2021-03-06T01:04:24.836720 | 2019-05-24T08:07:04 | 2019-05-24T08:07:04 | 246,167,870 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 700 | h | #pragma once
#include <string>
class Texture;
class FrameBuffer
{
public:
FrameBuffer() {};
// The ID of this FrameBuffer.
unsigned int FrameBufferId = 0;
// Set the linked Texture.
void SetTexture(Texture * _tex) { m_linkedTex = _tex; }
Texture * GetLinkedTexture() { return m_linkedTex; }
// The ID of ... | [
"odmoandtheboy@gmail.com"
] | odmoandtheboy@gmail.com |
652b79eba0641f33273a024f9512e5be3fcafc6b | 85a7482cbe28d780b7fb465dafb0159c028ab93d | /Serial/huffmanUtil.cpp | 9bd81e74a44daa8bc4cd446b06dcd30ede2a85e7 | [] | no_license | namitapradhan26/GPUProject | 906fdffc57900ed4cff56267d1e05836a198eebd | d5ccb499cf681bca501deef3962a88589ede3a85 | refs/heads/master | 2022-04-11T05:12:11.361438 | 2020-03-26T01:23:55 | 2020-03-26T01:23:55 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 644 | cpp | #include "huffmanUtil.h"
#include <stdio.h>
using namespace std;
bool confirmOverwrite(string filename) {
if (!fileExists(filename)) {
return true;
} else {
char option;
cout << "File already exists. Overwrite ? (y/n): ";
cin >> option;
if(option == 'y'|| option == 'Y') return true;
return false;... | [
"apatil@bender.engr.ucr.edu"
] | apatil@bender.engr.ucr.edu |
72fcf0d662662d8ab7c4770deb98634b78a46abf | 69791b4d2cd92b0f3b2b7dddbaeb5fc63c245f7f | /include/ThreadPool.h | 5c3fac174cd6c654131e8bf3b2cc60e0e60aff11 | [] | no_license | checkking/http | 891c339540fa8b528bd4d9626bec6d0f9d32a4eb | c129a7ad0fa1992f79d3d55f34ed0182ef2740c1 | refs/heads/master | 2021-01-15T23:53:31.816175 | 2016-02-23T10:42:58 | 2016-02-23T10:42:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 940 | h | #pragma once
#include <atomic>
#include <condition_variable>
#include <functional>
#include <future>
#include <memory>
#include <mutex>
#include <queue>
#include <thread>
#include <vector>
namespace Yam {
namespace Http {
class ThreadPool {
public:
using Work = std::function<void()>;
ThreadPool(int capacity... | [
"ymarcov@gmail.com"
] | ymarcov@gmail.com |
92368ca8b69d55ea5d906cf8b27ac2b1dd66efbe | 7926b330515aa573a810ed9cb298c3de93b007f9 | /陈磊贡献/桥.cpp | 0262888a9f9c819f221489722c3a9524472ee71c | [] | no_license | laijirong/NOIP-C-files | 6f1dceae364e41625f3a4ef0e3897ef1c731d0fe | 951af9aa0b287a8c169b6ba03d618ba8ba2e0ae2 | refs/heads/master | 2020-04-20T11:38:00.485181 | 2019-06-16T03:00:55 | 2019-06-16T03:00:55 | 168,822,282 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,033 | cpp | #include<cstdio>
using namespace std;
int n,m,zy,red;
int used[2010],map[2010][2010],pos[2010][2010];
struct ss
{
int dfn,low;
} Tarjan[2010];
void search(int a,int b)
{
zy++;
Tarjan[a].dfn=Tarjan[a].low=zy;
for(int i=1;i<=n;i++)
if(map[a][i]!=0&&i!=b)
{
if(used[i]==0)
{
pos[a][i]=1;
u... | [
"laijirong@outlook.com"
] | laijirong@outlook.com |
c0da411f61ed1758776fd5033619581b1b94b795 | 4457206d4f05e3bdc1f60f35f3e7b34eaa5c7ab1 | /Tracker/Struck/Tracker.h | a211bc2ecc1264480dfbe1af6df809e4a70f9089 | [] | no_license | huzexi/MTM | bf155fd02e48ae89bc0c39d8e6da8d9c15b02f9c | a0af9671406ccfd343fa3996c987fd335ff68346 | refs/heads/master | 2022-06-26T14:57:25.013469 | 2018-10-24T05:28:49 | 2018-10-24T05:28:49 | 154,443,524 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,747 | h | /*
* Struck: Structured Output Tracking with Kernels
*
* Code to accompany the paper:
* Struck: Structured Output Tracking with Kernels
* Sam Hare, Amir Saffari, Philip H. S. Torr
* International Conference on Computer Vision (ICCV), 2011
*
* Copyright (C) 2011 Sam Hare, Oxford Brookes University, Oxfo... | [
"44811199+huzexi@users.noreply.github.com"
] | 44811199+huzexi@users.noreply.github.com |
fc5ff8f730a85abb682fe4a4ef8afe6afe3beda6 | 89966523ae85f02e2bcc0b33d0c2f63f736b3377 | /milk.cpp | 4fd168c3732ee5057d043ec6e9fdbe46d670b40f | [] | no_license | dibyatanoy/Competitive_Programming | fb19382719ed60156f1501ffe485d8fb5b637f86 | a2818f96bcdfc2da577415b2dc02f29acd0c5b2b | refs/heads/master | 2021-01-15T15:31:02.471777 | 2016-07-20T02:46:12 | 2016-07-20T02:46:12 | 44,463,929 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 857 | cpp | /*
ID: dibyapo2
LANG: C++
TASK: milk
*/
#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <vector>
#include <fstream>
using namespace std;
struct data{
int rate;
int amount;
bool operator <(const data &p)const{
return rate<p.rate;
}
};
int main()... | [
"noreply@github.com"
] | noreply@github.com |
a7b809e20abc170e84f3e1b2dea8d44f332bf0f3 | 03f037d0f6371856ede958f0c9d02771d5402baf | /graphics/VTK-7.0.0/Interaction/Widgets/vtkPolyLineWidget.cxx | c7e7b703b64ca13caf919a7f94e60c1e1bf92821 | [
"BSD-3-Clause"
] | permissive | hlzz/dotfiles | b22dc2dc5a9086353ed6dfeee884f7f0a9ddb1eb | 0591f71230c919c827ba569099eb3b75897e163e | refs/heads/master | 2021-01-10T10:06:31.018179 | 2016-09-27T08:13:18 | 2016-09-27T08:13:18 | 55,040,954 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,015 | cxx | /*=========================================================================
Program: Visualization Toolkit
Module: vtkPolyLineWidget.cxx
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
Thi... | [
"shentianweipku@gmail.com"
] | shentianweipku@gmail.com |
c7cc7f7f3cbb97845300049b984787c6ae6ef905 | a29f5a6eb5eb2bd562868c179248e63223039699 | /VideoSource.h | 76d5168a5abac2c839477382f38b2c65734fdde3 | [] | no_license | omar-Fouad/gptam | 115d5ef96780675d300fbb277883d2bc78cdd3b4 | 0cd9f9de5d749b33d9e05206d243d76b3ce89ff4 | refs/heads/master | 2022-04-02T08:10:33.039810 | 2020-01-26T18:57:46 | 2020-01-26T18:57:46 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 894 | h | // -*- c++ *--
// Copyright 2008 Isis Innovation Limited
//
// VideoSource.h
// Declares the VideoSource class
//
// This is a very simple class to provide video input; this can be
// replaced with whatever form of video input that is needed. It
// should open the video input on construction, and provide two
// funct... | [
"terzakig@hotmail.com"
] | terzakig@hotmail.com |
ab32465c7cfa09b1b9b1fa49a8cb7eafb73fc388 | f8e700a629111fa551ea4be7fad5b3d9c76d2903 | /Lib/pch.h | b6bee0b10e5eaed762222fbb219c1187f52dea5a | [
"MIT"
] | permissive | GihanSoft/NaturalStringComparer-cpp | 4dec4d39ff2e6a43e8e8b7a03c20f2b2b233f0e7 | 8e32e370233eac09f28e8bc2b14d6de026ef6ccf | refs/heads/master | 2020-04-01T07:43:31.423691 | 2019-09-30T18:43:58 | 2019-09-30T18:43:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 629 | h | // pch.h: This is a precompiled header file.
// Files listed below are compiled only once, improving build performance for future builds.
// This also affects IntelliSense performance, including code completion and many code browsing features.
// However, files listed here are ALL re-compiled if any one of them is upda... | [
"chief.mb1976@gmail.com"
] | chief.mb1976@gmail.com |
403c3bb52ac204f0b8cbbb00f4d3f24de68fbc7d | a1abe87ee9e276ba60d26a63378c4ea3e35d7517 | /Source/Test/ISpriteRenderTestUtils/IMPL/Utils/RenTextureUtils.h | 3adcc52e22028502b87b1a93a0c4a7fd2feea5af | [] | no_license | AlexeyOgurtsov/SpriteRender | c3b1f855c4f869d3b60091a048beecf270577908 | f3eb9945dbc1f059fd0b0398ffc5557f7c086f13 | refs/heads/master | 2020-03-30T23:29:59.105528 | 2019-02-14T08:05:01 | 2019-02-14T08:05:01 | 151,702,572 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,534 | h | #pragma once
#include <d3d11.h>
#include <cassert>
#include <cstdlib>
#include "Exception.h"
#include "RenHRUtils.h"
#include "../../Utils/TexelColor.h"
#include "../../Utils/MathUtils.h"
namespace Test::IMPL
{
/**
* Returns true if the given MIP-level of the fiven texture is filled with the given color.
*
* @NOTE:... | [
"alexey_eng@mail.ru"
] | alexey_eng@mail.ru |
56c895cb903c31011a3362a70adb6a57390b158a | 362895164b21bb1c378896c5a6a9d0711ada3aeb | /1.2.cpp | 828d6739e1dadaa3520274cea6f5841b04907701 | [] | no_license | SanityTR/Lab.Raboti | e6223f2d8b75d93d9ccc11820e7959fd6c56911e | cba975d044e6b2b6272fa574e66fb18b8223ae97 | refs/heads/main | 2023-06-10T01:21:48.294840 | 2021-07-01T13:56:16 | 2021-07-01T13:56:16 | 382,049,306 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 758 | cpp | #include <iostream>
#include <iomanip>
using namespace std;
int main()
{
int a[3][3]; float d;
cout << "Enter matrix:" << endl;
for (int i = 0; i < 3; i++)
{
for (int j = 0; j < 3; j++)
cin >> a[i][j];
cout << "Enter next string" << endl;
}
cout << e... | [
"noreply@github.com"
] | noreply@github.com |
c3c6f621cedaec2059854a25266c52b8030e52aa | 256d43ee1fa529120a27fbbf5673242afa3cc672 | /BurstBollons.h | 037b82c5383d25048d05b780494dc54fdf857881 | [] | no_license | qian2729/leetcodecpp | 1a3a03093996fc7b9ab66a1d7892d4116008fad1 | a340f5450feec509e6155274f7733aa09e367868 | refs/heads/master | 2016-09-14T11:51:10.141864 | 2016-05-04T13:30:18 | 2016-05-04T13:30:18 | 58,054,260 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 977 | h | //
// Created by 刘宗前 on 16/4/23.
//
#ifndef LEETCODE_BURSTBOLLONS_H
#define LEETCODE_BURSTBOLLONS_H
#include <vector>
using namespace std;
class Solution {
public:
int maxCoins(vector<int>& nums) {
int n;
int r;
vector<int> new_num;
new_num.push_back(1);
for(int i = 0; i <... | [
"qian2729@163.com"
] | qian2729@163.com |
8d7be7456873cfdd26ba2535661c6ddabceee716 | dc57d617393613a8e99cb793a9ce3bf45620a7a0 | /CExercises17/Exercises01_6.cpp | fec703b0128557be1eec988e314ebe1a0adf73ed | [] | no_license | tfcpanda/cBaseExercises | 147e1dceff8a905a763bb4cc210692d73998460b | aeb89e194b3da8c8d8185db883be3ddf258bdcf1 | refs/heads/master | 2022-08-27T21:26:11.679189 | 2020-05-21T13:03:55 | 2020-05-21T13:03:55 | 258,239,920 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 396 | cpp | #include<stdio.h>
int main()
{
int num, n, a[99], m = 0;
scanf("%d %d", &num, &n);
for(int i = 0;i < 99; i++)
{
if(num%n > 9)
{
a[i] = num%n + 55;
}
else
{
a[i] = num%n;
}
m++;
num = num/n;
if(num == 0)
{
break;
}
}
for(int j = m-1; j >= 0; j--)
{
if(a[j] > 9)
{
... | [
"tfcpanda@outlook.com"
] | tfcpanda@outlook.com |
d12f73a28fb770de5a8b63ea1eb7f01742280666 | 4c958d966495f7886c89b101f65cf968712139ef | /DNSServer/tags/ver_1.0_CName/tags/v1.0/DNSServer/include/ServerException.h | d81aed0453383d60f6509f1df27a51a2cdd1c86a | [] | no_license | van76007/SecureDNS | 94ca27e1aa37f7b6537961ee6293138e8879af51 | db8df79c85aa8d5cec94e8c48cfe201ee49f4e33 | refs/heads/master | 2016-09-06T10:21:21.873168 | 2015-01-25T08:34:26 | 2015-01-25T08:34:26 | 29,673,454 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,117 | h | /**
* @file
* @author snu <snu@csis.mu>
*
* @brief Header file for logging initialization
*
* @section Description
* Initializes the logging framework log4cxx.
* Implemented as a simple function.
*
*/
#ifndef NameServer_INITLOGGING_H
#define NameServer_INITLOGGING_H
#include <log4cxx/logstring.h>
#include <... | [
"vanvu7609@gmail.com"
] | vanvu7609@gmail.com |
e9f21578d175d23c982903df5ac2c283ed333e2f | 69fda66cf52605e59dd8a212176612bb8956f947 | /ECEC622/HW8/CUDA_Gaussian_elim/gauss_eliminate_gold.cpp | 9df728e1c59beb5ff54acfdf286445151733e86e | [] | no_license | skore11/ECEC622 | a30c42485e737b067dbe79efc4e25851319cc509 | c31cdcf40b7d2ac6dfef8ad69eb3b4bff3ec3e8c | refs/heads/main | 2023-08-29T06:10:38.861099 | 2021-11-16T17:28:06 | 2021-11-16T17:28:06 | 428,751,530 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,282 | cpp | #include <stdio.h>
#include <stdlib.h>
extern "C" int compute_gold(float*, const float*, unsigned int);
int compute_gold(float* U, const float* A, unsigned int matrix_dim)
{
unsigned int i, j, k;
float pivot;
/* Copy contents of the A matrix into the U matrix */
for (i = 0; i < matrix_dim; i ++)
for(j = ... | [
"abishek110790@gmail.com"
] | abishek110790@gmail.com |
f8584f8c17f5e50cb37e2b164ec5bacae6699119 | 17adb0e72c9dd190124a8d21171d9c8fcb23e333 | /ui/CxRun/LocalServer.cpp | e17bf8499e918278d74eb11f53fe96b8d51fdc75 | [
"MIT"
] | permissive | jafo2128/SuperCxHMI | 16dc0abb56da80db0f207d9194a37258575276b5 | 5a5afe2de68dc9a0c06e2eec945a579467ef51ff | refs/heads/master | 2020-04-01T16:30:20.771434 | 2016-02-06T00:40:53 | 2016-02-06T00:40:53 | 48,529,344 | 1 | 0 | null | 2015-12-24T06:45:45 | 2015-12-24T06:45:45 | null | GB18030 | C++ | false | false | 11,784 | cpp | // LocalServer.cpp: implementation of the CLocalServer class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "LocalServer.h"
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////... | [
"qinyong99@126.com"
] | qinyong99@126.com |
0456ee44af672fe4811c2362655e1809bf829dda | a6bab4e28684d6bc235599cc2a1bdf1086f99e3b | /addnewuser.h | cb73d254d50625b09fbb97d4cffcdc669a5fa87f | [] | no_license | vinnadipo09/bullet | a23554b32b19d9df398577e5bf600a5fc5314986 | 7d0b0735a5589e7adfe9e592d7a5fe3638a777e4 | refs/heads/master | 2023-01-02T05:15:46.347540 | 2020-10-27T12:46:36 | 2020-10-27T12:46:36 | 274,897,927 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,173 | h | #ifndef ADDNEWUSER_H
#define ADDNEWUSER_H
#include <QDialog>
#include<QFileDialog>
#include"debugger.h"
#include"verifynewuser.h"
#include"databaseconnection.h"
#include"viewuser.h"
namespace Ui {
class AddNewUser;
}
class AddNewUser : public QDialog
{
Q_OBJECT
public:
explicit AddNewUser(QWidget *parent, lo... | [
"vinnadipo09@gmail.com"
] | vinnadipo09@gmail.com |
4bfdbccd0ddcbbe84797ab46ede2be68000aaec4 | 100e310f1a03dc8d2ce9240a9bb1659ff7c17fd5 | /src/relay.cpp | 806397f28913ed08710a60b84a0f40bb3db58e37 | [
"MIT"
] | permissive | rafaelbds04/esp-rtc-timer | 761688974fdb2b7937b13cc28483341bee95af39 | 5b674a65d60e1593822003ebb11ad2252debbd7e | refs/heads/master | 2023-07-05T16:11:53.634690 | 2021-08-20T17:09:21 | 2021-08-20T17:09:21 | 397,473,178 | 1 | 0 | null | 2021-08-18T21:55:15 | 2021-08-18T04:34:04 | HTML | UTF-8 | C++ | false | false | 1,595 | cpp | #include <iostream>
#include <sstream>
#include <time.h>
#include "rtc.h"
#include "relay.h"
#include "debug.h"
#include <ArduinoJson.h>
#include "local_storage.h"
bool isRelayEnable = false;
time_t getTimeUnixFromString(std::string timestr)
{
for (std::string::size_type pos = timestr.find(':'); pos != std::string... | [
"38199191+rafanel2@users.noreply.github.com"
] | 38199191+rafanel2@users.noreply.github.com |
d5cbd6b04416f6e6393c152666987d97567c58aa | 17c6cc6bcaba6a6ac0da95070a088c8bc26d82b1 | /ConfigFile.cpp | 1657b3b5b73bf5a6d3bdb3a63920dcdc12ffc287 | [] | no_license | SegaraRai/SleepPreventer | 70df36f9b08eb4e0bbf02655bbe1d55ba658bca0 | 200484e205ccb7b7685ccdc5fa2a1930a14a5d44 | refs/heads/master | 2023-01-08T00:24:15.227527 | 2020-11-10T12:38:29 | 2020-11-10T12:38:29 | 304,890,697 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,897 | cpp | #include "ConfigFile.hpp"
#include <filesystem>
#include <fstream>
#include <map>
#include <optional>
#include <shared_mutex>
#include <string>
#include <string_view>
using namespace std::literals;
ConfigFile::ConfigFile(const std::wstring& filepath) :
mFilepath(filepath)
{
Load();
}
ConfigFile::~ConfigFile() {... | [
"SegaraRai@users.noreply.github.com"
] | SegaraRai@users.noreply.github.com |
4a5f7c875335fd4d46902c3e270ad690c0b88b83 | 1c3bc2d44b9615aafd8c7a0fde1137462c76f3cd | /src/TestProject/UnitTest.cpp | 9997f8c5570d3a3945744ec420554589e54ec0ed | [] | no_license | lishenluo/writtenexam | 5c20285532aa3306294d2148e18795eca462620f | 25516032484a13e587b98db612260c8c447ab530 | refs/heads/master | 2022-03-04T15:23:31.589302 | 2019-09-12T02:27:46 | 2019-09-12T02:27:46 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,220 | cpp | #include "stdafx.h"
#include "IssueOne.h"
#include "IssueTwo.h"
#include "IssueThree.h"
#include "IssueFour.h"
#include <sqlite\sqlite3.h>
using namespace System;
using namespace System::Text;
using namespace System::Collections::Generic;
using namespace Microsoft::VisualStudio::TestTools::UnitTesting;
using namespac... | [
"lishenluo@163.com"
] | lishenluo@163.com |
02170f8123bebd2e0c035394ef702faa4ca1febe | c8b39acfd4a857dc15ed3375e0d93e75fa3f1f64 | /Engine/Source/ThirdParty/ICU/icu4c-53_1/source/common/locbased.cpp | b3d911d0edc1a66b2471fe95e5ad6fba5f1f6dee | [
"MIT",
"LicenseRef-scancode-proprietary-license",
"ICU",
"NAIST-2003",
"LicenseRef-scancode-unicode",
"BSD-3-Clause",
"LicenseRef-scancode-public-domain",
"BSD-2-Clause"
] | permissive | windystrife/UnrealEngine_NVIDIAGameWorks | c3c7863083653caf1bc67d3ef104fb4b9f302e2a | b50e6338a7c5b26374d66306ebc7807541ff815e | refs/heads/4.18-GameWorks | 2023-03-11T02:50:08.471040 | 2022-01-13T20:50:29 | 2022-01-13T20:50:29 | 124,100,479 | 262 | 179 | MIT | 2022-12-16T05:36:38 | 2018-03-06T15:44:09 | C++ | UTF-8 | C++ | false | false | 1,379 | cpp | /*
**********************************************************************
* Copyright (c) 2004-2014, International Business Machines
* Corporation and others. All Rights Reserved.
**********************************************************************
* Author: Alan Liu
* Created: January 16 2004
* Since: ICU 2.8
*****... | [
"tungnt.rec@gmail.com"
] | tungnt.rec@gmail.com |
0e17f728060da886b9253d806523b482c170fc05 | 37421acb6ab434bf46afc30fe20397892b55fd93 | /code/l3lib/include/log4cplus/hierarchylocker.h | 8a0a6837b49f35d2859ddb0c5f276adfd54c51bc | [] | no_license | achishex/thunder | cd7f78b23eaf87a83b258eb2c930d97eccbe7e81 | e07135f6c496f268c8b0b043148b9a30bcc60a64 | refs/heads/master | 2021-05-06T10:27:23.416594 | 2017-09-01T16:35:36 | 2017-09-01T16:35:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,226 | h | // -*- C++ -*-
// Module: Log4CPLUS
// File: hierarchylocker.h
// Created: 8/2003
// Author: Tad E. Smith
//
//
// Copyright 2003-2013 Tad E. Smith
//
// 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 t... | [
"“chenjiayi@tuandai.com”"
] | “chenjiayi@tuandai.com” |
3ce89347a898e9e4089d0f26a5ba347ec1cbfc66 | d1b92aabd9de5df261b8bbaf41d3495d40268dcc | /include/Tools/Shader.hpp | 997f30834b32246fd6ac75afdb13ce72d419860e | [] | no_license | yang851992774/Framework | 75be94bfe50e20ac0d38504d309effbdf8a80240 | 4d084c19167d9fa64b542145793b0a31b4f605ba | refs/heads/main | 2022-11-15T12:04:23.122250 | 2022-10-24T02:08:30 | 2022-10-24T02:08:30 | 78,084,486 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 797 | hpp | //
// Shader.hpp
// LearnOpenGL
//
// Created by Johnson on 2022/10/22.
//
#ifndef Shader_hpp
#define Shader_hpp
#include <glad/glad.h>; // 包含glad来获取所有的必须OpenGL头文件
#include <string>
#include <fstream>
#include <sstream>
#include <iostream>
class Shader
{
public:
// 程序ID
unsigned int ID;
// 构造器读取并构建... | [
"851992774@qq.com"
] | 851992774@qq.com |
2159381f664295718d166f5307e84ac13fa10c41 | ea171f38a17177eb83c10afefa63dbaf1e49ff0d | /src/integrators/pssmlt/pssmlt.h | df90c55b9c2d75b2211f9a61aab9345c54eaba59 | [
"MIT"
] | permissive | Ilinite/MiyukiRenderer | 2a08ebf4620fa03ab527617db088ae799ded11f1 | 40ed7a36ac1d71cfe112a98182fa232f446da4e2 | refs/heads/master | 2020-05-04T15:50:16.746012 | 2019-04-01T19:05:21 | 2019-04-01T19:05:21 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,635 | h | //
// Created by Shiina Miyuki on 2019/3/22.
//
#ifndef MIYUKI_PSSMLT_H
#define MIYUKI_PSSMLT_H
#include <integrators/volpath/volpath.h>
#include <samplers/mltsampler.h>
#include <integrators/mmlt/mmlt.h>
namespace Miyuki {
// Unidirectional PSSMLT only makes things worse
class PSSMLT : public VolPath {
... | [
"38184032+xt271828@users.noreply.github.com"
] | 38184032+xt271828@users.noreply.github.com |
4358b5be347d0c326ffe7e233c7ad09e798845c2 | e238869413e90ed411f63f35ce7a05f23d2d0c1b | /EveOverview.hpp | 40cbd700e13309cfbc7ec7805fd208cace21eb9d | [] | no_license | creepyfun/bro-driver | 56f9c9eee64b98edb4ea6df8e97f06938eb79d72 | ffca36e13b0ac991000ac5869f284edee76a2bfc | refs/heads/master | 2020-06-05T05:19:10.827074 | 2019-06-17T12:19:36 | 2019-06-17T12:19:36 | 192,325,980 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 378 | hpp | #include <opencv2/opencv.hpp>
#include "EveIngameWindow.hpp"
class EveWindow;
class EveOverview : public EveIngameWindow
{
public:
EveOverview( EveWindow* eveWindow,
std::string fileNameFragmentTopLeft,
std::string fileNameFragmentBottomRight,
int refreshCount, i... | [
"wsd@comec92.ru"
] | wsd@comec92.ru |
02ed5f7ae3d3942efcce0b927b38ac5955664f19 | f34b735b45f647b286a5e791ab6ea228807fd897 | /SDDD/mainwindow.h | c1c9dfa3312371a1a27401d3f74ad2b0d91bc76b | [
"MIT"
] | permissive | hux8/SDD-Project | 223ac377c3fced793f9976e72bac22ee35f2e066 | 1d589f88655f5a565f0c2efb5d60a3dd8ccc5c06 | refs/heads/master | 2020-04-02T03:07:10.046775 | 2019-03-15T17:28:53 | 2019-03-15T17:28:53 | 153,947,071 | 0 | 5 | MIT | 2019-03-15T17:28:54 | 2018-10-20T20:48:55 | C++ | UTF-8 | C++ | false | false | 725 | h | #ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include "verification.h"
#include "homepage.h"
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
public slots:
/**
* @brief veri... | [
"xingjianzhao124@gmail.com"
] | xingjianzhao124@gmail.com |
9ce326fb3cd8de81e101e7885143916b488722cc | 59e3e89b1bc840b18d804c61d06bb3e8358f2c8d | /prime-number-problems/Miller_Rabin-test.cpp | b356504b1e2b072b1037b16fe741b9806627f924 | [] | no_license | youstair/C-_algorithm | 09a5d4cded393fcba1d7471b41233365d29e9e92 | 589418170599c4f951e06182f4bf1bddb6cc2f7e | refs/heads/master | 2020-03-28T23:26:36.154353 | 2019-04-10T14:17:12 | 2019-04-10T14:17:12 | 149,291,374 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,270 | cpp | #include"stdafx.h"
#include<cstdio>
#define LL long long
//18位素数:154590409516822759
//19位素数:2305843009213693951 (梅森素数)
//19位素数:4384957924686954497
LL prime[6] = { 2, 3, 5, 233, 331 };
LL qmul(LL x, LL y, LL mod) { // 乘法防止溢出, 如果p * p不爆LL的话可以直接乘; O(1)乘法或者转化成二进制加法
return (x * y - (long long)(x / (long double)mod * y +... | [
"youstair@qq.com"
] | youstair@qq.com |
1ee83daedcdfdac9fb34b7341ec306c3361e661d | 8dc84558f0058d90dfc4955e905dab1b22d12c08 | /chrome/browser/chromeos/crostini/crostini_registry_service_unittest.cc | 195d0ce29256e3e488916b212f6b972b2a088e6d | [
"LicenseRef-scancode-unknown-license-reference",
"BSD-3-Clause"
] | permissive | meniossin/src | 42a95cc6c4a9c71d43d62bc4311224ca1fd61e03 | 44f73f7e76119e5ab415d4593ac66485e65d700a | refs/heads/master | 2022-12-16T20:17:03.747113 | 2020-09-03T10:43:12 | 2020-09-03T10:43:12 | 263,710,168 | 1 | 0 | BSD-3-Clause | 2020-05-13T18:20:09 | 2020-05-13T18:20:08 | null | UTF-8 | C++ | false | false | 13,889 | 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 "chrome/browser/chromeos/crostini/crostini_registry_service.h"
#include <stddef.h>
#include "base/macros.h"
#include "base/test/simple_test_clo... | [
"arnaud@geometry.ee"
] | arnaud@geometry.ee |
4dfecb155d67103eb9a19a79731096b895343c4d | d27ea19257497dec0988ebeb18b65ef9c9d9b911 | /branches/Emma/mezzo_lib/src/route.cpp | df00963338a3d9524c27781e97ffd213aec999ff | [] | no_license | burghout/mezzo | 4e11407b4b6a932bdc6b63ce8935f0c4f0918c51 | f0ac1ec6eb271ca8100ff6d97125c6b18413463f | refs/heads/busmezzo_test | 2022-09-28T01:36:30.802861 | 2019-02-11T17:42:26 | 2019-02-11T17:42:26 | 24,588,881 | 2 | 2 | null | 2020-11-30T14:11:40 | 2014-09-29T09:48:42 | C++ | UTF-8 | C++ | false | false | 9,531 | cpp | #include "route.h"
#include <algorithm>
#include <math.h>
#include "parameters.h"
// TEMPORARY EMMAROUTES
std::ofstream rroutes("realized_routes.txt"); // for all route debugging output
template<class T>
struct compare
{
compare(int id_):id(id_) {}
bool operator () (T* thing)
{
return (thin... | [
"wilco@be8bedfb-b93a-dc11-ad5b-00609709f61e"
] | wilco@be8bedfb-b93a-dc11-ad5b-00609709f61e |
baf84e8d30d6cdba661d528de20910139169641d | ffe36d7138244879c29b33547e0102a6a46bf8e6 | /third_party/protobuf/src/google/protobuf/extension_set_heavy.cc | 78134c59b37c22d71020732e5a70cb35b6fb64f5 | [] | no_license | randydom/webrtc_port | cba6ec533acda026556ba5737e5589f2864b908a | a9d19fa643dbb684308ae1320c71d3207965df47 | refs/heads/master | 2020-08-21T14:17:52.676597 | 2016-01-26T01:18:09 | 2016-01-26T01:18:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 19,182 | cc | // Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc. All rights reserved.
// http://code.google.com/p/protobuf/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * ... | [
"wonktnodiq@gmail.com"
] | wonktnodiq@gmail.com |
31b30f504f5cc8e48b7b712e9ea0416d40ae70f5 | 70d56762752de85a35fbb0aae0f583695472ba10 | /lib/deps/v8/src/arm/code-stubs-arm.cc | 4eb08a1eebb0d7b0145166244f28414b497f604c | [
"MIT",
"BSD-3-Clause",
"bzip2-1.0.6"
] | permissive | tempbottle/redis-v8 | e6c15046383ddd169c1a598cf1b0f34ffe389ce3 | a671b7fc0028241826373e40ddf1f7fbe90d1956 | refs/heads/master | 2021-01-15T20:44:06.403155 | 2013-12-18T22:26:07 | 2013-12-18T22:26:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 220,215 | cc | // Copyright 2012 the V8 project authors. All rights reserved.
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of ... | [
"h0x91b@gmail.com"
] | h0x91b@gmail.com |
08a8d5715ce04c218b57c309256c5b9eb1745262 | ff9bc40f14868b4f73593115c17c73cf23e34b0d | /Homework/hw11/hw11.ino | 84e22f392b622259918dd0882bceaecbbc39a02c | [] | no_license | ihansam/Semester7_CapstoneDesign_HW | 256b60db494897a8a3b0b4257420c5dfc10e4902 | eea5b0491e35681b586ee22104f0097dfdeb7fb2 | refs/heads/master | 2022-09-04T06:43:11.120201 | 2020-05-26T14:27:54 | 2020-05-26T14:27:54 | 264,071,835 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,060 | ino | // 블루투스 모듈
#include <SoftwareSerial.h>
int blueTx=11; //Tx (보내는핀 설정)
int blueRx=10; //Rx (받는핀 설정)
SoftwareSerial mySerial(blueTx, blueRx);
// 서보 모터
#include <Servo.h>
Servo servo;
int pos = 90; // 초기 각도
String myString=""; // 받는 문자열
void setup() {
Serial.begin(9600);
mySerial.begin(9600);
mySeria... | [
"ihansam@skku.edu"
] | ihansam@skku.edu |
8cfe8ed4ea8ea406c687849f0d84c91040db7547 | 43cb929bc7a4dd7b8c98a679d22fd60509ce9ed0 | /handlesettings.h | 7fc5842cd0e5f81dbbc6594eba1131d2b5aaf54f | [] | no_license | GiteZz/FolderFilter | 5de176fd1790b71d2a8107db1fe107f282c52044 | cd3548e675cb716968f80c6fa8d6e2beb661ecef | refs/heads/master | 2020-06-14T05:30:32.837817 | 2018-03-13T12:34:38 | 2018-03-13T12:34:38 | 75,227,790 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 333 | h | #ifndef HANDLESETTINGS_H
#define HANDLESETTINGS_H
#include <QString>
#include<vector>
class handleSettings
{
public:
handleSettings();
static std::vector<QString> getInfoFromTag(QString settingsFileLocation,QString tag);
static struct nameStruct readFile(std::vector<QString> location);
};
#endif // HAND... | [
"gi.ba@live.be"
] | gi.ba@live.be |
aca8e159b4000ceee44be7384401509b954ef091 | 1d42d1076ddaa08e5871326b63b8a370faacae42 | /system/controlDict~ | d8cdf378918f428156ff3c58b27bb047f43ab84f | [] | no_license | dhanvi97/OpenFOAM-Project | 6aba1036f9f867d1e6780d603f40ddab3d08559e | abf7e87a02270a3c8530e1af986ed7d6453b9cca | refs/heads/master | 2020-03-29T08:47:24.297791 | 2017-06-18T06:00:26 | 2017-06-18T06:00:26 | 94,668,278 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,253 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 4.1 |
... | [
"anantjoshi67iitb@gmail.com"
] | anantjoshi67iitb@gmail.com | |
25dfb8a716759147fffedd4e2354321463676ffc | 084006eb442b60b82b3d85d61a3b53d21c5c8855 | /shared/Arduboy/ArduboyPlaytune.cpp | 0152b6d27b1ee724a43ae7011b7889aef9ef436d | [
"XFree86-1.1",
"LicenseRef-scancode-unknown-license-reference",
"BSD-3-Clause"
] | permissive | SethRobinson/proton | 7aadcb38bc676c136dce01b8f6773fd75fa33d55 | 6b1474e75a2acf48d848c70fcb043ce8223001a9 | refs/heads/master | 2023-08-31T11:04:21.575522 | 2023-08-29T07:44:50 | 2023-08-29T07:44:50 | 142,253,855 | 81 | 31 | NOASSERTION | 2023-08-07T22:02:41 | 2018-07-25T05:55:38 | C++ | UTF-8 | C++ | false | false | 9,147 | cpp | #include "ArduboyPlaytune.h"
#include <avr/power.h>
#include "audio/audio.h"
const byte PROGMEM tune_pin_to_timer_PGM[] = { 3, 1 };
volatile byte *_tunes_timer1_pin_port;
volatile byte _tunes_timer1_pin_mask;
volatile int32_t timer1_toggle_count;
volatile byte *_tunes_timer3_pin_port;
volatile byte _tunes_tim... | [
"seth@rtsoft.com"
] | seth@rtsoft.com |
8f18feb210b239f29fca6a3f328360c5eaed1b70 | 7d0f76a3b69b1841d74dda54cd34e459c7da5aaf | /src/utils/BamTools/src/api/internal/io/TcpSocketEngine_p.h | 9218278b6342de7675528a4fdab0ddc773af9c03 | [
"MIT",
"LicenseRef-scancode-public-domain"
] | permissive | arq5x/lumpy-sv | aa313dd1dc24c5966a4347445180c9bb0fafc24a | f24085f5d7865579e390add664ebbd9383fa0536 | refs/heads/master | 2022-06-23T14:04:51.403033 | 2022-06-07T21:10:43 | 2022-06-07T21:10:43 | 6,121,988 | 285 | 127 | MIT | 2022-06-07T21:10:44 | 2012-10-08T09:09:26 | C | UTF-8 | C++ | false | false | 3,230 | h | // ***************************************************************************
// TcpSocketEngine_p.h (c) 2011 Derek Barnett
// Marth Lab, Department of Biology, Boston College
// ---------------------------------------------------------------------------
// Last modified: 8 December 2011 (DB)
// ----------------------... | [
"arq5x@virginia.edu"
] | arq5x@virginia.edu |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.