text stringlengths 3 1.05M |
|---|
using namespace gpopt;
// State transition diagram for test machine:
// From every state, event eeX transitions into state esX, e.g. eeOne transitions always to esOne and so on
// All transitions are considered valid.
//
static const CStateMachineTest::EEvents
rgeevTransitions[CStateMachineTest::esSentinel]
[CSt... |
/*jslint node:true, vars:true, bitwise:true, unparam:true */
/*jshint unused:true */
/*
* Author: Zion Orent <zorent@ics.com>
* Copyright (c) 2015 Intel Corporation.
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"),... |
class RbenvVars < Formula
desc "Safely sets global and per-project environment variables"
homepage "https://github.com/sstephenson/rbenv-vars"
url "https://github.com/sstephenson/rbenv-vars/archive/v1.2.0.tar.gz"
sha256 "9e6a5726aad13d739456d887a43c220ba9198e672b32536d41e884c0a54b4ddb"
head "https://github.co... |
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0
// See <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2022.06.28 ... |
from django.conf.urls import url
from wagtail.wagtailusers.views import groups
urlpatterns = [
url(r'^$', groups.index, name='index'),
url(r'^add/$', groups.create, name='add'),
url(r'^(\d+)/$', groups.edit, name='edit'),
url(r'^(\d+)/delete/$', groups.delete, name='delete'),
]
|
using System;
using System.Linq;
using Orchard.ContentManagement.MetaData;
using Orchard.Core.Common.Models;
using Orchard.Data;
using Orchard.Localization;
using Orchard.ContentManagement;
using Orchard.ContentManagement.Handlers;
using Orchard.Security;
using Orchard.Services;
namespace Orchard.Core.Common.Handlers ... |
if not exist data goto nodatadir
:returnnodatadir
mongod.exe --dbpath data
exit
:nodatadir
md data
goto returnnodatadir
|
package com.replica.replicaisland;
/**
* Adjusts the scroll position of a drawable object based on the camera's focus position.
* May be used to scroll a ScrollableBitmap or TiledWorld to match the camera. Uses DrawableFactory
* to allocate fire-and-forget drawable objects every frame.
*/
public class ScrollerC... |
Knative provides infrastructure for authoring webhooks under
`knative.dev/pkg/webhook` and has a few built-in helpers for certain common
admission control scenarios. The built-in admission controllers are:
1. Resource validation and defaulting (builds around `apis.Validatable` and
`apis.Defaultable` under `knative.... |
using namespace std;
bool is_number(const std::string& s)
{
return !s.empty() && std::find_if(s.begin(),
s.end(), [](char c) { return !std::isdigit(c); }) == s.end();
}
class CoutStatus : public StatusUpdate
{
void sendCurrentDepth(int depth) override
{
cout << "\ranalyzing depth: " << depth << std::flush;
}
... |
#if GOOGLE_CUDA || TENSORFLOW_USE_ROCM
#include "tensorflow/core/kernels/tile_ops_gpu_impl.h"
DEFINE_TILE_OPS(3)
#endif // GOOGLE_CUDA || TENSORFLOW_USE_ROCM
|
#content #logging .loader
{
background-position: 0 50%;
padding-left: 21px;
}
#content #logging .block h2
{
background-image: url( ../../img/ico/document-text.png );
margin-bottom: 10px;
}
#content #logging .block h2 span span
{
color: #c0c0c0;
font-weight: normal;
margin-left: 10px;... |
var amqp = require('amqplib/callback_api');
var args = process.argv.slice(2);
var key = (args.length > 0) ? args[0] : 'info';
var message = args.slice(1).join(' ') || 'Hello World!';
function bail(err, conn) {
console.error(err);
if (conn) conn.close(function() { process.exit(1); });
}
function on_connect(err, c... |
"""The auth module, including the homepage and user auth."""
from . import views
|
package io.cdap.plugin.sfmc.sink;
import com.exacttarget.fuelsdk.ETClient;
import io.cdap.cdap.api.data.batch.OutputFormatProvider;
import io.cdap.cdap.api.data.schema.Schema;
import io.cdap.cdap.etl.api.batch.BatchRuntimeContext;
import io.cdap.cdap.etl.api.batch.BatchSinkContext;
import io.cdap.cdap.etl.api.validat... |
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/**
* @name: S7.8.5_A3.1_T3;
* @section: 7.8.5, 15.10.4.1;
* @assertion: RegularExpressionFlags :: IdentifierPart;
* @description: IdentifierPart :: m;
*/
//CHECK#1
var ... |
module Fog
module Storage
class Rackspace
class Real
# Get details for container and total bytes stored
#
# ==== Parameters
# * container<~String> - Name of container to retrieve info for
# * options<~String>:
# * 'limit'<~String> - Maximum number of object... |
'use strict';
var spawn = require('child_process').spawn;
var path = require('path');
function printUsage() {
console.log([
'Usage: react-native <command>',
'',
'Commands:',
' start: starts the webserver',
].join('\n'));
process.exit(1);
}
function run() {
var args = process.argv.slice(2);... |
<?php namespace Illuminate\Queue;
use IlluminateQueueClosure;
use Illuminate\Support\ServiceProvider;
use Illuminate\Queue\Console\WorkCommand;
use Illuminate\Queue\Console\ListenCommand;
use Illuminate\Queue\Console\RestartCommand;
use Illuminate\Queue\Connectors\SqsConnector;
use Illuminate\Queue\Console\SubscribeCo... |
''' <summary>
''' Orleans grain implementation class $safeitemname$
''' </summary>
Public Class $safeitemname$
'Inherits Grain
'Implements I$safeitemname$
' TODO: replace placeholder grain interface with actual
' grain communication interface(s).
End Class
|
package unix
import (
"syscall"
"unsafe"
)
var _ syscall.Errno
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
func getgroups(ngid int, gid *_Gid_t) (n int, err error) {
r0, _, e1 := RawSyscall(SYS_GETGROUPS, uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0)
n = int(r0)
if e1 != 0 {
err = errn... |
<HTML>
<HEAD>
<meta charset="UTF-8">
<title>DigestBuilder.update - </title>
<link rel="stylesheet" href="../../style.css">
</HEAD>
<BODY>
<a href="../index.html">com.github.rs3vans.krypto</a> / <a href="index.html">DigestBuilder</a> / <a href=".">update</a><br/>
<br/>
<h1>update</h1>
<a name="com.gi... |
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">SkyeTracker</string>
<string name="MoveTabTitle">Move</string>
<string name="SetupTabTitle">Limits</string>
<string name="LocationTabTitle">Location</string>
<string name="InfoTabTitle">Info</string>
<string name="TimeTa... |
import * as React from 'react';
import { IconBaseProps } from 'react-icon-base';
declare class FaCommentO extends React.Component<IconBaseProps> { }
export = FaCommentO;
|
package dbus
import (
"errors"
"strings"
)
// BusObject is the interface of a remote object on which methods can be
// invoked.
type BusObject interface {
Call(method string, flags Flags, args ...interface{}) *Call
Go(method string, flags Flags, ch chan *Call, args ...interface{}) *Call
GetProperty(p string) (Va... |
<?xml version="1.0" encoding="utf-8"?>
<reflection>
<assemblies>
<assembly name="System.AddIn.Contract">
<assemblydata version="4.0.0.0" culture="" key="002400000480000094000000060200000024000052534131000400000100010007D1FA57C4AED9F0A32E84AA0FAEFD0DE9E8FD6AEC8F87FB03766C834C99921EB23BE79AD9D5DCC1DD9AD2... |
package org.drools.core.base.extractors;
import org.drools.core.base.ClassFieldAccessorCache;
import org.drools.core.base.ClassFieldAccessorStore;
import org.drools.core.base.TestBean;
import org.drools.core.spi.InternalReadAccessor;
import org.junit.Before;
import org.junit.Test;
import static org.junit.Assert.*;
... |
package de.uos.inf.ischedule.model;
import de.uos.inf.ischedule.util.Messages;
/**
* Entry for a shift pattern.
*
* @author David Meignan
*/
public class ShiftPatternEntry {
/**
* Type of assignment.
*/
protected PatternEntryType assignmentType;
/**
* Definition of the shift when t... |
package com.facebook.buck.android;
import com.facebook.buck.android.redex.RedexOptions;
import com.facebook.buck.core.cell.CellPathResolver;
import com.facebook.buck.core.model.BuildTarget;
import com.facebook.buck.core.rules.ActionGraphBuilder;
import com.facebook.buck.core.sourcepath.SourcePath;
import com.faceboo... |
public class A<T extends Value> {
void foo(T t) {t.foo();}
} |
<?xml version="1.0" encoding="utf-8" ?>
<rss version="0.93">
<channel>
<image>
<url>http://www.example.com/image.gif</url>
<link>http://www.example.com</link>
<title>Image title</title>
<width>50</width>
<height>55</height>
<description... |
package org.apache.drill.common.util;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.Map.Entry;
import org.apache.drill.common.exceptions.LogicalPlanParsingException;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySe... |
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2014 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/license... |
<?xml version="1.0" encoding="UTF-8"?>
<definitions id="definitions"
xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL"
xmlns:camunda="http://camunda.org/schema/1.0/bpmn"
targetNamespace="org.camunda.bpm.engine.test.enginge.test.api.mgmt">
<process id="process" isExecutable="true">
<startEvent id="theStart">... |
typedef struct {
int nbars, skip;
int counter;
uint32_t len;
} sp_progress;
int sp_progress_create(sp_progress **p);
int sp_progress_destroy(sp_progress **p);
int sp_progress_init(sp_data *sp, sp_progress *p);
int sp_progress_compute(sp_data *sp, sp_progress *p, SPFLOAT *in, SPFLOAT *out);
|
// 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;
using System.Reflection;
using System.Threading;
namespace AssemblyResolveTests
{
public class Cl... |
/* Component containers
----------------------------------*/
.ui-widget {
font-family: Helvetica,Arial,sans-serif;
font-size: 1.1em;
}
.ui-widget .ui-widget {
font-size: 1em;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
font-family: Helvetica,Arial,sans-serif;
font-size: 1em;
... |
int main()
{
typedef std::chrono::microseconds D;
typedef D::rep Rep;
typedef D::period Period;
static_assert(std::is_signed<Rep>::value, "");
static_assert(std::is_integral<Rep>::value, "");
static_assert(std::numeric_limits<Rep>::digits >= 54, "");
static_assert((std::is_same<Period, std::... |
/**
* @ngdoc filter
* @name groupBy
* @kind function
*
* @description
* Create an object composed of keys generated from the result of running each element of a collection,
* each key is an array of the elements.
*/
angular.module('a8m.group-by', [ 'a8m.filter-watcher' ])
.filter('groupBy', [ '$parse', 'filt... |
define([
"dojo/_base/declare",
"dojo/_base/lang",
"dojo/dom",
"dijit/_WidgetBase",
"dojo/regexp"
], function(declare, lang, dom, _WidgetBase, regexp){
return declare("dojox.mvc.Output", _WidgetBase, {
// summary:
// A simple widget that displays templated output, parts of which may
// be data-bound.
//... |
package org.springframework.boot.maven.sample;
/**
* Sample class without a main method.
*
* @author Phillip Webb
*/
public class ClassWithoutMainMethod {
}
|
namespace chromeos {
class AutoConnectHandler;
class ClientCertResolver;
class GeolocationHandler;
class ManagedNetworkConfigurationHandler;
class ManagedNetworkConfigurationHandlerImpl;
class NetworkActivationHandler;
class NetworkCertMigrator;
class NetworkConfigurationHandler;
class NetworkConnectionHandler;
class ... |
using Newtonsoft.Json.Linq;
using System.Linq;
namespace EDDiscovery.EliteDangerous.JournalEvents
{
//When written: deploying the SRV from a ship onto planet surface
//Parameters:
//• Loadout
public class JournalLaunchSRV : JournalEntry
{
public JournalLaunchSRV(JObject evt ) : base(evt, J... |
/*jshint unused: vars */
define([
'angular',
'uiRouter',
'jquery',
'jquery-maskedinput',
'./controllers/main',
'./directives/main',
'./filters/main',
'./services/main'
]/*deps*/,
function (angular, MainCtrl)/*invoke*/ {
'use strict';
... |
var Dimension = require("../tree/dimension"),
Anonymous = require("../tree/anonymous"),
functionRegistry = require("./function-registry");
var minMax = function (isMin, args) {
args = Array.prototype.slice.call(args);
switch(args.length) {
case 0: throw { type: "Argument", message: "one or more... |
class A extends B.<ref>Foo implements B{
}
interface B{
static class Foo{
}
}
|
package org.jasig.portal.url;
import java.io.IOException;
import java.net.URLEncoder;
import javax.servlet.FilterChain;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import org.jasig.portal.... |
using System;
using Microsoft.Practices.EnterpriseLibrary.Logging;
using VsixMvcAppResult.BL.LoggingServices;
using VsixMvcAppResult.Models.Logging;
namespace VsixMvcAppResult.WCF.ServicesLibrary.LoggingServices
{
public class LoggingService : BaseService, ILoggingProxy
{
ILoggingProxy _bl = ... |
package org.wso2.carbon.apimgt.impl.indexing.indexer;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Arrays;
import org.apache.solr.common.SolrException;
import org.wso2.carbon.registry.core.exceptions.RegistryException;
import org.wso2.carbon.registry.core.utils.RegistryUtils... |
//go:build !providerless
// +build !providerless
package azure
import (
"context"
"fmt"
"strings"
"sync"
"time"
"github.com/Azure/azure-sdk-for-go/services/network/mgmt/2019-06-01/network"
"github.com/Azure/go-autorest/autorest/to"
"k8s.io/apimachinery/pkg/types"
"k8s.io/apimachinery/pkg/util/wait"
clou... |
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory() :
typeof define === 'function' && define.amd ? define(factory) :
(factory());
}(this, (function () { 'use strict';
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source c... |
<?php
namespace Zend\Code\Generator;
use Zend\Code\Generator\Exception;
abstract class AbstractMemberGenerator extends AbstractGenerator
{
/**#@+
* @const int Flags for construction usage
*/
const FLAG_ABSTRACT = 0x01;
const FLAG_FINAL = 0x02;
const FLAG_STATIC = 0x04... |
CKEDITOR.plugins.setLang("devtools","gl",{title:"Información do elemento",dialogName:"Nome da xanela de diálogo",tabName:"Nome da lapela",elementId:"ID do elemento",elementType:"Tipo do elemento"}); |
original_id: C279
title: "Recipes for Productionising Data Science APIs"
subtitle: ""
speaker: andrew-crozier
track: pydata
video: https://www.youtube.com/watch?v=CCOC_ka-2v0
---
You're a data scientist developing fantastic models with the Python data science stack, and you want to release it into the wild. In this tal... |
<?php
namespace ZendTest\View\Helper;
use Zend\View\Helper\Layout;
use Zend\View\Model\ViewModel;
use Zend\View\Renderer\PhpRenderer;
/**
* Test class for Zend_View_Helper_Layout
*
* @category Zend
* @package Zend_View
* @subpackage UnitTests
* @group Zend_View
* @group Zend_View_Helper
*/
cl... |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="ru">
<head>
<title>FibRgLw97AbstractType (POI API Documentation)</title>
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<scrip... |
package org.apache.hadoop.io;
import java.io.DataOutput;
import java.io.IOException;
import java.io.OutputStream;
import org.apache.hadoop.classification.InterfaceAudience;
import org.apache.hadoop.classification.InterfaceStability;
/**
* OutputStream implementation that wraps a DataOutput.
*/
@InterfaceAudience.... |
/*
*/
package org.datadryad.rest.handler;
/**
*
* @author Dan Leehr <dan.leehr@nescent.org>
*/
public class HandlerException extends Exception {
public HandlerException() {
super();
}
public HandlerException(String message) {
super(message);
}
public HandlerException(String m... |
<!DOCTYPE html>
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!-->
<html lang="en" xmlns="http://www.w3.org/1999/html"> <!--<![endif]-->
<head>
<!-- Basic... |
package org.apache.hadoop.hbase.client.replication;
import java.util.concurrent.atomic.AtomicBoolean;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.FileSystem;
import org.apache.hadoop.fs.Path;
import org.... |
<?php
namespace Bee\Security\Acls;
/**
* Interface IAuditLogger
* @package Bee\Security\Acls
*/
interface IAuditLogger {
public function logIfNeeded($granted, IAccessControlEntry $ace);
} |
<html>
<head>
<script type="text/javascript">var oldAlert = window.alert, gMess; window.alert = function(message) {gMess = message; return true;};</script>
<script src="http://maps.google.com/maps/api/js?v=3&sensor=false"></script>
<script type="text/javascript">window.alert = oldAlert;</script>
<script... |
// Copyright (c) 2014 The Bitcoin Core developers
// Copyright (c) 2015-2017 The Bitcoin Unlimited developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_TIMEDATA_H
#define BITCOIN_TIMEDATA_H
#include <algor... |
SYNONYM
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
null
#### Original name
null
### Remarks
null |
<!DOCTYPE html>
<title>Upgrade Insecure Requests: Basics.</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
<script>
// This is a bit of a hack. UPGRADE doesn't upgrade the p... |
namespace Microsoft.Azure.Management.Compute.Models
{
using Microsoft.Azure;
using Microsoft.Azure.Management;
using Microsoft.Azure.Management.Compute;
using Newtonsoft.Json;
using System.Linq;
/// <summary>
/// Describes an Operating System disk.
/// </summary>
public partial clas... |
<!--
Description: style="border: 1px solid rgb(0, 0, 0);"
Expect: not bozo and entries[0]['description'] == '<span style="border: 1px solid rgb(0, 0, 0);">Some text</span>'
-->
<rss version="2.0">
<channel>
<item>
<description><span style="border: 1px solid rgb(0, 0, 0);">Some text</span></descriptio... |
import time
from . import logger
class _DesciptiveCallable(object):
def __init__(self, doc, func):
self.doc = doc
self.func = func
def __call__(self, *args, **kwargs):
return self.func(*args, **kwargs)
def __str__(self):
return self.doc
class BackendActionBuilder(object... |
<?xml version="1.0" encoding="utf-8"?>
<com.mogujie.tt.ui.widget.message.AudioRenderView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/default_bk"
android:paddingBottom="20dp"
android... |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_151) on Sun Mar 17 11:03:31 MST 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>BalancerConsumer (BOM: * :... |
// +build !ignore_autogenerated
// Code generated by deepcopy-gen. DO NOT EDIT.
package coordination
import (
runtime "k8s.io/apimachinery/pkg/runtime"
)
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *Lease) DeepCopyInto(out *Lease) {
... |
require 'mswallet/version'
require 'rack/mswallet_rack'
module Mswallet
autoload :Pass, 'mswallet/pass'
class << self
attr_accessor :custom_rack_handler
def configure
yield self
end
end
end
|
namespace glm
{
/// @addtogroup gtx_rotate_normalized_axis
/// @{
/// Builds a rotation 4 * 4 matrix created from a normalized axis and an angle.
///
/// @param m Input matrix multiplied by this rotation matrix.
/// @param angle Rotation angle expressed in radians if GLM_FORCE_RADIANS is define or degrees othe... |
layout: page
title: Kane Price Aerospace Conference
date: 2016-05-24
author: Benjamin Solomon
tags: weekly links, java
status: published
summary: Vivamus et placerat tellus. Suspendisse faucibus.
banner: images/banner/leisure-05.jpg
booking:
startDate: 03/03/2017
endDate: 03/08/2017
ctyhocn: CLWLGHX
groupCode: ... |
// Copyright 2012 YDN Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicab... |
using UnityEngine;
using System.Collections.Generic;
using System;
/// @cond
namespace Gvr.Internal {
// Represents a vr device that this plugin interacts with.
public abstract class BaseVRDevice {
private static BaseVRDevice device = null;
protected BaseVRDevice() {
Profile = GvrProfile.Default.Clo... |
title: Divider React-Komponente
components: Divider
---
# Trenner (Divider)
<p class="description">Ein Trenner ist eine dünne Linie, die den Inhalt in Listen und Layouts gruppiert.</p>
[Trenner](https://material.io/design/components/dividers.html) trennt den Inhalt in klare Gruppen.
## Listentrenner
Der Trenner wi... |
package org.apache.flink.streaming.connectors.kinesis.proxy;
import org.apache.flink.runtime.util.EnvironmentInformation;
import org.apache.flink.streaming.connectors.kinesis.model.StreamShardHandle;
import com.amazonaws.ClientConfiguration;
import com.amazonaws.ClientConfigurationFactory;
import com.amazonaws.auth... |
. ./os/ubuntu/softwares.sh
echo "Updating Packages."
apt-get -qq update
echo "Installing Software."
echo "Installing Core Packages."
# 必备软件
necessary=(
vim
git
zsh
pm-utils
htop
# apt-get install -qq -y ibus ibus-clutter ibus-gtk ibus-gtk3 ibus-qt4 ibus-pinyin
ibus-pinyin
# c++ bitcoin... |
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
source "$DIR/setup_test_env.bash"
blender --background $BLEND/cubeB.blend --python $PYSCRIPT -- \
$JSON --vertices --faces --colors --faceMaterials --geometryType Geometry
makereview $@ --tag $(tagname)
|
package foo;
public class MemberEndJava {
} |
package org.apache.hadoop.hbase.regionserver;
import org.apache.hadoop.classification.InterfaceAudience;
import org.apache.hadoop.classification.InterfaceStability;
import org.apache.hadoop.hbase.DoNotRetryIOException;
/**
* Thrown if request for nonexistent column family.
*/
@InterfaceAudience.Public
@InterfaceSt... |
describe("BASIC CRUD SCENARIOS", function() {
require("./basic");
});
describe("VALIDATION SCENARIOS", function() {
require("./validation");
});
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Function throw_last_error</title>
<link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css">
<meta n... |
static const int priority = 1;
@interface SpdySession ()
@property (retain, nonatomic) NSDate *lastCallbackTime;
- (void)_cancelStream:(SpdyStream *)stream;
- (NSError *)connectTo:(NSURL *)url;
- (void)connectionFailed:(NSInteger)error domain:(NSString *)domain;
- (void)invalidateSocket;
- (void)removeStream:(SpdySt... |
class Logger {
bool m_isEnabled;
bool m_prefixRequired;
bool m_formatHRESULT;
public:
Logger() :
m_isEnabled(true),
m_prefixRequired(true),
m_formatHRESULT(false) { }
~Logger() { }
// Enables output from the logger
void Enable();
// Disables output from the ... |
require "formula"
# Find downloads at:
# https://helpx.adobe.com/air/kb/archived-air-sdk-version.html
class AdobeAirSdk < Formula
homepage "http://adobe.com/products/air/sdk"
version "15.0.0.302"
option "with-flex-support", "Do not download the new compiler with the SDK."
if build.without? "flex-support"
... |
package com.facebook.buck.cli;
import static org.junit.Assert.assertEquals;
import com.facebook.buck.util.CapturingPrintStream;
import com.google.common.base.Charsets;
import com.google.common.base.Joiner;
import org.easymock.EasyMock;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import... |
require 'spec_helper'
describe Gigest::Analytics do
let(:analytics) { Gigest::Analytics.new(access_token: ENV["GIGEST_TEST_GITHUB_TOKEN"]) }
context "#initialize" do
let(:auth_params) { {login: "username", password: "password"} }
it "instantiates a connection" do
Gigest::GithubConnection.stub(:new)... |
package jsky.util.gui;
//=== File Prolog===========================================================
// This code was developed by NASA, Goddard Space Flight Center, Code 588
// for the Scientist's Expert Assistant (SEA) project for Next Generation
// Space Telescope (NGST).
//
//--- Notes---------------------... |
var _config = require("../src/Config").getInstance();
function Driver() {}
Driver.prototype.expect = function(asserts) {
console.log(" Expect " + asserts);
};
Driver.prototype.equal = function(exp1, exp2) {
console.log(" Equal " + exp1 + " == " + exp2);
};
Driver.prototype.done = function() {
conso... |
padding-right: 1em;
}
#zeit\.addcentral\.panelcontent td {
height: auto;
}
#zeit\.addcentral\.panelcontent table * {
padding: 0;
}
#zeit\.addcentral\.panelcontent select {
width: 100%;
}
#zeit\.addcentral\.panelcontent .form-controls {
padding-top: 0.5em;
text-align: right;
}
#zeit\.addcentral\.panelco... |
package com.zigapk.gimvic.suplence;
import android.app.Application;
import android.test.ApplicationTestCase;
/**
* <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a>
*/
public class ApplicationTest extends ApplicationTestCase<Application> {
public ApplicationTest() {
... |
import nodeResolve from 'rollup-plugin-node-resolve';
import uglify from 'rollup-plugin-uglify';
import progress from 'rollup-plugin-progress';
import sourcemaps from 'rollup-plugin-sourcemaps';
import visualizer from 'rollup-plugin-visualizer';
const MINIFY = process.env.MINIFY;
const MONOLITHIC = process.env.MONOLIT... |
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Intrusive and non-intrusive containers</title>
<link rel="stylesheet" href="../../../doc/src/boostbook.css" type="text/css">
... |
namespace video_tutorials {
namespace {
// Returns whether the URL of the navigation matches the video player URL.
bool IsVideoPlayerURL(GURL url) {
#if BUILDFLAG(IS_ANDROID)
std::string url_string = url.possibly_invalid_spec();
if (url_string.find(chrome::kChromeUIUntrustedVideoPlayerUrl) == 0)
return true;
#... |
import {server as karma} from 'karma';
import {join} from 'path';
export = function karmaStart() {
return function (done) {
karma.start({
configFile: join(process.cwd(), 'karma.conf.js'),
singleRun: true
}, done);
};
};
|
test_name 'Windows ACL Module - Explicit Use of "target" Parameter'
confine(:to, :platform => 'windows')
#Globals
target_parent = 'c:/temp'
target = 'c:/temp/explicit_target'
user_id = 'bob'
verify_acl_command = "icacls #{target}"
acl_regex = /.*\\bob:\(OI\)\(CI\)\(F\)/
#Manifest
acl_manifest = <<-MANIFEST
file { '... |
package br.edu.uniritter.liquid.democracy.model;
import java.io.Serializable;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Table;
@Entity
@Table(name = "users")
public class User extends BaseEntity implements Serializable {
private static final long serialV... |
using QrF.Core.CMS.Entities;
using QrF.Core.ComFr.Repositories;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace QrF.Core.CMS.Service
{
public interface IArticleTypeService : IService<ArticleType>
{
IEnumerable<ArticleType> GetChildren(long id)... |