text
stringlengths
10
99.9k
meta
dict
function test() { class C { constructor() { this.x = 1; } } return C.prototype.constructor === C && new C().x === 1; } if (!test()) throw new Error("Test failed");
{ "pile_set_name": "Github" }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Runtime.InteropServices; namespace Microsoft.Diagnostics.Runtime.DacInterface { [StructLayout(Lay...
{ "pile_set_name": "Github" }
using System; using System.Collections.Generic; public static class Program { public static void Main () { var str = "abcdefgh"; var strChars = (str as IEnumerable<char>); foreach (var ch in strChars) Console.WriteLine(ch); } }
{ "pile_set_name": "Github" }
/* Copyright 2017 The Kubernetes 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 in writing, ...
{ "pile_set_name": "Github" }
// Copyright 2019 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 proto import ( "fmt" "google.golang.org/protobuf/reflect/protoreflect" "google.golang.org/protobuf/runtime/protoiface" ) // Merge merges src into ...
{ "pile_set_name": "Github" }
/* * Copyright Amazon.com, Inc. or its affiliates. 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. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" fi...
{ "pile_set_name": "Github" }
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Runtime.InteropServices.WindowsRuntime; using Windows.Foundation; using Windows.Foundation.Collections; using Windows.UI.Xaml; using Windows.UI.Xaml.Controls; using Windows.UI.Xaml.Controls.Primitives; using Windows.UI.Xam...
{ "pile_set_name": "Github" }
var arrayCopy = require('./arrayCopy'), isArguments = require('../lang/isArguments'), isArray = require('../lang/isArray'), isArrayLike = require('./isArrayLike'), isPlainObject = require('../lang/isPlainObject'), isTypedArray = require('../lang/isTypedArray'), toPlainObject = require('../lang/t...
{ "pile_set_name": "Github" }
/*- * See the file LICENSE for redistribution information. * * Copyright (c) 1999, 2011 Oracle and/or its affiliates. All rights reserved. * * $Id$ */ #include "db_config.h" #include "db_int.h" #pragma hdrstop // @v9.5.5 #include "dbinc/db_verify.h" static int __bam_safe_getdata __P((DB*, DB_THREAD_INFO*,PAGE*,...
{ "pile_set_name": "Github" }
/*-------------------------------------------------------------- # Illustrations --------------------------------------------------------------*/ @import "illustrations/illustrations"; /*-------------------------------------------------------------- # Fonts -------------------------------------------------------------...
{ "pile_set_name": "Github" }
<?php /* * Copyright 2016 Google 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 t...
{ "pile_set_name": "Github" }
package xiaofei.library.hermestest; import android.content.Context; import xiaofei.library.hermes.annotation.ClassId; /** * Created by Xiaofei on 16/4/28. */ @ClassId("FileUtils") public interface IFileUtils { String getExternalCacheDir(Context context); }
{ "pile_set_name": "Github" }
// Copyright 2018 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 jsonrpc2 is a minimal implementation of the JSON RPC 2 spec. // https://www.jsonrpc.org/specification // It is intended to be compatible with other i...
{ "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" }
<?php // autoload_files.php @generated by Composer $vendorDir = dirname(dirname(__FILE__)); $baseDir = dirname($vendorDir); return array( 'a0edc8309cc5e1d60e3047b5df6b7052' => $vendorDir . '/guzzlehttp/psr7/src/functions_include.php', 'c964ee0ededf28c96ebd9db5099ef910' => $vendorDir . '/guzzlehttp/promises/s...
{ "pile_set_name": "Github" }
// cgo -godefs -- -Wall -Werror -static -I/tmp/include -m32 linux/types.go | go run mkpost.go // Code generated by the command above; see README.md. DO NOT EDIT. // +build 386,linux package unix const ( SizeofPtr = 0x4 SizeofLong = 0x4 ) type ( _C_long int32 ) type Timespec struct { Sec int32 Nsec int32 } ...
{ "pile_set_name": "Github" }
#include <Blynk.h> #include <Blynk/BlynkDetectDevice.h> /* * Pins Quantity */ #if defined(NUM_DIGITAL_PINS) #define BOARD_DIGITAL_MAX int(NUM_DIGITAL_PINS) #elif defined(PINS_COUNT) #define BOARD_DIGITAL_MAX int(PINS_COUNT) #else #warning "BOARD_DIGITAL_MAX not detected" #define BOARD_DIGITAL_MAX 32 #endif ...
{ "pile_set_name": "Github" }
// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. // Copyright 2016 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 idna // This file implements the Punycode algorithm from RFC 3492. impo...
{ "pile_set_name": "Github" }
'use strict'; angular.module("ngLocale", [], ["$provide", function($provide) { var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; function getDecimals(n) { n = n + ''; var i = n.indexOf('.'); return (i == -1) ? 0 : n.length - i - 1; } function getVF(n, opt_pre...
{ "pile_set_name": "Github" }
//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------...
{ "pile_set_name": "Github" }
package org.coralibre.android.sdk.fakegms.tasks; import androidx.annotation.NonNull; /** * Represents an asynchronous operation. * <p> * Minimal Task class providing interfaces currently required by the RKI app. */ public abstract class Task<T> { /** * Returns true if the Task is complete; false otherwis...
{ "pile_set_name": "Github" }
// Copyright 2018 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 nilness inspects the control-flow graph of an SSA function // and reports errors such as nil pointer dereferences and degenerate // nil pointer compa...
{ "pile_set_name": "Github" }
// Copyright 2009,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. // OpenBSD system calls. // This file is compiled as ordinary Go code, // but it is also input to mksyscall, // which parses the //sys lines and generates ...
{ "pile_set_name": "Github" }
<?php /** * Validates a number as defined by the CSS spec. */ class HTMLPurifier_AttrDef_CSS_Number extends HTMLPurifier_AttrDef { /** * Indicates whether or not only positive values are allowed. * @type bool */ protected $non_negative = false; /** * @param bool $non_negative indica...
{ "pile_set_name": "Github" }
namespace KellermanSoftware.CompareNetObjectsTests.TestClasses { public interface ILabTestSpecimenStability { string TemperatureDescription { get; set; } int TemperatureDescriptionTypeId { get; set; } ...
{ "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" }
# ----------------------------------------------------------------------------- # yacc_badargs.py # # Rules with wrong # args # ----------------------------------------------------------------------------- import sys sys.tracebacklimit = 0 sys.path.insert(0,"..") import ply.yacc as yacc from calclex import tokens # P...
{ "pile_set_name": "Github" }
{ "name": "odinlib", "version": "0.2.0", "description": "A nodejs package for gathering information in odin jobs", "license": "MIT", "repository": "github.com/theycallmemac/odin", "main": "odin/odin.js", "scripts": { "test": "mocha" }, "keywords": [ "odin", "odinlib" ], "dependencies":...
{ "pile_set_name": "Github" }
package mesosphere.marathon package core.task.state import com.typesafe.scalalogging.StrictLogging import mesosphere.marathon.state._ import scala.jdk.CollectionConverters._ import org.apache.mesos import scala.annotation.tailrec /** * Metadata about a task's networking information. * * @param hostPorts The ho...
{ "pile_set_name": "Github" }
/* SPDX-License-Identifier: LGPL-2.1+ */ #pragma once #include <stdbool.h> #include <stddef.h> #include <stdio.h> #include <unistd.h> #include "macro.h" #include "string.h" static inline size_t sc_arg_max(void) { long l = sysconf(_SC_ARG_MAX); assert(l > 0); return (size_t) l; } bool env_nam...
{ "pile_set_name": "Github" }
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- * vim: set ts=8 sw=4 et tw=99: * * 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 obtain one at http://mozilla.org/MPL/2.0/. */ #i...
{ "pile_set_name": "Github" }
import React from 'react'; import PropTypes from 'prop-types'; import moment from 'moment'; import { Link } from '@reach/router'; import { Utils } from '../../../utils/utils.js'; import { siteRoot } from '../../../utils/constants'; const GroupItemPropTypes = { group: PropTypes.object.isRequired, showSetGroupQuotaD...
{ "pile_set_name": "Github" }
/*============================================================================= Copyright (c) 2011 Eric Niebler 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_0.txt) ===============================================...
{ "pile_set_name": "Github" }
/** * This code was generated by * \ / _ _ _| _ _ * | (_)\/(_)(_|\/| |(/_ v1.0.0 * / / */ package com.twilio.rest.preview.understand.assistant.task; import com.fasterxml.jackson.databind.ObjectMapper; import com.twilio.Twilio; import com.twilio.converter.DateConverter; import com.twilio.conv...
{ "pile_set_name": "Github" }
/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include <aws/iotthingsgraph/model/DescribeNamespaceRequest.h> #include <aws/core/utils/json/JsonSerializer.h> #include <utility> using namespace Aws::IoTThingsGraph::Model; using namespace Aws::Uti...
{ "pile_set_name": "Github" }
{ "action": { "error": { "notes": "Inadequate sanitization of FOIA released information", "variety": [ "Misdelivery" ], "vector": [ "Inadequate processes" ] } }, "actor": { "internal": { "job_change": [ "Let go" ], "motive": [ ...
{ "pile_set_name": "Github" }
#ifndef BOOST_SERIALIZATION_ASSUME_ABSTRACT_HPP #define BOOST_SERIALIZATION_ASSUME_ABSTRACT_HPP // MS compatible compilers support #pragma once #if defined(_MSC_VER) # pragma once #endif /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8 // assume_abstract_class.hpp: // (C) Copyright 20...
{ "pile_set_name": "Github" }
/* * Copyright (c) 2016 The WebM project authors. All Rights Reserved. * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file in the root of the source tree. An additional * intellectual property rights grant can be found in the file PATENTS. * All contribu...
{ "pile_set_name": "Github" }
/** * Copyright (c) 2010-2020 SAP and others. * All rights reserved. This program 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.eclipse.org/legal/epl-v20.html * * Contributors: * SA...
{ "pile_set_name": "Github" }
// Configuration for your app require("./build-index"); const path = require("path"); const fs = require("fs"); const webpack = require("webpack"); const CopyWebpackPlugin = require("copy-webpack-plugin"); const WebpackDeepScopeAnalysisPlugin = require('webpack-deep-scope-plugin').default; const minimist = require('m...
{ "pile_set_name": "Github" }
// CivOne // // To the extent possible under law, the person who associated CC0 with // CivOne has waived all copyright and related or neighboring rights // to CivOne. // // You should have received a copy of the CC0 legalcode along with this // work. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>. us...
{ "pile_set_name": "Github" }
/** * The contents of this file are subject to the license and copyright * detailed in the LICENSE and NOTICE files at the root of the source * tree and available online at * * http://www.dspace.org/license/ */ package org.dspace.servicemanager.config; import java.util.HashMap; import java.util.Map; import org....
{ "pile_set_name": "Github" }
#pragma once #include <iostream> #include "Common.h" namespace magpie { class Memory; // Interface for a class that provides the root objects reachable by the // garbage collector. When a collection needs to occur, Memory starts by // calling this to find the known root objects. An implementor should // o...
{ "pile_set_name": "Github" }
// Copyright 2018 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 // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writi...
{ "pile_set_name": "Github" }
using System; using System.Linq; using System.Windows; using System.Windows.Controls; using Certify.Models.Config; namespace Certify.UI.Windows { /// <summary> /// Selects template based on the type of the data item. /// </summary> public class ControlTemplateSelector : DataTemplateSelector { ...
{ "pile_set_name": "Github" }
<?php namespace App\maguttiCms\Admin\Importer; use App\Author; use App\Category; use App; /** * Importa i dati dal fileone * * Class GlobalListImport * @package App\maguttiCms\Admin\Importer */ class GlobalListImport extends ImportHelper { /** * @var */ protected $model; protected $lang = ...
{ "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>CFBundleDevelopmentRegion</key> <string>$(DEVELOPMENT_LANGUAGE)</string> <key>CFBundleExecutable</key> <string>$(EXECUTABLE_NAME)</string> ...
{ "pile_set_name": "Github" }
{ "description": "ClientIPConfig represents the configurations of Client IP based session affinity.", "properties": { "timeoutSeconds": { "description": "timeoutSeconds specifies the seconds of ClientIP type session sticky time. The value must be >0 && <=86400(for 1 day) if ServiceAffinity == \"ClientIP\"...
{ "pile_set_name": "Github" }
/* * Copyright (C) 2013 salesforce.com, 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 ...
{ "pile_set_name": "Github" }
package Paws::ElasticBeanstalk::ListTagsForResource; use Moose; has ResourceArn => (is => 'ro', isa => 'Str', required => 1); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'ListTagsForResource'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::E...
{ "pile_set_name": "Github" }
/* * Copyright(c) 2006 to 2019 ADLINK Technology Limited and others * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License * v. 1.0 which is availabl...
{ "pile_set_name": "Github" }
package jwt // Implements the none signing method. This is required by the spec // but you probably should never use it. var SigningMethodNone *signingMethodNone const UnsafeAllowNoneSignatureType unsafeNoneMagicConstant = "none signing method allowed" var NoneSignatureTypeDisallowedError error type signingMethodN...
{ "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" }
#ifndef UTIL_LINUX_STATFS_MAGIC_H #define UTIL_LINUX_STATFS_MAGIC_H #include <sys/statfs.h> /* * If possible then don't depend on internal libc __SWORD_TYPE type. */ #ifdef __GNUC__ #define F_TYPE_EQUAL(a, b) (a == (__typeof__(a)) b) #else #define F_TYPE_EQUAL(a, b) (a == (__SWORD_TYPE) b) #endif /* * Unfortunat...
{ "pile_set_name": "Github" }
<?php /** * osCommerce Online Merchant * * @copyright Copyright (c) 2011 osCommerce; http://www.oscommerce.com * @license BSD License; http://www.oscommerce.com/bsdlicense.txt */ namespace osCommerce\OM\Core\Site\Admin\Application\PaymentModules\Model; use osCommerce\OM\Core\OSCOM; use osCommerce\OM\Core\...
{ "pile_set_name": "Github" }
package au.edu.wehi.idsv.visualisation; import au.edu.wehi.idsv.visualisation.TrackedBuffer.NamedTrackedBuffer; import htsjdk.samtools.util.CloserUtil; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import java.lang.ref.WeakReference; import java.nio.charset.StandardCharsets; import...
{ "pile_set_name": "Github" }
/* [auto_generated] boost/numeric/odeint/util/ublas_wrapper.hpp [begin_description] Resizing for ublas::vector and ublas::matrix [end_description] Copyright 2011-2013 Mario Mulansky Copyright 2011-2013 Karsten Ahnert Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1...
{ "pile_set_name": "Github" }
// CodeContracts // // Copyright (c) Microsoft Corporation // // All rights reserved. // // MIT License // // 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 wit...
{ "pile_set_name": "Github" }
require('../../modules/es6.number.is-finite'); module.exports = require('../../modules/$.core').Number.isFinite;
{ "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 BASE_LOCATION_H_ #define BASE_LOCATION_H_ #include <stddef.h> #include <cassert> #include <functional> #include <string> #include "base/bas...
{ "pile_set_name": "Github" }
// Copyright 2008-2018 Yolo Technologies, Inc. All Rights Reserved. https://www.comblockengine.com #include "db_exception.h" #include "db_interface_redis.h" #include "db_interface/db_interface.h" namespace KBEngine { //------------------------------------------------------------------------------------- DBException...
{ "pile_set_name": "Github" }
import {MigrationInterface, QueryRunner} from 'typeorm'; export class tipsAndBitsMessagesToText1573942908160 implements MigrationInterface { name = 'tipsAndBitsMessagesToText1573942908160'; public async up(queryRunner: QueryRunner): Promise<any> { await queryRunner.query(`CREATE TABLE "temporary_user_tip" ("i...
{ "pile_set_name": "Github" }
package me.coley.recaf.ui.controls; import javafx.scene.control.TextField; /** * TextField that with a numeric text parse. * * @author Matt */ public class NumericText extends TextField { /** * @return Generic number, {@code null} if text does not represent any number format. */ public Number get() { Stri...
{ "pile_set_name": "Github" }
//********************************************************* // // Copyright (c) Microsoft. All rights reserved. // This code is licensed under the MIT License (MIT). // THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF // ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY // IMPLIED WARRANTIES OF FITNESS FOR A PA...
{ "pile_set_name": "Github" }
// Copyright 2019 ETH Zurich // Copyright 2020 ETH Zurich, Anapaya Systems // // 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 ...
{ "pile_set_name": "Github" }
// Copyright 2013 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 ipv6 import ( "encoding/binary" "errors" "net" "unsafe" ) var ( errMissingAddress = errors.New("missing address") errHeaderTooShort = errors.N...
{ "pile_set_name": "Github" }
/* Copyright 2017 The Kubernetes 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 in writing, ...
{ "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 "CBaseContact.h" #import "WCDBCoding.h" @class EnterpriseRoomData, NSString; @interface CEnterpriseContact : CBaseContact <WCDBCoding> { _Bool m_bHeadImageUpdateFlag;...
{ "pile_set_name": "Github" }
var rules = require('../../../../lib/rules/util').rules; module.exports = function(req, res) { rules.disableDefault(); res.json({ec: 0, em: 'success', defaultRulesIsDisabled: rules.defaultRulesIsDisabled(), list: rules.getSelectedList()}); };
{ "pile_set_name": "Github" }
/// @ref simd /// @file glm/simd/integer.h #pragma once #if GLM_ARCH & GLM_ARCH_SSE2_BIT GLM_FUNC_QUALIFIER glm_uvec4 glm_i128_interleave(glm_uvec4 x) { glm_uvec4 const Mask4 = _mm_set1_epi32(0x0000FFFF); glm_uvec4 const Mask3 = _mm_set1_epi32(0x00FF00FF); glm_uvec4 const Mask2 = _mm_set1_epi32(0x0F0F0F0F); glm_...
{ "pile_set_name": "Github" }
/* * Copyright 2010-2013 Amazon.com, Inc. or its affiliates. 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. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "lice...
{ "pile_set_name": "Github" }
/* * Copyright 2008 The Closure Compiler 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...
{ "pile_set_name": "Github" }
# -*- coding: utf-8 -*- # # This file is part of EventGhost. # Copyright © 2005-2020 EventGhost Project <http://www.eventghost.net/> # # EventGhost 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 versio...
{ "pile_set_name": "Github" }
/* * **************************************************************************** * Cloud Foundry * Copyright (c) [2009-2016] Pivotal Software, Inc. All Rights Reserved. * * This product is licensed to you under the Apache License, Version 2.0 (the "License"). * You may not use this product except...
{ "pile_set_name": "Github" }
#ifndef OPENTISSUE_CORE_CONTAINERS_GRID_UTIL_GRID_BISECTION_LINE_SEARCH_H #define OPENTISSUE_CORE_CONTAINERS_GRID_UTIL_GRID_BISECTION_LINE_SEARCH_H // // OpenTissue Template Library // - A generic toolbox for physics-based modeling and simulation. // Copyright (C) 2008 Department of Computer Science, University of Cope...
{ "pile_set_name": "Github" }
package org.javaee8.jsonp.merge; import javax.json.Json; import javax.json.JsonMergePatch; import javax.json.JsonObject; import javax.json.JsonValue; import org.jboss.arquillian.container.test.api.Deployment; import org.jboss.arquillian.junit.Arquillian; import org.jboss.shrinkwrap.api.ShrinkWrap; import org.jboss.shr...
{ "pile_set_name": "Github" }
{ "name": "bluetoothconnector", "full_name": "bluetoothconnector", "oldname": null, "aliases": [ ], "versioned_formulae": [ ], "desc": "Connect and disconnect Bluetooth devices", "license": "MIT", "homepage": "https://github.com/lapfelix/BluetoothConnector", "versions": { "stable": "2.0.0", ...
{ "pile_set_name": "Github" }
/* * Copyright 2018 StreamSets 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...
{ "pile_set_name": "Github" }
#ifndef NUMBA_PY_MODULE_H_ #define NUMBA_PY_MODULE_H_ #define PY_SSIZE_T_CLEAN #include <Python.h> #include <structmember.h> #include <frameobject.h> #if PY_MAJOR_VERSION >= 3 #define MOD_ERROR_VAL NULL #define MOD_SUCCESS_VAL(val) val #define MOD_INIT(name) PyMODINIT_FUNC PyInit_##name(void) #define MOD_DEF...
{ "pile_set_name": "Github" }
//------------------------------------------------------------------------------ // <copyright file="DetailsViewMode.cs" company="Microsoft"> // Copyright (c) Microsoft Corporation. All rights reserved. // </copyright> //------------------------------...
{ "pile_set_name": "Github" }
var mkdirp = require('../').mkdirp; var path = require('path'); var fs = require('fs'); var test = require('tap').test; var _0777 = parseInt('0777', 8); var _0755 = parseInt('0755', 8); var _0744 = parseInt('0744', 8); var ps = [ '', 'tmp' ]; for (var i = 0; i < 25; i++) { var dir = Math.floor(Math.random() * Mat...
{ "pile_set_name": "Github" }
/*! * # Semantic UI - Nag * http://github.com/semantic-org/semantic-ui/ * * * Released under the MIT license * http://opensource.org/licenses/MIT * */ ;(function ($, window, document, undefined) { "use strict"; window = (typeof window != 'undefined' && window.Math == Math) ? window : (typeof self != 'und...
{ "pile_set_name": "Github" }
/* RetroArch - A frontend for libretro. * Copyright (C) 2011-2017 - Daniel De Matteis * * RetroArch 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 Found- * ation, either version 3 of the License, or (at your option) ...
{ "pile_set_name": "Github" }
""" Use this module directly: import xarray.plot as xplt Or use the methods on a DataArray or Dataset: DataArray.plot._____ Dataset.plot._____ """ import functools import numpy as np import pandas as pd from .facetgrid import _easy_facetgrid from .utils import ( _add_colorbar, _assert_valid_xy, ...
{ "pile_set_name": "Github" }
/* * Minio Cloud Storage (C) 2018 Minio, 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...
{ "pile_set_name": "Github" }
/* **************************************************************************** * * Copyright (c) Microsoft Corporation. * * This source code is subject to terms and conditions of the Apache License, Version 2.0. A * copy of the license can be found in the License.html file at the root of this distribution. If * ...
{ "pile_set_name": "Github" }
/** * Loads a Wavefront .mtl file specifying materials * * @author angelxuanchang */ THREE.MTLLoader = function( baseUrl, options, crossOrigin ) { this.baseUrl = baseUrl; this.options = options; this.crossOrigin = crossOrigin; }; THREE.MTLLoader.prototype = { constructor: THREE.MTLLoader, load: function ...
{ "pile_set_name": "Github" }
var lodash = require('./lodash'); /** * Creates a `lodash` object that wraps `value` with explicit method * chaining enabled. * * @static * @memberOf _ * @category Chain * @param {*} value The value to wrap. * @returns {Object} Returns the new `lodash` wrapper instance. * @example * * var users = [ * { '...
{ "pile_set_name": "Github" }
<div {!! $attributes !!}> @if ($visibled) @if (!empty($value)) <a href="{{ $value }}" data-toggle="lightbox"> <img class="thumbnail" src="{{ $value }}"> </a> @endif {!! $append !!} @if($small) <small class="clearfix">{!! $small !!}</small> @endif @endif </div>
{ "pile_set_name": "Github" }
"use strict"; var isImplemented = require("../../../../string/#/@@iterator/is-implemented"); module.exports = function (a) { a(isImplemented(), true); };
{ "pile_set_name": "Github" }
c() => null;
{ "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. // Windows system calls. package syscall import ( errorspkg "errors" "internal/race" "sync" "unicode/utf16" "unsafe" ) //go:generate go run mksyscall_wi...
{ "pile_set_name": "Github" }
{ "_from": "ansi-escapes@^3.0.0", "_id": "ansi-escapes@3.1.0", "_inBundle": false, "_integrity": "sha512-UgAb8H9D41AQnu/PbWlCofQVcnV4Gs2bBJi9eZPxfU/hgglFh3SMDMENRIqdr7H6XFnXdoknctFByVsCOotTVw==", "_location": "/ansi-escapes", "_phantomChildren": {}, "_requested": { "type": "range", "regis...
{ "pile_set_name": "Github" }
define( [ "./core", "./var/document", "./var/rnotwhite", "./var/slice", "./data/var/dataPriv", "./core/init", "./selector" ], function( jQuery, document, rnotwhite, slice, dataPriv ) { var rkeyEvent = /^key/, rmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/, rtypenamespace = /^([^.]*)(?:\.(.+)...
{ "pile_set_name": "Github" }
package structure; import java.util.AbstractSet; import java.util.ArrayList; import java.util.Iterator; import java.util.List; import java.util.Map; import java.util.Set; import java.util.TreeSet; /** A simple Map implementation, implemented in terms of a * pair of ArrayLists just to show what a Map has to do (it wo...
{ "pile_set_name": "Github" }
// // MediaObserver.swift // RCTAgora // // Created by LXH on 2020/4/10. // Copyright © 2020 Syan. All rights reserved. // import Foundation import AgoraRtcKit class MediaObserver: NSObject { private var emitter: (_ data: Dictionary<String, Any?>?) -> Void private var maxMetadataSize = 0 private var m...
{ "pile_set_name": "Github" }
//---------------------------------------------------------------------------// // Copyright (c) 2013 Kyle Lutz <kyle.r.lutz@gmail.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_0.txt // // See http://boos...
{ "pile_set_name": "Github" }
/********************************************************************* * NAN - Native Abstractions for Node.js * * Copyright (c) 2015 NAN contributors * * MIT License <https://github.com/nodejs/nan/blob/master/LICENSE.md> ********************************************************************/ #ifndef NAN_OBJECT_WR...
{ "pile_set_name": "Github" }
```jsx import { PlayerContextConsumer } from '@cassette/core'; <PlayerContextConsumer filterList={['currentTime', 'paused', 'onTogglePause']}> {({ currentTime, paused, onTogglePause }) => ( <React.Fragment> <div> The track is {paused ? 'paused' : 'playing'}. The time is {currentTime}. </div> ...
{ "pile_set_name": "Github" }
#include "rpygen_wrapper.hpp" RPYBUILD_PYBIND11_MODULE(m) { initWrapper(m); }
{ "pile_set_name": "Github" }