text stringlengths 3 1.05M |
|---|
var Scant = (function(){
var inherits = function(parent, child){
child.prototype = Object.create(parent.prototype, {
constructor: {
value: child,
enumerable: false,
writable: true,
configurable: true
}
});
};... |
package de.stklcode.jvault.connector.model.response;
import com.fasterxml.jackson.databind.ObjectMapper;
import org.junit.jupiter.api.Test;
import java.io.IOException;
import static org.hamcrest.CoreMatchers.is;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.notNullValue;
... |
package jprotobuf185;
/**
* Created by IntelliJ IDEA.
* User: xuli
* Date:16/3/24
* Time: 10:04
*/
import com.baidu.bjf.remoting.protobuf.Codec;
import com.baidu.bjf.remoting.protobuf.CodedConstant;
import com.baidu.bjf.remoting.protobuf.FieldType;
import com.baidu.bjf.remoting.protobuf.ProtobufProxy;
import com... |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script type="text/javascript" src="http://codeorigin.jquery.com/jquery-1.10.2.js"></script>
<script type="text/javascript" src="js/oauth.js"></script>
</head>
<body>
<button id="loginfb" >Login with facebook</button>
<pre id="output"></pre>
<script type... |
package com.github.dakusui.jcunit8.examples.pict;
import com.github.dakusui.jcunit8.factorspace.Parameter;
import com.github.dakusui.jcunit8.runners.helpers.ParameterUtils;
import com.github.dakusui.jcunit8.runners.junit4.JCUnit8;
import com.github.dakusui.jcunit8.runners.junit4.annotations.From;
import com.github.dak... |
.class Landroid/media/MediaRouter$VolumeCallbackInfo;
.super Ljava/lang/Object;
.source "MediaRouter.java"
# annotations
.annotation system Ldalvik/annotation/EnclosingClass;
value = Landroid/media/MediaRouter;
.end annotation
.annotation system Ldalvik/annotation/InnerClass;
accessFlags = 0x8
name = "Vo... |
function Xslt($xsltPath, $xmlPath, $outputPath) {
$xslt = New-Object System.Xml.Xsl.XslCompiledTransform
$xslt.Load($xsltPath)
$xslt.Transform($xmlPath, $outputPath)
}
function PrintUsage() {
Write-Host "Useage:"
Write-Host " Xslt XSLT_FILE XML_FILE OUTPUT_PATH"
}
if ($Args.Length -eq 3) {
... |
package com.fhc25.percepcion.osiris.mapviewer.ui.overlays.mapsforge;
import com.fhc25.percepcion.osiris.mapviewer.model.indoor.Elevator;
import com.fhc25.percepcion.osiris.mapviewer.ui.overlays.themes.IndoorElementTheme;
import com.fhc25.percepcion.osiris.mapviewer.ui.overlays.themes.VisualTheme;
import org.maps... |
package gov.sandia.cognition.math;
import gov.sandia.cognition.math.matrix.DimensionalityMismatchException;
import gov.sandia.cognition.math.matrix.Vector;
import gov.sandia.cognition.math.matrix.VectorFactory;
import gov.sandia.cognition.math.matrix.mtj.Vector1;
import gov.sandia.cognition.math.matrix.mtj.Vector2;
... |
using System;
using System.Collections.Generic;
using System.Reactive.Linq;
using System.Reactive.Threading.Tasks;
using MS.Core;
namespace System.Runtime.Remoting.Contexts
{
public static class __IContributeServerContextSink
{
public static IObservable<System.Runtime.Remoting.Messaging.IMessageSink> G... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using KellermanSoftware.CompareNetObjects;
namespace MyApp.Repository.ChangeTracking
{
internal class ChangeTracker<T>
{
//===============================================================... |
package leetcode;
/**
* https://leetcode.com/problems/construct-string-from-binary-tree/
*/
public class Problem606 {
public static class TreeNode {
int val;
TreeNode left;
TreeNode right;
TreeNode(int x) {
val = x;
}
}
public String tree2str(TreeNode... |
module Guts
# Main inherited controller class
# @abstract
class ApplicationController < ActionController::Base
include SessionConcern
include MultisiteConcern
include Pundit
protect_from_forgery with: :exception
before_action :current_user
rescue_from Pundit::NotAuthorizedError, with: :u... |
..
# YDK-YANG Development Kit
# Copyright 2016 Cisco Systems. All rights reserved
# *************************************************************
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for add... |
https://support.f5.com/csp/article/K8802
https://support.f5.com/csp/article/K15194 |
presburger-dfa
==============
Presburger arithmetic solver using Automata Theory.
Algorithm is based on the contents of Chapter 10 of "[Automata Theory: An Algorithmic Approach](https://www7.in.tum.de/~esparza/automatanotes.html)" by Javier Esparza.
|
import os
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
try:
from distutils.command.build_py import build_py_2to3 as build_py
except ImportError:
from distutils.command.build_py import build_py
# Don't import sendhub module here, since deps may not ... |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>src/io/Servo.js - Breakout</title>
<link rel="stylesheet" href="http://yui.yahooapis.com/3.9.1/build/cssgrids/cssgrids-min.css">
<link rel="stylesheet" href="../assets/vendor/prettify/prettify-min.css">
<link rel="stylesheet" href... |
package jp.sourceforge.ea2ddl.dao.cbean.bs;
import java.util.Map;
import org.seasar.dbflute.cbean.AbstractConditionBean;
import org.seasar.dbflute.cbean.ConditionBean;
import org.seasar.dbflute.cbean.ConditionQuery;
import org.seasar.dbflute.cbean.SubQuery;
import org.seasar.dbflute.cbean.UnionQuery;
import ... |
<?php
use Illuminate\Foundation\Testing\WithoutMiddleware;
use Illuminate\Foundation\Testing\DatabaseMigrations;
use Illuminate\Foundation\Testing\DatabaseTransactions;
class ShowProjectTest extends BrowserKitTestCase
{
use DatabaseMigrations;
/** @test */
public function a_logged_in_user_can_view_detail... |
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
class CreateChunkLinksetsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('chunk_linksets', function (Blueprint $table) {
... |
'------------------------------------------------------------------------------
' <auto-generated>
' This code was generated by a tool.
' Runtime Version:2.0.50727.3082
'
' Changes to this file may cause incorrect behavior and will be lost if
' the code is regenerated.
' </auto-generated>
'------------... |
@interface NSString (urlencode)
- (NSString*)urlencode;
@end
|
<!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_79) on Wed Apr 29 14:47:01 PDT 2015 -->
<title>Uses of Package org.apache.nutch.service.model.response (apache-nutch 1.10 API)</title>
... |
.class public interface abstract Lcom/htc/protobuf/BlockingService;
.super Ljava/lang/Object;
.source "BlockingService.java"
# virtual methods
.method public abstract callBlockingMethod(Lcom/htc/protobuf/Descriptors$MethodDescriptor;Lcom/htc/protobuf/RpcController;Lcom/htc/protobuf/Message;)Lcom/htc/protobuf/Message;... |
.widget-meta-data-filter{
/*
position: relative;
z-index: 0;
*/
}
.widget-meta-data-filter table{
margin: 0 0 0 0;
border: none !important;
}
.widget-meta-data-filter table td{
padding-bottom: 0;
border: none !important;
border-width: 0 !important;
text-align: left;
}
.widget-m... |
import {NO_ERRORS_SCHEMA} from "@angular/core";
import {async, ComponentFixture, TestBed} from "@angular/core/testing";
/**
* Load the implementations that should be tested
*/
import {AppComponent} from "./app.component";
import {AppState} from "./app.service";
describe(`App`, () => {
let comp: AppComponent;
let... |
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.n... |
using System.Runtime.Serialization;
namespace JPush.V2.ExternalModels
{
/// <summary>
/// Enum PushPlatform
/// </summary>
[DataContract]
public enum PushPlatform
{
/// <summary>
/// None
/// </summary>
[EnumMember]
None = 0,
/// <summary>
... |
package com.tomgrubbe.shoplite;
import android.os.Bundle;
import android.support.v7.app.ActionBar;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import android.widget.TextView;
public class AboutActivity extends AppCompatActivity {
@Override
protected void onCreat... |
<?php
/*
Unsafe sample
input : use shell_exec to cat /tmp/tainted.txt
Uses an email_filter via filter_var function
construction : use of sprintf via a %s with simple quote
*/
/*Copyright 2015 Bertrand STIVALET
Permission is hereby granted, without written agreement or royalty fee, to
use, copy, modify, and distr... |
#import <CoreData/NSSQLIntermediate.h>
@class NSSQLWhereIntermediate;
// Not exported
@interface NSSQLHavingIntermediate : NSSQLIntermediate
{
NSSQLWhereIntermediate *_whereClause;
}
- (id)generateSQLStringInContext:(id)arg1;
- (_Bool)isHavingScoped;
- (void)dealloc;
- (id)initWithPredicate:(id)arg1 inScope:(i... |
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.zhouxin.mvpdemo">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRt... |
package app
import (
"fmt"
"time"
"github.com/golang/glog"
"k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/api/errors"
metainternalversion "k8s.io/apimachinery/pkg/apis/meta/internalversion"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/labels"
"k8s.io/apimachinery/pkg/runtime"
"k8s.... |
export const ItemTypes = {
DRAGGABLE: 'Draggable',
};
|
<preference-headers xmlns:android="http://schemas.android.com/apk/res/android">
<!-- These settings headers are only used on tablets. -->
<header android:fragment="edu.uw.informatics.brewsky.SettingsActivity$GeneralPreferenceFragment"
android:title="@string/pref_header_general" />
<header
... |
using System.Windows;
#if NETFX_CORE
using Windows.UI.Xaml;
#endif
namespace Prism.Mvvm
{
/// <summary>
/// This class defines the attached property and related change handler that calls the ViewModelLocator in Prism.Mvvm.
/// </summary>
public static class ViewModelLocator
{
/// <summary>
... |
<?xml-model uri="https://xtriples.lod.academy/xtriples.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
<xtriples>
<configuration>
<vocabularies>
<vocabulary prefix="epidat" uri="http://www.steinheim-institut.de/cgi-bin/epidat?id="/>
<vocabulary prefix... |
package org.openo.orchestrator.nfv.nsoc.ia.vnfm.etsi.entity.changedresource;
public class CPChangedResource {
private String cpInstanceId;
private String cpName;
private String nodeTemplateId;
private String type;
private String ipAddress;
private String floatingIP;
private String vlInstanceId;
private Stri... |
$(document).ready(function(){
/* The code here is executed on page load */
/* Replacing all the paragraphs */
/*$('.main p').replaceWith('<div class="slideOutTip '+$(this).attr('class')+'" style="'+$(this).attr('style')+'"><div class="tipVisible"><div class="tipIcon"><div class="plusIcon"></div></div><p class="tip... |
require 'spec_helper'
describe Duckface do
context 'respond_to' do
it 'works' do
is_duck = Duckface.new do
respond_to :quack
end
expect(is_duck.describes? Duck.new).to eq(true)
expect(is_duck.describes? Dove.new).to eq(false)
expect(is_duck.describes? Mandarin.new).to eq(... |
(function(){
'use strict';
angular
.module('mdCurrency')
.service('sharedCurrency', function ($rootScope) {
var currency = [];
return {
getCurrency: function () {
return currency;
},
setCurrency: function(value) {
currency = val... |
/**
A documentação para esta classe por ser encontrada em:<br/>
<a href="https://github.com/bradbirdsall/Swipe" target="_blank">Git Hub swipe.js</a><br/>
<a href="http://swipejs.com/" target="_blank">Site do desenvolvedor</a>
@class Swipe Plugin de navegação swipe
**/
/*
* Swipe 2.0
*
* Brad Birdsall
* Copyright... |
import SimpleHTTPServer, BaseHTTPServer, SocketServer, socket
class ThreadedHTTPServer(SocketServer.ThreadingMixIn,
BaseHTTPServer.HTTPServer) :
"""
New features w/r to BaseHTTPServer.HTTPServer:
- serves multiple requests simultaneously
- catches socket.timeout and ... |
//
// AddressTitleView.h
// LoveBeeFresh
//
// Created by linjohn on 4/11/16.
// Copyright © 2016 linjohn. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface AddressTitleView : UIView
/** title width */
@property(assign,nonatomic)CGFloat addressWidth;
- (void)setTitle:(NSString *)title;
@end
|
Gulp-hugo
=======
A barebones, standardized boilerplate for combining Hugo and Gulp into a single web project.
---
## Introduction
This repo creates an empty environment where [Hugo](https://gohugo.io/) and [Gulp](https://gulpjs.com) can play nicely together. I tried to combine the best of both worlds: the processin... |
/*
* This is a manifest file that'll be compiled into application.css, which will include all the files
* listed below.
*
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
* or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path... |
ptpython
========
*A better Python REPL*
::
pip install ptpython
.. image :: https://github.com/jonathanslenders/ptpython/raw/master/docs/images/example1.png
|Build Status|
Ptpython is an advanced Python REPL. It should work on all
Python versions from 2.6 up to 3.5 and work cross platform (Linux,
BSD, OS X a... |
<!-- Main jumbotron for a primary marketing message or call to action -->
<div class="jumbotron">
<div class="container" style="
background-image: url(img/flash-array-m.png);
background-position: right bottom;
background-size: 40%;
background-repeat: no-repeat">
... |
package edu.mit.cci.wikilanguage.main
import edu.mit.cci.wikilanguage.db.DAO
import edu.mit.cci.wikilanguage.wiki.{TopNPeopleRetrieverByYear, BetweennessByYearCalculator}
import java.util.concurrent.Executors
/**
* @author pdeboer
* First created on 14/01/14 at 18:45
*/
object BetweennessCalculator extends... |
package nl.paulinternet.gtasaveedit.view.pages;
import nl.paulinternet.gtasaveedit.event.MethodInvoker;
import nl.paulinternet.gtasaveedit.model.SavegameModel;
import nl.paulinternet.gtasaveedit.event.EventHandler;
import nl.paulinternet.gtasaveedit.view.swing.*;
import nl.paulinternet.libsavegame.variables.Vari... |
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using SSW.DataOnion.Core;
using SSW.DataOnion.Core.Initializers;
using SSW.DataOnion.DependencyResolution.Microsoft;
usin... |
try
gray = imread('~/src/gtrepeat/dggt/two_planes.jpg');
gray = rgb2gray(gray);
catch
gray = imread('cameraman.tif');
end
figure;
imshow(gray);
%% LSD detectors
% Create two LSD detectors with standard and no refinement.
lsd1 = LINE.LineSegmentDetector('Refine','Standard');
lsd2 = LINE.LineSegmentDetector('Refine',... |
using System.Collections.Generic;
using System.Net.Security;
using System.Net.Test.Common;
using System.Runtime.InteropServices;
using System.Security.Authentication.ExtendedProtection;
using System.Security.Cryptography.X509Certificates;
using System.Threading.Tasks;
using Xunit;
namespace System.Net.Http.Functional.... |
package com.javadeobfuscator.deobfuscator.transformers.general.peephole;
import com.javadeobfuscator.deobfuscator.org.objectweb.asm.Opcodes;
import com.javadeobfuscator.deobfuscator.org.objectweb.asm.tree.AbstractInsnNode;
import com.javadeobfuscator.deobfuscator.org.objectweb.asm.tree.JumpInsnNode;
import com.javad... |
#include <TMongoCursor>
#include <TBson>
#include "mongoc.h"
TMongoCursor::TMongoCursor()
: mongoCursor(nullptr), bsonDoc(nullptr)
{ }
TMongoCursor::~TMongoCursor()
{
release();
}
bool TMongoCursor::next()
{
bsonDoc = nullptr;
return (mongoCursor) ? mongoc_cursor_next(mongoCursor, (const bson_t ... |
'use strict';
describe('Controller: AnalysisarealistCtrl', function () {
// load the controller's module
beforeEach(module('matrixMdmApp'));
var AnalysisarealistCtrl,
scope;
// Initialize the controller and a mock scope
beforeEach(inject(function ($controller, $rootScope) {
scope = $rootScope.$new... |
<?xml version="1.0" encoding="iso-8859-1"?>
<!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>
<!-- template designed by Marco Von Ballmoos -->
<title>Docs for page DataBinding.php</title>... |
A simple Threejs / WebGL adaptation of the legendary round based artillery game Scorched Earth for DOS.
# Play now
You can play the current state of the game [online here](http://scorched-world.johannesneumeier.com/).
## About
This adaptation is a learning exercise in using Threejs and WebGL rendering that takes cons... |
package eu.neclab.iotplatform.ngsiemulator.utils;
import java.lang.reflect.Field;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
import eu.neclab.iotplatform.iotbroker.commons.ContentType;
public class ServerConfiguration {
public final static String DEFAULT_PORTNUMBERS = "8001";
public f... |
<!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_67) on Wed Oct 08 15:57:24 PDT 2014 -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>Uses of Class org.a... |
from utile import pretty_xml, xml_to_dict, element_to_dict
from testsuite.support import etree, TestCase
import unittest
XML_DATA = "<html><body><h1>test1</h1><h2>test2</h2></body></html>"
XML_PRETTY = """\
<html>
<body>
<h1>test1</h1>
<h2>test2</h2>
</body>
</html>
"""
XML_DICT = {'body': {'h2': 'test2', ... |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="HandheldFriendly" content="True" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="robots" content="index, follow" />
<link href="http... |
dojo.provide("dojo.nls.rotogame_da");
|
package org.xcolab.view.pages.proposals.tabs.access;
import org.xcolab.client.admin.attributes.configuration.ConfigurationAttributeKey;
import org.xcolab.client.contest.StaticContestContext;
import org.xcolab.client.contest.pojo.wrapper.ContestWrapper;
import org.xcolab.util.enums.contest.ContestTier;
import org.xcola... |
/* Tabulator v4.7.1 (c) Oliver Folkerd */
var ReactiveData = function ReactiveData(table) {
this.table = table; //hold Tabulator object
this.data = false;
this.blocked = false; //block reactivity while performing update
this.origFuncs = {}; // hold original data array functions to allow replacement after data is d... |
package tap
import (
"bytes"
"fmt"
"net"
"os/exec"
"strings"
)
var default_gateway net.IP
var default_gateway_if_index string
func find_gateway(ip_mask *net.IPNet) (ip net.IP, dev string, err error) {
if default_gateway != nil {
return default_gateway, default_gateway_if_index, nil
}
sargs := "interface ip... |
using namespace boost;
using namespace std;
namespace impala {
const int RawValue::ASCII_PRECISION = 16; // print 16 digits for double/float
void RawValue::PrintValueAsBytes(const void* value, const ColumnType& type,
stringstream* stream) {
if (value == NULL) return;
const char*... |
from ..analyze import analyze, analyze_storage
from ..testing import Example
import BTrees.IIBTree
import BTrees.OOBTree
import Products.PythonScripts.PythonScript
import mock
import persistent.list
import persistent.mapping
import transaction
import zodb.py3migrate.analyze
import zodbpickle
def test_analyze__main__1... |
import java.util.Scanner;
public class Palindrom {
public static void main(String[] args)
{
Scanner sc = new Scanner(System.in);
System.out.println("Palindrome Tester");
System.out.println("Please enter a word:");
String input = sc.nextLine().toLowerCase();
String result = new StringBuilder(input).reve... |

[](https://travis-ci.org/polybot-io/masterbot-node)
[](https://github.com/sindr... |
#pragma once
#include <aws/fms/FMS_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/core/utils/memory/stl/AWSVector.h>
#include <aws/fms/model/Route.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespa... |
@interface DOMCalibrationDataViewController ()
@property (nonatomic, weak) IBOutlet UITextView *textView;
@end
@implementation DOMCalibrationDataViewController
- (instancetype)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundle... |
All the options below can easily be added to your `Deliverfile`. The great thing: if you use `fastlane` you can use all these options from your `Fastfile` too, for example:
```ruby
deliver(
submit_for_review: true,
metadata_path: "../folder"
)
```
##### app_identifier
The bundle identifier (e.g. "com.krausefx.app... |
- Dates: April 27, 2017 - April 28, 2017
- Location: Austin, TX
- Event Website: http://scisoftdays.org/pages/2017_details.html
This event focuses on sharing best practices, tools, and technologies among scientific software communities.
**Description:** Scientific Software Days (SSD) is a successful regional confere... |
extern void ReplyToCommand(WP_Message *message, int fSuccess, int fCritical, void *ptr, int size);
extern const CommandHandlerLookup c_Lookup_Request[];
extern const CommandHandlerLookup c_Lookup_Reply[];
//////////////////////////////////////////
#ifdef __cplusplus
extern "C"
{
#endif
uint8_t WP_App_ProcessHea... |
package org.sunger.net.util;
import java.util.Calendar;
import java.util.Date;
/**
* Created by sunger on 15/11/10.
*/
public class DateUtils {
public static String timeStamp2Date(String timestampString) {
Long timestamp = Long.parseLong(timestampString) * 1000;
String date = new java.text.Simp... |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>equations: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.c... |
"""This is a simple HTTP/FTP/TCP/UDP/BASIC_AUTH_PROXY/WEBSOCKET server used for
testing Chrome.
It supports several test URLs, as specified by the handlers in TestPageHandler.
By default, it listens on an ephemeral port and sends the port number back to
the originating process over a pipe. The originating process can ... |
SYNONYM
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
null
#### Original name
null
### Remarks
null |
using Maple.Core;
using Maple.Domain;
namespace Maple
{
public class AudioDevice : ObservableObject, IIsSelected, ISequence, IAudioDevice
{
private bool _isSelected;
public bool IsSelected
{
get { return _isSelected; }
set { SetValue(ref _isSelected, value); }... |
#include <assert.h>
#include <errno.h>
#include <stdio.h> /* FILE, stderr */
#include <stdlib.h> /* qsort */
#include <string.h> /* strcmp, strlen */
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h> /* read() */
#include <dirent.h>
#include <event2/util.h> /* evutil_ascii_strcasecmp() */
#include "... |
"""wiktionary.
Description
-----------
Interface to Danish part of the different Wiktionaries.
"""
import requests
API_URL_PATTERN = "https://{}.wiktionary.org/w/api.php"
def get_nouns(languages=('da', 'de', 'en')):
"""Return Danish nouns from Wiktionary.
The function will query the API of the differen... |
/*
Mejoras:
- que un obj solo se suscriba al on "change" de todos sus hijos sólo si él tiene un escucha para "change". Si no, nada.
- los obj deberían crear un getter del tipo que provee el nuevo api de getters y setters.
Cosa de que se pueda hacer:
var otro = obj.coso.lo.otro; // y eso invoca get("coso").get("l... |
module.exports = require("./lib/expressError");
|
'''
'''
from pi_trees_lib.pi_trees_lib import *
#from task import *
from utilities import *
import time
# A class to track global variables
class BlackBoard():
def __init__(self):
# A list to store rooms and tasks
self.task_list = list()
self.emotion = 0.1,0.5
#... |
#include "postgres.h"
#include "access/printtup.h"
#include "catalog/heap.h"
#include "commands/trigger.h"
#include "executor/spi_priv.h"
#include "utils/lsyscache.h"
#include "utils/memutils.h"
#include "utils/typcache.h"
#include "utils/resscheduler.h"
#include "cdb/cdbvars.h"
#include "miscadmin.h"
#include "post... |
using NUnit.Framework;
namespace ATZ.Parsers.Tests
{
[TestFixture]
public class TokenTypesShould
{
private class Letter : ITokenType
{
public static readonly Letter A = new Letter();
public static readonly Letter B = new Letter();
}
private class Nu... |
package jbomberman.application.server;
import jbomberman.game.Action;
import jbomberman.game.ActionSerializer;
import jbomberman.game.ActionType;
import jbomberman.game.Party;
import jbomberman.game.Player;
import jbomberman.game.Timer;
import jbomberman.game.server.ServerGame;
import jbomberman.network.NetworkFacade;... |
import type { PossiblyStaleNavigationState } from '@react-navigation/native';
import _memoize from 'lodash/memoize';
import * as React from 'react';
import { createSelector } from 'reselect';
import { nonThreadCalendarFiltersSelector } from 'lib/selectors/calendar-filter-selectors';
import { currentCalendarQuery } fro... |
package de.knightsoftnet.mtwidgets.client.ui.widget.features;
import elemental.html.ValidityState;
public interface HasValidity {
/**
* A localized message that describes the validation constraints that the control does not satisfy
* (if any). This is the empty string if the control is not a candidate for co... |
// Copyright 2019 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.
package org.chromium.chrome.browser.autofill_assistant.carousel;
import android.content.Context;
import android.content.res.TypedArray;
import android.gra... |
define(function(require) {
'use strict';
var fieldDefaultValues = {
field_translatable: true,
field_immutable: false,
field_editable: true,
field_writable: true,
field_indexed: true,
field_exact: false
};
var fieldTitles = {
selectionLists_key:... |
from base64 import urlsafe_b64decode
import json
import hashlib
import hmac
from time import time
class LoginException(Exception):
pass
def cherrypy_authenticate(fb_app_id, fb_app_secret):
import cherrypy
cherrypy.request.fb_user_id = None
name = "fbsr_" + fb_app_id
if name not in cherrypy.request... |
layout: page
title: Silva Media Award Ceremony
date: 2016-05-24
author: Nicholas Blanchard
tags: weekly links, java
status: published
summary: Curabitur mattis gravida tincidunt. In suscipit lacus sit.
banner: images/banner/leisure-03.jpg
booking:
startDate: 03/01/2019
endDate: 03/02/2019
ctyhocn: LITMMHX
group... |
using System;
using System.ComponentModel;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
namespace GameOverlay.PInvoke
{
internal static class DynamicImport
{
[DllImport("kernel32.dll", EntryPoint = "GetProcAddress", SetLastError = true, CharSet = CharSet.Ansi)]
pri... |
define(['util/vertex/urlFormatters'], function(f) {
describe('vertex formatters', function() {
it('should have be able to create vertex urls', function() {
f.vertexUrl.url(['1,', '2'], 'work space')
.should.equal(location.href + '#v=1%2C,2&w=work%20space')
f.vertex... |
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
#nullable disable warnings
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Collections.Immutable;
using Sy... |
export default class ASTBase {
constructor() {
this.class = this.getClass();
}
getClass() {
return this.constructor.name.replace(/^AST/, "");
}
isPrimitive() { return false; }
pretty(engine=null,binding={}) {
return JSON.stringify(this);
}
extractVariables() {
return [];
}
ground(engine, binding=... |
from .sqlite3_util import sqlite3_quote_name
def bayesdb_nullify(bdb, table, value, columns=None):
qt = sqlite3_quote_name(table)
if columns is None:
cursor = bdb.sql_execute('PRAGMA table_info(%s)' % (qt,))
columns = [row[1] for row in cursor]
changes = bdb._sqlite3.totalchanges()
for... |