text
stringlengths
3
1.05M
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="zh"> <head> <!-- Generated by javadoc (version 1.7.0_45) on Fri Nov 06 18:17:48 CST 2015 --> <meta http-equiv="Content-Type" content="text/html" charset="UTF-8"> <title>Attributes (jsoup 1...
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="de"> <head> <!-- Generated by javadoc (version 1.7.0_79) on Wed Jul 31 20:05:53 CEST 2019 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Class org.j...
<?php /** * Inline Runtime Methods render, setSourceByUid, setupSubTemplate * * @package Smarty * @subpackage PluginsInternal * @author Uwe Tews * **/ class Smarty_Internal_Runtime_CacheModify { /** * check client side cache * * @param \Smarty_Template_Cached $cached * @param \S...
#ifndef SkEmbossMaskFilter_DEFINED #define SkEmbossMaskFilter_DEFINED #include "SkMaskFilter.h" /** \class SkEmbossMaskFilter This mask filter creates a 3D emboss look, by specifying a light and blur amount. */ class SkEmbossMaskFilter : public SkMaskFilter { public: struct Light { SkScalar fD...
package io.datarouter.model.serialize.fielder; import java.util.Collection; import java.util.List; import java.util.Map; import java.util.Optional; import io.datarouter.model.databean.Databean; import io.datarouter.model.field.Field; import io.datarouter.model.key.primary.PrimaryKey; import io.datarouter.model.seria...
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. namespace PerfViewJS { public sealed class StackEventTypeInfo { public StackEventTypeInfo(int eventId, string eventName, int eventCount, in...
package org.apache.flink.metrics.util; import org.apache.flink.metrics.Counter; /** A dummy {@link Counter} implementation. */ public class TestCounter implements Counter { private long countValue; public TestCounter() { this.countValue = 0; } public TestCounter(long countValue) { ...
package eu.codesketch.adam.rest.domain.model; import java.util.Arrays; import java.util.Collections; import java.util.List; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; /** * V.O. abstract an...
var x = 10; switch (x) { case 1: case 2: default: // No issues. break; default: // Error; second 'default' clause. default: // Error; third 'default' clause. case 3: x *= x; } switch (x) { default: // No issues. break; case 100: switch (x * x...
'use strict'; var SyntheticUIEvent = require('./SyntheticUIEvent'); var getEventModifierState = require('./getEventModifierState'); /** * @interface TouchEvent * @see http://www.w3.org/TR/touch-events/ */ var TouchEventInterface = { touches: null, targetTouches: null, changedTouches: null, altKey: null,...
<div layout-gt-md="row"> <panel-widget flex title="Site visitors" template="app/views/partials/visitors.html" class="fixed-height-widget"></panel-widget> <panel-widget flex title="Warnings" template="app/views/partials/warnings.html" class="fixed-height-widget"></panel-widget> <panel-widget flex title="Memory loa...
/** * Test store addons */ import expect from 'expect'; import configureStore from '../store'; // eslint-disable-line import { browserHistory } from 'react-router'; describe('configureStore', () => { let store; before(() => { store = configureStore({}, browserHistory); }); describe('asyncReducers', ()...
; (function() { ace.require(["ace/snippets/json"], function(m) { if (typeof module == "object" && typeof exports == "object" && module) { module.exports = m; } }); })(); ...
<?php namespace Zend\Filter; use Traversable; class PregReplace extends AbstractFilter { protected $options = array( 'pattern' => null, 'replacement' => '', ); /** * Constructor * Supported options are * 'pattern' => matching pattern * 'replacement' =...
id: 100 title: Switching UIViews on Orientation change with an animation date: 2011-02-19T17:48:20+00:00 author: acidjunk layout: post guid: http://www.renedohmen.nl/blog/?p=100 permalink: /2011/02/switching-views-on-orientation-change/ categories: - Computerz --- For our [Iscore Card App](http://itunes.apple.com/us/...
<?php namespace Symfony\Component\Validator; /** * @author Bernhard Schussek <bschussek@gmail.com> */ interface ConstraintValidatorInterface { /** * Initializes the constraint validator. * * @param ExecutionContextInterface $context The current validation context */ public function ini...
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis.Editor.Shared.Utilities; using Microsoft.CodeAnalysis.Shared.Extensions; namespace Microsoft.Code...
install: go install test: install generate-test-pbs go test generate-test-pbs: make install make -C testdata protoc-min-version --version="3.0.0" --proto_path=.:../../../../ --gogo_out=. proto3_proto/proto3.proto make
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8"> <title>finishLastActivity</title> <link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script> <script>const storage = localStorage.getItem("dokka-dark...
define({ root: ({ exportCsv: "Export CSV", apply: "Apply", renderer: "Renderer", publish: "Publish", bands: "Bands", close: "Close", root: "Root", tags: "Tags", result: "result", next: "Next", description: "Description", ...
package com.caffinc.jaggr.utils; import java.util.Iterator; import java.util.Map; import java.util.NoSuchElementException; /** * Converts any Iterator into a JSON Iterator for <code>jaggr</code> * * @author Sriram * @since 11/28/2016 */ public abstract class JsonIterator<T> implements Iterator<Map<String, Object...
<html> <head> <title>libvorbis - function - vorbis_analysis_blockout</title> <link rel=stylesheet href="style.css" type="text/css"> </head> <body bgcolor=white text=black link="#5555ff" alink="#5555ff" vlink="#5555ff"> <table border=0 width=100%> <tr> <td><p class=tiny>libvorbis documentation</p></td> <td align=right...
from django.db import models from django.utils.encoding import python_2_unicode_compatible @python_2_unicode_compatible class Article(models.Model): headline = models.CharField(max_length=100, default='Default headline') pub_date = models.DateTimeField() def __str__(self): return self.headline ...
namespace content { class RenderMediaLogTest : public testing::Test { public: RenderMediaLogTest() : log_(new RenderMediaLog()), tick_clock_(new base::SimpleTestTickClock()), task_runner_(new base::TestMockTimeTaskRunner()) { log_->SetTickClockForTesting(scoped_ptr<base::TickClock>(tick_cl...
[José M. Rodríguez](https://github.com/Jmrodriguez90) Virtualización ligera, usando contenedores: Ejercicio 12 ====================================================================== 1. Crear una imagen con las herramientas necesarias para el proyecto de la asignatura sobre un sistema operativo de tu elección. -- * ...
// +build !ignore_autogenerated // Code generated by conversion-gen. DO NOT EDIT. package v1alpha1 import ( unsafe "unsafe" v1 "k8s.io/api/core/v1" conversion "k8s.io/apimachinery/pkg/conversion" runtime "k8s.io/apimachinery/pkg/runtime" resourcequota "k8s.io/kubernetes/plugin/pkg/admission/resourcequota/api...
package org.apereo.portal.portlets.statistics; import com.google.visualization.datasource.datatable.ColumnDescription; import com.google.visualization.datasource.datatable.value.ValueType; import java.util.ArrayList; import java.util.List; import org.springframework.stereotype.Component; /** * Create statistics rep...
<?php namespace test\ns1; function strlen($x) { return __FUNCTION__; } echo \strlen("Hello"),"\n";
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>CSS Layout practice1</title> <link rel="stylesheet" type="text/css" href="style.css"> </head> <body> <div class="...
from __future__ import absolute_import from __future__ import print_function from __future__ import unicode_literals import io import platform import sys import unittest import mock from apache_beam.testing.test_pipeline import TestPipeline from apache_beam.testing.util import assert_that from apache_beam.testing.ut...
import re from streamlink.plugin import Plugin from streamlink.plugin.plugin import parse_url_params from streamlink.stream import AkamaiHDStream from streamlink.utils import update_scheme class AkamaiHDPlugin(Plugin): _url_re = re.compile(r"akamaihd://(.+)") @classmethod def can_handle_url(cls, url): ...
from importlib import _bootstrap from importlib import machinery from .. import util from . import util as import_util import imp import os import sys import tempfile from test import support from types import MethodType import unittest import warnings class FinderTests(unittest.TestCase): """Tests for PathFinde...
from __future__ import absolute_import import logging from django.conf import settings from django.utils.translation import ugettext as _ from cinderclient.v1 import client as cinder_client from novaclient.v1_1 import client as nova_client from novaclient.v1_1 import security_group_rules as nova_rules from novaclie...
<?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" > <include android:id="@+id/top" layout="@layout/colorstrip" /> <vie...
. "${TRAVIS_BUILD_DIR}/ci/travis/helpers.sh" header 'Running before_script.sh...' # work around travis osx bug # https://github.com/travis-ci/travis-ci/issues/6307#issuecomment-233315824 run rvm get head # see https://github.com/travis-ci/travis-ci/issues/2666 run export BRANCH_COMMIT="${TRAVIS_COMMIT_RANGE##*.}" ru...
// Copyright (c) 2012 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. #ifndef CHROME_BROWSER_MEDIA_GALLERIES_MEDIA_GALLERIES_PREFERENCES_H_ #define CHROME_BROWSER_MEDIA_GALLERIES_MEDIA_GALLERIES_PREFERENCES_H_ #include ...
***************** Beyond the Basics ***************** | The voyage of discovery is not in seeking new landscapes but in having | new eyes. | --- *Marcel Proust* | Discovery is seeing what everyone else has seen and thinking what no | one else has thought. | --- *Albert Szent-Gyorgi* Iterating over...
package http import ( "encoding/json" "errors" "fmt" "io" "io/ioutil" "net/http" "net/url" "reflect" "strconv" "strings" cmds "github.com/ipfs/go-ipfs/commands" config "github.com/ipfs/go-ipfs/repo/config" context "github.com/ipfs/go-ipfs/Godeps/_workspace/src/golang.org/x/net/context" ) const ( ApiUr...
package uk.ac.cam.cl.dtg.picky.dataset; import java.io.DataInputStream; import java.io.DataOutputStream; import java.io.IOException; import uk.ac.cam.cl.dtg.picky.util.IO; import com.google.common.base.Preconditions; import de.ecclesia.kipeto.common.util.Assert; public class Chunk { private static final byte C...
// Copyright (C) 2014 The Android Open Source Project // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable ...
namespace SatelliteService.Contracts { public interface IPackageRepositoryFactory { IPackageRepository Create(string path); } }
package de.lessvoid.nifty.examples.hint; import de.lessvoid.nifty.Nifty; import de.lessvoid.nifty.examples.LwjglInitHelper; import de.lessvoid.nifty.renderer.lwjgl.render.LwjglRenderDevice; import de.lessvoid.nifty.sound.openal.OpenALSoundDevice; import de.lessvoid.nifty.spi.time.impl.AccurateTimeProvider; pu...
namespace net { namespace { class ReportingEndpointManagerImpl : public ReportingEndpointManager { public: ReportingEndpointManagerImpl(const ReportingPolicy* policy, const base::TickClock* tick_clock, const ReportingDelegate* delegate, ...
class Odesk < Cask version 'latest' sha256 :no_check url 'https://www.odesk.com/downloads/mac/minor/oDeskTeam.dmg' homepage 'https://www.odesk.com/' link 'oDesk Team.app' end
<template name="unsubscribe"> <div class="grid-small grid-block dialog admin"> <p>{{unsubscribed}}</p> </div> </template>
/** * The examples provided by Facebook are for non-commercial testing and * evaluation purposes only. * * Facebook reserves all rights not expressly granted. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, ...
package org.apache.camel.processor; import org.apache.camel.ContextTestSupport; import org.apache.camel.builder.RouteBuilder; import org.apache.camel.component.direct.DirectComponent; import org.apache.camel.component.mock.MockEndpoint; import org.apache.camel.component.properties.PropertiesComponent; import org.juni...
package endpoints import ( "path" "time" "github.com/emicklei/go-restful" "k8s.io/apimachinery/pkg/api/meta" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime" "k8s.io/apimachinery/pkg/runtime/schema" utilerrors "k8s.io/apimachinery/pkg/util/errors" "k8s.io/apiserver/pkg/admis...
/////////////////////////////////////////////////////////////////////// // File: lstm.cpp // Description: Long-term-short-term-memory Recurrent neural network. // Author: Ray Smith // // (C) Copyright 2013, Google Inc. // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use thi...
<?php /** * CCacheHttpSession implements a session component using cache as storage medium. * * The cache being used can be any cache application component implementing {@link ICache} interface. * The ID of the cache application component is specified via {@link cacheID}, which defaults to 'cache'. * * Beware,...
Meteor.startup(function() { RocketChat.models.Rooms.tryEnsureIndex({ code: 1 }); RocketChat.models.Rooms.tryEnsureIndex({ open: 1 }, { sparse: 1 }); });
package org.uberfire.ext.wires.core.trees.client.layout.treelayout; import org.uberfire.commons.validation.PortablePreconditions; /** * Specify a {@link Configuration} through configurable parameters, or falling * back to some frequently used defaults. * @param <TreeNode> <p/> * <p/> * Adapted from https://code...
// Protocol Buffers - Google's data interchange format // Copyright 2008 Google Inc. All rights reserved. // http://code.google.com/p/protobuf/ // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistri...
using FluentMigrator.Infrastructure; namespace FluentMigrator.Builders.Delete.DefaultConstraint { public interface IDeleteDefaultConstraintOnColumnSyntax : IFluentSyntax { void OnColumn(string columnName); } }
package org.apache.camel.component.cxf.wsa; import org.springframework.test.context.ContextConfiguration; @ContextConfiguration public class WSAddressingCXFMSGTest extends WSAddressingTest { }
import HouseKeeper import Test.Hspec import Data.Time (TimeZone, UTCTime, getCurrentTime, getCurrentTimeZone, defaultTimeLocale, parseTimeOrError) thirtyDaysPastInTest :: String -> IO String thirtyDaysPastInTest timeStr = do zone <- getCurrentTimeZone let utc = parseTimeOrError ...
/** * */ package uk.co.jemos.podam.common; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Annotation used to customise min and max values on a long type a...
from django.contrib import admin from django.contrib.auth.admin import UserAdmin from django.contrib.auth.models import User from flexselect import FlexSelectWidget from protocolle.core.models import Grupo from protocolle.auxiliar.models import (Instituicao, Pessoa, Setor, Inst...
<?php namespace App\Http\Controllers; use App\Services\Ranking; use App\Services\Slack; use App\SlackProp; class DashboardController extends Controller { public function index() { $ranking = Ranking::getRanking(); $props = SlackProp::query() ->orderBy('created_at', 'DESC') ...
use std::fmt; use std::str::FromStr; use std::convert::AsRef; use error::Error; use self::Method::{Options, Get, Post, Put, Delete, Head, Trace, Connect, Patch, Extension}; #[cfg(feature = "serde-serialization")] use serde::{Deserialize, Deserializer, Serialize, Serializer}; /// The Request Method...
<?php namespace spec\Sylius\Bundle\InventoryBundle\Validator\Constraints; use PhpSpec\ObjectBehavior; use Symfony\Component\Validator\Constraint; final class InStockSpec extends ObjectBehavior { function it_is_initializable() { $this->shouldHaveType('Sylius\Bundle\InventoryBundle\Validator\Constrai...
// Set the object as the module exports module.exports = { /* Name log * Purpose To log a message to the browsers console. * @params {string} message The message to be output. * {string} sEvent The type of message. */ log: function(message...
package org.apache.bookkeeper.test; import java.io.IOException; import java.nio.ByteBuffer; import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; import java.util.Enumeration; import java.util.Random; import java.util.Set; import org.apache.bookkeeper.client.AsyncCallback.AddCallback; im...
// See docs in ../ops/nn_ops.cc. #define USE_EIGEN_TENSOR #define EIGEN_USE_THREADS #include "tensorflow/core/kernels/conv_grad_ops.h" #include <algorithm> #include <vector> #include "tensorflow/core/framework/numeric_op.h" #include "tensorflow/core/framework/op_kernel.h" #include "tensorflow/core/framework/regis...
class Run attr_accessor :name, :prop_id, :size, :track_type, :location, :lat, :lon @@farewell = ["Have a nice day!", "Take care of yourself!", "You'll never regret some good excercise!", "Have fun!", "Thanks for checking us out!", "Keep running, swimming and hiking!", ":)"] @@all = [] @@parks = [] def initia...
wicket-ear: Wicket Framework used in a WAR inside an EAR. ========================================================= Author: Ondrej Zizka <ozizka@redhat.com> Level: Intermediate Technologies: Apache Wicket, JPA Summary: Demonstrates how to use the Wicket Framework 1.5 with the JBoss server using the Wicket-Stuff J...
/** * @license AngularJS v1.4.5 * (c) 2010-2015 Google, Inc. http://angularjs.org * License: MIT */ (function(window, angular, undefined) {'use strict'; /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Any commits to this file should be reviewed with security in mind. * * Cha...
 namespace IdentityServer3.Core.Validation { /// <summary> /// Validation result for token requests /// </summary> public class TokenRequestValidationResult : ValidationResult { } }
<?php /** * Review summary resource model * * @category Mage * @package Mage_Review * @author Magento Core Team <core@magentocommerce.com> */ class Mage_Review_Model_Resource_Review_Summary extends Mage_Core_Model_Resource_Db_Abstract { /** * Define module * */ protected func...
<?php /** * Smarty plugin * * @package Smarty * @subpackage Security * @author Uwe Tews */ /* * FIXME: Smarty_Security API * - getter and setter instead of public properties would allow cultivating an internal cache properly * - current implementation of isTrustedResourceDir() assumes that Sm...
import { module, test } from 'qunit'; import Hmacsha1 from 'cryptojs/hmac-sha1'; module('Hmac-sha1 as an ES6 module', function() { test('it has been imported', function(assert) { assert.ok(Hmacsha1); }); test('test hash function', function(assert) { let hash = new Hmacsha1("Test123", "secret"); asse...
package com.java8; /** * interface * Created by wxweven on 2017/3/18. */ @FunctionalInterface public interface Converter<P, R> { R convert(P param); }
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ "use strict"; const RequireEnsureDependenciesBlock = require("./RequireEnsureDependenciesBlock"); const RequireEnsureItemDependency = require("./RequireEnsureItemDependency"); const getFunctionExpression = require("./ge...
/* * This file handles differences between operating systems. * This should be the only place with conditional compilation * depending on the type of OS. */ #ifndef _ERL_WIN_SYS_H #define _ERL_WIN_SYS_H #define HAS_STDARG #ifdef __GNUC__ #ifdef pid_t /* Really... */ #undef pid_t #endif #endif #include <stdio.h>...
#include "tensorflow/core/framework/attr_value_util.h" #include <vector> #include "tensorflow/core/framework/attr_value.pb_text.h" #include "tensorflow/core/framework/tensor.pb_text.h" #include "tensorflow/core/framework/types.h" #include "tensorflow/core/framework/types.pb_text.h" #include "tensorflow/core/lib/core...
import * as React from 'react'; var UNINITIALIZED = typeof Symbol === 'function' && typeof Symbol() === 'symbol' ? Symbol() : Object.freeze({}); export default function useStable(getInitialValue) { var ref = React.useRef(UNINITIALIZED); if (ref.current === UNINITIALIZED) { ref.current = getInitialValue(); }...
/********************************************************************* * * * ConfigFemtoAnalysis.C - configuration macro for the femtoscopic * * analysis, meant as a QA process for two-particle effects * * ...
<?php namespace TypiCMS\Modules\Products\Shells\Composers; use TypiCMS\Modules\Products\Composers\SidebarViewComposer as BaseClass; class SidebarViewComposer extends BaseClass { }
class Instance : public pp::Instance { public: explicit Instance(PP_Instance instance) : pp::Instance(instance), callback_factory_(this), delay_milliseconds_(10), active_(true) { DoSomething(PP_OK); } virtual ~Instance() {} virtual void HandleMessage(const pp::Var& message_var) { ...
import {Compiler as TraceurCompiler} from 'traceur/src/Compiler'; import {CollectingErrorReporter} from 'traceur/src/util/CollectingErrorReporter'; import {Parser} from './parser'; import {SourceFile} from 'traceur/src/syntax/SourceFile'; import {Options} from 'traceur/src/Options'; export class Compiler extends Trace...
/* global angular $ */ 'use strict' angular.module('youScriberApp').controller('VideoSettings', function ($scope, $http, User, video, Videos, $state, $modalInstance, permissions, $stateParams) { $scope.usernameSelected = '' $scope.tabs = { user: true, group: false, organization: false } $(documen...
page_title: Controlling and configuring Docker using Systemd page_description: Controlling and configuring Docker using Systemd page_keywords: docker, daemon, systemd, configuration # Controlling and configuring Docker using Systemd Many Linux distributions use systemd to start the Docker daemon. This document shows ...
#ifdef USE_TI_UITAB #import "TiUITabGroup.h" #import "TiUITabProxy.h" #import "TiUtils.h" #import "TiColor.h" #import "TiUITabController.h" #import "TiWindowProxy.h" #import "TiUITabGroupProxy.h" @implementation TiUITabGroup DEFINE_EXCEPTIONS -(void)dealloc { RELEASE_TO_NIL(controller); RELEASE_TO_NIL(focused); ...
<?php /** * Basic Xi_Acl_Action_Interface implementation * * @category Xi * @package Xi_Acl * @author Eevert Saukkokoski <eevert.saukkokoski@brainalliance.com> */ class Xi_Acl_Action implements Xi_Acl_Action_Interface { /** * @var string */ protected $_role; ...
<?php namespace Illuminate\Contracts\Encryption; use RuntimeException; class EncryptException extends RuntimeException { // }
/* * This css is customized for Onsen UI Theming by Mitsunori KUBOTA<mitsunori@asial.co.jp>. */ * { font-family: 'Helvetica Neue', Helvetica, Arial, Verdana, sans-serif; -webkit-font-smoothing: antialiased; } .quarter { width: 25%; } .half { width: 50%; } .three-quarters { width: 75%; } .third { widt...
/** * \file SDL_metal.h * * Header file for functions to creating Metal layers and views on SDL windows. */ #ifndef SDL_metal_h_ #define SDL_metal_h_ #include "SDL_video.h" #include "begin_code.h" /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { #endif /** * \br...
declare module 'gulp-rev' { interface IOptions { base?: string; cwd?: string; merge?: boolean; } interface IRev { (): NodeJS.ReadWriteStream; manifest(): NodeJS.ReadWriteStream; manifest(path?: string): NodeJS.ReadWriteStream; manifest(options?: IOpt...
The code below will help you to implement an VBScript app to convert PDF to HTML (complex layout). What is ByteScout PDF To HTML SDK? It is the SDK that can take PDF and generate HTML version of it with all the visual layout, positions, vectors, images and form fields preserved. Generated HTML requires no special softw...
.. _dojox/mobile/Pane: ================= dojox/mobile/Pane ================= :Authors: Yoshiroh Kamiyama :Developers: Yoshiroh Kamiyama :since: V1.8 .. contents :: :depth: 2 Introduction ============ dojox/mobile/Pane is a simple <div>-wrapper pane widget. Unlike View, Pane has no special functionality. It ca...
import numpy as np from scipy import sparse from scipy import linalg from scipy import stats from sklearn.utils.testing import assert_equal from sklearn.utils.testing import assert_almost_equal from sklearn.utils.testing import assert_array_equal from sklearn.utils.testing import assert_array_almost_equal from sklearn...
#include <drm/drmP.h> #include <drm/amdgpu_drm.h> #include "amdgpu.h" #define CREATE_TRACE_POINTS #include "amdgpu_trace.h"
{% load cms_tags cache %} {% load typogrify_tags %} {#% cache CMS_CONTENT_CACHE_DURATION menu page.id lang current_page.id %#} {% for child in children %} <li class="menu-{{ child.level }} {% if child.selected %}selected{% endif %} {% if child.is_leaf_node %}leaf node{% endif %} {% if child.ancestor ...
{-# LANGUAGE FlexibleContexts #-} import Data.Binary.Get import Data.Binary.Put import Data.Array.Unboxed as AU import Data.Array.IO (IOUArray) import Data.Array.MArray (MArray) import Data.Array as A import GHCi.BinaryArray import GHC.Word roundtripTest :: (IArray UArray a, MArray IOUArray a IO, Eq a) =...
// Code generated by client-gen. DO NOT EDIT. package v1beta1 import ( "net/http" v1beta1 "k8s.io/api/policy/v1beta1" "k8s.io/client-go/kubernetes/scheme" rest "k8s.io/client-go/rest" ) type PolicyV1beta1Interface interface { RESTClient() rest.Interface EvictionsGetter PodDisruptionBudgetsGetter PodSecuri...
namespace storage_monitor { TestMediaTransferProtocolManagerLinux:: TestMediaTransferProtocolManagerLinux() {} TestMediaTransferProtocolManagerLinux:: ~TestMediaTransferProtocolManagerLinux() {} void TestMediaTransferProtocolManagerLinux::AddObserver(Observer* observer) {} void TestMediaTransferProtocolManagerLinux...
require 'grape/middleware/base' require 'grape/middleware/versioner/parse_media_type_patch' module Grape module Middleware module Versioner # This middleware sets various version related rack environment variables # based on the HTTP Accept header with the pattern: # application/vnd.:vendor-:ve...
/** * Contains all events that a slave device is capable of generating.<br> * In RS-232, a slave is always in one state and events may occur at any order<br> * Please see the documentation in {@link com.pyramidacceptors.ptalk.api.event.Events} */ package com.pyramidacceptors.ptalk.api.event;
A simple gem template Copyright (c) 2010 Gonçalo Silva
// +groupName=kubeadm.k8s.io package kubeadm // import "k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm"