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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
97f464e6544ff9ea3ddce25f2b05d00a66b6bb9d | 275ec6905a664e6d50f6f7593d62066740b241a0 | /10_9.cpp | 6c5e8a859e4e2fc4e4c0398a881a22f8c3d1ee80 | [] | no_license | huangjiahua/cppLearningFiles | 0f135624d5d7d2256e8fd55146a408170737b603 | 7000ac6111b33c880a66c2c3cc2e4f41390aff9e | refs/heads/master | 2021-09-10T15:11:48.991007 | 2018-03-28T08:57:41 | 2018-03-28T08:57:41 | 122,352,150 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 615 | cpp | #include <iostream>
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
void elimDups(vector<string> &words)
{
sort(words.begin(), words.end());
cout << words.size() << endl;
auto end_unique = unique(words.begin(), words.end());
for (vector<string>::iterator i = words.begin();... | [
"hjh4477@outlook.com"
] | hjh4477@outlook.com |
fee5b2289aea637d107aae1a3c6d6c161f7d9e5d | e98b265914ec3dbdc5eefe443505e58321ef5c00 | /third_party/WebKit/Source/web/WebSettingsImpl.cpp | deabcf8efb682a5ba9e5ce884683e1dc9699a625 | [
"LGPL-2.0-or-later",
"GPL-1.0-or-later",
"MIT",
"Apache-2.0",
"BSD-3-Clause",
"LicenseRef-scancode-warranty-disclaimer",
"LGPL-2.1-only",
"GPL-2.0-only",
"LGPL-2.0-only",
"BSD-2-Clause",
"LicenseRef-scancode-other-copyleft"
] | permissive | zhouyige/chrome4sdp | d223f33cf45889bf9437ad9614e1c414c6c37faf | a9655c8758922ec2ff07400f6be8c448749a8c64 | refs/heads/master | 2022-12-17T17:36:19.467887 | 2017-01-04T07:35:25 | 2017-01-04T07:35:25 | 78,020,809 | 0 | 1 | BSD-3-Clause | 2022-11-17T18:58:27 | 2017-01-04T14:05:31 | null | UTF-8 | C++ | false | false | 24,064 | cpp | /*
* Copyright (C) 2009 Google Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditio... | [
"zsky369369@outlook.com"
] | zsky369369@outlook.com |
552215813f79a4748a59f74c2dfffb9e66de3d01 | f35d380e37e54a73eccd3725e15f4d4ced11c70a | /Point.cpp | 24dcbef5e72085478ad99aa226112aadbecc1dee | [] | no_license | AkashAli506/Asteroids | 188e155f9849eb1f6e3206d6784ff5d82f77836c | d8b505b5388e4084b952226aab6dd067c107014c | refs/heads/master | 2021-09-08T18:14:28.006901 | 2021-09-02T04:59:41 | 2021-09-02T04:59:41 | 159,933,006 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,016 | cpp | /*
* Point.cpp
*
* Created on: Apr 28, 2018
* Author: akash
*/
#include "Point.h"
Point::Point()
{
x=0;
y=0;
}
Point::Point (double x1,double y1)
{
x=x1;
y=y1;
}
Point::Point(Point &a)
{
x=a.getX();
y=a.getY();
}
void Point::assign(double x1,double y1)
{
x=x1;
y=y1;
}
Point::~Point()
{
//cout<<"D... | [
"noreply@github.com"
] | noreply@github.com |
7b9b9c0c5f563cbecdf0b8834c39f8fc0b7cdd03 | df3e12ef111c9663d318634468e70a7f7ad322e7 | /src/engine/core/test/util/Util.hh | f87dc0694e5a54d8f61230bc28b3795bdee4526b | [
"MIT"
] | permissive | aburgm/freeisle | 6fc51933d2c4bbc50fcdd34cb5228293dacedda1 | 5175897b31e471b4cf9bc2a9be7a88f8b4201d2a | refs/heads/master | 2023-08-31T23:29:11.059159 | 2021-10-21T20:34:02 | 2021-10-21T20:34:02 | 367,865,333 | 1 | 0 | MIT | 2021-10-20T21:20:56 | 2021-05-16T11:49:08 | C++ | UTF-8 | C++ | false | false | 1,404 | hh | #pragma once
// TODO(armin): this is available in gtest post 1.10:
#define ASSERT_THROW_KEEP_AS_E(statement, expected_exception) \
std::exception_ptr _exceptionPtr; \
try { \
(stat... | [
"noreply@github.com"
] | noreply@github.com |
057f9cc1711fa5a2edab4b3c710d4370411ad304 | 53304e9a309facace5c90d17110abf6265bf9f13 | /String Algorithms/Distinct Substrings.cpp | 8bfbd37c6b90f027c712a7097bce928bafd4fbdc | [] | no_license | shankar9834/CSES-Solutions | 88d78a5d14e09da69422c6912c09f7bad9652977 | d2ea7dda34c3e68cea9e33fee4c547a625dcb493 | refs/heads/main | 2023-08-02T16:10:27.800444 | 2021-09-21T07:35:46 | 2021-09-21T07:35:46 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,408 | cpp | #include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int maxN = 1e5+5;
struct Node {
ll dp;
int len, link;
map<char,int> nxt;
} node[2*maxN];
char S[maxN];
int N, sz, last;
void init(){
node[0].len = 0;
node[0].link = -1;
sz = 1;
last = 0;
}
void extend(char c){
... | [
"jonathan.ryan.uy@gmail.com"
] | jonathan.ryan.uy@gmail.com |
11269c087f53aa5572fab9394a3c22cd36ebe592 | 1ec151d941d66910777ac6671599a9bb08d4c4eb | /inc/geometries/simple_orthogonal.h | 9d0d512cc33b570c649e23764534ebe3de2c2ee6 | [
"MIT",
"LicenseRef-scancode-other-permissive",
"Apache-2.0"
] | permissive | albertbsc/feltor | 55f294d1fb9d4e01a3e37c9cf8b20479557c0c78 | 6df8646741f95b0f5d2bcd02085f163bf5c5f19d | refs/heads/develop | 2021-01-20T02:54:58.256203 | 2017-04-26T10:19:33 | 2017-04-26T10:19:33 | 89,467,307 | 1 | 0 | null | 2017-04-26T10:12:26 | 2017-04-26T10:12:26 | null | UTF-8 | C++ | false | false | 15,907 | h | #pragma once
#include "dg/backend/grid.h"
#include "dg/backend/functions.h"
#include "dg/backend/interpolation.cuh"
#include "dg/backend/operator.h"
#include "dg/backend/derivatives.h"
#include "dg/functors.h"
#include "dg/runge_kutta.h"
#include "dg/nullstelle.h"
#include "dg/geometry.h"
#include "utilities.h"
name... | [
"Matthias.Wiesenberger@uibk.ac.at"
] | Matthias.Wiesenberger@uibk.ac.at |
445a73b25d6248be6ab9b7d7294d12cf85dfc62a | f53c4616616c2b6b7a3dce94174c477255c600d1 | /TowerAttack/Projectile.h | 53812fa87e16fb0042f9c5ba78404f017619880c | [] | no_license | stompuri/TowerAttack | c1c4b6e26832dd61da78c6b6162e55edac25e77b | 77e7e6e226bacc33caeff043fc6f16290f08173f | refs/heads/master | 2020-12-24T16:06:38.996528 | 2016-03-10T12:43:16 | 2016-03-10T12:43:16 | 20,258,703 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 893 | h | #pragma once
#include "GameObject.h" // Parent class
#include <memory>
#define _USE_MATH_DEFINES
#include <math.h>
namespace TA
{
class Projectile : public GameObject
{
public:
Projectile(); // Constructor for empty object
Projectile(sf::Vector2f _position, float _rotation, unsigned int _parentId); // Construc... | [
"seppo.tompuri@gmail.com"
] | seppo.tompuri@gmail.com |
3e7c2e5f75d050a88c8ee77e46a55841181d6505 | 56f58b40a3c5cf8d2c3237452a824e136f9e7721 | /backend/controllers/PlaceOrderController.cpp | 13a3e8092fecff7d664a8133393dd83d2bcb8a21 | [] | no_license | NVKShop/nvk-client | a980bf14bf6c32a3cccba72414e980d320ca551b | 968a9fddebee9cb4d3bf7d5a52d5656ba6ee9981 | refs/heads/master | 2020-02-26T16:02:27.227207 | 2016-12-20T10:42:28 | 2016-12-20T10:42:28 | 71,004,379 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,639 | cpp | #include "PlaceOrderController.h"
#include <QMessageBox>
#include <QTableWidget>
#include <QSpinBox>
#include <QDebug>
#include <QJsonDocument>
#include <QJsonObject>
PlaceOrderController::PlaceOrderController(QObject *parent) : QObject(parent),
m_placeOrderWindow(new PlaceOrderWindow), m_placeOrderHandler(new Htt... | [
"f-kristof@hotmail.com"
] | f-kristof@hotmail.com |
b9e7417278ef3252a278a574c27b9a3888d054d5 | dd949f215d968f2ee69bf85571fd63e4f085a869 | /schools/css-2010/team-violet/subarchitectures/spatial.sa/src/c++/LocalMapManager.cpp | a5decabc7863e9f7de3b1f9e210e97161611f300 | [] | no_license | marc-hanheide/cogx | a3fd395805f1b0ad7d713a05b9256312757b37a9 | cb9a9c9cdfeba02afac6a83d03b7c6bb778edb95 | refs/heads/master | 2022-03-16T23:36:21.951317 | 2013-12-10T23:49:07 | 2013-12-10T23:49:07 | 219,460,352 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 19,592 | cpp | //
// = FILENAME
// LocalMapManager.cpp
//
// = FUNCTION
//
// = AUTHOR(S)
// Kristoffer Sjöö
//
// = COPYRIGHT
// Copyright (c) 2009 Kristoffer Sjöö
//
/*----------------------------------------------------------------------*/
#include "LocalMapManager.hpp"
#include <CureHWUtils.hpp>
#include <cast/architect... | [
"marc@hanheide.net"
] | marc@hanheide.net |
44b66c77717cdf2b847184f8ed6f07b697faf901 | 0e8df1125b13efb53aa66be64bdb43e7f7a0ad67 | /src/performance.cpp | 166d5cb03f4ab782ddae59e7cdad62b5bf1099e2 | [] | no_license | erikpeter/fbroc | 1be48bbfcbc1b29a5df79ba33b5dab974fdeff0e | 14dbfa1750ab4093b64228316c002d357656786e | refs/heads/master | 2021-01-17T07:45:52.550764 | 2019-03-24T16:13:23 | 2019-03-24T16:13:23 | 34,873,518 | 7 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,517 | cpp | #include <Rcpp.h>
using namespace Rcpp;
#include "performance.h"
#include <algorithm>
double get_perf_auc(NumericVector &tpr, NumericVector &fpr, NumericVector ¶m)
{
int n_thres = tpr.size();
double auc = 0.;
// Numerical integration of step functions is easy
for (int j = 1; j < n_thres; j++) {
auc +... | [
"jerikpeter@googlemail.com"
] | jerikpeter@googlemail.com |
805893c700d5c771cb0f3bcd8607b8c22e0b8143 | a90b23d93d65174248fb5b53356543e646e901c8 | /plugins/login_plugin/include/bcio/login_plugin/login_plugin.hpp | fb9f918a0b6cc9db4ae63918bbbed5fa0b699063 | [
"BSD-3-Clause",
"MIT",
"Apache-2.0"
] | permissive | bcchain2020/BCChain | eb6a91af670e766912a403c49a2573f791d5544a | 6947212d12571c536225d3440e4985f5b2093cbc | refs/heads/master | 2022-07-23T06:11:59.503406 | 2020-05-18T07:25:17 | 2020-05-18T07:25:17 | 264,853,028 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,251 | hpp | /**
* @file
* @copyright defined in bc/LICENSE.txt
*/
#pragma once
#include <bcio/chain_plugin/chain_plugin.hpp>
#include <bcio/http_plugin/http_plugin.hpp>
#include <appbase/application.hpp>
#include <bcio/chain/controller.hpp>
namespace bcio {
class login_plugin : public plugin<login_plugin> {
public:
APP... | [
"jay_yan726@outlook.com"
] | jay_yan726@outlook.com |
8a1657bc8642522fd64e3d71f8a63fdd361b555a | ab63e7a0f992b3626c51b3e883d5bec30532661f | /disco/a2016.cc | e4b822d64972d7781851a8e8f46b425fbd0963a2 | [] | no_license | algorithmu-mu/yamamu | 86a9cc365678eb94b90b6022099dbdef2a79e38f | d0ff9de8a6a8944a2caa4fe39dc6a5d0ec0150af | refs/heads/master | 2020-02-26T14:14:04.143300 | 2016-11-24T05:00:45 | 2016-11-24T05:00:45 | 61,190,348 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 413 | cc | #include <iostream>
#include <vector>
#include <queue>
#include <string>
#include <algorithm>
#define MAX_N 1000001
#define ll long long
template<typename A, size_t N, typename T>
void Fill(A (&array)[N], const T &val){
std::fill( (T*)array, (T*)(array+N), val );
}
using namespace std;
int main(){
double a, b, c... | [
"yama1223xxx@gmail.com"
] | yama1223xxx@gmail.com |
d50a7440929ed4b689d9f555736e3c732a603ecb | 64f611e64804cfb842b73a3e828b26bf55ad0398 | /src/puremethod.cpp | 11e8bc297257d185522ed7c7522bf75a8a56b8f4 | [
"MIT"
] | permissive | jroivas/nolang | 1eb5a70ce82823866db15da899b8d9cb5cb458f0 | 761655bf851a978fb8426cc8f465e53cc86dec28 | refs/heads/master | 2021-01-21T08:05:21.940409 | 2017-07-29T13:17:57 | 2017-07-29T13:18:14 | 91,619,112 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 177 | cpp | #include "puremethod.hh"
#include "tools.hh"
using namespace nolang;
void PureMethod::setParameters(std::vector<TypeIdent*> p)
{
applyToVector<TypeIdent*>(m_params, p);
}
| [
"jroivas@iki.fi"
] | jroivas@iki.fi |
e6551e8ed3b27028368dd3ad22088134f65efa6c | c1e761b79f84d3f7da23d21a99b34d9063da7782 | /CavemanNinja/ThrowerRunAIBehaviour.cpp | 13d38b4de4ca7147d2e34594713141117925167c | [] | no_license | IgnacioAstorga/Caveman-Ninja | 9040ab183d318cc5851b82a6dfbb4a120fb46f86 | b55d4c659442feacb4f52c9ab1cfe32ec1b17e40 | refs/heads/master | 2020-12-25T20:08:47.011355 | 2016-01-14T16:41:01 | 2016-01-14T16:41:01 | 47,366,125 | 0 | 0 | null | null | null | null | ISO-8859-3 | C++ | false | false | 1,044 | cpp | #include "ThrowerRunAIBehaviour.h"
#include "ThrowerAIManager.h"
#include "Entity.h"
#include "Transform.h"
#include "Application.h"
#include "ModuleAudio.h"
#include "EntityLifetimeComponent.h"
#include "ColliderComponent.h"
#define RUN_SPEED 300.0f
ThrowerRunAIBehaviour::ThrowerRunAIBehaviour()
: AIBehaviour(RUN) ... | [
"iacfromearth@gmail.com"
] | iacfromearth@gmail.com |
c4986dc5d901a055b68f88a1a266be2a3081f047 | dcc8aaadc3a0a9dc62c4d2b87f34b64fab9cb313 | /codeExecute.h | e9889460fca8540f60eb3de0e51797a192751dd2 | [] | no_license | Crinnion0/PrisonerDilemma | 510d470d1e2a6cb51b8bd6482eec98f18efe9fd3 | 57deef95cd6dde12a63550673259cd2bbb5ccba3 | refs/heads/master | 2020-03-10T01:49:08.552066 | 2018-04-11T16:08:27 | 2018-04-11T16:08:27 | 129,120,235 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,204 | h | #pragma once
#include "strategy.h"
#include "codeIterator.h"
#include <fstream>
class codeExecute
{
public:
codeExecute(strategy &a, strategy &b);
codeExecute(vector<strategy>&a , vector<strategy>&b);
~codeExecute();
bool keywordOperation(strategy a, strategy b);
bool calcExpression(strategy a, strategy b, v... | [
"Danielcrinnion@Hotmail.co.uk"
] | Danielcrinnion@Hotmail.co.uk |
36dbdd84920554e84f3bb5195d17125d231b9cfd | 15da3fc8bda6517c7a655741b396fdc80918e45e | /P40479.cc | b32b682dbd2b1be9071868a0d5ddda18e0626e38 | [] | no_license | ShimaSama/FIB-EDA | 3085af61636ff05d0fa1ee5735dbb9fbf49a2feb | 91150d5f6c4ce57e81aa777e1adff0548279e4b4 | refs/heads/master | 2020-07-23T08:14:29.600454 | 2019-12-10T08:41:46 | 2019-12-10T08:41:46 | 207,496,428 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 923 | cc | #include <iostream>
#include <vector>
using namespace std;
typedef vector<vector<char > > Matrix;
void DFS(Matrix& g, int i, int j,char c){
if(g[i][j]=='.' ){
g[i][j]=c;
DFS(g,i+1,j,c);
DFS(g,i,j+1,c);
DFS(g,i-1,j,c);
DFS(g,i,j-1,c);
}
}
int main(){
... | [
"noreply@github.com"
] | noreply@github.com |
bfd392938b05ec69bcbc6ca2c11c4f3e6817f3a5 | 94e8f9fdbe473df89c5923ac196406bc6ab37df9 | /src/lib/boost/asio/ssl/context_service.hpp | 50b7b57695185dbf7795dcdf31fd2e9a135d2ff2 | [
"BSL-1.0"
] | permissive | willdsl/ofxBoost | 5a14ce089a69dc993bacd40c73d2a19983bc2c22 | 1624a8247f0ede71ab46948fe02a55c260ffc0dd | refs/heads/master | 2020-12-03T09:11:59.153780 | 2019-11-25T02:21:47 | 2019-11-25T02:21:47 | 29,944,517 | 0 | 1 | BSL-1.0 | 2019-11-25T02:21:48 | 2015-01-28T01:32:03 | C++ | UTF-8 | C++ | false | false | 5,297 | hpp | //
// ssl/context_service.hpp
// ~~~~~~~~~~~~~~~~~~~~~~~
//
// Copyright (c) 2005 Voipster / Indrek dot Juhani at voipster dot com
// Copyright (c) 2005-2011 Christopher M. Kohlhoff (chris at kohlhoff dot com)
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or ... | [
"m@gingold.com.au"
] | m@gingold.com.au |
5a1a1cc862442d388d65d93ac7c9b70658b95aef | 44a5efc70bc374376217cf0274b007c581ea058a | /Perlin.hpp | 4aa618ff4f92281672881107131bdaa42aa97604 | [] | no_license | fqhd/PerlinNoise | 2ae3d1fd295b7362031d23c9df9f87a7b8ebe4e7 | 00d6b776d96a61997f223a96a89260fd4bac2a8c | refs/heads/master | 2023-02-23T19:58:19.476761 | 2021-01-31T09:06:35 | 2021-01-31T09:06:35 | 324,580,369 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 454 | hpp | #ifndef PERLIN_H
#define PERLIN_H
class Perlin {
public:
void init(unsigned int width, unsigned int octaves, float bias);
float noise2D(unsigned int x, unsigned int y);
void destroy();
private:
void createRandomNoise(float* randomNoiseArray, unsigned int size);
void createPerlinNoise(int wi... | [
"iprograminjava@gmail.com"
] | iprograminjava@gmail.com |
b01675382a52af5d6600b4ccf0027f61574c8e36 | e9b7c1893e51ceece24be7ac211aa1ff108b87b1 | /main.cpp | 3974d8cab98f6f420878bb62edd38fb2b43b3a6e | [] | no_license | Ozatooo/ZadanieLogowanieC- | 1ea9137aeb8fe792c77a7664b5e42eb4b1ea7617 | 721ae0e89ddfe46e1c21f4cb89d20008d4e78c7f | refs/heads/master | 2022-05-28T10:42:17.032162 | 2020-05-05T06:27:33 | 2020-05-05T06:27:33 | 261,378,268 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 803 | cpp | #include <iostream>
using namespace std;
int main(int argc, char** argv) {
string haslo, odpowiedz;
int wiek;
cout << "Podaj swoj wiek: ";
cin >> wiek;
if(wiek < 18)
{
cout <<endl<< "Jestes niepelnoletni";
}
else
{
cout << "Podaj haslo: ";
... | [
"noreply@github.com"
] | noreply@github.com |
1d435c48223f75df679ea84b425310c417cba342 | a754da405bc3d2d2d1d8940d7d277c63bf2b7768 | /android/jni/com/mapswithme/platform/HttpThread.cpp | ef454224343c4c5e82b5a1b2913d6581cd23a763 | [
"Apache-2.0"
] | permissive | icyleaf/omim | 3a5a4f07890e6ad0155447ed39563a710178ec35 | a1a299eb341603337bf4a22b92518d9575498c97 | refs/heads/master | 2020-12-28T22:53:52.624975 | 2015-10-09T16:30:46 | 2015-10-09T16:30:46 | 43,995,093 | 0 | 0 | Apache-2.0 | 2019-12-12T03:19:59 | 2015-10-10T05:08:38 | C++ | UTF-8 | C++ | false | false | 3,915 | cpp | #include "platform/http_thread_callback.hpp"
#include "../core/jni_helper.hpp"
#include "Platform.hpp"
class HttpThread
{
private:
jobject m_self;
public:
HttpThread(string const & url,
downloader::IHttpThreadCallback & cb,
int64_t beg,
int64_t end,
int64_t ex... | [
"alex@maps.me"
] | alex@maps.me |
f2272393321a93c2246ad3263397cafe7e9363ef | 2af943fbfff74744b29e4a899a6e62e19dc63256 | /BRPTools/IGTLPerformanceTest/igtlLoopController.h | aaf6028691ee696da9c1d6da9713653c5322214b | [] | no_license | lheckemann/namic-sandbox | c308ec3ebb80021020f98cf06ee4c3e62f125ad9 | 0c7307061f58c9d915ae678b7a453876466d8bf8 | refs/heads/master | 2021-08-24T12:40:01.331229 | 2014-02-07T21:59:29 | 2014-02-07T21:59:29 | 113,701,721 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 3,028 | h | /*=========================================================================
Program: Open IGT Link -- Example for Tracker Client Program
Module: $RCSfile: $
Language: C++
Date: $Date: $
Version: $Revision: $
Copyright (c) Insight Software Consortium. All rights reserved.
This software is d... | [
"tokuda@5e132c66-7cf4-0310-b4ca-cd4a7079c2d8"
] | tokuda@5e132c66-7cf4-0310-b4ca-cd4a7079c2d8 |
46b8a0c9749b30480dfe7667c1f5e117064df022 | 949749d564f421baff991dbb559fce17df36dde3 | /smsListener/android/build/generated/jni/com.oodles.smslistener.SmsListenerModule.cpp | 1763bd3c42d30ae6ffd8f186a904764c2c51d23a | [] | no_license | mohitvirmani/Sapna-Oodles | 60eeda2a1808c01483e5c6c5866758a67e6c7d62 | 732e473db4993c23fa71ecfa09ffff085eb31a76 | refs/heads/master | 2020-06-15T15:31:03.846142 | 2016-12-01T13:15:55 | 2016-12-01T13:15:55 | 75,283,234 | 0 | 0 | null | 2016-12-01T10:48:11 | 2016-12-01T10:48:11 | null | UTF-8 | C++ | false | false | 8,868 | cpp | /**
* Appcelerator Titanium Mobile
* Copyright (c) 2011-2013 by Appcelerator, Inc. All Rights Reserved.
* Licensed under the terms of the Apache Public License
* Please see the LICENSE included with this distribution for details.
*/
/** This code is generated, do not edit by hand. **/
#include "com.oodles.smslis... | [
"sapna.sharma@oodlestechnologies.com"
] | sapna.sharma@oodlestechnologies.com |
0a20d012ea3367820507efe2b42943cbc45b439e | 4c23be1a0ca76f68e7146f7d098e26c2bbfb2650 | /h2/0.4/uniform/time | f9d41f851a60dbb4085eafb06ad569aa22e06bfa | [] | no_license | labsandy/OpenFOAM_workspace | a74b473903ddbd34b31dc93917e3719bc051e379 | 6e0193ad9dabd613acf40d6b3ec4c0536c90aed4 | refs/heads/master | 2022-02-25T02:36:04.164324 | 2019-08-23T02:27:16 | 2019-08-23T02:27:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 819 | /*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 6
\\/ M anipulation |
\*-------... | [
"jfeatherstone123@gmail.com"
] | jfeatherstone123@gmail.com | |
b9c0db2a5f93f78d1c4daf28681101cbe561b57c | ae056ba0777876ca7d7ff02fd688e5c2455bc449 | /source/common/tracing/null_span_impl.h | 13770006323493ecf4ad0e55e6c02488950496f1 | [
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
] | permissive | Nextdoor/envoy | 860f5b47ea0afec23b22e82baf396681eb50de45 | b9eada56a2ce8203c47796f80b64a7822616fa09 | refs/heads/main | 2023-08-05T02:16:58.838815 | 2021-08-23T14:11:37 | 2021-08-23T14:11:37 | 215,616,004 | 3 | 2 | Apache-2.0 | 2023-08-16T04:55:17 | 2019-10-16T18:22:44 | C++ | UTF-8 | C++ | false | false | 1,027 | h | #pragma once
#include "envoy/tracing/trace_driver.h"
#include "source/common/common/empty_string.h"
namespace Envoy {
namespace Tracing {
/**
* Null implementation of Span.
*/
class NullSpan : public Span {
public:
static NullSpan& instance() {
static NullSpan* instance = new NullSpan();
return *instanc... | [
"noreply@github.com"
] | noreply@github.com |
2d6a31658a9a8bf31fc6f55a8d2e03bf6389421c | 1c024dfbca35f4c829d4b47bdfe900d1b1a2303b | /shell/browser/ui/webui/accessibility_ui.cc | 6b64fa1fbcaeeabcbe8897c4df80be4ac13bb480 | [
"MIT"
] | permissive | electron/electron | 1ba6e31cf40f876044bff644ec49f8ec4923ca6a | 0b0707145b157343c42266d2586ed9413a1d54f5 | refs/heads/main | 2023-09-01T04:28:11.016383 | 2023-08-31T14:36:43 | 2023-08-31T14:36:43 | 9,384,267 | 99,768 | 18,388 | MIT | 2023-09-14T19:50:49 | 2013-04-12T01:47:36 | C++ | UTF-8 | C++ | false | false | 16,202 | cc | // Copyright (c) 2020 Microsoft, Inc.
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
#include "shell/browser/ui/webui/accessibility_ui.h"
#include <memory>
#include <string>
#include <utility>
#include <vector>
#include "base/command_line.h"
#include "base/functio... | [
"noreply@github.com"
] | noreply@github.com |
7b4c996664d6d46e20e507f378fad934a6fdd936 | c766bece263e5149d0dbab04ea20308bf1191ab8 | /AdobeInDesignCCProductsSDK.2020/source/public/interfaces/graphics/IOffscreenPortData.h | a5b294db1b97428221b6134d175c60484a3de6b8 | [] | no_license | stevenstong/adobe-tools | 37a36868619db90984d5303187305c9da1e024f7 | c74d61d882363a91da4938fd525b97f83084cb2e | refs/heads/master | 2022-04-08T17:31:35.516938 | 2020-03-18T20:57:40 | 2020-03-18T20:57:40 | 248,061,036 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,617 | h | //========================================================================================
//
// $File: //depot/devtech/15.0/plugin/source/public/interfaces/graphics/IOffscreenPortData.h $
//
// Owner: Jack Kirstein
//
// $Author: pmbuilder $
//
// $DateTime: 2019/10/11 10:48:01 $
//
// $Revision: #2 $
/... | [
"steven.tong@hcl.com"
] | steven.tong@hcl.com |
bbd8a6fc85ced748779fba796e13ae057b03722d | d94436dbb76c4dd13d3e27dd254c70a5f5db1935 | /src/layers/math/cereal_registration/sign.cpp | 7cc76d06704cf381c01c59d7b3bb341e85dd03e3 | [
"Apache-2.0"
] | permissive | gutseb/lbann | 298a96ac4f406a20cd8e10b10dce688d2ac6ee52 | 0433bb81133f54d9555849e710e445b37383d2b8 | refs/heads/master | 2023-09-01T10:25:50.318390 | 2021-05-28T00:08:01 | 2021-05-28T00:08:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,742 | cpp | ////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC.
// Produced at the Lawrence Livermore National Laboratory.
// Written by the LBANN Research Team (B. Van Essen, et al.) listed in
// the CONTRIBUTORS file. <lbann-dev@l... | [
"noreply@github.com"
] | noreply@github.com |
6e5b0a402f6a613874b32e8caf3aacccffe0c754 | af0ecafb5428bd556d49575da2a72f6f80d3d14b | /CodeJamCrawler/dataset/13_19946_80.cpp | ed21e28f3a0a320a81c84b526399186a38e496d0 | [] | no_license | gbrlas/AVSP | 0a2a08be5661c1b4a2238e875b6cdc88b4ee0997 | e259090bf282694676b2568023745f9ffb6d73fd | refs/heads/master | 2021-06-16T22:25:41.585830 | 2017-06-09T06:32:01 | 2017-06-09T06:32:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,702 | cpp | #include <algorithm>
#include <cassert>
#include <cmath>
#include <cstring>
#include <cctype>
#include <fstream>
#include <functional>
#include <iostream>
#include <map>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <vector>
using namespace std;
#define VAR(a,b) ... | [
"nikola.mrzljak@fer.hr"
] | nikola.mrzljak@fer.hr |
580bc90e40428e7b7e5309f4fe29f9a21b7f197f | 785f4629363e9426ad99763918ea7bd96bce2b21 | /Engine/include/Engine/Manager/ColliderManager.h | f3baf3f156e19fd161426e325f24a7d48d42ba94 | [] | no_license | NeoDahos/Robot-Survival | f5124b6bd03b1f7d236157bb421d5875d256ff88 | 5e5dcbaed200966262c88867185e3cea64e8e70c | refs/heads/master | 2020-12-24T21:55:33.938832 | 2016-05-05T07:40:09 | 2016-05-05T07:40:09 | 57,878,928 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 499 | h | #ifndef COLLIDER_MANAGER_H
#define COLLIDER_MANAGER_H
#include <Engine\Export.h>
#include <SFML\System\NonCopyable.hpp>
#include <list>
namespace engine
{
class Collider;
class ENGINE_API ColliderManager : public sf::NonCopyable
{
public:
ColliderManager();
~ColliderManager();
void AddCollider(Collider* c... | [
"sk8eurbenve@hotmail.fr"
] | sk8eurbenve@hotmail.fr |
93f1486bead20e1ad41423cd758008134fe59ae8 | fee42f7dd84c0799a2dea25d08e52f99b2b88b22 | /ContestUri2018/poesia.cc | a8212fe1210194705491efaa0414d44d19fbed83 | [] | no_license | eassisv/online-judge | 0d997bb592f2af772454fe1d2125518cc841bfa2 | 33c5bcf818e3635e71c7fafafb82753bff34601b | refs/heads/master | 2020-03-27T03:12:22.721276 | 2018-11-29T01:22:15 | 2018-11-29T01:22:15 | 145,845,940 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 815 | cc | #include<bits/stdc++.h>
using namespace std;
#define pb push_back
const int MAX = 2e3+1;
vector<int> divs, ns, rs(MAX);
int main(void) {
int N, ans;
cin >> N;
for(int i = 2, j = N, d = 0; j > 1;){
if(j % i) { d = 0; ++i; continue; }
if(!d) { d = 1; divs.pb(i); }
else { int x = i *... | [
"eassis.vieira@gmail.com"
] | eassis.vieira@gmail.com |
118c0ed9d54842ff8f8213d557903c8a0a33854c | 9ad40d7fff54f5e4f36ae974e33712a9beb7378e | /codeforces/2.cpp | 9631d9797331d284c1a3fd5a2c852d013531bc13 | [] | no_license | vikram-shaw/cpp | 7fcac406b003dd717abe43fc5f15ea253b486b1d | 8d4367dedef4e48aed649c8174cee74d38be09ea | refs/heads/master | 2023-01-31T19:13:04.363704 | 2020-12-20T05:50:24 | 2020-12-20T05:50:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 885 | cpp | #include<bits/stdc++.h>
using namespace std;
bool com(pair<int,int>& p1, pair<int,int>& p2)
{
if(p1.first >= p2.first && p1.second >=p2.second)
return true;
return false;
}
int main()
{
int t;
cin>>t;
while(t--)
{
int n;
cin>>n;
vector<pair<int,int>> path(n);
for(int i=0;i<n;i++)
cin>>path[i].first... | [
"vikram.shaw.3382@gmail.com"
] | vikram.shaw.3382@gmail.com |
bc004e81e77b175cd99b65b990c74d81ae0f1eba | ceec4b43ae576fc911000aaff4d045fcd50c1864 | /prog/makeR.cpp | 17fe482b89c2736c6a302996e2ecc3bc329228b5 | [] | no_license | MasanoriYamada/analistic_functions | 33a6ad29359892354b9ebb43ce323f70b8da7598 | 5a25771a4b97799eba1820058c0aad00c062bced | refs/heads/master | 2016-09-09T19:55:28.512439 | 2013-11-26T07:14:28 | 2013-11-26T07:14:28 | 31,621,249 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,580 | cpp | /*2点相関関数(confを抜いたやつ)とBS波動関数(confを抜いたやつ)を読み込んでR相関関数を作る*/
#include<complex>
#include <iostream>
#include <iomanip>
#include <fstream>
#include "../include/analys.h"
using namespace std;
typedef std::complex<double> COMPLEX;
#define I std::complex<double>(0.0,1.0)
static const int datasize=XYZnodeSites;
int ca... | [
"sinyamada@het.ph.tsukuba.ac.jp"
] | sinyamada@het.ph.tsukuba.ac.jp |
09dfc8eff23ce47bf507215f1537179e074e6110 | 40efd1998af596082f5a006f0e2c5bc12d8e7ebc | /CppSQLite3U.cpp | 2e9a0595c05677fa3105c6fb7013be9b36e7d9e2 | [
"MIT"
] | permissive | cmf41013/CppSQLite3U | 968a4386081b2c58cbac422ec80cc88d20444338 | 18d86b8c5619dcb71eb8dcebf62273a65547a2db | refs/heads/master | 2021-05-28T05:30:05.364827 | 2014-11-20T09:45:43 | 2014-11-20T09:45:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 20,099 | cpp | ////////////////////////////////////////////////////////////////////////////////
// CppSQLite3U is a C++ unicode wrapper around the SQLite3 embedded database library.
//
// Copyright (c) 2006 Tyushkov Nikolay. All Rights Reserved. http://softvoile.com
//
//
// Based on beautiful wrapper written by Rob Groves
// (ht... | [
"slava.konashkov@gmail.com"
] | slava.konashkov@gmail.com |
cedcab71b8ce5c3d55aab4d52b2669074d5a8760 | f92f86ae5595fa82f46eddaf005fd4e12150237a | /TICPP-2nd-ed-Vol-two/code/C05/ToLower2.cpp | 73b7c81d13df1ea716ae5dba57572228c32cfada | [] | no_license | charles-pku-2013/CodeRes_Cpp | 0b3d84412303c42a64fd943e8d0259dacd17954f | a2486495062743c1ec752b26989391f7e580d724 | refs/heads/master | 2023-08-31T19:44:34.784744 | 2023-08-30T06:28:21 | 2023-08-30T06:28:21 | 44,118,898 | 3 | 6 | null | null | null | null | UTF-8 | C++ | false | false | 631 | cpp | //: C05:ToLower2.cpp {-mwcc}
// From "Thinking in C++, Volume 2", by Bruce Eckel & Chuck Allison.
// (c) 1995-2004 MindView, Inc. All Rights Reserved.
// See source code use permissions stated in the file 'License.txt',
// distributed with the code package available at www.MindView.net.
#include <algorithm>
#incl... | [
"chao.sun.2010@gmail.com"
] | chao.sun.2010@gmail.com |
1668062d6f35ef93535d12b81c7d09dce335a2ce | 80bee850d1197772d61e05d8febc014e9980d7c0 | /Addons/ExileReborn-Reborn_Zombies/@ExileServer/addons/Enigma_Exile_Custom/config.cpp | b599d7884fd7f9af5d528ef2cf49ffaf7d43298c | [
"MIT"
] | permissive | x-cessive/Exile | 0443bb201bda31201fadc9c0ac80823fb2d7a25d | c5d1f679879a183549e1c87d078d462cbba32c25 | refs/heads/master | 2021-11-29T08:40:00.286597 | 2021-11-14T17:36:51 | 2021-11-14T17:36:51 | 82,304,207 | 10 | 8 | null | 2017-04-11T14:44:21 | 2017-02-17T14:20:22 | SQF | UTF-8 | C++ | false | false | 359 | cpp |
class CfgPatches
{
class Enigma_Exile_Custom {
units[] = {};
weapons[] = {};
requiredVersion = 0.1;
author[]= {"Happydayz_EngimaTeam"};
};
};
class CfgFunctions
{
class EnigmaTeam
{
class main
{
file = "\Enigma_Exile_Custom\init";
class init
{
preInit = 1;
};
class postinit
... | [
"mrsage@xcsv.tv"
] | mrsage@xcsv.tv |
3d990c1341cce745c8cd816c66e6e52a1a6126af | e9ed8f198134984a9342e50d96a454a0ed1e094a | /AR-VR/tanya007_Tanya_2024ec1197_2/gettingStarted/primesinrange.cpp | 5973ff067ac49bf3d32c2080e55fb573c937d87b | [] | no_license | divyaagarwal24/coderspree | 20978b6dabefd84cac1343fffa79741bd6372046 | 7aafdab534bbab8dd1073007d83517470aae3492 | refs/heads/main | 2023-08-26T12:15:52.236087 | 2021-11-10T11:48:55 | 2021-11-10T11:48:55 | 412,049,822 | 0 | 1 | null | 2021-09-30T12:09:47 | 2021-09-30T12:09:47 | null | UTF-8 | C++ | false | false | 313 | cpp | #include<iostream>
using namespace std;
int main(){
int a,b;
cin>>a>>b;
for(int num=a;num<=b;num++){
int i;
for(i=2;i<num;i++){
if(num%i==0){
break;
}
}
if(i==num){
cout<<num<<endl;
}
}
return 0;
} | [
"30565750+tushar5526@users.noreply.github.com"
] | 30565750+tushar5526@users.noreply.github.com |
b0efac308b2c16a35a0a38bab7c8398313f37cad | 97195724f8a99189c9afbcb371eb0816da5f2ec7 | /imu/Teensy/src/imu_device.cpp | 9a8da954c4acfbaaf2f461e105f3079490da0b94 | [
"MIT"
] | permissive | mylightyeah/Yukari | a8bc1e98156212df323dc53db2ec9ce16c6103aa | da3e599477302c241b438ca44d6711fdd68b6ef8 | refs/heads/master | 2021-05-22T16:11:23.320608 | 2017-06-16T13:43:00 | 2017-06-16T13:43:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,437 | cpp | #include "imu_device.h"
#include <I2Cdev.h>
#include <BMP085.h>
#include <MPU9150_9Axis_MotionApps41.h>
#include <TinyGPS++.h>
#include <helper_3dmath.h>
#include <MSP.h>
#include <Scheduler.h>
Scheduler g_scheduler;
MSP g_msp(MSP_SERIAL);
TinyGPSPlus g_gps;
BMP085 g_barometer;
float g_temperature;
float g_press... | [
"dan@dan-nixon.com"
] | dan@dan-nixon.com |
88a2761c16aa3a2578fe59343015078e6cb66dda | 24169ed433d6fb46ee6c00d49a31ee834f517dce | /GFlowSim/src/dataobjects/graphobjects/kineticenergydata.cpp | ddd79fb3082496106556e8f29df5c5d8299fec32 | [] | no_license | nrupprecht/GFlow | 0ae566e33305c31c1fead7834a0b89f611abb715 | 445bf3cbdbcdc68aa51b5737f60d96634009a731 | refs/heads/master | 2021-11-22T22:07:31.721612 | 2020-04-22T18:51:21 | 2020-04-22T18:51:21 | 60,136,842 | 2 | 2 | null | 2020-02-10T23:10:33 | 2016-06-01T01:49:26 | C++ | UTF-8 | C++ | false | false | 1,508 | cpp | #include "kineticenergydata.hpp"
namespace GFlowSimulation {
// Constructor
KineticEnergyData::KineticEnergyData(GFlow *gflow, bool ave) : GraphObject(gflow, "KE", "time", "kinetic energy"), useAve(ave) {};
void KineticEnergyData::post_step() {
// Only record if enough time has gone by
if (!DataObject::... | [
"nathaniel.rupprecht@gmail.com"
] | nathaniel.rupprecht@gmail.com |
aa686bb8bc1b77a1d341f72ab1b544dd58b0547c | 60798997f9ff3a60b8787386dbed1ad06c1c9ccc | /DesignPatterns/Structural/Composite/floppydisk.cpp | 192d2092f00675c638331e84d52d77c7be50f25d | [] | no_license | e5MaxSpace/DesignPatterns | be7e478c0fca1626c764287af17fd4457c99a975 | c44a2b6781a571937f85634b57f6feb60a744f89 | refs/heads/master | 2016-09-06T18:08:11.377009 | 2013-09-16T12:16:41 | 2013-09-16T12:16:41 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 320 | cpp | #include "floppydisk.h"
FloppyDisk::FloppyDisk(const std::string &name)
: Equipment(name)
{
}
FloppyDisk::~FloppyDisk()
{
}
int FloppyDisk::Power() const
{
return 180;
}
Currency FloppyDisk::NetPrice() const
{
return 500.0;
}
Currency FloppyDisk::DiscountPrice() const
{
return NetPrice() * 0.85;
}
| [
"e5Max@qq.com"
] | e5Max@qq.com |
0d449d2d6cb108c915ae5de4f0411cf0a9e2d826 | b22522fe8fc3777b51dba385f0cdb7a7d2911e96 | /project/faceTrack/faceTrack/train_patch_model.cpp | a7ddb7679cd4e5ffdcf28fd1fa21664769387074 | [] | no_license | txaxx/opencv | 5320cbe28b04dc9b6b4b0ed17daf2464ae46816d | 23e2394ab204f7439c62cffbae1f997cca50bf3e | refs/heads/master | 2020-05-16T01:54:16.331452 | 2019-05-09T02:36:42 | 2019-05-09T02:36:42 | 182,612,736 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,306 | cpp | /*****************************************************************************
* Non-Rigid Face Tracking
******************************************************************************
* by Jason Saragih, 5th Dec 2012
* http://jsaragih.org/
**************************************************************************... | [
"1192622499@example.com"
] | 1192622499@example.com |
6fe60d39bf4547f42863d16dfbf7ca7049749d7b | ea2ef79d13c8c8c70f96ba6683bf0f321e9942c1 | /include/graphics/Scene.h | c81617ee928d3fac81fbae6a558df2d9eb7d98d1 | [
"MIT"
] | permissive | stnma7e/scim | 32145a3d51aadb2013f2ab452fb1c83af563ca13 | a82f0e97018a4a2abf0a225f75ebc7e8ef6f1e0d | refs/heads/master | 2021-01-10T20:17:34.222501 | 2014-02-01T19:08:54 | 2014-02-01T19:08:54 | 7,210,907 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 954 | h | #ifndef SCENE_H_
#define SCENE_H_
#include "IMesh.h"
#include <glm/glm.hpp>
#include <vector>
#include <stdio.h>
#include <iostream>
namespace scim
{
struct SceneNode
{
U32 index;
glm::mat4* wmat;
glm::mat4* lmat;
U32 parentNode;
IMesh* mesh;
};
class Scene
{
std::vector<glm::mat4> m_wmat; // wo... | [
"svdelmerico@gmail.com"
] | svdelmerico@gmail.com |
ecedf5a152a68f5ec4f7cabfe1fa482708e8bcb4 | 60276f056f1fc509593d4e05c383ba59148ad5e3 | /DemoProj/Huffman/stdafx.cpp | 96e356bbac808cb9db13c6d419381e0de5d5b75e | [] | no_license | feiilin/DemoCodes | 8b63b6afb3c0afe001be00848fd9409b3510aa51 | d1b142da92318a66a7aab1f7cebdf54b1fe24b67 | refs/heads/master | 2022-11-30T17:08:40.234741 | 2020-08-18T07:05:22 | 2020-08-18T07:05:22 | 286,668,819 | 1 | 0 | null | null | null | null | GB18030 | C++ | false | false | 260 | cpp | // stdafx.cpp : 只包括标准包含文件的源文件
// Huffman.pch 将作为预编译头
// stdafx.obj 将包含预编译类型信息
#include "stdafx.h"
// TODO: 在 STDAFX.H 中
// 引用任何所需的附加头文件,而不是在此文件中引用
| [
"2273110249@qq.com"
] | 2273110249@qq.com |
ab6cf205c80f1278abb9878f5413de2cb172a5a2 | a35b30a7c345a988e15d376a4ff5c389a6e8b23a | /boost/mpl/transform.hpp | d1f94e6638ff71a7c071a7fdff5b74d040c2cd41 | [] | no_license | huahang/thirdparty | 55d4cc1c8a34eff1805ba90fcbe6b99eb59a7f0b | 07a5d64111a55dda631b7e8d34878ca5e5de05ab | refs/heads/master | 2021-01-15T14:29:26.968553 | 2014-02-06T07:35:22 | 2014-02-06T07:35:22 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 59 | hpp | #include "thirdparty/boost_1_55_0/boost/mpl/transform.hpp"
| [
"liuhuahang@xiaomi.com"
] | liuhuahang@xiaomi.com |
95d8241b798c687382be3f0c81556fcd4f16eb99 | cb6a6b91b6f260e233663985a6e24bdd21559c91 | /chapter16/c16e5.cc | 7b20dea79c6a70359d25577c3e689641f8b536f2 | [] | no_license | drcxd/CppPrimerExercise | bf2ef28cfe9b1f5722116d550e7456fb395369c0 | 1b5b85d573144fc1019632c1e95cdcac01979d77 | refs/heads/master | 2021-01-23T09:10:06.782754 | 2018-02-09T02:01:19 | 2018-02-09T02:01:19 | 102,560,940 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 590 | cc | #include <iostream>
#include <array>
// built-in array version
// template <unsigned N, typename T>
// void print(const T (&arr)[N]) {
// for (auto &it : arr) {
// std::cout << it << std::endl;
// }
// }
// stl array version
template <unsigned long N, typename T>
void print(const std::array<T, N> &arr... | [
"drcxd@sina.com"
] | drcxd@sina.com |
756dfeb3fab0239288a99914424c3d4bbe3ffa62 | cd484c21d9d412d81ee3039072365fbb32947fce | /WBoard/Source/tools/WBGraphicsCache.h | c267da4ccda46f5f770a130514051547cb0f5d34 | [] | no_license | drivestudy/WBoard | 8c97fc4f01f58540718cd2c082562f9eab5761de | 18959203a234944fb402b444462db76c6dd5b3c6 | refs/heads/main | 2023-08-01T01:41:04.303780 | 2021-09-09T04:56:46 | 2021-09-09T04:56:46 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,474 | h | #ifndef WBGRAPHICSCACHE_H
#define WBGRAPHICSCACHE_H
#include <QColor>
#include <QGraphicsSceneMouseEvent>
#include "domain/WBItem.h"
#include "core/WB.h"
typedef enum
{
eMaskShape_Circle,
eMaskShap_Rectangle
}eMaskShape;
class WBGraphicsCache : public QGraphicsRectItem, public WBItem
{
public:
static WB... | [
"574226409@qq.com"
] | 574226409@qq.com |
d9383c6124ba75f5460fb2432f541924204971c7 | 8774e1860d88aeadcd1709e543f262b9f7983f31 | /src/qt/test/uritests.h | 6943eeb2c400be9216b1820af02d060a08439468 | [
"MIT"
] | permissive | npq7721/raven-dark | cb1d0f5da007ff5a46f6b1d8410101ce827a7f5f | abc2c956f5eb5b01eb4703918f50ba325b676661 | refs/heads/master | 2020-08-04T17:04:11.847541 | 2019-07-19T19:32:55 | 2019-07-19T19:32:55 | 212,213,490 | 0 | 0 | MIT | 2019-10-01T22:47:40 | 2019-10-01T22:47:40 | null | UTF-8 | C++ | false | false | 436 | h | // Copyright (c) 2009-2015 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef RAVENDARK_QT_TEST_URITESTS_H
#define RAVENDARK_QT_TEST_URITESTS_H
#include <QObject>
#include <QTest>
class URITest... | [
"j4ys0n@gmail.com"
] | j4ys0n@gmail.com |
cf2a06f81eb7045b31dd1a84c6a824280a9ec8aa | ea72aac3344f9474a0ba52c90ed35e24321b025d | /PathFinding/PathFinding/PathFinding.cpp | ee86e175b6437840cdb4904cdd62c789f72b837e | [] | no_license | nlelouche/ia-2009 | 3bd7f1e42280001024eaf7433462b2949858b1c2 | 44c07567c3b74044e59313532b5829f3a3466a32 | refs/heads/master | 2020-05-17T02:21:02.137224 | 2009-03-31T01:12:44 | 2009-03-31T01:12:44 | 32,657,337 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,208 | cpp | #include "PathFinding.h"
//--------------------------------------------------------------
PathFind::PathFind(int * _map[],int _rows,int _cols)
:
m_pkPath(NULL),
m_pkClosedNodes(NULL),
m_pkOpenNodes(NULL),
m_CurrentNode(NULL),
m_pkiPathIT(0),
m_pkOpenNodesIT(0),
m_pkClosedNodesIT(0)
{
// Copiamos el mapa ... | [
"calaverax@bb2752b8-1d7e-11de-9d52-39b120432c5d"
] | calaverax@bb2752b8-1d7e-11de-9d52-39b120432c5d |
2182894dc402d1ceaeb4508f476495cd88830f87 | d4c720f93631097ee048940d669e0859e85eabcf | /third_party/webrtc_overrides/p2p/base/ice_connection.h | 9082894cdcb42672cdeb2877b36f56a634df64bb | [
"Apache-2.0",
"LGPL-2.0-or-later",
"MIT",
"GPL-1.0-or-later",
"BSD-3-Clause"
] | permissive | otcshare/chromium-src | 26a7372773b53b236784c51677c566dc0ad839e4 | 3b920d87437d9293f654de1f22d3ea341e7a8b55 | refs/heads/webnn | 2023-03-21T03:20:15.377034 | 2023-01-25T21:19:44 | 2023-01-25T21:19:44 | 209,262,645 | 18 | 21 | BSD-3-Clause | 2023-03-23T06:20:07 | 2019-09-18T08:52:07 | null | UTF-8 | C++ | false | false | 3,138 | h | // Copyright 2022 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 THIRD_PARTY_WEBRTC_OVERRIDES_P2P_BASE_ICE_CONNECTION_H_
#define THIRD_PARTY_WEBRTC_OVERRIDES_P2P_BASE_ICE_CONNECTION_H_
#include <string>
#includ... | [
"chromium-scoped@luci-project-accounts.iam.gserviceaccount.com"
] | chromium-scoped@luci-project-accounts.iam.gserviceaccount.com |
4da7e1f0758c1104525dc6ac848d7aa50586f3df | bfc0a74a378d3692d5b033c21c29cf223d2668da | /unittests/libtests/faults/TestFaultCohesiveKinSrcsCases.hh | 2d50d2c0cf9ca9b8b598e087bf3d83de1c9de730 | [
"MIT"
] | permissive | rishabhdutta/pylith | b2ed9cd8039de33e337c5bc989e6d76d85fd4df1 | cb07c51b1942f7c6d60ceca595193c59a0faf3a5 | refs/heads/master | 2020-12-29T01:53:49.828328 | 2016-07-15T20:34:58 | 2016-07-15T20:34:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,478 | hh | // -*- C++ -*-
//
// ----------------------------------------------------------------------
//
// Brad T. Aagaard, U.S. Geological Survey
// Charles A. Williams, GNS Science
// Matthew G. Knepley, University of Chicago
//
// This code was developed as part of the Computational Infrastructure
// for Geodynamics (http://... | [
"baagaard@usgs.gov"
] | baagaard@usgs.gov |
defe98cf16efd53719fd8430f90528824ef85856 | fafce52a38479e8391173f58d76896afcba07847 | /uppdev/YPuzzle/TinyXML/tinyxml.h | 0024ae903bccd754478dc1cd8ced715361f6f7ed | [] | no_license | Sly14/upp-mirror | 253acac2ec86ad3a3f825679a871391810631e61 | ed9bc6028a6eed422b7daa21139a5e7cbb5f1fb7 | refs/heads/master | 2020-05-17T08:25:56.142366 | 2015-08-24T18:08:09 | 2015-08-24T18:08:09 | 41,750,819 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 51,669 | h | /*
www.sourceforge.net/projects/tinyxml
Original code (2.0 and earlier )copyright (c) 2000-2002 Lee Thomason (www.grinninglizard.com)
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any
damages arising from the use of this software.
P... | [
"cxl@ntllib.org"
] | cxl@ntllib.org |
c94356bef61c119527a1d10644cfa7cfa23881c5 | d52d5fdbcd848334c6b7799cad7b3dfd2f1f33e4 | /third_party/folly/folly/test/ChronoTest.cpp | 0e7ac92ee49b7aee8b4642b76964d27f578cdc02 | [
"Apache-2.0"
] | permissive | zhiliaoniu/toolhub | 4109c2a488b3679e291ae83cdac92b52c72bc592 | 39a3810ac67604e8fa621c69f7ca6df1b35576de | refs/heads/master | 2022-12-10T23:17:26.541731 | 2020-07-18T03:33:48 | 2020-07-18T03:33:48 | 125,298,974 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,146 | cpp | /*
* Copyright 2017-present Facebook, Inc.
*
* 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... | [
"yangshengzhi1@bigo.sg"
] | yangshengzhi1@bigo.sg |
35eaf2cfd43f19409e8bbd5e0df9d689e9f85a2a | b59daf97e55cb798de6daeb31a6872d7586bd500 | /src/nstd/execution/let_value.cpp | 215b4e97edff38333a7762215723498ecf23ee65 | [] | no_license | kirkshoop/kuhllib | 29a7348cd92ec67564a01bf5a4ebd3ce262a206d | 8ac4f14d37db3d93e09dd2756a36bf7937c2faa2 | refs/heads/main | 2023-08-10T22:40:50.933000 | 2021-10-02T16:09:55 | 2021-10-02T16:09:55 | 412,868,756 | 2 | 0 | null | 2021-10-02T17:39:59 | 2021-10-02T17:39:58 | null | UTF-8 | C++ | false | false | 1,939 | cpp | // nstd/execution/let_value.cpp -*-C++-*-
// ----------------------------------------------------------------------------
// Copyright (C) 2021 Dietmar Kuehl http://www.dietmar-kuehl.de
//
// Permissi... | [
"dietmar.kuehl@me.com"
] | dietmar.kuehl@me.com |
6cab9ee2dad26a02dae02de57035067263fd4566 | 41279e0ed19e26cc0fcaafa229604d1094aed6a8 | /include/networking/ServerStartException.hpp | f772241d67296e4ca574cea40b6c1e9c1c1c293f | [] | no_license | ChuxiongMa/TextAdventure | 20a180747414ede1a8b0e85869809f955b067b11 | 4f217106de6908909f17408c16df822ed9543284 | refs/heads/master | 2016-08-13T02:01:58.490646 | 2016-02-21T23:26:48 | 2016-02-21T23:26:48 | 52,233,748 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 395 | hpp | #ifndef SERVER_START_EXCEPTION_H
#define SERVER_START_EXCEPTION_H
#include <exception>
#include <string>
using exception = std::exception;
using string = std::string;
namespace networking {
class ServerStartException : public exception {
string reason;
public:
ServerStartException();
ServerStartExcep... | [
"cma68@sfu.ca"
] | cma68@sfu.ca |
bd9d1112e540706e20bb52c10417811b68da86fb | 1d450ef7469a01208e67b0820f0e91bd3630630a | /third-party/jni.hpp-4.0.0/include/jni/native_method.hpp | 978b733d24f7c236099446afe4c899ac251ec9d3 | [
"BSD-3-Clause",
"Apache-2.0",
"ISC"
] | permissive | folkene/pyjadx | db3ff1e9f4625add618388f28441ebd7dd894692 | d16ece0df2cb9b0500d00cac49df84578a81fc56 | refs/heads/master | 2020-08-04T14:59:14.259823 | 2019-10-08T14:24:40 | 2019-10-08T14:24:40 | 212,176,491 | 1 | 0 | Apache-2.0 | 2019-10-01T18:59:38 | 2019-10-01T18:59:38 | null | UTF-8 | C++ | false | false | 13,769 | hpp | #pragma once
#include <jni/types.hpp>
#include <jni/errors.hpp>
#include <jni/functions.hpp>
#include <jni/tagging.hpp>
#include <jni/class.hpp>
#include <jni/object.hpp>
#include <exception>
#include <type_traits>
#include <iostream>
namespace jni
{
template < class M, class Enable = void >
struct Nativ... | [
"romainthomasc@gmail.com"
] | romainthomasc@gmail.com |
55995aeb48ad970642db50003a20a0b3b4918d5b | c45ed46065d8b78dac0dd7df1c95b944f34d1033 | /TC-SRM-567-div1-1000/oysq.cpp | 9ce257fe231a6a09783dc6cbca5f2e0060064870 | [] | no_license | yzq986/cntt2016-hw1 | ed65a6b7ad3dfe86a4ff01df05b8fc4b7329685e | 12e799467888a0b3c99ae117cce84e8842d92337 | refs/heads/master | 2021-01-17T11:27:32.270012 | 2017-01-26T03:23:22 | 2017-01-26T03:23:22 | 84,036,200 | 0 | 0 | null | 2017-03-06T06:04:12 | 2017-03-06T06:04:12 | null | UTF-8 | C++ | false | false | 1,806 | cpp | // BEGIN CUT HERE
// END CUT HERE
#line 5 "Mountains.cpp"
#include <bits/stdc++.h>
using namespace std;
#define SZ(x) (int)(x).size()
#define pb push_back
#define mp make_pair
#define fi first
#define se second
typedef vector<int> VI;
typedef vector<string> VS;
typedef vector<double> VD;
typedef long long ll;
typed... | [
"owaski123@gmail.com"
] | owaski123@gmail.com |
0f9f0ead55a6b801d35b58d56eb57f2de6bcb09a | 4c1d515719425db127ba5285b5be4f03af10d5a1 | /URI-Judge/URI_1111.cpp | feb270b9bb96d652571c2d090fdfed91da0c8e01 | [] | no_license | matheusmtta/Competitive-Programming | 26e51741332aed223b9231da33749940f5a1b977 | e254b80090cc75bc213aad0a7957875842e90f1a | refs/heads/master | 2023-04-28T18:08:51.417470 | 2023-04-24T21:09:00 | 2023-04-24T21:09:00 | 223,605,672 | 7 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,974 | cpp | #include <bits/stdc++.h>
using namespace std;
#define MOD 1000000007
#define INF (int)0x3f3f3f3f
#define MP make_pair
#define PB push_back
typedef long int int32;
typedef unsigned long int uint32;
typedef long long int int64;
typedef unsigned long long int uint64;
const int MAX = 15;
int n;
map <pair<int, int>, v... | [
"matheusaquino199@gmail.com"
] | matheusaquino199@gmail.com |
ad656658ad1414291b8accf70d9023af491026c8 | 4258a21020932d0849a95c182aa8086a0467e641 | /sdk/verify/mi_demo/alderaan/vpe/st_main_vpe.cpp | 65bd8dc4eb7499503c3429ff7b88012308da7223 | [] | no_license | sengeiou/Democode-TAKOYAKI-BETA001-0312 | a04647412764b57532a1b8ca02a1b4966a5a5395 | 0c3261e5c067314d2ac4f858399fff8cc2793f01 | refs/heads/master | 2022-05-24T09:48:13.816615 | 2020-04-13T10:47:24 | 2020-04-13T10:47:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 107,538 | cpp | /* Copyright (c) 2018-2019 Sigmastar Technology Corp.
All rights reserved.
Unless otherwise stipulated in writing, any and all information contained
herein regardless in any format shall remain the sole proprietary of
Sigmastar Technology Corp. and be kept in strict confidence
(��Sigmastar Confidential Informati... | [
"zhaozhenhong5@aliyun.com"
] | zhaozhenhong5@aliyun.com |
6292c448cb2d02c252c06d1c449d9574ed567697 | 81041c13fcb8d0d9cbd46b018d72c77dd0400429 | /exception/cFileExce.h | 10ea0614817ac583ca52e5e6cfdddcc7da511358 | [] | no_license | degawang/degawong | 0c49feb10941ed915fa6cfe3677b85d3baf8fb36 | 64e20912fc3e8c4dae58a14b097cc8ec1b052365 | refs/heads/master | 2021-09-17T19:32:48.017411 | 2018-07-04T14:33:05 | 2018-07-04T14:33:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 575 | h | #pragma once
#include "cDegaException.h"
namespace degawong {
class cFileExce :
public cDegaException {
public:
cFileExce();
cFileExce(std::string _fileReason)
: exceReason(_fileReason) {};
~cFileExce();
public:
friend std::istream& operator >> (std::istream& is, cFileExce &exce) {
is >> exce.exceReason;
... | [
"degawong@hotmail.com"
] | degawong@hotmail.com |
0a0893e0d653780a1c0a7ac24d780cd30093a535 | f37a800cd831b948949ecc054c5be2aac87b4331 | /lab6-sound/tinyos/support/cpp/ali/ACP/main.cpp | e4df1e401597a08f4175046af2e200a9bfe01a34 | [] | no_license | ChenchengLiang/Practical-Course-on-WSNs-Lab-WS16-17 | e1f3018900cecaa49731163b3f3ff79a50321c5b | c7f2573ad558c514d6d6985cd78c6131e74db04d | refs/heads/master | 2020-03-31T10:40:51.605436 | 2018-10-08T20:48:24 | 2018-10-08T20:48:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,571 | cpp | /** Copyright (c) 2010, University of Szeged
* 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 condition... | [
"lcckkkhaha@163.com"
] | lcckkkhaha@163.com |
e4a9c8ca91f878dc313aee2aad48a546408124a7 | e926db4dab0237aaae30a539b5f69ad37b195091 | /scale_puzzle/src/scale_puzzle/scale_puzzle.ino | 5c0c60e108742a4fd7256aae18f04fe23cae34eb | [] | no_license | ubilab-escape/prototype | 6b4fca4f3d1820278a3d7847f3ef2daed9c7af0f | a673625ef53867bb029d6ddc2312c830b2f05bfa | refs/heads/master | 2020-08-26T20:52:12.852255 | 2020-02-29T21:34:13 | 2020-02-29T21:34:13 | 217,144,860 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 18,400 | ino | #include <Arduino.h>
#include <ESP8266WiFi.h>
/* define keepalive settings before PubSubClient.h */
#define MQTT_KEEPALIVE 10
#include <PubSubClient.h>
#include <ArduinoJson.h>
#include "HX711.h"
#include "scale_puzzle.h"
#include "wifi_pw.h"
/* uncomment to activate debug mode */
//#define DEBUG
/* State machine var... | [
"niklas.steinwachs@gmail.com"
] | niklas.steinwachs@gmail.com |
b4bacf770bbde397468dac64964b28fbbf6a94f4 | b8499de1a793500b47f36e85828f997e3954e570 | /v2_3/build/Android/Preview/app/src/main/include/Fuse.NodeGroupBase.h | eb078dfd79ac290e0c6d5d63a1ea4472d3bb8d97 | [] | no_license | shrivaibhav/boysinbits | 37ccb707340a14f31bd57ea92b7b7ddc4859e989 | 04bb707691587b253abaac064317715adb9a9fe5 | refs/heads/master | 2020-03-24T05:22:21.998732 | 2018-07-26T20:06:00 | 2018-07-26T20:06:00 | 142,485,250 | 0 | 0 | null | 2018-07-26T20:03:22 | 2018-07-26T19:30:12 | C++ | UTF-8 | C++ | false | false | 3,019 | h | // This file was generated based on 'C:/Users/hp laptop/AppData/Local/Fusetools/Packages/Fuse.Nodes/1.9.0/NodeGroup.uno'.
// WARNING: Changes might be lost if you edit this file directly.
#pragma once
#include <Fuse.Behavior.h>
#include <Fuse.Binding.h>
#include <Fuse.INotifyUnrooted.h>
#include <Fuse.IProperties.h>
#... | [
"shubhamanandoist@gmail.com"
] | shubhamanandoist@gmail.com |
c515a27617525d746053e17e71df5d783b320aab | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/httpd/gumtree/httpd_repos_function_689_httpd-2.2.14.cpp | 059621ec5096a4c8c5911be99ef7fb26a21a0b32 | [] | 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 | 111 | cpp | static int bio_filter_out_gets(BIO *bio, char *buf, int size)
{
/* this is never called */
return -1;
} | [
"993273596@qq.com"
] | 993273596@qq.com |
96dce74cc57071dcc14ad9eeb385db0bea59a9d9 | 8e514382d5844d0208ebba778eab28b0f76a89cd | /src/interface/execution_context.hpp | 8c3d60916b4d3bbf3deaf42dcc1cfc7470a6bb0f | [
"MIT"
] | permissive | KhalilBellakrid/ledger-test-library | 580255d517f1ab7d4733614339e419b6d081b236 | 250c9fc992f498360f6396d4ed3ea1bb7637d863 | refs/heads/master | 2021-05-02T12:58:22.810296 | 2018-02-16T17:43:14 | 2018-02-16T17:43:14 | 120,751,274 | 0 | 3 | null | 2018-02-16T10:29:43 | 2018-02-08T11:12:46 | C++ | UTF-8 | C++ | false | false | 453 | hpp | // AUTOGENERATED FILE - DO NOT MODIFY!
// This file generated by Djinni from async.djinni
#pragma once
#include <cstdint>
#include <memory>
namespace ledgerapp_gen {
class Runnable;
class ExecutionContext {
public:
virtual ~ExecutionContext() {}
virtual void execute(const std::shared_ptr<Runnable> & runna... | [
"khalil.bellakrid@ledger.fr"
] | khalil.bellakrid@ledger.fr |
bc4a731ca349b014dc306381f35e48f211c6a2fa | af0ecafb5428bd556d49575da2a72f6f80d3d14b | /CodeJamCrawler/dataset/11_1078_45.cpp | 020ee7d9a02bb81a8af136f96009f5cbecb77ce6 | [] | no_license | gbrlas/AVSP | 0a2a08be5661c1b4a2238e875b6cdc88b4ee0997 | e259090bf282694676b2568023745f9ffb6d73fd | refs/heads/master | 2021-06-16T22:25:41.585830 | 2017-06-09T06:32:01 | 2017-06-09T06:32:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,416 | cpp | //
//
package main
import (
"io/ioutil"
"strconv"
"strings"
"fmt"
"bufio"
"os"
"sort"
)
var out = "Case #%d: [%s]\n"
type comb []string
func (me *comb) combine(s1, s2 string) string {
tmp := []string{s1, s2}
tm := make([]string, 2)
sort.SortStrings(tmp)
for _, v := range *me {
tm = strings.Split(v, ""... | [
"nikola.mrzljak@fer.hr"
] | nikola.mrzljak@fer.hr |
310606d17fd13b0c2265e676adf73bbef6453ada | 9bd74727033ae641c2d6c0f57fe1576fa7b05b37 | /micrisoft/sharememory/Writer.cpp | e57c593eb5dda6385171cf4e5719b2105bc49b61 | [] | no_license | kamleshiitbhu/practice | eeff2ce478bfe176f4063f26dae020f6de9e5ab0 | ec5c38d5e1f447811e578d619432f289266f61a3 | refs/heads/master | 2022-05-30T21:22:00.194423 | 2022-05-19T10:58:29 | 2022-05-19T10:58:29 | 124,258,203 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 529 | cpp | #include <iostream>
#include <sys/ipc.h>
#include <sys/shm.h>
#include <stdio.h>
using namespace std;
int main()
{
// ftok to generate unique key
key_t key = ftok("shmfile",65);
// shmget returns an identifier in shmid
int shmid = shmget(key,1024,0666|IPC_CREAT);
// shmat to attach to shared memo... | [
"kamleshkumar356@gmail.com"
] | kamleshkumar356@gmail.com |
f92333ed3b78cf40f333055a2bf75f75e6267738 | 36183993b144b873d4d53e7b0f0dfebedcb77730 | /GameDevelopment/AI Game Programming Wisdom/SourceCode/02 Useful Techniques/07 Vykruta/ChildView.h | 50ca275123e31322ffae7e7e2b7831e59de9a421 | [] | no_license | alecnunn/bookresources | b95bf62dda3eb9b0ba0fb4e56025c5c7b6d605c0 | 4562f6430af5afffde790c42d0f3a33176d8003b | refs/heads/master | 2020-04-12T22:28:54.275703 | 2018-12-22T09:00:31 | 2018-12-22T09:00:31 | 162,790,540 | 20 | 14 | null | null | null | null | UTF-8 | C++ | false | false | 1,533 | h | // ChildView.h : interface of the CChildView class
//
/////////////////////////////////////////////////////////////////////////////
#if !defined(AFX_CHILDVIEW_H__6F71D25A_D83E_11D5_BA44_000102368FA3__INCLUDED_)
#define AFX_CHILDVIEW_H__6F71D25A_D83E_11D5_BA44_000102368FA3__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#... | [
"alec.nunn@gmail.com"
] | alec.nunn@gmail.com |
a303607dc917160905dfc1459e96cb85883d4d76 | 4485b30d3188a4aed2d2d5dfb246e048c0505da1 | /Solution/Solution/src/Engine/Engine.h | cde557a7a49fdfc61db7ee940e107427d3165038 | [] | no_license | BooLeet/PhasePortrait | 3a2b214ece1f805cbee3842a4a4d5561fb56ce9e | 5ea0fd2636617b20b2e1c37d6d7b4f5ab2f92081 | refs/heads/main | 2023-08-22T01:34:45.540012 | 2021-10-13T17:11:14 | 2021-10-13T17:11:14 | 327,359,563 | 7 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,742 | h | #pragma once
#include <vector>
#include "OpenGLComponents.h"
#include <string>
class Scene;
class CameraBehaviour;
class RendererBehaviour;
class Input;
class Shader;
class Engine
{
private:
GLFWwindow* window;
Scene* scene;
double unscaledDeltaTime;
size_t windowWidth, windowHeight;
bool fullScreen;
Inp... | [
"maxtheboo1337@gmail.com"
] | maxtheboo1337@gmail.com |
aa7bcc521ec4e31416d884ccb82f1c5e1c0fb804 | 5d68b88653b6e495439d99194964fc4bf6c25aff | /lib/RcppParallel/include/tbb/flow_graph_opencl_node.h | 89f4da7b167b1711b519b2b8ab0678bb85c738bc | [] | no_license | BRICOMATA9/TRDFMLQEO | 8b3b0690547ad5b40cebb45bf996dee9ee7dbc40 | dadaff4a3aa290809336a784357b13787bd78046 | refs/heads/master | 2020-05-16T00:31:36.108773 | 2019-04-21T20:30:53 | 2019-04-21T20:30:53 | 182,571,145 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 60,073 | h | /*
Copyright (c) 2005-2017 Intel Corporation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable la... | [
"githubfortyuds@gmail.com"
] | githubfortyuds@gmail.com |
d3a500690115a80dd9f2aa4bdeace366641c3426 | 1f48a24e68d346164bd654b4c11adcc1770fbcf2 | /kocsi_pd.ino | 94f2e613079fede2ddeaf8adbd0437def4a346ba | [
"MIT"
] | permissive | erwzqsdsdsf/TDK | 018f04e9f3bfacf1ae3ca7d4ff062072ae6a9bd7 | c62c4ffac17caeed9d09f63f1ee068a19f85b679 | refs/heads/master | 2022-04-09T18:56:38.396222 | 2020-02-28T09:20:16 | 2020-02-28T09:20:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,529 | ino | #include <Arduino.h>
#include <Wire.h>
#include <avr/wdt.h>
#include "PinChangeInt.h" //interrupt kezeléshez
//lábkiosztás definiálása
#define enc_pend1 4 //szögelfordulás mérése
#define enc_pend2 5
#define enc_cart1 2 //kocsi elmozdulásmérése
#define enc_cart2 3
#define... | [
"antalpeter8840@gmail.com"
] | antalpeter8840@gmail.com |
a4c62877e6c1d20e71dc914be8a9177173f8443f | 736c9e4877ccdecd96d233d67d4e395e5f735919 | /pcc-gradient/sender/app/incast_client.cpp | 5a2d09a50a20adc972a85dd2791ceb88b8fd155b | [
"GPL-3.0-only"
] | permissive | 5G-Measurement/PCC-Uspace | a35601692360290596fd9940ca11973c7ea0c23d | f89a3de579344585e38c926262bdb05964dd08b8 | refs/heads/master | 2023-01-24T00:18:35.610111 | 2020-11-22T03:53:43 | 2020-11-22T03:53:43 | 313,701,713 | 0 | 0 | BSD-3-Clause | 2020-11-17T18:51:29 | 2020-11-17T18:02:30 | null | UTF-8 | C++ | false | false | 5,192 | cpp | #ifndef WIN32
#include <unistd.h>
#include <cstdlib>
#include <cstring>
#include <netdb.h>
#include <time.h>
#include <math.h>
#else
#include <winsock2.h>
#include <ws2tcpip.h>
#include <wspiapi.h>
#endif
#include <iostream>
#include <udt.h>
#include "cc_incast.h"
#include <sys/time.h>
usin... | [
"njay2@illinois.edu"
] | njay2@illinois.edu |
02792efc58567c93adaa1f8f828d230c4152afb2 | c5efae416d17809142a24bf6536eb3d48c75843e | /pywin32-217/com/win32com/src/PythonCOM.cpp | 18b4d8d9afbe3a7d7523f6faaf5940bc20906367 | [] | no_license | ctismer/Python-2.7.5-VS2010 | 846a804cee8fa7143d6fdcd3b4e9b60c24c1428f | 63476264a452d856ae197f46070f96fd8f4a066d | refs/heads/master | 2020-12-14T02:11:04.334418 | 2013-08-09T20:45:04 | 2013-08-09T20:45:04 | null | 0 | 0 | null | null | null | null | WINDOWS-1250 | C++ | false | false | 98,519 | cpp | // pythoncom.cpp :
/***
Note that this source file contains embedded documentation.
This documentation consists of marked up text inside the
C comments, and is prefixed with an '@' symbol. The source
files are processed by a tool called "autoduck" which
generates Windows .hlp files.
@doc
***/
#include "stdafx.h"
#in... | [
"denver@sleepydragon.org"
] | denver@sleepydragon.org |
72a574f6cb59aee59ab7a8a477d8c523e85cdcdf | 5486c8a5695a885152a6ff0278f64bc32bbf64b9 | /UVa/13025 - Back to the Past.cpp | 4ee81829983032e05f8f68b61b52f740444e2571 | [] | no_license | emrul-chy/Competitive-Programming | 3a3c5fd8fb41320d924c309873868a6d81585bf4 | b22fddadaec2c40c1ffebaf594ded94434443662 | refs/heads/master | 2021-01-10T23:37:36.250883 | 2018-01-18T16:39:09 | 2018-01-18T16:39:09 | 70,418,520 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 93 | cpp | #include<stdio.h>
int main()
{
printf("May 29, 2013 Wednesday\n");
return 0;
}
| [
"noreply@github.com"
] | noreply@github.com |
f5f1dd91f18f2933632b4ab953dc066b33533cc9 | 52e20f6ebe62bb24a0cc3c024b3ed8af0ef7bd57 | /Geometry Objects/ConvexCylinder.cpp | 028001981f1396ce100d1a547a3c7bc937c2d44b | [] | no_license | matthiascy/crocus | a4bcc9b5683230f97c71fc8c8232e3cfd1e3029b | d0780e36d30c43a35d5bf9adc6b99892845cf95e | refs/heads/master | 2023-01-14T01:15:29.091364 | 2019-12-09T17:59:51 | 2019-12-09T17:59:51 | 42,220,320 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,218 | cpp | #include "ConvexCylinder.h"
#include <cmath>
const double ConvexCylinder::kEpsilon = 0.001;
ConvexCylinder::ConvexCylinder(void)
: GeometryObject(),
y0(-1.0),
y1(1.0),
radius(1.0),
inv_radius(1.0)
{}
ConvexCylinder::ConvexCylinder(const double bottom, const double top, const double r)
: ... | [
"matthias_cy@outlook.com"
] | matthias_cy@outlook.com |
4af65f9f424670bcbb0ce716463dab0e8b7d8b3c | 65439e109bcb4644341187d911fc6dcfd145ac4a | /src/Instrucao.cpp | 663742f4db837fb5200285bda3223fc7598fe1e8 | [] | no_license | juan-santos/apresentacaoPAA | 65e1ce2e802d15cdf5be9edfeba25a509ac2e4f7 | 7d082e692841a8b1a2206155c7259782d4da40be | refs/heads/master | 2021-08-23T10:36:53.257363 | 2017-12-03T15:08:58 | 2017-12-03T15:08:58 | 112,538,810 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 921 | cpp | #include "Instrucao.h"
Instrucao::Instrucao() {
}
int Instrucao::Run(sf::RenderWindow &App) {
sf::Event Event;
sf::Texture Texture;
sf::Sprite Sprite;
bool Running = true;
if (!Texture.loadFromFile("bin/Release/files/images/menu/instrucao.png")){
std::cerr << "Error loading menu.png" << std::endl;
}
Spri... | [
"juan.h.santos@gmail.com"
] | juan.h.santos@gmail.com |
ae992b6a1b0f1da69bc52e67b368ab40419c78e1 | 66c869c7e34c1557d17ba7185549ea49f8955b64 | /core/include/ample/ActionsFactory.h | a94ae78d95d9b62122cf318f9da553b627fdb224 | [
"MIT"
] | permissive | blizmax/ample | f091a00b9a69cac510be12d99f6f62de6989ec65 | 71336c2fb69748b8c2f27a6810e7cc047cbab359 | refs/heads/master | 2022-09-19T14:53:02.046860 | 2020-05-27T14:58:45 | 2020-05-27T14:58:45 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,341 | h | #pragma once
#include "Factory.h"
#include "GraphicalRotateAction.h"
#include "GraphicalTranslateAction.h"
#include "FollowObjectAction.h"
#include "CameraTranslateAction.h"
#include "PhysicalApplyForceAction.h"
namespace ample::game::factory
{
static ample::utils::Factory<Action, const std::string &> ActionsFactory;... | [
"glebmar2001@gmail.com"
] | glebmar2001@gmail.com |
bee932171576f57bee93e221b6d8fc1408868561 | 964e0c2adfe540f6412472370b2ccc51f938e207 | /3.5일차/Sprite.cpp | 70fbbf76802b2914a30994b5b226bd90b3ef0cd3 | [] | no_license | andy5840/sosujungong | c804ed49792f77f0755b4231c96e048d50b4d1c1 | d6002d94fca70d368ad403c091ecc06d7190cf0c | refs/heads/master | 2022-11-30T12:38:49.348793 | 2020-08-19T06:50:06 | 2020-08-19T06:50:06 | 286,414,711 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 979 | cpp | #include "stdafx.h"
#include "Sprite.h"
Sprite::Sprite(char* path)
{
texture = textureManager->LoadTextureFromFile(path);
D3DSURFACE_DESC desc;
texture->GetLevelDesc(0, &desc);
width = desc.Width;
height = desc.Height;
visibleRect.left = 0;
visibleRect.right = 0;
visibleRect.top = 0;
visibleRect.bottom = 0... | [
"kalfka12345@gmail.com"
] | kalfka12345@gmail.com |
01a7b31debe429bb783cef193cf4446270cee1fd | 33035c05aad9bca0b0cefd67529bdd70399a9e04 | /src/boost_geometry_io_svg_write_svg_multi.hpp | 3c2086a333da0ec0f33bedd43d6b2a07a06ecaf5 | [
"LicenseRef-scancode-unknown-license-reference",
"BSL-1.0"
] | permissive | elvisbugs/BoostForArduino | 7e2427ded5fd030231918524f6a91554085a8e64 | b8c912bf671868e2182aa703ed34076c59acf474 | refs/heads/master | 2023-03-25T13:11:58.527671 | 2021-03-27T02:37:29 | 2021-03-27T02:37:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 53 | hpp | #include <boost/geometry/io/svg/write_svg_multi.hpp>
| [
"k@kekyo.net"
] | k@kekyo.net |
d408ca50bdb42bf173e87a6a271e041646a70101 | ff25608db10343d007c5b6e3cdd1bbba72b49c23 | /Tanoa_Life.Tanoa/The-Programmer/GPS/menu/gps_menu_map.hpp | 3d8515074ac7a19b6fd3ce27f11890d3ee68c546 | [] | no_license | 172644/FriendLife.Tanoa | f722b690dd35132e839d829dd3e7cfb62f8d5a12 | cb1efc0ccefacd6abcb390c22813c881298091a4 | refs/heads/master | 2022-12-25T21:37:24.101175 | 2020-10-10T21:03:59 | 2020-10-10T21:03:59 | 289,088,357 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,324 | hpp | /*
Author: Maxence Lyon
Altis DEV: https://altisdev.com/user/maxence-lyon
Teamspeak 3: ts.the-programmer.com
Web site: www.the-programmer.com
Steam: « Une Vache Sur CS – Maxence », please leave a message on my profile who says the exact reason before adding me.
Terms of use:
- This file... | [
"azoxx.g@gmail.com"
] | azoxx.g@gmail.com |
a02d8fd4ce849595ce3f7fd9eb24b6f0fa002e6a | dba9410a15ba312c5a37502b7c040de6c525974e | /bus-stops/bus-stops.cpp | 77805271b9afc43423202845be05303fa15e7971 | [] | no_license | feco93/OSM-projects | 587c53b061ada45035785baef2c2ae71c4e2e599 | 33815a894d64d56ccd1291427d288c8efcb69178 | refs/heads/master | 2020-04-25T14:36:03.003808 | 2015-04-12T08:21:35 | 2015-04-12T08:21:35 | 33,809,001 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,896 | cpp | /*
* Sipos Ferenc, siposferenc93@gmail.com
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This prog... | [
"siposferenc93@gmail.com"
] | siposferenc93@gmail.com |
2442c3ecbb03bbc84d0180304e82123b0a16c202 | 7f11317085d407d10b0e55c4b31bc81333a07eaa | /Codeforces/1191/d/d.cpp | b3602ede18875f802b723f552ca94b70a776b2d7 | [] | no_license | ericbrandwein/competencias | 14116a1bc76e70a55ebebdc946679cd92cb8a3db | bf22b874646586ae7de573991fa932a2fa90e2c9 | refs/heads/master | 2023-05-03T09:51:26.100257 | 2021-05-30T16:18:08 | 2021-05-30T16:18:08 | 371,562,451 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,423 | cpp | //#pragma GCC optimize("Ofast")
//#pragma GCC optimize("unroll-loops,no-stack-protector")
//#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")
#include <bits/stdc++.h>
#define IOS ios::sync_with_stdio(false);cin.tie(0);cout.tie(0)
#define endl '\n'
#define elif else if
#define ll long long i... | [
"brandweineric@gmail.com"
] | brandweineric@gmail.com |
73eeb9facbd46821aa6536f72a4ae4fa9dae3cf2 | fb6331627a01ff490b474a890ff56c2310f6bc39 | /ChinolChoko/kzyKT/kzyKT.cc | 8390ca858fccfcc6ffbbc0e5b5ecad25cb806521 | [] | no_license | satellitex/acpc2017 | a065b5f66734c5bdb206ae1c9c15f79ea032db70 | 8f938553eaaafe56565d77da9a406f05fe2ee107 | refs/heads/master | 2021-01-01T15:49:01.855760 | 2017-09-19T00:02:31 | 2017-09-19T00:02:31 | 97,707,979 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 2,220 | cc | #include <bits/stdc++.h>
using namespace std;
#define F first
#define S second
#define rrep(i,n) for(int i=(int)(n)-1;i>=0;i--)
#define REP(i,a,b) for(int i=(int)(a);i<(int)(b);i++)
#define rep(i,n) REP(i,0,n)
typedef pair<double,double> P;
#define N 1001
double d[1<<15][15][15];
vector<int> G[N],rG[N],g;
bool u[N];
in... | [
"s1200008aizu@gmail.com"
] | s1200008aizu@gmail.com |
a020088919fe78e4e4e195a36c06833bf39b26b5 | 9647fd27fed29c2614f8d406fa90f19f1b55370c | /simon-touch/voipproviderfactory.cpp | d88aae90ef30c77f894b6fefe015e0fa3cf6a927 | [] | no_license | KDE/simon-tools | aa42bdd96dff99a67c0e1a93adaa89afce7f749b | ca668c91b6ac2455b8bdd47f013701eff1ea1fb9 | refs/heads/master | 2021-01-06T20:37:26.029880 | 2019-03-03T01:06:46 | 2019-03-03T01:06:46 | 42,732,489 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 954 | cpp | /*
* Copyright (C) 2011-2012 Peter Grasch <grasch@simon-listens.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2,
* or (at your option) any later version, as published by the Free
* Software Foundation
*
* ... | [
"grasch@simon-listens.org"
] | grasch@simon-listens.org |
a120c473245e832ef76ab896c1f66b26bfb39e58 | 26ad4cc35496d364b31396e43a863aee08ef2636 | /SDK/SoT_Proposal_Merchant_Rank07_CargoRun_03_classes.hpp | 002c3f2d67d747c02e3e6b1c78b449cd49bd9fa1 | [] | no_license | cw100/SoT-SDK | ddb9b19ce6ae623299b2b02dee51c29581537ba1 | 3e6f12384c8e21ed83ef56f00030ca0506d297fb | refs/heads/master | 2020-05-05T12:09:55.938323 | 2019-03-20T14:11:57 | 2019-03-20T14:11:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 817 | hpp | #pragma once
// Sea of Thieves (1.4) SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
#include "SoT_Proposal_Merchant_Rank07_CargoRun_03_structs.hpp"
namespace SDK
{
//---------------------------------------------------------------------------
//Classes
//---------------------------------------------------------... | [
"igromanru@yahoo.de"
] | igromanru@yahoo.de |
a40b78e53bcb5d16ac5dd4fc44375829d1f9c9c4 | 2ded02bed0db431b80e918b41c644e66478f1c0a | /array/union_sorted_array.cpp | 407328c508b4b606a09655b9ebaaa41bafb39c31 | [] | no_license | itsmegr/next-dsa | e73bbd373c8bfc0e93d84d2870849b764c11abdb | fa50875f3b7a77bf9bfb215c311c5d8a280c3f4e | refs/heads/master | 2023-05-15T00:32:12.443113 | 2021-06-09T17:02:55 | 2021-06-09T17:02:55 | 325,457,327 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,197 | cpp | #include<bits/stdc++.h>
using namespace std;
#define fo(i,n) for(i=0;i<n;i++)
#define Fo(i,k,n) for(i=k;k<n?i<n:i>n;k<n?i+=1:i-=1)
#define ll long long
#define ull unsigned long long
#define deb(x) cout << #x << "=" << x << endl
#define deb2(x, y) cout << #x << "=" << x << "," << #y << "=" << y << endl
#define pb push_... | [
"unigovind@gmail.com"
] | unigovind@gmail.com |
b95f0a0598ccb5f1e0c5f92f6f1d99ec119ac348 | 77263106b3b07890763ae16c2b43b200480579ac | /ball trail/box.cpp | 470f23390b23d740b584b74c62ce6ac0757ca76f | [] | no_license | vivasvan1/tempballtrail | 1f608f9453a7cb4f03abb470e296682b19e2a087 | bfc00c95bcbf4570675fea734ede6307740c9ad0 | refs/heads/master | 2021-05-15T04:14:04.008632 | 2018-02-12T18:31:06 | 2018-02-12T18:31:06 | 119,888,572 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 345 | cpp | #include "box.h"
Box::Box(const float width,const float height,const float depth,const std::string& fileName)
{
SetDepth(depth);
SetHeight(height);
}
Box::~Box()
{
//dtor
}
void Box::Draw(Box box)
{
// floor.Draw();
// ceil.Draw();
// left.Draw();
// right.Draw();
// endWall.Draw();
// ... | [
"vivasvanpatel40@gmail.com"
] | vivasvanpatel40@gmail.com |
d224da84e34b8ac851d28e647b9b7b550e82f4c4 | d6b461bf38bdadc03b30d39b1511b7e658d4890a | /Necro/Enemy.h | 96857599728903225ae922242956e5b3031f8bd0 | [] | no_license | koe22kr/2Dbasis | f27d74a038f6eb5f92ae91fae88ea2dbac2bd98c | 1763942042c31f520a4039deba8d9ad9ad0fbc82 | refs/heads/master | 2022-04-05T08:26:19.643151 | 2020-03-04T01:42:09 | 2020-03-04T01:42:09 | 185,978,543 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 745 | h | #pragma once
#include "Std.h"
#include "Chara.h"
class Pather
{
public:
Pather* pre_pather = nullptr;
POINT pos = { 0,0 };
int Score = 0;
int direction;
int Getdirection();
Pather();
~Pather();
private:
};
class Enemy :public Chara
{
public:
virtual bool Init();
bool relea... | [
"koe22kr@gmail.com"
] | koe22kr@gmail.com |
d1f1a335cda6b2fecd64ce254996e08f8219665b | 5ec06dab1409d790496ce082dacb321392b32fe9 | /clients/cpp-restsdk/generated/model/ComAdobeGraniteLicenseImplLicenseCheckFilterProperties.h | b697353f2d529559a4bdfbe1cffc3fc696309055 | [
"Apache-2.0"
] | permissive | shinesolutions/swagger-aem-osgi | e9d2385f44bee70e5bbdc0d577e99a9f2525266f | c2f6e076971d2592c1cbd3f70695c679e807396b | refs/heads/master | 2022-10-29T13:07:40.422092 | 2021-04-09T07:46:03 | 2021-04-09T07:46:03 | 190,217,155 | 3 | 3 | Apache-2.0 | 2022-10-05T03:26:20 | 2019-06-04T14:23:28 | null | UTF-8 | C++ | false | false | 2,890 | 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 3.2.1-SNAPSHOT.... | [
"cliffano@gmail.com"
] | cliffano@gmail.com |
7fae0103d14ec73e12e2b4e94f9dcf6e30b681b4 | 2abc848023b0701b0a1c66b53a29938f6819a6dd | /Aula-01/Tarefa-01/Tarefa-01.ino | 82d7796dd8502be46898d7f0d8634d81cafa5563 | [
"MIT"
] | permissive | thiagola92/PUC-INF1805 | 1e2fe76994ea9fe902fa20407544c10c7d2598bb | 8d5b022f97181c698fa6607b3aecb672fe95b1eb | refs/heads/master | 2021-06-25T22:35:36.001266 | 2020-01-24T04:57:51 | 2020-01-24T04:57:51 | 124,196,700 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,348 | ino | #define LED_PIN 13
#define KEY1 A1
#define KEY2 A2
#define KEY3 A3
int state = 1;
float delayTime = 1000;
unsigned long old;
int but1pressed;
int but2pressed;
int but1delay = 1000;
int but2delay = 1000;
unsigned long but1old;
unsigned long but2old;
void setup() {
// put your setup code here, to run once:
pinMode(... | [
"thiagola92@gmail.com"
] | thiagola92@gmail.com |
824d50a5a1a74e3339f7f3b167e15a8ee569caa2 | 349ca5e14381a74d7d1e0fe542a0d62c664ca2da | /c++/Study1/Study1/CTest1.h | 5595412c4a53a49197552463ededff0f1846b153 | [] | no_license | somnisfelix/work | a4994c3a7b6409e3e954d0ed5b473f202288caaf | 57af7c092faf2d1c2cfa5e33655908ceb4346dc1 | refs/heads/master | 2020-07-27T10:59:05.985251 | 2020-01-07T01:59:39 | 2020-01-07T01:59:39 | 209,066,492 | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 782 | h | #pragma once
class CTest1
{
public:
CTest1();
virtual ~CTest1();
public:
void ConstTest1(const int number)
{
//number = 100; // 에러 매개변수에 const가 있으므로
m_nTestNumber = 20;
}
void ConstTest2(int number) const
{
number = 100;
//m_nTestNumber = 20; // 에러 함수선언 뒤에 const가 붙었으므로
//int test = ConstTest3(20);
... | [
"somnisfelix@naver.com"
] | somnisfelix@naver.com |
3e22a61c4bc4645cd12aa633e270d42cc0a54cd5 | 6c13991a694cd4ab5320c5bf79bab0e9d392e354 | /envoy/source/common/protobuf/utility.cc | f2c94278313fca82213637bd6e7b14b994780d50 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | bdecoste/upstream-envoy-openssl | 4cac1ac3df194f0896bb79db2813f0c8db14e8ca | f2bd116a9dd1f7da8ba00b6d473607190fdb0b2c | refs/heads/master | 2022-10-13T08:05:35.704119 | 2019-10-11T22:11:24 | 2019-10-11T22:11:24 | 208,906,237 | 0 | 0 | Apache-2.0 | 2022-09-23T22:28:25 | 2019-09-16T22:04:09 | C++ | UTF-8 | C++ | false | false | 17,618 | cc | #include "common/protobuf/utility.h"
#include <numeric>
#include "envoy/protobuf/message_validator.h"
#include "common/common/assert.h"
#include "common/common/fmt.h"
#include "common/json/json_loader.h"
#include "common/protobuf/message_validator_impl.h"
#include "common/protobuf/protobuf.h"
#include "absl/strings... | [
"bdecoste@gmail.com"
] | bdecoste@gmail.com |
8901c7b0a6522c3bafbf3f2c7233c4b075942a78 | b7ef6ad95ba4479255abe0e995b4f3928245223b | /myEngine/eGameObject.cpp | ed3dd731ddd75c8b462e24818759d236bb46ff17 | [] | no_license | jelcic/SpaceHero | 2cdfd44115675a87b6cd63badeba21a9da4ecb8f | dcddedaaffd17b86c7309f1e2ce72cb56122ce45 | refs/heads/master | 2020-04-29T00:45:41.836522 | 2019-03-18T21:01:45 | 2019-03-18T21:01:45 | 175,096,326 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,479 | cpp | #include "eGameObject.h"
#include "Director.h"
namespace Engine
{
eGameObject::eGameObject(int Zorder)
: zOrder(Zorder) {}
eGameObject::~eGameObject() { }
void eGameObject::Init()
{
init();
}
void eGameObject::Update(float dt)
{
update(dt);
if (collider)
collider->Update(Angle);
}
void eGameOb... | [
"marko.jelcic@gmail.com"
] | marko.jelcic@gmail.com |
92eb27a94c553af8a00cd7466823db317e7ac020 | b4b4e324cbc6159a02597aa66f52cb8e1bc43bc1 | /C++ code/HDU Online Judge/4605(2).cpp | de7a0b735e3e27b9cf016ee47a97d7c63762f084 | [] | no_license | fsps60312/old-C-code | 5d0ffa0796dde5ab04c839e1dc786267b67de902 | b4be562c873afe9eacb45ab14f61c15b7115fc07 | refs/heads/master | 2022-11-30T10:55:25.587197 | 2017-06-03T16:23:03 | 2017-06-03T16:23:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,639 | cpp | #include<cstdio>
#include<cassert>
#include<vector>
#include<set>
using namespace std;
const int INF=2147483647;
int Rand()
{
static unsigned int seed=20160221;
seed*=0xdefaced,seed+=115216;
return (seed+=seed>>20)&0x7fffffff;
}
static int Node_COUNTER=0;
struct Node
{
Node *ch[2];
const int x;
int sz;
int cnt7,... | [
"fsps60312@yahoo.com.tw"
] | fsps60312@yahoo.com.tw |
6eafc91e8b8083415befe6df065c6c0926d9bac2 | 133d0f38b3da2c51bf52bcdfa11d62978b94d031 | /testAutocad/vendor/objectArx/inc/oleaprot.h | d44996624c03dfd45289b7b09a929ba3b15baae0 | [] | no_license | Aligon42/ImportIFC | 850404f1e1addf848e976b0351d9e217a72f868a | 594001fc0942d356eb0d0472c959195151510493 | refs/heads/master | 2023-08-15T08:00:14.056542 | 2021-07-05T13:49:28 | 2021-07-05T13:49:28 | 361,410,709 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,772 | h | //////////////////////////////////////////////////////////////////////////////
//
// Copyright 2020 Autodesk, Inc. All rights reserved.
//
// Use of this software is subject to the terms of the Autodesk license
// agreement provided at the time of installation or download, or which
// otherwise accompanies this ... | [
"antoine.cacheux@procal.fr"
] | antoine.cacheux@procal.fr |
21d815d9c686ea95921031d8fe2066005f2a5422 | c583a5fd60d8497c82c2864e5dec2d1b0853f3b1 | /0092-Reverse_Linked_List_II/main.cpp | c418ead103c018884aa2896c25fb9557c21b2957 | [] | no_license | oliver-zeng/leetcode | 401c9455c73cfe198b1d947407596aaa4d61f6fe | d98fbefb9c6fc0dc78da3cfabf7906f3fa712102 | refs/heads/master | 2020-12-19T19:17:45.522346 | 2020-06-04T12:25:03 | 2020-06-04T12:25:03 | 235,826,235 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,022 | cpp | #include<iostream>
using namespace std;
struct ListNode {
int val;
ListNode* next;
ListNode(int x) : val(x), next(NULL) {}
};
ListNode* createListNode(int arr[], int sz) {
if (sz == 0)
return NULL;
ListNode* head = new ListNode(arr[0]);
ListNode* cur = head;
for (int i = 1; i < sz;... | [
"964994927@qq.com"
] | 964994927@qq.com |
65635830a16978796b85593059886db4edac8ed2 | 9da42e04bdaebdf0193a78749a80c4e7bf76a6cc | /third_party/gecko-15/win32/include/nsIToolkitProfile.h | c0f0f24d7cf800dfcb237e90d564988c7f726f7d | [
"Apache-2.0"
] | permissive | bwp/SeleniumWebDriver | 9d49e6069881845e9c23fb5211a7e1b8959e2dcf | 58221fbe59fcbbde9d9a033a95d45d576b422747 | refs/heads/master | 2021-01-22T21:32:50.541163 | 2012-11-09T16:19:48 | 2012-11-09T16:19:48 | 6,602,097 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,430 | h | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM e:/builds/moz2_slave/rel-m-rel-xr-w32-bld/build/toolkit/profile/nsIToolkitProfile.idl
*/
#ifndef __gen_nsIToolkitProfile_h__
#define __gen_nsIToolkitProfile_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
/* For IDL files that don't want to include ... | [
"haleokekahuna@gmail.com"
] | haleokekahuna@gmail.com |
844a9d6f44dc610d697bcdaf299fd020ae4fa5f5 | 4bcc9806152542ab43fc2cf47c499424f200896c | /tensorflow/lite/delegates/gpu/cl/kernels/space_to_depth_test.cc | 17b32bcaecc7e59dca660c340a673480ac32b64d | [
"Apache-2.0",
"LicenseRef-scancode-generic-cla",
"BSD-2-Clause"
] | permissive | tensorflow/tensorflow | 906276dbafcc70a941026aa5dc50425ef71ee282 | a7f3934a67900720af3d3b15389551483bee50b8 | refs/heads/master | 2023-08-25T04:24:41.611870 | 2023-08-25T04:06:24 | 2023-08-25T04:14:08 | 45,717,250 | 208,740 | 109,943 | Apache-2.0 | 2023-09-14T20:55:50 | 2015-11-07T01:19:20 | C++ | UTF-8 | C++ | false | false | 1,938 | cc | /* Copyright 2020 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or a... | [
"gardener@tensorflow.org"
] | gardener@tensorflow.org |
d2c6bc478596a0d4ce6d3fe51280de5181f093a3 | 23d71c9281cfd801a2f5599c53d475c7879ab707 | /proyecto/ProyectoEstructuras/ProyectoEstructuras/Proyecto.cpp | 88e0ed079de6034fd8f8781ea3939d96a185e3ea | [] | no_license | abicarvajal/ProyectoEstructuras | 479dd62d44fade0b491650247911c633beb85ab6 | f2c77e9d8091f2009fff82b70b5f073c1047637a | refs/heads/master | 2021-08-22T03:50:01.074416 | 2017-11-29T06:01:18 | 2017-11-29T06:01:18 | 112,433,406 | 0 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 26,936 | cpp | #include <iostream>
#include <conio.h>
#include <string>
#include <locale.h>
#include <stdio.h>
#include <stdlib.h>
#include <windows.h>
#include "qrcodegen.h"
#define Tam 11
#define vabTam 20
using namespace std;
//DEFINICION DE ESTRUCTURAS
struct Producto { //muestra produtos
char nombre[20];
float precio = 0;
f... | [
"cheshire18eros@gmail.com"
] | cheshire18eros@gmail.com |
ce00f8ca5290e109c1ebe991232b65040ba07b06 | c4050611b5cc5f8b58ecdcb6c78b9cbe294c3da1 | /source/math/math.hpp | ee2d1633ed162a99cee85946d5df51c9a4805d09 | [] | no_license | RenatoUtsch/boids | 138ec06718fb0d62ddbfcb6fe34e0f9945abd07c | b23af256d2c7b847d2c63fe35df13b961a33f117 | refs/heads/master | 2021-01-20T11:14:16.350095 | 2014-11-30T21:20:47 | 2014-11-30T21:20:47 | 27,350,294 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,833 | hpp | /*
* Math library intended for computer graphics, animation, physics and games
* (but not restricted to it).
*
* Copyright (c) 2014 Renato Utsch <renatoutsch@gmail.com>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Sof... | [
"renatoutsch@gmail.com"
] | renatoutsch@gmail.com |
4dadd57910714d41bb996d845225e7a9767e97e7 | d80ec9a928ff228cc99f8112254b6c9b449e097d | /Game/main.cpp | c47857b47e3d03c04bec06f7ff9c68d651de4e5b | [] | no_license | The-Team-7/The-KU-Journey | 47a371dca693d3ecae779864ce666a7b9ea5925d | b8a3aa5ad85f414c1363d3afa7c8d8445fc2e926 | refs/heads/master | 2020-03-20T21:43:56.470370 | 2018-07-04T02:21:12 | 2018-07-04T02:21:12 | 137,756,919 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 139 | cpp | #include<SFML/Graphics.hpp>
#include"Game.h"
#include "DEFINITIONS.h"
int main() {
sg::Game(1920, 1080, "The KU Journey");
return 0;
} | [
"sbijay777@gmail.com"
] | sbijay777@gmail.com |
fdde0689ac5297d94b8119525d437f1b622eee3e | d6b4bdf418ae6ab89b721a79f198de812311c783 | /tem/include/tencentcloud/tem/v20201221/model/CosToken.h | c66f25d2b462bf1084b142caf574e1203c653470 | [
"Apache-2.0"
] | permissive | TencentCloud/tencentcloud-sdk-cpp-intl-en | d0781d461e84eb81775c2145bacae13084561c15 | d403a6b1cf3456322bbdfb462b63e77b1e71f3dc | refs/heads/master | 2023-08-21T12:29:54.125071 | 2023-08-21T01:12:39 | 2023-08-21T01:12:39 | 277,769,407 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,262 | h | /*
* Copyright (c) 2017-2019 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
... | [
"tencentcloudapi@tencent.com"
] | tencentcloudapi@tencent.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.