text
stringlengths
3
1.05M
const fs = require('fs'); const path = require('path'); const {cyan, green, red} = require('kleur/colors'); const {log} = require('../common/logging'); const CONFIG_PATH = './performance/config.json'; const LOCAL_HOST_URL = 'http://localhost:8000/'; /** * Entry point for 'amp performance-urls' * Check if all localh...
package io.indexr.hive; import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.fs.FileSystem; import org.apache.hadoop.fs.Path; import org.apache.hadoop.hive.ql.io.CombineHiveInputFormat; import org.apache.hadoop.io.ArrayWritable; import org.apache.hadoop.mapred.FileInputFormat; import org.apache.hadoop...
// # Update Fixtures // This module handles updating fixtures. // This is done manually, through a series of files stored in an adjacent folder // E.g. if we update to version 004, all the tasks in /004/ are executed var sequence = require('../../../utils/sequence'), versioning = require('../../schema').vers...
import hashlib import logging import os import shutil import subprocess import tempfile try: from threading import Thread except ImportError: from dummy_threading import Thread from . import DistlibException from .compat import (HTTPBasicAuthHandler, Request, HTTPPasswordMgr, urlparse, bui...
require 'spec_helper_acceptance' describe 'concat function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do describe 'success' do it 'should concat one array to another' do pp = <<-EOS $output = concat(['1','2','3'],['4','5','6']) validate_array($output) if size($ou...
import { Algorithm } from "../Algorithm"; import * as WhatToMine from "../apis/whattomine"; import { logger } from "../logger"; // We convert IWhatToMineCoin to this export interface ICoin { displayName: string; names: string[]; // aliases abbreviation: string; id: number; algorithm: Algorithm; enabled: bo...
<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=0"> <title>test</title> <script src="../../../dist/sea.js"></script> </head> <body> <div id="out"></div> <script> // Clear preload // seajs.data.preload.length = 0 seajs.use(['.....
from .meta import get_proc_gen from .meta import get_dsids from .meta import proc_gen_from_file from .meta import sort_files_from_txt from .meta import _dsid_table from .meta import _systematic_trees from .meta import _systematic_ud_prefixes from .meta import _systematic_weights from .meta import _systematic_singles fr...
package org.jasig.portal.groups; /** * An interface for retrieving <code>IEntities</code>. * @author Dan Ellentuck * @version 1.0, 11/29/01 */ public interface IEntityStore { /** * @return org.jasig.portal.groups.IEntity * @param key java.lang.String - the entity's key * @param type java.lang.Class - the en...
<mvc:View xmlns="sap.m" xmlns:mvc="sap.ui.core.mvc" xmlns:core="sap.ui.core" controllerName="sap.ui.demokit.demoapps.controller.Root" displayBlock="true"> <App> <Page showHeader="false" enableScrolling="false"> <TileContainer id="tileContainer" tiles="{/allApps}"> <StandardTile ...
package validatingwebhookconfiguration import ( "context" "reflect" "k8s.io/apimachinery/pkg/runtime" "k8s.io/apimachinery/pkg/runtime/schema" "k8s.io/apimachinery/pkg/util/validation/field" genericapirequest "k8s.io/apiserver/pkg/endpoints/request" "k8s.io/apiserver/pkg/storage/names" "k8s.io/kubernetes/pk...
package org.elasticsearch.test.rest.parser; import org.elasticsearch.common.xcontent.XContentParser; import org.elasticsearch.test.rest.section.TestSection; import java.io.IOException; /** * Parser for a complete test section */ public class RestTestSectionParser implements RestTestFragmentParser<TestSection> { ...
#ifndef FileReaderLoader_h #define FileReaderLoader_h #include "core/fileapi/FileError.h" #include "core/loader/ThreadableLoaderClient.h" #include "platform/weborigin/KURL.h" #include "wtf/ArrayBuffer.h" #include "wtf/ArrayBufferBuilder.h" #include "wtf/Forward.h" #include "wtf/OwnPtr.h" #include "wtf/text/TextEncod...
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingBottom="@dimen/activity_vertical_margin" a...
package org.apache.cassandra.streaming; import java.io.File; import java.io.IOException; import java.io.OutputStream; import java.util.Collection; import com.ning.compress.lzf.LZFOutputStream; import org.apache.cassandra.io.sstable.Component; import org.apache.cassandra.io.sstable.format.SSTableReader; import org.a...
/** * Highcharts variwide module * * (c) 2010-2017 Torstein Honsi * * License: www.highcharts.com/license */ /** * To do: * - When X axis is not categorized, the scale should reflect how the z values * increase, like a horizontal stack. But then the actual X values aren't * reflected the the axis.. Shoul...
package fs import ( "io/ioutil" "os" "path/filepath" "strconv" "sync" "github.com/docker/libcontainer/cgroups" "github.com/docker/libcontainer/configs" ) var ( subsystems = map[string]subsystem{ "devices": &DevicesGroup{}, "memory": &MemoryGroup{}, "cpu": &CpuGroup{}, "cpuset": &Cpu...
/** * Converts an array to an observable sequence, using an optional scheduler to enumerate the array. * @deprecated use Observable.from or Observable.of * @param {Scheduler} [scheduler] Scheduler to run the enumeration of the input sequence on. * @returns {Observable} The observable sequence whose elements ...
module Fog module Compute class Google class Mock def list_region_operations(region) Fog::Mock.not_implemented end end class Real # https://developers.google.com/compute/docs/reference/latest/regionOperations def list_region_operations(region) ...
package io.cattle.platform.agent.server.connection; import io.cattle.platform.core.model.Agent; import java.io.IOException; public interface AgentConnectionFactory { AgentConnection createConnection(Agent agent) throws IOException; }
enum { PTMVPMatrix, PTNormalMatrix, PTLightModelAmbientColor, PTLight0Position, PTLight0DiffuseColor, PTNumUniforms }; @interface PTEffect () { GLint uniforms[PTNumUniforms]; } @property (strong, nonatomic, readwrite) GLKEffectPropertyTransform *transform; @property (strong, nonatomic, readw...
from __future__ import unicode_literals from django.db import models, migrations import audit_log.models.fields from django.conf import settings class Migration(migrations.Migration): dependencies = [ migrations.swappable_dependency(settings.AUTH_USER_MODEL), ("volunteers", "0001_initial"), ...
package ec2 import ( "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/client" "github.com/aws/aws-sdk-go/aws/client/metadata" "github.com/aws/aws-sdk-go/aws/request" "github.com/aws/aws-sdk-go/aws/signer/v4" "github.com/aws/aws-sdk-go/private/protocol/ec2query" ) // Amazon Elastic Compute Cloud (A...
package org.jetbrains.debugger.values; import com.intellij.util.ThreeState; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import org.jetbrains.concurrency.Promise; import org.jetbrains.debugger.Scope; public interface FunctionValue extends ObjectValue { /** * You must invok...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html lang="en-GB" xml:lang="en-GB" xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"/> <title>Statistics of Foreign in UD_Ita...
'use strict'; module.exports = function(grunt) { grunt.initConfig({ 'git-describe': { options: { }, 'run': {} }, closurecompiler: { minify: { requiresConfig: 'git-revision', files: { "gen/axs_testing.js": [ "./lib/closure-library/closure/go...
extern crate influent; use std::process::Command; use std::process::Stdio; use std::process::Child; use std::io::BufReader; use std::sync::Arc; use std::sync::Mutex; use std::io::BufRead; use std::thread; use std::time::Duration; use influent::create_client; use influent::client::Client; use influent::client::Credent...
from sys import version_info if version_info >= (2,6,0): def swig_import_helper(): from os.path import dirname import imp fp = None try: fp, pathname, description = imp.find_module('_csr', [dirname(__file__)]) except ImportError: import _csr ...
package bitmap import ( "github.com/radu-matei/azure-vhd-utils/vhdcore/bat" "github.com/radu-matei/azure-vhd-utils/vhdcore/reader" ) // Factory type is used to create BitMap instance by reading 'bitmap section' of a block. // type Factory struct { vhdReader *reader.VhdReader blockAllocationTable *bat.B...
import activate_venv from veevutils import banner import argparse import os import sys import glob import subprocess import textwrap def convertPDFs(source, dest, density=72): if not os.path.exists(source): raise IOError("Source folder does not exist!") if not os.path.exists(dest): os.mkdir(dest) files = glob.gl...
require('../AsyncRPCConnectionPool'); require('consoloid-framework/Consoloid/Test/UnitTest'); describeUnitTest('Consoloid.Server.AsyncRPCConnectionPool', function() { var pool, io; beforeEach(function() { socketMock = { emit: sinon.spy(), on: sinon.spy() }; io = { sockets: {...
<?php class UserEvents { const SUCCESS_ACTIVATE_ACCOUNT = 'user.success.activate'; const FAILURE_ACTIVATE_ACCOUNT = 'user.failure.activate'; const SUCCESS_EMAIL_CHANGE = 'user.success.email.change'; const SUCCESS_EMAIL_CONFIRM = 'user.success.email.confirm'; const FAILURE_EMAIL_CONFIRM = 'user....
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>queryID property - KrpcPing class - hetimatorrent library - Dart API</title> <!-- required because all the ...
/*global describe, it:true*/ 'use strict'; var chai = require('chai'); var expect = chai.expect; // var sinon = require('sinon'); //doesnt appear to browserify? using hosted version var SerialPortFactory = require('../'); SerialPortFactory.extensionId = 'glbcoioheoliejkddbfabekjgmebfbog'; var SerialPort = SerialPortF...
<?php /** * @see Zend_Service_Console_Command */ // require_once 'Zend/Service/Console/Command.php'; /** * @see Zend_Service_WindowsAzure_Management_Client */ // require_once 'Zend/Service/WindowsAzure/Management/Client.php'; /** * Service commands * * @category Zend * @package Zend_Service_WindowsAzure_Co...
package volumetypes import ( "github.com/mitchellh/mapstructure" os "github.com/rackspace/gophercloud/openstack/blockstorage/v1/volumetypes" "github.com/rackspace/gophercloud/pagination" ) type VolumeType os.VolumeType type GetResult struct { os.GetResult } // Extract will get the Volume Type struct out of the ...
<?php /** * COciTableSchema represents the metadata for an Oracle table. * * @author Ricardo Grana <rickgrana@yahoo.com.br> * @package system.db.schema.oci */ class COciTableSchema extends CDbTableSchema { /** * @var string name of the schema (database) that this table belongs to. * Defaults to null, meanin...
#pragma once #include <stdint.h> #include <stdlib.h> #include <unistd.h> #include <upm.h> #include <upm_utilities.h> #include <mraa/gpio.h> #ifdef __cplusplus extern "C" { #endif /** * @file wfs.h * @library wfs * @brief WFS (Water Flow Sensor) * */ /** * Device context ...
C# bindings for https://github.com/mikepenz/Materialize
<?php namespace Sonata\CustomerBundle\Entity; use Doctrine\Common\Collections\ArrayCollection; use FOS\UserBundle\Model\UserInterface; use Sonata\Component\Customer\AddressInterface; use Sonata\Component\Customer\CustomerInterface; /** * Sonata\CustomerBundle\Entity\BaseCustomer. */ abstract class BaseCustomer i...
/*! UIkit 2.14.0 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ (function(addon) { var component; if (jQuery && UIkit) { component = addon(jQuery, UIkit); } if (typeof define == "function" && define.amd) { define("uikit-slideshow", ["uikit"], function() { r...
//The "View" for an Enemy. This MonoBehaviour is attached to the enemy prefab inside Unity. using System; using UnityEngine; using strange.extensions.mediation.impl; using strange.extensions.signal.impl; using System.Collections; namespace strange.examples.strangerocks.game { public class EnemyView : View { [Inj...
namespace boost { template<class Generator> class generator_iterator : public iterator_facade< generator_iterator<Generator> , typename Generator::result_type , single_pass_traversal_tag , typename Generator::result_type const& > { typedef iterator_facade< generator_iterator...
package com.google.gdata.data.photos.impl; import com.google.gdata.data.ExtensionPoint; import com.google.gdata.data.ExtensionProfile; import com.google.gdata.data.geo.Box; import com.google.gdata.data.geo.Point; import com.google.gdata.data.geo.impl.BoxDataImpl; import com.google.gdata.data.geo.impl.PointDataImpl;...
if(typeof(ss) == 'undefined' || typeof(ss.i18n) == 'undefined') { if(typeof(console) != 'undefined') console.error('Class ss.i18n not defined'); } else { ss.i18n.addDictionary('pl', { "CMSMAIN.SELECTONEPAGE": "Please select at least one page", "CMSMAIN.BATCH_UNPUBLISH_PROMPT": "You have {num} page(s) selected...
/* This Source Code Form is subject to the terms of the MIT license * If a copy of the MIT license was not distributed with this file, you can * obtain one at https://raw.github.com/mozilla/butter/master/LICENSE */ ( function( Butter ) { document.addEventListener( "DOMContentLoaded", function() { Butter.init({...
/*global define, describe, it, expect*/ define([ "CanvasShapes" ], function( CanvasShapes ) { describe('CanvasShapes.Shape', function () { describe('instantiating', function () { it('cannot instantiate an interface', function () { var temp = new CanvasShapes.Error(801...
<!doctype html> <!-- Copyright (c) 2014 The Polymer Project Authors. All rights reserved. This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt The complete set of contributors may be found at...
#ifdef _ENABLE_TRACE_LOCKS #pragma warning(disable: 4786) #include <map> inline bool TCObjectLock_EnableTraceLocks(const char* pszClassName) { // This is not currenlty being used, due to the _ENABLE_TRACE_LOCKS // directive not being defined, but it really appears to be quite // thr...
toGeoJSON = (function() { 'use strict'; var removeSpace = (/\s*/g), trimSpace = (/^\s*|\s*$/g), splitSpace = (/\s+/); // generate a short, numeric hash of a string function okhash(x) { if (!x || !x.length) return 0; for (var i = 0, h = 0; i < x.length; i++) { ...
import java.util.*; class A<K, V> { public Iterator<Map.Entry<K, V>> iterator(long revision) { return new MyIterator<>(); } private static class MyIterator<K, V> implements Iterator<Map.Entry<K, V>> { public boolean hasNext() { return false; } public Map.Entry<...
SublimeLinter-html-tidy ========================= [![Build Status](https://travis-ci.org/SublimeLinter/SublimeLinter-html-tidy.svg?branch=master)](https://travis-ci.org/SublimeLinter/SublimeLinter-html-tidy) This linter plugin for [SublimeLinter](http://sublimelinter.readthedocs.org) provides an interface to tidy (ei...
/* ---------------------------------------------------------------------------- NOTE: If you edit this file, you should make sure that the CSS rules for buttons in the following files are updated. * jquery-ui-dialog.css * editor.css WordPress-style Buttons ======================= Create a button by adding the `.butt...
<?php namespace Embed\Controller\Component; use Cake\Controller\Component; use Embed\Embed; /** * Gets the info from an url */ class EmbedComponent extends Component { public function getBasicInfomation($url){ $info = Embed::create($url); $BasicInformation = Array ( "author" ...
package features import ( "fmt" "os" "os/exec" "path/filepath" "strings" "k8s.io/kubernetes/pkg/util/sets" "k8s.io/kubernetes/pkg/util/yaml" "github.com/golang/glog" "github.com/spf13/cobra" ) const ( ownerFilename = "OWNERS" // file which contains owners and assignees // RepoFeatureName is how mungers...
!function(e){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=e();else if("function"==typeof define&&define.amd)define([],e);else{var f;"undefined"!=typeof window?f=window:"undefined"!=typeof global?f=global:"undefined"!=typeof self&&(f=self),f.ReactModal=e()}}(function(){var define,module,exports...
FROM node:0.12-onbuild MAINTAINER SD Elements ENV LCB_DATABASE_URI mongodb://db/letschat ENV LCB_HTTP_HOST 0.0.0.0 RUN apt-get update RUN apt-get install -y libkrb5-dev RUN npm install lets-chat-ldap lets-chat-kerberos lets-chat-s3 RUN groupadd -r node \ && useradd -r -g node node \ && chown node:node uploads USER...
export default intersectCircle; /** * @param node * @param rx * @param point */ declare function intersectCircle(node: any, rx: any, point: any): { x: any; y: any; };
<?xml version="1.0" ?><!DOCTYPE TS><TS language="vi" version="2.1"> <context> <name>AboutDialog</name> <message> <location filename="../forms/aboutdialog.ui" line="+14"/> <source>About APEXcoin</source> <translation type="unfinished"/> </message> <message> <location line=...
namespace Sass { namespace Util { using std::string; string normalize_underscores(const string& str) { string normalized = str; for(size_t i = 0, L = normalized.length(); i < L; ++i) { if(normalized[i] == '_') { normalized[i] = '-'; } } return normalized;...
using System; using System.Collections.Generic; using System.Configuration; using System.Linq; using System.Reflection; using System.Text; using System.Threading.Tasks; namespace acPlugins4net.configuration { public class AppConfigConfigurator : IConfigManager { public string GetSetting(st...
package us.dot.its.jpo.ode.plugin.j2735.oss; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertTrue; import java.math.BigDecimal; import java.util.List; import org.junit.Test; import us.dot.its.jpo.ode.j2735.dsrc.OffsetLL_B18; import us.dot...
from __future__ import unicode_literals from django.contrib.sites.models import Site from django.core.urlresolvers import get_script_prefix from django.db import models from django.utils.encoding import iri_to_uri, python_2_unicode_compatible from django.utils.translation import ugettext_lazy as _ @python_2_unicode_...
package org.apache.pig.impl.plan; import java.util.ArrayList; import java.util.Collection; import java.util.HashSet; import java.util.List; import java.util.Set; import org.apache.pig.impl.util.Utils; /** * ReverseDependencyOrderWalker traverses the graph in such a way that no node is visited * before all the no...
<!DOCTYPE html> <html class="no-js" lang="zh-Hans"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content="p5.js a JS client-side library for creating graphic and interac...
@interface YR_PersonalPageHomeProfileCell : YR_BaseTableViewCell @property (weak, nonatomic) IBOutlet UILabel *nameLabel; @property (weak, nonatomic) IBOutlet UILabel *followLabel; @property (weak, nonatomic) IBOutlet UILabel *descLabel; @property (weak, nonatomic) IBOutlet UILabel *locationLabel; @property (weak, non...
namespace Kvasir { //Secure Real Time Clock namespace RtcTsr{ ///<RTC Time Seconds Register using Addr = Register::Address<0x4003d000,0x00000000,0x00000000,unsigned>; ///Time Seconds Register constexpr Register::FieldLocation<Addr,Register::maskFromRange(31,0),Register::ReadWriteAccess,un...
/* IBM_PROLOG_BEGIN_TAG */ /* This is an automatically generated prolog. */ /* */ /* $Source: src/kernel/taskmgr.C $ */ /* ...
from django.apps import apps from django.conf import settings from django.core.management import call_command from django.db.utils import DataError from django.test import TestCase, override_settings from resolwe.flow.exceptions import SlugError # Workaround for false positive warnings in pylint. # TODO: Can be remov...
export { DataSet32 as default } from "../../";
package org.apache.curator.framework.recipes.queue; import org.apache.curator.framework.listen.ListenerContainer; import java.io.Closeable; import java.util.concurrent.TimeUnit; public interface QueueBase<T> extends Closeable { /** * Start the queue. No other methods work until this is called * * ...
// .NAME vtkAngleRepresentation3D - represent the vtkAngleWidget // .SECTION Description // The vtkAngleRepresentation3D is a representation for the // vtkAngleWidget. This representation consists of two rays and three // vtkHandleRepresentations to place and manipulate the three points defining // the angle represent...
package com.ncode.android.apps.schedo.io; import android.content.ContentProviderOperation; import android.content.Context; import android.graphics.Color; import android.net.Uri; import com.ncode.android.apps.schedo.io.model.Tag; import com.ncode.android.apps.schedo.provider.ScheduleContract; import com.google.gson....
package org.elasticsearch.index.cache.bitset; import org.elasticsearch.common.metrics.CounterMetric; import org.elasticsearch.index.IndexSettings; import org.elasticsearch.index.shard.AbstractIndexShardComponent; import org.elasticsearch.index.shard.ShardId; /** */ public class ShardBitsetFilterCache extends Abstr...
package org.apache.ignite.internal.processors.cache.persistence.checkpoint; import java.util.ArrayList; import java.util.List; import java.util.Map; import java.util.UUID; import java.util.concurrent.LinkedBlockingQueue; import java.util.concurrent.RejectedExecutionException; import java.util.concurrent.TimeUnit; im...
' Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. Imports System.Text Imports System.Threading Imports System.Globalization Imports Microsoft.CodeAnalysis.Text Imports Microsoft.CodeAnalysis.VisualBasic.Symbo...
module Fog module Compute class OpenStack class Real # Get a vnc console for an instance. # # === Parameters # * server_id <~String> - The ID of the server. # * console_type <~String> - Type of vnc console to get ('novnc' or 'xvpvnc'). # === Returns # ...
package org.apache.hadoop.mapreduce.lib.aggregate; import java.util.ArrayList; import java.util.Map.Entry; import org.apache.hadoop.classification.InterfaceAudience; import org.apache.hadoop.classification.InterfaceStability; import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.io.Text; /** * Thi...
package org.mockito.internal.matchers; import org.mockito.ArgumentMatcher; import org.mockito.internal.debugging.LocationImpl; import org.mockito.invocation.Location; @SuppressWarnings("unchecked") public class LocalizedMatcher { private final ArgumentMatcher matcher; private final Location location; p...
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using System.Web.Routing; namespace WNGSequenceCalculator { public class RouteConfig { public static void RegisterRoutes ( RouteCollection routes ) { routes.IgnoreRoute( "{res...
package com.google.security.zynamics.reil.algorithms.mono; public class WalkInformation { private final InstructionGraphEdge m_edge; public WalkInformation(final InstructionGraphEdge edge) { m_edge = edge; } public InstructionGraphEdge getEdge() { return m_edge; } }
package OptimizationTests.ConstantCalculationSinking.DoWhileLoopIntLong_002; /** * * Minor variation of simple do-while loop: * Iterator is not 1 * It's not so clear if optimization should be applied if the expression is not in the form v += x but v = v + x or v = x + v + y; * No sinking expected for expression that...
* * * de: "Hadi Partovi (Code.org) [&#104;&#x61;&#x64;&#105;&#x5f;&#112;&#x61;&#x72;&#116;&#x6f;&#118;&#x69;&#x40;&#99;&#x6f;&#100;&#x65;&#x2e;&#111;&#x72;&#103;](&#109;&#x61;&#105;&#x6c;&#x74;&#111;&#x3a;&#104;&#x61;&#x64;&#105;&#x5f;&#112;&#x61;&#x72;&#116;&#x6f;&#118;&#x69;&#x40;&#99;&#x6f;&#100;&#x65;&#x2e;&#111;&...
// Copyright 2015 Adamantworks. 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 applic...
import { Component, OnInit, ViewChild, ElementRef } from "@angular/core"; import { Router, NavigationExtras, ActivatedRoute } from "@angular/router"; import { MatDialog } from "@angular/material/dialog"; import { MatPaginator } from "@angular/material/paginator"; import { MatRadioChange } from "@angular/material/...
<!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_232) on Tue Sep 15 08:53:08 UTC 2020 --> <title>Uses of Class org.springframework.web.socket.config.WebSocketMessageBrokerStats (Spring Framewo...
package Win32::Exe::Manifest; ############################################################################# # References # http://msdn.microsoft.com/en-us/library/dd371711(VS.85).aspx # http://msdn.microsoft.com/en-us/library/aa374191(VS.85).aspx # http://msdn.microsoft.com/en-us/library/aa374219(v=VS.85).aspx # http:...
package com.intellij.remoteServer.agent.impl; import com.intellij.openapi.diagnostic.Logger; import com.intellij.util.containers.hash.HashSet; import org.jetbrains.annotations.Nullable; import java.lang.reflect.*; import java.net.URL; import java.net.URLClassLoader; import java.util.Arrays; import java.util.Set; /*...
PXRRPAD ;ISL/PKR,ALB/Zoltan - Driver for PCE Patient Activity Reports.;9/22/98 ;;1.0;PCE PATIENT CARE ENCOUNTER;**18,61**;Aug 12, 1996 MAIN ; N PXRRPAJB,PXRRPAST,PXRRIOD,PXRROPT,PXRRQUE,PXRRXTMP S PXRRXTMP=$$PXRRXTMP^PXRRWLD("PXRRPA") S ^XTMP(PXRRXTMP,0)=$$FMADD^XLFDT(DT,7)_U_DT_U_"PXRR Patient Activity" ; ;Estab...
namespace ArgentPonyWarcraftClient; /// <summary> /// A guild's achievements. /// </summary> public record GuildAchievements { /// <summary> /// Gets links for the guild's achievements. /// </summary> [JsonPropertyName("_links")] public Links Links { get; init; } /// <summary> /// Gets a ...
var selectedOrganisationUnit = null; function organisationUnitSelected( organisationUnits ) { selectedOrganisationUnit = organisationUnits[0]; } function validateRunAnalyseData() { if ( analyseDataInvalid() ) { $( '#startButton').attr( 'disabled', true ); $.getJSON( "validateRunAnalysis.a...
UPGRADE FROM 2.x to 3.0 ======================= ### ClassLoader * The `UniversalClassLoader` class has been removed in favor of `ClassLoader`. The only difference is that some method names are different: | Old name | New name | -------- | --- | `registerNamespaces()` | `addPrefixes()` | `registerPref...
<?php $this_page = "privacy"; include_once "../../includes/easyparliament/init.php"; $PAGE->page_start(); $PAGE->stripe_start(); ?> <p>Our Privacy Policy is very simple:</p> <ol> <li>We guarantee we will not sell or distribute any personal information you share with us</li> <li>We will not be sending you unsolici...
@charset "UTF-8"; .has-switch { display: inline-block; cursor: pointer; border-radius: 4px; border: 1px solid; border-color: #cccccc; position: relative; text-align: left; overflow: hidden; line-height: 8px; -webkit-user-select: none; -moz-user-select: none; -ms-user-sel...
try: from django.utils.encoding import force_unicode as force_text except (NameError, ImportError): from django.utils.encoding import force_text from django.utils.encoding import python_2_unicode_compatible from django.contrib.gis.db import models from django.contrib.gis.geos import Point from .conf import set...
package io.fabric8.arquillian.kubernetes; import io.fabric8.utils.Strings; import org.jboss.arquillian.config.descriptor.api.ArquillianDescriptor; import org.jboss.arquillian.core.api.InstanceProducer; import org.jboss.arquillian.core.api.annotation.ApplicationScoped; import org.jboss.arquillian.core.api.annotation.I...
namespace { // Converts the argument to an 8-bit unsigned value by clamping to the range // 0-255. inline unsigned char ClampTo8(int a) { if (static_cast<unsigned>(a) < 256) { return a; // Avoid the extra check in the common case. } if (a < 0) { return 0; ...
@class NTJsonModel; typedef enum { NTJsonPropTypeString = 1, NTJsonPropTypeInt = 2, NTJsonPropTypeBool = 3, NTJsonPropTypeFloat = 4, NTJsonPropTypeDouble = 5, NTJsonPropTypeLongLong = 6, NTJsonPropTypeModel = 7, NTJsonPropTypeModelAr...
{% extends 'base.html' %} {% block head_title %} List Izin Penelitian || {{ block.super }} {% endblock head_title %} {% block content %} <ul> {% for obj in object_list %} <li> {{ obj.mahasiswa.nama }} {{ obj.mahasiswa.nim }} {{ obj.timestamp }} {{ obj.updated }} </li> ...
/*! * Qoopido.js library v3.5.4, 2014-9-30 * https://github.com/dlueth/qoopido.js * (c) 2014 Dirk Lueth * Dual licensed under MIT and GPL */ !function(e){window.qoopido.register("jquery/function/prefetch",e,["jquery"])}(function(e,r,n,t,i){"use strict";var u=e.jquery||i.jQuery,f=u("head"),o=[];return u.prefetch=functio...