text
stringlengths
3
96.2k
meta
dict
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" }
// FoalTS import { Config, Context, Hook, HookDecorator, HttpResponseBadRequest } from '../../core'; import { ApiParameter, ApiResponse, IApiPathParameter, IApiSchema } from '../../openapi'; import { getAjvInstance } from '../utils'; import { isFunction } from './is-function.util'; /** * Hook - Validate a specific pa...
{ "pile_set_name": "Github" }
package catdata; import java.util.List; import java.util.Map; public interface Raw { public Map<String, List<InteriorLabel<Object>>> raw(); public default int find(String section, Object o) { for (InteriorLabel<Object> il : raw().get(section)) { if (il.s.equals(o)) { return il.loc; } } throw new R...
{ "pile_set_name": "Github" }
{% extends 'base.html' %} {% load staticfiles %} {% load i18n %} {% block title %}Questions{% endblock %} {% block head %} <link href="{% static 'css/questions.css' %}" rel="stylesheet"> <script src="{% static 'js/questions.js' %}"></script> {% endblock head %} {% block main %} <div class="page-header"> <a...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="UTF-8"?> <document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="12121" systemVersion="16F73" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" colorMatched="YES"> <dependencies> <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTou...
{ "pile_set_name": "Github" }
[The original source of problem](https://projecteuler.net/problem=43)
{ "pile_set_name": "Github" }
"use strict"; const derivable = require("../dist/derivable"); const { atom, derive, lens } = derivable; describe("the `is*` fns", () => { it("just work, don't worry about it", () => { const a = atom(0); const d = derive(() => a.get() * 2); const p = lens({ get: () => a.get() * 2, set: x => a.set(x / 2) ...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="7706" systemVersion="14F27" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES"> <dependencies> <deployment ide...
{ "pile_set_name": "Github" }
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <link rel="shortcut icon" type="image/ico" href="http://www.datatables.net/favicon.ico"> <meta name="viewport" content="initial-scale=1.0, maximum-scale=2.0"> <title>FixedColumns example - Assigned column width</title> <link rel="stylesheet" type="text/css" hre...
{ "pile_set_name": "Github" }
# 协议列表
{ "pile_set_name": "Github" }
{ "created_at": "2015-02-27T22:27:40.765097", "description": "WoW 5.0 web-based Spreadsheet", "fork": false, "full_name": "cheald/shadowcraft-ui", "language": "JavaScript", "updated_at": "2015-02-27T23:41:45.722764" }
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="utf-8"?> <!--Generated by crowdin.com--> <resources> <string name="network_media_on_metered">Dezactivează imaginile pe date mobile.</string> <string name="network_media_on_metered_desc">Dacă o rețea limitată este detectată, Frost va opri automat toate imaginile si videoclipurile di...
{ "pile_set_name": "Github" }
#include <gnuregex.h> #include <string> int main() { std::string str = "test0159"; regex_t re; int ec = regcomp(&re, "^[a-z]+[0-9]+$", REG_EXTENDED | REG_NOSUB); if (ec != 0) { return ec; } return regexec(&re, str.c_str(), 0, nullptr, 0) ? -1 : 0; }
{ "pile_set_name": "Github" }
#!/usr/bin/env python import sys sys.path.insert(0, "../..") import socket import tempfile import ssl import subprocess addr = socket.gethostbyname(sys.argv[1]) print(ssl.get_server_certificate((addr, 443)))
{ "pile_set_name": "Github" }
var s = "a1"; var x64 = s:uint(64); writeln("x64 is: ", x64);
{ "pile_set_name": "Github" }
import I18n from "I18n"; import { helperContext, registerUnbound } from "discourse-common/lib/helpers"; import deprecated from "discourse-common/lib/deprecated"; registerUnbound("theme-i18n", (themeId, key, params) => { return I18n.t(`theme_translations.${themeId}.${key}`, params); }); registerUnbound( "theme-pre...
{ "pile_set_name": "Github" }
type_of_cancer: brca cancer_study_identifier: brca_tcga_pub name: Breast Invasive Carcinoma (TCGA, Nature 2012) description: <a href="http://cancergenome.nih.gov/">The Cancer Genome Atlas (TCGA)</a> Breast Invasive Carcinoma project. 825 cases.<br><i>Nature 2012.</i> <a href="http://tcga-data.nci.nih.gov/tcga/">Raw dat...
{ "pile_set_name": "Github" }
Array3d v(2,3,4); cout << v.cube() << endl;
{ "pile_set_name": "Github" }
#!/bin/bash exec scala "$0" "$@" !# // Propagates changes in README.md (table of contents) to all other files in docs/ // Usage: cd docs; ./make_TOC.scala import java.io.File import java.io.FileWriter import scala.io.Source.stdin import scala.io.Source.fromFile val toc : String = fromFile("README.md").mkString("") ...
{ "pile_set_name": "Github" }
include(Platform/HP-UX-HP) __hpux_compiler_hp(ASM)
{ "pile_set_name": "Github" }
import { alias } from '@ember/object/computed'; import { get, computed } from '@ember/object'; import { inject as service } from '@ember/service'; import { Ability } from 'ember-can'; export default Ability.extend({ currentUser: service(), canManage: computed('organization.owner.id', 'currentUser.user.id', functi...
{ "pile_set_name": "Github" }
bundle = <<END require 'minigl' require 'fileutils' require 'rbconfig' include MiniGL END file_names = %w(global bomb elements enemies form items movie options player section stage stage_menu world menu game) file_names.each do |name| File.open("#{name}.rb") do |f| c = f.read c.gsub!(/^require(_relative)? ...
{ "pile_set_name": "Github" }
/** * @license * Copyright 2019 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law ...
{ "pile_set_name": "Github" }
// Copyright 2010 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 linux package fsnotify import ( "errors" "fmt" "io" "os" "path/filepath" "strings" "sync" "unsafe" "golang.org/x/sys/unix" ) // Watcher w...
{ "pile_set_name": "Github" }
// Copyright 2010 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 linux package fsnotify import ( "errors" "fmt" "io" "os" "path/filepath" "strings" "sync" "unsafe" "golang.org/x/sys/unix" ) // Watcher w...
{ "pile_set_name": "Github" }
// Copyright 2017-2020 @polkadot/app-explorer authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useCallback, useState } from 'react'; import styled from 'styled-components'; import { Button, FilterOverlay, Input } from '@polkadot/react-components'; import { isHex } from '@polkadot/util'; i...
{ "pile_set_name": "Github" }
{ "gas_remaining": "7980", "errors": [ { "error_message": "Expected string, got int", "start_location": { "file": "", "line": 0, "column": 0 }, "end_location": { "file": "", "line": 0, "column": 0 } }, { "error_message": "Failed to parse json tests/runner/helloWorld/state...
{ "pile_set_name": "Github" }
const baseConfig = require('../../jest/base.config.js') const { name } = require('./package') module.exports = { ...baseConfig, displayName: name, name: name, testMatch: [`${__dirname}/**/*/?(*.)+(spec|test).js`] }
{ "pile_set_name": "Github" }
exclude :test_install_into, "needs investigation" exclude :test_install_into_development_shallow, "needs investigation"
{ "pile_set_name": "Github" }
// GENERATE BY ./scripts/generate.ts // DON NOT EDIT IT MANUALLY import { SetupContext } from 'vue'; import CompassFilledSvg from '@ant-design/icons-svg/lib/asn/CompassFilled'; import AntdIcon, { AntdIconProps } from '../components/AntdIcon'; const CompassFilled = (props: AntdIconProps, context: SetupContext) => { ...
{ "pile_set_name": "Github" }
import java.util.ArrayList import collection.JavaConversions._ val list: java.util.List[Int] = new ArrayList[Int] list.add(23) /*start*/list(0)/*end*/ //Int
{ "pile_set_name": "Github" }
// // Generated by class-dump 3.5 (64 bit) (Debug version compiled Oct 15 2018 10:31:50). // // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2015 by Steve Nygard. // #import <objc/NSObject.h> @class NSSet; @interface BMRetrievalFilter : NSObject { long long _operand; long long _inclusionOpe...
{ "pile_set_name": "Github" }
// _ _ // __ _____ __ ___ ___ __ _| |_ ___ // \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ // \ V V / __/ (_| |\ V /| | (_| | || __/ // \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| // // Copyright © 2016 - 2020 SeMI Technologies B.V. All rights reserved. // // CONTACT: hello@s...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="UTF-8"?> <document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="11201" systemVersion="16C67" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES"> <dependencies> <deployment...
{ "pile_set_name": "Github" }
Text-1 Text-2 Numeric-1-Sum Numeric-2-Sum Numeric-1-Count Numeric-2-Count Numeric-1-Average Numeric-2-Average first text value a 4 26 4 4 1.00 6.50 first text value b 2 6 2 2 1.00 3.00 second text value b 4 4 2 2 2.00 2.00 second text value c 8 8 4 4 2.00 2.00 second text value d 4 14 2 2 2.00 7.00
{ "pile_set_name": "Github" }
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>View Tree ( Click to highlight view, or double click to change frame of view )</title> <link rel="stylesheet" href="css/reset.css"> <link rel="stylesheet" href="css/index.css"> <script type="text/javascript" src="js/modjs.js"></script> <scri...
{ "pile_set_name": "Github" }
吉川ココ最新番号 【GCICD-023】ゲキ着! IDOL キュート 吉川ココ</a>2011-06-04BAGUS$$$BAGUS62分钟
{ "pile_set_name": "Github" }
/* * Zorro Driver Services * * Copyright (C) 2003 Geert Uytterhoeven * * Loosely based on drivers/pci/pci-driver.c * * This file is subject to the terms and conditions of the GNU General Public * License. See the file COPYING in the main directory of this archive * for more details. */ #include <linux...
{ "pile_set_name": "Github" }
--- - name: Check kuryr containers become: true kolla_docker: action: "compare_container" common_options: "{{ docker_common_options }}" name: "{{ item.value.container_name }}" image: "{{ item.value.image }}" privileged: "{{ item.value.privileged|default(False) }}" cap_add: "{{ item.value.cap...
{ "pile_set_name": "Github" }
describe("", function() { var rootEl; beforeEach(function() { rootEl = browser.rootEl; browser.get("build/docs/examples/example-example56/index.html"); }); it('should select Greetings!', function() { expect(element(by.id('greet')).getAttribute('selected')).toBeFalsy(); element(by.model('selected'))...
{ "pile_set_name": "Github" }
s = {1, 2, 3, 4} print(s.add(5)) print(sorted(s))
{ "pile_set_name": "Github" }
package controllers import "github.com/TruthHun/BookStack/models" type RankController struct { BaseController } func (this *RankController) Index() { limit, _ := this.GetInt("limit", 50) if limit > 200 { limit = 200 } tab := this.GetString("tab", "all") switch tab { case "reading": rt := models.NewReadin...
{ "pile_set_name": "Github" }
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <title>arm_fir_decimate_init_f32.c File Reference</title> <link href="tabs.css...
{ "pile_set_name": "Github" }
{ "created_at": "2015-02-27T22:27:46.129334", "description": "Example plugin for imdone that logs to console using debug", "fork": false, "full_name": "imdone/imdone-echo-plugin", "language": "JavaScript", "updated_at": "2015-02-27T23:41:50.223802" }
{ "pile_set_name": "Github" }
Package: d-lan-all-in-one Version: _VERSION_ Section: base Priority: optional Architecture: _ARCH_ Installed-Size: _INST_SIZE_ Depends: libprotobuf9 (_DEP_PROTOBUF_), libqt5core5a (_DEP_QTCORE_), libqt5gui5 (_DEP_QTGUI_), libqt5network5 (_DEP_QTNETWORK_), libqt5widgets5 (_DEP_QTWIDGETS_), libqt5xml5 (_DEP_QTXML_), libc...
{ "pile_set_name": "Github" }
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_202) on Fri Jul 24 11:53:36 GMT 2020 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>SpinFunctionInterpreter (Ec...
{ "pile_set_name": "Github" }
using UnityEngine; using System; using System.Collections.Generic; using UMA.AssetBundles; namespace UMA.CharacterSystem { /// <summary> /// Downloading assets Item that provides access to the progress of the requested asset /// </summary> //TODO when finished developing make this non serialized [System.Serializa...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE project> <project name="Cfg2HbmNoErrorTest"> <target name="testCfg2HbmNoError"> <taskdef name="hibernatetool" classname="org.hibernate.tool.ant.HibernateToolTask"/> <hibernatetool> <jdbcconfiguration propertyfile="${resourcesDir}/hibernate.proper...
{ "pile_set_name": "Github" }
adsf asd sadf asf sf saf sf sdf asfa sad asf fd sa sda NaNdfs NaNsadf sdaf sdfa sdfa sdfa sdfa sdfa sdfa sdf fsda sfda sdfa sadf asdf safd asdf asdf asdf asdf asdf dfs sdf dfsa afsd afsd afsd afsd afsd afsd afsd afsd afsd afsd afsd afsd afsd afsd afsd afsd afsd afsd afsd afsd afsd afsd afsd afsd afsd afsd afsd afsd afs...
{ "pile_set_name": "Github" }
<!DOCTYPE html> <html> <head> <meta name="description" content="DBMON HyperApp" /> <meta charset="utf-8"> <link href="../styles.css" rel="stylesheet" type="text/css" /> <title>dbmon (HyperApp)</title> </head> <body> <div id="app"></div> <script src="../lib/hyperapp.min.js"></script> <script src="../ENV.js...
{ "pile_set_name": "Github" }
p edge 21 24 e 0 17 e 1 9 e 1 19 e 2 8 e 2 12 e 3 10 e 5 19 e 5 8 e 6 13 e 6 12 e 7 15 e 7 17 e 11 9 e 11 3 e 13 4 e 14 0 e 14 10 e 15 13 e 16 10 e 16 4 e 18 20 e 18 17 e 20 4 e 20 12
{ "pile_set_name": "Github" }
/* * Copyright (c) 2010 Apple Inc. All Rights Reserved. * * @APPLE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in ...
{ "pile_set_name": "Github" }
# -*- coding: utf-8 -*- cimport pcl_sample_consensus_190 as pcl_sac cimport pcl_features_190 as pcl_ftr cimport pcl_filters_190 as pcl_fil cimport pcl_range_image_190 as pcl_rim cimport pcl_segmentation_190 as pcl_seg
{ "pile_set_name": "Github" }
package client import ( "context" "encoding/json" "net/url" "github.com/docker/docker/api/types" "github.com/docker/docker/api/types/filters" ) // NetworkList returns the list of networks configured in the docker host. func (cli *Client) NetworkList(ctx context.Context, options types.NetworkListOptions) ([]type...
{ "pile_set_name": "Github" }
package nme.image; import nme.native.Include; import cpp.UInt8; @:structAccess @:native("nme::BGRPremA") @:include("nme/Pixel.h") extern class BgrPremA { public var pixelFormat(default,never):Int; public var b:UInt8; public var g:UInt8; public var r:UInt8; public var a:UInt8; publ...
{ "pile_set_name": "Github" }
/* ### * IP: GHIDRA * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writin...
{ "pile_set_name": "Github" }
/* * Copyright (C) 2010-2020 Structr GmbH * * This file is part of Structr <http://structr.org>. * * Structr 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 yo...
{ "pile_set_name": "Github" }
<texture> <address coord="u" mode="border" /> <address coord="v" mode="border" /> <border color="0 0 0 0" /> <mipmap enable="false" /> <quality low="0" /> </texture>
{ "pile_set_name": "Github" }
// RUN: %clang_cc1 -w -debug-info-kind=line-tables-only -fexceptions -fcxx-exceptions -S -emit-llvm %s -o - | FileCheck %s int f1(int a, int b) { // CHECK: icmp {{.*}}, !dbg [[DBG_F1:!.*]] #line 100 return a // && // b; } // CHECK: [[DBG_F1]] = !DILocation(line: 100,
{ "pile_set_name": "Github" }
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf8" /> <title>Заголовок</title> </head> <body><table width=800><tr><td> <center> <h1>Описание AntiDupl.NET</h1> </center> </td></tr></table></body> </html>
{ "pile_set_name": "Github" }
// Copyright 2013 @atotto. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // +build freebsd linux netbsd openbsd solaris package clipboard import ( "errors" "os/exec" ) const ( xsel = "xsel" xclip = "xclip" ) var ( pasteCmdArgs []s...
{ "pile_set_name": "Github" }
import clr clr.AddReference('RevitAPI') from Autodesk.Revit.DB import * clr.AddReference("RevitServices") import RevitServices from RevitServices.Persistence import DocumentManager from RevitServices.Transactions import TransactionManager doc = DocumentManager.Instance.CurrentDBDocument diminsts = UnwrapElement(IN[0]...
{ "pile_set_name": "Github" }
/* preview style examples */ body { background-color:#EFEFEF; font:70% Verdana, Arial, Helvetica, sans-serif; }
{ "pile_set_name": "Github" }
# -*- mode: snippet -*- # key: fe # name: fe # -- fprintf(stderr, "%s:%d: %s$1\n", __FILE__, __LINE__, __FUNCTION__$2);$0
{ "pile_set_name": "Github" }
# pickone ```js // usage chance.pickone(array) ``` Given an array, pick a random element and return it ```js chance.pickone(['alpha', 'bravo', 'charlie', 'delta', 'echo']); => 'delta' ```
{ "pile_set_name": "Github" }
{ }
{ "pile_set_name": "Github" }
{ }
{ "pile_set_name": "Github" }
{ }
{ "pile_set_name": "Github" }
{ }
{ "pile_set_name": "Github" }
// // Generated by class-dump 3.5 (64 bit). // // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. // #import "NSObject.h" @class NSString; __attribute__((visibility("hidden"))) @interface MFPFont : NSObject { float mSize; int mUnit; unsigned int mFlags; NSString *...
{ "pile_set_name": "Github" }
package com.annimon.stream.longstreamtests; import com.annimon.stream.LongStream; import org.junit.Test; import static org.hamcrest.Matchers.is; import static org.junit.Assert.assertThat; public final class IteratorTest { @Test public void testIterator() { assertThat(LongStream.of(1234567L).iterator(...
{ "pile_set_name": "Github" }
/* SPDX-License-Identifier: GPL-2.0 */ #ifdef HAVE_ARCH_X86_64_SUPPORT #define MEMCPY_FN(fn, name, desc) \ void *fn(void *, const void *, size_t); #include "mem-memcpy-x86-64-asm-def.h" #undef MEMCPY_FN #endif
{ "pile_set_name": "Github" }
################################################################################ # # font-misc-misc -- No description available # ################################################################################ XFONT_FONT_MISC_MISC_VERSION = 1.1.2 XFONT_FONT_MISC_MISC_SOURCE = font-misc-misc-$(XFONT_FONT_MISC_MISC_VER...
{ "pile_set_name": "Github" }
/* * RapidIO Tsi57x switch family support * * Copyright 2009-2010 Integrated Device Technology, Inc. * Alexandre Bounine <alexandre.bounine@idt.com> * - Added EM support * - Modified switch operations initialization. * * Copyright 2005 MontaVista Software, Inc. * Matt Porter <mporter@kernel.crashing.org> * ...
{ "pile_set_name": "Github" }
@auto_projection(value = 1) simple = { value : TEXT; };
{ "pile_set_name": "Github" }
package context import ( "context" "runtime" "testing" "time" ) // TestWithTrace ensures that tracing has the expected values in the context. func TestWithTrace(t *testing.T) { pc, file, _, _ := runtime.Caller(0) // get current caller. f := runtime.FuncForPC(pc) base := []valueTestCase{ { key: ...
{ "pile_set_name": "Github" }
/* Area: ffi_call, unwind info Purpose: Check if the unwind information is passed correctly. Limitations: none. PR: none. Originator: Andreas Tobler <andreast@gcc.gnu.org> 20061213 */ /* { dg-do run } */ #include "ffitest.h" static int checking(int a __UNUSED__, short b __UNUSED__, signed char c ...
{ "pile_set_name": "Github" }
<span class="green"><%= @room.name %></span> (<%= @room.x %>, <%= @room.y %>, layer: <%= @room.map_layer %>) <%= Format.underline(@room.name) %> <%= @room |> description() %> <br /> <span class="white">Who</span>: <%= @room |> who(@conn) %> <span class="white">Items</span>: <%= @room |> items(@conn) %> <%= @room |> li...
{ "pile_set_name": "Github" }
package test import ( "fmt" "time" "github.com/google/uuid" apiv1 "k8s.io/api/core/v1" v1 "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/api/resource" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime" "k8s.io/client-go/kubernetes/fake" core "k8s.io/client-go/testing" ) // NodeO...
{ "pile_set_name": "Github" }
var baseDifference = require('./_baseDifference'), baseRest = require('./_baseRest'), isArrayLikeObject = require('./isArrayLikeObject'); /** * Creates an array excluding all given values using * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) * for equality comparisons. * ...
{ "pile_set_name": "Github" }
var $export = require('./_export'); var $parseFloat = require('./_parse-float'); // 20.1.2.12 Number.parseFloat(string) $export($export.S + $export.F * (Number.parseFloat != $parseFloat), 'Number', { parseFloat: $parseFloat });
{ "pile_set_name": "Github" }
+---++---+ | U || C | +---++---+ ^ ^ | | | | +---++---+ | | A || B | | +---++---+ | | | | +----+----+
{ "pile_set_name": "Github" }
/**************************************************************************** * * ==CONFIDENTIAL INFORMATION== * COPYRIGHT 1994-2000 BREADBOX COMPUTER COMPANY -- * ALL RIGHTS RESERVED -- * THE FOLLOWING CONFIDENTIAL INFORMATION IS BEING DISCLOSED TO YOU UNDER A * NON-DISCLOSURE AGREEMENT AND MAY NOT BE DI...
{ "pile_set_name": "Github" }
from CommonServerPython import * import base64 import hashlib import pickle import uuid RANDOM_UUID = str(demisto.args().get('addRandomSalt', '')) # Memo for key matching CACHE = {} # type: ignore def hash_value(simple_value): if not isinstance(simple_value, str): simple_value = str(simple_value) i...
{ "pile_set_name": "Github" }
var g = (13, 13, 14) g[0] = 12 var h: tuple[key: string, val: int] = ("foo", 100) # A sequence of key-val tuples: var i = {"foo": 12, "bar": 13}
{ "pile_set_name": "Github" }
import { Iface } from './iface'; export function foo(iface: Iface): Iface { return iface; }
{ "pile_set_name": "Github" }
<!DOCTYPE html> <html> <head> <title>WebODF performance and benchmarking tool</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <link href="runner.css" rel="stylesheet"/> <script src="webodf.js" type="text/javascript"></script> </head> <body> <div id="loadingScreen"> <h1>L...
{ "pile_set_name": "Github" }
flow_borrows.adb:11:06: info: data dependencies proved
{ "pile_set_name": "Github" }
// // detail/base_from_completion_cond.hpp // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // // Copyright (c) 2003-2016 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 copy at http://www.boost.org/LICENSE_1...
{ "pile_set_name": "Github" }
/* * File : TorrentUtils.java * Created : 13-Oct-2003 * By : stuff * * Azureus - a Java Bittorrent client * * 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 ...
{ "pile_set_name": "Github" }
#include "includes.h" #include "functions.h" #include "externs.h" // globals ADVINFO advinfo[MAXTHREADS]; CRITICAL_SECTION CriticalSection; EXPLOIT exploit[]={ #ifndef NO_NETBIOS {"netbios", "NetBios", 139, NetBios, 0, FALSE, FALSE}, {"ntpass", "NTPass", 445, NetBios, 0, FALSE, FALSE}, #endif #ifndef NO_DCOM {...
{ "pile_set_name": "Github" }
/* * Copyright (c) 1999 * Boris Fomitchev * * This material is provided "as is", with absolutely no warranty expressed * or implied. Any use is at your own risk. * * Permission to use or copy this software for any purpose is hereby granted * without fee, provided the above notices are retained on all copies. *...
{ "pile_set_name": "Github" }
// // This file is auto-generated by script docgen.py. // DO NOT EDIT BY HAND! // // tag::infos_hashtable[] [width="100%",cols="^1,^2,6,6,8",options="header"] |=== | Extension | Nom | Description | Table de hachage (entrée) | Table de hachage (sortie) | irc | irc_message_parse | analyse un message IRC | "message" : m...
{ "pile_set_name": "Github" }
{ "name": "@stylable/custom-value", "version": "3.11.1", "description": "Custom values (variables) for Stylable", "main": "./cjs/index.js", "types": "./cjs/index.d.ts", "scripts": { "clean": "rimraf ./cjs", "build": "ts-build ./src --cjs", "test": "mocha \"test/**/*.spec.ts?(x)\" --timeout 20000...
{ "pile_set_name": "Github" }
/** * eCryptfs: Linux filesystem encryption layer * * Copyright (C) 1997-2003 Erez Zadok * Copyright (C) 2001-2003 Stony Brook University * Copyright (C) 2004-2006 International Business Machines Corp. * Author(s): Michael A. Halcrow <mahalcro@us.ibm.com> * Michael C. Thompson <mcthomps@us.ibm.com...
{ "pile_set_name": "Github" }
var httpRequest; var params = "v=<%= Vanity.context.vanity_active_experiments.map{|name, alternative| "#{name}=#{alternative.id}" }.join(',') %>&authenticity_token=<%= CGI.escape(form_authenticity_token) %>"; if (window.XMLHttpRequest) { // Mozilla, Safari, ... httpRequest = new XMLHttpRequest(); } else if (window.Ac...
{ "pile_set_name": "Github" }
#include <libjrpc/jrpc.h> struct jrpc_mapper *a6o_get_rpcbe_mapper(void);
{ "pile_set_name": "Github" }
#ifndef _FENV_H #define _FENV_H #ifdef __cplusplus extern "C" { #endif #include <bits/fenv.h> int feclearexcept(int); int fegetexceptflag(fexcept_t *, int); int feraiseexcept(int); int fesetexceptflag(const fexcept_t *, int); int fetestexcept(int); int fegetround(void); int fesetround(int); int fegetenv(fenv_t *);...
{ "pile_set_name": "Github" }
<html><head> <link rel="stylesheet" href="style.css" type="text/css"> <meta content="text/html; charset=iso-8859-1" http-equiv="Content-Type"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="Start" href="index.html"> <link title="Index of types" rel=Appendix href="index_types.html"> <lin...
{ "pile_set_name": "Github" }
CONFIG_IGB=y CONFIG_USB_XHCI_HCD=y CONFIG_USB_HID=y CONFIG_HIDRAW=y CONFIG_HID_CP2112=y # CONFIG_HID_APPLEIR is not set # CONFIG_HID_BETOP_FF is not set # CONFIG_HID_ELO is not set # CONFIG_HID_HOLTEK is not set # CONFIG_HID_HUION is not set # CONFIG_HID_NTRIG is not set # CONFIG_HID_PENMOUNT is not set # CONFIG_HID_RO...
{ "pile_set_name": "Github" }