text
stringlengths
3
1.05M
% ************************************************************************ % File Name : start.m % (blank m-file) % Author : Necati KARTAL % Date : 15.01.2015 % Description : This m-file will build workspace and obtstacles % from giving inputs.txt file. % Input :...
package node import ( "log" "github.com/kubernetes/dashboard/src/app/backend/client" "github.com/kubernetes/dashboard/src/app/backend/resource/common" "github.com/kubernetes/dashboard/src/app/backend/resource/dataselect" "github.com/kubernetes/dashboard/src/app/backend/resource/event" "github.com/kubernetes/das...
<!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...
// +build !ignore_autogenerated // This file was autogenerated by defaulter-gen. Do not edit it manually! package v1alpha1 import ( runtime "k8s.io/apimachinery/pkg/runtime" ) // RegisterDefaults adds defaulters functions to the given scheme. // Public to allow building arbitrary schemes. // All generated defaul...
@implementation GHPInfoSectionTableViewController #pragma mark - setters and getters - (GHPInfoTableViewCell *)infoCell { if (!_infoCell && self.isViewLoaded) { static NSString *CellIdentifier = @"GHPInfoTableViewCell"; GHPInfoTableViewCell *cell = [self.tableView dequeueReusableCellWithIdentifier...
<?xml version="1.0" ?><!DOCTYPE TS><TS language="es_MX" version="2.1"> <context> <name>AboutDialog</name> <message> <location filename="../forms/aboutdialog.ui" line="+14"/> <source>About EthCash</source> <translation type="unfinished"/> </message> <message> <location lin...
using Checkout.ApiServices.Cards; using Checkout.ApiServices.Charges; using Checkout.ApiServices.Customers; using Checkout.ApiServices.Drinks; using Checkout.ApiServices.Lookups; using Checkout.ApiServices.Reporting; using Checkout.ApiServices.RecurringPayments; using Checkout.ApiServices.Tokens; using Checkout.Helper...
package uk.gov.phe.erdst.sc.awag.upload.study;
package com.expedia.tesla.serialization; import static org.junit.Assert.assertEquals; import org.junit.Test; /** * Generic round-trip serialization tests for Int64 values. Implement getWriter * and getReader to instantiate this test suite. * * @author dheld */ public abstract class Int64RoundTripTemplate exte...
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.5.0_16) on Mon Jul 13 16:45:54 EDT 2009 --> <TITLE> ec.multiobjective.spea2 Class Hierarchy </TITLE> <LINK REL ="stylesheet" TYPE="text/css" HREF="../....
ACCEPTED #### According to The Catalogue of Life, 3rd January 2011 #### Published in null #### Original name null ### Remarks null
import { extend } from '../../vue' import { NAME_NAV_ITEM_DROPDOWN } from '../../constants/components' import { SLOT_NAME_BUTTON_CONTENT, SLOT_NAME_DEFAULT, SLOT_NAME_TEXT } from '../../constants/slots' import { htmlOrText } from '../../utils/html' import { keys, pick, sortKeys } from '../../utils/object' import { make...
SPIDER_MANAGER_CLASS = 'slybot.spidermanager.SlybotSpiderManager' EXTENSIONS = {'slybot.closespider.SlybotCloseSpider': 1} ITEM_PIPELINES = {'slybot.dupefilter.DupeFilterPipeline': 1} SPIDER_MIDDLEWARES = {'slybot.spiderlets.SpiderletsMiddleware': 999} # as close as possible to spider output PLUGINS = ['slybot.plugins...
Recently there has been some concern around the naming of the “globalThis” proposal. I would like to address some of the concerns and make transparent the restrictions that the committee had while choosing a name. Hopefully this will help clarify how we got to where we are, and help people think of viable alternatives....
package hr.fer.zemris.jcms.web.actions; import hr.fer.zemris.jcms.service.ApplicationService; import hr.fer.zemris.jcms.web.actions.data.ApplicationExportTableData; import hr.fer.zemris.jcms.web.actions.data.support.MessageLoggerFactory; @Deprecated public class ApplicationExportTable extends ExtendedActionSupport {...
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="pl"> <head> <!-- Generated by javadoc (1.8.0_60) on Tue Mar 29 13:02:13 CEST 2016 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Package play.data (...
Web UI
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!-- Copyright 2003 - 2015 The eFaps Team 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...
<?php namespace Intervention\Image; abstract class AbstractDecoder { /** * Initiates new image from path in filesystem * * @param string $path * @return \Intervention\Image\Image */ abstract public function initFromPath($path); /** * Initiates new image from binary data ...
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="chrome=1"> <title>PacerCMS - PacerCMS 0.7.1 Released</title> <meta name="title" content="PacerCMS 0.7.1 Released"> <link rel="canonical" href="https://pacercms.github.io/index.php/200...
layout: portfolio title: Walmart appStore: https://apps.apple.com/us/app/walmart-shopping-grocery/id338137227#?platform=iphone image_url: /images/walmart1.png image2_url: /images/walmart2.png date: 2021-06-25 blurb: Worked on various teams including Store Maps and Cart --- {{ page.blurb }} ![ScreenShot1]({{ page.imag...
namespace Microsoft.AspNetCore.Http.HttpResults; using Mono.TextTemplating; public class ResultsCacheTests { [Fact] public void GeneratedCodeIsUpToDate() { var currentContentPath = Path.Combine(AppContext.BaseDirectory, "Shared", "GeneratedContent", "ResultsCache.StatusCodes.cs"); var temp...
import { State } from './state' describe('State', () => { beforeEach(() => { State.next({ initialState: true }) }) test('should return the current state', async () => { expect(State.current).toEqual({ initialState: true }) }) test('should allow to update the current state', async () => { State...
require 'gecko/record/base' module Gecko module Record class PaymentMethod < Base attribute :name, String attribute :is_default, Boolean, readonly: true end class PaymentMethodAdapter < BaseAdapter end end end
''' Created on Mar 19, 2012 @author: hilfman ''' from pysvg.builders import ShapeBuilder class ArrowRenderer(object): def __init__(self, conf): self.__lineType = conf['connection']['style']; self.__thickness = conf['connection']['thickness']; self.__markerSize = conf['connection']['marker...
require_relative '../../test_helper' class TestFakerPearlJam < Test::Unit::TestCase def setup @tester = Faker::Music::PearlJam end def test_musician assert @tester.musician.match(/\w/) end def test_album assert @tester.album.match(/\w/) end def test_song assert @tester.song.match(/\w/)...
package me.nithanim.netty.packetlib.example.morecomplex.common; import io.netty.channel.Channel; import me.nithanim.netty.packetlib.processing.PacketProcessorBase; public abstract class CommonFirstPacketProcessor extends PacketProcessorBase { public CommonFirstPacketProcessor(Channel channel) { super(chan...
import React from 'react'; import { storiesOf, action } from '@kadira/storybook'; import { Actions } from '../src/index'; const actions = [ { label: 'Preparations', icon: 'fa fa-asterisk', onClick: action('Preparations clicked'), bsStyle: 'primary', }, { label: 'Datasets', icon: 'fa fa-file-excel-o', ...
<?xml version="1.0" encoding="UTF-8"?> <Export generator="Cache" version="25"> <Class name="CPM.Utils.PackageDefinition"> <Abstract>1</Abstract> <IncludeCode>CPM.LIB</IncludeCode> <Super>%RegisteredObject</Super> <TimeCreated>63782,68064.705177</TimeCreated> <Parameter name="AUTOREGISTER"> <Description> automatically ...
module.exports = function (gulp, plugins, config) { return function () { return gulp.src([config.paths.src + 'images/**/*', config.paths.src + 'components/**/images/*']) .pipe(plugins.cached(plugins.imagemin({ progressive: true, interlaced: true, s...
'use strict'; const phantom = require('phantom'); const path = require('path'); const randomUserAgent = require('random-fake-useragent'); const USER_AGENT = randomUserAgent.getRandom('Chrome'); const screenshot = { getScreenshot(url, options) { let format = options.format; let viewPort = options.viewPort...
import * as tf from '@tensorflow/tfjs'; import * as tfn from '../index'; // We still need node-fetch so that we can mock the core // tf.env().platform.fetch call and return a valid response. // tslint:disable-next-line:no-require-imports const fetch = require('node-fetch'); const OCTET_STREAM_TYPE = 'application/o...
namespace { constexpr int kDefaultJPEGQuality = 95; constexpr int kDefaultMemlimitMB = 6000; void Usage() { fprintf(stderr, "Guetzli JPEG compressor. Usage: \n" "guetzli [flags] input_filename output_filename\n" "\n" "Flags:\n" " --verbose - Print a verbose trac...
**linux-service** allows you to organize adhoc commands as 'Linux services' and control them with 'service interface', i.e. ![linux-service example](linux-service-example.png) Each 'service' is defined as a collection of: 'start', 'stop' and 'status' commands in configuration file: ```YAML kafka-server: sequenc...
@interface BTTemperaturePickerSupporter : NSObject < UITableViewDataSource, UITableViewDelegate > @property (assign, nonatomic) BTDegreeUnitType degreeUnitType; @property (assign, nonatomic) double temperature; - (NSUInteger)indexOfBranchTemperature:(double)temperature degreeUnitType:(BTDegreeUnitType)degreeUnitType; -...
create table sum_expression( col1 int auto_increment primary key, col2 smallint, col3 char(30) default 'abc', col4 date default SYSDATE, col5 clob ); insert into sum_expression(col2, col3, col4, col5) values(500, 'cubrid', '1990-10-10', 'aello@domainname.com'); insert into sum_expression(col2, col3, col4, col5) ...
package eu.crushedpixel.littlstar.api.data.resource; import com.google.gson.annotations.SerializedName; public enum ResourceType { @SerializedName("video") VIDEO, @SerializedName("photo") PHOTO }
package com.example.android.sunshine.app.data; import android.content.Context; import android.database.sqlite.SQLiteDatabase; import android.database.sqlite.SQLiteOpenHelper; import com.example.android.sunshine.app.data.WeatherContract.LocationEntry; import com.example.android.sunshine.app.data.WeatherContract.Weath...
package org.wikidata.wdtk.rdf.values; import org.openrdf.rio.RDFHandlerException; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.wikidata.wdtk.datamodel.interfaces.PropertyIdValue; import org.wikidata.wdtk.rdf.PropertyRegister; import org.wikidata.wdtk.rdf.OwlDeclarationBuffer; import org.wikida...
(function(angular) { 'use strict'; var sr4CharacterSheet = angular.module('sr4CharacterSheet', ['characterSheetServices', 'navigation']); function sortSkills(skills, attributes) { skills = skills.map(function(skill) { skill = angular.copy(skill); skill.attributeValue = attributes[skill.attribute]; ret...
package fi.ni.ifc2x3; import fi.ni.ifc2x3.interfaces.*; import fi.ni.*; import java.util.*; /* * IFC Java class * @author Jyrki Oraskari * @license This work is licensed under a Creative Commons Attribution 3.0 Unported License. * http://creativecommons.org/licenses/by/3.0/ */ public class IfcArbitraryOpenProfi...
template <typename T, typename Parameter> class NamedType { public: explicit NamedType(T const &value) : value_(value) {} T &get() { return value_; } T const &get() const { return value_; } private: T value_; };
package svc.data.citations.datasources.mock; import static org.hamcrest.CoreMatchers.is; import static org.junit.Assert.assertThat; import static org.mockito.Mockito.when; import java.util.List; import org.junit.Ignore; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.InjectMocks; import or...
package tags_test import ( "context" "errors" "reflect" "testing" "github.com/vmware/govmomi/simulator" "github.com/vmware/govmomi/vapi/rest" "github.com/vmware/govmomi/vapi/tags" "github.com/vmware/govmomi/view" "github.com/vmware/govmomi/vim25" "github.com/vmware/govmomi/vim25/mo" ) func TestManager_At...
// This may look like C code, but it's really -*- C++ -*- #ifndef WT_DBO_DBO_PTR_IMPL_H_ #define WT_DBO_DBO_PTR_IMPL_H_ namespace Wt { namespace Dbo { namespace Impl { template <class C, typename T> void setAutogeneratedId(MetaDbo<C>& dbo, const T& currentId, long long id) { } templ...
#if CSHARP_7_OR_LATER || (UNITY_2018_3_OR_NEWER && (NET_STANDARD_2_0 || NET_4_6)) #pragma warning disable CS1591 // Missing XML comment for publicly visible type or member using System; using System.Collections.Generic; using System.Threading; using UniRx.Async.Internal; using UnityEngine; namespace UniRx.Async.Trig...
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout 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" tools:context="yd.miwu.testdemo.FirstPageActivity"> <TextView ...
{-# LANGUAGE CPP, FlexibleInstances #-} {-# OPTIONS_GHC -fno-warn-orphans #-} -- instance MonadThings is necessarily an orphan module TcEnv( TyThing(..), TcTyThing(..), TcId, -- Instance environment, and InstInfo type InstInfo(..), iDFunId, pprInstInfoDetails, simpleInstInfoClsTy, sim...
angular.module('gifts') .factory('UserService', ['TextService', 'NotiService', '$window', '$http', '$q', '$locale', function(textService, notiService, $window, $http, $q, $locale) { var self = this ; var service = 'UserService' ; console.log(service + ' loaded') ; // initialize list...
package tag import ( "context" "fmt" "strings" "github.com/hashicorp/go-multierror" admitv1 "k8s.io/api/admissionregistration/v1" kerrors "k8s.io/apimachinery/pkg/api/errors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/client-go/kubernetes" "istio.io/api/label" ) func GetTagWebhooks(ctx context.C...
//----------------------------------------------------------------------- // <copyright file="ClusterShardingGetStateSpec.cs" company="Akka.NET Project"> // Copyright (C) 2009-2020 Lightbend Inc. <http://www.lightbend.com> // Copyright (C) 2013-2020 .NET Foundation <https://github.com/akkadotnet/akka.net> // <...
""" Support for monitoring an SABnzbd NZB client. For more details about this platform, please refer to the documentation at https://home-assistant.io/components/sensor.sabnzbd/ """ import logging from datetime import timedelta import voluptuous as vol from homeassistant.components.sensor import PLATFORM_SCHEMA from...
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTi...
.. _authentication-ovw: ~~~~~~~~~~~~~~ Authentication ~~~~~~~~~~~~~~ Each REST request against the RackConnect service requires the inclusion of a specific authorization token, supplied in the ``X-Auth-Token`` HTTP header of each API request. You get a token by submitting an authentication request with valid account c...
/* * The purpose of this class is to abstract the various tests you'd have on a tab-view * There are several methods and each of them are abstracted in such a way as to * not assume how the module was implemented * The name of this YUI module is "media-test-tabview" */ YUI.add("media-test-tabview", function(Y) {...
(function (signalrdashboardMilliman) { signalrdashboardMilliman.TwitterStatusComponent = ng.core.Component({ selector: 'twitter-status', templateUrl: '/scripts/app/templates/milliman/TwitterStatusComponent.html' }) .Class({ constructor: function() { thi...
import React, { Component } from 'react'; import { render, mount } from 'enzyme'; import Button from '..'; import Icon from '../../icon'; describe('Button', () => { it('renders correctly', () => { const wrapper = render( <Button>Follow</Button> ); expect(wrapper).toMatchSnapshot(); }); it('ren...
const program = (function() { 'use strict'; const stdin = document.getElementById('stdin'); const stdout = document.getElementById('stdout'); const history = []; // history of inputs smoothScroll.init({ speed: 300, // Integer. How fast to complete the scroll in milliseconds easing: 'easeInOutCubic' ...
package org.deeplearning4j.parallelism.trainer; import lombok.NonNull; import org.deeplearning4j.nn.api.Model; import org.nd4j.linalg.api.ndarray.INDArray; import org.nd4j.linalg.dataset.api.DataSet; import org.nd4j.linalg.dataset.api.MultiDataSet; /** * A Trainer is an individual worker used in {@link org.deeplea...
#include <stdlib.h> #include <stdio.h> #include <string.h> #include <math.h> #include <errno.h> #include "reader.h" static int log2i(int a) { return roundf(log2f(a)); } static int directblockRead(struct READER *reader, struct DATAOBJECT *dataobject, struct FRACTALHEAP *fractalheap) { char buf[4], *name, *value...
<?php namespace Eve\Builders; use PhpParser\BuilderFactory; class MethodBuilder extends Builder { /** * The constructor. * * @param string $name * @return MethodBuilder */ public function __construct($name) { $this->builder = (new BuilderFactory)->method($name); } ...
package org.wso2.am.integration.tests.header; import org.testng.annotations.AfterClass; import org.testng.annotations.BeforeClass; import org.testng.annotations.DataProvider; import org.testng.annotations.Factory; import org.testng.annotations.Test; import org.wso2.am.integration.clients.store.api.v1.dto.Application...
package org.openkilda.wfm.topology.network.storm.bolt.watchlist.command; import org.openkilda.wfm.share.model.Endpoint; import org.openkilda.wfm.topology.network.storm.ICommand; import org.openkilda.wfm.topology.network.storm.bolt.watchlist.WatchListHandler; import lombok.Getter; public abstract class WatchListCom...
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:backgrou...
extern crate optional_struct; #[derive(OptionalStruct)] #[opt_nested_original(LogConfig)] #[opt_nested_generated(OptionalLogConfig)] struct Config { timeout: Option<u32>, log_config: LogConfig, } #[derive(OptionalStruct)] struct LogConfig { log_file: String, log_level: usize, } #[test] fn test_apply_...
package eu.ydp.empiria.player.client.util.position; import org.junit.Test; import static org.junit.Assert.assertEquals; @SuppressWarnings("PMD") public class PointJUnitTest { private Point point; @Test public void testPoint() { point = new Point(20, 30); assertEquals(20, point.getX())...
(function(){ var canvas = this.canvas = fabric.isLikelyNode ? fabric.createCanvasForNode() : new fabric.StaticCanvas(); function getAbsolutePath(path) { var isAbsolute = /^https?:/.test(path); if (isAbsolute) return path; var imgEl = _createImageElement(); imgEl.src = path; var src = imgEl.src...
ACCEPTED #### According to International Plant Names Index #### Published in null #### Original name null ### Remarks null
package io.codekvast.common.messaging; import java.util.UUID; import lombok.NonNull; import org.slf4j.MDC; /** * A wrapper for a ThreadLocal that holds a correlationId. * * @author olle.hallin@crisp.se */ public class CorrelationIdHolder { private static final ThreadLocal<String> holder = new ThreadLocal<>(); ...
var assert = require('assert'); describe('Array', function () { describe('#indexOf()', function () { it('should return -1 when the value is not present', function () { assert.equal(-1, [1, 2, 3].indexOf(5)); assert.equal(-1, [1, 2, 3].indexOf(0)); }); }); }); //with cha...
require 'puppet' require 'set' Puppet::Type.type(:rabbitmq_user).provide(:rabbitmqctl) do if Puppet::PUPPETVERSION.to_f < 3 commands :rabbitmqctl => 'rabbitmqctl' else has_command(:rabbitmqctl, 'rabbitmqctl') do environment :HOME => "/tmp" end end defaultfor :feature => :posix def self...
<?php namespace MongoDB\Exception; class GridFSCorruptFileException extends \MongoDB\Driver\Exception\RuntimeException implements Exception { }
var webpack = require('webpack') var config = require('./webpack.config') var path = require('path') config.entry.push('webpack-hot-middleware/client') config.devtool = 'inline-eval-cheap-source-map' config.plugins = [ new webpack.HotModuleReplacementPlugin(), new webpack.NoErrorsPlugin(), new webpack.DefinePlug...
{-# Language DeriveGeneric #-} {-# Language DeriveFoldable #-} {-# Language DeriveFunctor #-} {-# Language DeriveTraversable #-} module Unison.Remote where import Data.Aeson (ToJSON(..),FromJSON(..)) import Data.ByteString (ByteString) import Data.Text (Text) import Data.Text.Encoding (decodeUtf8, encodeUtf8) import ...
package psidev.psi.mi.jami.xml.io.writer.elements.impl.extended.compact.xml25; import junit.framework.Assert; import org.junit.Ignore; import org.junit.Test; import psidev.psi.mi.jami.binary.BinaryInteractionEvidence; import psidev.psi.mi.jami.exception.IllegalRangeException; import psidev.psi.mi.jami.model.*; import ...
export mdlUpgrade from './utils/mdlUpgrade'; export MDLComponent from './utils/MDLComponent'; // components export Badge from './Badge'; export Button from './Button'; export { Card, CardTitle, CardActions, CardMedia, CardText, CardMenu } from './Card'; export Checkbox from './Checkbox'; export DataTable from ...
{[dispatch c='public' a='head']} <script type='text/javascript' src='/style/js/highcharts/highcharts.js'></script> <script type='text/javascript' src='/style/js/highcharts/modules/exporting.js'></script> <script type='text/javascript' src='/style/js/highcharts/themes/grid.js'></script> <script type='text/javascript' s...
Ext.define('Magice.Cloud.view.server.actions.Rename', { extend: 'Ext.window.Window', xtype: 'server-actions-rename', layout: 'card', activeItem: 1, width: 400, bind: { title: 'Rename - {server.name}' }, locale: { header: 'Note!', label: 'Enter New Hostname', description: "This will updat...
using System; namespace Sce.Sled.Shared.Plugin { /// <summary> /// This attribute must be placed on SLED network plugins /// if they are to be loaded by SLED. /// Add the attribute to the AssemblyInfo file as: /// <code>[assembly: Sce.Sled.Shared.Plugin.SledNetworkPlugin]</code> /// or /...
<!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_60-ea) on Thu Dec 15 09:48:33 EST 2016 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>SensitivityClassification...
import pytest import inspect import requests import itertools from betfair import betfair from betfair import exceptions from tests import utils from tests import fixtures from tests.fixtures import client, logged_in_client from tests.fixtures import login_success, login_failure, login_bad_code from tests.fixtures ...
<?php /** * Author: Hassletauf <hassletauf@gmail.com> * Date: 10/2/2016 * Time: 1:31 PM */ namespace Konnektive\Request\Report; use Konnektive\Request\Request; /** * Class QueryCampaignRequest * @link https://api2.konnektive.com/docs/campaign_query/ * @package Konnektive\Request\Report * * @property stri...
/* 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 agreed to in writing, software * distribut...
package org.pathwayeditor.notationsubsystem.toolkit.definition; import org.pathwayeditor.businessobjects.drawingprimitives.attributes.Colour; import org.pathwayeditor.businessobjects.drawingprimitives.attributes.LineStyle; import org.pathwayeditor.businessobjects.drawingprimitives.properties.IPropertyDefinition; im...
""" NOTE: This is *not* a complete Flickr API implementation! Its purpose is to show you can make an implementation using RestORM. The Flickr API can be accessed as a ReST webservice. Although it's very limited and not really a good example of ReST, it's a popular service. With Flickr, you can actually make a single ...
package com.google.sps.workspace; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertTrue; import static org.mockito.ArgumentMatchers.eq; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.times; import static org.mockito...
1. Download Cloudfoundry CLI: https://github.com/cloudfoundry/cli/releases We will use this to communicate with Bluemix from our laptop console. 2. Sign up to Bluemix: http://bluemix.net 3. Launch Python Buildpack: https://console.ng.bluemix.net/catalog/starters/python/?taxonomyNavigation=apps 4. From resulting Python...
/** * Created by Melo on 2015/3/6. */ angular.module('loopbackjs.module.users') .config(['$stateProvider', 'NEBLE', function($stateProvider, NEBLE) { $stateProvider .state('user', { url: '/user', controller: 'ContactCtrl', templateUrl: NEBLE.viewFilesPrefixPath + 'users/views/cont...
package org.yy.studyspring3.bookstore.web.controller; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpSession; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springfr...
<?php /** Zend_Server_Cache */ // require_once 'Zend/Server/Cache.php'; /** * Zend_Json_Server_Cache: cache Zend_Json_Server server definition and SMD * * @category Zend * @package Zend_Json * @subpackage Server * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @lic...
<?php namespace Daiquiri\ReservationBundle\Admin; use Sonata\AdminBundle\Admin\AbstractAdmin; use Sonata\AdminBundle\Datagrid\ListMapper; use Sonata\AdminBundle\Datagrid\DatagridMapper; use Sonata\AdminBundle\Form\FormMapper; class ConfigurationPamAdmin extends AbstractAdmin { protected function configureFormFi...
\hypertarget{uri__host__entity_8cpp}{\section{uri\-\_\-host\-\_\-entity.\-cpp File Reference} \label{uri__host__entity_8cpp}\index{uri\-\_\-host\-\_\-entity.\-cpp@{uri\-\_\-host\-\_\-entity.\-cpp}} } retains the information about the 'host' of U\-R\-I. {\ttfamily \#include \char`\"{}precompiled.\-h\char`\"{}}\\* ...
<!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 (version 1.7.0_71) on Tue Feb 16 15:23:08 EST 2016 --> <meta http-equiv="Content-Type" content="text/html" charset="utf-8"> <title>Uses of Class...
ACCEPTED #### According to International Plant Names Index #### Published in null #### Original name Saccopetalum bidwillii Benth. ### Remarks null
import { BigNumber, BigNumberish } from "@ethersproject/bignumber"; export declare function commify(value: string | number): string; export declare function formatUnits(value: BigNumberish, unitName?: string | BigNumberish): string; export declare function parseUnits(value: string, unitName?: BigNumberish): BigNumber; ...
<?php namespace WhmApi\Api; use WhmApi\Core\ApiBase; class Exim extends ApiBase { /** * @return string */ public function exim_configuration_check() { return $this->processor->process(strtolower(__FUNCTION__)); } /** * @return string */ public function remove_in_pro...
namespace ChilliSource { namespace Rendering { //----------------------------------------------------------------------- /// The definition for a billboard particle drawable. This enables the /// drawing of individual particles as camera facing sprites. /// /// As a particle drawable def's contents can pot...
namespace bp = boost::python; struct ImageSequence_wrapper : osg::ImageSequence, bp::wrapper< osg::ImageSequence > { ImageSequence_wrapper( ) : osg::ImageSequence( ) , bp::wrapper< osg::ImageSequence >(){ // null constructor } virtual char const * className( ) const { if(...
ACCEPTED #### According to Integrated Taxonomic Information System #### Published in null #### Original name null ### Remarks null
package OptimizationTests.ShortMethodsInliningNonVirtualInvokes.InvokeDirectAObjectThrowNullGet_001; // The test checks that stack after NullPointerException occurs is correct despite inlining class Foo { }