text
stringlengths
2
1.04M
meta
dict
package Dodge; import java.awt.Image; import java.awt.Graphics; import java.awt.Graphics2D; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.KeyEvent; import java.awt.event.KeyAdapter; import javax.swing.JPanel; import javax.swing.Timer; /** * The credits panel. * @aut...
{ "content_hash": "2b973116fde3a2040c66bd10ed00f319", "timestamp": "", "source": "github", "line_count": 137, "max_line_length": 100, "avg_line_length": 38.75912408759124, "alnum_prop": 0.57984934086629, "repo_name": "ohjay/Dodge", "id": "adc5c44d5f3f87df05bf0b0ad01063907e51974d", "size": "5310", ...
ACCEPTED #### According to Index Fungorum #### Published in Ann. Mo. bot. Gdn 13(3): 250 (1926) #### Original name Corticium abeuns Burt ### Remarks null
{ "content_hash": "5905cff06c92ccb42d401755e7ecbf53", "timestamp": "", "source": "github", "line_count": 13, "max_line_length": 35, "avg_line_length": 12.076923076923077, "alnum_prop": 0.6751592356687898, "repo_name": "mdoering/backbone", "id": "9fb644a88ccca6d36506badaa4f1bbe4914ce114", "size": "20...
package io.searchbox.core; import io.searchbox.action.AbstractDocumentTargetedAction; import io.searchbox.action.BulkableAction; import io.searchbox.action.GenericResultAbstractDocumentTargetedAction; import io.searchbox.client.JestResult; /** * @author Dogukan Sonmez * @author cihat keser */ public class Delete e...
{ "content_hash": "f9fb0335f59d388195c18582607c1ae2", "timestamp": "", "source": "github", "line_count": 45, "max_line_length": 111, "avg_line_length": 22.666666666666668, "alnum_prop": 0.6735294117647059, "repo_name": "VlasShatokhin/Jest", "id": "62d197e01a8d8cc333e391d9fcda990abcb5c05e", "size": "...
import datetime import io from os import linesep import re import sys from pip._vendor.toml.tz import TomlTz if sys.version_info < (3,): _range = xrange # noqa: F821 else: unicode = str _range = range basestring = str unichr = chr def _detect_pathlib_path(p): if (3, 4) <= sys.version_info: ...
{ "content_hash": "52b686be260400446ced03ba8d8f3df0", "timestamp": "", "source": "github", "line_count": 1057, "max_line_length": 80, "avg_line_length": 36.85335856196783, "alnum_prop": 0.4279406479437285, "repo_name": "jsirois/pex", "id": "e071100de0f3ef75b2149857861c2f60fc4e89af", "size": "38954",...
<!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...
{ "content_hash": "4cc66e79b48dcc6a6425e88064ff98a2", "timestamp": "", "source": "github", "line_count": 97, "max_line_length": 154, "avg_line_length": 39.845360824742265, "alnum_prop": 0.6470892626131953, "repo_name": "v8-dox/v8-dox.github.io", "id": "b05cbcbceabc4e2fd1a3b43285e6bf8800509269", "siz...
<!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.6.0_65) on Wed Apr 29 22:30:53 PDT 2015 --> <TITLE> Uses of Class org.luaj.vm2.lib.PackageLib.searchpath (Luaj API) </TITLE> <META NAME="date" CONTENT="...
{ "content_hash": "21bdb8147cc2f3901841309911cc55c1", "timestamp": "", "source": "github", "line_count": 144, "max_line_length": 211, "avg_line_length": 41.77777777777778, "alnum_prop": 0.6115359042553191, "repo_name": "ArcherSys/ArcherSys", "id": "fdad79e0a266abb53dd790bc4d68be00146aba81", "size": ...
<?php $lang = $_GET['lang']; if (!$lang) { $lang = $_REQUEST['lang']; } if (!$lang) { $lang = 'en'; } setcookie('lang', $lang); ?> <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> <html> <head> <title> Test for calendar.php </title> <?php // put here the correct path to "calendar.php"; don't move the file // ...
{ "content_hash": "5f89cb28a3c629e4fef6d6426fd8eb3b", "timestamp": "", "source": "github", "line_count": 116, "max_line_length": 129, "avg_line_length": 28.267241379310345, "alnum_prop": 0.5596218359255871, "repo_name": "kalebecalixto/webEntregas", "id": "c9c2e288da15df5d7c991a0c901e4818b0a0a024", "...
if [[ $TRAVIS_BRANCH =~ (^one-) ]]; then export PREVIOUS_ONE=~/previous.one export CURRENT_ONE=$TRAVIS_BUILD_DIR export PREVIOUS_ONE_INSTALL=~/previous.install export CURRENT_ONE_INSTALL=~/current.install # Checkout previous code base git clone https://github.com/OpenNebula/one $PREVIOUS_ONE ...
{ "content_hash": "e6fba8628607f32388855b7e847db8f8", "timestamp": "", "source": "github", "line_count": 35, "max_line_length": 86, "avg_line_length": 37.4, "alnum_prop": 0.6264323911382735, "repo_name": "baby-gnu/one", "id": "920015cc3e83dd34bb17ff892788d6e49e422d10", "size": "1461", "binary": fa...
#include <math.h> #include <assert.h> #include <string.h> #include "mex.h" /* * Fast image subsampling. * This is used to construct the feature pyramid. */ #define bzero(a, b) memset(a, 0, b) int round(float a) { float tmp = a-(int)a; if(tmp>=0.5) return (int)a+1; else return (int)a; } // struct used for ...
{ "content_hash": "a1854de9eb19af6493a9a3d72504f21a", "timestamp": "", "source": "github", "line_count": 133, "max_line_length": 79, "avg_line_length": 26.49624060150376, "alnum_prop": 0.6129398410896708, "repo_name": "ApprenticeZ/voc-release-3.1-win", "id": "53b00b3501c465dcdcea767d01435963d82b042a",...
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title>持续集成 · 多少光年</title> <meta name="renderer" content="webkit"/> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/> <meta http-equiv="Cache-Contro...
{ "content_hash": "f70cc2a27097e836a713043692932bd5", "timestamp": "", "source": "github", "line_count": 362, "max_line_length": 213, "avg_line_length": 37.889502762430936, "alnum_prop": 0.5624817731116943, "repo_name": "tietang/tietang.github.io", "id": "eda6500c5076996fd1f5ad8f9538f6b281d15f85", "...
<?php require_once 'Zend/Mobile/Push/Message/Abstract.php'; /** * @category Zend * @package Zend_Mobile_Push_Message * @subpackage UnitTests * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License * ...
{ "content_hash": "aea6a8aa215b88d7d74313e1b57615f6", "timestamp": "", "source": "github", "line_count": 86, "max_line_length": 87, "avg_line_length": 25.61627906976744, "alnum_prop": 0.5932818883340899, "repo_name": "rbwest/Suma", "id": "60f7e040135ccb3b5cd73b4fc67afaefb00e4ff1", "size": "2929", ...
+++ categories = ["Releases"] tags = ["Releases"] title = "BookStack Release v22.07" date = 2022-07-28T13:30:00Z author = "Dan Brown" image = "/images/blog-cover-images/library-chaojie-ni.jpg" slug = "bookstack-release-v22-07" draft = false +++ For July we have what could be considered a "stepping-stone" release since...
{ "content_hash": "d7a6afbf9220c8a9499ee159e80aa421", "timestamp": "", "source": "github", "line_count": 227, "max_line_length": 439, "avg_line_length": 64.0748898678414, "alnum_prop": 0.7738741835682366, "repo_name": "BookStackApp/website", "id": "75a3bf942a78386f338b160a0ea8e4203074a6e9", "size": ...
// Licensed to the Software Freedom Conservancy (SFC) under one // or more contributor license agreements. See the NOTICE file // distributed with this work for additional information // regarding copyright ownership. The SFC licenses this file // to you under the Apache License, Version 2.0 (the // "License"); you m...
{ "content_hash": "49b41d95eda28ba6b642ca5aae69ba3a", "timestamp": "", "source": "github", "line_count": 700, "max_line_length": 194, "avg_line_length": 28.464285714285715, "alnum_prop": 0.6109410288582183, "repo_name": "sankha93/selenium", "id": "bbfff06e8b296c697e4f01fb4c2a97437fb80a82", "size": "...
RSpec.describe Mutant::Integration do let(:class_under_test) do Class.new(described_class) end let(:object) { class_under_test.new(Mutant::Config::DEFAULT) } describe '#setup' do subject { object.setup } it_should_behave_like 'a command method' end describe '.setup' do subject { describe...
{ "content_hash": "a77a93a9bd2de450e945cd2ad56c3383", "timestamp": "", "source": "github", "line_count": 57, "max_line_length": 64, "avg_line_length": 20.596491228070175, "alnum_prop": 0.5996592844974447, "repo_name": "kbrock/mutant", "id": "b6411d9171964538149764642307a6a3fb19ad08", "size": "1174",...
package com.craig.gebot.models; import com.google.gson.annotations.Expose; import com.google.gson.annotations.SerializedName; public class Details { @SerializedName("isSuffix") @Expose private String isSuffix; @SerializedName("recruiting") @Expose private String recruiting; @SerializedN...
{ "content_hash": "9e124f590cefeb319d4d8d548a7b273d", "timestamp": "", "source": "github", "line_count": 67, "max_line_length": 50, "avg_line_length": 18.208955223880597, "alnum_prop": 0.6204918032786885, "repo_name": "crai9/GeBot", "id": "42e52417f5bd4aa95ef4cbd70298c3fabcf7e87d", "size": "1220", ...
module.exports = function() { var HoerSuppe = new (require('controls/hoersuppe_adapter'))(); var self = Ti.UI.createTabGroup({ fullscreen : true, exitOnClose : true, orientationModes : [Ti.UI.PORTRAIT, Ti.UI.UPSIDE_PORTRAIT] }); var tab1 = Ti.UI.createTab({ window : require('ui/maincontainer.window')(self...
{ "content_hash": "fec913aa2be8877b8ed0a5445ad17a99", "timestamp": "", "source": "github", "line_count": 103, "max_line_length": 72, "avg_line_length": 29.145631067961165, "alnum_prop": 0.6492338441039307, "repo_name": "AppWerft/Hoersuppe", "id": "e24b87f2984307a6082c83c579bb503a204dfe5a", "size": "...
title: John MacFarlane summary: Philosophy professor, developer (pandoc, gitit) categories: - developer - linux - mac - professor --- ### Who are you, and what do you do? [I'm](http://johnmacfarlane.net/ "John's website.") a philosophy professor at UC Berkeley. I'm also a hobbyist programmer with several open-source ...
{ "content_hash": "27bd0e243aa3f808f14d452e61f8aade", "timestamp": "", "source": "github", "line_count": 87, "max_line_length": 460, "avg_line_length": 91.60919540229885, "alnum_prop": 0.7486825595984944, "repo_name": "ivuk/usesthis", "id": "533f7dd87c7187a2f662892956927b7b72c56b15", "size": "7974",...
package com.github.dieterdepaepe.jsearch.search.constructive.cost; import com.github.dieterdepaepe.jsearch.search.constructive.Cost; /** * A cost consisting of a single double value. * @author Dieter De Paepe */ public class DoubleCost implements Cost { private final double value; public static DoubleCost...
{ "content_hash": "1f5cead52d172393527c7734ffab2689", "timestamp": "", "source": "github", "line_count": 58, "max_line_length": 66, "avg_line_length": 23.637931034482758, "alnum_prop": 0.6192560175054704, "repo_name": "DieterDePaepe/JSearch", "id": "3dfd58e400ebfc981d32e6767142f7c3fbc9ac57", "size":...
<mvc:View controllerName="sap.ui.demo.cart.view.NotFound" xmlns:mvc="sap.ui.core.mvc" xmlns:core="sap.ui.core" xmlns:h="http://www.w3.org/1999/xhtml" xmlns="sap.m"> <!-- controllerName="views.notFound"--> <Page title="Not Found" showNavButton="{device>/isPhone}" navButtonPress="handleNavBack" enableScro...
{ "content_hash": "0f443be26e2c9e9160d0ab69b80df75b", "timestamp": "", "source": "github", "line_count": 20, "max_line_length": 48, "avg_line_length": 23.2, "alnum_prop": 0.6767241379310345, "repo_name": "openui5/packaged-sap.m", "id": "147414d69c4cdab21e34ffcacec41cf5e440b565", "size": "464", "bi...
package com.microsoft.azure.management.datafactory.v2018_06_01; import java.util.List; import com.fasterxml.jackson.annotation.JsonProperty; import com.fasterxml.jackson.annotation.JsonTypeInfo; import com.fasterxml.jackson.annotation.JsonTypeName; /** * A copy activity source for web page table. */ @JsonTypeInfo...
{ "content_hash": "0f3f98aaf445463175a3acdf264d1add", "timestamp": "", "source": "github", "line_count": 43, "max_line_length": 144, "avg_line_length": 35.72093023255814, "alnum_prop": 0.728515625, "repo_name": "selvasingh/azure-sdk-for-java", "id": "a73791457904f82f39a9a7992620881befb5deb2", "size"...
package org.springframework.orm.jpa.support; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.springframework.orm.jpa.EntityManagerFactoryUtils; import org.springframework.orm.jpa.EntityManagerHolder; import org.springframework.transaction.support.TransactionSynchroniz...
{ "content_hash": "b16286ae516e375f82bab97bf718d16a", "timestamp": "", "source": "github", "line_count": 104, "max_line_length": 105, "avg_line_length": 32, "alnum_prop": 0.8052884615384616, "repo_name": "leogoing/spring_jeesite", "id": "eabd41ecb4491f74880fcc99bbf6110d1fd89286", "size": "3943", "...
namespace OfficeDevPnP.Core.Framework.Authentication { using Microsoft.Extensions.Logging; using System; internal static class LoggingExtensions { private static Action<ILogger, string, Exception> _tokenValidationFailed; private static Action<ILogger, string, Exception> _tokenValidatio...
{ "content_hash": "a6c7083924f5a56ae84af688413abeeb", "timestamp": "", "source": "github", "line_count": 53, "max_line_length": 97, "avg_line_length": 38.37735849056604, "alnum_prop": 0.6238938053097345, "repo_name": "OneBitSoftware/OfficeDevPnP.Core.Framework.Authentication", "id": "67c966b0bc6c87a23...
package org.wso2.carbon.event.core.internal.delivery.jms; import org.apache.axiom.om.OMElement; import org.apache.axis2.AxisFault; import org.apache.axis2.context.ConfigurationContext; import org.apache.axis2.context.ServiceContext; import org.apache.axis2.transport.http.HTTPConstants; import org.wso2.carbon.event.c...
{ "content_hash": "213e545d1e7ae47a3383d46342dcf57b", "timestamp": "", "source": "github", "line_count": 120, "max_line_length": 154, "avg_line_length": 56.95, "alnum_prop": 0.6940298507462687, "repo_name": "lankavitharana/carbon-commons", "id": "e8a5f733e43dd576591ce77ad504873530af6b59", "size": "7...
require 'ffi' require 'rbconfig' module ImgLib extend FFI::Library case RbConfig::CONFIG['host_os'] when /mswin|mingw/ ffi_lib 'lib/library/iupimglib.lib' when /linux|cygwin/ ffi_lib 'libiupimglib' else raise Exception, 'iup libraries not found for this platform' end attach_function :IupIma...
{ "content_hash": "722f248ef37615ebab9ab5be7554de9b", "timestamp": "", "source": "github", "line_count": 17, "max_line_length": 64, "avg_line_length": 20.294117647058822, "alnum_prop": 0.7072463768115942, "repo_name": "petercrlane/ruby-iup-binding", "id": "663e6678eb953f795a110b13db5169950a368379", ...
(function () { 'use strict'; angular .module('ongbook') .factory('registerServiceApi',registerServiceApi); registerServiceApi.$inject = ['$http','apiUrl']; function registerServiceApi( $http, apiUrl ) { var _registerUser = function ( objParam ) { return $http.post( apiUrl + 'auth/local/register...
{ "content_hash": "9b1b0683f31fb7df39242c92e831c59f", "timestamp": "", "source": "github", "line_count": 19, "max_line_length": 65, "avg_line_length": 20.789473684210527, "alnum_prop": 0.6481012658227848, "repo_name": "Ongbook/ongbook-front-end", "id": "63d19a8a63b22a86d368cb9b77b59b11234cb2b6", "si...
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE457_Use_of_Uninitialized_Variable__struct_array_declare_no_init_02.c Label Definition File: CWE457_Use_of_Uninitialized_Variable.c_array.label.xml Template File: sources-sinks-02.tmpl.c */ /* * @description * CWE: 457 Use of Uninitialized Variable * BadSource:...
{ "content_hash": "8fe8bad842bce5ed5c44d90c1f580321", "timestamp": "", "source": "github", "line_count": 224, "max_line_length": 86, "avg_line_length": 25.290178571428573, "alnum_prop": 0.5101500441306267, "repo_name": "maurer/tiamat", "id": "0fffd2a1aa2dea1309d21cc72ba2f6c6bf0e22f6", "size": "5665"...
using System; using System.Data; using System.Data.Common; using System.Drawing; using System.ComponentModel; using System.ComponentModel.Design.Serialization; using Alphora.Dataphor.DAE; using Alphora.Dataphor.DAE.Client.Design; namespace Alphora.Dataphor.DAE.Client.Provider { /// <summary> Dataphor D...
{ "content_hash": "5ba5024eb4ab394cf8cca8ded97349a6", "timestamp": "", "source": "github", "line_count": 365, "max_line_length": 113, "avg_line_length": 24.76986301369863, "alnum_prop": 0.638867381926778, "repo_name": "n8allan/Dataphor", "id": "5b382587149d1fcfac130bcb73ad9b94ccfb438e", "size": "921...
Template.emailVerification.helpers({ emailAddress: function() { return Meteor.user().emails[0].address; } });
{ "content_hash": "e8d4e7bac891130a796b80796b32294f", "timestamp": "", "source": "github", "line_count": 5, "max_line_length": 47, "avg_line_length": 25, "alnum_prop": 0.656, "repo_name": "HorizonPlatform/Viewers", "id": "444359bd4aed37c3d0d6d36c1984e4a1dce06dd5", "size": "125", "binary": false, ...
package alluxio.wire; import com.google.common.base.MoreObjects; import java.io.Serializable; import java.util.Map; import javax.annotation.concurrent.NotThreadSafe; /** * Alluxio WebUI overview information. */ @NotThreadSafe public final class MasterWebUIInit implements Serializable { private static final lon...
{ "content_hash": "46e9a6fbf198046e95a47be3b2b10adf", "timestamp": "", "source": "github", "line_count": 180, "max_line_length": 95, "avg_line_length": 23.455555555555556, "alnum_prop": 0.7032212221695878, "repo_name": "wwjiang007/alluxio", "id": "7cc51c133df15c7d1ed53be8cab8750da5e998d3", "size": "...
package org.kiji.schema; import org.kiji.annotations.ApiAudience; import org.kiji.annotations.ApiStability; /** Runtime exception thrown when encoding a cell's content fails. */ @ApiAudience.Public @ApiStability.Stable public final class KijiEncodingException extends RuntimeException { /** * Initializes an en...
{ "content_hash": "a3b3d5a727919b772c349985587e0516", "timestamp": "", "source": "github", "line_count": 40, "max_line_length": 69, "avg_line_length": 22.475, "alnum_prop": 0.71412680756396, "repo_name": "iafek/kiji-base", "id": "465b0837eb7acd5adc30acb572957bd0967d4eb2", "size": "1615", "binary":...
// TODO(unassigned): use crypto/DSA.h #include <cryptopp/dsa.h> // TODO(unassigned): use crypto/SHA.h #include <cryptopp/sha.h> #include <cryptopp/dh.h> #include <stdio.h> #include <time.h> #include <string> #include "Identity.h" #include "RouterContext.h" #include "crypto/CryptoConst.h" #include "crypto/CryptoPP...
{ "content_hash": "ff319d6bd9a7bae45a9a538c469bc623", "timestamp": "", "source": "github", "line_count": 623, "max_line_length": 109, "avg_line_length": 30.86195826645265, "alnum_prop": 0.6506995371092734, "repo_name": "majestrate/kovri", "id": "6166d96ad6c54da8f87e76999ee4db552bd212c1", "size": "20...
// this file was created by SCC 2019 and is largely a derived work from the // original java class/interface package org.orekit.python; import org.orekit.time.AbsoluteDate; import org.orekit.time.TimeStamped; import org.orekit.utils.TimeStampedGenerator; import java.util.List; public class PythonTimeStampedGenerat...
{ "content_hash": "cf7e9f823733c38b0c9450483448cc3f", "timestamp": "", "source": "github", "line_count": 68, "max_line_length": 99, "avg_line_length": 36.30882352941177, "alnum_prop": 0.6788173349534224, "repo_name": "petrushy/Orekit", "id": "24514b533378d273a46d1971b0879caefb05d29f", "size": "3305"...
// TODO make it require.js compatible /** * Hook the keyboard * * @name hookKeyboard * @memberOf tQuery.RatamahattaMD2Character */ tQuery.RatamahattaMD2Character.registerInstance('hookKeyboard', function(opts){ // handle parameters opts = tQuery.extend(opts, { loop : tQuery.world.loop() }); // create the loo...
{ "content_hash": "ea3f6648f94ff96cd426fbfd24c392d6", "timestamp": "", "source": "github", "line_count": 66, "max_line_length": 81, "avg_line_length": 26.37878787878788, "alnum_prop": 0.7151062607696727, "repo_name": "jeromeetienne/tquery", "id": "eb25798091c65b6a06be5f54be97f2d1b0f7c6cf", "size": "...
@interface TAAddFavoriteAction : TAListItemAction @end
{ "content_hash": "cfe61dfd9e10bb6334724dae7ff57578", "timestamp": "", "source": "github", "line_count": 3, "max_line_length": 49, "avg_line_length": 18.666666666666668, "alnum_prop": 0.8392857142857143, "repo_name": "instinctools/TAMovieViewer", "id": "774f58225be2096132aefa3f9113fca2cb8ab6bd", "si...
<!DOCTYPE html> <html lang="en"> <head> <title>UIImage Extension 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> <s...
{ "content_hash": "f3b99cfe2dafe970296e0a5e5ce98522", "timestamp": "", "source": "github", "line_count": 826, "max_line_length": 310, "avg_line_length": 46.26271186440678, "alnum_prop": 0.4815900348049093, "repo_name": "nathantannar4/NTComponents", "id": "12187f511a5017bc866e615a6ee44f834700afd8", "...
cdb.geo.geocoder.YAHOO = { keys: { app_id: 'nLQPTdTV34FB9L3yK2dCXydWXRv3ZKzyu_BdCSrmCBAM1HgGErsCyCbBbVP2Yg--' }, geocode: function (address, callback) { address = address.toLowerCase() .replace(/é/g, 'e') .replace(/á/g, 'a') .replace(/í/g, 'i') .replace(/ó/g, 'o') .replace(/...
{ "content_hash": "357a1a64c4a0327e2a89c8089b794ea0", "timestamp": "", "source": "github", "line_count": 54, "max_line_length": 260, "avg_line_length": 29.14814814814815, "alnum_prop": 0.5508259212198221, "repo_name": "CartoDB/cartodb.js", "id": "046a1d6040892b950b56f2a17b97d19b8b2bd0ef", "size": "1...
// // //import java.io.File; //import java.io.FileInputStream; //import java.io.FileNotFoundException; //import java.io.InputStream; //import java.util.ArrayList; //import java.util.List; // //import org.apache.log4j.Logger; //import org.junit.Test; // //import com.msaf.validador.consultaonline.ValidadorFac...
{ "content_hash": "c676f4d6ef247e532a56d8fbc8ae4357", "timestamp": "", "source": "github", "line_count": 82, "max_line_length": 96, "avg_line_length": 30.048780487804876, "alnum_prop": 0.6866883116883117, "repo_name": "darciopacifico/omr", "id": "68520e1a295ad60b9e9b99193e03a53a087184c0", "size": "2...
id: 776 title: Backup PPA author: Stefano Marzorati layout: post guid: http://ubbunti.wordpress.com/?p=776 permalink: /backup-ppa/ authorsure_include_css: - dsq_thread_id: - 2341064310 categories: - Linux tags: - backup - ppa - reinstall --- Generatore di script per reinstallare i programmi aggiungendo pri...
{ "content_hash": "c43688fb165bd01a286787900152ea01", "timestamp": "", "source": "github", "line_count": 44, "max_line_length": 105, "avg_line_length": 23.09090909090909, "alnum_prop": 0.75, "repo_name": "marste/tech", "id": "99f031ae4a9dd08c6c06734e72e074f62361eddd", "size": "1020", "binary": fal...
import javafx.application.Application; import javafx.scene.Scene; import javafx.stage.Stage; public class Remote extends Application { @Override public void start(Stage primaryStage) { try { RemoteContent root = new RemoteContent(primaryStage); Scene scene = new Scene(root, 900, 600); // s...
{ "content_hash": "dcbe65c916bb6442990b942d825e5843", "timestamp": "", "source": "github", "line_count": 37, "max_line_length": 93, "avg_line_length": 23.91891891891892, "alnum_prop": 0.6949152542372882, "repo_name": "ard71/VotingSoftware", "id": "b6a9c1ca6735ba046f585b788555bf8e655fc25c", "size": "...
"use strict"; const path = require('path'); const {app, BrowserWindow, ipcMain, Menu, nativeImage, Tray} = require('electron'); // const TimeBox = require('./renderer/controller/timebox'); const Timer = require('./renderer/controller/timer'); class TimeSpan { constructor() { this.timeSpan = null; this.time...
{ "content_hash": "94fa643a01f6e04f6a48fdf19347e9b5", "timestamp": "", "source": "github", "line_count": 100, "max_line_length": 83, "avg_line_length": 21.44, "alnum_prop": 0.5555037313432836, "repo_name": "QuantaSpace/TimeSpan", "id": "ba21a0d363cfe7e5ae171ab451a6d7503609ed6b", "size": "2144", "b...
<?php class Google_Service_DLP_GooglePrivacyDlpV2beta2InfoTypeTransformation extends Google_Collection { protected $collection_key = 'infoTypes'; protected $infoTypesType = 'Google_Service_DLP_GooglePrivacyDlpV2beta2InfoType'; protected $infoTypesDataType = 'array'; protected $primitiveTransformationType = 'G...
{ "content_hash": "b222876cf8d137e5101bf623a79b8cc9", "timestamp": "", "source": "github", "line_count": 40, "max_line_length": 136, "avg_line_length": 30.875, "alnum_prop": 0.7700404858299595, "repo_name": "dilawar/ncbs-hippo", "id": "6b8fd52f9d6df8bc338aa8d16bc52a75626b88a1", "size": "1825", "bi...
<!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_55) on Fri Jun 20 06:34:21 EDT 2014 --> <meta http-equiv="Content-Type" content="text/html" charset="utf-8"> <title>Uses of Class org.a...
{ "content_hash": "b75da80b0a9e78e35cadd638d4a6f76d", "timestamp": "", "source": "github", "line_count": 131, "max_line_length": 187, "avg_line_length": 38.41984732824427, "alnum_prop": 0.6149413868468111, "repo_name": "BibAlex/bhl_rails_4_solr", "id": "338fa0ac67ffc628678093f3d12ff22435431fe1", "si...
package com.twitter.finagle.loadbalancer import com.twitter.finagle._ import com.twitter.finagle.client.Transporter import com.twitter.finagle.service.DelayedFactory import com.twitter.finagle.stats._ import com.twitter.finagle.util.OnReady import com.twitter.util.{Activity, Future} import java.net.SocketAddress impor...
{ "content_hash": "ba971dc96dbb90c6125a5bc6efd90c82", "timestamp": "", "source": "github", "line_count": 198, "max_line_length": 96, "avg_line_length": 35.93434343434343, "alnum_prop": 0.6822206605762474, "repo_name": "mosesn/finagle", "id": "caff82d922e7e2eccb010951a021c4f8534d1fd3", "size": "7115"...
// Copyright 2016-present the Material Components for iOS authors. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 //...
{ "content_hash": "ea2951a84646a0ec120fd853963fddbe", "timestamp": "", "source": "github", "line_count": 573, "max_line_length": 114, "avg_line_length": 37.82373472949389, "alnum_prop": 0.7346929359110413, "repo_name": "material-components/material-components-ios", "id": "dcb09fc75a143de461a578e222c1b...
// // PureLayoutDefines.h // v1.0.1 // https://github.com/smileyborg/PureLayout // // Copyright (c) 2014 Tyler Fox // // This code is distributed under the terms and conditions of the MIT license. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associate...
{ "content_hash": "ac1a1cc4932e2346db83f7d085cd2f55", "timestamp": "", "source": "github", "line_count": 118, "max_line_length": 146, "avg_line_length": 49.559322033898304, "alnum_prop": 0.7070793433652531, "repo_name": "Hipo/PushTester", "id": "e1cd09430c8d3ebefa3874668d53368c0aa6affa", "size": "58...
module.exports = function(expect) { // needs chai-fs this.Then(/^a file "([^"]*)" is created$/, function(relativePath, callback) { var path = require('path'); expect(this).to.have.deep.property('project.root'); this.file = path.join(this.project.root, relativePath); expect(this.file).to.b...
{ "content_hash": "30e24e2b168f98fb8bb8d8c8afd0b01d", "timestamp": "", "source": "github", "line_count": 27, "max_line_length": 79, "avg_line_length": 24.77777777777778, "alnum_prop": 0.6188340807174888, "repo_name": "webforge-labs/generator-webforge", "id": "9650afd8f410643e81d452c91228d9c48b62f283",...
<?php unset($_COOKIE['auth']); setcookie('auth', 'DELETED', time()); session_start(); unset($_SESSION['user']); unset($_SESSION['tz']); unset($_SESSION['TWLI']); unset($_SESSION['ip']); unset($_SESSION['pass']); header("refresh:5;url=index.php"); echo " <html> <head> <link href='http://fonts.g...
{ "content_hash": "4772fdbcb4c6a22fd4039c8d1bd35625", "timestamp": "", "source": "github", "line_count": 48, "max_line_length": 137, "avg_line_length": 38.770833333333336, "alnum_prop": 0.47608812466415906, "repo_name": "WitheredGryphon/SlavehackLegacy", "id": "28bd952bec0bab33aa86056edb5381d2cba97172...
DO NOT EDIT BELOW - Generated by [godoc2md](http://godoc.org/github.com/davecheney/godoc2md) # . deadcode.go (c) David Rook - original version (c) Remy Oudompheng Changed the way program produces output so it goes to stdout vs stderr. Changed exit code so it only produces an error code if program fails, not just be...
{ "content_hash": "1e24e3360ac26104039149b600e2b97e", "timestamp": "", "source": "github", "line_count": 62, "max_line_length": 92, "avg_line_length": 17.322580645161292, "alnum_prop": 0.749534450651769, "repo_name": "hotei/deadcode", "id": "6b4eb4c8ee589ba75407c27521bcdbb481e061bd", "size": "1075",...
<?xml version="1.0" encoding="utf-8"?> <set xmlns:android="http://schemas.android.com/apk/res/android" android:shareInterpolator="false"> <translate android:duration="300" android:fromXDelta="0%" android:fromYDelta="0%" android:interpolator="@anim/overshoot_interpolator" ...
{ "content_hash": "9ed80312071ae718a0887febf8e1a5ab", "timestamp": "", "source": "github", "line_count": 12, "max_line_length": 63, "avg_line_length": 32, "alnum_prop": 0.640625, "repo_name": "litecoin-foundation/loafwallet-android", "id": "21bb0d01e260b02b798680669e1160066733f9bd", "size": "384", ...
/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8 // test_cyclic_ptrs.cpp // (C) Copyright 2002 Robert Ramey - http://www.rrsd.com . // Use, modification and distribution is subject to the Boost Software // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at //...
{ "content_hash": "bf3acb8a2698b3131a3e151707e396a9", "timestamp": "", "source": "github", "line_count": 203, "max_line_length": 81, "avg_line_length": 28.339901477832512, "alnum_prop": 0.5718755431948549, "repo_name": "Franky666/programmiersprachen-raytracer", "id": "e9b20d5ae1f624314c930bb6e1970cbdf...
ALTER TABLE AtomicTimeseries DROP CONSTRAINT AtomicTimeseries_FK; -- -------------------------------------------------------------------- -- CompositeTimeseries -- -------------------------------------------------------------------- ALTER TABLE CompositeTimeseries DROP CONSTRAINT CompositeTimeseries_FK; --...
{ "content_hash": "4ba05efb2b6bb912cbaf3089e9c75592", "timestamp": "", "source": "github", "line_count": 80, "max_line_length": 92, "avg_line_length": 41.2625, "alnum_prop": 0.28355043926083007, "repo_name": "yaozhihang/3DCityDB-Extensions-for-CityGML-ADEs", "id": "ae81a41cd60acfb7183154107dc253e9a908...
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.ComponentModel.DataAnnotations; using Sabio.Web.Domain; namespace Sabio.Web.Models.Requests { public class ProposalUpdateRequest: ProposalAddRequest { public int Id { get; set; } public ProposalSt...
{ "content_hash": "128d30a8a2e78632fdde214c422bc7eb", "timestamp": "", "source": "github", "line_count": 18, "max_line_length": 58, "avg_line_length": 25.333333333333332, "alnum_prop": 0.7039473684210527, "repo_name": "entrotech/deployapp", "id": "e50abb439fca5b7e5579d6ce800ede6e0315a726", "size": "...
Phire Categories Module ======================= Categories module for Phire CMS 2
{ "content_hash": "facc4afa0eae643c48e297a71cd4c26e", "timestamp": "", "source": "github", "line_count": 4, "max_line_length": 33, "avg_line_length": 20.75, "alnum_prop": 0.5903614457831325, "repo_name": "phirecms/phire-categories", "id": "ef80d51d1791ca513c08e14d7a5917ee4ccb17a1", "size": "83", "...
<?xml version="1.0" encoding="utf-8"?> <com.telly.floatingaction.ChattyListView xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@android:id/list" android:layout_width="match_parent" android:layout_height="match_parent" androi...
{ "content_hash": "a371dbdbcf8a689f49bcf992d18a6248", "timestamp": "", "source": "github", "line_count": 12, "max_line_length": 62, "avg_line_length": 37.083333333333336, "alnum_prop": 0.7168539325842697, "repo_name": "telly/FloatingAction", "id": "54e894b6748572d722858a21a532047d58b6ac41", "size": ...
Modernizr.addTest('localizedNumber', function() { var doc = document, el = document.createElement('div'), fake, root, input, diff; root = doc.body || (function() { var de = doc.documentElement; fake = true; return de.insertBefore(doc.createElement(...
{ "content_hash": "deecd245f335a2595ff05c8c33eb9e78", "timestamp": "", "source": "github", "line_count": 25, "max_line_length": 97, "avg_line_length": 32.76, "alnum_prop": 0.5824175824175825, "repo_name": "inergex/meetups", "id": "f522d79ff6df43b5a99159304823466c21a5eeaf", "size": "1202", "binary"...
<ompts:test> <ompts:testdescription>Test which checks the omp parallel copyin directive.</ ompts:testdescription> <ompts:ompversion>2.0</ompts:ompversion> <ompts:directive>omp parallel copyin</ompts:directive> <ompts:dependences>omp critical,omp threadprivate</ompts:dependences> <ompts:testcode> ! Changelog: IN...
{ "content_hash": "d6ea8ad9925b2d63bb0012f94c80246d", "timestamp": "", "source": "github", "line_count": 47, "max_line_length": 102, "avg_line_length": 30.80851063829787, "alnum_prop": 0.638121546961326, "repo_name": "dededong/goblin-core", "id": "714f149a925666812c05f52122a4b6658aa45d4a", "size": "...
package com.mysuite.mytrade.vendor.service.vendor; import com.mysuite.commons.exception.VendorDataNotFoundException; import com.mysuite.commons.exception.service.HttpServiceException; import com.mysuite.commons.exception.service.ServiceException; import com.mysuite.commons.log.AbstractLoggable; import com.mysuite.comm...
{ "content_hash": "becae458515f6a45a6c04c3027cd3444", "timestamp": "", "source": "github", "line_count": 124, "max_line_length": 166, "avg_line_length": 51.25, "alnum_prop": 0.7125098347757671, "repo_name": "TopDogJ/MySuite", "id": "e9cef76e7ed0dfcc72cd841ae2b96d2fb92ee4ab", "size": "6355", "binar...
<?php namespace Symfony\Component\Console\Output; use Symfony\Component\Console\Formatter\OutputFormatterInterface; /** * StreamOutput writes the output to a given stream. * * Usage: * * $output = new StreamOutput(fopen('php://stdout', 'w')); * * As `StreamOutput` can use any stream, you can ...
{ "content_hash": "112679123238ab82a206d36ecbebe682", "timestamp": "", "source": "github", "line_count": 96, "max_line_length": 140, "avg_line_length": 29.875, "alnum_prop": 0.5791492329149233, "repo_name": "eltondias/SistemaCobrancaBG", "id": "ecdec2350f5cb904ed6424c1f14bc58f2c5e16d6", "size": "310...
using System.Collections.Generic; namespace QuantConnect.Securities.Positions { /// <summary> /// Resolves position groups from a collection of positions. /// </summary> public interface IPositionGroupResolver { /// <summary> /// Attempts to group the specified positions into a ne...
{ "content_hash": "2136c18148c1ce81ef5270bf16894cdb", "timestamp": "", "source": "github", "line_count": 46, "max_line_length": 135, "avg_line_length": 48.78260869565217, "alnum_prop": 0.6711229946524064, "repo_name": "jameschch/Lean", "id": "9a94ae3e141e71a3a93d811fbe513b234398274a", "size": "2948"...
<?php namespace gromver\platform\core\modules\user\models; use yii\db\ActiveQuery; /** * Class UserQuery * @package yii2-platform-core * @author Gayazov Roman <gromver5@gmail.com> */ class UserQuery extends ActiveQuery { /** * Все элементы не отправленные в корзину * @return static */ pu...
{ "content_hash": "f7c87610bc2de70b5ba5423a84e15ea0", "timestamp": "", "source": "github", "line_count": 108, "max_line_length": 132, "avg_line_length": 25.296296296296298, "alnum_prop": 0.5603953147877013, "repo_name": "gromver/yii2-platform-core", "id": "a7349f6d4695d05bf2382303b4c17a6a7f7e65aa", ...
import { Calendar } from '@fullcalendar/core' import interactionPlugin from '@fullcalendar/interaction' import dayGridPlugin from '@fullcalendar/daygrid' import timeGridPlugin from '@fullcalendar/timegrid' import { getRectCenter } from '../lib/geom' import { DayGridViewWrapper } from '../lib/wrappers/DayGridViewWrapper...
{ "content_hash": "db7abf335fb68e96b47dc995b651a044", "timestamp": "", "source": "github", "line_count": 148, "max_line_length": 91, "avg_line_length": 28.4527027027027, "alnum_prop": 0.6340536689622418, "repo_name": "oleg-babintsev/fullcalendar", "id": "9403eef167075f00feb19a6622029635524c751a", "s...
Abacus Configuration === ## Default port numbers used by Abacus These port numbers are used when running Abacus in a local dev environment. | port | component | |:-----|:---------------------------| | 5984 | abacus-pouchserver | | | | | 9080 | abacus-usage-col...
{ "content_hash": "1462023985f8a537ec116f1e7528dbfc", "timestamp": "", "source": "github", "line_count": 51, "max_line_length": 134, "avg_line_length": 34.68627450980392, "alnum_prop": 0.6421707179197287, "repo_name": "danparsons/cf-abacus", "id": "e147d1ee4b07690006dc96231d4e874a036ccfd4", "size": ...
@class KeyBoardView; @protocol KeyBoardViewDelegate <NSObject> -(void)keyBoardViewHide:(KeyBoardView *)keyBoardView textView:(UITextView *)contentView; @end @interface KeyBoardView : UIView @property (nonatomic, assign) id<KeyBoardViewDelegate> delegate; @property (nonatomic, strong) UITextView *textView; @end
{ "content_hash": "d7615e337c2567d1631a03bfdf6869f1", "timestamp": "", "source": "github", "line_count": 13, "max_line_length": 88, "avg_line_length": 24.384615384615383, "alnum_prop": 0.7981072555205048, "repo_name": "MoDaBao/Leisure", "id": "fb2c8c5431c9467084ec3dbacc5aa52ef531aee3", "size": "471"...
<?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>pl.et...
{ "content_hash": "a2ad043884c92e66c614dbdfa9864218", "timestamp": "", "source": "github", "line_count": 16, "max_line_length": 108, "avg_line_length": 36.1875, "alnum_prop": 0.6649395509499136, "repo_name": "Epredator/projects", "id": "968064b7b5c29c5d16e74fb11dec28d1697654a2", "size": "579", "bi...
"""Tests for tf.py.""" from __future__ import absolute_import from __future__ import division from __future__ import print_function import functools import operator import numpy as np from tensorflow.python.eager import function from tensorflow.python.framework import constant_op from tensorflow.python.framework im...
{ "content_hash": "d4a54350ffb3b672c1919750e0043645", "timestamp": "", "source": "github", "line_count": 842, "max_line_length": 94, "avg_line_length": 38.402612826603324, "alnum_prop": 0.6518323797742385, "repo_name": "theflofly/tensorflow", "id": "b3316b73ff6c6fccedced987cfa8428092df4014", "size":...
clean= BLIP_HOME=$PWD mpi= die() { echo "$1" exit $2 } if [ -z "$D_HOME" ] ; then D_HOME=$HOME fi while [ $# -gt 0 ] do case $1 in --help) echo "usage: install [options]" echo "" echo " installs the blip libraries build" echo " --clean ...
{ "content_hash": "10a5115c5a2a1b0e979900361bc19a97", "timestamp": "", "source": "github", "line_count": 60, "max_line_length": 76, "avg_line_length": 24.1, "alnum_prop": 0.470954356846473, "repo_name": "fawzi/blip", "id": "0ca831bd56ea0d071b29a7605ceb1b41ee67ba3a", "size": "1466", "binary": false...
package org.traccar.protocol; import org.jboss.netty.channel.Channel; import org.traccar.BaseProtocolDecoder; import org.traccar.DeviceSession; import org.traccar.helper.Parser; import org.traccar.helper.PatternBuilder; import org.traccar.helper.UnitsConverter; import org.traccar.model.Position; import java.net.Sock...
{ "content_hash": "180a6aba39acd6232a3c8a17d96f59bc", "timestamp": "", "source": "github", "line_count": 195, "max_line_length": 100, "avg_line_length": 46.5025641025641, "alnum_prop": 0.4182840758711954, "repo_name": "5of9/traccar", "id": "5ff974a7dc657be9c91a0af0502483400188ad9c", "size": "9692", ...
# - an array not a set number of values (could be 1, could be more) # What are the steps needed to solve the problem? # create a container that holds the elements and the number of times # they occur. The default count for the number of times an element # occurs is 0. # iterate over the array, record each element ...
{ "content_hash": "7194954373945cb26fc0f4621b6de549", "timestamp": "", "source": "github", "line_count": 136, "max_line_length": 70, "avg_line_length": 31.485294117647058, "alnum_prop": 0.7316674451191032, "repo_name": "jelliotartz/phase-0", "id": "54a061a910ee07b8a263c2f1a011079bd20f85f6", "size": ...
%rebase(base_name, url=url, current_version=current_version) <table class="tablesorter" border="1"> <thead> <tr class="header"> <th>Kickoff</th> <th>HOME</th> <th>AWAY</th> <th>League</th> <th>1</th> <th>X</th> <th>2</th> <th>TU 2.5</th> <t...
{ "content_hash": "e71460ef37ecd0904ef796925123a066", "timestamp": "", "source": "github", "line_count": 66, "max_line_length": 173, "avg_line_length": 48.27272727272727, "alnum_prop": 0.5627746390458255, "repo_name": "vapkarian/soccer-analyzer", "id": "2901772801fbe25bb55e2c13b1af6435ad8b8c05", "si...
The project sturcure is similar to any other projects, under the src folder you can find the database change logs partitioned by version: ```bash $ ls src/main/groovy/com/kenshoo/liquibase/ 1 2 all_versions.groovy ``` In order to create a distributable package: ```bash $ git submodule update --init $ grad...
{ "content_hash": "2ec0a7ff888f31c758f3b4384aa76310", "timestamp": "", "source": "github", "line_count": 17, "max_line_length": 137, "avg_line_length": 30, "alnum_prop": 0.7509803921568627, "repo_name": "kenshoo/gradle-liquibase-plugin", "id": "2e76c978582c91b70b8fb1dcaf0c368a01a75e54", "size": "553...
"use strict"; var r; var n; Object.defineProperty(Number.prototype, "x", { "set" : function (v) { n = v; }, "enumerable" : true, "configurable" : true }); r = 1["x"]; // undefined if (r === undefined) { print("Passed!"); }
{ "content_hash": "1419bfac11209e067d4e4505a33da9bd", "timestamp": "", "source": "github", "line_count": 8, "max_line_length": 126, "avg_line_length": 28.125, "alnum_prop": 0.5866666666666667, "repo_name": "logchi/LambdaS5", "id": "665e4f0b4b25b86fd793141ce2c3c79fec5a393a", "size": "225", "binary"...
using System; using System.Text; namespace OpenLiveWriter.BlogClient.Providers { public class BlogProviderParameters { public static bool UrlContainsParameters(string serverUrl) { return ExtractParameterList(serverUrl).Length > 0; } public static string ExtractPara...
{ "content_hash": "40971fbf9ef40a56709807a3696baba7", "timestamp": "", "source": "github", "line_count": 38, "max_line_length": 91, "avg_line_length": 31.236842105263158, "alnum_prop": 0.497893850042123, "repo_name": "hashhar/OpenLiveWriter", "id": "d86b02ee774d94618cde69997e3a2fb7d2fb4ecd", "size":...
export { default } from 'ember-strap/components/es-tooltip';
{ "content_hash": "7a7f7a4fc6af86fa70709102dd3b3f76", "timestamp": "", "source": "github", "line_count": 1, "max_line_length": 60, "avg_line_length": 61, "alnum_prop": 0.7540983606557377, "repo_name": "pierrickrouxel/ember-strap", "id": "349b06f73a55fdf493d5b373ddae99038f4e3fff", "size": "61", "bi...
import unittest # test_records = frappe.get_test_records('Ebay Manager') class TestEbayManager(unittest.TestCase): pass
{ "content_hash": "1806df79ed63cf43d08a904186c7fdcf", "timestamp": "", "source": "github", "line_count": 7, "max_line_length": 56, "avg_line_length": 18.142857142857142, "alnum_prop": 0.7559055118110236, "repo_name": "bglazier/erpnext_ebay", "id": "9e3070c37211c27e21d0c4aeb5849cf4d5466b6b", "size": ...
<!DOCTYPE html> <html lang="zh-CN"> <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>01-XTypeTest</title> <link href="../dist/css/bootstrap.css" rel="stylesheet" /> </head> <body> <scr...
{ "content_hash": "576d1234538823900bc1d4d16db0148d", "timestamp": "", "source": "github", "line_count": 35, "max_line_length": 72, "avg_line_length": 26.428571428571427, "alnum_prop": 0.518918918918919, "repo_name": "tengge1/bootstrap-es6", "id": "d8b8907849c3d543868efdb525830cb92b17e1a5", "size": ...
#include "Language.h" #include "sort.h" #include "Speller.h" #include "Sections.h" // word/phrase must be in at least this many docs to be included in our dict #define MIN_DOCS 3 // ROUTINES NEEDED FOR GBSORT // The dict is stored as a tuple of ( original word, phonetic, (lang, score)..) int cmpPhonet (const void *v1...
{ "content_hash": "704ebbd763ef7e4cb8caeb0deceb97f9", "timestamp": "", "source": "github", "line_count": 5000, "max_line_length": 79, "avg_line_length": 26.8358, "alnum_prop": 0.5776015620924287, "repo_name": "karuradev/open-source-search-engine", "id": "b472a0a425b5c1d07fdaea140689c81fd0010972", "s...
ACCEPTED #### According to Euro+Med Plantbase #### Published in null #### Original name null ### Remarks null
{ "content_hash": "e0f3c28c7e6a451079aa9ead0d685eb0", "timestamp": "", "source": "github", "line_count": 13, "max_line_length": 18, "avg_line_length": 8.692307692307692, "alnum_prop": 0.6814159292035398, "repo_name": "mdoering/backbone", "id": "04be17cd48c432a32b0b4e7f8c05e33b6effb5a7", "size": "196...
# coding: utf-8 from __future__ import print_function from __future__ import absolute_import # install_requires of ruamel.base is not really required but the old # ruamel.base installed __init__.py, and thus a new version should # be installed at some point _package_data = dict( full_package_name="ruamel.yaml", ...
{ "content_hash": "024912c023e0cecf1b24f9b3ecd71b3e", "timestamp": "", "source": "github", "line_count": 84, "max_line_length": 165, "avg_line_length": 35.67857142857143, "alnum_prop": 0.584250917584251, "repo_name": "KaranToor/MA450", "id": "9be208205ea694383b43ab60c013defe2f5e4b6e", "size": "2997"...
class AddIndexDefaultValues < ActiveRecord::Migration[5.0] def change change_column_null :news, :title, false change_column_null :news, :content, false change_column_null :news, :channel, false change_column_default :news, :channel, 0 change_column_null :news, :event, false change_column_defau...
{ "content_hash": "bdfc2016dcbd9d3ec73d2d87ae31bd3c", "timestamp": "", "source": "github", "line_count": 14, "max_line_length": 58, "avg_line_length": 36.5, "alnum_prop": 0.6966731898238747, "repo_name": "crispgm/rugby-board", "id": "70dfed0105ade3f3231904e7a970d484c1aaff78", "size": "511", "binar...
title: "2018-10-16のJS: Node.js v10.12.0、Inferno v6.0.0、ブラウザのTLS 1.0と1.1終了時期" author: "azu" layout: post date : 2018-10-16T00:07:04.230Z category: JSer tags: - Node.js - react - Inferno - TLS --- JSer.info #405 - Node.js v10.12.0がリリースされました。 - [Node v10.12.0 (Current) | Node.js](https://nodejs.org/en/blog/release/v10....
{ "content_hash": "5db41426711c2e98f20c76737dcd67d1", "timestamp": "", "source": "github", "line_count": 253, "max_line_length": 340, "avg_line_length": 49.723320158102766, "alnum_prop": 0.761685214626391, "repo_name": "UYEONG/jser.github.io", "id": "9e30431230c4f0acc8bb28bce1f4182f98994061", "size"...
Magma is a multi-user object database for Squeak which: - provides transparent access to a large-scale shared persistent object model. - supports multiple users concurrently via optimistic locking. - utilizes a simple transaction protocol. - collaborative program development via live class evolution, federated clusters...
{ "content_hash": "fe0b3021428ebf589324305dd2992416", "timestamp": "", "source": "github", "line_count": 14, "max_line_length": 109, "avg_line_length": 65.57142857142857, "alnum_prop": 0.8104575163398693, "repo_name": "magma-database/magma", "id": "c18d3ad7bead4866f12eeb0b2bbf793f73b48319", "size": ...
package org.apache.stratos.messaging.message.processor.topology; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.apache.stratos.messaging.domain.topology.Cluster; import org.apache.stratos.messaging.domain.topology.Member; import org.apache.stratos.messaging.domain.topo...
{ "content_hash": "96acde0b9ab08575dc80109be4e857e0", "timestamp": "", "source": "github", "line_count": 130, "max_line_length": 131, "avg_line_length": 39.676923076923075, "alnum_prop": 0.6068243505234587, "repo_name": "pubudu538/stratos", "id": "c3d778aa5cf95225a1ba64cedec83736fab0e76b", "size": "...
/** * Package of iterator * * @author Egor Repnikov * @version 0.0.1 * @since 17.07.2017 */ package erepnikov.iterator;
{ "content_hash": "be334f6109b5cb6a90489464c7e4442f", "timestamp": "", "source": "github", "line_count": 8, "max_line_length": 27, "avg_line_length": 15.625, "alnum_prop": 0.656, "repo_name": "EgorTrevelyan/junior", "id": "a1fbc34cb76b6d653d2488a673e6fc5587e957d3", "size": "125", "binary": false, ...
PRAGMA foreign_keys = ON
{ "content_hash": "ddf62d11aa00e5f8c970825932d17c93", "timestamp": "", "source": "github", "line_count": 1, "max_line_length": 24, "avg_line_length": 24, "alnum_prop": 0.7916666666666666, "repo_name": "bkiers/sqlite-parser", "id": "3f0d3ecc0b2e0151272e92a6cedcd881a2e9dac0", "size": "81", "binary":...
Now that we have learned the fundamental basics, we can go on with more advanced information and additional APIs. * [DOM Rendering](advanced/DOMRendering.md) * [Server Rendering](advanced/ServerRendering.md) * [Plugins](advanced/Plugins.md) * [Renderer Configuration](advanced/RendererConfiguration.md) * [Global & Thir...
{ "content_hash": "f082a71dc3c180a9af6a19c69f2c5151", "timestamp": "", "source": "github", "line_count": 9, "max_line_length": 113, "avg_line_length": 49.333333333333336, "alnum_prop": 0.7882882882882883, "repo_name": "derek-duncan/fela", "id": "a32b04b71ea1a081fdc541e623165784fd31c662", "size": "45...
@implementation WGCleanShopCartResponse @end
{ "content_hash": "289ae1fee3fe9df2edabc23d345bcdfc", "timestamp": "", "source": "github", "line_count": 3, "max_line_length": 39, "avg_line_length": 15.333333333333334, "alnum_prop": 0.8695652173913043, "repo_name": "mumabinggan/WeygoIPhone", "id": "5da37de6aff45c9668976a1afb0f747baf3df113", "size"...
<?php // Get the PHP helper library from https://twilio.com/docs/libraries/php require_once '/path/to/vendor/autoload.php'; // Loads the library use Twilio\Rest\Client; // To set up environmental variables, see http://twil.io/secure $account_sid = getenv('TWILIO_ACCOUNT_SID'); $auth_token = getenv('TWILIO_AUTH_TOKEN'...
{ "content_hash": "7030e261d923a1abf2c7c7e80674d5b2", "timestamp": "", "source": "github", "line_count": 17, "max_line_length": 86, "avg_line_length": 35.529411764705884, "alnum_prop": 0.6903973509933775, "repo_name": "TwilioDevEd/api-snippets", "id": "319146a6b13a925e55c5d45b17fa8e1e666e227e", "siz...
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("Pr...
{ "content_hash": "6acddaa330e1fda6433383441a96a7af", "timestamp": "", "source": "github", "line_count": 36, "max_line_length": 84, "avg_line_length": 38.583333333333336, "alnum_prop": 0.7437005039596832, "repo_name": "EmilPopov/C-Sharp", "id": "aebbdadb9f4a1095981e2971ea3fe6fb431afcc4", "size": "13...
#include "pagespeed/opt/logging/log_record.h" #include <map> #include <set> #include <utility> #include "base/logging.h" #include "pagespeed/kernel/base/abstract_mutex.h" #include "pagespeed/kernel/base/string.h" #include "pagespeed/kernel/base/string_util.h" namespace net_instaweb { const char kRewriterIdSeparat...
{ "content_hash": "03720897225f5ada5ab7b235b9cf6f39", "timestamp": "", "source": "github", "line_count": 325, "max_line_length": 80, "avg_line_length": 35.58769230769231, "alnum_prop": 0.6996368666781947, "repo_name": "pagespeed/mod_pagespeed", "id": "2681b1121f7124cce1ce7cc5665caee30d7e0dad", "size...
const { TYPE } = require('@formatjs/icu-messageformat-parser'); function traverse(node, visitor) { if (Array.isArray(node)) { node.forEach((n) => { traverse(n, visitor); }); } if (!node || typeof node.type === 'undefined') { return; } if (visitor[node.type]) { visitor[node.type](node)...
{ "content_hash": "fad85f77835f2886996a69da2f778c39", "timestamp": "", "source": "github", "line_count": 29, "max_line_length": 63, "avg_line_length": 18.896551724137932, "alnum_prop": 0.5693430656934306, "repo_name": "ember-intl/ember-intl", "id": "7f6830efbcdee767f05668e3e06aecece27be9b9", "size":...
<!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...
{ "content_hash": "c73215578e91a212a88a199b6fd71b02", "timestamp": "", "source": "github", "line_count": 180, "max_line_length": 441, "avg_line_length": 86.5, "alnum_prop": 0.7210019267822736, "repo_name": "tzmartin/gae-php.docset", "id": "53303f6677cf63e48fb0ba48b137d1d3c99fbf74", "size": "15570", ...
<?xml version="1.0"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the ...
{ "content_hash": "6626f940968138d86bcf003b354afa10", "timestamp": "", "source": "github", "line_count": 228, "max_line_length": 124, "avg_line_length": 46.73245614035088, "alnum_prop": 0.6083528859690286, "repo_name": "greg-dove/flex-asjs", "id": "6238641be7e5a044e7062a2fd25701a5ca45299e", "size": ...
package es.voghdev.pdfviewpager.library.adapter; public interface PdfErrorHandler { void onPdfError(Throwable t); }
{ "content_hash": "2abf703c986b0ffeb05ca4759ed4badf", "timestamp": "", "source": "github", "line_count": 5, "max_line_length": 48, "avg_line_length": 24.2, "alnum_prop": 0.7933884297520661, "repo_name": "voghDev/PdfViewPager", "id": "c62c9110abc07f6f1766ffd0dafe8df05111c0d9", "size": "121", "binar...
// // NOTE: the code below is a derivative of bntseq.h, originally distributed // under the MIT License, Copyright (c) 2008 Genome Research Ltd (GRL). // #pragma once #include <nvbio/basic/types.h> #include <string> #include <vector> #include <cstdio> namespace nvbio { struct BNTAnnData { BNTAnnData() : offse...
{ "content_hash": "21c0eef79b20055e5d359d03da2c5570", "timestamp": "", "source": "github", "line_count": 77, "max_line_length": 75, "avg_line_length": 18.961038961038962, "alnum_prop": 0.6541095890410958, "repo_name": "NVlabs/nvbio", "id": "f75fe135bec91b8d1f7a7217725784627e992074", "size": "3051", ...
var hbs = require('express-hbs'); module.exports = function() { hbs.registerHelper('ifCond', function (v1, operator, v2, options) { switch (operator) { case '==': return (v1 == v2) ? options.fn(this) : options.inverse(this); case '===': return (v1 === v2) ? options.fn...
{ "content_hash": "1bac126b23dc0a0630e89c558b3bfa71", "timestamp": "", "source": "github", "line_count": 35, "max_line_length": 91, "avg_line_length": 36.97142857142857, "alnum_prop": 0.5123647604327666, "repo_name": "dend/yulyeong", "id": "c3f5a2c9f0662bc03ff4eb4fb2e21fedafc6bbf5", "size": "1294", ...
using UnityEngine; using UnityEditor; using System; using System.IO; using System.Linq; using System.Text.RegularExpressions; using System.Reflection; using System.Collections.Generic; using System.Security.Cryptography; using Model=UnityEngine.AssetGraph.DataModel.Version2; namespace UnityEngine.AssetGraph { publi...
{ "content_hash": "56f9baecad42649d09b164a3f1018fb3", "timestamp": "", "source": "github", "line_count": 274, "max_line_length": 161, "avg_line_length": 28.916058394160583, "alnum_prop": 0.6488703773823047, "repo_name": "sassembla/Autoya", "id": "957c91e0173a12d343c6fb2ba0cf1f9fe80d39e8", "size": "7...
<?php namespace DTS\eBaySDK\Trading\Types; /** * * @property \DTS\eBaySDK\Trading\Enums\NotificationEventTypeCodeType $EventType * @property \DTS\eBaySDK\Trading\Enums\NotificationEventPropertyNameCodeType $Name * @property string $Value */ class NotificationEventPropertyType extends \DTS\eBaySDK\Types\BaseType...
{ "content_hash": "094412593c80deec959d97b1401c6d0c", "timestamp": "", "source": "github", "line_count": 57, "max_line_length": 116, "avg_line_length": 29.666666666666668, "alnum_prop": 0.5612063867534004, "repo_name": "davidtsadler/ebay-sdk-trading", "id": "130ba8951c3b1186cbe3d4177b4543645842e336", ...
<?xml version="1.0" ?> <LEOSimulation version="2.5.0"> <STELAVersion>2.5.1</STELAVersion> <SpaceObject> <mass unit="kg">2.0</mass> <dragArea>0.035</dragArea> <reflectingArea>0.14</reflectingArea> <reflectivityCoefficient>1.5</reflectivityCoefficient> <orbitType>LEO</orbitType> <ConstantDragC...
{ "content_hash": "a92995141756f426c083dd295d48af09", "timestamp": "", "source": "github", "line_count": 62, "max_line_length": 65, "avg_line_length": 36.354838709677416, "alnum_prop": 0.6987577639751553, "repo_name": "pouyana/satgen", "id": "cecfe9ee35736216467e7bf2584a1870933a3f2f", "size": "2254"...
if [ "${NACL_SHARED}" = "0" ]; then EXTRA_CONFIGURE_ARGS+=" --enable-shared=no" fi EnableGlibcCompat InstallStep() { DefaultInstallStep local pkgconfig_file=${INSTALL_DIR}/naclports-dummydir/lib/pkgconfig/x11.pc if [ "${NACL_LIBC}" = "newlib" ]; then if ! grep -Eq "lglibc-compat" $pkgconfig_file; then ...
{ "content_hash": "fce447ba9a34c192a7fa8144e4b391ae", "timestamp": "", "source": "github", "line_count": 16, "max_line_length": 77, "avg_line_length": 24.8125, "alnum_prop": 0.6574307304785895, "repo_name": "GoogleChromeLabs/chromeos_smart_card_connector", "id": "f2599d36cda99968ad8f30ba7fba6ac917f939...
// Copyright 2009 the Sputnik authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /** * The [[Class]] property of the newly constructed object * is set to "Date" * * @path ch15/15.9/15.9.3/S15.9.3.1_A3_T2.2.js * @description Test based on overwriting prototype.toS...
{ "content_hash": "3fb268fb95b4713f3b764c8e3f02fe9e", "timestamp": "", "source": "github", "line_count": 74, "max_line_length": 95, "avg_line_length": 32.4054054054054, "alnum_prop": 0.6292743953294412, "repo_name": "mbrowne/typescript-dci", "id": "d9b53f87de80e2b81fbf21f967b38cfc3bc488b6", "size": ...