text
stringlengths
2
99.9k
meta
dict
// The Great Computer Language Shootout // http://shootout.alioth.debian.org // // Contributed by Ian Osgood var last = 42, A = 3877, C = 29573, M = 139968; function rand(max) { last = (last * A + C) % M; return max * last / M; } var ALU = "GGCCGGGCGCGGTGGCTCACGCCTGTAATCCCAGCACTTTGG" + "GAGGCCGAGGCGGGCGGAT...
{ "pile_set_name": "Github" }
#import <Foundation/Foundation.h> @interface PodsDummy_Quick_tvOS : NSObject @end @implementation PodsDummy_Quick_tvOS @end
{ "pile_set_name": "Github" }
/* Package analysis defines the interface between a modular static analysis and an analysis driver program. Background A static analysis is a function that inspects a package of Go code and reports a set of diagnostics (typically mistakes in the code), and perhaps produces other results as well, such as suggested r...
{ "pile_set_name": "Github" }
selector: js_test: roots: - jstests/tool/*.js # Tool tests start their own mongod's. executor: js_test: config: shell_options: nodb: '' readMode: commands
{ "pile_set_name": "Github" }
This document explains why certain assertions were not tested. Assertions not listed here should be covered by the tests in this directory. Assertions Tested ? Remarks 1 NO 2 YES 3 NO Only page mapped by mmap() are tested 4 NO 5 NO Implementation-defined 6 NO 7 ...
{ "pile_set_name": "Github" }
/* * Copyright (C) 2018 The Android Open Source Project * * 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 app...
{ "pile_set_name": "Github" }
<!DOCTYPE html> <html> <head> <script src="../OLLoader.js"></script> <script type="text/javascript"> function test_initialize(t) { t.plan(1); var layer = new OpenLayers.Layer.PointGrid(); t.ok(layer instanceof OpenLayers.Layer.PointGrid, "instance created"); layer.destroy(); } ...
{ "pile_set_name": "Github" }
<?php /************************************************************************************* * vbnet.php * --------- * Author: Alan Juden (alan@judenware.org) * Copyright: (c) 2004 Alan Juden, Nigel McNie (http://qbnz.com/highlighter) * Release Version: 1.0.8.10 * Date Started: 2004/06/04 * * VB.NET language fi...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//FreeBSD//DTD XHTML 1.0 Transitional-Based Extension//EN" "http://www.FreeBSD.org/XML/share/xml/xhtml10-freebsd.dtd" [ <!ENTITY title "Proyecto FreeBSD/alpha"> <!ENTITY email 'freebsd-alpha'> ]> <!-- The FreeBSD Spanish Documentation Project Ori...
{ "pile_set_name": "Github" }
define("ace/mode/textile_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"], function(require, exports, module) { "use strict"; var oop = require("../lib/oop"); var TextHighlightRules = require("./text_highlight_rules").TextHighlightRules; var TextileHighlightRules = functio...
{ "pile_set_name": "Github" }
# Running OpenVR without a headset On Windows, you can use a mock OpenVR component to run some basic WebXR functionality in Chrome without connecting a VR headset. This can be useful for reproing and investigating WebXR bugs without as much setup required. Replace `out\debug` with wherever your build output is going....
{ "pile_set_name": "Github" }
import { World } from "../src/World.js"; export function init(benchmarks) { benchmarks .group("world") .add({ name: "new World({ entityPoolSize: 100k })", execute: () => { new World({ entityPoolSize: 100000 }); }, iterations: 10 }) .add({ name: "World::createEnti...
{ "pile_set_name": "Github" }
/* * Copyright Andrey Semashev 2007 - 2015. * 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) */ /*! * \file keywords/log_name.hpp * \author Andrey Semashev * \date 14.03.2009...
{ "pile_set_name": "Github" }
This is the ipset source tree. Follow the next steps to install ipset. If you upgrade from an earlier 5.x release, please read the UPGRADE instructions too. 0. You need the source tree of your kernel (version >= 2.6.34) and it have to be configured with ip6tables support enabled, modules compiled. Please apply t...
{ "pile_set_name": "Github" }
{ "name": "bundle-test-app", "scripts": { "start": "xvfb-maybe electron .", "build": "webpack" }, "main": "dist/main.js", "dependencies": { "electron": "^7.1.10" }, "devDependencies": { "html-webpack-plugin": "^3.2.0", "webpack": "^4.41.5", "webpack-cli": "^3.3.10", "webpack-pl...
{ "pile_set_name": "Github" }
import angular from 'angular'; export const storage = angular.module('util.storage', []); storage.factory('storage', ['$window', function($window) { function setJs(key, val, toSessionStorage = false) { if (toSessionStorage) { $window.sessionStorage.setItem(key, JSON.stringify(val)); } else { $...
{ "pile_set_name": "Github" }
#include <tommath.h> #ifdef BN_S_MP_ADD_C /* LibTomMath, multiple-precision integer library -- Tom St Denis * * LibTomMath is a library that provides multiple-precision * integer arithmetic as well as number theoretic functionality. * * The library was designed directly after the MPI library by * Michael Fromberg...
{ "pile_set_name": "Github" }
/* PowerShell Desired State Configuration for Linux 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 withou...
{ "pile_set_name": "Github" }
package org.zstack.sdk; import org.zstack.sdk.L3NetworkInventory; public class ChangeL3NetworkStateResult { public L3NetworkInventory inventory; public void setInventory(L3NetworkInventory inventory) { this.inventory = inventory; } public L3NetworkInventory getInventory() { return this...
{ "pile_set_name": "Github" }
--- title: No Main Search topTitle: Layouts icon: fa fa-building noMainSearch: true --- <h2>Code</h2>
{ "pile_set_name": "Github" }
function [ f wf zwf ] = BGf(C,b) % Busacker-Gowan迭代算法求最小费用流 % C表示容量矩阵 % b表示弧上单位流量的费用 % f表示最小费用最大流矩阵 % wf表示最大流量 % zwf表示最小费用 n = size(C,2); wf = 0;wf0=inf; f = zeros(n,n); while(1) a = ones(n,n)*inf; for i =1:n a(i,i)=0; end for i = 1:n for j = 1:n if C(i,j) > 0 && f(i,j)==0 ...
{ "pile_set_name": "Github" }
require 'after_commit/active_record' require 'after_commit/connection_adapters' module AfterCommit def self.committed_records @@committed_records ||= [] end def self.committed_records=(committed_records) @@committed_records = committed_records end def self.committed_records_on_create @@commit...
{ "pile_set_name": "Github" }
<Workspace Version="1.0.1.1743" X="0" Y="0" zoom="1" Name="Home" Description="" RunType="Manual" RunPeriod="1000" HasRunWithoutCrash="False"> <NamespaceResolutionMap /> <Elements> <Dynamo.Graph.Nodes.CodeBlockNodeModel guid="81f25df3-a55e-48c9-9fe8-0ce0cc17fdc3" type="Dynamo.Graph.Nodes.CodeBlockNodeModel" nick...
{ "pile_set_name": "Github" }
<!DOCTYPE html><html class="initial"><head><title>TO-DO tutorial - server.js</title><meta property="og:title" content="TO-DO tutorial - server.js"/><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1"><meta name="keywords" content="server, javascript, js, node.js, library, html, htm...
{ "pile_set_name": "Github" }
/* * 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/. * * Copyright (c) 2019, the University of Queensland * Author: Alex Wilson <alex@uq.edu.au> */ #include <stdio...
{ "pile_set_name": "Github" }
// // CRC32AppDelegate.h // CRC32 // // Created by Pichaya Srifar on 11/8/11. // Copyright Vervata 2011. All rights reserved. // #import <UIKit/UIKit.h> @class CRC32ViewController; @interface CRC32AppDelegate : NSObject <UIApplicationDelegate> { UIWindow *window; CRC32ViewController *viewController; } @...
{ "pile_set_name": "Github" }
/* metaflac - Command-line FLAC metadata editor * Copyright (C) 2001-2009 Josh Coalson * Copyright (C) 2011-2014 Xiph.Org Foundation * * 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; eit...
{ "pile_set_name": "Github" }
// // Wells // -------------------------------------------------- // Base class .well { min-height: 20px; padding: 19px; margin-bottom: 20px; background-color: @wellBackground; border: 1px solid darken(@wellBackground, 7%); .border-radius(@baseBorderRadius); .box-shadow(inset 0 1px 1px rgba(0,0,0,.05));...
{ "pile_set_name": "Github" }
# RTRootNavigationController [![CI Status](http://img.shields.io/travis/rickytan/RTRootNavigationController.svg?style=flat)](https://travis-ci.org/rickytan/RTRootNavigationController) [![Version](https://img.shields.io/cocoapods/v/RTRootNavigationController.svg?style=flat)](http://cocoapods.org/pods/RTRootNavigationCo...
{ "pile_set_name": "Github" }
--- a/arch/arm/boot/dts/armada-388-rd.dts +++ b/arch/arm/boot/dts/armada-388-rd.dts @@ -77,6 +77,16 @@ compatible = "st,m25p128"; reg = <0>; /* Chip select 0 */ spi-max-frequency = <108000000>; + + partition@0 { + label = "uboot"; + reg = <0 0x400000>; + }; + + partition@1 { + ...
{ "pile_set_name": "Github" }
const child_process = require('child_process') const result = child_process.execFileSync("src/test/testscript.py") console.log(result.toString())
{ "pile_set_name": "Github" }
// Import module from source import Phenomenon from '../../dist/phenomenon'; // Import optional utils import { getRandom, rgbToHsl, rotateY } from './utils'; // Material colors in HSL const colors = [[255, 108, 0], [83, 109, 254], [29, 233, 182], [253, 216, 53]].map(color => rgbToHsl(color) ); // Boolean to toggle...
{ "pile_set_name": "Github" }
//===----------------------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===---------------------------...
{ "pile_set_name": "Github" }
/* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive Copyright (C) 2005-2020 Warzone 2100 Project Warzone 2100 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 o...
{ "pile_set_name": "Github" }
/* eslint-env browser */ var utils = require('../../utils/index.js'); var setOverlayVisible = function() {}; var initOverlayEl = function() {}; var enterClass = utils.genUID(); var overlayEl = null; var timer; if (typeof document !== 'undefined') { initOverlayEl = function() { if (overlayEl === null) { ...
{ "pile_set_name": "Github" }
; RUN: opt < %s -store-to-load-forwarding-conflict-detection=false -loop-accesses -analyze | FileCheck %s ; RUN: opt -passes='require<scalar-evolution>,require<aa>,loop(print-access-info)' -store-to-load-forwarding-conflict-detection=false -disable-output < %s 2>&1 | FileCheck %s ; This test checks that we prove the...
{ "pile_set_name": "Github" }
package org.tribbloid.ispark.display.dsl import java.net.URL import org.apache.spark.sql.DataFrame import org.ccil.cowan.tagsoup.jaxp.SAXFactoryImpl import org.pegdown.{Extensions, PegDownProcessor} import org.tribbloid.ispark.display.{HTMLDisplayObject, LatexDisplayObject} import scala.xml._ object Display { ca...
{ "pile_set_name": "Github" }
author: Tatsuhiko Miyagawa follow_selector: .title>a # support thumbnail!
{ "pile_set_name": "Github" }
{ "pip": [ "{{artifact-dir}}/bin_wrapper-0.0.1-py2.py3-none-any.whl" ] }
{ "pile_set_name": "Github" }
/***************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \__...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="utf-8"?> <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"> <CheckBoxPreference android:key="@string/gross_sales_key" android:title="@string/gross_sales" android:defaultValue="true" /> <CheckBoxPreference android:key="@st...
{ "pile_set_name": "Github" }
Manifest-Version: 1.0 Private-Package: org.openhab.binding.samsungac.internal Ignore-Package: org.openhab.binding.samsungac.internal Bundle-License: http://www.eclipse.org/legal/epl-2.0 Bundle-Name: openHAB Samsung AC Binding Bundle-SymbolicName: org.openhab.binding.samsungac Bundle-Vendor: openHAB.org Bundle-Version: ...
{ "pile_set_name": "Github" }
# MvvmCross site changelog ## Mvxtheme 1.6 (2017-08-10) * Jekyll 3.5.0 rename `gem` to `plugins`. * Update Jekyll and plugins version. * Fix RSVP button in the middle. * Add speakers section. * Remove Gemfile.lock from .gitignore. ## Mvxtheme 1.5 (2017-08-03) * Add XABLU and Microsoft logo. * Fix button styles...
{ "pile_set_name": "Github" }
vcl 4.0; backend default { .host = "{{ servers.exampleapp.ip }}"; .port = "{{ servers.exampleapp.port }}"; } sub vcl_recv { return (pass); } sub vcl_backend_response { } sub vcl_deliver { }
{ "pile_set_name": "Github" }
如何访问App内的开发菜单: 1. 在iOS中晃动设备或者在模拟器上按下`control + ⌘ + z`。 2. 在Android中晃动设备或者按下硬件菜单键(一般只有老设备或者大多数模拟器还有这个键。比如,在[genymotion](https://www.genymotion.com) 中你可以通过按下`⌘ + m`来模拟点击硬件菜单)。PC键盘上也有这个键,一般在标准键盘右边的Ctrl和右Windows键之间,即模拟鼠标右键的键。 > 提示 > 如何在成品(production builds)中关掉开发者菜单: > 1. 对于iOS来说,在Xcode中打开你的项目,选择`Product → Scheme → ...
{ "pile_set_name": "Github" }
StartChar: aKaf.init_KafLam Encoding: 65798 -1 356 Width: 587 Flags: HW AnchorPoint: "TwoDotsBelow" 57 -156 basechar 0 AnchorPoint: "DotBelow" 111 -156 basechar 0 AnchorPoint: "TashkilBelow" 140 -327 basechar 0 AnchorPoint: "TwoDotsAbove" -38 674 basechar 0 AnchorPoint: "DotAbove" 16 674 basechar 0 AnchorPoint: "RingBe...
{ "pile_set_name": "Github" }
CREATE FUNCTION func_with_overload() RETURNS integer LANGUAGE plpgsql AS ' BEGIN RETURN 1; END; '; GO CREATE FUNCTION func_with_overload(var1 integer) RETURNS integer LANGUAGE plpgsql AS ' BEGIN RETURN 1; END; '; GO CREATE FUNCTION func_with_overload(var1 integer, invalstr character varyin...
{ "pile_set_name": "Github" }
/* libunwind - a platform-independent unwind library Copyright (C) 2001-2005 Hewlett-Packard Co Contributed by David Mosberger-Tang <davidm@hpl.hp.com> This file is part of libunwind. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation ...
{ "pile_set_name": "Github" }
// stylelint-disable selector-max-id, selector-max-compound-selectors body { padding-top: 120px; } pre { background: #f7f7f9; } iframe { overflow: hidden; border: none; } @media (min-width: 768px) { body > .navbar-transparent { box-shadow: none; .navbar-nav > .open > a { box-shadow: none; ...
{ "pile_set_name": "Github" }
#ifdef TEST_COMPILE_ALL_HEADERS_SEPARATELY // #include "AudioVULEDs.hpp" // TODO #endif
{ "pile_set_name": "Github" }
from flask import Blueprint, render_template admin = Blueprint('admin', __name__, url_prefix='/admin', template_folder='templates', static_folder='static') @admin.route('/') def index(): return render_template('admin/index.html') @admin.route('/index2') def index2(): ret...
{ "pile_set_name": "Github" }
#pragma once #include <Eigen/Dense> #include <unsupported/Eigen/KroneckerProduct> #include <ceres/ceres.h> namespace aliceVision { namespace SO3 { using Matrix = Eigen::Matrix<double, 3, 3, Eigen::RowMajor>; /** Compute the skew symmetric matrix of the given vector 3d @param int the 3d vector @return a skew symmetr...
{ "pile_set_name": "Github" }
/* * Copyright 2014-2020 Lukas Krejci * and other contributors as indicated by 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/licenses...
{ "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" }
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'powershell') == -1 " Compiler: powershell " Run ps1 scripts in powershell and process their output. Quickly jump through " stack traces and see script output in the quickfix. if exists("current_compiler") finish endif let current_compiler = "powershel...
{ "pile_set_name": "Github" }
- [sbt 0.13.13](https://github.com/sbt/sbt-protobuf/commit/3bbf2599002dafe7c82bafc102eb7985019587b5) - [update protobuf-java 3.1.0](https://github.com/sbt/sbt-protobuf/commit/ac7ed5127e6303c3eb770a342f0a56988233acb7) - [Include scalaBinaryVersion to the cache.](https://github.com/sbt/sbt-protobuf/commit/4eca548b4429042...
{ "pile_set_name": "Github" }
export interface SingletonResolverOptions { cacheable?: boolean; } /** * SingletonResolver is a cached loader for a single result. */ export class SingletonResolver<T> { private cache: Promise<T> | null = null; private resolver: () => Promise<T>; private cacheable: boolean; constructor( resolver: () =...
{ "pile_set_name": "Github" }
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information. using System.Collections.Generic; namespace System.Web.Http.Metadata.Providers { public class DataAnnotationsModelMetadataProvider : AssociatedMetadataProvider<CachedDataAnnotation...
{ "pile_set_name": "Github" }
These images are from the silk icon set, and are licensed under the Creative Commons Attribution 2.5 License. See: http://famfamfam.com/lab/icons/silk/
{ "pile_set_name": "Github" }
{ "af": "afrikans", "agq": "aghem", "ak": "akan", "sq": "albanski", "am": "amharski", "ar": "arapski", "hy": "armenski", "as": "asamski", "ast": "asturijski", "asa": "asu", "az": "azerbejdžanski", "ksf": "bafia", "bm": "bambara", "bas": "basa", "eu": "baskijski", "bem": "bemba", "bez": "bena", "bn": "...
{ "pile_set_name": "Github" }
/* Synopsys DesignWare Core Enterprise Ethernet (XLGMAC) Driver * * Copyright (c) 2017 Synopsys, Inc. (www.synopsys.com) * * This program is dual-licensed; you may select either version 2 of * the GNU General Public License ("GPL") or BSD license ("BSD"). * * This Synopsys DWC XLGMAC software driver and associat...
{ "pile_set_name": "Github" }
--- name: Xamarin.Android - Android Beam Demo description: "Demonstrates new Android Beam NFC feature (Android Ice Cream Sandwich)" page_type: sample languages: - csharp products: - xamarin extensions: tags: - androidicecreamsandwich urlFragment: androidbeamdemo --- # Android Beam Demo fpr Xamarin.Android This...
{ "pile_set_name": "Github" }
// // Prefix header for all source files of the 'CocoaTouchStaticLibrary' target in the 'CocoaTouchStaticLibrary' project. // #ifdef __OBJC__ #import <Foundation/Foundation.h> #import "DebugStatus.h" #if TARGET_OS_IPHONE #import <UIKit/UIDevice.h> #endif #endif
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_heigh...
{ "pile_set_name": "Github" }
const express = require("express") const crypto = require('crypto') const router = express() const { createWebAPIRequest } = require("../util/util") router.get("/", (req, res) => { const phone = req.query.phone const cookie = req.get('Cookie') ? req.get('Cookie') : '' const md5sum = crypto.createHash('md5') md...
{ "pile_set_name": "Github" }
1 00:00:01:14 --> 00:00:06:08 I liked how open-ended it was and how everyone was just sort of 2 00:00:06:11 --> 00:00:10:18 searching for a project to work on together, and 3 00:00:11:12 --> 00:00:16:15 I don’t know, it was so great to walk around and see what everyone is doing, kind of glance over their c...
{ "pile_set_name": "Github" }
#define SUSBCRequest_SetBaudRateParityAndStopBits 1 #define SUSBCR_SBR_MASK 0xFF00 #define SUSBCR_SBR_1200 0x0100 #define SUSBCR_SBR_9600 0x0200 #define SUSBCR_SBR_19200 0x0400 #define SUSBCR_SBR_28800 0x0800 #define SUSBCR_SBR_38400 0x1000 #define SUSBCR_SBR_57600 0x2000 #define SUSBCR_SBR_11520...
{ "pile_set_name": "Github" }
--- title: image_ocr type: docs repo: https://github.com/rstudio/keras --- <div class="source-ref"> <span class="caption">Source: </span>`r sprintf("https://github.com/rstudio/keras/blob/master/vignettes/examples/%s.R", rmarkdown::metadata$title)` </div> ```{r, echo = FALSE} knitr::opts_chunk$set(eval = FALSE) knitr:...
{ "pile_set_name": "Github" }
// Code generated by protoc-gen-go. DO NOT EDIT. // source: github.com/getamis/alice/crypto/tss/addshare/message.proto package addshare import ( fmt "fmt" birkhoffinterpolation "github.com/getamis/alice/crypto/birkhoffinterpolation" ecpointgrouplaw "github.com/getamis/alice/crypto/ecpointgrouplaw" zkproof "github...
{ "pile_set_name": "Github" }
#if (defined(USE_UIKIT_PUBLIC_HEADERS) && USE_UIKIT_PUBLIC_HEADERS) || !__has_include(<UIKitCore/UILargeContentViewer.h>) // // UILargeContentViewer.h // UIKit // // Copyright © 2019 Apple Inc. All rights reserved. // #import <Foundation/Foundation.h> #import <UIKit/UIImage.h> #import <UIKit/UIInteraction.h> #impor...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="UTF-8"?> <cesHeader xmlns="http://www.xces.org/ns/GrAF/1.0/" creator="KBS" date.created="2010-02-17" date.updated="2010-03-09" version="1.0.4"> <fileDesc> <titleStmt> <title>112C-L014</title> </titleStmt> <extent wordCount="248"/> <...
{ "pile_set_name": "Github" }
/* * Copyright (C) 2018 Apple 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: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions a...
{ "pile_set_name": "Github" }
import QtQuick 2.12 import QtQuick.Controls 2.12 import TaoQuick 1.0 import "qrc:/TaoQuick" Item { anchors.fill: parent Image { id: src source: imgPath + "Effect/Girls/girl1.jpeg" visible: false } Grid { anchors.centerIn: parent columns: 2 spacing: 40 ...
{ "pile_set_name": "Github" }
mmpformat 050502 required; 050706 preferred kelvin 300 group (View Data) info opengroup open = True csys (HomeView) (1.000000, 0.000000, 0.000000, 0.000000) (10.000000) (0.000000, 0.000000, 0.000000) (1.000000) csys (LastView) (1.000000, 0.000000, 0.000000, 0.000000) (4.022129) (0.420500, -0.405500, -0.000000) (1.00000...
{ "pile_set_name": "Github" }
var path = require('path'), fs = require('fs'); try { global.Gently = require('gently'); } catch (e) { throw new Error('this test suite requires node-gently'); } exports.lib = path.join(__dirname, '../../lib'); global.GENTLY = new Gently(); global.assert = require('assert'); global.TEST_PORT = 13532; global...
{ "pile_set_name": "Github" }
/* * Copyright 2018 The Ripple 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 ag...
{ "pile_set_name": "Github" }
// Copyright(c) Microsoft Corporation // 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 // // THIS CODE IS PROVIDED ON AN ...
{ "pile_set_name": "Github" }
'use strict'; var through = require('through2'); var sourcemap = require('vinyl-sourcemap'); function sourcemapStream(optResolver) { function saveSourcemap(file, enc, callback) { var self = this; var srcMap = optResolver.resolve('sourcemaps', file); if (!srcMap) { return callback(null, file); ...
{ "pile_set_name": "Github" }
<!DOCTYPE html> <html lang="en-US" dir="ltr"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- Document Title ============================================= --> <title>Titan | ...
{ "pile_set_name": "Github" }
# meetup57-Availability and monitoring/alerting
{ "pile_set_name": "Github" }
%YAML 1.1 %TAG !u! tag:unity3d.com,2011: --- !u!21 &2100000 Material: serializedVersion: 6 m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_Name: Material_56 m_Shader: {fileID: 4800000, guid: 5bdea20278144b11916d77503ba1467a, type: 3}...
{ "pile_set_name": "Github" }
<?php // This file was auto-generated from sdk-root/src/data/cognito-idp/2016-04-18/smoke.json return [ 'version' => 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'ListUserPools', 'input' => [ 'MaxResults' => 10, ], 'errorExpectedFromService' => false, ], [ 'operationName' => 'DescribeUserPoo...
{ "pile_set_name": "Github" }
<a href="https://duck.co/translate/po"> Please review <: $upload_filename :> here (Admin login required) </a>
{ "pile_set_name": "Github" }
################################################################################ # # xapp_xkbevd # ################################################################################ XAPP_XKBEVD_VERSION = 1.1.3 XAPP_XKBEVD_SOURCE = xkbevd-$(XAPP_XKBEVD_VERSION).tar.bz2 XAPP_XKBEVD_SITE = http://xorg.freedesktop.org/relea...
{ "pile_set_name": "Github" }
--- Makefile.am.orig 2011-03-03 07:44:59.000000000 -0600 +++ Makefile.am 2011-11-12 23:33:32.000000000 -0600 @@ -67,9 +67,7 @@ NTOPDATA = ntop-cert.pem \ $(ETTER_PASSIVE) \ oui.txt.gz \ - specialMAC.txt.gz \ - GeoIPASNum.dat \ - GeoLiteCity.dat + specialMAC.txt.gz N...
{ "pile_set_name": "Github" }
// Copyright Aleksey Gurtovoy 2000-2004 // // 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) // // Preprocessed version of "boost/mpl/apply_fwd.hpp" header // -- DO NOT modify by hand! namespace boost { namesp...
{ "pile_set_name": "Github" }
{ "name": "Cyn_in", "author": "Brendan Coles <bcoles@gmail.com>", "version": "0.1", "description": "Cyn.in is a collaboration software that inter-connects your people with each other and their collective knowledge, seamlessly.", "website": "http://www.cynapse.com/cynin", "matches": [ { ...
{ "pile_set_name": "Github" }
// Copyright (c) 2015-2016 The btcsuite developers // Use of this source code is governed by an ISC // license that can be found in the LICENSE file. package btcec import ( "bytes" "crypto/aes" "crypto/cipher" "crypto/hmac" "crypto/rand" "crypto/sha256" "crypto/sha512" "errors" "io" ) var ( // ErrInvalidMA...
{ "pile_set_name": "Github" }
interactions: - request: body: '{}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '2' Content-Type: - application/json User-Agent: - python-requests/2.21.0 method: GET uri: http...
{ "pile_set_name": "Github" }
// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. namespace WixTest { using System; using System.Collections.Generic; using System.Text; using System.IO; usi...
{ "pile_set_name": "Github" }
// Copyright (c) .NET Foundation. 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 System.Linq; using Microsoft.CodeAnalysis.Razor; namespace Microsoft.CodeAnalysis.Host { int...
{ "pile_set_name": "Github" }
using System; using System.IO; using System.Runtime.Serialization; using System.Runtime.Serialization.Formatters.Binary; using System.Security; using System.Security.Permissions; namespace MyLibrary { [Serializable] public class Foo : ISerializable { private int n; [FileIOPermissionAttrib...
{ "pile_set_name": "Github" }
42--Car_Racing/42_Car_Racing_Car_Racing_42_263.jpg 5 398.148834229 181.313598633 47.1844482422 62.610824585 0.998607337475 956.238769531 191.598373413 44.6973876953 56.265411377 0.998009026051 797.336730957 125.35370636 47.8201293945 58.0654678345 0.997814536095 31.6264438629 138.207443237 66.5474147797 89.1628875732 0...
{ "pile_set_name": "Github" }
; REQUIRES: object-emission ; RUN: llvm-as < %s -o %t.bc ; RUN: llvm-spirv %t.bc -o %t.spv ; RUN: llvm-spirv -r %t.spv -o - | llvm-dis -o %t.ll ; RUN: llc -mtriple=%triple -O0 -filetype=obj < %t.ll > %t ; RUN: llvm-dwarfdump %t | FileCheck %s ; Also test that the null streamer doesn't crash with debug info. ; RUN: l...
{ "pile_set_name": "Github" }
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <title>react-kickstart</title> <meta name="description" content="just another react + webpack boilerplate"> <meta name="viewport" content="width=device-width, initial-scale=1"> ...
{ "pile_set_name": "Github" }
define( "dijit/form/nls/uk/validate", ({ invalidMessage: "Введено невірне значення.", missingMessage: "Це значення є обов'язковим.", rangeMessage: "Це значення за межами діапазону." }) );
{ "pile_set_name": "Github" }
#include "matrix.h" #include "utils.h" #include "blas.h" #include <stdio.h> #include <stdlib.h> #include <string.h> #include <assert.h> #include <math.h> void free_matrix(matrix m) { int i; for(i = 0; i < m.rows; ++i) free(m.vals[i]); free(m.vals); } float matrix_topk_accuracy(matrix truth, matrix guess, ...
{ "pile_set_name": "Github" }
// Copyright 2015 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 trace import ( "math" "testing" ) type sumTest struct { value int64 sum int64 sumOfSquares float64 total int64 } var sum...
{ "pile_set_name": "Github" }
package com.huawei.networkit.grs.local; import android.text.TextUtils; import com.huawei.networkit.grs.GrsBaseInfo; import com.huawei.networkit.grs.common.Logger; import com.huawei.networkit.grs.local.model.ApplicationBean; import com.huawei.networkit.grs.local.model.CountryGroup; import com.huawei.networkit.grs.local...
{ "pile_set_name": "Github" }
1、作用域public、private、protected以及不写时的区别? 2、定义float f = 3.4,是否正确,如果错误,怎么修改? 3、 父类: package test; public class FatherClass { public FatherClass() { System.out.println("FatherClass Create"); } } 子类: package test; import test.FatherClass; public class ChildClass extends FatherClass { public ChildClass() ...
{ "pile_set_name": "Github" }