text
stringlengths
2
99.9k
meta
dict
#include <vdgl/vdgl_digital_curve.h> #include <vbl/io/vbl_io_smart_ptr.hxx> VBL_IO_SMART_PTR_INSTANTIATE(vdgl_digital_curve);
{ "pile_set_name": "Github" }
package cn.itcast_03; /* * 我们针对学生可以设置学生的属性,也可以获取学生的属性。这里我们就把设置看成是生产,获取看成是消费就可以了。 * 基本的类: * 学生类 * 设置属性的线程 * 获取属性的线程 * 测试类 * * 问题1:写了一些简单的代码后,我们发现数据有问题,是null---0 * 原因: * 我们设置的对象和获取的对象不是同一个,所以,拿不到值 * 解决: * 把设置和获取的对象变成同一个 */ public class StudentDemo { public static void main(String[] args) { /...
{ "pile_set_name": "Github" }
--- title: "Review supported editions and products for upgrading to SharePoint 2013" ms.reviewer: ms.author: serdars author: SerdarSoysal manager: serdars ms.date: 7/26/2017 audience: ITPro f1.keywords: - NOCSH ms.topic: article ms.prod: sharepoint-server-itpro localization_priority: Normal ms.collection: - IT_Sharepo...
{ "pile_set_name": "Github" }
#pragma once #include <catboost/private/libs/data_util/path_with_scheme.h> #include <catboost/private/libs/data_util/line_data_reader.h> #include <catboost/libs/helpers/exception.h> #include <util/generic/cast.h> #include <util/generic/maybe.h> #include <util/generic/ptr.h> #include <util/generic/scope.h> #include <u...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <ItemGroup Label="ProjectConfigurations"> <ProjectConfiguration Include="Debug|Win32"> <Configuration>Debug</Configuration> <Platform>Win32</Platform...
{ "pile_set_name": "Github" }
<template lang="pug"> v-list(subheader) div(:class="{'hidden-sm-and-up': tools}" v-if="tools || view" style="height: 8px") v-list-tile.hidden-sm-and-up(v-if="tools && SPEC && SPEC.securityDefinitions && Object.keys(SPEC.securityDefinitions).length", @click="UI_SET_DIALOG('security')") v-list-tile-action...
{ "pile_set_name": "Github" }
#!/usr/bin/env python2 # Copyright (c) 2014 The Bitcoin Core developers # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. # # Test spending coinbase transactions. # The coinbase transaction in block N can appear in block # N+100... ...
{ "pile_set_name": "Github" }
fileFormatVersion: 2 guid: 2cb8a97d98d81224c8b7d0495d361558 timeCreated: 1477341665 licenseType: Pro DefaultImporter: userData: assetBundleName: assetBundleVariant:
{ "pile_set_name": "Github" }
{ "author": "Enalean Team", "name": "@tuleap/plugin-userlog", "homepage": "https://tuleap.org", "license": "GPL-2.0-or-later", "private": true, "config": { "bin": "../../node_modules/.bin" }, "scripts": { "build": "$npm_package_config_bin/webpack --config webpack.prod.js"...
{ "pile_set_name": "Github" }
package cppclassanalyzer.decompiler.action; import ghidra.app.plugin.core.decompile.DecompilerActionContext; import ghidra.app.plugin.core.decompile.actions.AbstractNonPackageDecompilerAction; import cppclassanalyzer.cmd.FillOutClassBackgroundCmd; import cppclassanalyzer.data.manager.ClassTypeInfoManagerDB; import cp...
{ "pile_set_name": "Github" }
<meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1">
{ "pile_set_name": "Github" }
/* * Copyright (C) 2013-2015 RoboVM AB * * 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...
{ "pile_set_name": "Github" }
function f(int[] ls) -> bool requires some { i in 0 .. 4 | (i >= 0) && (i < |ls|) && (ls[i] < 0) }: return true function g(int[] ls) requires |ls| > 0: f(ls)
{ "pile_set_name": "Github" }
// This file is part of Eigen, a lightweight C++ template library // for linear algebra. // // Copyright (C) 2008 Gael Guennebaud <gael.guennebaud@inria.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 can ob...
{ "pile_set_name": "Github" }
# Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # to you under the Apache License, Version 2.0 (the # "License"); you may not u...
{ "pile_set_name": "Github" }
{ "_args": [ [ { "raw": "inherits@2", "scope": null, "escapedName": "inherits", "name": "inherits", "rawSpec": "2", "spec": ">=2.0.0 <3.0.0", "type": "range" }, "/home/daniel/el1/node_modules/glob" ] ], "_from": "inherits@>=2.0.0 <3...
{ "pile_set_name": "Github" }
tool extends KinematicBody2D # Simple AI agent to teach game AI programming basics. # Patrols between two points, stopping at each point to wait for a moment. # Detects gaps and walls, and turns around instead of getting stuck or falling in holes. const ARRIVE_THRESHOLD := 3.0 onready var floor_detector: RayCast2D =...
{ "pile_set_name": "Github" }
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
{ "pile_set_name": "Github" }
# Code of Conduct ## Our Pledge In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to make participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, sex characteristics, gender i...
{ "pile_set_name": "Github" }
package function external interface Fiber_ { var reset: () -> Any var run: (param: Any? /*= null*/) -> Any var throwInto: (ex: Any) -> Any } // ------------------------------------------------------------------------------------------ package function.fibers @JsModule("fibers") external fun Fiber(fn: Fun...
{ "pile_set_name": "Github" }
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>zen3d - clipping planes</title> <meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0"> <style> body { font-family: Monospace; background-color: #f0f0f0; margin: 0px; overflow: hidden; } ...
{ "pile_set_name": "Github" }
<?php namespace Concrete\Core\Backup\ContentImporter\Importer\Routine; use Concrete\Core\Attribute\Category\ExpressCategory; use Concrete\Core\Block\BlockType\BlockType; use Concrete\Core\Entity\Express\Entity; use Concrete\Core\Permission\Category; use Concrete\Core\Support\Facade\Facade; use Concrete\Core\Tree\Type\...
{ "pile_set_name": "Github" }
// Copyright 2018 The Prometheus Authors // 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" }
'use strict'; var isSymbol = require('./is-symbol'); module.exports = function (value) { if (!isSymbol(value)) throw new TypeError(value + " is not a symbol"); return value; };
{ "pile_set_name": "Github" }
#include "test/jemalloc_test.h" #define QUARANTINE_SIZE 8192 #define STRINGIFY_HELPER(x) #x #define STRINGIFY(x) STRINGIFY_HELPER(x) #ifdef JEMALLOC_FILL const char *malloc_conf = "abort:false,junk:true,redzone:true,quarantine:" STRINGIFY(QUARANTINE_SIZE); #endif void quarantine_clear(void) { void *p; p = m...
{ "pile_set_name": "Github" }
require glibmm.inc SRC_URI[archive.md5sum] = "408054366f0acc01014f4c4af2304da5" SRC_URI[archive.sha256sum] = "f033f6f39c32fc17ecce63087e41408671a3a43d698c83de2528af3fc7276d28"
{ "pile_set_name": "Github" }
/* * Copyright (c) 2016-2020 VMware, Inc. All Rights Reserved. * This software is released under MIT license. * The full license information can be found in LICENSE in the root directory of this project. */ import { isString } from '@clr/core/internal'; import { getInnerSvgFromShapes, renderIcon } from './icon.ren...
{ "pile_set_name": "Github" }
#define HIGHP #define ALPHA 0.18 #define step 2.0 uniform sampler2D u_texture; uniform vec2 u_texsize; uniform vec2 u_invsize; uniform float u_time; uniform float u_dp; uniform vec2 u_offset; varying vec2 v_texCoords; void main(){ vec2 T = v_texCoords.xy; vec2 coords = (T * u_texsize) + u_offset; T += ...
{ "pile_set_name": "Github" }
var mkdirp = require('../'); var path = require('path'); var fs = require('fs'); var test = require('tap').test; test('return value', function (t) { t.plan(4); var x = Math.floor(Math.random() * Math.pow(16,4)).toString(16); var y = Math.floor(Math.random() * Math.pow(16,4)).toString(16); var z = Math....
{ "pile_set_name": "Github" }
/* * Copyright (c) 2000, 2020, Oracle and/or its affiliates. * * Licensed under the Universal Permissive License v 1.0 as shown at * http://oss.oracle.com/licenses/upl. */ package com.tangosol.coherence.dslquery.operator; import com.tangosol.coherence.dslquery.FilterBuilder; import com.tangosol.coherence.dsltool...
{ "pile_set_name": "Github" }
{ "description": "ServiceReference holds a reference to Service.legacy.k8s.io", "required": [ "namespace", "name" ], "properties": { "name": { "description": "`name` is the name of the service. Required", "type": [ "string", "null" ] }, "namespace": { ...
{ "pile_set_name": "Github" }
;========================================================== ; ; ; ██████╗ ██████╗ ██╗ ██╗ ██╗██████╗ █████╗ ██████╗ ; ██╔══██╗██╔═══██╗██║ ╚██╗ ██╔╝██╔══██╗██╔══██╗██╔══██╗ ; ██████╔╝██║ ██║██║ ╚████╔╝ ██████╔╝███████║██████╔╝ ; ██╔═══╝ ██║ ██║██║ ╚██╔╝ ██╔══██╗██╔══██║██╔══██╗ ; ██║ ╚████...
{ "pile_set_name": "Github" }
//+build !go1.9 package concurrent import "sync" // Map implements a thread safe map for go version below 1.9 using mutex type Map struct { lock sync.RWMutex data map[interface{}]interface{} } // NewMap creates a thread safe map func NewMap() *Map { return &Map{ data: make(map[interface{}]interface{}, 32), } ...
{ "pile_set_name": "Github" }
[ { "date": "2020-01-01 00:00:00", "start": "2020-01-01T03:00:00.000Z", "end": "2020-01-02T03:00:00.000Z", "name": "Nouvel An", "type": "public", "rule": "01-01", "_weekday": "Wed" }, { "date": "2020-04-13 00:00:00", "start": "2020-04-13T03:00:00.000Z", "end": "2020-04-14T0...
{ "pile_set_name": "Github" }
logging: level: warn
{ "pile_set_name": "Github" }
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\HttpKernel\Tests\Debug; use PHPUnit\Framework\TestCas...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="utf-8"?> <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft...
{ "pile_set_name": "Github" }
class ScheduledBuildTrigger attr_accessor :build_interval def initialize(triggered_project, opts={}) @triggered_project = triggered_project @build_interval = opts[:build_interval] || 24.hours @next_build_time = opts[:start_time] || calculate_next_build_time end def build_necessary?(reasons) ...
{ "pile_set_name": "Github" }
/* * SonarQube * Copyright (C) 2009-2020 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
{ "pile_set_name": "Github" }
<?php /** * HydrateSettingsDelegate * @author edgebal */ namespace Minds\Core\Pro\Delegates; use Minds\Core\Config; use Minds\Core\Di\Di; use Minds\Core\EntitiesBuilder; use Minds\Core\Pro\Settings; use Minds\Entities\User; use Minds\Helpers\Text; class HydrateSettingsDelegate { /** @var EntitiesBuilder */ ...
{ "pile_set_name": "Github" }
TIMESTAMP = 1598238083 SHA256 (OISF-libhtp-0.5.33_GH0.tar.gz) = 953651fdfe828805bb82dc1aa8b56187b0e2f80781727343e68ccf8afd6a9122 SIZE (OISF-libhtp-0.5.33_GH0.tar.gz) = 496010
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd"> <file datatype="xml" source-language="en" target-language="fr" or...
{ "pile_set_name": "Github" }
// Package errors provides simple error handling primitives. // // The traditional error handling idiom in Go is roughly akin to // // if err != nil { // return err // } // // which applied recursively up the call stack results in error reports // without context or debugging information. The errors...
{ "pile_set_name": "Github" }
'use strict' module.exports = require('./lib/verify')
{ "pile_set_name": "Github" }
[package] name = "libattr" version = "0.1.0" edition = "2018" publish = false build = "build.rs" [lib] path = "pkg.rs" [[package.metadata.build-package.external-files]] url = "https://download-mirror.savannah.gnu.org/releases/attr/attr-2.4.48.tar.gz" sha512 = "75f870a0e6e19b8975f3fdceee786fbaff3eadaa9ab9af01996ffa8e5...
{ "pile_set_name": "Github" }
/* This file is provided under a dual BSD/GPLv2 license. When using or redistributing this file, you may do so under either license. GPL LICENSE SUMMARY Copyright(c) 2014 Intel Corporation. This program is free software; you can redistribute it and/or modify it under the terms of version 2 of the GNU Gene...
{ "pile_set_name": "Github" }
/** Copyright (c) 2007-2013 Alysson Bessani, Eduardo Alchieri, Paulo Sousa, and the authors indicated in the @author tags 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/licen...
{ "pile_set_name": "Github" }
#include <unistd.h> #include <signet/keys.h> #include <common/misc.h> #include <common/dcrypto.h> static void usage(const char *progname) { fprintf(stderr, "\nUsage: %s <-g or -d> [-p] [-f keyfile] where\n", progname); fprintf(stderr, " -g generates a new ED25519 keypair.\n"); fprintf(stderr, " -d dumps the ED...
{ "pile_set_name": "Github" }
powerpc/powerpc32/power5+/fpu/multiarch
{ "pile_set_name": "Github" }
/* -*- Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 4 -*- */ /* vi: set ts=4 sw=4 expandtab: (add to ~/.vimrc: set modeline modelines=5) */ /* 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 can ob...
{ "pile_set_name": "Github" }
# # Traffic control configuration. # menu "QoS and/or fair queueing" config NET_SCHED bool "QoS and/or fair queueing" select NET_SCH_FIFO ---help--- When the kernel has several packets to send out over a network device, it has to decide which ones to send first, which ones to delay, and which ones to dro...
{ "pile_set_name": "Github" }
/* * Copyright (C) 2020 Intel Corporation * * SPDX-License-Identifier: MIT * */ #include "level_zero/core/source/debugger/debugger_l0.h" namespace L0 { std::unique_ptr<NEO::Debugger> DebuggerL0::create(NEO::Device *device) { auto debugger = debuggerL0Factory[device->getHardwareInfo().platform.eRenderCoreFami...
{ "pile_set_name": "Github" }
/* (No Comment) */ "NSHumanReadableDescription" = "Sociale filterlister med blokeringsregler"; /* Bundle display name */ "CFBundleDisplayName" = "AdGuard Social";
{ "pile_set_name": "Github" }
#include <AP_Common.h> #include <AP_Progmem.h> #include <AP_Param.h> #include <AP_Math.h> #include <AP_HAL.h> #include <AP_HAL_AVR.h> #include <AP_HAL_PX4.h> #include <AP_HAL_Empty.h> #include <AP_Buffer.h> #include <Filter.h> #include <AP_Baro.h> const AP_HAL::HAL& hal = AP_HAL_BOARD_DRIVER; #if CONFIG_HAL_BOARD ==...
{ "pile_set_name": "Github" }
import 'package:appwrite_dev/appwrite_dev.dart'; void main() { // Init SDK Client client = Client(); Account account = Account(client); client .setEndpoint('https://[HOSTNAME_OR_IP]/v1') // Your API Endpoint .setProject('5df5acd0d48c2') // Your project ID ; Future result = account.updateEmail( ...
{ "pile_set_name": "Github" }
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <script src="/benchmark/js/jquery.min.js"></script> <script type="text/javascript" src="/benchmark/js/js.cookie.js"></script> <title>Be...
{ "pile_set_name": "Github" }
#include "test/jemalloc_test.h" /* * Use a separate arena for xallocx() extension/contraction tests so that * internal allocation e.g. by heap profiling can't interpose allocations where * xallocx() would ordinarily be able to extend. */ static unsigned arena_ind(void) { static unsigned ind = 0; if (ind == 0) {...
{ "pile_set_name": "Github" }
// +build windows package getter import ( "fmt" "net/url" "os" "os/exec" "path/filepath" "strings" "syscall" ) func (g *FileGetter) Get(dst string, u *url.URL) error { ctx := g.Context() path := u.Path if u.RawPath != "" { path = u.RawPath } // The source path must exist and be a directory to be usabl...
{ "pile_set_name": "Github" }
# usage: python app_models.py 1 - train the dave-orig model from __future__ import print_function import sys from keras.layers import Activation, Input, Dense from data_utils import * from utils import * def Model1(input_tensor=None, load_weights=False, num_features=545334): # original dave if input_tensor i...
{ "pile_set_name": "Github" }
(function ($) { $.Redactor.opts.langs['es'] = { html: 'HTML', video: 'Insertar video...', image: 'Insertar imagen...', table: 'Tabla', link: 'Enlace', link_insert: 'Insertar enlace ...', link_edit: 'Editar enlace', unlink: 'Desenlazar', formatting: 'Estilos', paragraph: 'Texto normal', quote: 'Cita', code: ...
{ "pile_set_name": "Github" }
--- fixes: - | Addresses a condition where the Compute Service may have been unable to remove VIF attachment records while a baremetal node is being unprovisiond. This condition resulted in VIF records being orphaned, blocking future deployments without manual intervention. See `bug 1743652 <https...
{ "pile_set_name": "Github" }
hydra.Prms-testRequirement = "Test for long running scenario using north wind schema, data and queries"; hydra.Prms-testDescription = "This test uses the same cluster started using startDualModeCluster test. Test runs the spark App for creating and loading data in column tables using northwind schema and data. It t...
{ "pile_set_name": "Github" }
(def [x0 y0 w h sep] [50 120 20 90 25]) (def n 15!{3-30}) (def xi (\i (+ x0 (* i sep)))) (def yi (\i (- y0 (* 100 (sin (* i (/ twoPi n))))))) (def ci (\i (let b (elem i [2 4 5]) ; TODO add tokens (if b 'orange' 'lightblue')))) (def boxi (\i (rect (ci i) (xi i) (yi i) w h))) (svg (map boxi (zeroTo n)))
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="utf-8"?> <language> <resources prefix="Core"> <resource name="about_bugs">:אנא דווח באגים בכתובת</resource> <resource name="about_donations">:אם את\ה נהנה\ית משימוש בתוכנה, את\ה מוזמן לתרום לנו</resource> <resource name="about_host">Greenshot is hosted by GitHub at</resource...
{ "pile_set_name": "Github" }
################################################################################ # # zsh # ################################################################################ ZSH_VERSION = 5.6.2 ZSH_SITE = http://www.zsh.org/pub ZSH_SOURCE = zsh-$(ZSH_VERSION).tar.xz ZSH_DEPENDENCIES = ncurses ZSH_CONF_OPTS = --bindir=/b...
{ "pile_set_name": "Github" }
<?php use PHPUnit\Framework\TestCase; class PHPUnit_Framework_TestCase extends TestCase {}
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="UTF-8"?> <Scheme LastUpgradeVersion = "1010" version = "1.3"> <BuildAction parallelizeBuildables = "YES" buildImplicitDependencies = "YES"> <BuildActionEntries> <BuildActionEntry buildForTesting = "YES" buildForRunning = "YES" ...
{ "pile_set_name": "Github" }
/* Example for the u8x8_UserInterfaceInputValue procedure. */ #include "u8x8.h" u8x8_t u8x8; int main(void) { uint8_t value = 0; u8x8_Setup_SDL_128x64(&u8x8); u8x8_InitDisplay(&u8x8); u8x8_SetFont(&u8x8, u8x8_font_amstrad_cpc_extended_f); u8x8_UserInterfaceInputValue(&u8x8, "Title\n--...
{ "pile_set_name": "Github" }
/** * Copyright 2009 Jorge Ortiz * * 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 i...
{ "pile_set_name": "Github" }
/** Copyright 2013 BlackBerry Inc. Copyright (c) 2014-2017 Chukong Technologies 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...
{ "pile_set_name": "Github" }
# -*- encoding: utf-8 -*- # stub: mime-types 2.3 ruby lib Gem::Specification.new do |s| s.name = "mime-types" s.version = "2.3" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.require_paths = ["lib"] s.authors = ["Austin Ziegler"] s.cert_chain = ["...
{ "pile_set_name": "Github" }
// Base settings for all themes that can optionally be // overridden by the super-theme // Background of the presentation $backgroundColor: #2b2b2b; // Primary/body text $mainFont: 'Lato', sans-serif; $mainFontSize: 40px; $mainColor: #eee; // Vertical spacing between blocks of text $blockMargin: 20px; // Headings $...
{ "pile_set_name": "Github" }
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
{ "pile_set_name": "Github" }
<p align="center"> <a href="https://natasha.dotnetcore.xyz/"> 返回 </a> | <a href="https://natasha.dotnetcore.xyz/en/api/extensions-samples.html"> English </a> </p> #### 使用Natasha的类型扩展: ```C# Example: typeof(Dictionary<string,List<int>>[]).GetDevelopName(); //result:...
{ "pile_set_name": "Github" }
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <!--Converted with LaTeX2HTML 96.1-d (Mar 10, 1996) by Nikos Drakos (nikos@cbl.leeds.ac.uk), CBLU, University of Leeds --> <HTML> <HEAD> <TITLE> r = jacob(a,b,eps)</TITLE> <META NAME="description" CONTENT=" r = jacob(a,b,eps)"> <META NAME="keywords" CONTENT="kirja"> <M...
{ "pile_set_name": "Github" }
EXE_INC = \ -I$(LIB_SRC)/finiteVolume/lnInclude \ -I$(LIB_SRC)/meshTools/lnInclude \ -I$(LIB_SRC)/surfMesh/lnInclude \ -I$(LIB_SRC)/fileFormats/lnInclude \ -I$(LIB_SRC)/triSurface/lnInclude \ -I$(LIB_SRC)/conversion/lnInclude \ -I$(LIB_SRC)/lagrangian/basic/lnInclude LIB_LIBS = \ -lfini...
{ "pile_set_name": "Github" }
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; using Microsoft.CodeAnalysis.Editor.Shared.Extensions; using Microsoft.CodeAnalysis.Editor.Shared.Utilities; ...
{ "pile_set_name": "Github" }
#!/bin/sh /etc/rc.common START=18 start() { MODE=`/sbin/uci get wireless.@wifi-iface[0].mode` SSID=`/sbin/uci get wireless.@wifi-iface[0].ssid` if [ "$SSID" != "Arduino" -a "$SSID" != "Linino" ] then return fi if [ "$MODE" == "ap" ] then SSID_SUFFIX=`/sbin/ifconfig wlan0 | /usr/bin/head -n 1 | /bin/grep...
{ "pile_set_name": "Github" }
/* SPDX-License-Identifier: GPL-2.0-only */ #include <stddef.h> #include <stdint.h> #include <stdlib.h> #include <string.h> #include <b64_decode.h> #include <tests/test.h> struct messages_t { const char *enc; const char *dec; } messages[] = { {"QQ==", "A"}, {"Q\r\nUI=", "AB"}, {"QUJD", "ABC"}, {"\nQUJDRA==", "A...
{ "pile_set_name": "Github" }
● firewalld.service - firewalld - dynamic firewall daemon Loaded: loaded (/usr/lib/systemd/system/firewalld.service; disabled; vendor preset: enabled) Active: active (running) since Tue 2017-03-14 15:33:24 CET; 1h 34min ago Docs: man:firewalld(1) Main PID: 698 (firewalld) CGroup: /system.slice/firewalld....
{ "pile_set_name": "Github" }
/** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you...
{ "pile_set_name": "Github" }
.. include:: ../README.rst
{ "pile_set_name": "Github" }
package main import ( "github.com/veandco/go-sdl2/sdl" ) const ( width = 640 height = 480 ) func main() { if err := sdl.Init(sdl.INIT_VIDEO); err != nil { panic(err) } defer sdl.Quit() window, err := sdl.CreateWindow("SDL2 example #14", sdl.WINDOWPOS_UNDEFINED, sdl.WINDOWPOS_UNDEFINED, width, height, sd...
{ "pile_set_name": "Github" }
/* * Copyright (C) 2012-2015 cketti and contributors * https://github.com/cketti/ckChangeLog/graphs/contributors * * Portions Copyright (C) 2012 Martin van Zuilekom (http://martin.cubeactive.com) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance ...
{ "pile_set_name": "Github" }
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <link rel="shortcut icon" href="favicon.png" /> <title>Line Numbers ▲ Prism plugins</title> <base href="../.." /> <link rel="stylesheet" href="style.css" /> <link rel="stylesheet" href="themes/prism.css" data-noprefix /> <link rel="stylesheet" href="plug...
{ "pile_set_name": "Github" }
<?php namespace ParserHooks\Tests; use ParamProcessor\ProcessedParam; use ParamProcessor\ProcessingResult; use ParserHooks\FunctionRunner; use ParserHooks\HookDefinition; /** * @covers ParserHooks\FunctionRunner * @covers ParserHooks\Internal\Runner * * @group ParserHooks * * @licence GNU GPL v2+ * @author Je...
{ "pile_set_name": "Github" }
#!/bin/bash # Copyright 2015 Insight Data Science # # 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 ...
{ "pile_set_name": "Github" }
/* * Copyright (C) 2003-2006 Gabest * http://www.gabest.org * * 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, or (at your option) * any later version. * ...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="UTF-8"?> <!-- generated on Fri Apr 17 08:19:45 2020 by Eclipse SUMO Version v1_5_0+1182-c674b91ce6 This data file and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at http://www.eclips...
{ "pile_set_name": "Github" }
/** * @file moduleFrechetShortcut.dox * @author Isabelle Sivignon (\c isabelle.sivignon@gipsa-lab.grenoble-inp.fr ) * gipsa-lab Grenoble Images Parole Signal Automatique (CNRS, UMR 5216), CNRS, France * * @date 2012/11/15 * * Documentation file for feature moduleFrechetShortcut * * This file is part of the DGt...
{ "pile_set_name": "Github" }
// Copyright 2014 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 mips64 mips64le #include "textflag.h" TEXT ·Asin(SB),NOSPLIT,$0 JMP ·asin(SB) TEXT ·Acos(SB),NOSPLIT,$0 JMP ·acos(SB) TEXT ·Asinh(SB),NOSPLIT,$0...
{ "pile_set_name": "Github" }
using Util.Ui.Angular.Base; using Util.Ui.Builders; using Util.Ui.Configs; using Util.Ui.Material.Panels.Builders; namespace Util.Ui.Material.Panels.Renders { /// <summary> /// 手风琴渲染器 /// </summary> public class AccordionRender : AngularRenderBase { /// <summary> /// 配置 /// </s...
{ "pile_set_name": "Github" }
// Copyright 2007, 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 conditions ...
{ "pile_set_name": "Github" }
import { shallowMount } from '@vue/test-utils' import AvatarWrapper from './AvatarWrapper' describe('AvatarWrapper.vue', () => { it('Renders user avatars properly', () => { const wrapper = shallowMount(AvatarWrapper, { propsData: { id: 'test-id', source: 'users', name: 'test-name', }, }) expec...
{ "pile_set_name": "Github" }
import argparse import gzip import hashlib import logging import os.path import pkgutil import platform from typing import List, Iterable import numpy as np from joblib import Parallel, delayed from guacamol.utils.chemistry import canonicalize_list, filter_and_canonicalize, \ initialise_neutralisation_reactions, ...
{ "pile_set_name": "Github" }
# Please don't modify this file as your changes might be overwritten with # the next update. # {% if helpers.exists('OPNsense.Rspamd.general.enabled') and OPNsense.Rspamd.general.enabled == '1' and helpers.exists('OPNsense.Rspamd.general.enable_bayes_autolearn') %} {% if helpers.exists('OPNsense.Rspamd.general.enable...
{ "pile_set_name": "Github" }
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef PPAPI_TESTS_TEST_RESOURCE_ARRAY_H_ #define PPAPI_TESTS_TEST_RESOURCE_ARRAY_H_ #include <string> #include "ppapi/tests/test_case.h" class Te...
{ "pile_set_name": "Github" }
/* * Copyright 2020 The Bazel 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 a...
{ "pile_set_name": "Github" }
<!DOCTYPE HTML> <!-- Arcana by HTML5 UP html5up.net | @ajlkn Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) --> <html> <head> <title>夸夸大本营</title> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" /> <link rel...
{ "pile_set_name": "Github" }
// This file is part of Eigen, a lightweight C++ template library // for linear algebra. // // Copyright (C) 2009 Gael Guennebaud <gael.guennebaud@inria.fr> // Copyright (C) 2009 Hauke Heibel <hauke.heibel@googlemail.com> // // This Source Code Form is subject to the terms of the Mozilla // Public License v. 2.0. If a ...
{ "pile_set_name": "Github" }