text stringlengths 3 1.05M |
|---|
#region License
#endregion
using System;
using System.Collections.Specialized;
using System.Text;
namespace WebSocketSharp.Net
{
internal abstract class AuthenticationBase
{
#region Private Fields
private AuthenticationSchemes _scheme;
#endregion
#region Internal Fields
internal NameValue... |
export const Login = (function() {
function onClick(el) {
const $el = $(el);
if ($el.length) {
$el.addClass('active');
return $el.find('input').focus();
}
}
function onBlur(input) {
const $input = $(input);
if ($input.length) {
if (input.value === '') {
return $input.parents('.input-text').rem... |
class RDoc::NormalClass < RDoc::ClassModule
##
# Appends the superclass, if any, to the included modules.
def ancestors
superclass ? super + [superclass] : super
end
##
# The definition of this class, <tt>class MyClassName</tt>
def definition
"class #{full_name}"
end
def inspect # :nodoc:... |
/**
* Highcharts JS v4.2.5 (2016-05-06)
* Highcharts Broken Axis module
*
* License: www.highcharts.com/license
*/
(function (factory) {
/*= if (!build.assembly) { =*/
if (typeof module === 'object' && module.exports) {
module.exports = factory;
return;
}
/*= } =*/
factory(Highcharts);
}(function (H) ... |
/*************************************************************************/
/* line_builder.cpp */
/*************************************************************************/
/* This file is part of: */
/* ... |
<?php
namespace Behat\Testwork\EventDispatcher\Event;
use Behat\Testwork\Tester\Result\TestResult;
/**
* Represents an event right before a teardown.
*
* @author Konstantin Kudryashov <ever.zet@gmail.com>
*/
interface BeforeTeardown
{
/**
* Returns current test result.
*
* @return TestResult... |
module ActsAsPublished
class Engine < ::Rails::Engine
config.generators do |g|
g.test_framework :rspec
g.fixture_replacement :factory_girl, :dir => 'spec/factories'
end
end
end
|
package com.amazonaws.services.autoscaling.model.transform;
import java.util.Map;
import java.util.Map.Entry;
import javax.xml.stream.events.XMLEvent;
import com.amazonaws.services.autoscaling.model.*;
import com.amazonaws.transform.Unmarshaller;
import com.amazonaws.transform.MapEntry;
import com.amazonaws.transf... |
package org.apache.axis2.jaxrs;
import org.apache.axis2.Constants;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import javax.ws.rs.Consumes;
import javax.ws.rs.DELETE;
import javax.ws.rs.GET;
import javax.ws.rs.HEAD;
import javax.ws.rs.POST;
import javax.ws.rs.PUT;
import ja... |
package com.intellij.cvsSupport2.connections.ssh;
import com.intellij.CvsBundle;
import com.intellij.cvsSupport2.config.SshSettings;
import com.intellij.cvsSupport2.connections.ssh.ui.SshPasswordDialog;
public class SshConnectionUtil {
private SshConnectionUtil() {
}
public static boolean promptForPassword(fi... |
package com.jsh.erp.datasource.entities;
import java.util.Date;
public class Tenant {
private Long id;
private Long tenantId;
private String loginName;
private Integer userNumLimit;
private String type;
private Boolean enabled;
private Date createTime;
private... |
using Microsoft.CodeAnalysis;
namespace Microsoft.VisualStudio.LanguageServices.Implementation.Preview
{
internal abstract partial class ReferenceChange : AbstractChange
{
private sealed class MetadataReferenceChange : ReferenceChange
{
private readonly MetadataReference _reference;... |
//
// NSMutableAttributedString+TY.h
// TYAttributedLabelDemo
//
// Created by tanyang on 15/4/8.
// Copyright (c) 2015年 tanyang. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#import <CoreText/CoreText.h>
@interface NSMutableAttributedString (TY)
/**
* 设置行间距()
*/
- (NSMuta... |
using System;
namespace Microsoft.PowerShell.Commands
{
public enum TestPathType
{
Any,
Container,
Leaf
}
}
|
Grunt handles all CoffeeScript configuration. You can configure compiler
settings in the project's Gruntfile.js.
There may be boilerplate javascript files in `app/js`. Move or delete
them to avoid collision.
For detailed information on configuring CoffeeScript with Grunt, see the docs
at https://github.com/gruntjs... |
import dispatcher from './dispatcher';
export default class Actions {
static navigate(newRoute) {
dispatcher.dispatch('NAVIGATE', { location: newRoute });
}
static requestFlickrData(tag) {
dispatcher.dispatch('REQUEST-FLICKR-DATA', { tag: tag });
}
static processFlickrData(data) ... |
using Google.Apis.Storage.v1;
using System;
namespace Google.Cloud.Storage.V1
{
/// <summary>
/// Options for <c>DeleteObject</c> operations.
/// </summary>
public sealed class DeleteObjectOptions
{
/// <summary>
/// The generation to delete. If this is not specified, the latest
... |
// Debug.java - Print debug messages
package mf.org.apache.xml.resolver.helpers;
/**
* Static debugging/messaging class for Catalogs.
*
* <p>This class defines a set of static methods that can be called
* to produce debugging messages. Messages have an associated "debug
* level" and messages below t... |
'''
Module provides a class allowing to wrap communication over subprocess.Popen
input, output, error streams into a meaningfull, non-blocking, concurrent stream
processor exposing the output data as an iterator fitting to be a return value
passed by a WSGI applicaiton to a WSGI server per PEP 3333.
Copyright (c... |
using System;
using System.Web.Script.Serialization;
using Umbraco.Core.Logging;
using umbraco.BusinessLogic;
using umbraco.cms.businesslogic.datatype;
namespace umbraco.editorControls
{
/// <summary>
/// Abstract class for the PreValue Editor.
/// Specifically designed to serialize/deserialize ... |
/* This file was generated automatically by Zephir do not modify it! */
#include "php_zendxml.h" |
#ifndef QEVDEVTABLET_P_H
#define QEVDEVTABLET_P_H
//
// W A R N I N G
// -------------
//
// This file is not part of the Qt API. It exists purely as an
// implementation detail. This header file may change from version to
// version without notice, or even be removed.
//
// We mean it.
//
#include <QObject>
#i... |
package docker
import (
"encoding/base64"
"fmt"
"net/http"
"strings"
"testing"
)
func TestAuthLegacyConfig(t *testing.T) {
auth := base64.StdEncoding.EncodeToString([]byte("user:pass"))
read := strings.NewReader(fmt.Sprintf(`{"docker.io":{"auth":"%s","email":"user@example.com"}}`, auth))
ac, err := NewAuthCon... |
<!--
* Copyright 2013 The Chromium Authors. All rights reserved. Use of this
* source code is governed by a BSD-style license that can be found in the
* LICENSE file.
-->
<html>
<body>
<div>I'm the app's main window page. I will click the link below.</div>
<div><a id="link" target="_blank">Blank link</a></div>
<scr... |
// 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.Diagnostics;
using System.Globalization;
namespace System.DirectoryServices.AccountManag... |
<?xml version="1.0"?>
<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 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>usermembership-base</artifactId>... |
layout: docs-page
title: Videos
docs_nav_id: videos
---
<div class="g-grid">
<div class="g-3">
<div class="video-gallery" id="video-gallery"></div>
</div>
<div class="g-9">
<div id="video-player"></div>
<div id="video-description" class="video-gallery-description"></div>
</div... |
namespace net {
namespace test {
class RttStatsPeer;
} // namespace test
class NET_EXPORT_PRIVATE RttStats {
public:
RttStats();
// Returns true if any RTT measurements have been made.
bool HasUpdates() const;
// Updates the RTT from an incoming ack which is received |send_delta| after
// the packet is ... |
SYNONYM
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
Sp. pl. 2: 1176 (1753)
#### Original name
Boletus fomentarius L., 1753
### Remarks
null |
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Coinche
{
public partial class NewPlayer : Form
{
public NewPlayer()
{... |
class QuestionOptionPolicy < ApplicationPolicy
attr_reader :user, :question_option
def initialize(user, question_option)
raise Pundit::NotAuthorizedError, "must be logged in" unless user
@user = user
@question_option = question_option
end
##
# The only action specifically on question_options i... |
<!DOCTYPE html>
<HTML>
<HEAD>
<TITLE> ZTREE DEMO - async & edit</TITLE>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="../../../css/demo.css" type="text/css">
<link rel="stylesheet" href="../../../css/zTreeStyle/zTreeStyle.css" type="text/css">
<script type="text/j... |
%
%test blockwise filtering vs filtering the entire trace, to reduce artifacts
%
%%
Fs =32000;
Wn=120;
n=4;
[b,a]=butter(n,Wn/(Fs/2),'low');
Hd{1}=b;
Hd{2}=a;
%filter for spikes
WnSpikes=[300 3000];
[b,a]=butter(n,WnSpikes/(Fs/2));
HdSpikes{1}=b;
HdSpikes{2}=a;
rawSignal = cumsum( randn(1,Fs*3)... |
require 'test_helper'
class PaywayTest < Test::Unit::TestCase
def setup
@gateway = PaywayGateway.new(
:username => '12341234',
:password => 'abcdabcd',
:pem => certificate
)
@amount = 1000
@credit_card = ActiveMerchant::Billing::CreditCard.new(
:number => 4... |
module PipelineQueue
extend ActiveSupport::Concern
included do
queue_namespace :pipeline_default
end
end
|
<?php
namespace ZendTest\View\Helper;
use Zend\View\Helper;
use Zend\View\Renderer\PhpRenderer as View;
use Zend\View\Exception\ExceptionInterface as ViewException;
/**
* Test class for Zend\View\Helper\HeadLink.
*
* @group Zend_View
* @group Zend_View_Helper
*/
class HeadLinkTest extends \PHPUnit_Fr... |
UShowLoginUICallbackProxy::UShowLoginUICallbackProxy(const FObjectInitializer& ObjectInitializer)
: Super(ObjectInitializer)
, WorldContextObject(nullptr)
{
}
UShowLoginUICallbackProxy* UShowLoginUICallbackProxy::ShowExternalLoginUI(UObject* WorldContextObject, class APlayerController* InPlayerController)
{
UShowLo... |
/*jslint white: true, browser: true, plusplus: true, indent: 4, maxerr: 50 */
var Handsontable = { //class namespace
extension: {}, //extenstion namespace
helper: {} //helper namespace
};
(function ($, window, Handsontable) {
"use strict";
Handsontable.activeGuid = null;
/**
* Handsontable constructor
* @pa... |
<!--
Copyright 2015 The AMP HTML 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 applica... |
package org.apache.jackrabbit.oak.spi.gc;
import org.slf4j.Logger;
/**
* This {@code GCMonitor} implementation logs all calls to its
* {@link #info(String, Object...)}, {@link #warn(String, Object...)},
* {@link #error(String, Exception)} and {@link #skipped(String, Object...)}
* methods at the respective level... |
import _curry3 from './internal/_curry3.js';
/**
* Tests the final argument by passing it to the given predicate function. If
* the predicate is satisfied, the function will return the result of calling
* the `whenTrueFn` function with the same argument. If the predicate is not
* satisfied, the argument is return... |
package prefux.data.io;
import java.io.BufferedOutputStream;
import java.io.OutputStream;
import java.io.PrintStream;
import prefux.data.Table;
import prefux.util.collections.IntIterator;
/**
* TableWriter that writes out a text table in the comma-separated-values
* format. By default, a header row con... |
#include "extensions/tracers/lightstep/config.h"
#include "envoy/config/trace/v3/trace.pb.h"
#include "envoy/config/trace/v3/trace.pb.validate.h"
#include "envoy/registry/registry.h"
#include "common/common/utility.h"
#include "common/tracing/http_tracer_impl.h"
#include "extensions/tracers/lightstep/lightstep_trace... |
<?xml version="1.0" encoding="UTF-8"?>
<!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/html; charset=utf-8"/>
<meta name="keywor... |
.charsheet {
background-image: url("http://www.akcni-figurky.cz/themes/petra/img/pozadi.jpg");
}
.charsheet {
font-family: "Aharoni";
}
.charsheet thead td {
font-weight: bold;
}
.ui-helper-center {
text-align: center;
}
/*-----------------------------------------------input -------------------------... |
<!--
! Licensed to the Apache Software Foundation (ASF) under one
! or more contributor license agreements. See the NOTICE file
! distributed with this work for additional information
! regarding copyright ownership. The ASF licenses this file
! to you under the Apache License, Version 2.0 (the
! "License"); yo... |
import "../../Reflect";
import * as assert from "assert";
export function ReflectGetOwnMetadataKeysKeysInvalidTarget() {
// 1. If Type(target) is not Object, throw a TypeError exception.
assert.throws(() => Reflect.getOwnMetadataKeys(undefined, undefined), TypeError);
}
export function ReflectGetOwnMetadataKe... |
<?php
include_once('../adodb.inc.php');
include_once('../adodb-active-record.inc.php');
// uncomment the following if you want to test exceptions
if (@$_GET['except']) {
if (PHP_VERSION >= 5) {
include('../adodb-exceptions.inc.php');
echo "<h3>Exceptions included</h3>";
}
}
$db = NewADO... |
package firebirdsql
type firebirdsqlResult struct {
affectedRows int64
}
func (res *firebirdsqlResult) LastInsertId() (int64, error) {
// Firebird does not have default ID.
return -1, nil
}
func (res *firebirdsqlResult) RowsAffected() (int64, error) {
return res.affectedRows, nil
}
|
package com.lyncode.performance;
import org.apache.commons.httpclient.HttpClient;
import org.apache.commons.httpclient.methods.GetMethod;
import org.apache.commons.math3.distribution.NormalDistribution;
import org.apache.commons.math3.util.Pair;
import java.io.IOException;
import java.util.ArrayList;
import java.ut... |
declare module 'semaphore' {
function semaphore(capacity?: number): semaphore.Semaphore;
module semaphore {
interface Task {
(): void;
}
interface Semaphore {
capacity: number;
take(task: Task): void;
take(n: number, task: Task): void;
leave(n?: number): void;
}
... |
using System;
using System.IO;
using System.Runtime.InteropServices;
using System.Text;
namespace DotZLib
{
#region Internal types
/// <summary>
/// Defines constants for the various flush types used with zlib
/// </summary>
internal enum FlushTypes
{
None, Partial, Sync, Full, F... |
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.
using System.Collections.Generic;
using System.IO;
using System.Text;
#if UNITY_EDITOR
using UnityEditor.Callbacks;
#endif
using UnityEngine;
namespace H... |
/******************************************************************************
* @file dw_timer.h
* @brief header file for timer driver
* @version V1.0
* @date 02. June 2017
******************************************************************************/
#ifndef __DW_TIMER_H
#define __DW_TIMER_H
#inc... |
package main
import (
"bufio"
"bytes"
"fmt"
"io/ioutil"
"net"
"os"
"os/exec"
"path"
"path/filepath"
"reflect"
"regexp"
"sort"
"strconv"
"strings"
"sync"
"time"
"github.com/docker/docker/pkg/integration/checker"
"github.com/docker/docker/pkg/nat"
"github.com/docker/docker/runconfig"
"github.com/doc... |
package v1
import (
kapi "k8s.io/kubernetes/pkg/api"
"k8s.io/kubernetes/pkg/registry/core/namespace"
"k8s.io/kubernetes/pkg/runtime"
oapi "github.com/openshift/origin/pkg/api"
)
func addConversionFuncs(scheme *runtime.Scheme) error {
return scheme.AddFieldLabelConversionFunc("v1", "Project",
oapi.GetFieldLabe... |
package com.intellij.framework.library;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import javax.swing.*;
import java.net.URL;
/**
* @deprecated use {@link DownloadableLibraryType} instead
*/
@Deprecated
public abstract class DownloadableLibraryTypeBase extends Downloadabl... |
<?php
namespace phpDocumentor\Reflection\DocBlock\Tag;
use phpDocumentor\Reflection\DocBlock\Tag;
/**
* Reflection class for an @author tag in a Docblock.
*
* @author Mike van Riel <mike.vanriel@naenius.com>
* @license http://www.opensource.org/licenses/mit-license.php MIT
* @link http://phpdoc.org
*/
cla... |
"""
Perform necessary SSH configuration to allow nodes to communicate directly with
each other.
This code runs in the Flocker client - that is, in an administrator's
environment, such as a laptop or desktop, not on Flocker nodes themselves (it
may accidentally work on the Flocker nodes but this is not the expected use... |
require 'sass/script/css_parser'
module Sass
module SCSS
# A parser for a static SCSS tree.
# Parses with SCSS extensions, like nested rules and parent selectors,
# but without dynamic SassScript.
# This is useful for e.g. \{#parse\_selector parsing selectors}
# after resolving the interpolation.... |
<?php
namespace Bootphp\Config;
use Bootphp\Core;
use Bootphp\Filesystem;
class File implements \Bootphp\Config\Reader
{
/**
* The directory where config files are located
* @var string
*/
protected $_directory = '';
/**
* Creates a new file reader using the given directory as a con... |
<html>
<!--Form Location: https://accounts.google.com/NewAccount?service=mail&continue=http://mail.google.com/mail/e-11-2dbc28e240ea30b136df0a1112b85e-47965d1ced79eec4c8289f321c90a286e20bf7be&type=2--><head>
<title>Google Accounts</title>
</head>
<body bgcolor="#ffffff" text="#000000" link="#0000cc" vlink="#551a8b" ali... |
namespace pe {
// @name Operations on PE/COFF headers.
// @{
// Known section types.
enum SectionType {
kSectionCode,
kSectionData,
kSectionUnknown
};
// Typical section names.
extern const char kCodeSectionName[];
extern const char kReadOnlyDataSectionName[];
extern const char kReadWriteDataSectionName[];
exte... |
<!--
Copyright 2011 Google Inc. All rights reserved.
-->
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
<script
src='//google.com/tools/dlpage/res/chromeframe/script/CFInstall.min.js'>
</script>
</head>
<body>
<b>Chrome Renderer Active?:</b>
<span class="label... |
package io.milton.http;
import io.milton.http.Response.Status;
/** An immutable class to represent an item in a MultiStatus response
*
*/
public class HrefStatus {
public final String href;
public final Response.Status status;
public HrefStatus(String href, Status status) {
this... |
<!DOCTYPE html>
<!--
Template Name: Metronic - Responsive Admin Dashboard Template build with Twitter Bootstrap 3.3.2
Version: 3.7.0
Author: KeenThemes
Website: http://www.keenthemes.com/
Contact: support@keenthemes.com
Follow: www.twitter.com/keenthemes
Like: www.facebook.com/keenthemes
Purchase: http://themeforest.n... |
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<!-- 分隔线 -->
<ImageView
android:id="@+id/nd3_sina_sperator_line_id"
... |
// 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.
#nullable disable
using System;
using System.Composition;
using Microsoft.CodeAnalysis.ExtractMethod;
using Micros... |
package org.jetbrains.plugins.groovy.codeInspection.naming;
import com.intellij.psi.PsiElement;
import com.intellij.psi.PsiModifier;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.plugins.groovy.codeInspection.BaseInspectionVisitor;
import org.jetbrains.plugins.groovy.codeInspection.GroovyFix;
import ... |
require 'formula'
class Povray < Formula
homepage 'http://www.povray.org/'
url 'https://github.com/POV-Ray/povray/archive/v3.7.0.0.tar.gz'
sha1 '1d160d45e69d096e4c22f3b034dcc9ee94d22208'
revision 1
depends_on :macos => :lion
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on 'l... |
date
cd /home/app_solr/solrdatasources/botgarden
##############################################################################
# move the current set of extracts to temp (thereby saving the previous run, just in case)
# note that in the case where there are several nightly scripts, e.g. public and internal,
# like her... |
```
src/
|- app/
| |- home/
| |- about/
| |- app.js
| |- app.spec.js
```
The `src/app` directory contains all code specific to this application. Apart
from `app.js` and its accompanying tests (discussed below), this directory is
filled with subdirectories corresponding to high-level sections of the
appli... |
module ActionText
class Fragment
class << self
def wrap(fragment_or_html)
case fragment_or_html
when self
fragment_or_html
when Nokogiri::HTML::DocumentFragment
new(fragment_or_html)
else
from_html(fragment_or_html)
end
end
d... |
<?php
namespace Symfony\Component\Console\Output;
use Symfony\Component\Console\Exception\InvalidArgumentException;
use Symfony\Component\Console\Formatter\OutputFormatterInterface;
/**
* StreamOutput writes the output to a given stream.
*
* Usage:
*
* $output = new StreamOutput(fopen('php://stdout', 'w')... |
var fs = require('fs');
module.exports = function(licenseFile, outputFile) {
var licenseText = fs.readFileSync(licenseFile);
var license = '/**\n @license\n' + licenseText + '\n */\n';
if (outputFile) {
outputFile = licenseFile + '.wrapped';
fs.writeFileSync(outputFile, license, 'utf8');
return outp... |
@if "%DEBUG%" == "" @echo off
@rem Set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" setlocal
:setSpringHome
@rem Setup SPRING_HOME if not already defined
if defined SPRING_HOME goto setJavaHome
set DIRNAME=%~dp0
if "%DIRNAME%" == "" set DIRNAME=.
set SPRING_HOME=%DIRNAME%\..
:setJavaHo... |
TestHelpers.commonWidgetTests( "dialog", {
defaults: {
autoOpen: true,
buttons: {},
closeOnEscape: true,
closeText: 'close',
disabled: false,
dialogClass: '',
draggable: true,
height: 'auto',
hide: null,
maxHeight: false,
maxWidth: false,
minHeight: 150,
minWidth: 150,
modal: false,
posit... |
from nova import flags
from nova.openstack.common import cfg
from nova.openstack.common import log as logging
from nova.scheduler import filters
LOG = logging.getLogger(__name__)
cpu_allocation_ratio_opt = cfg.FloatOpt('cpu_allocation_ratio',
default=16.0,
help='Virtual CPU to Physical CPU allocation... |
namespace net {
// The MockSSPILibrary class is intended for unit tests which want to bypass
// the system SSPI library calls.
class MockSSPILibrary : public SSPILibrary {
public:
MockSSPILibrary();
virtual ~MockSSPILibrary();
// TODO(cbentzel): Only QuerySecurityPackageInfo and FreeContextBuffer
// ... |
Demo: [GersonLazaro.com](http://www.GersonLazaro.com)
Tema basado en [Casper](https://github.com/TryGhost/Casper) para [Ghost](http://github.com/tryghost/ghost/).
Para descargar, visita la pagina de [lanzamientos](https://github.com/GersonLazaro/forkper/releases/).
## Instalación
1. Descomprime el tema en la carpet... |
package org.eclipse.php.internal.core.typeinference;
import java.util.*;
import org.eclipse.dltk.ast.ASTNode;
import org.eclipse.dltk.ast.ASTVisitor;
import org.eclipse.dltk.ast.declarations.ModuleDeclaration;
import org.eclipse.dltk.ast.expressions.CallArgumentsList;
import org.eclipse.dltk.ast.expressions.Expressio... |
#ifndef QSCROLLER_P_H
#define QSCROLLER_P_H
//
// W A R N I N G
// -------------
//
// This file is not part of the Qt API. It exists purely as an
// implementation detail. This header file may change from version to
// version without notice, or even be removed.
//
// We mean it.
//
#include <QObject>
#include... |
/*===============================
= Choices =
===============================*/
.choices {
font-size: 16px;
position: relative;
margin-bottom: 24px; }
.choices:last-child {
margin-bottom: 0; }
.choices.is-disabled .choices__inner, .choices.is-disabled .choices__input {
background... |
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Text;
using Newtonsoft.Json.Utilities;
namespace Newtonsoft.Json
{
internal enum JsonContainerType
{
None = 0,
Object = 1,
Array = 2,
Constructor = 3
}
internal struct JsonPosition
... |
/*
High Contrast Inverted (white on black)
=============================================
* Color Scheme:
* white: #ffffff
* black: #000000
*/
/*
* General Styling
*/
.fl-theme-wb,
.fl-theme-wb *,
.fl-preview-theme.fl-theme-wb,
.fl-theme-bw.fl-inverted-color,
.fl-theme-bw .fl-inverted-color,
.fl-t... |
{
'name': 'Honduras - Accounting',
'version': '0.1',
'category': 'Localization/Account Charts',
'description': """
This is the base module to manage the accounting chart for Honduras.
====================================================================
Agrega una nomenclatura contable para Honduras... |
<!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_161) on Sun Sep 22 19:23:33 EDT 2019 -->
<title>sceneGraph.math.doubleV</title>
<meta name="date" content="2019-09-22">
<link rel="stylesheet" ... |
import {StaticProvider} from '@angular/core';
import {WebDriverAdapter} from '../web_driver_adapter';
/**
* Adapter for the selenium-webdriver.
*/
export class SeleniumWebDriverAdapter extends WebDriverAdapter {
static PROTRACTOR_PROVIDERS = <StaticProvider[]>[{
provide: WebDriverAdapter,
useFactory: (... |
class cMtlTex;
class cGroup;
class cObjLoader
{
private:
std::map<std::string, cMtlTex*> m_mapMtlTex;
public:
cObjLoader();
~cObjLoader();
void Load(std::vector<cGroup*>& vecGroup, std::string& sFolder, std::string& sFileName);
void LoadMtlLib(std::string& sFolder, std::string& sFileName);
};
|
// Copyright 2008 The Closure Library 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 requ... |
package io.hops.erasure_coding;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.FSDataInputStream;
import org.apache.hadoop.fs.FileStatus;
import org.apache.hadoop.fs.FileSystem;
import org.apache.hadoop.fs.... |
//// Copyright (c) Microsoft Corporation. All rights reserved
(function () {
"use strict";
var page = WinJS.UI.Pages.define("/html/setAccountPicture.html", {
ready: function (element, options) {
hideVisibleHolders();
document.getElementById("setImage").addEventListener("click",... |
require 'rubygems' if RUBY_VERSION < '1.9.0'
require 'sensu-plugin/metric/cli'
require 'memcached'
require 'socket'
class MemcachedGraphite < Sensu::Plugin::Metric::CLI::Graphite
option :host,
short: '-h HOST',
long: '--host HOST',
description: 'Memcached Host to connect to',
defa... |
var fso = WScript.CreateObject('Scripting.FileSystemObject');
var wscript_shell = WScript.CreateObject("WScript.Shell");
var args = WScript.Arguments;
// working dir
var ROOT = WScript.ScriptFullName.split('\\cordova\\lib\\build.js').join('');
// help/usage function
function Usage() {
Log("");
Log("Usage:... |
/* crypto/evp/m_md2.c */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
* This package is an SSL implementation written
* by Eric Young (eay@cryptsoft.com).
* The implementation was written so as to conform with Netscapes SSL.
*
* This library is free for commercial and non-c... |
/*var currentWindow = Ti.UI.currentWindow;
//This will be used in the future to select a gender/date
var pickMonth = Ti.UI.createPicker({ bottom:60, width:150 });
var month = [];
month.push(Titanium.UI.createPickerRow({title:'Jan'}));
month.push(Titanium.UI.createPickerRow({title:'Feb'}));
month.push(Titanium.UI.c... |
function safe_command {
local l_command=$1
local l_prefix=`date +'%H:%M:%S'`
echo "[$l_prefix] executing: $l_command";
eval $1
local l_result=$?
if [ "$l_result" -ne "0" ]; then
echo "ERROR: $l_command failed with $l_result"
exit $l_result;
fi
}
pwd=`pwd`
collectd_archive=$1
collectd_dir=$2
plug... |
<html>
<head>
<title>User agent detail - Mozilla/5.0 (Vodafone/1.0/LG-GS290/V10b Browser/Obigo-Q7.3 MMS/LG-MMS-V1.0/1.2 MediaPlayer/LGPlayer/1.0 Java/ASVM/1.1 Profile/MIDP-2.1 Configuration/CLDC-1.1)</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/css/mate... |
<?php
namespace FS\SolrBundle\DependencyInjection\Compiler;
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Reference;
use Symfony\Component\DependencyInjection\Exception\RuntimeException;
... |
(function() {
// Enable strict mode for EC5 compatible browsers
"use strict";
// Establish the root object, `window` in the browser, or `global` on the server.
var root = this;
// The top-level namespace. All public Springy classes and modules will
// be attached to this. Exported for both CommonJS and the br... |