text stringlengths 2 1.04M | meta dict |
|---|---|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>shuffle: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css... | {
"content_hash": "a0d861bd9e147fd5d931a2d53096448c",
"timestamp": "",
"source": "github",
"line_count": 169,
"max_line_length": 159,
"avg_line_length": 40.30177514792899,
"alnum_prop": 0.5405960945529291,
"repo_name": "coq-bench/coq-bench.github.io",
"id": "19afcd75653afafd628cddf3b61b93c610364a2d",
... |
import os
import pickle
import numpy as np
import scipy as sp
import scipy.signal as sig
import pandas as pd
import matplotlib.pylab as plt
import matplotlib.mlab as m
import statsmodels.api as sm
## Constants
Fs = 200 # sampling frequency in Hz
F_nyq = Fs/2 # Nyquist frequency
Ts = 1./Fs # sampling period in seconds... | {
"content_hash": "b3437559099c2c5b1db87261aab601ce",
"timestamp": "",
"source": "github",
"line_count": 190,
"max_line_length": 128,
"avg_line_length": 39.126315789473686,
"alnum_prop": 0.6320957761635728,
"repo_name": "fmelinscak/error-py",
"id": "2456523d42d72065a9ea50a6acfaaffed45f9861",
"size":... |
package com.artificial.cachereader.meta;
import com.artificial.cachereader.datastream.Stream;
import com.artificial.cachereader.fs.CacheSource;
import java.util.Map;
public class RS3ReferenceTable extends ReferenceTable {
public RS3ReferenceTable(CacheSource cache, int id) {
super(cache, id);
}
... | {
"content_hash": "21835d4fa10e367960ee0c39bd3c5182",
"timestamp": "",
"source": "github",
"line_count": 104,
"max_line_length": 88,
"avg_line_length": 28.346153846153847,
"alnum_prop": 0.5115332428765265,
"repo_name": "ArtificialPB/DevelopmentKit",
"id": "45fe9a22869490206f1b0513c5e5c33fb95ad6ec",
... |
%%OLAnalyzeCalTimeSeries Analyze the time series of an OLcalibration file
% Description:
% Analyze the time series of temperature, power fluctuation, and spectral
% shift data found in an OLcalibration file
%
% History:
% 5/31/2018 NPC Wrote it.
% 6/05/2018 NPC Import calFile based on getpref('OneLightT... | {
"content_hash": "8176da8f8df244156fc66ede8698c6db",
"timestamp": "",
"source": "github",
"line_count": 456,
"max_line_length": 264,
"avg_line_length": 39.291666666666664,
"alnum_prop": 0.6295138695094045,
"repo_name": "DavidBrainard/OneLightToolbox",
"id": "7e02134f8f3f15086162b56ca085152d6519d30b",... |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Coq bench</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet... | {
"content_hash": "dee272acc7675e894691d77912e04697",
"timestamp": "",
"source": "github",
"line_count": 168,
"max_line_length": 240,
"avg_line_length": 41.273809523809526,
"alnum_prop": 0.5057686760888376,
"repo_name": "coq-bench/coq-bench.github.io-old",
"id": "88958138081f55eafb46aff11f74d6a439bb24... |
#include "Portfolio.hpp"
#include <memory>
using namespace apache::geode::client;
using namespace testobject;
const char* Portfolio::secIds[] = {"SUN", "IBM", "YHOO", "GOOG", "MSFT",
"AOL", "APPL", "ORCL", "SAP", "DELL"};
Portfolio::Portfolio(int32_t i, uint32_t size,
... | {
"content_hash": "27af82bc5a1c391c5ac84c3bb1588a08",
"timestamp": "",
"source": "github",
"line_count": 123,
"max_line_length": 92,
"avg_line_length": 30.414634146341463,
"alnum_prop": 0.6460839347767976,
"repo_name": "mhansonp/geode-native",
"id": "5444b8904d6c4e635e57092caa8ee2e4e3ca0f1e",
"size"... |
module Admin
class ReleasesController < Admin::ApplicationController
# To customize the behavior of this controller,
# simply overwrite any of the RESTful actions. For example:
#
# def index
# super
# @resources = Release.all.paginate(10, params[:page])
# end
# Define a custom fin... | {
"content_hash": "31f979dd9b05692b6752557eb9787647",
"timestamp": "",
"source": "github",
"line_count": 19,
"max_line_length": 80,
"avg_line_length": 29.68421052631579,
"alnum_prop": 0.6826241134751773,
"repo_name": "cornelius/yes_it_shipped",
"id": "3860c45310f74f4c36622af9bdfa1a591b776a17",
"size... |
Simple sample of a [Swift](https://swift.org) app using [Kitura](http://www.kitura.io) that runs on [Google App Engine](https://cloud.google.com/appengine).
## Run locally
$ swift build
$ .build/debug/MyApplication
## Deploy
$ gcloud app deploy
| {
"content_hash": "152f93894616f5665f063f43fd6fd402",
"timestamp": "",
"source": "github",
"line_count": 10,
"max_line_length": 156,
"avg_line_length": 26.1,
"alnum_prop": 0.685823754789272,
"repo_name": "GoogleCloudPlatform/appengine-custom-runtimes-samples",
"id": "b6baf3a6876b846208fe71ce9f7f2ad907... |
module Spree
class OrderContents
attr_accessor :order, :currency
def initialize(order)
@order = order
end
def add(variant, quantity = 1, currency = nil, shipment = nil, options = {})
line_item = add_to_line_item(variant, quantity, currency, shipment, options)
reload_totals
Pr... | {
"content_hash": "ca13bb178157ce5c249a2f2b2aea4104",
"timestamp": "",
"source": "github",
"line_count": 109,
"max_line_length": 94,
"avg_line_length": 31.146788990825687,
"alnum_prop": 0.617378497790869,
"repo_name": "tailic/spree",
"id": "e1278f85dd1b1bf4c3a0e91d23f472d01ee7f817",
"size": "3395",
... |
#include "tensorflow/compiler/xla/service/gpu/tests/gpu_codegen_test.h"
// Check that the ftz (flush denormals to zero) flag is reflected in PTX as
// expected.
namespace xla {
namespace gpu {
namespace {
class GpuFtzTest : public GpuCodegenTest {
public:
explicit GpuFtzTest(bool ftz) : ftz_(ftz) {}
// Creat... | {
"content_hash": "2bae126090fffb0655d3dacd99e8a769",
"timestamp": "",
"source": "github",
"line_count": 106,
"max_line_length": 80,
"avg_line_length": 32.716981132075475,
"alnum_prop": 0.7047289504036909,
"repo_name": "brchiu/tensorflow",
"id": "d0ccd8619bde9ddd560989380b403efed5c5f42c",
"size": "4... |
package com.aspose.slides.maven.utils;
import org.netbeans.api.progress.aggregate.AggregateProgressFactory;
import org.netbeans.api.progress.aggregate.ProgressContributor;
/**
* @author Adeel Ilyas <adeel.ilyas@aspose.com>
*/
public abstract class AbstractTask extends Thread {
/**
*
*/
... | {
"content_hash": "e6c7e4afa007a83401c08c67e86d44e4",
"timestamp": "",
"source": "github",
"line_count": 31,
"max_line_length": 68,
"avg_line_length": 21.161290322580644,
"alnum_prop": 0.6189024390243902,
"repo_name": "ali-salman/Aspose.Slides-for-Java",
"id": "13147805d1b8e0d4900e2ddb2255dce18bd401ff... |
import DS from 'ember-data';
import testInDebug from 'dummy/tests/helpers/test-in-debug';
import { module } from 'qunit';
module("unit/model/internal-model - Internal Model");
function MockModelFactory () { }
MockModelFactory._create = function() {
return { trigger() {} };
};
MockModelFactory.eachRelationship = ... | {
"content_hash": "ba3732504bd1405f53852adc4a70fb3b",
"timestamp": "",
"source": "github",
"line_count": 24,
"max_line_length": 78,
"avg_line_length": 27.166666666666668,
"alnum_prop": 0.7193251533742331,
"repo_name": "danmcclain/data",
"id": "04f21f4c3639dc3f354c8c6a1c9882d1c6c3cf07",
"size": "652"... |
module ActiveStorage
# Provides the class-level DSL for declaring an Active Record model's attachments.
module Attached::Model
extend ActiveSupport::Concern
class_methods do
# Specifies the relation between a single attachment and the model.
#
# class User < ActiveRecord::Base
# ... | {
"content_hash": "12e3f023b48c9d3ed963d6840582cf5e",
"timestamp": "",
"source": "github",
"line_count": 145,
"max_line_length": 164,
"avg_line_length": 42.26896551724138,
"alnum_prop": 0.6103768967205091,
"repo_name": "msaintemarie/msaintemarie.github.io",
"id": "06864a846fb71a9e90d4b5cff3a60a3778e83... |
import colors from '../settings/colors';
export default {
emptyState: {
alignItems: 'center',
backgroundPosition: 'center bottom',
backgroundSize: 'cover',
boxSizing: 'border-box',
display: 'flex',
flexDirection: 'column',
height: '100%',
justifyContent: 'center',
padding: '24px',... | {
"content_hash": "181ecd493e7acd9943a70c39df1ff8a1",
"timestamp": "",
"source": "github",
"line_count": 32,
"max_line_length": 40,
"avg_line_length": 21.46875,
"alnum_prop": 0.604075691411936,
"repo_name": "anchorchat/anchor-ui",
"id": "1b21ead2d1b62cb2891dffcd11153881a9f85f7e",
"size": "687",
"b... |
FROM ubuntu
MAINTAINER Michael Obermueller
RUN adduser jboss
USER jboss
RUN mkdir -p /tmp/images/mymusic
# Add VOLUME as datacontainer
VOLUME /tmp/images/mymusic
ENTRYPOINT /usr/bin/tail -f /dev/null | {
"content_hash": "dd7962b88ae8d244783cd0036ed8492a",
"timestamp": "",
"source": "github",
"line_count": 12,
"max_line_length": 37,
"avg_line_length": 17,
"alnum_prop": 0.7892156862745098,
"repo_name": "thi-enterprisejava/music-albums-obermueller",
"id": "ccc4f23ad34aadb8006ee86562d164ba437676a0",
"... |
title: 'Täname!'
---
**Aitäh, et võtsite meiega ühendust!** Vastame Teile esimesel võimalusel!
| {
"content_hash": "4e36ea0c53b99add2e9aaa87fe50b4c1",
"timestamp": "",
"source": "github",
"line_count": 4,
"max_line_length": 73,
"avg_line_length": 24,
"alnum_prop": 0.71875,
"repo_name": "ottramst/marvic",
"id": "8a487a5ec24e971986fe97dfbb0bc311efe8ebb8",
"size": "105",
"binary": false,
"copi... |
<?php
use Siefa\CommonsBundle\Tests\Cases\CommandTestCase;
class CreateUserCommandTest extends CommandTestCase {
/**
* @var \Siefa\SecurityBundle\Model\UserProvider
*/
private $userProvider;
/**
* {@inheritDoc}
*/
public function setUp()
{
static::$kernel ... | {
"content_hash": "c1e97905bb887e5eeab89cf27ef36c4c",
"timestamp": "",
"source": "github",
"line_count": 36,
"max_line_length": 108,
"avg_line_length": 30.11111111111111,
"alnum_prop": 0.5747232472324724,
"repo_name": "metalvarez/siga-pruebas-seguridad",
"id": "468f4f2ce75ed69219a0d49d3dfb53267ed84906... |
package io.clickhandler.web.reactGwt.client.react;
import jsinterop.annotations.JsProperty;
import jsinterop.annotations.JsType;
import io.clickhandler.web.reactGwt.client.Func;
/**
*
*/
@JsType(isNative = true)
public interface ReactElement<T, P extends BaseProps> {
@JsProperty
T getType();
@JsPropert... | {
"content_hash": "74e3869956cc6ff05e0879b3cfe3457d",
"timestamp": "",
"source": "github",
"line_count": 25,
"max_line_length": 55,
"avg_line_length": 18.92,
"alnum_prop": 0.7082452431289641,
"repo_name": "ClickHandlerIO/clickhandler-web",
"id": "ee7e685a6de369348f5dea7a1ac46dee808f978b",
"size": "4... |
package com.deleidos.rtws.webapp.tenantapi.common;
import org.apache.commons.configuration.ConversionException;
import org.apache.log4j.Logger;
import com.deleidos.rtws.commons.config.RtwsConfig;
public final class EndpointUtil {
private static Logger logger = Logger.getLogger(EndpointUtil.class);
private sta... | {
"content_hash": "de4e4812bd1cace7fab03bae63503f75",
"timestamp": "",
"source": "github",
"line_count": 32,
"max_line_length": 158,
"avg_line_length": 26.125,
"alnum_prop": 0.7595693779904307,
"repo_name": "deleidos/digitaledge-platform",
"id": "30b67d4439961291e70fc50b80058aca2ea02449",
"size": "1... |
package com.chenmed.qatests;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.openqa.selenium.By;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.support.ui.WebDriverWait;
import java.util.LinkedList;
import java.util.... | {
"content_hash": "e225acc40024350343ff14fb062d9b9c",
"timestamp": "",
"source": "github",
"line_count": 97,
"max_line_length": 124,
"avg_line_length": 28.8659793814433,
"alnum_prop": 0.63,
"repo_name": "nogic25/test-selenium",
"id": "378a7a77621eae0308076ab1e2b3ac4546a6f2f5",
"size": "2800",
"bin... |
(function(){
'use strict';
function mdDataTableCellDirective(ColumnAlignmentHelper, $parse){
return {
restrict: 'E',
templateUrl: '/main/templates/mdDataTableCell.html',
replace: true,
transclude: true,
scope: {
htmlContent: '@... | {
"content_hash": "31cc3ec769e0eacfdc4199da8fe66738",
"timestamp": "",
"source": "github",
"line_count": 52,
"max_line_length": 117,
"avg_line_length": 36.32692307692308,
"alnum_prop": 0.5267337215457915,
"repo_name": "ryanhmaas/nflSiteRewrite",
"id": "fa6a4f6438e41d919fae85fe2d532b87fb090ee3",
"siz... |
require 'spec_helper'
describe Tag do
describe 'validations' do
it 'should require name to be present' do
tag = build :tag, name: nil
expect(tag.valid?).to be false
expect(tag.errors).to have_key :name
expect(tag.errors[:name]).to include "can't be blank"
end
it 'should require n... | {
"content_hash": "7b753d3e3407be5f81a0300a2a4b3e4b",
"timestamp": "",
"source": "github",
"line_count": 37,
"max_line_length": 83,
"avg_line_length": 33.432432432432435,
"alnum_prop": 0.6289409862570736,
"repo_name": "kamilbielawski/knowledge_base",
"id": "20f4dab1f8dfd7981f039e1fb3a432e8ad2cb836",
... |
package main
import (
"context"
"fmt"
"math"
"net"
"os"
"syscall"
"time"
"github.com/spf13/cobra"
"github.com/scionproto/scion/go/lib/daemon"
"github.com/scionproto/scion/go/lib/log"
"github.com/scionproto/scion/go/lib/serrors"
"github.com/scionproto/scion/go/lib/snet"
"github.com/scionproto/scion/go/li... | {
"content_hash": "32926730a243844678ec1112e291d56d",
"timestamp": "",
"source": "github",
"line_count": 243,
"max_line_length": 94,
"avg_line_length": 31.94238683127572,
"alnum_prop": 0.6717340891522804,
"repo_name": "netsec-ethz/scion",
"id": "e0d42ff6369467ae7ee11d91d4fed7447cd68726",
"size": "83... |
ACCEPTED
#### According to
International Plant Names Index
#### Published in
null
#### Original name
null
### Remarks
null | {
"content_hash": "bce11aead3c50b4e8523457358d045a8",
"timestamp": "",
"source": "github",
"line_count": 13,
"max_line_length": 31,
"avg_line_length": 9.692307692307692,
"alnum_prop": 0.7063492063492064,
"repo_name": "mdoering/backbone",
"id": "7a6fb988088b910912e2423c1bce5a4205d8e6de",
"size": "182... |
ACCEPTED
#### According to
Integrated Taxonomic Information System
#### Published in
Sp. pl. 2:885. 1753
#### Original name
null
### Remarks
null | {
"content_hash": "7111530972f54cfa9d3cea601065fc0b",
"timestamp": "",
"source": "github",
"line_count": 13,
"max_line_length": 39,
"avg_line_length": 11.461538461538462,
"alnum_prop": 0.7046979865771812,
"repo_name": "mdoering/backbone",
"id": "af3cdee24aee5688bc091f81b6dcb91f9eaf7e9c",
"size": "19... |
require 'cane/hashcheck/version'
require 'cane/hashcheck/hash_check'
| {
"content_hash": "d41bd8031be5dfde24b205841e117dcf",
"timestamp": "",
"source": "github",
"line_count": 2,
"max_line_length": 35,
"avg_line_length": 34.5,
"alnum_prop": 0.8115942028985508,
"repo_name": "chrishunt/cane-hashcheck",
"id": "855823334558eed1ec614793211d9903e64f5f72",
"size": "69",
"bi... |
#ifndef THIRD_PARTY_TENSORFLOW_CORE_DISTRIBUTED_RUNTIME_RPC_ASYNC_SERVICE_INTERFACE_H_
#define THIRD_PARTY_TENSORFLOW_CORE_DISTRIBUTED_RUNTIME_RPC_ASYNC_SERVICE_INTERFACE_H_
namespace tensorflow {
// Represents an abstract asynchronous service that handles incoming
// RPCs with a polling loop.
class AsyncServiceInt... | {
"content_hash": "e020399f5d9b9920227d0a05cccc1215",
"timestamp": "",
"source": "github",
"line_count": 24,
"max_line_length": 89,
"avg_line_length": 32.041666666666664,
"alnum_prop": 0.7685305591677504,
"repo_name": "RyanYoung25/tensorflow",
"id": "2f453b048e8349d6cdec2e4218aa83713dd645e5",
"size"... |
var emptyObject = new Object();
// equivalent to emptyObject = {}; | {
"content_hash": "9309cfdca1ac9ee4e4296a61cdd1bff5",
"timestamp": "",
"source": "github",
"line_count": 2,
"max_line_length": 34,
"avg_line_length": 33,
"alnum_prop": 0.696969696969697,
"repo_name": "kcdodd/ecsp-book",
"id": "1e16b7774d39bcc67735f200f88251918609c636",
"size": "66",
"binary": fals... |
package name.cs.csutils.collector;
import java.util.concurrent.atomic.AtomicInteger;
public class MaxCountCollector<T> implements Collector<T> {
private final int maxcount;
private AtomicInteger count = new AtomicInteger(0);
private Collector<T> collector;
public MaxCountCollector(int maxcount,... | {
"content_hash": "ff2202ddbd2c64009f1315ef0c2f95d7",
"timestamp": "",
"source": "github",
"line_count": 25,
"max_line_length": 73,
"avg_line_length": 25.8,
"alnum_prop": 0.648062015503876,
"repo_name": "wesen/rw-patchmanager",
"id": "de00afcd0741ecbc883e0e015949ea26c18ceb2a",
"size": "2223",
"bin... |
using System.Text.Json;
using Azure.Core;
namespace Azure.ResourceManager.Compute.Models
{
public partial class UpgradeOperationHistoricalStatusInfoProperties
{
internal static UpgradeOperationHistoricalStatusInfoProperties DeserializeUpgradeOperationHistoricalStatusInfoProperties(JsonElement element)
... | {
"content_hash": "45c538391f98425aca19329d480816ed",
"timestamp": "",
"source": "github",
"line_count": 82,
"max_line_length": 200,
"avg_line_length": 45.03658536585366,
"alnum_prop": 0.5301922556187382,
"repo_name": "Azure/azure-sdk-for-net",
"id": "e29623afa1c831ff28aa2c4e9241861b95ea577b",
"size... |
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('helix'), require('cannon')) :
typeof define === 'function' && define.amd ? define('HX_PHYS', ['exports', 'helix', 'cannon'], factory) :
(factory((global.HX_PHYS = {}),global.HX,global.CANNON));
}(th... | {
"content_hash": "82c9825a3dd88b50b213c214f6377e81",
"timestamp": "",
"source": "github",
"line_count": 1061,
"max_line_length": 159,
"avg_line_length": 27.809613572101792,
"alnum_prop": 0.6219751914864773,
"repo_name": "DerSchmale/helixjs",
"id": "250f1ecfc754c88d43de6bb6dbf4d76f97786fc3",
"size":... |
ACCEPTED
#### According to
Index Fungorum
#### Published in
Nuovo Giorn. Bot. Ital. 8: 161 (1892)
#### Original name
Cytospora oleina Berl.
### Remarks
null | {
"content_hash": "a79765625d8b2727b7002af9c65a696c",
"timestamp": "",
"source": "github",
"line_count": 13,
"max_line_length": 37,
"avg_line_length": 12.307692307692308,
"alnum_prop": 0.6875,
"repo_name": "mdoering/backbone",
"id": "f4a467fe14952d23a5ff507a1d6ca73d02ca5221",
"size": "206",
"binar... |
[](https://rubygems.org/gems/semantic_logger) [](https://travis-ci.org/rocketjob/semantic_logger) [](https://ru... | {
"content_hash": "d77f1081bcbcd75d70e0172b455504a9",
"timestamp": "",
"source": "github",
"line_count": 78,
"max_line_length": 667,
"avg_line_length": 38.8974358974359,
"alnum_prop": 0.7722478576137113,
"repo_name": "zach-taylor/semantic_logger",
"id": "d6023bdc7b13f08a76bf8efb166886e5d7b707c2",
"s... |
import { Component } from '@angular/core';
import { addDays, addMonths } from 'date-fns';
@Component({
selector: 'demo-datepicker',
templateUrl: './datepicker.html',
styleUrls: ['./datepicker.less']
})
export class DatePickerDemo {
startDate = new Date();
endDate = addDays(new Date(), 7);
selec... | {
"content_hash": "b8880a64a9ffcbe0d098453716ecd52f",
"timestamp": "",
"source": "github",
"line_count": 13,
"max_line_length": 50,
"avg_line_length": 28,
"alnum_prop": 0.6538461538461539,
"repo_name": "zxhfighter/measure",
"id": "0f0299c3f53899ce61b19c306526b832be7e1842",
"size": "364",
"binary":... |
/**
* @file templates/halconf.h
* @brief HAL configuration header.
* @details HAL configuration file, this file allows to enable or disable the
* various device drivers from your application. You may also use
* this file in order to override the device drivers default settings.
*
* @addt... | {
"content_hash": "2b9d58f9bdbbe5ab38c7ea6e33a64095",
"timestamp": "",
"source": "github",
"line_count": 367,
"max_line_length": 79,
"avg_line_length": 29.877384196185286,
"alnum_prop": 0.5046055631554948,
"repo_name": "microwan/spc5-nil",
"id": "c805eff977287b647661d087f7c5e939d2f5a226",
"size": "1... |
---
id: rendering-connections
title: Rendering Connections
slug: /guided-tour/list-data/rendering-connections/
---
import DocsRating from '@site/src/core/DocsRating';
import FbSuspenseListAlternative from './fb/FbSuspenseListAlternative.md';
import FbRenderingConnectionsUsingSuspenseList from './fb/FbRenderingConnecti... | {
"content_hash": "e97092e33452bc19f0f8581eae790463",
"timestamp": "",
"source": "github",
"line_count": 108,
"max_line_length": 489,
"avg_line_length": 41.870370370370374,
"alnum_prop": 0.7014595311808934,
"repo_name": "yungsters/relay",
"id": "29f967f84efee4b5500ad961ca1ebef497e8159c",
"size": "45... |
/**
* A common implementations for JCommander.
*/
package com.asakusafw.utils.jcommander.common; | {
"content_hash": "54f59af75b08979d142df8e2cb39a09b",
"timestamp": "",
"source": "github",
"line_count": 5,
"max_line_length": 46,
"avg_line_length": 19.8,
"alnum_prop": 0.7575757575757576,
"repo_name": "asakusafw/asakusafw",
"id": "1b89f533f7cf7c08b74ae0c6915b83104640114f",
"size": "711",
"binary... |
<!DOCTYPE html>
<html>
<head>
<title>Instantiation of custom element: custom element type is given as the value of the IS attribute</title>
<meta name="author" title="Sergey G. Grekhov" href="mailto:sgrekhov@unipro.ru">
<meta name="author" title="Aleksei Yu. Semenov" href="mailto:a.semenov@unipro.ru">
<meta name="asser... | {
"content_hash": "ac72f727a7dd5dbc5d11fc393e28583b",
"timestamp": "",
"source": "github",
"line_count": 73,
"max_line_length": 202,
"avg_line_length": 44.67123287671233,
"alnum_prop": 0.6105489113768783,
"repo_name": "danakj/chromium",
"id": "c18290d0e14cd59dd5162686e2f2198aee07eaca",
"size": "3261... |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>NBMRoom Class Reference</title>
<link rel="stylesheet" href="../css/style.css">
<meta name="viewport" content="initial-scale=1, maximum-scale=1.4">
<meta name="generator" content="appledoc 2.2.1 (build 1334)">
</head>
<body class="appledoc">
<header>
... | {
"content_hash": "aae5c4207c0d4f1b09452ecc90c05c71",
"timestamp": "",
"source": "github",
"line_count": 224,
"max_line_length": 199,
"avg_line_length": 22.660714285714285,
"alnum_prop": 0.6016548463356974,
"repo_name": "ArtsiomHainetdzinau/Kurento-iOS",
"id": "14ea37c67596151b9a8de86b02889ee75a3b091f... |
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright 2014, The Sporting Exchange Limited
~
~ 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/license... | {
"content_hash": "07f998163a7b899b34914bb9016d1fd2",
"timestamp": "",
"source": "github",
"line_count": 63,
"max_line_length": 144,
"avg_line_length": 51.317460317460316,
"alnum_prop": 0.7503866377977111,
"repo_name": "olupas/cougar",
"id": "e7caecf79d413d3b10f1a10f1e9a0630cd969e4f",
"size": "3233"... |
#pragma once
// Dependencies
#include "../ext/scalar_uint_sized.hpp"
#include "../detail/setup.hpp"
#ifndef GLM_ENABLE_EXPERIMENTAL
# error "GLM: GLM_GTX_raw_data is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."... | {
"content_hash": "8949340960cfd6f5d93068245054ca49",
"timestamp": "",
"source": "github",
"line_count": 40,
"max_line_length": 177,
"avg_line_length": 24.8,
"alnum_prop": 0.6723790322580645,
"repo_name": "vahlers/scg3",
"id": "a0578dc3648e856c9106351d59ddb117514841b1",
"size": "1274",
"binary": f... |
package com.github.DNAProject.core.payload;
import java.io.IOException;
import com.github.DNAProject.common.Address;
import com.github.DNAProject.core.transaction.TransactionType;
import com.github.DNAProject.core.transaction.Transaction;
import com.github.DNAProject.io.BinaryReader;
import com.github.DNAProject.io... | {
"content_hash": "6e60cf23e8732f5767a99be6641bccee",
"timestamp": "",
"source": "github",
"line_count": 57,
"max_line_length": 83,
"avg_line_length": 28.70175438596491,
"alnum_prop": 0.6766503667481663,
"repo_name": "DNAProject/DNASDKJava",
"id": "ce6f9d2f3eeba68c3bcc15511518c3b5f848bd7f",
"size": ... |
from twisted.internet.protocol import Protocol
class HelloServerProtocol(Protocol):
def connectionMade(self):
print("connectionMade", self.transport.getHost(), self.transport.getPeer())
self.transport.write('how are you?' * 100)
def dataReceived(self, data):
print("dataReceived: {}".... | {
"content_hash": "1d8b14eba75ebae1d80dc6d82e8588d3",
"timestamp": "",
"source": "github",
"line_count": 34,
"max_line_length": 83,
"avg_line_length": 31.147058823529413,
"alnum_prop": 0.6052880075542965,
"repo_name": "bencharb/AutobahnPython",
"id": "1c6dd74142b2740e46b008b652cca5f16ced0dbb",
"size... |
FactoryGirl.define do
factory :guide_category do
#user
name "Some Category Name"
end
end
| {
"content_hash": "9b779175128939d764538c8459633538",
"timestamp": "",
"source": "github",
"line_count": 6,
"max_line_length": 29,
"avg_line_length": 16.833333333333332,
"alnum_prop": 0.7029702970297029,
"repo_name": "RailsGEnthusiasts/RubyGameDev.com",
"id": "04963f2d012a9038096ac0d43c8163010551efb5"... |
require 'sass'
module Sass::Script
class Color
def to_s(opts = {})
return rgba_str if alpha?
return smallest if options[:style] == :compressed
#return COLOR_NAMES_REVERSE[rgb] if COLOR_NAMES_REVERSE[rgb]
hex_str
end
end
end | {
"content_hash": "6971cb39955781aa7c1ddf851a072c8e",
"timestamp": "",
"source": "github",
"line_count": 12,
"max_line_length": 66,
"avg_line_length": 22.583333333333332,
"alnum_prop": 0.6199261992619927,
"repo_name": "taikiken/sankaku.js",
"id": "0199b1f66cf26328d34375967b4a0acbffb884f6",
"size": "... |
"""Tests for tf.keras models using DistributionStrategy."""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
import os
from absl.testing import parameterized
import numpy as np
from tensorflow.contrib.distribute.python import combinations
from tensorflow.con... | {
"content_hash": "5cced43cb9e87d1bffee71cc4d8a4dea",
"timestamp": "",
"source": "github",
"line_count": 1138,
"max_line_length": 91,
"avg_line_length": 41.83743409490334,
"alnum_prop": 0.6543865913339354,
"repo_name": "Bismarrck/tensorflow",
"id": "84e9aea228352e0a6010fe95529407818d020b5f",
"size":... |
<?xml version="1.0" encoding="utf-8"?>
<doctrine-mapping xmlns="http://doctrine-project.org/schemas/orm/doctrine-mapping" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://doctrine-project.org/schemas/orm/doctrine-mapping http://doctrine-project.org/schemas/orm/doctrine-mapping.xsd">
<e... | {
"content_hash": "bfce70077a8128b6b1abbad8434a0c01",
"timestamp": "",
"source": "github",
"line_count": 14,
"max_line_length": 276,
"avg_line_length": 54.42857142857143,
"alnum_prop": 0.6902887139107612,
"repo_name": "wbi0737/wbisocial",
"id": "3ae0b1410a98eacf821b625258e73aceb076f7c7",
"size": "76... |
using Microsoft.CodeAnalysis.CodeFixes;
using System.Collections.Immutable;
using System.Threading.Tasks;
namespace Microsoft.NetCore.Analyzers.Runtime
{
/// <summary>
/// CA2215: Dispose Methods Should Call Base Class Dispose
/// </summary>
public abstract class DisposeMethodsShouldCallBaseClassDispos... | {
"content_hash": "56285a38ccb10e9afc5c225609d09cb4",
"timestamp": "",
"source": "github",
"line_count": 27,
"max_line_length": 157,
"avg_line_length": 36.370370370370374,
"alnum_prop": 0.7169042769857433,
"repo_name": "dotnet/roslyn-analyzers",
"id": "9f0670d1993f221055caacffb56b0f41bbd322b4",
"siz... |
SimpleForm.setup do |config|
# Wrappers are used by the form builder to generate a
# complete input. You can remove any component from the
# wrapper, change the order or even add your own to the
# stack. The options given below are used to wrap the
# whole input.
config.wrappers :default, class: :input,
... | {
"content_hash": "2112dfc07aef85e98bed16002b7a4d7b",
"timestamp": "",
"source": "github",
"line_count": 164,
"max_line_length": 93,
"avg_line_length": 38.55487804878049,
"alnum_prop": 0.7162739206073067,
"repo_name": "skoona/SknServices",
"id": "e00d50ad4030f9c71ba1636945c648fa2333fa0e",
"size": "6... |
<!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>Jorge Sanz - Portfolio Webpage</title>
<!-- Bootstrap -->
<link href="https://maxcdn.bootstrapcdn.co... | {
"content_hash": "45fcbd48b2eeda6cd14ac9a93fde8e8c",
"timestamp": "",
"source": "github",
"line_count": 122,
"max_line_length": 154,
"avg_line_length": 39.75409836065574,
"alnum_prop": 0.5492783505154639,
"repo_name": "jorge-sanz/jorge-sanz.github.io",
"id": "a9ec2cb81265b9e83532861d7d8ca0be0bdd4db2"... |
namespace syncer {
DataTypeDebugInfoEmitter::DataTypeDebugInfoEmitter(
ModelType type,
base::ObserverList<TypeDebugInfoObserver>* observers)
: type_(type), type_debug_info_observers_(observers) {}
DataTypeDebugInfoEmitter::~DataTypeDebugInfoEmitter() {}
const CommitCounters& DataTypeDebugInfoEmitter::Get... | {
"content_hash": "8e78d5c3dd88df510e793c8a0cda05ea",
"timestamp": "",
"source": "github",
"line_count": 36,
"max_line_length": 75,
"avg_line_length": 29.61111111111111,
"alnum_prop": 0.7823639774859287,
"repo_name": "Samsung/ChromiumGStreamerBackend",
"id": "68c3a174b84917287b0e2bea211063188fe9dbf0",... |
package com.douwe.notes.projection;
import java.io.Serializable;
import javax.xml.bind.annotation.XmlRootElement;
/**
*
* @author Kenfack Valmy-Roi <roykenvalmy@gmail.com>
*/
@XmlRootElement
public class AuthAccessElement implements Serializable{
public static final String PARAM_AUTH_ID = "auth-id";
public... | {
"content_hash": "a8671a8a3a49bf7f3ccf4b0580ad9c49",
"timestamp": "",
"source": "github",
"line_count": 54,
"max_line_length": 86,
"avg_line_length": 22.685185185185187,
"alnum_prop": 0.6718367346938775,
"repo_name": "infotel-iss/notesBackend",
"id": "bf0a61062d4e0e740c92b04fcc711c64c0112399",
"siz... |
import ChoiceQuestionBase from './ChoiceQuestionBase';
/** 設問:複数選択肢 */
export default class CheckboxQuestion extends ChoiceQuestionBase {
constructor(props) {
super(props, 'checkbox');
}
}
| {
"content_hash": "1af1389d356de78f9a07032a34af3f61",
"timestamp": "",
"source": "github",
"line_count": 8,
"max_line_length": 66,
"avg_line_length": 24.75,
"alnum_prop": 0.7373737373737373,
"repo_name": "jirokun/survey-designer-js",
"id": "62e9124921b5ff0bcc13442c0ed6d979b52d2abc",
"size": "214",
... |
package org.jzb.execution.infrastructure.persistence.jpa;
import org.jzb.execution.domain.Enlist;
import org.jzb.execution.domain.EnlistFeedback;
import org.jzb.execution.domain.repository.EnlistFeedbackRepository;
import javax.enterprise.context.ApplicationScoped;
import java.util.stream.Stream;
/**
* Created by j... | {
"content_hash": "ad7234691197b56316a3d589e7c39278",
"timestamp": "",
"source": "github",
"line_count": 22,
"max_line_length": 128,
"avg_line_length": 33.77272727272727,
"alnum_prop": 0.746971736204576,
"repo_name": "ixtf/japp-execution",
"id": "84be6630c9ceded62e56377a00991bc7d945a2ad",
"size": "7... |
"""Init module for TensorFlow Model Analysis model_agnostic_eval."""
from tensorflow_model_analysis.model_agnostic_eval import model_agnostic_evaluate_graph
from tensorflow_model_analysis.model_agnostic_eval import model_agnostic_extractor
from tensorflow_model_analysis.model_agnostic_eval import model_agnostic_predic... | {
"content_hash": "24acc19fd6a2061a4ed58e08b1f7199d",
"timestamp": "",
"source": "github",
"line_count": 5,
"max_line_length": 87,
"avg_line_length": 64.4,
"alnum_prop": 0.8416149068322981,
"repo_name": "tensorflow/model-analysis",
"id": "8d784bf9fb55f515fed2e6c1e393506f504c7caf",
"size": "897",
"... |
namespace content {
IndexedDBLevelDBEnv::IndexedDBLevelDBEnv()
: ChromiumEnv("LevelDBEnv.IDB", storage::CreateFilesystemProxy()) {}
IndexedDBLevelDBEnv* IndexedDBLevelDBEnv::Get() {
static base::NoDestructor<IndexedDBLevelDBEnv> g_leveldb_env;
return g_leveldb_env.get();
}
} // namespace content
| {
"content_hash": "03f83104ce04c528ba7b703589895558",
"timestamp": "",
"source": "github",
"line_count": 11,
"max_line_length": 72,
"avg_line_length": 28.09090909090909,
"alnum_prop": 0.7605177993527508,
"repo_name": "chromium/chromium",
"id": "20aa0a1a258d7a4f4ce150ac192807583f901835",
"size": "616... |
package org.apache.camel.jsonpath;
import java.io.File;
import java.util.Map;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.component.mock.MockEndpoint;
import org.apache.camel.test.junit5.CamelTestSupport;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.ass... | {
"content_hash": "a4582a4ad184ee10c83e05f46a795c5f",
"timestamp": "",
"source": "github",
"line_count": 48,
"max_line_length": 122,
"avg_line_length": 34.0625,
"alnum_prop": 0.618960244648318,
"repo_name": "cunningt/camel",
"id": "b826d80b8ccbf9970234defc9541e177c08bf7b6",
"size": "2437",
"binary... |
CampaignRetargetingListPage object holds results (list of all entities) of mutate method on Target List settings for campaign layer.
### Service
+ [CampaignRetargetingListService](../../services/CampaignRetargetingListService.md)
### Namespace
[CampaignRetargetingListService#Namespace](../../services/CampaignRetarget... | {
"content_hash": "394d74104af6aecb1485fd40fa656219",
"timestamp": "",
"source": "github",
"line_count": 25,
"max_line_length": 333,
"avg_line_length": 40.96,
"alnum_prop": 0.728515625,
"repo_name": "yahoojp-marketing/sponsored-search-api-documents",
"id": "f3a88e2101b477f5b393c1702c9ee729f89d26d2",
... |
package com.sweethearts.spring.example;
import com.sweethearts.spring.example.respository.AccountRepository;
import com.sweethearts.spring.example.respository.BookmarkRepository;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.f... | {
"content_hash": "ffb67c8cf83bd05a23c91d4f04d97a86",
"timestamp": "",
"source": "github",
"line_count": 108,
"max_line_length": 126,
"avg_line_length": 38.148148148148145,
"alnum_prop": 0.7983009708737864,
"repo_name": "zzragida/SpringExamples",
"id": "5168bc938a48cb8595288de0285f81d06d95c4da",
"si... |
FROM ghost
# Default environment variables
ENV GHOST_URL http://pracujeibloguje.pl
ENV GHOST_HOME /usr/src/ghost
ENV THEMES_HOME $GHOST_HOME/content/themes
ADD config.example.js $GHOST_HOME/
ADD ghostium $THEMES_HOME/ghostium/
# Fix ownership in src
RUN chown -R user $GHOST_SOURCE/content
| {
"content_hash": "389504af03cd6698344da5f84c2bf453",
"timestamp": "",
"source": "github",
"line_count": 12,
"max_line_length": 42,
"avg_line_length": 24.416666666666668,
"alnum_prop": 0.7849829351535836,
"repo_name": "sdwsk/search-examples",
"id": "cbbae175abd4885e3b429d9ffcb194cfa95b3c39",
"size":... |
Spreadsheet converter framework for Lua from .NET
-----
## Usage
```
$ convsheet (XLSXFile) (SheetID) (Options)
(Options):
-csv: Output CSV files
-dir=PATH: Set output directory
```
-----
## Acknowledgment
NPOI - Xslx file reading - https://npoi.codeplex.com/
Moonsharp - Useful Lua implementation in... | {
"content_hash": "ba2c6823e95e77b3b439b1148a8bcaef",
"timestamp": "",
"source": "github",
"line_count": 23,
"max_line_length": 73,
"avg_line_length": 15.478260869565217,
"alnum_prop": 0.6629213483146067,
"repo_name": "futsuki/convsheet",
"id": "c06d6abaf7ea35c20bda6ca4b90645b5de555555",
"size": "36... |
#ifndef _TCULIBDRM_HPP
#define _TCULIBDRM_HPP
/*!
* \file
* \brief Drm utilities.
*//*--------------------------------------------------------------------*/
#if DEQP_SUPPORT_DRM && !defined (CTS_USES_VULKANSC)
#include "deDynamicLibrary.hpp"
#include "deUniquePtr.hpp"
#include <xf86drm.h>
#include <xf86drmMode.h>
... | {
"content_hash": "cbe92c564d9fd144686509c83eacb2d3",
"timestamp": "",
"source": "github",
"line_count": 77,
"max_line_length": 100,
"avg_line_length": 35.58441558441559,
"alnum_prop": 0.7456204379562044,
"repo_name": "KhronosGroup/VK-GL-CTS",
"id": "2868392524b46f805a0984578362346564d637da",
"size"... |
// Provides control sap.ui.ux3.OverlayContainer.
sap.ui.define(['jquery.sap.global', './Overlay', './library'],
function(jQuery, Overlay, library) {
"use strict";
/**
* Constructor for a new OverlayContainer.
*
* @param {string} [sId] id for the new control, generated automatically if no id is given
* @... | {
"content_hash": "a0ecc72f943602edddaf86dc5f55e80d",
"timestamp": "",
"source": "github",
"line_count": 73,
"max_line_length": 136,
"avg_line_length": 25.794520547945204,
"alnum_prop": 0.6648964418481147,
"repo_name": "zaveryukha/openui5_demo",
"id": "04e0e227963cdd15c4a43c0f4bdf00989d060973",
"siz... |
// <copyright file="TransportSubscriptionCardPriceCalculator.cs" company="Automate The Planet Ltd.">
// Copyright 2016 Automate The Planet Ltd.
// 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 ... | {
"content_hash": "d2fc631027bc42064ed7b02834c8ec0c",
"timestamp": "",
"source": "github",
"line_count": 66,
"max_line_length": 105,
"avg_line_length": 33.5,
"alnum_prop": 0.5581184984170059,
"repo_name": "angelovstanton/AutomateThePlanet",
"id": "9b5dd4b3c3a6b86a1365025db40d0a5177cba880",
"size": "... |
package com.enonic.plugin;
import com.enonic.cms.api.client.Client;
import com.enonic.cms.api.plugin.PluginConfig;
import com.enonic.cms.api.plugin.PluginEnvironment;
import com.enonic.cms.api.plugin.ext.http.HttpAutoLogin;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.facto... | {
"content_hash": "5e546ff47623e8dfb5d82e06f0ba0161",
"timestamp": "",
"source": "github",
"line_count": 47,
"max_line_length": 97,
"avg_line_length": 29.72340425531915,
"alnum_prop": 0.7351467430207588,
"repo_name": "enonic/maven-cms-archetype",
"id": "fcc9cb106a71e64efca649959c76863a8dfe63c8",
"si... |
YUI.add('event-custom-base', function (Y, NAME) {
/**
* Custom event engine, DOM event listener abstraction layer, synthetic DOM
* events.
* @module event-custom
*/
Y.Env.evt = {
handles: {},
plugins: {}
};
/**
* Custom event engine, DOM event listener abstraction layer, synthetic DOM
* events.
* @mod... | {
"content_hash": "fb661fd046e891dae6ef5fbcadc85970",
"timestamp": "",
"source": "github",
"line_count": 2486,
"max_line_length": 131,
"avg_line_length": 30.478680611423975,
"alnum_prop": 0.5571466279530157,
"repo_name": "voxarlabs/gesturescatalog",
"id": "24716d0960ca427690f8a07560fb482c9ec89a1a",
... |
Embulk::JavaPlugin.register_filter(
"left_outer_join_json_table", "org.embulk.filter.left_outer_join_json_table.LeftOuterJoinJsonTableFilterPlugin",
File.expand_path('../../../../classpath', __FILE__))
| {
"content_hash": "da0c63259d2926a97dbf0412bd86f09d",
"timestamp": "",
"source": "github",
"line_count": 3,
"max_line_length": 114,
"avg_line_length": 68.66666666666667,
"alnum_prop": 0.7281553398058253,
"repo_name": "civitaspo/embulk-filter-left_outer_join_json_table",
"id": "7ac70b931b985549c9ef1732... |
<!DOCTYPE html>
<!--[if IEMobile 7]><html class="iem7 no-js" lang="en" dir="ltr"><![endif]-->
<!--[if lt IE 7]><html class="lt-ie9 lt-ie8 lt-ie7 no-js" lang="en" dir="ltr"><![endif]-->
<!--[if (IE 7)&(!IEMobile)]><html class="lt-ie9 lt-ie8 no-js" lang="en" dir="ltr"><![endif]-->
<!--[if IE 8]><html class="lt-ie9 no... | {
"content_hash": "421cba12845ba45aa1425dc6dc0e6912",
"timestamp": "",
"source": "github",
"line_count": 424,
"max_line_length": 460,
"avg_line_length": 50.990566037735846,
"alnum_prop": 0.6206753006475486,
"repo_name": "1wheel/scraping",
"id": "f5bce5efa82f1c806690d81a8e7e5f0dc8c08952",
"size": "21... |
using Facebook.Scrumptious.Windows8.ViewModel;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using Windows.Foundation;
using Windows.Foundation.Collections;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Controls.Primitives;
using Windows.UI... | {
"content_hash": "9c08e4436e99483e7087b1468945a9a4",
"timestamp": "",
"source": "github",
"line_count": 64,
"max_line_length": 107,
"avg_line_length": 39.78125,
"alnum_prop": 0.657109190887667,
"repo_name": "facebook-csharp-sdk/facebook-windows8-sample",
"id": "2d4e4c17438fce1ac002c76f5ff116c1dea9783... |
package org.apache.poi.hslf.record;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
import java.util.Map.Entry;
import java.util.TreeMap;
import org.apache.poi.hslf.exceptions.CorruptPowerPoi... | {
"content_hash": "4c4aedbca268da8a0bf82679f9553941",
"timestamp": "",
"source": "github",
"line_count": 231,
"max_line_length": 147,
"avg_line_length": 35.22943722943723,
"alnum_prop": 0.6415581223887933,
"repo_name": "lvweiwolf/poi-3.16",
"id": "8a1c48269697d2655184c3ef442e4b9778f003a2",
"size": "... |
package server
import akka.actor.{ActorRef, ActorSystem}
import java.net.InetSocketAddress
import scala.collection.mutable.ArrayBuffer
/**
* Created with IntelliJ IDEA.
* User: pavel
* Date: 16.12.13
* Time: 18:45
*/
class Server(val host : String, val port : Int) {
val system = ActorSystem("async-io-server")
... | {
"content_hash": "f15ec76ba281cf530a23501f7df30bce",
"timestamp": "",
"source": "github",
"line_count": 23,
"max_line_length": 78,
"avg_line_length": 25.391304347826086,
"alnum_prop": 0.7397260273972602,
"repo_name": "zmactep/hpcource",
"id": "e5e900e5bdb7ee24b0bf22aa6b7119baf1876af7",
"size": "584... |
SYNONYM
#### According to
GRIN Taxonomy for Plants
#### Published in
Trudy Imp. S. -Peterburgsk. Bot. Sada 3(2):43. 1875 (Allior. monogr. 43. )
#### Original name
null
### Remarks
null | {
"content_hash": "648e7021052bddd39b36f062cc1f36ee",
"timestamp": "",
"source": "github",
"line_count": 13,
"max_line_length": 74,
"avg_line_length": 14.461538461538462,
"alnum_prop": 0.6702127659574468,
"repo_name": "mdoering/backbone",
"id": "3676b34ed1fd5e94d35e0210f8bc61da9ae4c55b",
"size": "26... |
{% extends "dashboard/layout/layout.html" %}
{% block content %}
<div class="content-page">
<div class="content">
<div class="container">
<div class="row">
<div class="col-sm-4">
<a href="{{ url_fo... | {
"content_hash": "29bea0dcd3a1b6e68fc73b5dda51c1be",
"timestamp": "",
"source": "github",
"line_count": 97,
"max_line_length": 187,
"avg_line_length": 61.21649484536083,
"alnum_prop": 0.3361401145166723,
"repo_name": "Olamyy/Norman",
"id": "8bc92e1c67e046cabc45408e8a44e775f1f44881",
"size": "5939",... |
class CreateEvents < ActiveRecord::Migration
def self.up
create_table :events do |t|
t.string "name"
t.text "description"
t.boolean "publish"
t.datetime "start_time"
t.datetime "end_time"
t.timestamps
end
end
def self.down
drop_table :events
end
end
| {
"content_hash": "194bdef6e9ff4a27cce3baa4862778ce",
"timestamp": "",
"source": "github",
"line_count": 17,
"max_line_length": 44,
"avg_line_length": 18.823529411764707,
"alnum_prop": 0.6,
"repo_name": "briandoll/Rit",
"id": "f3b40885b0228060e72d853702451fea168fa13d",
"size": "320",
"binary": fal... |
@interface AlertsModel : NSObject
@property NSInteger AlertId;
@property (nonatomic, strong) NSString *AlertName;
@property (nonatomic, strong) NSString *AlertMsg;
@property (nonatomic, strong) NSDate *AlertDtm;
@property NSInteger Importance;
@end
| {
"content_hash": "8e722e3d6b0380908e505fb2deb32cfb",
"timestamp": "",
"source": "github",
"line_count": 9,
"max_line_length": 50,
"avg_line_length": 27.88888888888889,
"alnum_prop": 0.7888446215139442,
"repo_name": "hylander0/theGoodPush_iOS_Client",
"id": "aeccacd542506323bd6f5f4df7baa415ce764c22",
... |
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('@egjs/component'), require('@egjs/imready'), require('@egjs/axes')) :
typeof define === 'function' && define.amd ? define(['@egjs/component', '@egjs/imready', '@egjs/axes'], factory) :... | {
"content_hash": "e4661d0ae19972714932866389532da2",
"timestamp": "",
"source": "github",
"line_count": 5062,
"max_line_length": 586,
"avg_line_length": 36.06775977874358,
"alnum_prop": 0.5939750787347665,
"repo_name": "cdnjs/cdnjs",
"id": "804d6867f8363e046d559d527dd72de9440e37bc",
"size": "188593... |
import datetime
import os
from decimal import Decimal
from unittest import mock, skipUnless
from django import forms
from django.core.exceptions import (
NON_FIELD_ERRORS, FieldError, ImproperlyConfigured, ValidationError,
)
from django.core.files.uploadedfile import SimpleUploadedFile
from django.db import connec... | {
"content_hash": "60ba785a8b27fb6ffa1464bb1ce733bd",
"timestamp": "",
"source": "github",
"line_count": 2974,
"max_line_length": 127,
"avg_line_length": 40.25924680564896,
"alnum_prop": 0.5991096708454786,
"repo_name": "theo-l/django",
"id": "cb8d7c3f842789ff04f40ed0928c6f5cfde756e2",
"size": "1197... |
package org.elasticsearch.xpack.ml.filestructurefinder;
import com.ibm.icu.text.CharsetDetector;
import com.ibm.icu.text.CharsetMatch;
import org.elasticsearch.ElasticsearchTimeoutException;
import org.elasticsearch.common.collect.Tuple;
import org.elasticsearch.common.unit.TimeValue;
import java.io.BufferedInputStr... | {
"content_hash": "26579049c647dbe8e17a9547604ac4d0",
"timestamp": "",
"source": "github",
"line_count": 316,
"max_line_length": 140,
"avg_line_length": 58.848101265822784,
"alnum_prop": 0.6383093138309314,
"repo_name": "gfyoung/elasticsearch",
"id": "a508735af07f3d46d4472f2418041bcbddb07bf2",
"size... |
import Component from '@ember/component'
import ClusterDriver from 'shared/mixins/cluster-driver';
import layout from './template';
import {
get, set, computed, observer, setProperties
} from '@ember/object';
import { sortableNumericSuffix } from 'shared/utils/util';
import { reject, all } from 'rsvp';
import { inje... | {
"content_hash": "75c7c815ef52fef5b73dae77158537da",
"timestamp": "",
"source": "github",
"line_count": 740,
"max_line_length": 148,
"avg_line_length": 26.85810810810811,
"alnum_prop": 0.5529056603773584,
"repo_name": "lvuch/ui",
"id": "74f3a3b97218fb9f1ac19f02685b17696672bc35",
"size": "19875",
... |
<?php defined('COREPATH') or exit('No direct script access allowed'); ?>
ERROR - 2017-08-29 02:03:29 --> Fatal Error - Call to undefined method Model\Test::get_company() in /var/www/ysgservice.com/fuel/app/classes/controller/api/test.php on line 15
| {
"content_hash": "b2dae54ba4259c9541831924911f456b",
"timestamp": "",
"source": "github",
"line_count": 3,
"max_line_length": 175,
"avg_line_length": 83.33333333333333,
"alnum_prop": 0.732,
"repo_name": "yyoshinori/CastlePortal",
"id": "bb68dcd442f54f63cca6f11be8448abcee00f054",
"size": "250",
"b... |
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Text;
using System.Threading.Tasks;
using Microsoft.Research.Naiad;
using Microsoft.Research.Naiad.Dataflow;
using Microsoft.Research.Naiad.Dataflow.Channels;
using Microsoft.Research.Naiad.DataStructures;
using Mic... | {
"content_hash": "6f0a9f78fee4a12d54f2858206919bb7",
"timestamp": "",
"source": "github",
"line_count": 281,
"max_line_length": 155,
"avg_line_length": 30.768683274021353,
"alnum_prop": 0.5825815405968078,
"repo_name": "ms705/Naiad",
"id": "deebb9176733aaf3214d217933bd9066ecd8322b",
"size": "8646",... |
Source = \
alarmsI.cpp \
platformConfigI.cpp \
sessionI.cpp \
ClientAgent.cpp \
LocalCppOptions =
IncludeDirs = \
/usr/include \
${COMPILER_VERSION} \
${ACE_ROOT} \
${TAO_ROOT} \
${TAO_ROOT}/orbsvcs \
LibraryDirs = \
/usr/lib \
${ACE_ROOT}/ace \
${ACE_ROOT}/lib \
${DB_... | {
"content_hash": "80178362227f119fd5c66209011c91be",
"timestamp": "",
"source": "github",
"line_count": 49,
"max_line_length": 33,
"avg_line_length": 16.163265306122447,
"alnum_prop": 0.6439393939393939,
"repo_name": "shorton3/dashingplatforms",
"id": "da0fe223a939c55f390f002a21830ae2eed56b65",
"si... |
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>{{ page.title | strip_html }} - Free tutorial to learn HTML and CSS</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui">
<meta property... | {
"content_hash": "20460d4201f6c15c1c015ba732e9fa71",
"timestamp": "",
"source": "github",
"line_count": 19,
"max_line_length": 332,
"avg_line_length": 71.10526315789474,
"alnum_prop": 0.7061435973353072,
"repo_name": "TryCodeHub/CodeHubAndroid",
"id": "9efad824341119f045ec8f17e4ef7680f9e60fc5",
"si... |
package org.usfirst.frc.team236.robot;
import org.usfirst.frc.team236.robot.commands.ShiftDown;
import org.usfirst.frc.team236.robot.commands.ShootCycle;
import org.usfirst.frc.team236.robot.commands.autonomous.AutoShoot;
import org.usfirst.frc.team236.robot.commands.autonomous.BackwardRawtonomous;
import org.usfirst.... | {
"content_hash": "6e322c28947b325674f03a5f1425b839",
"timestamp": "",
"source": "github",
"line_count": 177,
"max_line_length": 84,
"avg_line_length": 30.785310734463277,
"alnum_prop": 0.7500458799779776,
"repo_name": "Team236/2016-Robot",
"id": "afcd9588345d29aeba21143a3394760cb9d504b9",
"size": "... |
"use strict";
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" :... | {
"content_hash": "b3cb7127195025bc7368e2bdaddcd6dc",
"timestamp": "",
"source": "github",
"line_count": 524,
"max_line_length": 452,
"avg_line_length": 32.00954198473283,
"alnum_prop": 0.6119358492815835,
"repo_name": "minutemailer/react-popup",
"id": "f20f47c609ccc9e69fdbf261ed8c1ac19a585a66",
"si... |
package com.demigodsrpg.chitchat.util;
import java.io.File;
import java.io.IOException;
import java.lang.reflect.Method;
import java.net.URL;
import java.net.URLClassLoader;
public class ClassPathHack {
private static final Class[] parameters = new Class[]{URL.class};
private ClassPathHack() {
}
p... | {
"content_hash": "36f5e0f44c43da47a3db1849f6aee92e",
"timestamp": "",
"source": "github",
"line_count": 33,
"max_line_length": 84,
"avg_line_length": 29.90909090909091,
"alnum_prop": 0.6646403242147924,
"repo_name": "DemigodsRPG/Chitchat",
"id": "fbb96b68426e93cbd2a683fdb9b974875bd4a1de",
"size": "... |
<!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_45) on Thu Nov 13 21:22:01 UTC 2014 -->
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<TITLE>
Uses of Class org.apache.hadoop.y... | {
"content_hash": "d2e6e75cabc821dd90f9ac2fa0cfb573",
"timestamp": "",
"source": "github",
"line_count": 383,
"max_line_length": 487,
"avg_line_length": 65.2219321148825,
"alnum_prop": 0.6676941553242594,
"repo_name": "gsoundar/mambo-ec2-deploy",
"id": "2042da3fa5c52b7738c41fb7e58ddc84c0999d99",
"si... |
package org.cobbzilla.wizard.client.script;
import org.cobbzilla.wizard.util.RestResponse;
import java.util.Map;
public interface ApiRunnerListener {
String getName();
ApiRunner getApiRunner();
void setApiRunner(ApiRunner runner);
default void setCtxVars(Map<String, Object> ctx) {}
void before... | {
"content_hash": "e858ef10e74154a027fb3aed7bf91243",
"timestamp": "",
"source": "github",
"line_count": 33,
"max_line_length": 120,
"avg_line_length": 35.96969696969697,
"alnum_prop": 0.7573715248525695,
"repo_name": "cobbzilla/cobbzilla-wizard",
"id": "2a3a2c6adb376e7494ddfdd9a5024bbab9bef5dd",
"s... |
declare const gT: import('../tia-types').GlobalTiaObjects;
gT.t.setTitle('TypeScript testcase test');
| {
"content_hash": "e24ef1f54c1474065191a24cae4f8d7c",
"timestamp": "",
"source": "github",
"line_count": 3,
"max_line_length": 58,
"avg_line_length": 34.333333333333336,
"alnum_prop": 0.7475728155339806,
"repo_name": "Dzenly/tia",
"id": "38f9affede84711d03b7187101825524f04ab424",
"size": "103",
"b... |
**WHAT:**
This is an example of Bob Nystrom's
"[Baby's First Garbage Collector](http://journal.stuffwithstuff.com/2013/12/08/babys-first-garbage-collector/),"
which I've been wanting to implement for a while in order to understand
it better. To make the problem harder (as I always do), I decided to
write it in C++, a... | {
"content_hash": "e2d33fd13ce21d42231706c4cb562a03",
"timestamp": "",
"source": "github",
"line_count": 82,
"max_line_length": 112,
"avg_line_length": 41.59756097560975,
"alnum_prop": 0.7622398123717385,
"repo_name": "elfsternberg/SimpleGarbageCollector",
"id": "420906c50a87cd9863c4e48f1288b923cf8fd3... |
<?xml version="1.0" encoding="UTF-8"?>
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-2.0.xsd">
<changeSet id=... | {
"content_hash": "d3e79e8447f14e095f42a536263e3bd7",
"timestamp": "",
"source": "github",
"line_count": 24,
"max_line_length": 131,
"avg_line_length": 39.625,
"alnum_prop": 0.6729758149316509,
"repo_name": "openforis/collect",
"id": "d161bcd867815868a50e4f326f3e1de4f63ace7b",
"size": "951",
"bina... |
<?php
global $lang;
$lang['en_US']['Page']['PLURALNAME'] = array(
'Pags',
50,
'Pural name of the object, used in dropdowns and to generally identify a collection of this object in the interface'
);
$lang['en_US']['Page']['SINGULARNAME'] = array(
'Page',
50,
'Singular name of the object, used in dropdowns and to... | {
"content_hash": "f97bdb5c61d97312b07bca0a38d8c3c0",
"timestamp": "",
"source": "github",
"line_count": 960,
"max_line_length": 357,
"avg_line_length": 53.471875,
"alnum_prop": 0.6749264605614322,
"repo_name": "michaelbirks/lawdiff",
"id": "72b427977d26bfda9577cbdabb84d4baaf2baf03",
"size": "51333"... |
<!DOCTYPE html><html><head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="description">
<meta name="keywords" content="static content generator,static site generator,static site,HTML,web development,.NET,C#,Razor,Markdown,YAML">
<meta n... | {
"content_hash": "82c899e73fa7a8d65e266dc025cb2a33",
"timestamp": "",
"source": "github",
"line_count": 278,
"max_line_length": 148,
"avg_line_length": 39.589928057553955,
"alnum_prop": 0.5088133745229875,
"repo_name": "OpenTl/OpenTl.Schema",
"id": "69c75c14995d6390ad613cb856c26d7a1ceaeca8",
"size"... |
#include <boost/thread/thread.hpp>
#include <boost/date_time/posix_time/posix_time.hpp>
#include <pcl/point_cloud.h>
#include <pcl/point_types.h>
#include <pcl/common/time.h> //fps calculations
#include <pcl/io/openni_grabber.h>
#include <pcl/visualization/cloud_viewer.h>
#include <pcl/visualization/image_viewer.h>
#... | {
"content_hash": "342a37e58b1e10fb445d37e1abc14a60",
"timestamp": "",
"source": "github",
"line_count": 344,
"max_line_length": 192,
"avg_line_length": 35.53779069767442,
"alnum_prop": 0.5784867075664621,
"repo_name": "ros-perception/pcl-fuerte",
"id": "2882749e0abb98429daa9d0aaa47d9d367199616",
"s... |
CREATE PROCEDURE T4SQL.META_CREATE_WORKITEM_TRIGGER
(
@inWorkitem_Table NVARCHAR(128)
)
AS
SET NOCOUNT ON;
DECLARE @tDdlSql NVARCHAR(1024), @tSchema NVARCHAR(64);
IF NOT EXISTS
(
SELECT
1
FROM
sys.triggers T
WHERE
T.parent_id = OBJECT_ID(@inWorkitem_Table, N'U')
AND T.type ... | {
"content_hash": "6eb6941e16390f344a760ac20f5adafa",
"timestamp": "",
"source": "github",
"line_count": 64,
"max_line_length": 100,
"avg_line_length": 27.140625,
"alnum_prop": 0.5785837651122625,
"repo_name": "DataBooster/T4SQL",
"id": "8c85c93babca77cf66ad24dc0ceca8a40c422d08",
"size": "1739",
"... |
ACCEPTED
#### According to
International Plant Names Index
#### Published in
null
#### Original name
null
### Remarks
null | {
"content_hash": "4b062e8ded1f559e8b986aeff718f914",
"timestamp": "",
"source": "github",
"line_count": 13,
"max_line_length": 31,
"avg_line_length": 9.692307692307692,
"alnum_prop": 0.7063492063492064,
"repo_name": "mdoering/backbone",
"id": "4a2fe4f524230f5741894194d581d7ca862e766d",
"size": "176... |
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Rhino.Mocks;
using SS.FTPDownloader.Objects.Media;
using SS.FTPDownloader.Utilities;
// ReSharper disable once CheckNamespace
namespace SS.FTPDownloader.UnitTests.Objects.TvEpisodeTests
{
[TestClass]
public class FileNameParsingTests
{
[TestMethod]
publ... | {
"content_hash": "3ce4f2c6b2723002ee68029830a97d96",
"timestamp": "",
"source": "github",
"line_count": 415,
"max_line_length": 117,
"avg_line_length": 28.09879518072289,
"alnum_prop": 0.7103164394134294,
"repo_name": "kingofzeal/SS.FTPDownloader",
"id": "338a41c8a3faee905c167bce832344a4fd5828b2",
... |
package com.google.gerrit.server.change;
import com.google.gerrit.extensions.registration.DynamicMap;
import com.google.gerrit.extensions.restapi.ChildCollection;
import com.google.gerrit.extensions.restapi.IdString;
import com.google.gerrit.extensions.restapi.RestView;
import com.google.inject.Inject;
import com.goog... | {
"content_hash": "4f6dcc328a26f108225f45e2fce9f817",
"timestamp": "",
"source": "github",
"line_count": 34,
"max_line_length": 71,
"avg_line_length": 28.61764705882353,
"alnum_prop": 0.7821171634121274,
"repo_name": "midnightradio/gerrit",
"id": "55834da0dafcad64fabe6bf3adfd949f2770d7df",
"size": "... |
using namespace BloombergLP;
using namespace bsl;
// ============================================================================
// TEST PLAN
// ----------------------------------------------------------------------------
// Overview
// ... | {
"content_hash": "874ee6916a54866ef87130ff297af3d8",
"timestamp": "",
"source": "github",
"line_count": 2600,
"max_line_length": 79,
"avg_line_length": 34.95076923076923,
"alnum_prop": 0.4973149044810283,
"repo_name": "bloomberg/bde",
"id": "488bb4c5950f1aa0e682e3f0b66b80ff036308ea",
"size": "91774... |
#ifndef _EFI_BS_SERIAL_STATUS_CODE_LIB_H_
#define _EFI_BS_SERIAL_STATUS_CODE_LIB_H_
//
// Statements that include other files
//
#include "Tiano.h"
//
// Initialization function
//
VOID
EFIAPI
BsSerialInitializeStatusCode (
IN EFI_HANDLE ImageHandle,
IN EFI_SYSTEM_TABLE *SystemTable
)
;
//
// Statu... | {
"content_hash": "080334478810d25ef6275660e2fe7257",
"timestamp": "",
"source": "github",
"line_count": 36,
"max_line_length": 45,
"avg_line_length": 17.02777777777778,
"alnum_prop": 0.6557911908646004,
"repo_name": "bitcrystal/edk",
"id": "88a64872f194a6b66935fd0e7239d5637979bcfa",
"size": "1472",... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.