text
stringlengths
3
1.05M
const { ncp } = require('ncp') const path = require('path') const fs = require('fs') module.exports = async (filename) => { try { const currentProjet = process.cwd() const modPath = path.join(currentProjet, 'src', 'modules', filename) const source = path.join(__dirname, 'templates', 'module...
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package com.sudoku.main.view; import com.sudoku.data.manager.DataManager; import com.sudoku.data.manager.UserManager; import com.sudo...
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <meta name="Description" content="Designed and Created by Adam J. Jolicoeur for The Scouters Lodge A.F. & A.M."> <meta name="theme-color" content="#1115...
package main import ( "context" "fmt" "io" "log" "math/rand" "sync" "time" "google.golang.org/grpc" "open-match.dev/open-match/pkg/pb" ) // The Director in this tutorial continously polls Open Match for the Match // Profiles and makes random assignments for the Tickets in the returned matches. const ( // ...
<app-header></app-header> <div class="container row eq-height"> <app-recipe class="col-sm-4 eq-height" *ngFor="let recipe of recipes" [recipe]="recipe"></app-recipe> <div *ngIf="isLoggedIn" class="recipes-container"> <form ng-submit="blur"> <h3>Add new recipe:</h3> <label...
/* * Wrecker * * IO.c * Where we will handle main input loop, * string handling, * color blending? * */ #include <stdio.h> #include <string.h> int countLines( FILE *table ) { int c, count = 0; do { c = fgetc(table); if ( c == '\n' ) { ...
set -e ARG="$1" IPFCONF=/etc/ipf/ipf.conf IPNATCONF=/etc/ipf/ipnat.conf # shellcheck disable=SC1091 . /usbkey/config if [[ "$(/usr/bin/zonename)" != "global" ]]; then echo "Must be run in global zone!" exit 1 fi if [[ "$(cksum "${IPFCONF}" | cut -d' ' -f1)" != "4114956902" ]] || [[ -f "${IPNATCONF}" ]]; then i...
How we made NSDictionary nil safe at Glow, read more on [Glow Tech Blog](http://tech.glowing.com/cn/how-we-made-nsdictionary-nil-safe/). [![CI Status](http://img.shields.io/travis/allenhsu/NSDictionary-NilSafe.svg?style=flat)](https://travis-ci.org/allenhsu/NSDictionary-NilSafe) [![Version](https://img.shields.io/coco...
require 'rack' module Warden module Test # A mock of an application to get a Warden object to test on # Note: During the teardown phase of your specs you should include: Warden.test_reset! module Mock def self.included(_base) ::Warden.test_mode! end # A helper method that provi...
""" Utility methods for SSL :author: Thomas Calmant :copyright: Copyright 2020, Thomas Calmant :license: Apache License 2.0 :version: 1.0.1 .. Copyright 2020 Thomas Calmant Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. ...
package com.amazonaws.services.sqs.model.transform; import javax.xml.stream.events.XMLEvent; import javax.annotation.Generated; import com.amazonaws.services.sqs.model.*; import com.amazonaws.transform.Unmarshaller; import com.amazonaws.transform.StaxUnmarshallerContext; import com.amazonaws.transform.SimpleTypeSta...
All URIs are relative to *https://gpcrdb.org* Method | HTTP request | Description ------------- | ------------- | ------------- [**proteinFamilyChildrenListGET**](ServicesproteinfamilyApi.md#proteinFamilyChildrenListGET) | **GET** /services/proteinfamily/children/{slug}/ | Get a list of child families of a protein fam...
package org.spongepowered.despector.decompiler.method.graph.data.opcode; import org.spongepowered.despector.decompiler.method.graph.data.block.BlockSection; import org.spongepowered.despector.decompiler.method.graph.data.block.BreakBlockSection; /** * An opcode block that acts as a marker for a control flow break. ...
package com.google.api.ads.adwords.jaxws.v201601.cm; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** * * E...
<!DOCTYPE html> <html lang="vi"> <head> <title>Admin | Product</title> <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=""> <meta name="author" content=""> <link rel="styleshee...
<?php namespace App; use Illuminate\Database\Eloquent\Model; /** * @property int $id * @property int $kp_id * @property int $year * @property bool $is_tv_series * @property string $title_ru * @property string $title_en * @property \Carbon\CarbonImmutable $created_at * @property \Carbon\CarbonImmutable $update...
ACCEPTED #### According to Index Fungorum #### Published in null #### Original name Massaria coryli P. Karst. ### Remarks null
<!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_272) on Thu Sep 30 13:16:08 PDT 2021 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>SerializableString (Jackson...
<?php namespace AdventureTimeBundle\Controller; use Symfony\Bundle\FrameworkBundle\Controller\Controller; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\Security\Core\Security; use AdventureTimeBundle\Constants; use AdventureTimeBundle\Form\Security\RegistrationForm; use AdventureTimeBundle\Form\S...
""" An import utility class for creating reports in SyncroSim and exporting them to be used in the LandscapeSim API. Each report configuration corresponds to: - Report name, - Report model class, - Report row model call, - SyncroSim sheet mapping, and - Type conversion mapping """ impo...
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:fitsSystemWi...
randomizer ==========
<?php namespace backend\controllers; use Yii; use yii\filters\AccessControl; use yii\web\Controller; use common\models\LoginForm; use yii\filters\VerbFilter; /** * Site controller */ class SiteController extends Controller { /** * @inheritdoc */ public function behaviors() { return [ ...
ACCEPTED #### According to Index Fungorum #### Published in null #### Original name Sorosporium semisagittatum Thirum. & Pavgi ### Remarks null
| Name | Description | | --------- | ----------------- | | File name | colors/swift3.stencil | | Invocation example | `swiftgen colors -t swift3 …` | | Language | Swift 3 | | Author | Olivier Halligon | ## When to use it - When you need to generate *Swift 3* code - Supports _multiple_ color names with the ...
using System; using System.IO; using System.Runtime.Serialization; using Ionic.Zlib; namespace TransactionalNodeService.Proxy.Universal.Service { public partial class QueryResponse { public void DecompressResponse() { if (string.IsNullOrEmpty(this.ZNO)) { ...
import { IEditorGroupsService, IEditorGroup, GroupsOrder } from 'vs/workbench/services/editor/common/editorGroupsService'; import { GroupIdentifier } from 'vs/workbench/common/editor'; import { ACTIVE_GROUP, SIDE_GROUP } from 'vs/workbench/services/editor/common/editorService'; export type EditorViewColumn = number;...
import { getDefaults, getPlistFilenames, isExpoProject } from "../../"; import { Xcode } from "pbxproj-dom/xcode"; import flattenDeep from "lodash.flattendeep"; import fs from "fs"; import path from "path"; import plist from "plist"; import unique from "lodash.uniq"; export default t => { const paths = getDefaults()...
set(CMAKE_DEPENDS_LANGUAGES "C" ) # The set of files for implicit dependencies of each language: set(CMAKE_DEPENDS_CHECK_C "/mnt/c/Users/micha/Desktop/xmlstar-master/src/zlib-1.2.8/test/example.c" "/mnt/c/Users/micha/Desktop/xmlstar-master/src/CMakeFiles/example.dir/test/example.o" ) set(CMAKE_C_COMPILER_ID "GN...
package org.camunda.bpm.engine.impl.cfg.auth; import org.camunda.bpm.engine.authorization.Permissions; import org.camunda.bpm.engine.history.HistoricCaseInstance; import org.camunda.bpm.engine.history.HistoricDecisionInstance; import org.camunda.bpm.engine.history.HistoricProcessInstance; import org.camunda.bpm.engin...
require 'librarian/dependency' module Librarian class Resolver class Implementation class MultiSource attr_accessor :sources def initialize(sources) self.sources = sources end def manifests(name) sources.reverse.map{|source| source.manifests(name)}.flatt...
<!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>Limitless - Responsive Web Application Kit by Eugene Kopyov</title> <!-- Global stylesheets --> <link href="https://font...
package com.limemobile.app.blog.weibo.tencent.api; import com.limemobile.app.blog.weibo.tencent.entity.Entity; import com.limemobile.app.blog.weibo.tencent.entity.TObject; import java.util.ArrayList; import java.util.concurrent.locks.ReentrantReadWriteLock; /** * 加载结果监听器 */ public abstract class IResu...
New features: * [OKAPI-793](https://issues.folio.org/browse/OKAPI-793) Enable SCRAM-SHA-256 PostgreSQL passwords * [OKAPI-939](https://issues.folio.org/browse/OKAPI-939) Parallel (concurrent) migration for modules Query parameter `parallel` controls this. Default is 1 - sequental * [OKAPI-1070](https://issues.fo...
package org.pentaho.bigdata.api.hbase; import org.junit.Test; import static org.junit.Assert.assertEquals; /** * Created by bryan on 2/2/16. */ public class ResultFactoryExceptionTest { @Test public void testConstructor() { Exception exception = new Exception(); assertEquals( exception, new ResultFac...
package codebuild 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/jsonrpc" ) // AWS CodeBuild is a fully-m...
<!DOCTYPE html> <html lang="en"> <head> <title>MBIPdf417Recognizer Class Reference</title> <link rel="stylesheet" type="text/css" href="../css/jazzy.css" /> <link rel="stylesheet" type="text/css" href="../css/highlight.css" /> <meta charset="utf-8"> <script src="../js/jquery.min.js" defer></script...
/* jshint node: true */ module.exports = function(environment) { var ENV = { modulePrefix: 'dummy', environment: environment, baseURL: '/', locationType: 'auto', contentSecurityPolicy: { 'font-src': "'self' http://fonts.gstatic.com", 'script-src': "'self' 'unsafe-inline'", 'styl...
<?php /** Zend_Memory_Container */ //require_once 'Zend/Memory/Container.php'; /** Zend_Memory_Value */ //require_once 'Zend/Memory/Value.php'; /** * Memory value container * * Movable (may be swapped with specified backend and unloaded). * * @category Zend * @package Zend_Memory * @copyright Copyright...
// Karma configuration // Generated on Thu May 19 2016 17:00:28 GMT+0200 (CEST) module.exports = function(config) { config.set({ // base path that will be used to resolve all patterns (eg. files, exclude) basePath: '', // frameworks to use // available frameworks: https://npmjs.org/browse/keywor...
from st2common import __version__ class RootController(object): def index(self): data = {} if 'dev' in __version__: docs_url = 'http://docs.stackstorm.com/latest' else: docs_version = '.'.join(__version__.split('.')[:2]) docs_url = 'http://docs.stacksto...
<?php /*----------------------------------------------------------------- !!!!警告!!!! 以下为系统文件,请勿修改 -----------------------------------------------------------------*/ namespace app\model; use app\classes\Model; use ginkgo\Func; use ginkgo\Arrays; use ginkgo\Strings; use ginkgo\Config; use ginkgo\Loader; //不能非法包含或直接执行...
var EscapeStore = require('./escape-store'); var QuoteScanner = require('../utils/quote-scanner'); var FreeTextProcessor = function FreeTextProcessor() { this.matches = new EscapeStore('FREE_TEXT'); }; // Strip content tags by replacing them by the a special // marker for further restoring. It's done via string sca...
ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )/.." && pwd )" set -x rm -rf $ROOT_DIR/src/Dime/FrontendBundle/Resources/public/build $ROOT_DIR/env/pub.sh build
package com.amazonaws.services.gamelift.model; import javax.annotation.Generated; /** * */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public enum EC2InstanceType { T2Micro("t2.micro"), T2Small("t2.small"), T2Medium("t2.medium"), T2Large("t2.large"), C3Large("c3.large"), C3Xla...
- [loadMemberPayments](#loadMemberPayments) - [saveMemberPayment](#saveMemberPayment) - [memberPaymentTransaction](#memberPaymentTransaction) --- <a id="loadMemberPayments"></a> ## `loadMemberPayments(params, callback)` Loads items from the `memberPayments` collection based on given params. ### Params * `params`: [i...
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width,initial-scale=1"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <meta name="lang:clipboard.copy" content...
var app = require('express')(), wizard = require('hmpo-form-wizard'), steps = require('./steps'), fields = require('./fields'); app.use(require('hmpo-template-mixins')(fields, { sharedTranslationKey: 'prototype' })); app.use(wizard(steps, fields, { controller: require('../../../controllers/form'), tem...
using cc::CheckerboardDrawQuad; using cc::DelegatedFrameData; using cc::DebugBorderDrawQuad; using cc::DrawQuad; using cc::FilterOperation; using cc::FilterOperations; using cc::IOSurfaceDrawQuad; using cc::PictureDrawQuad; using cc::RenderPass; using cc::RenderPassDrawQuad; using cc::ResourceProvider; using cc::Shared...
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>dpdgraph: Not compatible 👼</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.cs...
package common.zeroquest.block; import common.zeroquest.ZeroQuest; import net.minecraft.block.Block; import net.minecraft.block.material.Material; public class BlockNileCobblestone extends Block { public BlockNileCobblestone(int par1, Material rock) { super(par1, Material.rock); t...
if [ -z "$RFKILL_STATE" ]; then echo "rfkill-hook: error: RFKILL_STATE variable not set" exit 1 fi if [ -x /run/current-system/etc/rfkill.hook ]; then exec /run/current-system/etc/rfkill.hook elif [ ! -z "$RFKILL_HOOK" ]; then exec $RFKILL_HOOK else echo "rfkill-hook: $RFKILL_STATE" fi
<?php namespace FINDOLOGIC\Export\Exceptions; use RuntimeException; class PropertyKeyNotAllowedException extends RuntimeException { public function __construct(string $key) { $format = 'Property key "%s" is reserved for internal use and overwritten when importing.'; parent::__construct(sprint...
<?php namespace SkypeBot\Entity; class Result extends Entity { /** * @return null|Error */ public function getError() { return $this->get('error', Error::class); } public function getId() { return $this->get('id'); } }
.transition-padrao{ -webkit-transition:all 0.3s ease; -moz-transition:all 0.3s ease; -o-transition:all 0.3s ease; transition:all 0.3s ease; } .transition-padrao:hover{ -webkit-transition:all 0.3s ease; -moz-transition:all 0.3s ease; -o-transition:all 0.3s ease; transition:all 0.3s ease; } body { ove...
Hubot-es-logger Changelog ========================== ### 0.2.4 - 2017-03-08 - avoid error if env vars are not defined ### 0.2.3 - 2016-11-15 - fix footer when kibana url is set ### 0.2.2 - 2016-11-15 - raise the limit of number of line to 10k, but it will need better way ### 0.2.1 - 2016-11-15 - add an anchor link ...
You can manage android string resource files with tsv (Tab-separated values) file. These files are tested only in python 2.7 version. 1. change the parameter DEFAULT_STRING_PATH in *.py files 2. run xml2tsv.py, then .tsv file will be created. 3. modify .tsv file 4. run tsv2xml.py, then changed values will be merged t...
package org.apache.causeway.core.metamodel.facets.all.described; import org.apache.causeway.core.metamodel.facetapi.Facet; import org.apache.causeway.core.metamodel.facets.all.i8n.staatic.HasStaticText; public interface ObjectDescribedFacet extends Facet, HasStaticText { }
<?php $this->breadcrumbs=array( 'Ommu Zone Countries'=>array('manage'), 'Manage', ); $this->menu=array( array( 'label' => Yii::t('phrase', 'Filter'), 'url' => array('javascript:void(0);'), 'itemOptions' => array('class' => 'search-button'), 'linkOptions' => array('title' => Yii::t('phrase', 'Fil...
from runner.koan import * class AboutStringManipulation(Koan): def test_use_format_to_interpolate_variables(self): value1 = 'one' value2 = 2 string = "The values are {0} and {1}".format(value1, value2) self.assertEqual('The values are one and 2', string) def test_formatted_val...
TapuninoMini 1.03 based on the design of OzayTuray - Original design by Peter Edwards ( sweetlilmre ). A redesigned version of the Tapuinomini with built in buttons and connector on the PCB. A step by step build process can be found on my blog: http://arananet-net.kinja.com/tapuino-1-03-mejorando-el-tapuino-mini-1788...
<?php namespace Drupal\imce; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\JsonResponse; use Drupal\Component\Serialization\Json; use Drupal\Component\Render\MarkupInterface; use Drupal\Component\Utility\Html; use Drupal\Core\Session\...
DROP TABLE IF EXISTS collection;
package net.jini.print.attribute.standard; import javax.print.attribute.Attribute; import javax.print.attribute.DocAttribute; import javax.print.attribute.PrintRequestAttribute; import net.jini.print.attribute.Dimension; /** * * <p> * This attribute causes each Finished-Page Image that would be plac...
using System; using AppKit; using Foundation; using System.IO; using System.Data; using Mono.Data.Sqlite; using System.Text; using System.Text.RegularExpressions; using System.Net; using System.Collections.Generic; namespace QiitaTable { public static class QiitaApi { public static SortedDictionary<Da...
'use strict'; const RuleExecutor = require('./rule_executor'); const RetryExecutor = require('./retry_executor'); const Rule = require('./rule'); const P = require('bluebird'); const stringify = require('fast-json-stable-stringify'); class BasicSubscription { constructor(options, kafkaFactory, hyper, ruleName, ru...
from .p3 import P3
#include <phevaluator/phevaluator.h> #include <iostream> #include <cassert> int main() { /* * This demonstrated scenario is the same as the one shown in example 1. * Community cards: 9c 4c 4s 9d 4h (both players share these cards) * Player 1: Qc 6c * Player 2: 2c 9h */ phevaluator::Rank rank1 = phevaluator...
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1,user-scalable=no"> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-status-bar-style" content="black"> <link rel="stylesheet" href=...
'use strict'; const receiptUtils = require('../receiptUtils'); const jsonSchema = require('json-schema'); const receiptSchema = require('../../schema/SKVFS_2014.9/Receipt.schema.json'); const mockControlUnit = require('../mockControlUnit'); const constants = require('../constants'); const mockARegister = () => ({ c...
import 'neuroglancer/save_state/save_state.css'; import {debounce} from 'lodash'; import {Dialog} from 'neuroglancer/dialog'; import {Overlay} from 'neuroglancer/overlay'; import {dismissUnshareWarning, getSaveToAddressBar, getUnshareWarning} from 'neuroglancer/preferences/user_preferences'; import {StatusMessage} fro...
<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> <solid android:color="@color/blue_2" /> <corners android:bottomLeftRadius="40dp" android:bottomRightRadius="40dp" android:topLeftRadius="40dp" a...
if(NOT DEFINED CMAKE_INSTALL_PREFIX) set(CMAKE_INSTALL_PREFIX "/home/bladestery/Sapphire/example_apps/AndroidStudioMinnie/sapphire/.externalNativeBuild/cmake/debug/armeabi/install") endif() string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") # Set the install configuration name. if(NOT DEFIN...
<?xml version="1.0" encoding="utf-8"?> <ripple xmlns:android="http://schemas.android.com/apk/res/android" android:color="?attr/colorControlHighlight"> <item android:drawable="@color/fragment_deatils_opacity_bckg" /> </ripple>
ACCEPTED #### According to International Plant Names Index #### Published in null #### Original name null ### Remarks null
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Hello WUI</title> <meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1,user-scalable=no"> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-status-bar-style" content="black"> <...
using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace HappyShopper.API.Resources { public class SampleDataResource : Resource { public string Message { get; set; } } }
package liquibase.lockservice; import liquibase.database.Database; import liquibase.exception.DatabaseException; import liquibase.exception.LockException; import liquibase.executor.Executor; import liquibase.executor.ExecutorService; import liquibase.logging.LogFactory; import liquibase.statement.SqlStatement;...
package table import ( "bytes" "crypto/sha256" "encoding/binary" "fmt" "io" "os" "path" "path/filepath" "strconv" "strings" "sync" "sync/atomic" "gx/ipfs/QmU4emVTYFKnoJ5yK3pPEN9joyEx6U7y892PDx26ZtNxQd/badger/options" "gx/ipfs/QmU4emVTYFKnoJ5yK3pPEN9joyEx6U7y892PDx26ZtNxQd/badger/y" "gx/ipfs/QmVmDhyTT...
describe('ProfileBarCharts', function() { var ProfileBarChart = window.shared.ProfileBarChart; var createEl = window.shared.ReactHelpers.createEl; var merge = window.shared.ReactHelpers.merge; var SpecSugar = window.shared.SpecSugar; var helpers = { renderInto: function(el, props) { var mergedProps...
/* * 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...
{-# LANGUAGE RankNTypes, ExistentialQuantification, ScopedTypeVariables, PatternGuards, FlexibleContexts #-} module ActiveHs.Simple ( IError(..), Task (..), TaskChan , startGHCiServer , restartGHCiServer , interpret -- , typeOf ) where -- GHC --import Hint.Base --import Hint.Compat --import Hint.C...
@class IPadDemoViewController; @interface AppDelegate_iPad : NSObject <UIApplicationDelegate> { UIWindow *window; } @property (nonatomic, retain) IBOutlet IPadDemoViewController *iPadDemoViewController; @property (nonatomic, retain) IBOutlet UIWindow *window; @end
FROM balenalib/intel-edison-ubuntu:disco-build # remove several traces of debian python RUN apt-get purge -y python.* # http://bugs.python.org/issue19846 # > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK. ENV LANG C.UTF-8 # key 63C7CC90: public key "Simon McVitt...
from .model_registry import ModelRegistry
// Type definitions for react-native-push-notification 3.0 // Project: https://github.com/zo0r/react-native-push-notification#readme // Definitions by: Paito Anderson <https://github.com/PaitoAnderson> // Tom Sawkins <https://github.com/tomSawkins> // Andrew Li <https://github.com/Li357>...
package org.apache.jasper.compiler; import java.lang.reflect.Method; import java.util.ArrayList; import java.util.HashMap; import java.util.Hashtable; import java.util.Iterator; import javax.el.ELException; import javax.el.ExpressionFactory; import javax.el.FunctionMapper; import javax.servlet.jsp.tagext.FunctionIn...
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: AssemblyTitle("De...
package org.pentaho.di.ui.spoon; import java.io.File; import java.io.FileInputStream; import java.io.IOException; import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.eclipse.rap.rwt.service.ServiceHandler; public class Down...
<!-- Start Body Content --> <div class="main" role="main"> <div id="content" class="content full"> <div class="container"> <div style="color:green"> <h4 align="center" style="color:green;background-color:#ffffff"><?php echo $this->session->flashdata('success_msg');?>...
from django.contrib import admin from django.shortcuts import render from django import forms # Register your models here. from . import models class ConfForm(forms.Form): def clean_value(self, conf): models.Confs.validate_value(conf, conf.changed, forms.ValidationError) def clean_file(self, conf): ...
FROM balenalib/artik10-alpine:3.11-build # remove several traces of python RUN apk del python* # http://bugs.python.org/issue19846 # > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK. ENV LANG C.UTF-8 # key 63C7CC90: public key "Simon McVittie <smcv@pseudorandom.c...
<md:EntityDescriptor xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata" xmlns:mdrpi="urn:oasis:names:tc:SAML:metadata:rpi" xmlns:shibmd="urn:mace:shibboleth:metadata:1.0" xmlns:mdui="urn:oasis:names:tc:SAML:metadata:ui" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" entityID="https...
namespace lslboost { namespace function_types { typedef detail::property_tag<BOOST_FT_non_variadic,BOOST_FT_variadic_mask> non_variadic; typedef detail::property_tag<BOOST_FT_variadic,BOOST_FT_variadic_mask> variadic; typedef detail::property_...
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="content-type" content="text/html; charset=utf-8"> <title>Spindry — rinse your bookmarks’ tags</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, minimal-ui"> <meta...
import os import re import logging __version__ = '1.7.16' class NullHandler(logging.Handler): def emit(self, record): pass # Configure default logger to do nothing log = logging.getLogger('botocore') log.addHandler(NullHandler()) _first_cap_regex = re.compile('(.)([A-Z][a-z]+)') _number_cap_regex = re...
package org.xdi.oxauth.service; import java.util.List; import javax.ejb.Stateless; import javax.inject.Inject; import javax.inject.Named; import org.slf4j.Logger; import org.xdi.model.GluuAttribute; import org.xdi.oxauth.model.config.StaticConfiguration; import org.xdi.service.CacheService; import org.xdi.util.Str...
package com.facebook.buck.features.ocaml; import com.facebook.buck.core.cell.resolver.CellPathResolver; import com.facebook.buck.core.description.BuildRuleParams; import com.facebook.buck.core.description.arg.CommonDescriptionArg; import com.facebook.buck.core.description.arg.HasDeclaredDeps; import com.facebook.buc...
ACCEPTED #### According to The Catalogue of Life, 3rd January 2011 #### Published in null #### Original name Torrendia deformans Bougher, 1996 ### Remarks null
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd"> <web-app> <display-name>GeoServer</display-name> <context-param> <param-name>serviceStrategy</param-name> <!-- Meaning of the different...