text
stringlengths
2
99.9k
meta
dict
define("ace/mode/matlab_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 MatlabHighlightRules = function(...
{ "pile_set_name": "Github" }
/** * This file is part of Kayak. * * Kayak 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, or * (at your option) any later version. * * Kayak is distri...
{ "pile_set_name": "Github" }
------------------- UBI usage in U-Boot ------------------- UBI support in U-Boot is broken down into five separate commands. The first is the ubi command, which has six subcommands: => help ubi ubi - ubi commands Usage: ubi part [part] [offset] - Show or set current partition (with optional VID header offset) ubi ...
{ "pile_set_name": "Github" }
# # cookie.rb -- Cookie class # # Author: IPR -- Internet Programming with Ruby -- writers # Copyright (c) 2000, 2001 TAKAHASHI Masayoshi, GOTOU Yuuzou # Copyright (c) 2002 Internet Programming with Ruby writers. All rights # reserved. # # $IPR: cookie.rb,v 1.16 2002/09/21 12:23:35 gotoyuzo Exp $ require 'time' requir...
{ "pile_set_name": "Github" }
namespace UnityEngine.Experimental.Rendering.HDPipeline { public class ReflectionProxyVolumeComponent : MonoBehaviour { [SerializeField] ProxyVolume m_ProxyVolume = new ProxyVolume(); /// <summary>Access to proxy volume parameters</summary> public ProxyVolume proxyVolume => m_Pr...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="UTF-8"?> <gml:Point xmlns:gml="http://www.opengis.net/gml" srsName="EPSG:4326"> <gml:pos>0 1</gml:pos> </gml:Point>
{ "pile_set_name": "Github" }
using System.Reflection; using System.Resources; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Windows; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated ...
{ "pile_set_name": "Github" }
/* Source: en.stm32cubel0.zip STM32Cube_FW_L0_V1.8.0/Drivers/CMSIS/Device/ST/STM32L0xx/Source/Templates/gcc */ /** ****************************************************************************** * @file startup_stm32l031xx.s * @author MCD Application Team * @version V1.7.1 * @date 25-November-20...
{ "pile_set_name": "Github" }
define( function() { "use strict"; function nodeName( elem, name ) { return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); }; return nodeName; } );
{ "pile_set_name": "Github" }
category: en: Form 'zh-CN': 表单 icon: '&#xe605;' extra: en: | ```html <group> <x-number title="title" v-model="value"></x-number> </group> ``` ::: tip `x-number` shoule be used in `Group` ::: zh-CN: | ```html <group> <x-number title="title" v-model="v...
{ "pile_set_name": "Github" }
"""Module that handles error visualization."""
{ "pile_set_name": "Github" }
/* * Copyright (c) 2010 Intel Corporation * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, ...
{ "pile_set_name": "Github" }
--- title: "Past, Present and Future of the JACK Audio Connection Kit (in video form)" author: "falkTX" --- A few weeks ago I did a talk/presentation at [Sonoj], regarding the past, present and future of the JACK. This talk was live-streamed and recorded, and now Sonoj videos are online, so you can watch this at <http...
{ "pile_set_name": "Github" }
{ "id": "08a58bfa0f7e4d358a59b38fa5375fc1", "FamilyId": 8534, "LastName": "Andersen", "Parents": [ { "FamilyName": null, "FirstName": "Thomas" }, { "FamilyName": null, "FirstName": "Mary Kay" } ], "Children": [ { "FamilyName": null, "FirstName": "Henri...
{ "pile_set_name": "Github" }
/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include <aws/kinesisanalyticsv2/model/ListApplicationSnapshotsResult.h> #include <aws/core/utils/json/JsonSerializer.h> #include <aws/core/AmazonWebServiceResult.h> #include <aws/core/utils/StringUti...
{ "pile_set_name": "Github" }
# # AFL dictionary for HTML parsers (tags only) # ------------------------------------------- # # A basic collection of HTML tags likely to matter to HTML parsers. Does *not* # include any attributes or attribute values. # # Created by Michal Zalewski <lcamtuf@google.com> # tag_a="<a>" tag_abbr="<abbr>" tag_acronym="<...
{ "pile_set_name": "Github" }
ccflags-y := -Iinclude/drm mgag200-y := mgag200_main.o mgag200_mode.o mgag200_cursor.o \ mgag200_drv.o mgag200_fb.o mgag200_i2c.o mgag200_ttm.o obj-$(CONFIG_DRM_MGAG200) += mgag200.o
{ "pile_set_name": "Github" }
# Merlin guided unit selection synthesis coming soon...
{ "pile_set_name": "Github" }
# -*- mode: TCL; fill-column: 75; tab-width: 8; coding: iso-latin-1-unix -*- # # $Id: FloatEnt.tcl,v 1.4 2004/03/28 02:44:57 hobbs Exp $ # # FloatEnt.tcl -- # # An entry widget that can be attached on top of any widget to # provide dynamic editing. It is used to provide dynamic editing # for the tixGrid widget, among o...
{ "pile_set_name": "Github" }
package com.webank.wecube.platform.core.jpa.user; import com.webank.wecube.platform.core.entity.workflow.FavoritesRoleEntity; import com.webank.wecube.platform.core.entity.workflow.ProcRoleBindingEntity; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.transaction.annotation.Tra...
{ "pile_set_name": "Github" }
module constrained; template Constrained(T) if (is(T : int)) { /*...*/ } // #1 template Constrained(T) if (is(T : string)) { /*...*/ } // #2 template Constrained(T,U) if (is(T : int) && !is(U : float)) { /*...*/ } // #3 template Constrained(T,U) if (is(T : int) && is(U : float)) { /*...*/ } // #4 alia...
{ "pile_set_name": "Github" }
// // FKFlickrPhotosSuggestionsGetList.m // FlickrKit // // Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED #import "FKFlickrPhotosSuggestionsGetList.h" @implementation FKF...
{ "pile_set_name": "Github" }
CREATE FUNCTION multiout_simple(OUT i integer, OUT j integer) AS $$ return (1, 2) $$ LANGUAGE plpythonu; SELECT multiout_simple(); multiout_simple ----------------- (1,2) (1 row) SELECT * FROM multiout_simple(); i | j ---+--- 1 | 2 (1 row) SELECT i, j + 2 FROM multiout_simple(); i | ?column? ---+---------- 1...
{ "pile_set_name": "Github" }
.class final Lcom/lifx/app/DiagnosticsActivity$onResume$2; .super Ljava/lang/Object; .source "SourceFile" # interfaces .implements Lio/reactivex/functions/Consumer; # annotations .annotation system Ldalvik/annotation/EnclosingMethod; value = Lcom/lifx/app/DiagnosticsActivity;->onResume()V .end annotation .annot...
{ "pile_set_name": "Github" }
{ "name": "browserbuild" , "version": "0.7.0" , "bin": { "browserbuild": "./bin/browserbuild" } , "main": "./lib/browserbuild.js" , "dependencies": { "commander": "0.5.x" , "debug": "0.6.0" } }
{ "pile_set_name": "Github" }
# # Copyright 2017 Shannon F. Stewman # # See LICENCE for the full copyright terms. # 0 -> 1 'a'; 0 -> 2 'b'; 1 -> 8 'a'; 1 -> 3 'b'; 2 -> 3 'a'; 2 -> 4 'b'; 3 -> 7 'a'; 3 -> 5 'b'; 4 -> 5 'a'; 4 -> 4 'b'; 5 -> 6 'a'; 5 -> 5 'b'; 6 -> 6 'b'; 7 -> 6 'b'; 8 -> 7 'b'; start: 0; end: 6;
{ "pile_set_name": "Github" }
/* Javadoc style sheet */ /* Overall document style */ @import url('resources/fonts/dejavu.css'); body { background-color:#ffffff; color:#353833; font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; font-size:14px; margin:0; } a:link, a:visited { text-decoration:none; color:#4A6782; } ...
{ "pile_set_name": "Github" }
.\" OpenPBS (Portable Batch System) v2.3 Software License .\" .\" Copyright (c) 1999-2000 Veridian Information Solutions, Inc. .\" All rights reserved. .\" .\" --------------------------------------------------------------------------- .\" For a license to use or redistribute the OpenPBS software under condit...
{ "pile_set_name": "Github" }
#!/bin/bash find . ! -iname "exporter.*" ! -iname "textured.json" ! -iname "texturedShader.json" ! -iname "clean.sh" ! -iname "." | xargs rm -f
{ "pile_set_name": "Github" }
<?php /** * Copyright 2020 LINE Corporation * * LINE Corporation licenses this file to you 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 * * ...
{ "pile_set_name": "Github" }
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"> <title>Padding, Borders, Outlines, and Margins</title> <link rel="stylesheet" type="text/css" href="c/pbom-baseline.css"> <style type="text/...
{ "pile_set_name": "Github" }
function Snapshot(def){ var self = this; self.name = def.name; self.type = 'snapshot'; self.init = def.$init || function(){ return {}; } self.timing = def.timing || 'inline'; self.usages = function(){ var result = []; for (var key in def){ if (key != '$init' && Function.prototype.isPrototypeOf(def[...
{ "pile_set_name": "Github" }
/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/elasticmapreduce/EMR_EXPORTS.h> #include <aws/core/utils/memory/stl/AWSString.h> #include <aws/elasticmapreduce/model/NotebookExecutionStatus.h> #include <aws/core/utils/Dat...
{ "pile_set_name": "Github" }
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <link rel="stylesheet" href="./../../helpwin.css"> <title>MATLAB File Help: prtClassLibSvm/run</title> </head> <body> <!--Single-page help--> <table border="0" cellspacing="0" width="100%"> ...
{ "pile_set_name": "Github" }
/* * LP8755 High Performance Power Management Unit : System Interface Driver * (based on rev. 0.26) * Copyright 2012 Texas Instruments * * Author: Daniel(Geon Si) Jeong <daniel.jeong@ti.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public L...
{ "pile_set_name": "Github" }
body { font-size: 15px; line-height: 1.6em; position: relative; margin: 0; } .container { width: 95%; max-width: 1260px; } p, pre { margin-bottom: 2em; } .main h2 { font-weight: bold; margin: 60px 0 20px 0; } .main h3 { margin: 60px 0 20px 0; } .main h4 { margin: 0 0 10px 0; ...
{ "pile_set_name": "Github" }
 Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0.30723.0 MinimumVisualStudioVersion = 10.0.40219.1 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "YAPA", "YAPA\YAPA.csproj", "{D6C90A63-BF09-4BD8-B86C-92CBBC1EB917}" EndProject Project("{6141683F-8A12-4E36...
{ "pile_set_name": "Github" }
"VertexLitGeneric" { "$baseTexture" "models\chipstiks_ls3_models/HydrogenCompressor/tank" }
{ "pile_set_name": "Github" }
// +build solaris package system import ( "syscall" ) // fromStatT creates a system.StatT type from a syscall.Stat_t type func fromStatT(s *syscall.Stat_t) (*StatT, error) { return &StatT{size: s.Size, mode: uint32(s.Mode), uid: s.Uid, gid: s.Gid, rdev: uint64(s.Rdev), mtim: s.Mtim}, nil }
{ "pile_set_name": "Github" }
fileFormatVersion: 2 guid: d60e992548ca5e14ca2ab8a971e5005c MonoImporter: serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData:
{ "pile_set_name": "Github" }
/* * Copyright (C) 2019 Tachibana General Laboratories, LLC * Copyright (C) 2019 Yaroslav Pronin <proninyaroslav@mail.ru> * * This file is part of Download Navi. * * Download Navi is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the...
{ "pile_set_name": "Github" }
environment: USE_RTOOLS: true matrix: - PYTHON: "C:\\Python27-x64" R_VERSION: "3.5.3" - PYTHON: "C:\\Python37-x64" R_VERSION: "3.5.3" - PYTHON: "C:\\Python27-x64" R_VERSION: "release" - PYTHON: "C:\\Python37-x64" R_VERSION: "release" - PYTHON: "C:\\Python27-x64" ...
{ "pile_set_name": "Github" }
# connectivity_for_web A web implementation of [connectivity](https://pub.dev/connectivity/connectivity). Currently this package uses an experimental API, with a fallback to dart:html, so not all features may be available to all browsers. ## Usage ### Import the package This package is a non-endorsed implementation...
{ "pile_set_name": "Github" }
package com.ycbjie.douban.bean; import java.util.List; /** * Created by PC on 2017/8/24. * 作者:PC */ public class DouMusicBean { private int count; private int start; private int total; private List<MusicsBean> musics; public int getCount() { return count; } public void setC...
{ "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 2020 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 w...
{ "pile_set_name": "Github" }
# frozen_string_literal: true module Facts module Solaris class NetmaskInterfaces FACT_NAME = 'netmask_.*' TYPE = :legacy def call_the_resolver arr = [] interfaces = Facter::Resolvers::Solaris::Networking.resolve(:interfaces) interfaces&.each do |interface_name, info| ...
{ "pile_set_name": "Github" }
namespace dotless.Core.Test.Specs.Functions { using NUnit.Framework; public class LengthFixture : SpecFixtureBase { [Test] public void TestLengthOfCommaSeparatedList() { var input = @" @list: ""yes"", ""no"", ""maybe""; @listLength: length(@list); .someC...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE language SYSTEM "language.dtd" [ <!ENTITY funcname "[A-Za-z_:][A-Za-z0-9_:#&#37;@-]*"> <!ENTITY varname "[A-Za-z_][A-Za-z0-9_]*"> <!ENTITY word "[^|&amp;;()&lt;&gt;\s]+"> <!-- see man bash --> <!ENTITY eos "(?=($|\s))"> ...
{ "pile_set_name": "Github" }
#!/bin/bash work_path=$(dirname $0) partition=$1 GLOG_vmodule=MemcachedClient=-1 srun --mpi=pmi2 -p $partition -n8 \ --gres=gpu:8 --ntasks-per-node=8 \ python -u main.py --config $work_path/config.yaml --launcher slurm \ --load-iter 70000 \ --validate
{ "pile_set_name": "Github" }
/* * Seven Kingdoms: Ancient Adversaries * * Copyright 1997,1998 Enlight Software Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your op...
{ "pile_set_name": "Github" }
#region License // // Copyright (c) 2013, Kooboo team // // Licensed under the BSD License // See the file LICENSE.txt for details. // #endregion /* Kooboo is a content management system based on ASP.NET MVC framework. Copyright 2009 Yardi Technology Limited. This program is free software: you can redistribute it ...
{ "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>AppleSecurityExtension</key> <true/> <key>BuildMachineOSBuild</key> <string>16G29</string> <key>CFBundleDevelopmentRegion</key> <string>en...
{ "pile_set_name": "Github" }
#!/bin/sh # SPDX-License-Identifier: GPL-2.0 # description: event trigger - test inter-event histogram trigger snapshot action fail() { #msg echo $1 exit_fail } if [ ! -f set_event ]; then echo "event tracing is not supported" exit_unsupported fi if [ ! -f snapshot ]; then echo "snapshot is not s...
{ "pile_set_name": "Github" }
// Created by cgo -godefs - DO NOT EDIT // cgo -godefs defs_linux.go package ipv4 const ( sysIP_TOS = 0x1 sysIP_TTL = 0x2 sysIP_HDRINCL = 0x3 sysIP_OPTIONS = 0x4 sysIP_ROUTER_ALERT = 0x5 sysIP_RECVOPTS = 0x6 sysIP_RETOPTS = 0x7 sysIP_PKTINFO = ...
{ "pile_set_name": "Github" }
/* * Linux ethernet bridge * * Authors: * Lennert Buytenhek <buytenh@gnu.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 of the License, or (at your option) a...
{ "pile_set_name": "Github" }
# -*- coding: utf-8 -*- import os from enum import Enum class MODEL_OPS(Enum): INIT = 10 TRAIN = 11 class MODEL_TENSORS(Enum): LOSS = 100 ACC = 101 INPUTS = 102 TARGETS = 103 OUTPUTS = 104 LEARNING_RATE = 105 class RUN_TYPES(Enum): TRAIN = 0 EVALUATE = 0 PREDICT = 0 ...
{ "pile_set_name": "Github" }
/* -*- mode: C -*- */ /* IGraph library. Copyright (C) 2012 Gabor Csardi <csardi.gabor@gmail.com> 334 Harvard st, Cambridge MA, USA 02139 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 Found...
{ "pile_set_name": "Github" }
<?php namespace PayPal\Validation; /** * Class UrlValidator * * @package PayPal\Validation */ class UrlValidator { /** * Helper method for validating URLs that will be used by this API in any requests. * * @param $url * @param string|null $urlName * @throws \InvalidArgumentExcep...
{ "pile_set_name": "Github" }
/* vi: set sw=4 ts=4: */ #ifndef LL_MAP_H #define LL_MAP_H 1 PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN int ll_remember_index(const struct sockaddr_nl *who, struct nlmsghdr *n, void *arg) FAST_FUNC; int ll_init_map(struct rtnl_handle *rth) FAST_FUNC; int xll_name_to_index(const char *name) FAST_FUNC; //static: const ...
{ "pile_set_name": "Github" }
/********************************************************************************* * * * The MIT License (MIT) * * ...
{ "pile_set_name": "Github" }
package cascadia import ( "bytes" "code.google.com/p/go.net/html" "fmt" "regexp" "strings" ) // the Selector type, and functions for creating them // A Selector is a function which tells whether a node matches or not. type Selector func(*html.Node) bool // hasChildMatch returns whether n has any child that mat...
{ "pile_set_name": "Github" }
#!/bin/bash if [ $# -ne 1 ]; then echo "Usage: bootstrap.sh SAMPLE_PROJECT_FOLDER" exit 1 fi DEST=$1 if [ -a $DEST ]; then echo "$DEST already exists" exit 2 fi mkdir -p $DEST cd $DEST git init git remote add origin https://github.com/lkishalmi/gradle-gatling-plugin.git git config core.sparseChecko...
{ "pile_set_name": "Github" }
/* * The MIT License (MIT) * * Copyright (c) 2018 Nathan Osman * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use,...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <object-views xmlns="http://axelor.com/xml/ns/object-views" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://axelor.com/xml/ns/object-views http://axelor.com/xml/ns/object-views/object-views_5.3.xsd"> <chart onInit="action.qual...
{ "pile_set_name": "Github" }
package org.omg.PortableInterceptor; /** * org/omg/PortableInterceptor/CurrentOperations.java . * Generated by the IDL-to-Java compiler (portable), version "3.2" * from c:/workspace/9-2-build-windows-amd64-cygwin-phase2/jdk9/6725/corba/src/java.corba/share/classes/org/omg/PortableInterceptor/Interceptors.idl * Wednes...
{ "pile_set_name": "Github" }
import { escape } from '../../utils/string' import { getSafeProperty } from '../../utils/customs' import { factory } from '../../utils/factory' import { toSymbol } from '../../utils/latex' const name = 'SymbolNode' const dependencies = [ 'math', '?Unit', 'Node' ] export const createSymbolNode = /* #__PURE__ */ ...
{ "pile_set_name": "Github" }
/* package com.wsk.tool; import net.sourceforge.tess4j.Tesseract; import javax.imageio.ImageIO; import java.awt.image.BufferedImage; import java.io.File; import java.io.IOException; import java.util.ArrayList; */ /** * Created by WSK on 2017/1/6. *//* public class OCR { */ /** * * @param srImage 图片路...
{ "pile_set_name": "Github" }
@import url(http://fonts.googleapis.com/css?family=Open+Sans); @import url(/absolute/something.css) screen and (color) and (max-width: 600px); @import url("//ha.com/file.css") (min-width: 100px); #import-test { height: 10px; color: #ff0000; width: 10px; height: 30%; } @media screen and (max-width: 600px) { bo...
{ "pile_set_name": "Github" }
<p align="center"><img src="https://user-images.githubusercontent.com/661798/36482670-f81601c0-170b-11e8-8adb-2365b346ac27.png" /></p> [![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE.md) [![CI](https://github.com/baldurk/renderdoc/workflows/CI/badge.svg?branch=actions-test&event=push)](htt...
{ "pile_set_name": "Github" }
obj-$(CONFIG_PCIE_DW) += pcie-designware.o obj-$(CONFIG_PCIE_DW_PLAT) += pcie-designware-plat.o obj-$(CONFIG_PCI_DRA7XX) += pci-dra7xx.o obj-$(CONFIG_PCI_EXYNOS) += pci-exynos.o obj-$(CONFIG_PCI_IMX6) += pci-imx6.o obj-$(CONFIG_PCI_HYPERV) += pci-hyperv.o obj-$(CONFIG_PCI_MVEBU) += pci-mvebu.o obj-$(CONFIG_PCI_AARDVARK...
{ "pile_set_name": "Github" }
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2013 - Raw Material Software Ltd. Permission is granted to use this software under the terms of either: a) the GPL v2 (or any later version) b) the Affero GPL...
{ "pile_set_name": "Github" }
subunit
{ "pile_set_name": "Github" }
/* Input */ @font-face { font-family: 'input_mono_regular'; src: url('../media/fonts/input_mono_regular.ttf') format('truetype'); font-weight: normal; font-style: normal; } @font-face { font-family: 'input_mono_medium'; src: url('../media/fonts/input_mono_medium.ttf') format('truetype'); f...
{ "pile_set_name": "Github" }
% Frees the given problem. % % Parameters: % problem The given problem. function cocoProblemFree(problem) cocoCall('cocoProblemFree', problem);
{ "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/. */ var EXPORTED_SYMBOLS = [ "BookmarksEngine", "PlacesItem", "Bookmark", "BookmarkFolder", "BookmarkQuery",...
{ "pile_set_name": "Github" }
--blank-lines-after-declarations --blank-lines-after-procedures --braces-after-func-def-line --braces-on-if-line --braces-on-struct-decl-line --break-after-boolean-operator --comment-indentation25 --comment-line-length79 --continue-at-parentheses --dont-cuddle-do-while --dont-cuddle-else --indent-level4 --line-length79...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="UTF-8"?> <Language name="Slovak" characters="512"> <Section name="unmapped"> <String id="0" prefix="Moje">Programy</String> <String id="1" prefix="Moje">Obrázky</String> <String id="2" prefix="Moja">Hudba</String> <String id="3" prefix="Moje">Video</String> <String i...
{ "pile_set_name": "Github" }
{ "action": { "physical": { "variety": [ "Theft" ], "vector": [ "Other" ] } }, "actor": { "external": { "country": [ "Unknown" ], "motive": [ "Financial" ], "region": [ "000000" ], "variety": [ ...
{ "pile_set_name": "Github" }
/* Copyright 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, softw...
{ "pile_set_name": "Github" }
export interface ICreateTaskWebPartProps { }
{ "pile_set_name": "Github" }
<?php declare(strict_types=1); namespace Tests\Commands\Upgrade\Databases\V6_10_0\Seeds; use Illuminate\Database\Seeder; use Illuminate\Support\Facades\DB; class CategoriesTableSeeder extends Seeder { /** * Run the database seeds. * * @return void */ public function run() { D...
{ "pile_set_name": "Github" }
"use strict"; var marko_template = module.exports = require("marko/src/html").t(__filename), marko_componentType = "/marko-test$1.0.0/compiler/fixtures-html/static-tag-custom-root-element/template.marko", marko_renderer = require("marko/src/runtime/components/renderer"); var foo = 123; function bar() { } va...
{ "pile_set_name": "Github" }
module KAT_MiyaguchiPreneel (tests) where import Crypto.Cipher.AES (AES128) import Crypto.ConstructHash.MiyaguchiPreneel as MiyaguchiPreneel import Imports import qualified Data.ByteString.Char8 as B8 import qualified Data.ByteArray as B import Data.ByteArray.Encoding (Base (Base16), c...
{ "pile_set_name": "Github" }
'use strict'; var async = require('async'); var path = require('path'); var nconf = require('nconf'); var fs = require('fs'); var meta = require('../../meta'); var image = require('../../image'); module.exports = { name: 'Generate email logo for use in email header', timestamp: Date.UTC(2017, 6, 17), method: func...
{ "pile_set_name": "Github" }
var path = require('path') module.exports = function(fs, ready) { var global_files = {} var recurse = function(dir, okay) { fs.readdir(dir, function(err, dir_files) { var countdown = 0 , files = [] , dirs = [] , checked = 0 dir_files.forEach(function(file, idx, all) { ...
{ "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. // +build darwin dragonfly freebsd linux netbsd openbsd solaris package ipv6 import ( "net" "unsafe" "golang.org/x/net/internal/iana" "golang.org/x/net/i...
{ "pile_set_name": "Github" }
include: ../../analysis_options.yaml
{ "pile_set_name": "Github" }
{ "ar": "st7", "bg": "st7", "cs": "st7", "da": "st7", "de": "st7", "el": "st7", "en": "st7", "es": "st7", "es-419": "st7", "fi": "st7", "fr": "st7", "hu": "st7", "it": "st7", "ja": "st7", "ko": "st7", "nl": "st7", "no": "st7", "pl": "st7", "pt"...
{ "pile_set_name": "Github" }
package com.afwsamples.testdpc.search; import android.content.ContentValues; import android.content.Context; import android.content.SharedPreferences; import android.database.Cursor; import android.database.DatabaseUtils; import android.database.sqlite.SQLiteDatabase; import android.database.sqlite.SQLiteOpenHelper; i...
{ "pile_set_name": "Github" }
'use strict'; /** * Lifecycle callbacks for the `User` model. */ module.exports = {};
{ "pile_set_name": "Github" }
caffe.berkeleyvision.org
{ "pile_set_name": "Github" }
<image> <filename>image_108152.jpg</filename> <folder></folder> <size> <width>256</width> <height>256</height> </size> <origSize> <width>800</width> <height>800</height> </origSize> <generated>0</generated> </image> <file> <filename>image_108152.xml</filename> <folder></folder> </file> <object> <objectId>2</objectId> <...
{ "pile_set_name": "Github" }
@function _linear-gradient-parser($image) { $image: unquote($image); $gradients: (); $start: str-index($image, "("); $end: str-index($image, ","); $first-val: str-slice($image, $start + 1, $end - 1); $prefix: str-slice($image, 0, $start); $suffix: str-slice($image, $end, str-length($image)); $has-mult...
{ "pile_set_name": "Github" }
/* Copyright 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, softw...
{ "pile_set_name": "Github" }
from django_jalali import forms as jforms from django.utils.translation import ugettext as _ from django import forms from django.contrib.admin.widgets import AdminTimeWidget from django.templatetags.static import static from django.utils.safestring import mark_safe class AdminjDateWidget(jforms.jDateInput): @pro...
{ "pile_set_name": "Github" }
{ "metadata": { "name": "", "signature": "sha256:278e046efbf447c0419efcb74e9ce660ca855e4a9aeef3da10a80cb3ca4e11e6" }, "nbformat": 3, "nbformat_minor": 0, "worksheets": [ { "cells": [ { "cell_type": "heading", "level": 1, "metadata": {}, "source": [ "Installation" ] }...
{ "pile_set_name": "Github" }
// // Copyright 2019 Ettus Research, a National Instruments Brand // // SPDX-License-Identifier: GPL-3.0-or-later // #pragma once #include <uhd/rfnoc/defaults.hpp> #include <uhd/rfnoc/multichan_register_iface.hpp> #include <uhd/rfnoc/radio_control.hpp> #include <uhdlib/features/discoverable_feature_registry.hpp> #inc...
{ "pile_set_name": "Github" }
### Generated automatically from Makefile.org by Configure. ## ## Makefile for OpenSSL ## VERSION=1.0.2l MAJOR=1 MINOR=0.2 SHLIB_VERSION_NUMBER=1.0.0 SHLIB_VERSION_HISTORY= SHLIB_MAJOR=1 SHLIB_MINOR=0.0 SHLIB_EXT= PLATFORM=dist OPTIONS= no-ec_nistp_64_gcc_128 no-gmp no-jpake no-krb5 no-libunbound no-md2 no-rc5 no-rfc...
{ "pile_set_name": "Github" }
{ "images" : [ { "idiom" : "universal", "scale" : "1x", "filename" : "Drinks.png" }, { "idiom" : "universal", "scale" : "2x", "filename" : "Drinks@2x.png" } ], "info" : { "version" : 1, "author" : "xcode" } }
{ "pile_set_name": "Github" }