text stringlengths 3 1.05M |
|---|
title: "HTTP Remote"
description: "Read only remote for HTTP servers"
---
{{< icon "fa fa-globe" >}} HTTP
-------------------------------------------------
The HTTP remote is a read only remote for reading files of a
webserver. The webserver should provide file listings which rclone
will read and turn into a remote.... |
package org.apache.shardingsphere.orchestration.core.registrycenter.listener;
import org.apache.shardingsphere.orchestration.center.RegistryCenterRepository;
import org.apache.shardingsphere.orchestration.center.listener.DataChangedEvent.ChangedType;
import org.apache.shardingsphere.orchestration.core.registrycenter... |
@interface PodsDummy_Pods_MRCountryPicker_Example : NSObject
@end
@implementation PodsDummy_Pods_MRCountryPicker_Example
@end
|
Collection of layouts and templates to work with QRA and SREST.
#####Install:
```
go get github.com/jimmy-go/qviews
```
####Layout:
```
theme_static/
└── adminlte
├── css
├── fonts
├── img
├── js
theme_views/
└── lte
├── alert_errors.html
├── email.html
├── footer.html
├── header.ht... |
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTi... |
module MotionSupport
# The Inflector transforms words from singular to plural, class names to table names, modularized class names to ones without,
# and class names to foreign keys. The default inflections for pluralization, singularization, and uncountable words are kept
# in inflections.rb.
#
# The Rails c... |
<?php
/**
* Translation file.
* @package epesi-translations
* @subpackage ar
*/
global $translations;
$translations['Companies Report']='';
$translations['Companies - Report, %s']='';
$translations['Companies_Report_%s']='';
|
var express = require('express');
var router = express.Router();
router.get("*", function(req, res, next) {
console.log("req Generic");
console.log(req.baseUrl);
res.render('index', { title: 'Express' });
});
module.exports = router; |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_45) on Fri Mar 06 22:15:33 CST 2015 -->
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<TITLE>
org.apache.hadoop.yarn.server.res... |
<!DOCTYPE html>
<html xmlns:msxsl="urn:schemas-microsoft-com:xslt">
<head>
<meta content="en-us" http-equiv="Content-Language" />
<meta content="text/html; charset=utf-16" http-equiv="Content-Type" />
<title _locid="PortabilityAnalysis0">.NET Portability Report</title>
<style>
... |
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="350dp"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:padding="16dp"
android:orientation="vertical">
<android.s... |
//---------------------------------------------------------------------------
// Greenplum Database
// Copyright (C) 2017 Pivotal Software, Inc.
//
// @filename:
// CDXLScalarValuesList.h
//
// @doc:
// Class for representing DXL value list operator.
//-----------------------------------------------------------------... |
package tradingsystem.interfaces.correlations;
import java.util.Set;
import tradingsystem.interfaces.Interfaces.EventHandler;
import tradingsystem.interfaces.Interfaces.Symbol;
public interface CorrelationTracker extends EventHandler{
double[] getFourierTransformFor(Symbol a); // double[] frequency, magnitude, phas... |
#include <nana/gui/widgets/checkbox.hpp>
#include <nana/paint/gadget.hpp>
#include <nana/paint/text_renderer.hpp>
#include <nana/gui/element.hpp>
#include <algorithm>
namespace nana{ namespace drawerbase
{
namespace checkbox
{
typedef element::crook_interface::state crook_state;
struct drawer::implement
{
bool... |
require 'forwardable'
require 'securerandom'
module Qcuke
# Wouldn't it be great to have autload_relative symmetrical with
# require_relative?
adapter_loadpath = File.expand_path("adapters", File.dirname(__FILE__))
$LOAD_PATH.unshift(adapter_loadpath) unless $LOAD_PATH.include?(adapter_loadpath)
autoload ... |
require 'test_helper'
class CarsControllerTest < ActionController::TestCase
setup do
@car = cars(:one)
end
test "should get index" do
get :index
assert_response :success
assert_not_nil assigns(:cars)
end
test "should get new" do
get :new
assert_response :success
end
test "shoul... |
using System;
using System.Linq;
using System.Linq.Expressions;
namespace NonFactors.Mvc.Grid
{
public sealed class GridQuery : ExpressionVisitor
{
private Boolean Ordered { get; set; }
private GridQuery()
{
}
public static Boolean IsOrdered(IQueryable models)
... |
layout: page
title: "Speakers"
subtitle: "Meet all of our 2017 speakers."
description: "Meet all of our 2017 speakers."
---
{% include speakers-list.html %}
More speakers will be announced soon …
|
package com.brendanzhao.monkeydash;
import java.awt.Rectangle;
import java.awt.image.BufferedImage;
public class Monkey {
private int x;
private int y;
private int verticalVelocity;
private Rectangle hitBox;
private MonkeyState state;
private BufferedImage runningImageOne;
private BufferedImage ... |
using System;
using System.Collections.Generic;
using System.Text;
namespace MipsSharp
{
public abstract class MipsSharpException : Exception
{
public abstract string ExtendedInformation { get; }
public MipsSharpException(string message)
: base(message)
{
}
... |
class ReviewBidsController < ApplicationController
require 'json'
require 'uri'
require 'net/http'
require 'rest_client'
# action allowed function checks the action allowed based on the user working
def action_allowed?
case params[:action]
when 'show', 'set_priority', 'index'
['Instructor',
... |
package org.finra.datagenerator.scaffolding.random;
import java.util.Random;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/**
* Created by dkopel on 12/12/16.
*/
public class RegexRandomizer {
private final Random random;
public RegexRandomizer(Random random) {
this.random = rand... |
package org.assertj.core.internal.inputstreams;
import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.fail;
import static org.assertj.core.error.ShouldHaveSameContent.shouldHaveSameContent;
import static org.assertj.core.test.TestData.someInfo;
import static org.asser... |

##网络
* 采用MKNetworkKit库
* 网络下载代码封装
```
MKNetworkOperation *operation = [[MKNetworkOperation alloc] initWithURLString:@"http://mr3.douban.com/201508152125/c7afbeeb3248c382aac7811330bb898c/view/song/small/p1469094_128k.mp4" params:nil httpMethod:@"Get"];
[operation addHeader:@"Range" wi... |
require 'app_spec_helper'
describe Dabster::ArtistLibraryItemRelationship do
subject(:relationship) { described_class.new }
before do
relationship.confidence = 1.0
relationship.type = 'artist'
end
it { should be_valid }
describe 'when type is not a valid type' do
before { relationship.type =... |
package gov.nih.nci.cdmsconnector.util;
import gov.nih.nci.cdmsconnector.c3d.security.C3DUser;
import gov.nih.nci.cdmsconnector.manager.AccessPermissionException;
import gov.nih.nci.security.AuthorizationManager;
import gov.nih.nci.security.SecurityServiceProvider;
import java.sql.Connection;
import gov.nih.nci.cdms... |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>template-coq: Not compatible</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.c... |
#import "MLCUser.h"
#import "MLCEntity_Private.h"
#import "MLCValidation.h"
@interface MLCUser ()
+ (instancetype)userWithUsername:(NSString *)username password:(NSString *)password social:(NSString *)social socialToken:(NSString *)socialToken;
@end
@implementation MLCUser
MLCUserSocial const MLCUserSocialFacebo... |
mf.include("chat_commands.js");
mf.include("assert.js");
mf.include("arrays.js");
/**
* Example:
* var id;
* var count = 0;
* task_manager.doLater(new task_manager.Task(function start() {
* id = mf.setInterval(function() {
* mf.debug("hello");
* if (++count === 10) {
* task_mana... |
package com.baidubce.services.bbc.model.instance;
import com.baidubce.auth.BceCredentials;
import com.baidubce.model.AbstractBceRequest;
import com.baidubce.services.bcc.model.Billing;
import com.baidubce.services.bcc.model.TagModel;
import com.fasterxml.jackson.annotation.JsonIgnore;
import java.util.List;
/**
* ... |
blog app
|
using System.Collections.Generic;
using Abp.Authorization;
using Abp.Authorization.Roles;
using Abp.Domain.Uow;
using Abp.Runtime.Caching;
using Abp.Zero.Configuration;
using NewWechat.Authorization.Users;
using Microsoft.AspNetCore.Identity;
using Microsoft.Extensions.Logging;
namespace NewWechat.Authorization.Roles
... |
namespace TinyOData.Query.Filter.Segments
{
using System.Collections;
using System.Collections.Generic;
/// <summary>
/// Class that represents a linear collection of filter segments.
///
/// </summary>
public class FilterSegments : IEnumerable<SegmentBase>
{
private readonly L... |
DROP TABLE subscription.subscription_topics |
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/4.1/phpunit.xsd"
backupGlobals="false"
colors="true"
bootstrap="vendor/autoload.php">
<php>
<ini name="error_rep... |
package birpc
|
<meta charset="utf-8">
<!-- <link rel="stylesheet" href="css/jquery.mobile508datepicker.css"/> -->
<link rel="stylesheet" href="css/pages/customer-view.css">
<div class="customer-view-content">
<div data-role="tabs">
<table id="allTable">
<tbody>
<tr>
<td class="tablist-left">
<ul data-role="... |
__all__ = ['tumblr_download']
from ..common import *
from .universal import *
from .dailymotion import dailymotion_download
from .vimeo import vimeo_download
from .vine import vine_download
def tumblr_download(url, output_dir='.', merge=True, info_only=False, **kwargs):
if re.match(r'https?://\d+\.media\.tumblr\.... |
#ifndef COIN_SOPICKSTYLE_H
#define COIN_SOPICKSTYLE_H
#include <Inventor/nodes/SoSubNode.h>
#include <Inventor/fields/SoSFEnum.h>
#include <Inventor/elements/SoPickStyleElement.h>
class COIN_DLL_API SoPickStyle : public SoNode {
typedef SoNode inherited;
SO_NODE_HEADER(SoPickStyle);
public:
static void init... |
/**
* @fileoverview This file is generated by the Angular template compiler.
* Do not edit.
* @suppress {suspiciousCode,uselessCode,missingProperties,missingOverride}
*/
/* tslint:disable */
import * as i0 from '@angular/core';
import * as i1 from './app.module';
import * as i2 from '@angular/common';
export con... |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Autodesk Forge - NodeJS - Template</title>
<!-- Common packages: JQuery & Bootstrap -->
<link rel="stylesheet" href="/css/bootstrap.min.css">
<script language="JavaScript" src="/js/jquery.min.js"></script>
<script language="JavaScript" sr... |
//
// DConnectDevicePlugin.h
// dConnectManager
//
// Copyright (c) 2014 NTT DOCOMO,INC.
// Released under the MIT license
// http://opensource.org/licenses/mit-license.php
//
/*!
@file
@brief デバイスプラグイン実装するための機能を提供する。
@author NTT DOCOMO
*/
#import <DConnectSDK/DConnectProfileProvider.h>
#import <DConnectSDK/... |
#ifndef MQTT_CONNECTION_H
#define MQTT_CONNECTION_H
#ifdef WIN32
#ifdef SSAP_MQTT_CONNECTION_EXPORTS
#define SSAP_MQTT_CONNECTION_API __declspec(dllexport)
#else
#define SSAP_MQTT_CONNECTION_API __declspec(dllimport)
#endif // WIN32
#else
#define SSAP_MQTT_CONNECTION_API
#endif // not WIN32
#ifdef __cplusplus
exter... |
/* Define to prevent recursive inclusion -------------------------------------*/
#ifndef __STM32F769I_DISCOVERY_SD_H
#define __STM32F769I_DISCOVERY_SD_H
#ifdef __cplusplus
extern "C" {
#endif
/* Includes ------------------------------------------------------------------*/
#include "stm32f769i_discovery.... |
var async = require('async');
var colors = require('colors');
var fs = require('fs');
var pg = require('pg');
var nodemailer = require('nodemailer');
var mustache = require('mustache');
var moment = require('moment');
var jwt = require('jsonwebtoken');
var config = require('dotenv').config();
var domain = proc... |
// This file is generated by FBC.
#ifndef SIFBMANAGEMENTCONTROLS_H_
#define SIFBMANAGEMENTCONTROLS_H_
#include "fbtypes.h"
typedef union {
UDINT events;
struct {
UDINT i_set_change; //
UDINT brk; //
UDINT rst; //
} event;
} SifbManagementControlsOEvents;
typede... |
/**
* \file Linux-specific implementation of file.h
*/
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
#include <cassert>
#include <fstream>
#include <dirent.h>
#include <fnmatch.h>
// JLJ - #include <malloc.h> // for fre... |
__requires__ = 'pip==1.1'
import sys
from pkg_resources import load_entry_point
sys.exit(
load_entry_point('pip==1.1', 'console_scripts', 'pip')()
)
|
ACCEPTED
#### According to
Index Fungorum
#### Published in
null
#### Original name
Tomasellia arthonioides var. pinastri Rehm
### Remarks
null |
<!DOCTYPE html>
<html>
<link href='http://fonts.googleapis.com/css?family=Lato:400,700' rel='stylesheet' type='text/css'><head>
<meta charset="utf-8">
<base data-ice="baseUrl" href="../../../">
<title data-ice="title">Model | Arva API Document</title>
<link type="text/css" rel="stylesheet" href="css/style.css">... |
import { autoinject } from 'aurelia-framework';
import { AuthenticationService } from '../services/auth';
@autoinject
export class LogIn {
constructor(private authService: AuthenticationService) { }
activate(params: any, queryString: any, routeConfig: any) {
this.authService.login();
}
} |
package collectiontopics;// collectiontopics/ListSortSearch.java
// (c)2017 MindView LLC: see Copyright.txt
// We make no guarantees that this code is fit for any purpose.
// Visit http://OnJava8.com for more book information.
// Sorting/searching Lists with Collections utilities
import java.util.*;
public class ListS... |
package com.example.mindrate.gson;
/**
* <p>
* <br>Project: MindRate</br>
* <br>Package: com.example.mindrate.gson</br>
* <br>Author: Ecko Tan</br>
* <br>E-mail: eckotan@icloud.com</br>
* <br>Created at 2017/3/21:23:15</br>
* </p>
*/
public class Time {
//==============getter and setter=====================
... |
<?php
// autoload_real.php @generated by Composer
class ComposerAutoloaderInitd35d2f7d0d52210443839d9877d7d565
{
private static $loader;
public static function loadClassLoader($class)
{
if ('Composer\Autoload\ClassLoader' === $class) {
require __DIR__ . '/ClassLoader.php';
}
... |
namespace web_view {
TestFrameTreeDelegate::TestFrameTreeDelegate(mojo::ApplicationImpl* app)
: app_(app),
waiting_for_create_frame_(false),
waiting_for_destroy_frame_(nullptr),
most_recent_frame_(nullptr),
waiting_for_frame_disconnected_(nullptr) {}
TestFrameTreeDelegate::~TestFrameTreeDe... |
""" The interface for an image resource. """
from collections import Sequence
from pyface.resource_manager import resource_manager
from pyface.resource.resource_path import resource_module, resource_path
from traits.api import Interface, List, Unicode
class IImageResource(Interface):
""" The interface for an im... |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>coqeal: Error with dependencies 🚒</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap... |
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-comp-1048',
templateUrl: './comp-1048.component.html',
styleUrls: ['./comp-1048.component.css']
})
export class Comp1048Component implements OnInit {
constructor() { }
ngOnInit() {
}
}
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>basic_datagram_socket::keep_alive</title>
<link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="../../../boos... |
/**
* @fileOverview Cellula Framework's namespace definition.
* @description: defines util,class,cell,element,collection
* @version: 0.3.3
* @author: @hanyee
*/
var Cellula = {_cellula : Cellula};
Cellula.version = '0.3.2';
Cellula._util = {};
Cellula.Class = undefined;
Cellula.Cell = undefined;
Cellula.Elem... |
package com.humiston.worldclock.view;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import javax.faces.application.FacesMessage;
import javax.faces.bean.SessionScoped;
import javax.faces.bean.ViewScoped;
import javax.faces.context.FacesContext;
import javax.inject.Named;
import com.... |
package com.hubspot.singularity;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.google.common.base.Optional;
import com.wordnik.swagger.annotations.ApiModel;
import com.wordnik.swagger.annotations.ApiModelProperty;
@ApiModel( description = "Repres... |
package azurerm
import (
"fmt"
"net/http"
"testing"
"github.com/hashicorp/terraform/helper/acctest"
"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/terraform"
)
func TestAccAzureRMVirtualMachineScaleSet_basicLinux(t *testing.T) {
ri := acctest.RandInt()
config := fmt.Sprintf(... |
package org.jboss.weld.vertx.container;
import org.jboss.weld.vertx.Timeouts;
import org.jboss.weld.vertx.WeldVerticle;
import org.junit.After;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.Timeout;
import org.junit.runner.RunWith;
import io.vertx.core.Vertx;
import io... |
module.exports = (generatedFrom, error) =>
`/**
* @generate-failed
* @generated-from ./${generatedFrom}
*/
throw new Error(${JSON.stringify(error.toString())})
`;
|
<!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_252) on Fri Aug 20 17:47:58 BST 2021 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class psidev.psi.mi... |
'use strict';
import { AuthConfig, IAuthConfigSettings } from 'node-sp-auth-config';
import * as express from 'express';
// tslint:disable-next-line:no-duplicate-imports
import { Request, Response, NextFunction } from 'express';
import * as bodyParser from 'body-parser';
import * as cors from 'cors';
import * as path ... |
import * as React from 'react'
import {Reloadable} from '../../common-adapters'
import * as SettingsGen from '../../actions/settings-gen'
import * as Container from '../../util/container'
import Notifications, {type Props} from '.'
import * as RouteTreeGen from '../../actions/route-tree-gen'
import * as Constants from ... |
import sys, gzip
inFilePath = sys.argv[1]
outFilePath = sys.argv[2]
uniqueSampleIDs = set()
uniqueGeneIDs = set()
# Get all unique sample IDs and gene IDs
with gzip.open(inFilePath, 'rb') as inFile:
inHeaderItems = inFile.readline().decode().rstrip("\n").split("\t")
sampleIDIndex = inHeaderItems.index("icgc... |
package hackathon.com.pagandopave.fragments;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v7.widget.LinearLayoutManager;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android... |
ACCEPTED
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
null
#### Original name
null
### Remarks
null |
package postman
import (
"reflect"
"testing"
)
func TestExtractStructuresDefinition(t *testing.T) {
// Given
builder := &CollectionBuilder{}
builder.Parsers = append(builder.Parsers, &CollectionV210Parser{})
expectedStructures := []StructureDefinition{
{Name: "Cat", Description: "A great animal", Fields: []St... |
<!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_112) on Fri Jun 16 09:55:16 MST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Package org.wildfly... |
package org.apache.xbean.server.main;
/**
* Indicates that a fatal error occured while starting the server.
* @author Dain Sundstrom
* @version $Id$
* @since 2.0
*/
public class FatalStartupError extends Error {
/**
* The default exit code assigned to new exception if an exit code is not provided.
... |
const mongoose = require('mongoose')
const fs = require('fs')
const encryption = require('../utilities/encryption')
let requiredValidationMessage = '{PATH} is required'
let problemsSchema = mongoose.Schema({
name: { type: String, required: requiredValidationMessage,},
content: { type: String, required: requir... |
import os
import sys
import subprocess
from os import access, getenv, X_OK
jar_file = 'Dinosaur-1.1.3.free.jar'
default_jvm_mem_opts = []
# !!! End of parameter section. No user-serviceable code below this line !!!
def real_dirname(path):
"""Return the symlink-resolved, canonicalized directory-portion of path."... |
import React, { Component } from 'react';
import Selection from './Selection';
export default class App extends Component {
render() {
return (
<Selection show={true} specName={null} />
);
}
}
|
// _ _
// __ _____ __ ___ ___ __ _| |_ ___
// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \
// \ V V / __/ (_| |\ V /| | (_| | || __/
// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___|
//
// Copyright © 2016 - 2020 SeMI Holding B.V. (registered @ Dutch Chamber of Commerce no 752216... |
<?php
namespace dpodium\yii2\audittrail\models;
use dpodium\yii2\audittrail\helpers\AuditTrailHelper;
/**
* Query class for audit trail entries
*
* @author Pascal Mueller, AS infotrack AG
* @link http://www.asinfotrack.ch
* @license MIT
* @extendedby Darren Ng, Dynamic Podium (http://www.dpodium.com)
*/
clas... |
#import <Foundation/Foundation.h>
#import "MXHTTPClient.h"
NS_ASSUME_NONNULL_BEGIN
@interface MXPushGatewayRestClient : NSObject
/**
The push gateway URL.
*/
@property (nonatomic, readonly) NSString *pushGateway;
/**
The queue on which asynchronous response blocks are called.
Default is dispatch_get_main_que... |
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="refresh" content="0;URL=../../openssl_sys/constant.NID_setCext_hashedRoot.html">
</head>
<body>
<p>Redirecting to <a href="../../openssl_sys/constant.NID_setCext_hashedRoot.html">../../openssl_sys/constant.NID_setCext_hashedRoot.html</a>...</p>
<scri... |
package com.intellij.vcs.log.data.index;
import com.intellij.openapi.diagnostic.Logger;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.util.Throwable2Computable;
import com.intellij.openapi.vcs.FilePath;
import com.intellij.openapi.vfs.VirtualFile;
import com.intellij.util.containers.Contain... |
package com.testes.database;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Map;
import android.content.Context;
import android.content.SharedPreferences;
import android.graphics.Bit... |
By Ross Smith
* `#include "rs-core/prime.hpp"`
## Contents ##
[TOC]
## Introduction ##
This module implements some basic prime number algorithms. Although they can
be used with extended precision integers as well as primitive types, they do
not implement the sophisticated algorithms required for practical use with... |
@interface ChartViewSnapshotTests : FBSnapshotTestCase
@end
@implementation ChartViewSnapshotTests
- (void)setUp
{
[super setUp];
self.recordMode = NO;
}
- (void)testChartViewReloadData
{
XYDoughnutChart *chart = [[XYDoughnutChart alloc] initWithFrame:CGRectMake(0, 0, 200, 200)];
DummyChartSourceClas... |
#ifndef TWOBLUECUBES_CATCH_VERSION_H_INCLUDED
#define TWOBLUECUBES_CATCH_VERSION_H_INCLUDED
#include <iosfwd>
namespace Catch {
// Versioning information
struct Version {
Version( Version const& ) = delete;
Version& operator=( Version const& ) = delete;
Version( unsigned int _majo... |
package com.google.cloud.spanner.jdbc;
import static org.hamcrest.CoreMatchers.equalTo;
import static org.hamcrest.CoreMatchers.is;
import static org.hamcrest.CoreMatchers.notNullValue;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.as... |
webshims.register('form-number-date-ui', function($, webshims, window, document, undefined, options){
"use strict";
var curCfg;
var formcfg = webshims.formcfg;
var hasFormValidation = Modernizr.formvalidation && !webshims.bugs.bustedValidity;
var monthDigits = ['01', '02', '03', '04', '05', '06', '07', '08', '09',... |
package org.apache.isis.core.metamodel.facets.param.defaults.methodnum;
import java.lang.reflect.Method;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import org.apache.isis.core.metamodel.adapter.ObjectAdapter;
import org.apache.isis.core.metamodel.adapter.mgr.AdapterManager;
import or... |
package com.amazonaws.services.kinesisvideo;
import javax.annotation.Generated;
import com.amazonaws.services.kinesisvideo.model.*;
/**
* Abstract implementation of {@code AmazonKinesisVideoAsync}. Convenient method forms pass through to the corresponding
* overload that takes a request object and an {@code Async... |
<?php
/*Archivo de configuracion...
variables globales
*/
//False para produccion
$mododebug = 1;
?> |
/* Authors: Yoonseok Pyo, Leon Jung, Darby Lim, HanCheol Cho */
#ifndef TURTLEBOT3_MONSTER_MOTOR_DRIVER_H_
#define TURTLEBOT3_MONSTER_MOTOR_DRIVER_H_
#include <DynamixelSDK.h>
// Control table address (Dynamixel X-series)
#define ADDR_X_TORQUE_ENABLE 64
#define ADDR_X_GOAL_VELOCITY 104
#defin... |
package funcs
import (
"github.com/gaochao1/swcollector/g"
"github.com/open-falcon/common/model"
"log"
"github.com/gaochao1/sw"
"github.com/toolkits/slice"
"strconv"
"time"
)
type ChIfStat struct {
Ip string
PingResult bool
UseTime int64
IfStatsList *[]sw.IfStats
}
var (
AliveIp []string
... |
using System;
using System.Collections.Generic;
using System.Linq;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Microsoft.Xna.Framework.Graphics;
using Forge.Sprites;
namespace Forge.Tests.Sprites
{
[TestClass]
public class SpriteDefinitionTests
{
[TestMethod]
[TestCategory("F... |
package br.com.frametcc.database;
import android.content.Context;
import android.content.res.AssetManager;
import android.database.sqlite.SQLiteDatabase;
import android.util.Log;
import java.io.BufferedReader;
import java.io.File;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayLis... |
#ifndef __PSASCAN_SRC_MULTIFILE_BIT_STREAM_READER_H_INCLUDED
#define __PSASCAN_SRC_MULTIFILE_BIT_STREAM_READER_H_INCLUDED
#include <cstdio>
#include <vector>
#include "utils.h"
#include "multifile.h"
namespace psascan_private {
struct multifile_bit_stream_reader {
private:
static const long k_bufsize;
// in... |
namespace Plainion.GraphViz.Modules.CodeInspection.Packaging.Spec
{
public class Exclude : Wildcard
{
}
}
|
package com.bitfiction.mvctemplate.util;
public enum OSType {
WINDOWS,
LINUX_UNIX,
MACOS,
SOLARIS,
UNKNOWN
}
|
package org.red5.server.api.stream;
import java.io.IOException;
import org.red5.server.api.scheduling.IScheduledJob;
/**
* ISubscriberStream is a stream from subscriber's point of view. That is, it provides methods for common stream operations like play, pause or seek.
*/
public interface ISubscriberStream exten... |
from django.test import TestCase
from django.conf import settings
from restclients.pws import PWS
from restclients.exceptions import InvalidRegID, InvalidNetID, InvalidEmployeeID
from restclients.exceptions import DataFailureException
class PWSTestPersonData(TestCase):
def test_by_regid(self):
with self.s... |