blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 6 201 | content_id stringlengths 40 40 | detected_licenses listlengths 0 26 | license_type stringclasses 2
values | repo_name stringlengths 7 95 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 57
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 197k 639M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 11
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 34
values | src_encoding stringclasses 18
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 11 9.86M | extension stringclasses 27
values | content stringlengths 11 9.86M | authors listlengths 1 1 | author stringlengths 0 70 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1b5b0ca1b85331a94e39473f100a156cef2d3336 | 7385ebf2885605dd5e2af634328d8f46355701cd | /fundamentals/constructors/MoveConstructor/src/main.cpp | 28655b73247a6769115db61c499496e7b3ce86b8 | [] | no_license | purplebrain/cplusplus | 2479df4cbb425813f776347b7f68e207ef6f28dd | b79459c763b9267fcd237a4ef03d18e3ab3dfc48 | refs/heads/master | 2021-07-21T01:34:22.130186 | 2020-04-29T05:24:20 | 2020-04-29T05:24:20 | 135,749,971 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 364 | cpp | #include <iostream>
#include <cstring>
#include "base.hpp"
using namespace std;
int
main (int argc, char *argv[])
{
BASE *ptrBase1 = new BASE(2, 2);
BASE *ptrBase2 = new BASE(4, 12);
BASE A(*ptrBase1);
BASE B(*ptrBase2);
BASE C = *ptrBase1;
C = A;
BASE D;
D = *ptrBase2;
BASE *ptr... | [
"reach4msd@gmail.com"
] | reach4msd@gmail.com |
65bb01fd63cdc1ef2d3a9f7930b7c53c165256ac | 94edd6be1b8f4a90266a88b90d3dac38e24ab62b | /Tests/TestGrid.cpp | 5d9d42ae9e1ed297dee976e11785c0bc63268531 | [] | no_license | Sidnioulz/soda-cd | b06aa2e0339e799024e77e9dabeb18840168c97d | 2aa011ef311ea01bafc6453b657554e20e2d356f | refs/heads/master | 2020-05-17T14:45:08.887722 | 2012-08-27T09:09:00 | 2012-08-27T09:09:00 | 183,770,857 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 333 | cpp | #include <QObject>
#include <QtTest/QtTest>
#include "QtTestUtil/QtTestUtil.h"
class TestGrid : public QObject {
Q_OBJECT
private slots:
void initTestCase() {
}
void cleanupTestCase() {
}
void testMyMethod() {
QCOMPARE(1, 0); // Dummy test
}
};
QTTESTUTIL_REGISTER_TEST(TestGrid);
#include "T... | [
"sdodierl@ecomundo.eu"
] | sdodierl@ecomundo.eu |
c4e1aa76a7eb18d4fa0a1e08bcff737cb838ffff | 42c31a963795a710e7e32e8f641774ff8dede780 | /src/Warp-Framework/WSocketArgs.h | 0376c8a6978dfd820bbba405d66572ddfec890a5 | [
"MIT"
] | permissive | Crasader/Warp-Framework | 5a498b2aa4a518779b4d9a8615c3574fd8de2604 | 63e3bf12711fdc11da6d6f4d526003a38ecd724b | refs/heads/master | 2021-02-28T22:43:43.630378 | 2020-02-09T07:24:15 | 2020-02-09T07:24:15 | null | 0 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 420 | h | // © 2019 NIREX ALL RIGHTS RESERVED
#ifndef _W_SOCKET_ARGS_H_
#define _W_SOCKET_ARGS_H_
#include "WEventArgs.h"
#include "WNetwork.h"
class WSocketArgs : public WEventArgs
{
public:
WSocketArgs(SOCKET sock, char* data, int len);
~WSocketArgs(void);
SOCKET Socket(void) const;
char* Data(void) const;
int Length(... | [
"Nirex.0@gmail.com"
] | Nirex.0@gmail.com |
70fff5ac7eb2b0c244383582dca0721971781f97 | 5bfff16bd43bcf16d03f42db378024333b546051 | /57_Insert_Interval.cpp | 8e63ef609406e8db467b6ae9adf3bd54945f60dc | [] | no_license | wangxiaobao1114/LeetCode | 85363e665e9d4dd0425427174ef639e3c3f82bbd | af2a164f4ff3dc714e3852752548ad803111954c | refs/heads/master | 2020-06-30T20:48:36.882539 | 2016-09-01T13:43:58 | 2016-09-01T13:43:58 | 66,353,772 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,624 | cpp | //Solution1
/**
* Definition for an interval.
* struct Interval {
* int start;
* int end;
* Interval() : start(0), end(0) {}
* Interval(int s, int e) : start(s), end(e) {}
* };
*/
class Solution {
private:
static bool cmp (const Interval& I1, const Interval& I2) {
return I1.start < I... | [
"942939879@qq.com"
] | 942939879@qq.com |
76d0b2ac234279d066f725138ea7263f727b3ea7 | 8ed7b2cb70c6e33b01679c17d0e340f11c733520 | /qt_quick_korean/ch07/main.cpp | 0f5ab2013524a37863b97740a63890ea1cbe4076 | [] | no_license | saibi/qt | 6528b727bd73da82f513f2f54c067a669f394c9a | a3066b90cbc1ac6b9c82af5c75c40ce9e845f9a2 | refs/heads/master | 2022-06-26T20:08:07.960786 | 2022-06-10T06:49:28 | 2022-06-10T06:49:28 | 88,221,337 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 583 | cpp | #include <QGuiApplication>
#include <QQmlApplicationEngine>
int main(int argc, char *argv[])
{
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
#endif
QGuiApplication app(argc, argv);
QQmlApplicationEngine engine;
const QUrl url(QStringLiteral("qrc:/circular... | [
"kimyoungmin@gmail.com"
] | kimyoungmin@gmail.com |
8e0aa218c971babfe944565d612d90037039d892 | 8c344ac41632b821bc10cf9ab04715ae182413ab | /sam3x8e_uart_2.0/src/reg_uart_cr.cpp | 14201b392c548eb25412386823e261ce73c36829 | [] | no_license | ldumez/EN_317 | dbe3a4ef9a8e84027bfcc1f3c0de6bbe8e11fe41 | 613fe3419500c81d16c3bf2edc7d2777f27547ee | refs/heads/master | 2020-03-19T00:07:16.194010 | 2018-05-30T16:14:44 | 2018-05-30T16:14:44 | 135,454,449 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 589 | cpp | #include "../include/class_reg_uart_cr.h"
class_reg_uart_cr::class_reg_uart_cr() : class_reg_32(),rstrx(0), rsttx(1),
rxen(0),rxdis(0), txen(0), txdis(0),rststa(0)
{
}
void class_reg_uart_cr::write(int data){
set_reg_value(data);
rstrx = ( data & mask_rstrx ) >> start_rstrx;
rsttx = ( data & mask_rsttx ) ... | [
"leodumez@tarine.pedago.ipb.fr"
] | leodumez@tarine.pedago.ipb.fr |
e6832ac97acbf4ac5f71fc66b14283e7a80e4e2d | 297497957c531d81ba286bc91253fbbb78b4d8be | /third_party/libwebrtc/rtc_tools/rtc_event_log_visualizer/log_simulation.cc | 034f33194592de7c88f5a466585843e6270197b0 | [
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | marco-c/gecko-dev-comments-removed | 7a9dd34045b07e6b22f0c636c0a836b9e639f9d3 | 61942784fb157763e65608e5a29b3729b0aa66fa | refs/heads/master | 2023-08-09T18:55:25.895853 | 2023-08-01T00:40:39 | 2023-08-01T00:40:39 | 211,297,481 | 0 | 0 | NOASSERTION | 2019-09-29T01:27:49 | 2019-09-27T10:44:24 | C++ | UTF-8 | C++ | false | false | 7,654 | cc |
#include "rtc_tools/rtc_event_log_visualizer/log_simulation.h"
#include <algorithm>
#include <utility>
#include "logging/rtc_event_log/rtc_event_processor.h"
#include "modules/rtp_rtcp/source/time_util.h"
#include "system_wrappers/include/clock.h"
namespace webrtc {
LogBasedNetworkControllerSimulation::Log... | [
"mcastelluccio@mozilla.com"
] | mcastelluccio@mozilla.com |
abcba77a181f464b127ff4d750e794022109b488 | c700f5d6d74f1750deff0b1de7bbe9551c18dd84 | /layouts/darknight2.h | cf82f9d0a62c04773d4d279050e5d341ebf94397 | [] | no_license | tiagoomendess/keyboard-firmware | a839ac879f41bebcdcb0797b51a60307510608d6 | 4c5ace7940f9ff726d5517e822a5b4f19cbfab45 | refs/heads/master | 2021-01-09T15:15:32.347668 | 2020-05-21T13:17:50 | 2020-05-21T13:17:50 | 242,351,918 | 0 | 0 | null | 2020-02-22T14:06:25 | 2020-02-22T14:06:24 | null | UTF-8 | C++ | false | false | 2,200 | h | // The layout has 5 rows and 12 columns.
constexpr int R = 5, C = 12;
// The row pins, to be modified according to the exact wiring.
const int row_pins[R] = { 22, 20, 18, 16, 14};
// The column pins, to be modified according to the exact wiring.
const int col_pins[C] = { 1, 2, 3, 4, 5, 6, 15, 11, 12, 9, 8, 7};
// La... | [
"macroxue1@gmail.com"
] | macroxue1@gmail.com |
4cb3554a3f7190befeeeff4461c9b2bedaae57d1 | f23fea7b41150cc5037ddf86cd7a83a4a225b68b | /SDK/BP_freckles_02_Desc_classes.h | 77146d8e9bfcb158ca64a0f0e33457ee33693107 | [] | no_license | zH4x/SoT-SDK-2.2.0.1 | 36e1cf7f23ece6e6b45e5885f01ec7e9cd50625e | f2464e2e733637b9fa0075cde6adb5ed2be8cdbd | refs/heads/main | 2023-06-06T04:21:06.057614 | 2021-06-27T22:12:34 | 2021-06-27T22:12:34 | 380,845,087 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 735 | h | #pragma once
// Name: SoT, Version: 2.2.0b
/*!!DEFINE!!*/
/*!!HELPER_DEF!!*/
/*!!HELPER_INC!!*/
#ifdef _MSC_VER
#pragma pack(push, 0x01)
#endif
namespace CG
{
//---------------------------------------------------------------------------
// Classes
//-------------------------------------------------------------... | [
"Massimo.linker@gmail.com"
] | Massimo.linker@gmail.com |
ce8722d9675b7c83efbaffb1d3bd4ea8a4c8dc53 | bcd810a6908f1d9cbf686d8f7b0312c7d5410b57 | /client/test/deletedirtest.cpp | 583240906d72633ca5cdc32ca8ced3e042d8be4c | [] | no_license | qingdy/SURDFS | a1f7e6ec27d0c507aeaf459c91d705591f740235 | 1b2f9da4e7aff64bb231ef8e387b5c8df552148f | refs/heads/master | 2016-09-11T03:33:03.418177 | 2013-09-05T02:00:49 | 2013-09-05T02:00:49 | 12,606,667 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,351 | cpp | #include <fcntl.h>
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include "client.h"
#include "blade_common_define.h"
#include "int_to_string.h"
#include "time_util.h"
#include "cthread.h"
#include "log.h"
using namespace bladestore::client;
using namespace bladestore::common;
using namespace pandora;
st... | [
"hustlijian@gmail.com"
] | hustlijian@gmail.com |
da615f41049a5a84931e1703b1b602c5156ded62 | 8d2ef01bfa0b7ed29cf840da33e8fa10f2a69076 | /code/Materials/fxLayer.cpp | 8bf0783777201b76a2ea4b918f8295aaf50cc6fe | [] | no_license | BackupTheBerlios/insane | fb4c5c6a933164630352295692bcb3e5163fc4bc | 7dc07a4eb873d39917da61e0a21e6c4c843b2105 | refs/heads/master | 2016-09-05T11:28:43.517158 | 2001-01-31T20:46:38 | 2001-01-31T20:46:38 | 40,043,333 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 372 | cpp | //---------------------------------------------------------------------------
#include "fxLayer.h"
#include "fxTextureMng.h"
//---------------------------------------------------------------------------
fxLayer::~fxLayer(void)
{
fxTextureMng * tm;
for (int i=0; i<nummaps; i++)
{
tm = (fxTextureMng*)maps[i]->... | [
"josef"
] | josef |
d9b946a2184f9c003a0f22f716d4272d231e3751 | c1f447212cb69a741ee93d57c81102490b1c1f0f | /Sortings with Pointers/Ordenacoes.cpp | 72042cef94c639bee9febec0befe28748bdb8a1c | [] | no_license | MurilloGodoi/data-structures-and-algorithms | 2db40aca3cc963e4e1332d7a2ac40a4b367a85f8 | c3ca0a92b95a87e717ddb491e64e892d8c26924f | refs/heads/master | 2023-03-31T07:39:32.744454 | 2021-03-27T03:46:32 | 2021-03-27T03:46:32 | 351,961,258 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,221 | cpp | #include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <conio.h>
#include <windows.h>
#include <string.h>
#include "funcs-ordenacoes.h"
int main() {
contato *inicio = cria_ponteiro();
int op=-9;
do {
printf("Bem vindo ao sistema de agendamento\n");
printf("Escolha 1 das opcoes a seguir:... | [
"murillogodoi13@hotmail.com"
] | murillogodoi13@hotmail.com |
f73087305e90233867dc75101b2ed481655127da | 215111e92a3dfc535ce1c1ce25a35fb6003ab575 | /prog_comp/lista_2/even.cpp | 6c657a7d8c4baab4f87df05f869248f1c96f6fa9 | [] | no_license | emanueljuliano/Competitive_Programming | 6e65aa696fb2bb0e2251e5a68657f4c79cd8f803 | 86fefe4d0e3ee09b5766acddc8c78ed8b60402d6 | refs/heads/master | 2023-06-23T04:52:43.910062 | 2021-06-26T11:34:42 | 2021-06-26T11:34:42 | 299,115,304 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 914 | cpp | #include <bits/stdc++.h>
using namespace std;
#define _ ios_base::sync_with_stdio(0);cin.tie(0);
#define endl '\n'
#define pb push_back
#define f first
#define s second
typedef pair<int, int> ii;
typedef long long ll;
const int INF = 0x3f3f3f3f;
const int MAX = 1e3+10;
int dp[MAX][MAX];
vector<int> v;
vector<int> ... | [
"emanueljulianoms@gmail.com"
] | emanueljulianoms@gmail.com |
f8179f1250d4815cec4acabb898f17f9cd355835 | 572b468a50aa4b91336c4b8b3221e629d63c8c94 | /Fruit Fly Optogenetics/src/Arduino/pulsing.ino | 75a0c96ad0a58d0061532f700fbc8f4ae6e43976 | [] | no_license | dani2002b/memory | 0c7717f6911807e94a4fc2845e38618e17b28315 | e798d883987ce655c56d09745dec7a74d35bc9f6 | refs/heads/master | 2022-11-28T07:44:06.503097 | 2019-06-19T16:38:56 | 2019-06-19T16:38:56 | 286,457,562 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,302 | ino | //
//
//
// Optogenetics stimulation 100ms pulse at 1Hz
// Inputs:
// D0 D1 D4 D5 D12 D13 A0 A1
// Corresponding outputs
// D2 D3 D6 D7 D8 D9 D10 D11
//
//
// defines for setting and clearing register bits
#ifndef cbi
#define cbi(sfr, bit) (_SFR_BYTE(sfr) &= ~_BV(bit))
#endif
#ifndef sbi
#define sbi(sf... | [
"stanislavmircic@gmail.com"
] | stanislavmircic@gmail.com |
fb7dc10d0051e1c585930dfe74c3018866d2e0b1 | e2b5b45afefbd79f3c1d1a3c411b90001ea6d7e4 | /clay-data-types/base/ClayTypeMapping.cpp | 6407f558acf845d752212a9754eda3ccaeb8aa33 | [] | no_license | cbastuck/clay | 67e2858bbec56dace425692400d2ef92ef1a1791 | 35a9f6ad582888eeddb2e5ef069d2a3b6f21086a | refs/heads/master | 2021-01-20T02:16:58.274920 | 2013-10-06T17:49:01 | 2013-10-06T17:49:01 | 2,477,137 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 852 | cpp | /**************************************************************************\
*
* This file is part of the C++ Modular Development Framework.
* Copyright (C) 2009 by Christoph Bastuck. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Gener... | [
"mail@cbastuck.de"
] | mail@cbastuck.de |
a794c8f2ce97f760ff93b1d94bde898629387b14 | f699576e623d90d2e07d6c43659a805d12b92733 | /WTLOnline-SDK/SDK/WTLOnline_Serialization_classes.hpp | efd2c84e4d3db6fb44d2fe6ef6b34864c5bb990f | [] | no_license | ue4sdk/WTLOnline-SDK | 2309620c809efeb45ba9ebd2fc528fa2461b9ca0 | ff244cd4118c54ab2048ba0632b59ced111c405c | refs/heads/master | 2022-07-12T13:02:09.999748 | 2019-04-22T08:22:35 | 2019-04-22T08:22:35 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 207 | hpp | #pragma once
// Will To Live Online (0.57) SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
#include "WTLOnline_Serialization_structs.hpp"
namespace SDK
{
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
| [
"igromanru@yahoo.de"
] | igromanru@yahoo.de |
8437cbfdfc6000d1846498e80ee6da78f9860419 | d928140089ce41dab28a512e5e7618ea77f9cf53 | /5.函数/函数的声明.cpp | f737a50af5e4e306a21c5999c91b6d0a150244a9 | [] | no_license | fafuduck/C_stu | f912b45795b48db98216b5baa88a5c450edd410c | fb367e03b3c26c6746ebb2d673b016068db47c42 | refs/heads/master | 2020-03-27T23:52:38.778737 | 2018-09-04T13:53:16 | 2018-09-04T13:53:16 | 147,354,826 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 152 | cpp | # include <stdio.h>
void f(void); //函数声明,分号不能丢掉
int main(void)
{
f();
return 0;
}
void f(void)
{
printf("哈哈!\n");
} | [
"q34556789@qq.com"
] | q34556789@qq.com |
ca5eada7baf28de4140af86465899943e4550b3c | c13fab81b572201224d2459600be2816f3241447 | /PersistentSettings.h | 09a1c9466b642204f81a396bc806b4f38a2b53d0 | [
"LicenseRef-scancode-warranty-disclaimer"
] | no_license | Overtuner/ArduinoDummyLoad | 3d76bb35855dbf024eee994d533bfcb87c041f1f | 7e7a5210432a4ee78a296c6edefce29350a85357 | refs/heads/master | 2021-01-12T19:33:27.472809 | 2015-03-21T13:29:41 | 2015-03-21T13:29:41 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,341 | h | //
// Constant Current Dummy Load
//
// Copyright Runcible Software Pty Ltd, 2015
//
#include "LoadControl.h"
#include "Display.h"
#ifndef __PERSISTENT_SETTINGS_H__
#define __PERSISTENT_SETTINGS_H__
//
// PersistentSettings is a singleton class used to
// store and retrieve the last settings used on the
// du... | [
"tom.biskupic@gmail.com"
] | tom.biskupic@gmail.com |
ec945032fc5a958489ebd2809bd2a6b01be885d7 | de3d56d96f393a4aedba93a52e5f2373ca826612 | /roborobo3/include/core/WorldModels/WorldModel.h | 3ccd6db26924cc0fa50ba4d001cc3b94bd748eac | [] | no_license | PaulEcoffet/roborobo3 | 8664c513c3f13f02c908d5892c5eb53d2961a587 | a37c0eb0c35abfe997308f2cfcc73a6ffad4d3ab | refs/heads/master | 2021-06-03T04:32:37.335816 | 2020-09-30T08:57:35 | 2020-09-30T08:57:35 | 105,661,776 | 3 | 0 | null | 2017-11-30T15:26:03 | 2017-10-03T14:30:22 | C++ | UTF-8 | C++ | false | false | 483 | h | /*
* WorldModel.h
* roborobo-online
*
* Created by Nicolas on 20/03/09.
* Copyright 2009. All rights reserved.
*
*/
#ifndef WORLDMODEL_H
#define WORLDMODEL_H
class WorldModel
{
private:
bool _isAlive; // robot behavior is executed *only* if robot is alived. (default is: alive)
public:
//Initial... | [
"nicolas.bredeche@upmc.fr"
] | nicolas.bredeche@upmc.fr |
d1cd3a39c034bce12b90095a9288400f9f591cf0 | a433ea18120bb890523f3208435a5f2be40fc927 | /53 task.cpp | 0f5a8b2d388c80d49d42b98e7d446e8c629f448d | [] | no_license | orken012/hotboi | 78b00b7ba5ecc988a31aba189b986e466825efc4 | a57af2ff796bb13788890898208e6207cfff7cee | refs/heads/master | 2020-09-13T03:26:42.177894 | 2019-11-23T08:21:38 | 2019-11-23T08:21:38 | 222,643,585 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 176 | cpp | #include<iostream>
using namespace std;
int main() {
int a, b;
cin >> a >> b;
if (a > 30 || b > 30) {
cout << "YES";
}
else {
cout << "NO";
}
return 0;
} | [
"noreply@github.com"
] | noreply@github.com |
76d8a42afe9c4b409fb9122170a8fbb1d54a1e64 | b969ef7c2e6dbc7ec223ee8a87054a9c2f736658 | /sources/Renderer/DebugLayer/DbgCommandQueue.cpp | 55dca93154e5465af50eb5cc7bacd9e7781cba76 | [
"BSD-3-Clause",
"BSD-2-Clause"
] | permissive | LukasBanana/LLGL | 186241fadbd0a3a77f3e008ca385950cce40273c | 3d3b4d708704a6b430f9240003a09faa45f8e8b8 | refs/heads/master | 2023-08-23T10:29:33.190198 | 2023-08-23T03:14:48 | 2023-08-23T03:35:03 | 62,965,106 | 1,848 | 171 | BSD-3-Clause | 2023-08-28T22:36:19 | 2016-07-09T19:10:46 | C++ | UTF-8 | C++ | false | false | 3,835 | cpp | /*
* DbgCommandQueue.cpp
*
* Copyright (c) 2015 Lukas Hermanns. All rights reserved.
* Licensed under the terms of the BSD 3-Clause license (see LICENSE.txt).
*/
#include "DbgCommandQueue.h"
#include "DbgCommandBuffer.h"
#include "DbgCore.h"
#include "../CheckedCast.h"
#include <LLGL/RenderingProfiler.h>
#include... | [
"lukas.hermanns90@gmail.com"
] | lukas.hermanns90@gmail.com |
69d3032aed16b14a802966e2ccf5d8908863ac75 | 09eac1f7d17eba6413db1a55b37f37db72d4ec66 | /src/Opposite_word.cpp | 38042d9e1bab31cad177088c23db7a6a34d3efc0 | [] | no_license | Hayk707/Opposite_word | 32599f1587ac5c15ad07e046d2004c85f082af87 | 7cb5def59553a486e90cb3deffbaace47ac20c63 | refs/heads/main | 2023-06-15T19:56:41.117055 | 2021-07-11T12:02:08 | 2021-07-11T12:02:08 | 384,744,446 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 273 | cpp | #include "Opposite.hpp"
void Opposite(){
string str = "appa";
int d = 0;
for (int i = 0; i < str.length(); i++){
if (str[i] == str[str.length() - 1 - i]){
d++;
}
}
if (d == str.length())
cout << "true";
else
cout << "false";
cout << endl;
}
| [
"haykvardazaryan2001@mail.ru"
] | haykvardazaryan2001@mail.ru |
25b93e2971c804a08af08e09f489483a9873977a | b0877b83d2ba5ab01afb99ee10028b1caa9bba47 | /src/comparison/driver.cpp | 70ede3ab3e88a20071a84364ed5afd92f978ae82 | [] | no_license | edman/karkkainen-sanders-suffix-array | 715026c123fa6a21e941016f4eed39a6dcafec5b | 2f81c437f0296f3bdc0ff0c3fa82aba4cd52b2a7 | refs/heads/master | 2020-03-26T09:48:45.866253 | 2014-11-29T14:19:36 | 2014-11-29T14:25:02 | 27,304,457 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,173 | cpp | #include <iostream>
#include <sys/time.h>
#include <cmath>
#include <cstdlib>
#include "../karkkainen_sanders.hpp"
#include "../tryall/drittel.cpp"
using namespace std;
typedef unsigned long long timestamp_t;
static timestamp_t get_timestamp () {
struct timeval now;
gettimeofday (&now, NULL);
return now... | [
"edmanjos@gmail.com"
] | edmanjos@gmail.com |
5816438ac30a4d31bd5af1492c7e5b6a4c13643a | 5a851b2d12740a9291eef29e531510b4b8be9c05 | /lib/tnl/journal.cpp | 8dc5a415fb2de845bea21ae9a7e7d0ca79cf05b6 | [] | no_license | bkconrad/sutratman | 08321bd4e39537c90a0c4a0b686ffaf131203501 | 8a8feeb349f5dd17a4f63d90e60d61aec685d5b7 | refs/heads/master | 2021-01-01T06:33:52.506069 | 2013-02-03T19:42:28 | 2013-02-03T19:42:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,519 | cpp | //-----------------------------------------------------------------------------------
//
// Torque Network Library
// Copyright (C) 2004 GarageGames.com, Inc.
// For more information see http://www.opentnl.org
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of ... | [
"conrad.bryan.k@gmail.com"
] | conrad.bryan.k@gmail.com |
d110f19779cabd3cfa2d87c58815c1874d687134 | 4a3a524ca974dcc1aa250210ffcab874a7dcbeb3 | /core/backend.h | fef5a5d5ff5403224854d6af9c66600e1e60257b | [] | no_license | navrocky/OpenTimeTracker | cdd1a15bc4ede04b203bede3c5b88e67e2ddf530 | 23f60a8e97ddd255e1c328f1bd36aa7dcf9ea5f0 | refs/heads/master | 2021-01-21T04:27:24.740194 | 2016-04-15T22:42:30 | 2016-04-15T22:42:30 | 26,034,064 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 655 | h | #pragma once
#include <QObject>
#include "connection.h"
#include "pointers.h"
namespace Core
{
namespace PMS
{
class BackendPlugin : public QObject
{
Q_OBJECT
public:
BackendPlugin(const ApplicationContextPtr& ctx, QObject* parent = 0);
virtual QString name() const = 0;
virtual QString title() cons... | [
"navrocky.vlad@gmail.com"
] | navrocky.vlad@gmail.com |
1c67c78b0b684e59ce1fa5d5cc171475aad66f64 | 2537515cb20521071934178700b95aa61c3055d1 | /gui/info_widgets/battles_attribute.cpp | 2ab5ab4fe45a4965edf91ecc408b9a144c095761 | [
"MIT"
] | permissive | TaimoorRana/Risk | 353bdff8777721f5e7d05cac0d43f44da9d3e99a | ed96461f2b87d6336e50b27a35f50946e9125c86 | refs/heads/master | 2021-09-07T15:19:41.142997 | 2018-02-24T22:46:19 | 2018-02-24T22:46:19 | 42,676,701 | 0 | 1 | MIT | 2018-02-24T22:43:41 | 2015-09-17T19:19:34 | C++ | UTF-8 | C++ | false | false | 512 | cpp | #include "battles_attribute.h"
BattlesAttribute::BattlesAttribute(Player *player)
{
this->player = player;
this->name = new QLabel(QString::fromStdString("Battles W/L:"));
this->value = new QLabel("0/0");
this->value->setAlignment(Qt::AlignRight);
this->observedUpdated();
}
void BattlesAttribute::observedUpdate... | [
"s.adam@diffingo.com"
] | s.adam@diffingo.com |
57cfb0ed715efb0d4454b047a4c44037822407a8 | 42eb41ee89f33c566bd6fc8327fac771e1a32c72 | /mod1/MyTag.cc | 3df75f7980969ae7a3d94d4eb10c7b6f2c798580 | [] | no_license | anassaeed72/ModAlgo | 5bc37649df460fc915a0566aa71be742dd748fd7 | 4fb5c8451e08965b23daee4a40f8c2e37f068a48 | refs/heads/master | 2021-01-09T20:20:08.562226 | 2016-07-28T01:29:36 | 2016-07-28T01:29:36 | 64,343,908 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,974 | cc | #include <Mytag.h>
uint32_t
MyTag::GetTagItems(void) const{
std::cout << "GetTagItems " << m_items <<"\n";
return (uint32_t)(m_items+1);
}
void
MyTag::SetTagItems(int maxItems) {
std::cout << "SetTagItems " << maxItems <<"\n";
m_items = maxItems;
}
TypeId
MyTag::GetTypeId (void)
{
static TypeId tid = TypeId... | [
"anassaeed72@gmail.com"
] | anassaeed72@gmail.com |
6416b81c73ea02ad2750a6e7d386f458ea243cd2 | 37ed723ccd19c4547661d90796c336d5250504cd | /MFC/DrawApp/DrawApp/DrawElement.cpp | f2301a8ec5e1106e844052c9d0bc5be80fe6dcf6 | [
"MIT"
] | permissive | Shpilevskiy/Lab_works | e0115b9d83173aef651b35ffc802f1f8b49aee56 | 499c0075b0424389e24aef37bd7eabf5db328eaa | refs/heads/master | 2020-01-27T10:03:44.982494 | 2017-02-16T18:57:04 | 2017-02-16T18:57:04 | 67,923,017 | 0 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 551 | cpp | // DrawElement.cpp: файл реализации
//
#include "stdafx.h"
#include "DrawApp.h"
#include "DrawElement.h"
// DrawElement
DrawElement::DrawElement()
{
}
DrawElement::~DrawElement()
{
}
// функции-члены DrawElement
CRect DrawElement::GetBoundRect()
{
CRect r(m_EnclosingRect);//конструирование
r.InflateRect(m_P... | [
"arioxon@gmail.com"
] | arioxon@gmail.com |
b2e92ec1d46040eb49b23c74b74cfacc826c1d59 | a5f1ae64d32c8241648b50e3f8555b5c057885c7 | /src-leave/Leave.hpp | 09c2bbc59326424291f6f7354b12cd3d91d346f2 | [] | no_license | rfdnl/leaveSystem | 5dc22b962079fefed5a10542c9bc41371ffe6f95 | ae8f8cf59393df835454889c39e025d35090de03 | refs/heads/master | 2020-03-14T17:36:12.391646 | 2018-05-01T14:45:56 | 2018-05-01T14:45:56 | 131,724,191 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,069 | hpp | #ifndef LEAVE_HPP_INCLUDED
#define LEAVE_HPP_INCLUDED
#include "Date.hpp"
#include <sstream>
#include <iostream>
using std::string;
class Leave{
friend istream& operator>> (istream& is, Leave& ob){
is >> ob.name >> ob.from >> ob.to >> ob.leaveType
>> ob.reason >> ob.approver >> ob.statu... | [
"noreply@github.com"
] | noreply@github.com |
eff140aa20b6e53bbb306a19023b2d655678999f | 691c9a99d1fd8b872c99a5050ad5bac469d37528 | /src/ModuleRungler.h | dba2eaa50022b87447d3a2ff0bb8ea523a142716 | [] | no_license | ChrisMicro/EquationComposer | d6aa635c8e0fa556726b4cb0217b42ef5c604eb5 | 8c8a4bc7e911f0745819ae4c51ecc9bbb244e7ea | refs/heads/master | 2020-03-27T05:17:12.014921 | 2018-11-15T17:04:13 | 2018-11-15T17:04:13 | 146,008,363 | 9 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 764 | h | /*
* +----------------------+
* | ModuleRungler |
* |----------------------|
* > frequency_input |
* > wavetable_input |
* | |
* | output >
* +----------------------+
*/
// ==========================================================================... | [
"christoph@roboterclub-freiburg.de"
] | christoph@roboterclub-freiburg.de |
ded59eeca24a2130530883e85668ea6b132a546c | 90ea2dba213f9d20907f0c6b13fe852beca2b542 | /Source/Supermarket.cpp | d490ecc8b09b68b29f33616161a435fd6e45a194 | [] | no_license | Almeida-Oco/Proj2 | 6ca75bf7575d7de5d30eae111acd13a8ff053c67 | 10c9b299635016b6249bb654dd6f70d03c447267 | refs/heads/master | 2021-01-01T03:57:08.525793 | 2016-05-24T10:42:30 | 2016-05-24T10:42:30 | 57,338,804 | 0 | 1 | null | 2016-05-13T09:27:43 | 2016-04-28T22:54:16 | C++ | UTF-8 | C++ | false | false | 5,318 | cpp | #include "..\Headers\Supermarket.h"
#include "..\Headers\Client.h"
#include "..\Headers\Product.h"
#include "..\Headers\Visualize.h"
#include "..\Headers\Bottom_10.h"
#include "..\Headers\Input_Asker.h"
#include "..\Headers\Trans.h"
using namespace std;
void Supermarket::MainMenu()
{
const int C = 1, Tr = 2, A = 3, ... | [
"intjalmeida@gmail.com"
] | intjalmeida@gmail.com |
e2dba99f6f9dd3c8ce412506550452fe8d921bca | 46d4712c82816290417d611a75b604d51b046ecc | /Samples/Win7Samples/winbase/FSRM/SampleIFilterBasedClassifier/CPP/FsrmTextReader/TextTokenizer.h | c7ece93de651d0619038da35c214bade9b0b3368 | [
"MIT"
] | permissive | ennoherr/Windows-classic-samples | 00edd65e4808c21ca73def0a9bb2af9fa78b4f77 | a26f029a1385c7bea1c500b7f182d41fb6bcf571 | refs/heads/master | 2022-12-09T20:11:56.456977 | 2022-12-04T16:46:55 | 2022-12-04T16:46:55 | 156,835,248 | 1 | 0 | NOASSERTION | 2022-12-04T16:46:55 | 2018-11-09T08:50:41 | null | UTF-8 | C++ | false | false | 2,841 | h | // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
// PARTICULAR PURPOSE.
//
// Copyright (c) Microsoft Corporation. All rights reserved
// TextTokenizer.h : Declar... | [
"chrisg@microsoft.com"
] | chrisg@microsoft.com |
5a205a78908d38793502a721baa3bc44ea5754ac | 564041bb171d026c93a05541d9a3f64d87a073c8 | /xfa/fxfa/parser/cxfa_text.cpp | cab11a68925aff6b6884e8355a2ecb450d711457 | [
"BSD-3-Clause"
] | permissive | bencoman/pdfium | 8eeefa1b539fbce90dbdc91364fa96355df40195 | f7f2673408fed485d839b13acdc8832a915edfee | refs/heads/master | 2020-03-26T01:29:53.955672 | 2018-08-11T08:47:59 | 2018-08-11T08:47:59 | 144,369,842 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 466 | cpp | // Copyright 2016 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
#include "xfa/fxfa/parser/cxfa_text.h"
#include "xfa/fxfa/parser/cxfa_node.h"... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
05878de76c118ad932f1d4aa0fca8db09c24677d | d0c44dd3da2ef8c0ff835982a437946cbf4d2940 | /cmake-build-debug/programs_tiling/function14602/function14602_schedule_17/function14602_schedule_17_wrapper.cpp | 843de9a2e5914707c848640d36b710b166146c68 | [] | no_license | IsraMekki/tiramisu_code_generator | 8b3f1d63cff62ba9f5242c019058d5a3119184a3 | 5a259d8e244af452e5301126683fa4320c2047a3 | refs/heads/master | 2020-04-29T17:27:57.987172 | 2019-04-23T16:50:32 | 2019-04-23T16:50:32 | 176,297,755 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 999 | cpp | #include "Halide.h"
#include "function14602_schedule_17_wrapper.h"
#include "tiramisu/utils.h"
#include <cstdlib>
#include <iostream>
#include <time.h>
#include <fstream>
#include <chrono>
#define MAX_RAND 200
int main(int, char **){
Halide::Buffer<int32_t> buf00(128, 64, 64);
Halide::Buffer<int32_t> bu... | [
"ei_mekki@esi.dz"
] | ei_mekki@esi.dz |
9cc8a60de5f9f3043533bb775da2a8a723874388 | 2eb9c675ac6356e94d9ffb344f3e533a55c3e873 | /spec/spec/activity/error_spec.cpp | 3f690e05cd102362823afb4ffb8a8d5f9fc8e3bf | [
"MIT"
] | permissive | mrk21/crc | 345d1ebce86d0f3dc93c9e3978e9e448914f9fa8 | e6579083220283ea942aec3351627bd4aab8f2a9 | refs/heads/master | 2021-01-22T12:08:38.912993 | 2015-03-28T10:29:05 | 2015-03-28T10:29:05 | 33,029,191 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 802 | cpp | #include <bandit/bandit.h>
#include <crc/activity/error.hpp>
#include <crc/activity/standby.hpp>
#include <crc/util.hpp>
namespace crc { namespace activity {
struct error_fixture {
error target;
activity::context context;
error_fixture(void) {
this->context.transition(&this->target, true);
... | [
"yuichi.murata.21@gmail.com"
] | yuichi.murata.21@gmail.com |
12e169ad69cb6db05c4c8615bbf1ffa7aff59e53 | 0fee7b321c1fd1ce98dba0f0f046b8b9147b9d52 | /src/entropy/BinaryEntropyDecoder.cpp | 4d08f809c67224cbe7aba87f0511d233b9aa8df2 | [
"LicenseRef-scancode-warranty-disclaimer",
"Apache-2.0"
] | permissive | flanglet/kanzi-cpp | f6cf7adbc55aae50ff1539657f5217e7d0b4617d | c1971b3fcdab29170910736603c731051b244037 | refs/heads/master | 2023-08-21T06:04:27.748947 | 2023-08-09T14:04:13 | 2023-08-09T14:04:13 | 133,185,016 | 73 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 3,790 | cpp | /*
Copyright 2011-2022 Frederic Langlet
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
you may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in ... | [
"flanglet@gmail.com"
] | flanglet@gmail.com |
2abdca482fc5bcee5f848df3969aa9d8c7baf8d9 | be54fb830685f92a4557484ba85a3cce273a0ed3 | /labs/lab1/lab1_1/ExampleList.cc | 37288394f0f7291009a5b5b3c1216c55fba4c8b5 | [] | no_license | dim005/CS14-SPRING2015 | 1a48b92ed7616f8bafbb1efe8a31e92772ca2152 | 2fcc99e4ab8cbd55919973afcb515655d14bae0a | refs/heads/master | 2021-01-15T12:26:21.173982 | 2015-05-26T14:48:46 | 2015-05-26T14:48:46 | 33,951,401 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,539 | cc | // Danny Im
// SID: 861114837
// Date: April 7th, 2015
// Approach:
#include <iostream>
using namespace std;
#include "Lab1List.h"
#include "Node.h"
/* Lab1List(); /done
Lab1List(const string&); /done
~Lab1List(); /done
Lab1List& operator+(Lab1L... | [
"dim005@ucr.edu"
] | dim005@ucr.edu |
370f9e8facea5ecd01abbb2ae5c14c219a545a06 | cb7f4e9e4be108167ba6403e30ebb15c540677f8 | /backend_t/backends/umesimd/plugins/scalar/int/UMESimdVecInt32_8.h | f0f37f19688f1216ce938905c1ed6a779fad6636 | [] | no_license | nicholasferguson/Portable_SIMD | 9aee993d97668985533625b5dce8c9b41af6167c | 2d2ec5bf89890a618759dabb59fbd9b2a989f839 | refs/heads/master | 2021-01-12T17:24:51.220527 | 2017-10-18T23:35:43 | 2017-10-18T23:35:43 | 68,247,847 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 133,312 | h | // The MIT License (MIT)
//
// Copyright (c) 2015 CERN
//
// Author: Przemyslaw Karpinski
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitati... | [
"nicholasferguson@wingarch.com"
] | nicholasferguson@wingarch.com |
411b819a7f0c5435af0f868ee672fe79975cac58 | f0c170e7daa0fdc2abec2eb6ff1b672d0f812f7b | /code/03 Demo/LibcurlHttpDemo1/Config.cpp | 232de17ba833b2c61b54de35747e0ad73476ca0b | [] | no_license | mqd520/CPlusPlusLib | 88dc22aa92e4a41ac83c0f123ff1a9c94938308e | 2ec726db5397d78d7c261ce3b4b51227a7571e66 | refs/heads/master | 2020-09-10T01:08:31.051065 | 2019-11-30T21:33:51 | 2019-11-30T21:33:51 | 221,612,262 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,161 | cpp | #include "stdafx.h"
#include "Config.h"
#include "tinyxml.h"
#include "com/Log.h"
#include "com/CommonTool.h"
#include "com/StringTool.h"
using namespace com;
Config _cfg;
Config::Config()
: strDbServiceAddr("")
, taskSleepTime(0)
{
}
void Config::Init()
{
string path = CommonTool::GetCurrentExeDir() + "Confi... | [
"1506816370@qq.com"
] | 1506816370@qq.com |
8c709a92c8bbdad0e6653647a9ed55b6fe9b3070 | 0638a58aa466086f120de471652da5d7fbd1e351 | /DIVSEQ.cpp | 6c993e185214a17cfb56602e77b5b0db15a16858 | [] | no_license | laughinging/CP | cb8aed89be7a1c0019117e569eb7e951e1b1319c | 75ddee796fa289348e98c2b53a9dc0f4bcfa166c | refs/heads/master | 2021-03-27T20:20:18.489041 | 2018-12-31T15:03:18 | 2018-12-31T15:03:18 | 96,988,352 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 425 | cpp | #include<bits/stdc++.h>
using namespace std;
int a[10010], dp[10010];
int main() {
int n;
cin >> n;
for (int i = 0; i < n; i++) {
cin >> a[i];
dp[i] = 1;
}
for (int i = 1; i < n; i++) {
for (int j = 0; j < i; j++) {
if (a[i] % a[j] == 0 && dp[j]+1 > dp[i])
... | [
"qianyunguo@gmail.com"
] | qianyunguo@gmail.com |
5273942ec470554aa9df2082d2d321618d63426b | bab9286cf922cabd712cf6f1cb0c78b1a9273761 | /mcrouter/lib/carbon/test/CarbonMessageConversionUtilsTest.cpp | ca489dd87c26e59e2c0697e2f041388fc02efad3 | [
"BSD-3-Clause"
] | permissive | jbdalido/mcrouter | 93e31d5897cd068a031cc1b21b7a0f9abab0e41a | b470980c9ef1cc9c21c66a5f9b7159c2f0bcea1d | refs/heads/master | 2020-05-23T08:15:19.251426 | 2016-10-06T01:53:48 | 2016-10-06T02:07:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,129 | cpp | /*
* Copyright (c) 2016, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
*/
#include <gt... | [
"aap@devbig510.prn1.facebook.com"
] | aap@devbig510.prn1.facebook.com |
6b2613f6ed9d4a790da19bc40aef543fa793d7bb | fa43db027ab1bc71b4b99c5c27e8614c56b1704a | /include/MotionModels/UnicycleStatePropagator.h | 8b5b6f33812f8279268b31d8e05390aed98079bb | [
"BSD-3-Clause"
] | permissive | acauligi/edpl-ompl | a9c856637239cb15c18661a959a097b2481aea75 | 674d9c0fbe09fa82ac78a36d5c2a07628a0ff17b | refs/heads/master | 2020-07-21T14:29:01.449272 | 2019-09-18T20:36:27 | 2019-09-18T20:36:27 | 206,894,876 | 0 | 0 | null | 2019-09-07T00:47:07 | 2019-09-07T00:47:06 | null | UTF-8 | C++ | false | false | 3,151 | h | /*********************************************************************
* Software License Agreement (BSD License)
*
* Copyright (c) 2014, Texas A&M University
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following condi... | [
"saurav6@gmail.com"
] | saurav6@gmail.com |
cc62f26360abe10765d8ec95fd2b6afe4dc5dc05 | b783502faf6fda33eb03575c054a198306541f81 | /PSME/common/ipmi/src/command/generic/reserve_sdr_repository.cpp | 51222722e6c470c0c352dad5608d3d8b7674ddfa | [
"LicenseRef-scancode-unknown-license-reference",
"BSD-3-Clause",
"MIT",
"JSON",
"BSL-1.0",
"Apache-2.0",
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-other-permissive"
] | permissive | intelsdi-x/intelRSD | 53f763e386de0b1cb9c50427d76943327e2b6315 | de77af174608d3b30232625e0f0e6e7cbbae8b59 | refs/heads/master | 2022-11-23T03:14:50.978516 | 2022-11-07T23:02:34 | 2022-11-07T23:02:34 | 153,187,714 | 0 | 0 | null | 2018-10-15T22:06:10 | 2018-10-15T22:06:09 | null | UTF-8 | C++ | false | false | 1,541 | cpp | /*!
* @brief Implementation of Reserve SDR Repository Request/Response.
*
* @header{License}
* @copyright Copyright (c) 2017-2018 Intel Corporation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of t... | [
"tomasz.bykowski@intel.com"
] | tomasz.bykowski@intel.com |
605ff68d13e33970d5f5496951d3b2db02605b5e | 8483830175b98ba2915d7bf90bed728bb6a4ed75 | /Examples/include/asposecpplib/system/collections/sorted_dictionary.h | b8f802b8858e951054e3f6fc1fbd26eab9a4f049 | [
"MIT"
] | permissive | kashifiqb/Aspose.PDF-for-C | 83393e3173e2d74540f7ec7904eb91fb23b13550 | 13d49bba591c5704685820185741e64a462a5bdc | refs/heads/master | 2020-08-08T11:15:23.173738 | 2019-10-09T04:41:03 | 2019-10-09T04:41:03 | 213,819,800 | 0 | 0 | MIT | 2019-10-09T04:20:06 | 2019-10-09T04:20:06 | null | UTF-8 | C++ | false | false | 6,191 | h | /// @file system/collections/sorted_dictionary.h
#ifndef _aspose_system_collections_sorted_dictionary_h_
#define _aspose_system_collections_sorted_dictionary_h_
#include "system/object.h"
#include "system/collections/base_dictionary.h"
#include "system/collections/keyvalue_collection.h"
#include "system/cycles_detecti... | [
"ali.ahmed@aspose.com"
] | ali.ahmed@aspose.com |
aea10aa0c63e3a13a0d2a9fc1bf9cae0984dd489 | d6861d96f3c4330303f3a9122d150d30ff41c390 | /NRRCalculator.cpp | 1ba7dd4edd845f7411d2960aa938e2e8598c8cb1 | [] | no_license | priyanshuguptaiitg/MiniProjects | 43e75785ccd715daa5a84ee594eef0c2ff521d6a | 7bd1f2b525a7a4b086cd7981bf7e1f62df7cac83 | refs/heads/main | 2023-04-14T20:00:37.131790 | 2021-04-29T08:33:53 | 2021-04-29T08:33:53 | 362,744,609 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,218 | cpp | //IPL NRR Calculator
// Author - Priyanshu Gupta
// Date - 25 october 2020
#include <iostream>
using namespace std;
float NRRUsual(int matches) {
float RunsConceeded, RunsScored, OversBowled, BallsBowled, OversFaced, BallsFaced, WicketsTaken, WicketsFallen;
float NRR, RC = 0, RS = 0, OF = 0, OB = 0;
... | [
"noreply@github.com"
] | noreply@github.com |
8ccaca288ba5c32e2e39e919de473e4c7eeb4953 | bdfca7d4bd6e1baf2c43e593de66fcba80afadeb | /prog-verf/assignment1/sketch-1.7.5/sketch-backend/src/SketchSolver/SolverInterfaces/MiniSATSolver.cpp | bcf12add67e503cfaf0eb97a32059080a617daeb | [
"FSFAP",
"MIT"
] | permissive | wanghanxiao123/Semester4 | efa82fc435542809d6c1fbed46ed5fea1540787e | c37ecda8b471685b0b6350070b939d01122f5e7f | refs/heads/master | 2023-03-22T06:47:16.823584 | 2021-03-15T10:46:53 | 2021-03-15T10:46:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,256 | cpp |
#include <iostream>
#include <fstream>
#include <cstdlib>
#include <cstdio>
#include <map>
#include <string>
#include <set>
#include <vector>
#include <queue>
#include "MiniSATSolver.h"
#include "Tvalue.h"
#include "CommandLineArgs.h"
#define Dout( out ) /* out */
UfunSummary* newUfun(ve... | [
"akshatgoyalak23@gmail.com"
] | akshatgoyalak23@gmail.com |
a715e52842d190fb2309033973189a178e748aa7 | e0dc744f65a4d4d08ba257d9546cf48299f95a5d | /450_DeleteNodeInABST.cpp | 7719338101db671f70af12185879d5b2fe920efd | [] | no_license | clpk8/leetcode2020 | 80bd2fe0393823c9641d1843fcf782322f50a78c | a1418df8fecec8865c8928c85072d1fd5a7a8fc3 | refs/heads/master | 2022-12-12T18:30:35.222311 | 2020-09-02T20:48:04 | 2020-09-02T20:48:04 | 264,571,714 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,271 | cpp | //
// Created by Chunbin lin on 8/31/20.
//
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode() : val(0), left(nullptr), right(nullptr) {}
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
* TreeNode(int x,... | [
"cblin@andrew.cmu.edu"
] | cblin@andrew.cmu.edu |
1f45b1753ddec4dfa8437732cf0b8d3054cad737 | 965096d993916ab4a0dff493d6f98624c48c2b49 | /src/alg.cpp | a53e22ecf35183b16a980c51d4391798ba201694 | [
"MIT"
] | permissive | magicmoremagic/bengine-core | 6cbf301825a55b15aa3968497bb3ad2d324e462d | fc9e1c309e62f5b2d7d4797d4b537ecfb3350d19 | refs/heads/master | 2021-01-13T11:31:49.174407 | 2018-09-02T00:17:50 | 2018-09-02T00:17:50 | 77,801,932 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,330 | cpp | #include "pch.hpp"
#include "alg.hpp"
#include "be.hpp"
namespace be {
namespace {
///////////////////////////////////////////////////////////////////////////////
template <std::size_t N = sizeof(std::size_t)>
struct raw_hash_constants { };
////////////////////////////////////////////////////////////////////////////... | [
"ben@magicmoremagic.com"
] | ben@magicmoremagic.com |
5bc8f50b0b1429205211657154141688949e61d8 | f4326c564205ff23a0f783742e4561f848412307 | /samples/09_tilemap/tile_sample.cpp | 7c064c3d784d90ccc08ffbb273ce98fae3f39a66 | [] | no_license | fungos/seed | d4c6ceefc9383c5f08b28316b60272a7cb52f589 | d14210f825de0f4917e112536dff20549a888975 | refs/heads/master | 2016-08-05T03:32:27.400293 | 2014-04-02T00:16:06 | 2014-04-02T00:16:06 | 14,192,190 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,768 | cpp | #include "tile_sample.h"
SceneNode *gScene;
TileSample::TileSample()
: pPlayer(nullptr)
, pCamera(nullptr)
, pMap(nullptr)
, cPres()
, vDir()
, fSpeed(5.0f)
, bLoaded(false)
{
}
TileSample::~TileSample()
{
}
bool TileSample::Initialize()
{
return cPres.Load("tile_sample.config", [&](Presentation *pres, View... | [
"fungos@gmail.com"
] | fungos@gmail.com |
f90e451e5e9f08b08e48e5c743335c60d453d6fe | a241819fff55bd11a3b0150488cb0808ef3e83a5 | /leetcode/sum-of-unique-elements/Accepted/2-14-2021, 2:37:32 PM/Solution.cpp | 9b890202118845230dd373ddfa86965c145fd1ca | [] | no_license | paulkoba/Assignments_KNU_Y2 | 289c60eae0eb0420be1037e4bfd2b4695f897cbc | 56806023e5806367713ccb6ad7d042642a496d9d | refs/heads/main | 2023-08-20T17:46:06.175683 | 2021-10-24T13:02:40 | 2021-10-24T13:02:40 | 408,717,497 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 310 | cpp | // https://leetcode.com/problems/sum-of-unique-elements
class Solution {
public:
int sumOfUnique(vector<int>& nums) {
unordered_map<int, int> a;
for(int i : nums) ++a[i];
int out = 0;
for(const auto& i : a) out += (i.second == 1) ? i.first : 0;
return out;
}
}; | [
"paul.koba@pm.me"
] | paul.koba@pm.me |
b741fa506254167b4a6c307ba9d2e0d4bbbcd86d | 379e3a9013819bb926c082eeffd0128be302913e | /Timeline/Track.h | 2526a026277a1dbc6ab2f89499df10b55726d12a | [] | no_license | TheKamouth/Gliltchlab | aa1d49ca6e78bd3ef7bbcb3e6d9e0f0e73b6aa9f | 35ae725f06b256fb0f2c699e3afe5ebb954b6354 | refs/heads/master | 2023-06-26T13:42:42.150310 | 2021-07-27T16:47:01 | 2021-07-27T16:47:01 | 366,863,144 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 777 | h | #ifndef TRACK_H
#define TRACK_H
#include "Curve.h"
#include "FlowGraph/FlowData.h"
#include "ITrackDataSequence.h"
#include <QString>
class ITrack
{
};
//template<class T>
class Track : public ITrack
{
public:
Track(QString name, FlowDataType type);
void SetType(FlowDataType);
FlowData * GetDataAtTi... | [
"camille.vaccalut@gmail.com"
] | camille.vaccalut@gmail.com |
649b5a9d4ca681d2e01b782e9f02f28948d2f479 | bb35495eda2b318c20c18c0eb2497425a4c70410 | /Alex/Ex4/CG_original.cpp | 00ebb245972c2be28bc373a2f125aaf1de7800f5 | [] | no_license | axcy0809/ManyCore | e338bd6ccca519d66ad6ed318f257198fffd398f | 4f6af1a2c463fe695197341194673ab251d29a05 | refs/heads/master | 2023-02-03T16:43:39.138073 | 2020-12-27T18:56:59 | 2020-12-27T18:56:59 | 307,646,225 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,763 | cpp | #include "poisson2d.hpp"
#include "timer.hpp"
#include <algorithm>
#include <iostream>
#include <stdio.h>
// y = A * x
__global__ void cuda_csr_matvec_product(int N, int *csr_rowoffsets,
int *csr_colindices, double *csr_values,
double *x, ... | [
"e1525882@student.tuwien.ac.at"
] | e1525882@student.tuwien.ac.at |
d558ada6183c2b132d90ba0ffe4020ccea3e7a5d | b3e5cad9422e52b5c8ed972e3189aacc3ac18616 | /priority_queue/2369 电影院.cpp | 99c05637c242a8742aa5ee556a376ccbdc105181 | [] | no_license | 123456789asdfjkl/BUAA-OJ-Project | 7a2f061581789c91b90f13768d1dd90026134ffc | d6ec35f6b165655832f0714333615b8b1819c784 | refs/heads/master | 2023-07-01T06:33:49.869797 | 2021-08-08T15:13:27 | 2021-08-08T15:13:27 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,400 | cpp | #include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<queue>
using namespace std;
pair<int,int> a[300005];
priority_queue<int> pq;
int compare(const void *A,const void *B)
{
pair<int,int> *p1=(pair<int,int>*)A;
pair<int,int> *p2=(pair<int,int>*)B;
if(p1->second<p2->second)
{
return 1;
}
else if(p1... | [
"63183399+Great-designer@users.noreply.github.com"
] | 63183399+Great-designer@users.noreply.github.com |
fed02a9266185500b8171d2a0500e547d21cab75 | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/CMake/CMake-gumtree/Kitware_CMake_repos_basic_block_block_6632.cpp | dc613ffc332a23a0c35166429cd3801e9a793fa7 | [] | no_license | niuxu18/logTracker-old | 97543445ea7e414ed40bdc681239365d33418975 | f2b060f13a0295387fe02187543db124916eb446 | refs/heads/master | 2021-09-13T21:39:37.686481 | 2017-12-11T03:36:34 | 2017-12-11T03:36:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 85 | cpp | infof(data, "found %d certificates in %s\n",
rc, SSL_CONN_CONFIG(CApath)) | [
"993273596@qq.com"
] | 993273596@qq.com |
e610cc2906b84d942badf5811537546699fc68f9 | 0b2d894b83ba7bc8015b85023bfcfec44095179b | /casoRDE_DM_osteocyte_apop/new_bc_2/172800/polyMesh/owner | dc36ddbb9aa351a7b1d7426682e3bcbe2f1d4abf | [] | no_license | lijemutu/SkullGrowthProject | 6c7eac693de31a59ac34a62a7fb362b4f2a74f29 | eb726878445dbb7e75f6c1fceb0931bf47a7c993 | refs/heads/master | 2023-05-12T10:24:14.642594 | 2021-05-31T18:23:03 | 2021-05-31T18:23:03 | 372,591,370 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 379,538 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | foam-extend: Open Source CFD |
| \\ / O peration | Version: 3.1 |
... | [
"erlowarlo@gmail.com"
] | erlowarlo@gmail.com | |
080b4e9725e2005a24aade76048ad8fcc8f9cf63 | 90cafd05dfd94f73d91716f5d0989c0e39a00034 | /ref_start/cal_again.cpp | 5ac2be5cb3989b29a709a4ae73bdc16b3f5bbb5a | [] | no_license | RayTang88/C_Code | c6a089b0404af5ce285c75b1e929cb1a98c8dae8 | c5d8d33ed7c6ba49562b6b82acef2d62b81d2f53 | refs/heads/master | 2020-04-19T15:13:03.452698 | 2019-02-03T01:21:27 | 2019-02-03T01:21:27 | 168,267,375 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 374 | cpp | /**
*Filename:
*Description:
*Author:
*Time:
*Copyright:
*/
//#include <iostream>
//using namespace std;
//
//class Person
//{
//public:
// int age = 12;
// float height = 167.5;
//};
//
//void operator+(Person & p, int a)
// {
// cout << (p.age * a) << endl;
// }
//int main()
//{
// int a =... | [
"tc251369779@163.com"
] | tc251369779@163.com |
a5bdd683a9d7e2163f0a8c37006901e16cb68657 | 02c9046641c6b26edaefcf60533a20a536f657ea | /leetcode/279_完全平方数.cpp | 0f7e26ef8dee210ea3392857428f0f1e2c62e7b4 | [] | no_license | Sumelt/Daily-Coding | ed6512c0a50c6f1ca13a5b5b05cdb2c1952bc1ee | 532b319dcec7627f94b61bfad175287612cea88b | refs/heads/master | 2021-07-13T01:19:52.358604 | 2020-05-31T09:42:02 | 2020-05-31T09:42:02 | 148,486,920 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,053 | cpp | /*----------------------------------------------------------------
* @Author: Su
* @Description:
* @Creath Date:
----------------------------------------------------------------*/
#include <iostream>
#include <vector>
#include <cassert>
#include <queue>
#include <cmath>
using namespace std;
class Solution {
pri... | [
"40728261+Sumelt@users.noreply.github.com"
] | 40728261+Sumelt@users.noreply.github.com |
0d68432674785e903f87c77d859579d3e5808cb2 | 5cedacaa6142728a698dfaf3ac3210f183a17dbe | /556A.cpp | 10df086ce6120e497d0d888c3a387efdc6389823 | [] | no_license | ismail306/Codeforces-Solution | 96adfc1f6fe30db924366d694a255e013c61a6f0 | 36885ff80d4a9a564685893ed3c37e6b00823691 | refs/heads/main | 2023-03-28T01:39:53.657168 | 2021-03-28T10:14:33 | 2021-03-28T10:14:33 | 352,290,579 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 242 | cpp | #include<iostream>
using namespace std;
int main(){
int a;
string str;
cin>>a>>str;
int z=0,o=0;
//cout<<str[0];
for(int i=0;i<str.length();i++)
{
if(str[i]=='0')
z++;
// cout<<z;
else o++;
}
cout<<abs(z-o);
}
| [
"noreply@github.com"
] | noreply@github.com |
26eb61ddbdc203638a1da8182195dab08ee756e7 | f741f2e61fd7736fea8ab100c01053cd41931404 | /apps/DisplayDemo.cpp | a942709d3c113fe5ba8741f1708de390046ca28a | [] | no_license | wsteelman/uslib | faf45b1540f4af700c2194f1a90bda4299d3c10f | 08f38ebc7ff6c8bc6462919a8eed540971da31db | refs/heads/master | 2021-05-03T14:05:37.392846 | 2013-05-02T01:20:25 | 2013-05-02T01:20:25 | 5,090,766 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 16,469 | cpp | #include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <sys/time.h>
#include <pthread.h>
#include <sched.h>
#include <GLUT/glut.h>
#include "types.h"
#include "Image.hh"
#include "ImageFactory.hh"
#include "FrameList.hh"
#include "FrameGenerator.hh"
#include "FocusMapInt.hh"
#include "FocusMapFFT.hh"
#inc... | [
"will.steelman@gmail.com"
] | will.steelman@gmail.com |
c7005f9dfd06eb9e30bc60e699f57ce4f885a36e | 57fc79c9aa8bc2cdd75681e22c809b22941d62fe | /adres.h | 55d8fbdeebafe64953c63168495d7c268b322ee1 | [] | no_license | MarinMadjarski/VsichkoDoSega | 5968dc875eab13f24815ff4dc5923a9af668770e | 39091b64d03cd2e06b7a4f7b20ccb0d9087c644a | refs/heads/master | 2020-06-26T04:43:26.458640 | 2017-07-12T12:08:42 | 2017-07-12T12:08:42 | 97,001,228 | 0 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 531 | h | /*
* adres.h
*
* Created on: 20.04.2017 ã.
* Author: user
*/
#ifndef ADRES_H_
#define ADRES_H_
#include<string>
#include<iostream>
#include<vector>
using namespace std;
class adres {
public:
adres(string,string,int);
virtual ~adres();
const string& getGrad() const;
void setGrad(const string& grad);
int... | [
"Marin.Madjarski@abv.bg"
] | Marin.Madjarski@abv.bg |
6ad9c4eeaed7251f9c3ba201fbebcfbd4f603c09 | ad1e25f475133225b12b20e34ca8f68e3c29f29c | /Samsung Academy/day5/1722.cpp | 5e712e5415baa05ca2e3edcf53a848d16c545367 | [] | no_license | ioqoo/PS | 7097b167145a84d60b0e0e05d5e859c5db64b300 | 316619ab6862de8a0e46afcd359c8281f32051a9 | refs/heads/master | 2020-11-30T12:24:51.210667 | 2020-11-22T02:14:12 | 2020-11-22T02:14:12 | 230,393,259 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 990 | cpp | #include <bits/stdc++.h>
#define MAX 205
#define ll long long
#define MOD 100000LL
using namespace std;
ll facts[21] = {1LL, };
int seq[21];
int main(){
#ifndef ONLINE_JUDGE
freopen("input.txt", "r", stdin);
#endif // ONLINE_JUDGE
int N, op;
scanf("%d %d", &N, &op);
if (N==1) {
printf("1\n");... | [
"59276856+ioqoo@users.noreply.github.com"
] | 59276856+ioqoo@users.noreply.github.com |
1bbf938430b0a13051d3a09a096cff5a775cbfb3 | 64a5bf4e81d354068bfe396dfd93e3c63d3b2294 | /samples/snippets/cpp/VS_Snippets_Data/XmlSchemaCollection.Basic/CPP/aa.cpp | 7e94a04b977b67c00210b24a4186deeb9f03c579 | [
"CC-BY-4.0",
"MIT"
] | permissive | avatarbuss/dotnet-api-docs | 7b14f1a0a71e4a4d3c85523ce5894aea7a125022 | f3030b44600c2de2df63995d96a2a6c7e66f4749 | refs/heads/master | 2022-09-17T19:15:29.173244 | 2020-04-03T14:38:00 | 2020-04-03T14:38:00 | 252,750,128 | 1 | 3 | NOASSERTION | 2020-04-03T14:06:04 | 2020-04-03T14:06:03 | null | UTF-8 | C++ | false | false | 1,114 | cpp |
//<snippet1>
#using <System.Xml.dll>
#using <System.dll>
using namespace System;
using namespace System::Xml;
using namespace System::Xml::Schema;
using namespace System::IO;
public ref class ValidXSD
{
public:
static void main()
{
XmlSchemaCollection^ sc = gcnew XmlSchemaCollection;
... | [
"noreply@github.com"
] | noreply@github.com |
0587b2d3a60305d47ee173def178d0dacda850c9 | e4f99bcc4eab404d51212dea7e12c65fba97b7e8 | /Graphs/tree.cpp | cee37a9485e168aac084b733f43bc45baa4405f1 | [] | no_license | avinashsai/Spoj | 5174e5f7045d0aa879b3359ad9fa75fb68c81e0f | 2af6d9abe501aa8523637e76ee31106f5c2ef792 | refs/heads/master | 2022-04-07T11:18:23.794536 | 2020-01-05T17:53:53 | 2020-01-05T17:53:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 920 | cpp | #include<iostream>
#include<string.h>
#include<list>
using namespace std;
int flag=0;
class graph{
long int v;
list<long int> *adj;
public:
graph(long int v);
void add_edge(long int u,long int w);
void dfs_util(long int s,bool visited[]);
void dfs();
};
graph::graph(long int v)
{
this->v=v;
adj=new list<long int>[v];
}... | [
"noreply@github.com"
] | noreply@github.com |
f0667926ed9c2da5bf4ade34083384d39ed99e75 | 3f97709f078eb32a8a981edfd23165962dbf195a | /appRepository/AppRepository.cpp | c1074913b97d941280424c015be366ad1f22ffa6 | [
"Apache-2.0"
] | permissive | chapayGhub/libsalamander | f6cf2b8efbd7c00dc82ba5c4c64b7484c855e46e | ca7c4c7b7354a49e208449dcaf664e7985509e83 | refs/heads/master | 2021-05-30T23:10:14.000498 | 2016-03-04T01:01:22 | 2016-03-04T01:01:22 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 34,556 | cpp | /*
Copyright 2016 Silent Circle, LLC
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, softw... | [
"tc@traviscross.com"
] | tc@traviscross.com |
a5d6c925612319c58b0189001f160e1363db3105 | d52d3a9f0afb4316532837a5786e487813374da2 | /apifmnc/FmncQStpTpl1NStep.h | b4dfe36d3c4c583af8ca4703ca96e840ee064e36 | [] | no_license | epsitech/fabmaniac | cf7fb7e2f8d0f0a3dd18585a3309d05d3ea622ac | 715f59ed8a80a1288119081210428fce51422d7e | refs/heads/master | 2021-01-21T04:25:33.463846 | 2016-08-07T19:25:59 | 2016-08-07T19:25:59 | 48,572,056 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,001 | h | /**
* \file FmncQStpTpl1NStep.h
* API code for table TblFmncQStpTpl1NStep (declarations)
* \author Alexander Wirthmueller
* \date created: 7 Mar 2016
* \date modified: 7 Mar 2016
*/
#ifndef FMNCQSTPTPL1NSTEP_H
#define FMNCQSTPTPL1NSTEP_H
#include <dartcore/Xmlio.h>
using namespace Xmlio;
/**
* FmncQSt... | [
"awirthm@gmail.com"
] | awirthm@gmail.com |
5988a458c7690b080916f4c8e6732925a35504c3 | 5ae3af1b2bee92fd62554776e5058c6bd42e41d6 | /glbcodebase/graphicslab/glb/scene/glbmodelfile.cpp | 4f33c2f07f5f6c72a80d6ae4a2cdf8176e2d7507 | [] | no_license | pyclyy/GraphicsLabtory | ce51d8fe1ee8d2ae153397aed703128af226fdeb | 016c5bf9ac29e5d20a0556e6d0b384758bb6e02d | refs/heads/master | 2020-03-19T16:18:35.336778 | 2018-06-09T08:15:22 | 2018-06-09T08:15:22 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 23,637 | cpp | //--------------------------------------------------------------------
// Declaration: Copyright (c), by i_dovelemon, 2016. All right reserved.
// Author: i_dovelemon[1322600812@qq.com]
// Date: 2016/06/19
// Brief: Define a interface to analysis the model file
//--------------------------------------------------------... | [
"1322600812@qq.com"
] | 1322600812@qq.com |
956ad631e5122d23254f8a0b669b590b9799c7f1 | 5a3e7db8ce370eef43d669be6d2e018edcdc7fdb | /Jianzhi/48.cpp | ec920c698ee81507ccb9d65d99331e4340bd0bf3 | [] | no_license | zhanglingfeng911/zlf_leetcode | 95904132eefb195089463dbca8f870758624ff8f | 30c8025cf87e69c0bda4584c355ccb3dcbba41f1 | refs/heads/master | 2023-06-26T01:03:44.112683 | 2021-07-29T18:04:54 | 2021-07-29T18:04:54 | 390,798,220 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,070 | cpp | //
// Created by zlf on 2021/4/4.
//
//
// Created by zlf on 2021/3/31.
//
#include<iostream>
#include <vector>
#include <climits>
#include <cstdlib>
#include <stack>
#include <algorithm>
#include <unordered_map>
#include <unordered_set>
#include <queue>
using namespace std;
typedef long long ll;
const int N = 1e5 + ... | [
"1293412373@qq.com"
] | 1293412373@qq.com |
b5bc8b92570674670de56c2e747b3f8b4f906c32 | 4b94123c25cd00397e87e48c606d0766ffc6470b | /android/cpp/datasets/allocator.cc | f0de80fdb971609ae22afc5a20300064b72b2e7d | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | unbuilt/mobile_app_open | 5f3f1cebc9878f002898ccc0819f4c51fa866fd4 | f18059810777f6602e54a80346c7f76ffdaa9c0e | refs/heads/master | 2023-07-17T10:51:37.319244 | 2021-08-31T05:29:27 | 2021-08-31T05:29:27 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,370 | cc | /* Copyright 2021 The MLPerf 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 agree... | [
"quic_mcharleb@quicinc.com"
] | quic_mcharleb@quicinc.com |
ecd45165c39dc8e911c433728943de37bb97fe19 | fc8aed949ee908be76add8a288f23fbfff8cd7c6 | /modules/arm_plugin/src/arm_converter/arm_converter_gather.cpp | f6765c4602082297f23bd85d34bd1dacad8460c7 | [
"Apache-2.0"
] | permissive | DianaLed/openvino_contrib | 90141f120a8082709c9678f98fb7b2d956dd9f3f | 02ed460050c2de364b37f5b04b8d7481161e3068 | refs/heads/master | 2023-03-22T10:54:20.460933 | 2021-03-09T12:56:15 | 2021-03-09T12:56:15 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 986 | cpp | // Copyright (C) 2020-2021 Intel Corporation
// SPDX-License-Identifier: Apache-2.0
#include <details/ie_exception.hpp>
#include <arm_compute/runtime/NEON/functions/NEGather.h>
#include "arm_converter/arm_converter.hpp"
namespace ArmPlugin {
template <> Converter::Conversion::Ptr Converter::Convert(const opset::Gat... | [
"noreply@github.com"
] | noreply@github.com |
2d0239f81201913ed8a9fb4688e9a381f1d826a2 | 92615108d8dee41f1b10a5f0152c0372ac361928 | /postProcessing/functionObjects/field/fieldValues/faceSource/faceSource.H | ec275f450fba3b8a409585940f35aac7435ad77f | [] | no_license | samech-git/foam-extend3.1_src | 81177c1167374fbbae381334849e5fc602cb4aae | 2f6e570440ec6274be4dc7e3172feaf833e09950 | refs/heads/master | 2020-11-24T05:42:23.558315 | 2019-12-14T09:28:38 | 2019-12-14T09:28:38 | 227,990,172 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,345 | h | /*---------------------------------------------------------------------------*\
========= |
\\ / F ield | foam-extend: Open Source CFD
\\ / O peration |
\\ / A nd | For copyright notice see file Copyright
\\/ M anipulation |
---------------------... | [
"sa2498331251@163.com"
] | sa2498331251@163.com |
bb3c8883f74d8932c7bdbc8fe47f4cad5594c38f | 9f81d77e028503dcbb6d7d4c0c302391b8fdd50c | /google/cloud/apigeeconnect/v1/internal/connection_tracing_stub.h | 2c975d78f2b4d33e0d50c6f603fa799fe4447d49 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | googleapis/google-cloud-cpp | b96a6ee50c972371daa8b8067ddd803de95f54ba | 178d6581b499242c52f9150817d91e6c95b773a5 | refs/heads/main | 2023-08-31T09:30:11.624568 | 2023-08-31T03:29:11 | 2023-08-31T03:29:11 | 111,860,063 | 450 | 351 | Apache-2.0 | 2023-09-14T21:52:02 | 2017-11-24T00:19:31 | C++ | UTF-8 | C++ | false | false | 2,271 | h | // Copyright 2022 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | [
"noreply@github.com"
] | noreply@github.com |
8179227a5da1b803e326ec9b503ea53a61bd05a2 | 7788d0994a8e3dae1ad7e138bcf72496a2764115 | /MyMinecraftClient/MyMinecraftClient/Scene_GamePlay.h | 24197487806f40116be737c86d8f5386361bd4a4 | [] | no_license | Oongim/MyMinecraft | f1ca9424881530913e78391d80119386b67584d5 | 4f673e5688cbd8ab30c5d9a1c27654ee3d301519 | refs/heads/main | 2023-05-31T03:50:13.198943 | 2021-03-30T10:33:52 | 2021-03-30T10:33:52 | 344,841,120 | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 923 | h | #pragma once
#include "Global.h"
#include "Object_Character.h"
#include "Objects.h"
class Scene_GamePlay:public Scene
{
private:
Object_Character* m_Player = nullptr;
std::vector<std::vector<Object_Basic*>> m_objects; //알파 블랜딩 되는 오브젝트와의 레이어 구분
float elapsedTime;
public:
enum Layer {
RGB = 0, RGBA, ADD_RGBA,
... | [
"43131702+Oongim@users.noreply.github.com"
] | 43131702+Oongim@users.noreply.github.com |
a4829a44264190d91d96aab5d3dacac0300b4575 | 4ffec5d7d9918739858437fc466278c0c23b5939 | /FLOW016.cpp | 4b89a10258b6c419f6c564b720576614a7c77a2f | [] | no_license | jamesjacobk/MyCodechefSolutions | 6c7e929fff93e7a864c8497cfef1e95c6321c7bd | 7003dc494f0af3507fc7875afb88bb227a122042 | refs/heads/master | 2020-04-05T09:55:53.441368 | 2018-09-17T03:06:10 | 2018-09-17T03:06:10 | 81,651,403 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 321 | cpp | #include <cstdio>
int gcd(int a, int b)
{
while (a != b)
{
if (a > b)
a -= b;
else
b -= a;
}
return a;
}
int FLOW016()
{
int t, a, b, gcdab;
scanf("%d", &t);
while (t--)
{
scanf("%d %d", &a, &b);
gcdab = gcd(a, b);
printf("%d %d\n", gcdab, a*b/gcdab);
}
return 0;
... | [
"jamesjacobtech@gmail.com"
] | jamesjacobtech@gmail.com |
4beb400f92dc2ff9083b9a9a3ef1841612830a26 | bb6ebff7a7f6140903d37905c350954ff6599091 | /cc/test/fake_output_surface.cc | 9c027eae60e99a14983618d636bbb3dbe7e6981f | [
"BSD-3-Clause"
] | permissive | PDi-Communication-Systems-Inc/lollipop_external_chromium_org | faa6602bd6bfd9b9b6277ce3cd16df0bd26e7f2f | ccadf4e63dd34be157281f53fe213d09a8c66d2c | refs/heads/master | 2022-12-23T18:07:04.568931 | 2016-04-11T16:03:36 | 2016-04-11T16:03:36 | 53,677,925 | 0 | 1 | BSD-3-Clause | 2022-12-09T23:46:46 | 2016-03-11T15:49:07 | C++ | UTF-8 | C++ | false | false | 4,311 | cc | // Copyright 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 "cc/test/fake_output_surface.h"
#include "base/bind.h"
#include "base/message_loop/message_loop.h"
#include "cc/output/compositor_frame_ack.h"
#... | [
"mrobbeloth@pdiarm.com"
] | mrobbeloth@pdiarm.com |
c7cfdbda49516ecbe772bd7537423ad0acba7446 | 811c910363e7a300cd15fc0f7bcd12d0d39ec79c | /.pio/libdeps/esp32dev/ESPAsync_WiFiManager/examples/Async_ESP_FSWebServer/Async_ESP_FSWebServer.ino | 44791fd60e39dc9054020ba87409867b4ebcd0c6 | [
"MIT"
] | permissive | Sistemas-embebidos/ESP32_LTE_MQTT | b738a2c7f22b9fd8c397027c64a1a951b233750a | d9d252202f05134cf31d90dbb3395bdf7145fe60 | refs/heads/main | 2023-02-23T05:57:52.789637 | 2021-01-21T20:59:56 | 2021-01-21T20:59:56 | 323,612,725 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 24,329 | ino | /****************************************************************************************************************************
Async_ESP_FSWebServer - Example WebServer with SPIFFS backend for esp8266
For ESP8266 boards
ESPAsync_WiFiManager is a library for the ESP8266/Arduino platform, using (ESP)AsyncWebServe... | [
"menendez91@live.com.ar"
] | menendez91@live.com.ar |
5f7e039f0915baa75707652a89a62cf56c1ac8fe | 688d5a8227bfd8e7e503a06b256d83f707cdb162 | /pet/pet/PetParticleGun.hh | 98fee1adf3aed5e3304017889867f3e0e29ea6d3 | [] | no_license | pavel1murat/murat | ea65ee1baf5b3335d080585b04e18d0304963097 | d76111a73a18c150e6b5218fc411a2fd05e91e10 | refs/heads/main | 2023-06-11T07:22:18.986114 | 2023-05-24T16:35:22 | 2023-05-24T16:35:22 | 118,154,861 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,268 | hh | #ifndef EventGenerator_PetParticleGun_hh
#define EventGenerator_PetParticleGun_hh
//
// Shoots a single particle gun and puts its output into a generated event.
//
// $Id: PetParticleGun.hh,v 1.2 2013/06/05 00:47:07 murat Exp $
// $Author: murat $
// $Date: 2013/06/05 00:47:07 $
//
// Original author Rob Kutschke
// Mo... | [
"murat@fnal.gov"
] | murat@fnal.gov |
e73ceace87422206339c28bbda6b487009214ed8 | bde4d419ec0d9bf3e53e8661c2272de34ec72566 | /OpenFlow/Messages/FlowRemovedDecoder.cpp | 80b71a8c66e203e908e561e5efb5d940c6de66ca | [
"BSD-3-Clause"
] | permissive | arnolmi/ROX | 0794606f13c923eef8e794249426c7a42a31766b | 96e585ea8072cc7c00c011eba14959c25948fdb0 | refs/heads/master | 2020-12-13T23:37:06.925969 | 2017-06-11T22:20:31 | 2017-06-11T22:20:31 | 53,295,720 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,193 | cpp | #include <stdint.h>
#include <arpa/inet.h>
#include "FlowRemovedDecoder.h"
namespace OpenFlow
{
namespace Messages
{
FlowRemovedDecoder::FlowRemovedDecoder(uint8_t *p_)
: HeaderDecoder(p_) {
}
FlowRemovedDecoder::FlowRemovedDecoder(FlowRemovedDecoder const &decoder) :... | [
"nim@shadowfire.org"
] | nim@shadowfire.org |
ee996770bbf29cc950d57152ffa5bfa2ddedeb38 | a1d385d9b8b885c734e266319b53cf55a7e1859f | /include/amplapi64_linux/include/ampl/ep/slice.h | b410422ed9bbf529fdb1ebc6f26b65b254002e3b | [] | no_license | jainmilan/SBS_MakefileProject | 994db5f99301fb8b60eb693d4b274fd8afdc6f07 | 725334a9614f24a1e244c142bf36cfdfbc7093ca | refs/heads/master | 2021-06-04T07:45:31.090184 | 2016-09-12T05:53:16 | 2016-09-12T05:53:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,423 | h | #ifndef AMPL_SLICE_H
#define AMPL_SLICE_H
#include "ampl/variant.h"
#include "ampl/ep/dataframe_ep.h"
#include <vector>
namespace ampl {
class DataFrame;
namespace internal {
class DataFrame;
/**
* Represents a slice (row or column) of a DataFrame.
*/
template <bool ROW>
class Slice {
friend class ampl::D... | [
"m26jain@mistral.cs.uwaterloo.ca"
] | m26jain@mistral.cs.uwaterloo.ca |
0397dd4fae70c2ee1943589f954e92da0841658b | 33fb5c834556b41512ae7ac3162c56022f981484 | /Queue/Queue using Stacks/Queue using Stacks.cpp | 698aa63c384b1bb0ad1ff1a64c1da1c9bdecd5a7 | [] | no_license | tips367/Data-Structures | 73a6915956213fbffbf075ed67469b1f9484eaec | a133511437228659b8646ffbed05f3fbffc9a0e6 | refs/heads/master | 2022-08-14T18:59:41.866085 | 2022-07-09T14:29:01 | 2022-07-09T14:29:01 | 232,938,786 | 1 | 0 | null | 2021-07-02T21:24:23 | 2020-01-10T01:20:27 | C++ | UTF-8 | C++ | false | false | 2,979 | cpp | /* We are given a stack data structure with push and pop operations, the task is to implement a queue using instances of stack data structure
and operations on them.
*/
#include <iostream>
#include <stack>
// Method 1. Enqueue operation costly
// This method makes sure that oldest entered element is always at the top... | [
"Tipu.Khan@landisgyr.com"
] | Tipu.Khan@landisgyr.com |
28acde00c64650ba1c695ca444ba4b63c42743d2 | bcf1638b755fb75e22661d9f0795c9772f228eb0 | /2018长春工业场外同步赛(低年级组)/F.cpp | 3ec793a5fbf1c5b0d36f9b6df90fe33b297fed58 | [] | no_license | JY1Lnz/Contests | d5e3746608a0bde11bc2eeb3353eceae31644c07 | ebff00cb9c964208ddda7291232101e089022cd2 | refs/heads/master | 2023-01-24T06:38:18.255903 | 2018-12-30T10:16:00 | 2018-12-30T10:16:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 624 | cpp | #include<bits/stdc++.h>
using namespace std;
int main()
{
int m,n;
cin>>m>>n;
vector<int> data;
for (int i = 0;i<m;i++)
{
int a;
cin>>a;
data.push_back(a);
}
while(n--)
{
vector<int> n_data = data;
int l,r,k,value;
cin>>l>>r>>k;
k... | [
"2522471070@qq.com"
] | 2522471070@qq.com |
bf784fb7112cac02c9f20c4ee6f2d2903107b7f6 | 604965cbab69807df7aa7e4d41cd5e1bb0d8882f | /run/pitzDailyPANS/0/p | a738ec1cfa9951ebd5de5231123a64e1869c177c | [] | no_license | HelioVillanueva/helio-3.0.x | 4cde8c94d7bf929149ab8baf729476272bfb7699 | d2bbb7d4ddaa3ec3a615836bb834ed113bc84a63 | refs/heads/master | 2020-12-22T10:19:20.517226 | 2016-11-04T13:59:30 | 2016-11-04T13:59:30 | 49,271,486 | 5 | 6 | null | null | null | null | UTF-8 | C++ | false | false | 1,275 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 3.0.x |
... | [
"helio@new-host.home"
] | helio@new-host.home | |
d82f35759aa4448937eed77e0ba3167f9928061d | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/collectd/gumtree/collectd_new_hunk_106.cpp | a1dba3f3c7d489d90283a2159c6342c6d384dcac | [] | no_license | niuxu18/logTracker-old | 97543445ea7e414ed40bdc681239365d33418975 | f2b060f13a0295387fe02187543db124916eb446 | refs/heads/master | 2021-09-13T21:39:37.686481 | 2017-12-11T03:36:34 | 2017-12-11T03:36:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 412 | cpp | int status_code = RET_UNKNOWN;
total = 0.0;
total_num = 0;
for (i = 0; i < values_num; i++)
{
if (isnan (values[i]))
{
if (!nan_is_error_g)
continue;
printf ("CRITICAL: Data source \"%s\" is NaN\n",
values_names[i]);
return (RET_CRITICAL);
}
total += values[i];
total_num++;
}
if (... | [
"993273596@qq.com"
] | 993273596@qq.com |
ef08a60d869bf9d490cd522e6ae09fca6ffd6fd5 | d688914d78d9fd8bcdd5aced71df1fdb2876ad85 | /lightoj 1141.cpp | ff0febf5772a01b59cd0c189b1bf95cbe1f0b226 | [] | no_license | IshraqNibir/Lightoj | 96d95be388f9c77656d7c0181df1660ad3521990 | 54c6ec4008ebaa8ef168873967643b5ac94795cb | refs/heads/master | 2020-04-02T10:52:38.463241 | 2019-10-27T15:18:21 | 2019-10-27T15:18:21 | 129,914,444 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,486 | cpp | #include "bits/stdc++.h"
using namespace std;
#define MAXN 1005
int spf[MAXN];
void sieve()
{
spf[1] = 1;
for (int i=2; i<MAXN; i++)
spf[i] = i;
for (int i=4; i<MAXN; i+=2)
spf[i] = 2;
for (int i=3; i*i<MAXN; i++)
{
if (spf[i] == i)
{
... | [
"noreply@github.com"
] | noreply@github.com |
07f5f6b10a144cdb1da5c348c0ef48366a935c99 | b639b0cf6f6a25f01849bd855dea61faed3e3cc3 | /structural/bridge/bridge/remotecontroller.cpp | 504a9db5dc0e826237eb37a2b4876cd97aee78dd | [] | no_license | basanets/SoftwareDesignPatterns | 8670b55f96733142ceb3baf012d204bb0b2ad413 | 46f3697ce3e273698cbcd9c5d00249c1cba097b3 | refs/heads/master | 2022-04-25T00:32:43.976611 | 2020-04-27T18:55:36 | 2020-04-27T18:55:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 566 | cpp | #include "remotecontroller.h"
#include <device.h>
RemoteController::RemoteController(Device *device)
: m_device(device)
{
}
void RemoteController::volumeUp()
{
if (m_device->isEnabled())
{
m_device->setVolume(m_device->volume() + 1);
}
}
void RemoteController::volumeDown()
{
if (m_devic... | [
"mbasanets11@gmail.com"
] | mbasanets11@gmail.com |
962d83fd00865010cc9f2d4401bdaffab269a05f | a8ca5c8fc67ff451481687530e793f64cdd9ecd2 | /src/winsys/window.hh | cfd6306d3949b0c3f380f3f877fe21087faa54bb | [
"BSD-2-Clause"
] | permissive | deurzen/kranewm | c002cfb4bf039be34d62f5eb7960249563a75f8e | be918e057c3b6f2199d23ce39d4334379165ff41 | refs/heads/master | 2022-06-23T19:33:04.951564 | 2022-06-19T21:57:39 | 2022-06-19T21:57:39 | 173,928,993 | 5 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 816 | hh | #ifndef __WINSYS_WINDOW_H_GUARD__
#define __WINSYS_WINDOW_H_GUARD__
#include <cstdlib>
namespace winsys
{
typedef std::size_t Window;
enum class IcccmWindowState
{
Withdrawn,
Normal,
Iconic
};
enum class WindowState
{
Modal,
Sticky,
MaximizedV... | [
"m.deurzen@tum.de"
] | m.deurzen@tum.de |
4eeb8f0a7af3ff33082133487b86467d5096c6b8 | 30038b35f96e2b2dfb9a0236b44b44fb7728e69a | /pup_stl.h | 89910eb936a9a5ee1df53935d0343cbd3fe3c246 | [] | no_license | guptaabhish/parallel-infosetgeneration-gametrees | 12316ec9d57d0f555c260863adab6625b397ae6f | 43e1867a85e42a8f5103c8d1eaaa9e76318c0490 | refs/heads/master | 2020-12-25T15:17:56.249130 | 2016-06-11T00:55:15 | 2016-06-11T00:55:15 | 60,884,282 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,467 | h | /*
Pup routines for STL classes.
After including this header, you can parameter-marshall
an variable consisting of STL vectors, lists, maps,
strings, or pairs.
This includes variables of type "std::list<int>", or even
"std::map<double, std::vector<std::string> >".
NOT included are the rarer types like valarray or sl... | [
"gupta59@illinois.edu"
] | gupta59@illinois.edu |
f97c7dbdbcb1c18276e3d8b97ab732fa44e16b5e | f31b8497718c5c00e233c9fb17160339fa0275e1 | /TheQuestOfTheBurningHeart/DialogInputSystem.cpp | da5504d8cb61cee7897b94a64eb8f798d4e2e841 | [] | no_license | bliou/TheQuestOfTheBurningHeart | 30a6876e80e7424dba6dd8dfa670a5ddabf4a46a | edbb98644f82fb6fcc2182b9bfc79a7fd9872bc2 | refs/heads/master | 2020-04-17T22:34:01.563921 | 2019-02-16T15:41:50 | 2019-02-16T15:41:50 | 166,999,372 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,423 | cpp | #include "DialogInputSystem.h"
#include "SkipTextComponent.h"
#include "InputManager.h"
#include "KillComponent.h"
#include "DrawableComponent.h"
DialogInputSystem::DialogInputSystem()
{
}
void DialogInputSystem::updateEvent()
{
auto entities = getEntities();
for (auto& entity : entities)
{
auto& dialogComponent... | [
"jacques.eid@gmail.com"
] | jacques.eid@gmail.com |
12a0fdedf9d10535bc5a47f4089f2249257b3267 | 67f988dedfd8ae049d982d1a8213bb83233d90de | /external/chromium/v8/src/codegen.cc | 83ac854a079259b1aaceba57a06e5465fd5d61ac | [
"BSD-3-Clause",
"bzip2-1.0.6"
] | permissive | opensourceyouthprogramming/h5vcc | 94a668a9384cc3096a365396b5e4d1d3e02aacc4 | d55d074539ba4555e69e9b9a41e5deb9b9d26c5b | refs/heads/master | 2020-04-20T04:57:47.419922 | 2019-02-12T00:56:14 | 2019-02-12T00:56:14 | 168,643,719 | 1 | 1 | null | 2019-02-12T00:49:49 | 2019-02-01T04:47:32 | C++ | UTF-8 | C++ | false | false | 6,531 | 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 ... | [
"ddavenport@google.com"
] | ddavenport@google.com |
7ceab56e25adb9192d9575eb05b3a42876433bc9 | 1d9f33ba0a16f435b2a87b660e8f1112de85763b | /src/RKExifWrapper.cpp | 6bc24c7e3c054a24c4d00cc902b3d2034b19a203 | [] | no_license | pingzheng/libhwjpeg | 44c5409bab19feabd002bbad001ead44a20008ea | fcdb88b50eb6aa5f9bbfc791d7a5037cb643a4a9 | refs/heads/master | 2023-09-02T10:09:43.402228 | 2021-11-12T11:20:56 | 2021-11-12T11:21:32 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 17,997 | cpp | /*
* Copyright 2021 Rockchip Electronics Co. LTD
*
* 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... | [
"kevin.chen@rock-chips.com"
] | kevin.chen@rock-chips.com |
a92510f82996fdd16785314d9e10cabaa9c2299a | 24ed54bc1c0f2a6cec444192d2a32cf751bcafc1 | /2020_07/2020_07_21/src/epoll_loop.cpp | 219cdb0978687b816ba4d2010e97b0d80cbf72b7 | [] | no_license | CodeHina/MyLearn | 4c0a5b8d421ad274988a35cc6a27ef1a0be6c19e | 6ae37f8c956ff3904f5144961fd0b32e10e502f8 | refs/heads/master | 2022-11-23T16:56:20.930156 | 2020-07-29T08:39:34 | 2020-07-29T08:39:34 | 268,450,243 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,837 | cpp | #include <iostream>
#include <cstring>
#include <cctype>
#include <arpa/inet.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/epoll.h>
#include <fcntl.h>
#include <unistd.h>
#include "../include/wrap_sock.h"
#define MAX_EVENTS 1024 //监听上限
#define SEVR_PORT 1234
void recv_data(int, int, void*);
void s... | [
"1398869163@qq.com"
] | 1398869163@qq.com |
66e86f643cbff06a97e07fcebb8b1b310e8f1d9b | 198788e3f399912074dae3882e02b2067450e289 | /Kame/src/Kame/Platform/DirectX12/Graphics/StructuredBuffer.cpp | 7d95268af4c681760ae062ac17b422c2319b5015 | [
"Apache-2.0"
] | permissive | keinich/Kame | c3da062591a693370c937afd4db007b00328f5da | 5fc6a15daf3d03d7bce2fd448697f323f55c3ada | refs/heads/master | 2020-07-20T07:29:49.276975 | 2020-02-29T17:37:34 | 2020-02-29T17:37:34 | 206,598,070 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,482 | cpp | #include "kmpch.h"
#include "StructuredBuffer.h"
#include "DX12Core.h"
#include "ResourceStateTracker.h"
#include <d3dx12.h>
namespace Kame {
StructuredBuffer::StructuredBuffer(const std::wstring& name)
: Buffer(name)
, m_CounterBuffer(
CD3DX12_RESOURCE_DESC::Buffer(4, D3D12_RESOURCE_FLAG_ALLOW_UNO... | [
"rafael.weschle@gmail.com"
] | rafael.weschle@gmail.com |
f5372f418280ac228ef670e88a673d73446cc0d0 | e50c0b453477dca0589e2876fbc8921968e894de | /QtCodeV2/Submissions/roanne-caoile/testmain.cpp | b7a00b670828375f649926f501963065734c0ae2 | [] | no_license | umidah/CodeChecker | 6c7840a59e7acfbe6fa48b578e8df3885f229497 | eee6beeae121ae81aa9158c628fb8a2eb1ad8864 | refs/heads/master | 2020-12-19T10:36:18.866162 | 2020-03-05T01:10:25 | 2020-03-05T01:10:25 | 235,707,385 | 1 | 1 | null | 2020-02-09T03:47:10 | 2020-01-23T02:10:09 | Java | UTF-8 | C++ | false | false | 2,100 | cpp | //io/test1.cpp
#include <iostream>
#include <iomanip>
#include <fstream>
using namespace std;
//assign ung string sa isang variable then compare
//ano metric
int main(){
string line1[30];
string line2[30];
string line3[30];
string line4[30];
string line;
int a = 0;
int b = 0;
int c = 0;
int d = 0;
int tot... | [
"46555380+umidah@users.noreply.github.com"
] | 46555380+umidah@users.noreply.github.com |
080a2db68f4d93e80aa2b7561a8f9f0e84bd812a | a6b0a3a0f4fae5d7073af87314bbfaf1f5872690 | /include/instr/parsers/syscall_parser.hpp | e6c00aaa60c935f8ba9df9716bc9f0723741d738 | [
"BSL-1.0",
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | jaller200/mips-simulator | f74e7db6b3c1339e9ef3fd3f7218d7777e519c1e | f2106f6acaf44a84b3cb305b7c8f345bf037efae | refs/heads/master | 2023-01-24T21:16:53.172652 | 2020-12-03T05:16:09 | 2020-12-03T05:16:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 988 | hpp | #pragma once
#include <string>
#include <vector>
#include "instr/instruction.hpp"
#include "instr/instruction_parser.hpp"
#include "types.hpp"
/**
* A parser for the SYSCALL (system call) instruction (opcode 0, funct 12).
*/
class SyscallParser: public InstructionParser {
public:
// MARK: -- Construction
... | [
"jonathanhart3000@gmail.com"
] | jonathanhart3000@gmail.com |
d494c58657798919f98bf59d12d706673733392b | d2e8e2f7ac6d3b71056ea79d7413e7dd7188789f | /include/ast_opt/visitor/AvoidParamMismatchVisitor.h | e86a3dcd4a7c356da30cf7661265a3ca14e49148 | [
"LicenseRef-scancode-unknown-license-reference",
"MIT"
] | permissive | moritzwinger/ABC | c92a5bfe4c3adce0fd2b453d1ef083d63a3223a0 | 2d1f507dc7188b13767cce8050b8aa9daa7c1625 | refs/heads/main | 2023-07-25T16:56:19.122849 | 2021-09-07T10:51:37 | 2021-09-07T10:51:40 | 354,754,349 | 0 | 0 | NOASSERTION | 2021-04-05T07:29:30 | 2021-04-05T07:29:29 | null | UTF-8 | C++ | false | false | 2,689 | h |
#ifndef AST_OPTIMIZER_INCLUDE_AST_OPT_VISITOR_AVOIDPARAMMISMATCHVISITOR_H_
#define AST_OPTIMIZER_INCLUDE_AST_OPT_VISITOR_AVOIDPARAMMISMATCHVISITOR_H_
#include <list>
#include <sstream>
#include <string>
#include <utility>
#include <seal/seal.h>
#include "ast_opt/runtime/RuntimeVisitor.h"
#include "ast_opt/ast/Abstra... | [
"moritzwinger1@gmail.com"
] | moritzwinger1@gmail.com |
a22f6944ff80858c779193e194b633c6b7260ced | 9a3b9d80afd88e1fa9a24303877d6e130ce22702 | /src/Providers/UNIXProviders/CompositeExtentBasedOn/UNIX_CompositeExtentBasedOn_VMS.hxx | 0b336a3ea5c964ea79bf1e2d148b6cfc33c00e88 | [
"MIT"
] | permissive | brunolauze/openpegasus-providers | 3244b76d075bc66a77e4ed135893437a66dd769f | f24c56acab2c4c210a8d165bb499cd1b3a12f222 | refs/heads/master | 2020-04-17T04:27:14.970917 | 2015-01-04T22:08:09 | 2015-01-04T22:08:09 | 19,707,296 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,827 | hxx | //%LICENSE////////////////////////////////////////////////////////////////
//
// Licensed to The Open Group (TOG) under one or more contributor license
// agreements. Refer to the OpenPegasusNOTICE.txt file distributed with
// this work for additional information regarding copyright ownership.
// Each contributor lice... | [
"brunolauze@msn.com"
] | brunolauze@msn.com |
fcc1ba4a88f5d5c2b10ab1b1bfe859d95a76a3e4 | dd629803899abbb8b6d8b4503b3591bb7eae6e73 | /include/forge/imaging/hio/types.h | 1a0fead3334f84b80357918df1b8ffa3e0c88074 | [] | no_license | furby-tm/Winggverse | 8d78bb691d2e5eecc5197845e9cbfb98f45c58bd | 0dc9db7057f52fca3e52e73491e24f298d108106 | refs/heads/main | 2023-04-21T17:32:20.350636 | 2021-04-30T04:24:30 | 2021-04-30T04:24:30 | 362,732,238 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,597 | h | #line 1 "C:/Users/tyler/dev/WINGG/forge/imaging/hio/types.h"
/*
* Copyright 2021 Forge. All Rights Reserved.
*
* The use of this software is subject to the terms of the
* Forge license agreement provided at the time of installation
* or download, or which otherwise accompanies this software in
* either electronic... | [
"tyler@tylerfurby.com"
] | tyler@tylerfurby.com |
b05d214360db8179c89dda9fa5cda25333ea10d4 | 196f8f99d6e6348a5ee24f827db1d3a09a74c6e6 | /EASYPROB/main.cpp | ad26188f91ee58ae0c4ea80a5fcd42d66f2ac344 | [] | no_license | gagan86nagpal/SPOJ-200 | a8259cb5b9eb6392589b25580ecc32c265f44736 | b7ac87787a9ec89fbf9db86493398d309efe103f | refs/heads/master | 2021-09-06T16:13:38.141265 | 2018-02-08T12:10:47 | 2018-02-08T12:10:47 | 111,628,244 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 778 | cpp | #include <iostream>
using namespace std;
int main()
{
string _1 = "2(0)";
string _2 = "2";
string _4 = "2(2)";
string _8 = "2(2+2(0))";
string _16= "2(2(2))";
string _32 = "2(2(2)+2(0))";
string _64 = "2(2(2)+2)";
string _128 ="2(2(2)+2+2(0))";
string _256="2(2(2+2(0)))";
strin... | [
"gagannagpal68@gmail.com"
] | gagannagpal68@gmail.com |
a071e4d96d4d909acbd97b2baf85f0999368f1c3 | 3cf9e141cc8fee9d490224741297d3eca3f5feff | /TypeShield Source/old/dyninst-pass/ignore/patching.cpp | 1e1c129966226358714594139ab09b4e40f0d926 | [] | no_license | TeamVault/tauCFI | e0ac60b8106fc1bb9874adc515fc01672b775123 | e677d8cc7acd0b1dd0ac0212ff8362fcd4178c10 | refs/heads/master | 2023-05-30T20:57:13.450360 | 2021-06-14T09:10:24 | 2021-06-14T09:10:24 | 154,563,655 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 13,942 | cpp | #include "patching.h"
#include "BPatch_basicBlock.h"
#include "BPatch_function.h"
#include "BPatch_point.h"
#include "BPatch_process.h"
#include "BPatch_snippet.h"
#include "Command.h"
#include "Instrumenter.h"
#include "PatchMgr.h"
#include "PatchMgr.h"
#include "Snippet.h"
#include "Snippet.h"
#include "dynC.h"
#in... | [
"dev.mor1bon@gmail.com"
] | dev.mor1bon@gmail.com |
35691cc710e12587641081a070cf02c0490a503a | 53def63a6b7260b917d406fe00694ccc58442c1d | /WebCore/platform/ScrollbarTheme.h | 888ecc2ddce48336edc3a6474ae032f8199ff754 | [] | no_license | studiomobile/webcore | b3234992d7a160c915216519d75dce053543fe5f | 16f39479a01992f2066a9879de455028575d19d6 | refs/heads/master | 2021-01-10T03:07:14.237681 | 2012-02-22T17:37:55 | 2012-02-22T17:37:55 | 2,101,948 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 4,794 | h | /*
* Copyright (C) 2008 Apple Inc. All Rights Reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions a... | [
"hoha@Hohas-Mac-Pro.local"
] | hoha@Hohas-Mac-Pro.local |
9b36ec19d42c81b44564e2b2b7738d766a91d18d | 60597b6b2139312d73a6e087107f55f028d145e8 | /AdaBoostAlgorithm.h | f811fca00839cc245e9070ebfd121a9ce2f15cd3 | [] | no_license | MichalKonradSulek/PSZT2CPP | 7f1ebed28e84f08408a800502db8ae7a8d6b6589 | 5cfb73f9166418cef006b7fa69a296a82fcebd68 | refs/heads/master | 2020-12-21T22:51:16.677133 | 2020-01-30T12:23:41 | 2020-01-30T12:23:41 | 236,590,832 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,419 | h | //
// Created by michalsulek on 29.01.2020.
//
#ifndef PSZT2_ADABOOSTALGORITHM_H
#define PSZT2_ADABOOSTALGORITHM_H
#include "Stump.h"
/** \file Stump.h
* Plik zawierający klasę z algorytmem AdaBoost.
*/
/** \class AdaBoostAlgorithm
* Klasa realizuje działanie algorytmu AdaBoost opartego na drzewach decyzyjnych o... | [
"michal2sulek@gmail.com"
] | michal2sulek@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.