text
stringlengths
2
99.9k
meta
dict
version: 1 n_points: 4 { 88.555 206.950 88.555 429.811 353.202 429.811 353.202 206.950 }
{ "pile_set_name": "Github" }
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. // // Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. n...
{ "pile_set_name": "Github" }
# coding=utf-8 import numpy as np from gym import spaces from ..simulator import Simulator from .. import logger class DuckietownEnv(Simulator): """ Wrapper to control the simulator using velocity and steering angle instead of differential drive motor velocities """ def __init__( self, ...
{ "pile_set_name": "Github" }
# Development Report for May 08, 2017 ## Daily Meeting A daily meeting is hosted on [slack](https://dockercommunity.slack.com) every business day at 9am PST on the channel `#moby-project`. During this meeting, we are talking about the [tasks](https://github.com/moby/moby/issues/32867) needed to be done for splitting ...
{ "pile_set_name": "Github" }
// This file is part of Eigen, a lightweight C++ template library // for linear algebra. // // Copyright (C) 2008-2009 Guillaume Saupin <guillaume.saupin@cea.fr> // // This Source Code Form is subject to the terms of the Mozilla // Public License v. 2.0. If a copy of the MPL was not distributed // with this file, You c...
{ "pile_set_name": "Github" }
package com.u9porn.data.model; import java.util.List; /** * 收藏视频 * json返回数据 * * @author flymegoc * @date 2017/12/21 */ public class FavoriteJsonResult { //收藏成功 public final static int FAVORITE_SUCCESS = 2; //收藏失败 public final static int FAVORITE_FAIL = 1; //不能收藏自己的视频 public final stati...
{ "pile_set_name": "Github" }
//////////////////////////////////////////////////////////////////////////// // **** WAVPACK **** // // Hybrid Lossless Wavefile Compressor // // Copyright (c) 1998 - 2019 David Bryant. // // ...
{ "pile_set_name": "Github" }
<!DOCTYPE html> <html lang="en" ng-app="jpm"> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <link href="/releases/4.2.0/css/style.css" rel="stylesheet" /> <script src="https://code.jquery.com/jque...
{ "pile_set_name": "Github" }
<?php /** * Copyright (C) 2020 Xibo Signage Ltd * * Xibo - Digital Signage - http://www.xibo.org.uk * * This file is part of Xibo. * * Xibo is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, eithe...
{ "pile_set_name": "Github" }
<project name="ceylon-doc Ant Task test" > <target name="-init"> <echo message="ant.home: ${ant.home}"/> <echo message="ant.file: ${ant.file}"/> <echo message="src: ${arg.src}"/> <echo message="out: ${arg.out}"/> </target> <target name="ant-tasks" depends="-init"> <typedef resourc...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="utf-8"?> <!--Generated by crowdin.com--> <resources/>
{ "pile_set_name": "Github" }
// Copyright 2001-2019 Crytek GmbH / Crytek Group. All rights reserved. #include "StdAfx.h" #include <assert.h> // assert() #include "../../ImageCompiler.h" // CImageCompiler #include "../../ImageObject.h" // ImageToProcess #include "IRCLog.h" /...
{ "pile_set_name": "Github" }
// Copyright 2011 The Whiley Project Developers // // 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...
{ "pile_set_name": "Github" }
binary_to_compressed_c cft.ttf CodingFontTobi > CodingFontTobi.inl binary_to_compressed_c Cousine-BoldItalic.ttf CousineBoldItalic > CousineBoldItalic.inl binary_to_compressed_c Cousine-Bold.ttf CousineBold > CousineBold.inl binary_to_compressed_c Cousine-Italic.ttf CousineItalic > CousineItalic.inl binary_to_compresse...
{ "pile_set_name": "Github" }
package org.stepik.android.view.injection.step_quiz import javax.inject.Qualifier @Qualifier annotation class StepQuizBus
{ "pile_set_name": "Github" }
/* * The contents of this file are subject to the terms of the Common Development and * Distribution License (the License). You may not use this file except in compliance with the * License. * * You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the * specific language governing permi...
{ "pile_set_name": "Github" }
using UnityEngine; using System; using System.Collections; using System.Collections.Generic; public class PlayerEquipment : MonoBehaviour { public GameObject head; public GameObject handLeft; public GameObject handRight; public Dictionary<int, Item> equipedItems = new Dictionary<int, Item>(); public static Pl...
{ "pile_set_name": "Github" }
/*! @file Defines `boost::hana::Iterable`. @copyright Louis Dionne 2013-2016 Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt) */ #ifndef BOOST_HANA_CONCEPT_ITERABLE_HPP #define BOOST_HANA_CONCEPT_ITERABLE_HPP #inclu...
{ "pile_set_name": "Github" }
cmake_minimum_required( VERSION 2.8 ) project( geometry ) # 添加Eigen头文件 include_directories( "/usr/include/eigen3" ) add_executable(eigenGeometry eigenGeometry.cpp)
{ "pile_set_name": "Github" }
// -------------------------------------------------------------------------------------------------------------------- // <copyright file="AutomationEmailQueueLogic.cs" company="Brandon Seydel"> // N/A // </copyright> // ------------------------------------------------------------------------------------------------...
{ "pile_set_name": "Github" }
#include "../ed25519/ed25519-donna-portable-identify.h" #define mul32x32_64(a,b) (((uint64_t)(a))*(b)) /* platform */ #if defined(COMPILER_MSVC) #include <intrin.h> #if !defined(_DEBUG) #undef mul32x32_64 #define mul32x32_64(a,b) __emulu(a,b) #endif #undef inline #define inline __forceinline #define DONNA...
{ "pile_set_name": "Github" }
from __future__ import absolute_import try: from urllib.parse import urlparse, parse_qsl, urlencode except ImportError: from urlparse import urlparse, parse_qsl from urllib import urlencode import re import tornado.web import tornado.auth from tornado import httpclient import json from .. import settings...
{ "pile_set_name": "Github" }
// Copyright 2009 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // +build ignore /* Input to cgo -godefs. See README.md */ // +godefs map struct_in_addr [4]byte /* in_addr */ // +godefs map struct_in6_addr [16]byte /* in6...
{ "pile_set_name": "Github" }
require('../modules/es6.object.create'); require('../modules/es6.object.define-property'); require('../modules/es6.object.define-properties'); require('../modules/es6.object.get-own-property-descriptor'); require('../modules/es6.object.get-prototype-of'); require('../modules/es6.object.keys'); require('../modules/es6.o...
{ "pile_set_name": "Github" }
// Body $body-bg: #f5f8fa; // Borders $laravel-border-color: darken($body-bg, 10%); $list-group-border: $laravel-border-color; $navbar-default-border: $laravel-border-color; $panel-default-border: $laravel-border-color; $panel-inner-border: $laravel-border-color; // Brands $brand-primary: #3097D1; $brand-info: #8eb4...
{ "pile_set_name": "Github" }
import 'package:flutter/material.dart'; import 'package:covidnearme/src/data/models/local_statistics.dart'; import 'package:covidnearme/src/l10n/app_localizations.dart'; class TotalsArea extends StatelessWidget { final LocalStatisticsEntry localStatisticsEntry; const TotalsArea({this.localStatisticsEntry}); @...
{ "pile_set_name": "Github" }
/* * Copyright 2017 Zhihu 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 law or agreed to ...
{ "pile_set_name": "Github" }
// Copyright 2016 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_PAYMENTS_FULL_CARD_REQUEST_H_ #define COMPONENTS_AUTOFILL_CORE_BROWSER_PAYMENTS_FULL_CARD_REQUEST_H_ #include <m...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>BuildMachineOSBuild</key> <string>17E199</string> <key>CFBundleIdentifier</key> <string>org.rehabman.injector.FakePCIID-Intel-HD-Graphics</s...
{ "pile_set_name": "Github" }
<meta http-equiv="Content-Type" content="text/html; charset=windows-1256" /> <div style="text-transform: uppercase;"> <a href="httpdisabled://news.maktoob.com"> ÃÎÈÇÑ ãßÊæÈ</a></div>
{ "pile_set_name": "Github" }
# -*- coding: utf-8 -*- from django.utils.translation import ugettext_lazy as _lazy NAME_GENERAL = _lazy('For all ages') # L10n: %d is the age in years. For ages %d and higher. NAME_LAZY = _lazy('For ages %d+') # Fill this in after accessing. NAME_REJECTED = _lazy(u'Rating Rejected') NAME_PENDING = _lazy(u'Rating Pe...
{ "pile_set_name": "Github" }
/** * Copyright 2019 The AMP HTML 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 require...
{ "pile_set_name": "Github" }
tags-format strong: aBlock self strong with: aBlock
{ "pile_set_name": "Github" }
/* * WUSB Wire Adapter: Control/Data Streaming Interface (WUSB[8]) * Device Connect handling * * Copyright (C) 2006 Intel Corporation * Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public Li...
{ "pile_set_name": "Github" }
// File generated from our OpenAPI spec namespace Stripe { using Newtonsoft.Json; public class TokenPersonVerificationOptions : INestedOptions { /// <summary> /// A document showing address, either a passport, local ID card, or utility bill from a /// well-known utility company. ...
{ "pile_set_name": "Github" }
{ "container": { "border-top": "1px solid #666", "border-left": "1px solid #666", "border-right": "1px solid #666", "border-bottom": "1px solid #666", "background-color": "#d7d7d7", "padding-top": "2px", "padding-bottom": "2px", "padding-left": "2px", "padding-right": "2px", "overflow": "hidden", ...
{ "pile_set_name": "Github" }
package placement; import java.util.HashMap; import java.util.List; import java.util.Observable; import java.util.logging.Level; import java.util.logging.Logger; public class ActiveSetPlacement extends Observable implements Placement { static Logger logger = Logger.getLogger("placement"); Blocks blocks; boolean ...
{ "pile_set_name": "Github" }
" I am FFIVariableNameNotFound, an exception to indicate that a variable is not correctly used inside an ffi function " Class { #name : #FFIVariableNameNotFound, #superclass : #NotFound, #category : #'UnifiedFFI-Exceptions' } { #category : #private } FFIVariableNameNotFound >> standardMessageText [ "Generate a sta...
{ "pile_set_name": "Github" }
// Copyright (C) 2010 Peder Holt // Use, modification and distribution is subject to the Boost Software // License, Version 1.0. (http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_TYPEOF_UNSUPPORTED_HPP_INCLUDED #define BOOST_TYPEOF_UNSUPPORTED_HPP_INCLUDED namespace boost { namespace type_of { struct typeof_em...
{ "pile_set_name": "Github" }
package v2tov3 import "github.com/davyxu/golog" var log = golog.New("v2tov3") func init() { log.SetParts() }
{ "pile_set_name": "Github" }
<template name="before_day"> </template>
{ "pile_set_name": "Github" }
info: x-logo: url: 'https://pbs.twimg.com/profile_images/443742048365985792/Zech6Z-m_400x400.png' backgroundColor: '#FFFFFF' x-apisguru-categories: - telecom
{ "pile_set_name": "Github" }
/*- * See the file LICENSE for redistribution information. * * Copyright (c) 2010, 2015 Oracle and/or its affiliates. All rights reserved. */ #include "sqliteInt.h" #ifdef SQLITE_ENABLE_MEMORY_MANAGEMENT int sqlite3PcacheReleaseMemory(int nReq){ return nReq; } #endif
{ "pile_set_name": "Github" }
--[[ Copyright (c) 2011-2014 chukong-inc.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, dis...
{ "pile_set_name": "Github" }
package com.uwetrottmann.tmdb2.assertions; import static org.assertj.core.api.Assertions.assertThat; import com.uwetrottmann.tmdb2.entities.CastMember; import com.uwetrottmann.tmdb2.entities.Credits; import com.uwetrottmann.tmdb2.entities.CrewMember; import java.util.List; public class CreditAssertions { public ...
{ "pile_set_name": "Github" }
#N canvas 657 431 678 298 10; #N canvas 449 458 721 323 processing 0; #N canvas 0 110 466 295 hann-window 0; #X obj 288 130 osc~; #X obj 288 155 *~ -0.5; #X obj 288 179 +~ 0.5; #X obj 26 118 samplerate~; #X obj 26 142 /; #X msg 161 71 resize \$1; #X msg 292 95 0; #X obj 240 96 t f b; #X obj 26 94 t b f f; #X text 22 8 ...
{ "pile_set_name": "Github" }
/** * naken_asm assembler. * Author: Michael Kohn * Email: mike@mikekohn.net * Web: http://www.mikekohn.net/ * License: GPLv3 * * Copyright 2010-2019 by Michael Kohn * */ #include <stdlib.h> #include "table/68hc08.h" struct _m68hc08_table m68hc08_table[] = { { "brset", CPU08_OP_0_COMMA_OPR_REL, 5 ...
{ "pile_set_name": "Github" }
World---1 World---2
{ "pile_set_name": "Github" }
/* * Globalize Culture ro-RO * * http://github.com/jquery/globalize * * Copyright Software Freedom Conservancy, Inc. * Dual licensed under the MIT or GPL Version 2 licenses. * http://jquery.org/license * * This file was generated by the Globalize Culture Generator * Translation: bugs found in this file need t...
{ "pile_set_name": "Github" }
@{ # Script module or binary module file associated with this manifest ModuleToProcess = 'EntityFramework.psm1' # Version number of this module. ModuleVersion = '6.0.0.0' # ID used to uniquely identify this module GUID = '06e6973e-66a3-4cfc-9a42-3f7d159e945a' # Author of this mo...
{ "pile_set_name": "Github" }
/******************************************************************************* * Copyright (c) 2013 GigaSpaces Technologies Ltd. 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 L...
{ "pile_set_name": "Github" }
package dao import ( "context" "testing" . "github.com/smartystreets/goconvey/convey" ) func Test_MaxAID(t *testing.T) { Convey("MaxAID", t, func() { d.MaxAID(context.TODO()) }) }
{ "pile_set_name": "Github" }
.. currentmodule:: PyQt5.QtQml QQmlComponent ------------- .. class:: QQmlComponent `C++ documentation <https://doc.qt.io/qt-5/qqmlcomponent.html>`_
{ "pile_set_name": "Github" }
Yay!
{ "pile_set_name": "Github" }
{-# LANGUAGE DeriveDataTypeable #-} {-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE TypeFamilies #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-unused-binds #-} {-# OPTIONS_GHC -fno-warn-unused-matches #-} -- ...
{ "pile_set_name": "Github" }
Shader "Hidden/Post FX/Monitors/Vectorscope Render" { SubShader { ZTest Always Cull Off ZWrite Off Fog { Mode off } CGINCLUDE #pragma fragmentoption ARB_precision_hint_fastest #pragma target 5.0 #include "UnityCG.cginc" StructuredBuffer<...
{ "pile_set_name": "Github" }
package lrn.operation; import lrn.recordset.Row; public interface ValueResolver { public Object resolve(Row row); }
{ "pile_set_name": "Github" }
{ "text": "Текущий счетчик равен {{amount}}. Он хранится на стороне клиента с помощью Apollo Link State.", "btnLabel": "Увеличить счетчик Apollo Link State" }
{ "pile_set_name": "Github" }
using System; namespace XrmToolBox.Extensibility.Interfaces { /// <summary> /// This interface allows a user to specify CodePlex project name to add a /// menu to redirect end user to CodePlex project pages (issues, discussions) /// </summary> public interface ICodePlexPlugin { /// <su...
{ "pile_set_name": "Github" }
# # Copyright 2016 Pixar # # Licensed under the Apache License, Version 2.0 (the "Apache License") # with the following modification; you may not use this file except in # compliance with the Apache License and the following modification to it: # Section 6. Trademarks. is deleted and replaced with: # # 6. Trademarks. T...
{ "pile_set_name": "Github" }
// // Generated by class-dump 3.5 (64 bit). // // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2015 by Steve Nygard. // #import <Foundation/_NSPersonNameComponentsStyleFormatter.h> __attribute__((visibility("hidden"))) @interface _NSPersonNameComponentsStyleFormatterNicknameVariant : _NSPersonNameCo...
{ "pile_set_name": "Github" }
--- name: "Emma Pierson" link: "http://cs.stanford.edu/~emmap1/" occupation_title: "Computer science PhD student" organization: "Stanford University" github: "epierson9" ---
{ "pile_set_name": "Github" }
/* Makes all inline forms collapsible. */ jQuery(function($) { $.makeCollapsible = function(target, item, collapsible, triggerTarget, setInitStatus, setFirstStatus) { var triggerExpand = 'Edit'; var triggerCollapse = 'Done'; var triggerClass = 'collapse-expand'; var triggerLink ...
{ "pile_set_name": "Github" }
Van 0.00 3 1.7902560542013983 385.20 151.73 529.43 267.53 2.372515007399521 1.945159251437111 5.069392849055725 -2.73 1.54 13.65 1.5928604943515177 0.99021405 Van 0.00 0 -1.9181455532696585 708.58 164.40 847.02 278.56 2.276507205807171 1.970990902379675 5.210101170295524 2.85 1.67 13.20 -1.705500630911887 0.9999919 Car...
{ "pile_set_name": "Github" }
/* Copyright (C) 2010 by * * Cam-Tu Nguyen * ncamtu@ecei.tohoku.ac.jp or ncamtu@gmail.com * * Xuan-Hieu Phan * pxhieu@gmail.com * * College of Technology, Vietnamese University, Hanoi * Graduate School of Information Sciences, Tohoku University * * JVnTextPro-v.2.0 is a free software;...
{ "pile_set_name": "Github" }
/* * Copyright (c) 2010-2019 Evolveum and contributors * * This work is dual-licensed under the Apache License 2.0 * and European Union Public License. See LICENSE file for details. */ package com.evolveum.midpoint.schrodinger.page.self; import com.evolveum.midpoint.schrodinger.page.BasicPage; /** * Created by ...
{ "pile_set_name": "Github" }
fileFormatVersion: 2 guid: e74b97cf0cd7b9f43bd480f306fa0534 folderAsset: yes timeCreated: 1476717105 licenseType: Pro DefaultImporter: userData: assetBundleName: assetBundleVariant:
{ "pile_set_name": "Github" }
Theme Service ============= # Function Definitions `ts. init()` `ts.theme(x)` `ts.toggleTheme()` `ts.addListener(listener)` `ts.removeListener(listener)` `ts.spriteColor(color, what)`
{ "pile_set_name": "Github" }
import("//llvm/utils/unittest/unittest.gni") unittest("XRayTests") { deps = [ "//llvm/lib/Support", "//llvm/lib/Testing/Support", "//llvm/lib/XRay", ] sources = [ "FDRBlockIndexerTest.cpp", "FDRBlockVerifierTest.cpp", "FDRProducerConsumerTest.cpp", "FDRRecordPrinterTest.cpp", "FDR...
{ "pile_set_name": "Github" }
/* ======================================================================== * Bootstrap: modal.js v3.3.7 * http://getbootstrap.com/javascript/#modals * ======================================================================== * Copyright 2011-2016 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstra...
{ "pile_set_name": "Github" }
/*! * Copyright 2017-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0 */ export * from './offline-cache'; export { default as OfflineCache } from './offline-cache';
{ "pile_set_name": "Github" }
(function() { 'use strict'; // Stub window.Video.loadYouTubeIFrameAPI() window.Video.loadYouTubeIFrameAPI = jasmine.createSpy('window.Video.loadYouTubeIFrameAPI').and.returnValue( function(scriptTag) { var event = document.createEvent('Event'); if (fixture === 'video.html') ...
{ "pile_set_name": "Github" }
# Copyright 2018 The Cornac 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 ...
{ "pile_set_name": "Github" }
/* SPDX-License-Identifier: GPL-2.0-only */ /* * wm8998.h -- ALSA SoC Audio driver for WM8998 codecs * * Copyright 2015 Cirrus Logic, Inc. * * Author: Richard Fitzgerald <rf@opensource.wolfsonmicro.com> */ #ifndef _WM8998_H #define _WM8998_H #include "arizona.h" #define WM8998_FLL1 1 #define WM8998_FLL2...
{ "pile_set_name": "Github" }
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package norm import "unicode/utf8" const ( maxNonStarters = 30 // The maximum number of characters needed for a buffer is // maxNonStarters + 1 for the sta...
{ "pile_set_name": "Github" }
/** * scars are cosmetic datums that are assigned to bodyparts once they recover from wounds. Each wound type and severity have their own descriptions for what the scars * look like, and then each body part has a list of "specific locations" like your elbow or wrist or wherever the scar can appear, to make it more ...
{ "pile_set_name": "Github" }
Find out if the system's architecture is 32 or 64 bit Changing the timezone on deb based systems Commands to shutdown or restart the system Cancel a system shutdown Finding Open Files With `lsof`
{ "pile_set_name": "Github" }
// Copyright 2011 Google Inc. All rights reserved. // Use of this source code is governed by the Apache 2.0 // license that can be found in the LICENSE file. // +build appengine package internal import ( "appengine_internal" ) func Main() { MainPath = "" appengine_internal.Main() }
{ "pile_set_name": "Github" }
tinymce.addI18n('dv',{ "Cut": "\u0786\u07a6\u0793\u07b0", "Heading 5": "\u0780\u07ac\u0791\u07a8\u0782\u07b0 5", "Header 2": "\u0780\u07ac\u0791\u07a7 2", "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0786\u07b0\u078d\u07a8\u0795\u07b0\u0784\u...
{ "pile_set_name": "Github" }
#define O_CREAT 0100 #define O_EXCL 0200 #define O_NOCTTY 0400 #define O_TRUNC 01000 #define O_APPEND 02000 #define O_NONBLOCK 04000 #define O_DSYNC 010000 #define O_SYNC 04010000 #define O_RSYNC 04010000 #define O_DIRECTORY 040000 #define O_NOFOLLOW 0100000 #define O_CL...
{ "pile_set_name": "Github" }
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_29) on Mon Mar 26 19:07:14 PDT 2012 --> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <TITLE> JacksonDeserializers (jackson-dat...
{ "pile_set_name": "Github" }
################################################################################ # t/part_supported_sql_funcs_delete.inc # # # # Purpose: ...
{ "pile_set_name": "Github" }
// Boost.Geometry (aka GGL, Generic Geometry Library) // Copyright (c) 2007-2012 Barend Gehrels, Amsterdam, the Netherlands. // Copyright (c) 2008-2012 Bruno Lalande, Paris, France. // Copyright (c) 2009-2012 Mateusz Loskot, London, UK. // Parts of Boost.Geometry are redesigned from Geodan's Geographic Library // (ge...
{ "pile_set_name": "Github" }
/* * OpenSeadragon - TmsTileSource * * Copyright (C) 2009 CodePlex Foundation * Copyright (C) 2010-2013 OpenSeadragon contributors * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * - Redistributions of sou...
{ "pile_set_name": "Github" }
; RUN: llc < %s | FileCheck %s --check-prefix=ASM ; RUN: llc < %s -filetype=obj | llvm-readobj - -codeview | FileCheck %s --check-prefix=OBJ ; RUN: llc < %s -filetype=obj | obj2yaml | FileCheck %s --check-prefix=YAML ; C++ source to regenerate: ; $ cat t.cpp ; int first; ; template <typename T> struct A { static const...
{ "pile_set_name": "Github" }
<!DOCTYPE html> <html lang="zh-CN" class="no-js"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width"> <meta name="keywords" content="SPRING-CLOUD,Jimersy Lee,jimersylee,java,php,python,js,html,github,Jimersy Lee&#039;s Blog"> <meta name="description" content="这是Jimersy Lee的个人博客"> <!-...
{ "pile_set_name": "Github" }
/* ScummVM - Graphic Adventure Engine * * ScummVM is the legal property of its developers, whose names * are too numerous to list here. Please refer to the COPYRIGHT * file distributed with this source distribution. * * Additional copyright for this file: * Copyright (C) 1995-1997 Presto Studios, Inc. * * This...
{ "pile_set_name": "Github" }
# Project-wide Gradle settings. # IDE (e.g. Android Studio) users: # Gradle settings configured through the IDE *will override* # any settings specified in this file. # For more details on how to configure your build environment visit # http://www.gradle.org/docs/current/userguide/build_environment.html # Specifies ...
{ "pile_set_name": "Github" }
FRENCH STEW (Stufato alla francese) Prepare on the bottom of the saucepan a layer of thin slices of ham, on which place several little cubes also of bacon. In the middle place a bunch of parsley, and around this some cloves, half an onion sliced, a few carrots in little cubes several young onions, bay-leaf, salt, an...
{ "pile_set_name": "Github" }
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <TITLE> All Classes </TITLE> <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style"> </HEAD> <BODY BGCOLOR="white"> <FONT size="+1" CLASS="FrameHeadingFont"> <B>A...
{ "pile_set_name": "Github" }
/* * 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 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be use...
{ "pile_set_name": "Github" }
/* * Menyoo PC - Grand Theft Auto V single-player trainer mod * Copyright (C) 2019 MAFINS * * 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...
{ "pile_set_name": "Github" }
<?xml version="1.0"?> <ZopeData> <record id="1" aka="AAAAAAAAAAE="> <pickle> <global name="Image" module="OFS.Image"/> </pickle> <pickle> <dictionary> <item> <key> <string>_Cacheable__manager_id</string> </key> <value> <string>http_cache</string> </value> ...
{ "pile_set_name": "Github" }
# Exercise ## load / deload - https://breakingmuscle.com/fitness/deloading-101-what-is-a-deload-and-how-do-you-do-it ## 90 day bodyweight Each workout split into two phases: - conditioning: get tired doing bodyweight training. - technique: can't rely on strength to carry, so got to learn proper technique. Conditi...
{ "pile_set_name": "Github" }
let add = (x, y) => x + y;
{ "pile_set_name": "Github" }
package client // import "github.com/docker/docker/client" import ( "context" "encoding/json" "net/url" "github.com/docker/docker/api/types/container" "github.com/docker/docker/api/types/versions" ) // ContainerWait waits until the specified container is in a certain state // indicated by the given condition, e...
{ "pile_set_name": "Github" }
/*|----------------------------------------------------------------------------- *| This source code is provided under the Apache 2.0 license -- *| and is provided AS IS with no warranty or guarantee of fit for purpose. -- *| See the project's LICENSE.md for details. ...
{ "pile_set_name": "Github" }
module reversed #(parameter WIDTH=32, SELW=4, CTRLW=$clog2(WIDTH), DINW=2**SELW) (input clk, input [CTRLW-1:0] ctrl, input [DINW-1:0] din, input [SELW-1:0] sel, output reg [WIDTH-1:0] dout); localparam SLICE = WIDTH/(SELW**2); always @(posedge clk) begin d...
{ "pile_set_name": "Github" }
import ChatAppDispatcher from '../dispatcher/ChatAppDispatcher'; import ChatConstants from '../constants/ChatConstants'; import * as Actions from './API.actions'; let ActionTypes = ChatConstants.ActionTypes; export function serverChanged(server) { ChatAppDispatcher.dispatch({ type: ActionTypes.SERVER_CHANGED, ...
{ "pile_set_name": "Github" }
<testcase> <info> <keywords> FTP RETR </keywords> </info> # Server-side <reply> # file1362 contents... <data nocheck="yes"> HTTP/1.1 200 OK Date: Thu, 09 Nov 2010 14:49:00 GMT Server: test-server/fake Content-Length: 6 Connection: close Content-Type: text/html Content-Disposition: filename=name1362; charset=funny; opt...
{ "pile_set_name": "Github" }