text stringlengths 3 1.05M |
|---|
package config
import (
"io"
"time"
"gopkg.in/gcfg.v1"
)
const (
DefaultOfferTTL = 5 * time.Second // duration an offer is viable, prior to being expired
DefaultOfferLingerTTL = 120 * time.Second // duration an expired offer lingers in history
DefaultListenerDe... |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD ID="Test-HEAD" TITLE="HEAD Element" LANG="en" DIR="ltr" CLASS="HEAD-class">
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=utf-8">
<TITLE>NIST DOM HTML Test - Element</TITLE>
<script type='text/javascript' src='selfhtml.js'></scri... |
package util
import (
"fmt"
"io"
"strings"
"k8s.io/kubernetes/pkg/api/meta"
"k8s.io/kubernetes/pkg/api/unversioned"
"k8s.io/kubernetes/pkg/kubectl"
"github.com/spf13/cobra"
)
// AddPrinterFlags adds printing related flags to a command (e.g. output format, no headers, template path)
func AddPrinterFlags(cmd... |
/**
* @module ol/webgl/ContextEventType
*/
/**
* @enum {string}
*/
export default {
LOST: 'webglcontextlost',
RESTORED: 'webglcontextrestored',
};
//# sourceMappingURL=ContextEventType.js.map |
package org.apache.flink.streaming.runtime.tasks.mailbox;
import org.apache.flink.core.testutils.OneShotLatch;
import org.apache.flink.runtime.concurrent.FutureTaskWithException;
import org.apache.flink.streaming.api.operators.MailboxExecutor;
import org.apache.flink.util.FlinkException;
import org.apache.flink.util... |
//// [a.ts]
class c {
}
//// [b.ts]
/// <reference path="c.js"/>
// error on above reference when emitting declarations
function foo() {
}
//// [c.js]
function bar() {
}
//// [out.js]
var c = (function () {
function c() {
}
return c;
}());
function bar() {
}
/// <reference path="c.js"/>
... |
using System;
using System.Collections.Generic;
using System.Text;
using NUnit.Framework;
using XenAdmin.XenSearch;
namespace XenAdminTests.SearchTests
{
[TestFixture, Category(TestCategories.UICategoryB)]
class SearchMarshallingTests
{
[Test]
public void RunTest()
... |
require 'grpc'
require 'google/cloud/dataplex/v1/service_pb'
module Google
module Cloud
module Dataplex
module V1
module DataplexService
# Dataplex service provides data lakes as a service. The primary resources
# offered by this service are Lakes, Zones and Assets which collect... |
namespace chromecast {
namespace media {
scoped_ptr<::media::BrowserCdm> CastBrowserCdmFactory::CreateBrowserCdm(
const std::string& key_system_name,
bool use_hw_secure_codecs,
const ::media::SessionMessageCB& session_message_cb,
const ::media::SessionClosedCB& session_closed_cb,
const ::media::Leg... |
package net.java.sip.communicator.impl.resources.util;
import java.io.*;
import java.util.*;
import java.util.zip.*;
import net.java.sip.communicator.service.resources.*;
/**
* Class for building of skin bundles from zip files.
* @author Adam Netocny
*/
public class SkinJarBuilder
{
/**
* Creates bundle... |
<?php
namespace yii\base;
use Yii;
/**
* Action is the base class for all controller action classes.
*
* Action provides a way to divide a complex controller into
* smaller actions in separate class files.
*
* Derived classes must implement a method named `run()`. This method
* will be invoked by the control... |
"""
Functions for reversing a regular expression (used in reverse URL resolving).
Used internally by Django and not intended for external use.
This is not, and is not intended to be, a complete reg-exp decompiler. It
should be good enough for a large class of URLS, however.
"""
# Mapping of an escape character to a r... |
package org.apache.activemq.openwire.v5;
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import org.apache.activemq.openwire.*;
import org.apache.activemq.command.*;
/**
* Test case for the OpenWire marshalling for MessageDispatch
*
*
* NOTE!: This file is auto gener... |
module OmniAuth
module Facebook
VERSION = "1.5.1"
end
end
|
SYNONYM
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
null
#### Original name
null
### Remarks
null |
var g = newGlobal('new-compartment');
var dbg = Debugger(g);
dbg.onDebuggerStatement = function (frame) {
frame.environment.setVariable("x", 2);
};
g.eval("var x = 1; debugger;");
assertEq(g.x, 2);
|
/* ssl/d1_pkt.c */
/*
* DTLS implementation written by Nagendra Modadugu
* (nagendra@cs.stanford.edu) for the OpenSSL project 2005.
*/
/* ====================================================================
* Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved.
*
* Redistribution and use in sourc... |
package org.lwjgl.vulkan;
import org.lwjgl.system.*;
import static org.lwjgl.system.Checks.*;
import static org.lwjgl.system.JNI.*;
/**
* This is extension, along with related platform extensions, allows applications to take exclusive control of displays associated with a native windowing system. This is especiall... |
exports.requireAuthentication = function (req, res, next) {
if (!req.isAuthenticated()) {
res.status(401).send({
message: 'User not authenticated'
});
} else {
next();
}
}; |
package com.amazonaws.services.licensemanager.model.transform;
import java.math.*;
import javax.annotation.Generated;
import com.amazonaws.services.licensemanager.model.*;
import com.amazonaws.transform.SimpleTypeJsonUnmarshallers.*;
import com.amazonaws.transform.*;
import com.fasterxml.jackson.core.JsonToken;
im... |
This project aims to provide a simple and customizable pull to refresh implementation. Made in [Yalantis] (http://yalantis.com/)
Check this [project on Behance] (https://www.behance.net/gallery/20411445/Mobile-Animations-Interactions)
Check this [project on Dribbble] (https://dribbble.com/shots/1623131-Pull-to-Refre... |
package com.google.samples.apps.iosched.ui;
import android.app.AlertDialog;
import android.app.Dialog;
import android.app.DialogFragment;
import android.content.DialogInterface;
import android.content.Intent;
import android.os.Bundle;
import android.provider.Settings;
import com.google.samples.apps.iosched.R;
/**
... |
package org.apache.camel.component.jms;
import javax.jms.ConnectionFactory;
import org.apache.camel.CamelContext;
import org.apache.camel.Exchange;
import org.apache.camel.Processor;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.component.mock.MockEndpoint;
import org.apache.camel.test.junit4... |
import React, {FunctionComponent, useState} from 'react'
import {connect, ConnectedProps} from 'react-redux'
// Components
import BuilderCard from 'src/timeMachine/components/builderCard/BuilderCard'
import WaitingText from 'src/shared/components/WaitingText'
import SelectorList from 'src/timeMachine/components/Select... |
<!DOCTYPE html>
<html>
<head>
<title>require.js: Common I18N Test</title>
<script type="text/javascript">
requirejsArgs= {
dojoLocation:"../../../../.."
};
</script>
<script type="text/javascript" src="../requirejs-setup.js"></script>
<script type="text/javascript" src="../../../../../dojo.js"><... |
title: AppointmentCancelingEdit
page_title: AppointmentCancelingEdit | RadScheduler for ASP.NET AJAX Documentation
description: AppointmentCancelingEdit
slug: scheduler/server-side-programming/server-events/appointmentcancelingedit
tags: appointmentcancelingedit
published: True
position: 8
---
# AppointmentCa... |
ACCEPTED
#### According to
Index Fungorum
#### Published in
null
#### Original name
Puccinia clematidis-secalis Dupias
### Remarks
null |
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE fontscolors PUBLIC "-//NetBeans//DTD Editor Fonts and Colors settings 1.1//EN" "http://www.netbeans.org/dtds/EditorFontsColors-1_1.dtd">
<fontscolors>
<fontcolor default="number" name="FLOAT_LITERAL"/>
<fontcolor name="mod-method">
<font style="bold"/>
... |
// **NOTE:** This file is a snapshot of the WebSocket++ utility client tutorial.
// Additional related material can be found in the tutorials/utility_client
// directory of the WebSocket++ repository.
#include <websocketpp/config/asio_no_tls_client.hpp>
#include <websocketpp/client.hpp>
#include <websocket... |
class PacketPeerUDP : public PacketPeer {
OBJ_TYPE(PacketPeerUDP,PacketPeer);
protected:
static PacketPeerUDP* (*_create)();
static void _bind_methods();
int _get_packet_address() const;
String _get_packet_ip() const;
virtual Error _set_send_address(const String& p_address,int p_port);
public:
virtual Erro... |
<?php
namespace Symfony\Component\Intl\DateFormatter\DateFormat;
/**
* Parser and formatter for 24 hour format (1-24)
*
* @author Igor Wiedler <igor@wiedler.ch>
*/
class Hour2401Transformer extends HourTransformer
{
/**
* {@inheritdoc}
*/
public function format(\DateTime $dateTime, $length)
... |
( function ( OO ) {
'use strict';
/**
* Namespace for all classes, static methods and static properties.
*
* @class
* @singleton
*/
OO.ui = {};
OO.ui.bind = $.proxy;
/**
* @property {Object}
*/
OO.ui.Keys = {
UNDEFINED: 0,
BACKSPACE: 8,
DELETE: 46,
LEFT: 37,
RIGHT: 39,
UP: 38,
DOWN: 40,
ENTER: 13,
... |
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="en_US">
<context>
<name>ChickenOutbreakMain</name>
<message>
<location filename="../ChickenOutbreakMain.qml" line="194"/>
<source>Facebook Connected</source>
<translation type="unfinished"></translation>
... |
package com.intellij.uiDesigner.palette;
import com.intellij.openapi.actionSystem.AnAction;
import com.intellij.openapi.actionSystem.AnActionEvent;
import com.intellij.openapi.actionSystem.CommonDataKeys;
import com.intellij.openapi.fileTypes.StdFileTypes;
import com.intellij.openapi.project.Project;
import com.inte... |
defineParticle(({UiParticle, html, log}) => {
const host = `master-detail`;
const template = html`
<style>
[${host}] {
position: relative;
}
[${host}] [empty] {
display: none;
}
[${host}] [detail-panel] {
position: sticky;
top: 64px;
height: 0;
box-sizing: border-box;
}
[${... |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" con... |
"use strict"
exports.__esModule = true
const Module = require('module')
const path = require('path')
// borrowed from babel-eslint
function createModule(filename) {
const mod = new Module(filename)
mod.filename = filename
mod.paths = Module._nodeModulePaths(path.dirname(filename))
return mod
}
exports.defaul... |
package org.apache.avro.file;
import java.io.IOException;
import java.io.EOFException;
import java.io.InputStream;
import java.io.File;
import java.util.Arrays;
import org.apache.avro.io.DecoderFactory;
import org.apache.avro.io.DatumReader;
import static org.apache.avro.file.DataFileConstants.SYNC_SIZE;
import stat... |
require 'testing_env'
require 'software_spec'
class SoftwareSpecTests < Homebrew::TestCase
def setup
@spec = SoftwareSpec.new
end
def test_resource
@spec.resource('foo') { url 'foo-1.0' }
assert @spec.resource_defined?("foo")
end
def test_raises_when_duplicate_resources_are_defined
@spec.re... |
package edu.psu.compbio.seqcode.projects.multigps.framework;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Coll... |
/**
* @fileoverview Rule to require or disallow yoda comparisons
* @author Nicholas C. Zakas
*/
"use strict";
//--------------------------------------------------------------------------
// Requirements
//--------------------------------------------------------------------------
const astUtils = require("../ast-ut... |
echo "====================================================="
./contrib/weekly-changelog-report.py
echo
#@echo "====================================================="
#./contrib/weekly-changelog-report.py origin/holger/staging-branch
#echo
wget 'http://bugs.openembedded.net/buglist.cgi?bug_file_loc=&bug_file_loc_type=a... |
using System.Diagnostics;
using System.Globalization;
using Octokit.Internal;
using System.Collections.Generic;
namespace Octokit
{
/// <summary>
/// Used to submit a pending pull request review
/// </summary>
[DebuggerDisplay("{DebuggerDisplay,nq}")]
public class PullRequestReviewSubmit : Request... |
<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006~2017 http://thinkphp.cn All rights reserved.
// +-------------------------------------------------... |
CKEDITOR.plugins.setLang( 'language', 'fo', {
button: 'Velja tungumál',
remove: 'Remove language' // MISSING
} );
|
describe("Player", function() {
var player;
var song;
beforeEach(function() {
player = new Player();
song = new Song();
});
it("should be able to play a Song", function() {
player.play(song);
expect(player.currentlyPlayingSong).toEqual(song);
//demonstrates use of custom matcher
exp... |
package org.elasticsearch.index.analysis;
import com.ibm.icu.lang.UCharacter;
import com.ibm.icu.lang.UProperty;
import com.ibm.icu.lang.UScript;
import com.ibm.icu.text.BreakIterator;
import com.ibm.icu.text.RuleBasedBreakIterator;
import org.apache.lucene.analysis.Tokenizer;
import org.apache.lucene.analysis.icu.s... |
alias colorize='colorize_via_pygmentize'
colorize_via_pygmentize() {
if [ ! -x $(which pygmentize) ]; then
echo package \'pygmentize\' is not installed!
exit -1
fi
if [ $# -eq 0 ]; then
pygmentize -g $@
fi
for FNAME in $@
do
filename=$(basename "$FNAME")
... |
export DEBIAN_FRONTEND=noninteractive
sudo apt-get -y update
# install Python
sudo apt-get -y install python-setuptools
# install DJango
sudo easy_install django
sudo apt-get -y install freetds-dev freetds-bin
sudo apt-get -y install python-dev python-pip
sudo pip install pymssql
# install Apache
sudo apt-get -y ins... |
(function () {
/**
* @namespace canvasPlayground
*/
window['canvasPlayground'] = window['canvasPlayground'] || {};
})(); |
import java.awt.*;
public class Test {
void foo(){
Component c = null;
((Frame) c).show();
}
}
|
<!-- BEGIN MUNGE: UNVERSIONED_WARNING -->
<!-- BEGIN STRIP_FOR_RELEASE -->
<img src="http://kubernetes.io/kubernetes/img/warning.png" alt="WARNING"
width="25" height="25">
<img src="http://kubernetes.io/kubernetes/img/warning.png" alt="WARNING"
width="25" height="25">
<img src="http://kubernetes.io/kubernet... |
this is file 16 |
//
// Copyright (c) 2015 Shyam Bhat
//
// 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, ... |
/**
* Poller service for AngularJS
* @version v0.2.1
* @link http://github.com/emmaguo/angular-poller
* @license MIT
*/
(function (window, angular, undefined) {
'use strict';
angular.module('emguo.poller', [])
/*
* Usage:
* - Simple example:
* var myPoller = poll... |
<div>
<div class="modalLoad" aria-hidden="true" tabindex="-1" role="dialog" ng-keyup="escapeFRE($event);" ng-show="freShown" id="id">
<div class="modal-backdrop fade in"></div>
<div class="modal fade">
<div class="fre-dialog size">
<div class="modal-content">
<div class="mo... |
<?php
namespace hu\szjani\domain\issue;
use precore\util\Preconditions;
use predaddy\domain\AggregateId;
use predaddy\domain\eventsourcing\AbstractEventSourcedAggregateRoot;
use predaddy\domain\GenericAggregateId;
use predaddy\messagehandling\annotation\Subscribe;
use JMS\Serializer\Annotation\Type;
use JMS\Serializ... |
package org.apache.nifi.processors.avro;
import java.io.BufferedInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.security.NoSuchAlgorithmException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
impor... |
RocketChat.slashCommands.add('unarchive', null, {
description: 'Unarchive',
params: '#channel'
});
|
package container
import (
"bytes"
"fmt"
"hash/adler32"
"hash/fnv"
"strings"
"time"
"github.com/golang/glog"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/types"
clientv1 "k8s.io/client-go/pkg/api/v1"
"k8s.io/client-go/tools/record"
"k8s.io/ku... |
require "grape-swagger"
class ApiV1 < Grape::API
use Rack::Cors do
allow do
origins '*'
resource '*', headers: :any, methods: [:get, :put, :post, :options, :delete,:head]
end
end
include Grape::Kaminari
version :v1
format :json
paginate per_page: 15
before do
I18n.locale = "zh-C... |
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using DocumentFormat.OpenXml.Packaging;
using DocumentFormat.OpenXml.Tests.FootnoteColumnsClass;
using Xunit;
using Xunit.Abstractions;
using W15 = DocumentFormat.Ope... |
"Thread-safe in-memory cache backend."
import time
try:
from django.utils.six.moves import cPickle as pickle
except ImportError:
import pickle
from django.core.cache.backends.base import BaseCache, DEFAULT_TIMEOUT
from django.utils.synch import RWLock
# Global in-memory store of cache data. Keyed by name, to... |
/**
* mSupply Mobile
* Sustainable Solutions (NZ) Ltd. 2019
*/
import React from 'react';
import PropTypes from 'prop-types';
import { SimpleLabel } from './SimpleLabel';
import { FlexRow } from './FlexRow';
import { FlexView } from './FlexView';
/**
* Layout and display component rendering some text and a numbe... |
package org.omg.DynamicAny;
import org.omg.CORBA.TCKind;
import org.omg.DynamicAny.DynAnyPackage.InvalidValue;
import org.omg.DynamicAny.DynAnyPackage.TypeMismatch;
/**
* Defines the operations, applicable to the DynStructure.
*
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public in... |
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is control... |
package org.apache.storm.utils;
import org.apache.commons.io.FileUtils;
import org.apache.storm.generated.LSApprovedWorkers;
import org.apache.storm.generated.LSSupervisorAssignments;
import org.apache.storm.generated.LSSupervisorId;
import org.apache.storm.generated.LSTopoHistory;
import org.apache.storm.generated.L... |
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 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... |
% nextFig (MAXFIGS, SKIP)
%
% Make figure number mod((GCF+SKIP), MAXFIGS) the current figure.
% MAXFIGS is optional, and defaults to 2.
% SKIP is optional, and defaults to 1.
% Eero Simoncelli, 2/97.
function nextFig(maxfigs, skip)
if (exist('maxfigs') ~= 1)
maxfigs = 2;
end
if (exist('skip') ~= 1)
skip = 1;... |
/*!
* URI.js - Mutating URLs
* jQuery Plugin
*
* Version: 1.6.3
*
* Author: Rodney Rehm
* Web: http://medialize.github.com/URI.js/jquery-uri-plugin.html
*
* Licensed under
* MIT License http://www.opensource.org/licenses/mit-license
* GPL v3 http://opensource.org/licenses/GPL-3.0
*
*/
(function($, und... |
(function (root,tinysort) {
'use strict';
// if ( typeof module === "object" && typeof module.exports === "object" ) {
// module.exports = singleton;
if (typeof define==='function'&&define.amd) {
define('tinysort',singleton);
// define(singleton);
} else if (typeof module==='object'&&module.exports) {
module... |
package v1
import (
v1 "github.com/openshift/api/authorization/v1"
scheme "github.com/openshift/client-go/authorization/clientset/versioned/scheme"
meta_v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
types "k8s.io/apimachinery/pkg/types"
watch "k8s.io/apimachinery/pkg/watch"
rest "k8s.io/client-go/rest"
)
// Cluster... |
title: Front-matter
---
Front-matter is a block of YAML or JSON at the beginning of the file that is used to configure settings for your writings. Front-matter is terminated by three dashes when written in YAML or three semicolons when written in JSON.
**YAML**
``` yaml
title: Hello World
date: 2013/7/13 20:46:25
---
... |
var config;
function Config(xhr) {
function loadPreferences(xhr) {
var parser = new DOMParser();
var doc = parser.parseFromString(xhr.responseText, "application/xml");
var preferences = doc.getElementsByTagName("preference");
return Array.prototype.slice.call(preferences);
}
... |
from __future__ import absolute_import
from __future__ import print_function
from django.conf import settings
settings.RUNNING_INSIDE_TORNADO = True
# We must call zerver.tornado.ioloop_logging.instrument_tornado_ioloop
# before we import anything else from our project in order for our
# Tornado load logging to work; ... |
<!--
Copyright 2014 Google Inc. 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 applicable law or agree... |
package ogame.pages;
import bot.Bot;
import ogame.objects.game.BuildTask;
import ogame.objects.game.Buildable;
import ogame.objects.game.planet.Planet;
import ogame.objects.game.planet.PlanetProperties;
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
import org.jsoup.select.Ele... |
import type {TurboModule} from 'react-native/Libraries/TurboModule/RCTExport';
import * as TurboModuleRegistry from 'react-native/Libraries/TurboModule/TurboModuleRegistry';
export interface Spec extends TurboModule {
+show: () => void;
+hide: () => void;
}
export default (TurboModuleRegistry.get<Spec>('LogBox'... |
<!DOCTYPE html>
<html>
<head>
<title>#{get 'title' /}</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" media="screen" href="@{'/public/stylesheets/main.css'}">
<link rel="stylesheet" type="text/css" media="screen" hre... |
package org.jbpm.test.functional.async;
import java.util.HashMap;
import java.util.Map;
import org.jbpm.test.JbpmTestCase;
import org.jbpm.test.wih.FirstErrorWorkItemHandler;
import org.jbpm.workflow.instance.WorkflowRuntimeException;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import or... |
package org.apache.amber.oauth2.jwt;
import org.apache.oltu.oauth2.jwt.JWTException;
import org.apache.oltu.oauth2.jwt.JWTProcessor;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
import junit.framework.Assert;
/**
* This class contains test cases for {@linkJWTProcessor}
*... |
<!DOCTYPE html>
<!--[if IE 8]><html class="no-js lt-ie9" lang="en" > <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en" > <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Calendaring Class — CodeIgniter 3.0-dev doc... |
#ifndef MATCH_H
#define MATCH_H
/*--------------------------------------------------------------------------*/
#include <QtCore/QRunnable>
/*--------------------------------------------------------------------------*/
#include "Global.h"
/*--------------------------------------------------------------------------*/
#i... |
pytest-3.3.0
=======================================
The pytest team is proud to announce the 3.3.0 release!
pytest is a mature Python testing tool with more than 1600 tests
against itself, passing on many different interpreters and platforms.
This release contains a number of bugs fixes and improvements, so users a... |
import createCuid from '../index.js';
const fingerprint = require('node-fingerprint')();
const { cuid, slug } = createCuid(fingerprint);
cuid.slug = slug;
export default cuid;
|
module Evapotranspiration
VERSION = "0.1.6"
end
|
var path = require('path'),
glob = require('glob'),
util = require('util'),
_ = require('lodash'),
protractor = require('./protractor.js');
// Coffee is required here to enable config files written in coffee-script.
try {
require('coffee-script').register();
} catch (e) {
// Intentionally blank - i... |
/**
* Provides a convenient wrapper for TextFields that adds a clickable trigger button (looks like a combobox by default).
* The trigger has no default action, so you must assign a function to implement the trigger click handler by overriding
* {@link #onTriggerClick}. You can create a Trigger field directly, as i... |
Generate and copy here test package signing key.
|
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.springframework.boot.m... |
/**
* Pipedrive API v1
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* ... |
import asyncio
import tempfile
from datetime import datetime
from time import sleep
from unittest import mock
from swaggerit.models._base import _all_models
from tests.integration.fixtures import TopSellerArrayTest
import pytest
import ujson
@pytest.fixture
def init_db(models, session, api):
user = {
'n... |
import fs from 'fs';
import path from 'path';
import gulp from 'gulp';
// Load all gulp plugins automatically
// and attach them to the `plugins` object
import plugins from 'gulp-load-plugins';
// Temporary solution until gulp 4
// https://github.com/gulpjs/gulp/issues/355
import runSequence from 'run-sequence';
im... |
package com.bumptech.glide.volley;
import android.content.Context;
import android.content.pm.PackageInfo;
import android.net.http.AndroidHttpClient;
import android.os.Build;
import com.android.volley.Cache;
import com.android.volley.Network;
import com.android.volley.RequestQueue;
import com.android.volley.toolbox.Bas... |
db.teams.update({}, { $rename: { people_ids: 'peopleIds' } }, false, true);
db.votes.update({}, { $rename: { person_id: 'personId', team_id: 'teamId' } }, false, true);
db.people.update({}, { $rename: { twitter_name: 'twitterScreenName', image_url: 'imageURL' } }, false, true);
|
package v2v3
import (
"context"
"fmt"
"path"
"sort"
"strings"
"time"
"go.etcd.io/etcd/api/v3/mvccpb"
"go.etcd.io/etcd/client/v3"
"go.etcd.io/etcd/client/v3/concurrency"
"go.etcd.io/etcd/server/v3/etcdserver/api/v2error"
"go.etcd.io/etcd/server/v3/etcdserver/api/v2store"
)
// store implements the Store int... |
SYNONYM
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
null
#### Original name
Cladotrichum triseptatum Berk. & Broome, 1851
### Remarks
null |
from __future__ import unicode_literals
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [('migrations', '0001_initial')]
operations = []
|
/**
* ag-grid - Advanced Data Grid / Data Table supporting Javascript / React / AngularJS / Web Components
* @version v4.2.4
* @link http://www.ag-grid.com/
* @license MIT
*/
var gridOptionsWrapper_1 = require("./gridOptionsWrapper");
var paginationController_1 = require("./rowControllers/paginationController");
v... |
class Knock < Cask
version 'latest'
sha256 :no_check
url 'http://knocktounlock.com/download'
homepage 'http://knocktounlock.com'
link 'Knock.app'
end
|