text stringlengths 2 1.04M | meta dict |
|---|---|
package me.rhespanhol.rxtraktjava.entities;
import org.joda.time.DateTime;
public class CalendarShowEntry {
public DateTime first_aired;
public Episode episode;
public Show show;
}
| {
"content_hash": "f7aef8227900eadc7fa3ad2dec14dcc3",
"timestamp": "",
"source": "github",
"line_count": 11,
"max_line_length": 43,
"avg_line_length": 17.90909090909091,
"alnum_prop": 0.7563451776649747,
"repo_name": "rhespanhol/RxTraktJava",
"id": "4149e1afae0b87aab840545b2af043ebdd26ca17",
"size":... |
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>os... | {
"content_hash": "e66033caaa8d89a4f442a3c3bd454b95",
"timestamp": "",
"source": "github",
"line_count": 905,
"max_line_length": 201,
"avg_line_length": 40.665193370165746,
"alnum_prop": 0.46839845660561924,
"repo_name": "payneteasy/superfly",
"id": "3a606546138f01fb9767f27f317a20eea671bf43",
"size"... |
<?php
// Copyright 2006-2017 Faisal Thaheem
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law... | {
"content_hash": "9bf744e8424e610add2112362e42db2b",
"timestamp": "",
"source": "github",
"line_count": 107,
"max_line_length": 179,
"avg_line_length": 27.61682242990654,
"alnum_prop": 0.6382402707275804,
"repo_name": "faisalthaheem/denovo-voucher-script",
"id": "96f559489d7da8641cab707ec43991121be8c... |
require "test_helper"
describe Hbc::CLI::List do
it "lists the installed Casks in a pretty fashion" do
casks = %w[local-caffeine local-transmission].map { |c| Hbc.load(c) }
casks.each do |c|
TestHelper.install_with_caskfile(c)
end
lambda {
Hbc::CLI::List.run
}.must_output <<-OUTPUT.... | {
"content_hash": "d891985280efe49593640ea96b193339",
"timestamp": "",
"source": "github",
"line_count": 79,
"max_line_length": 98,
"avg_line_length": 27.468354430379748,
"alnum_prop": 0.616589861751152,
"repo_name": "gilesdring/homebrew-cask",
"id": "1df5c7188a0f58a7b80db9dff8800b77e7f9b4c6",
"size... |
This is forked version of jcjohnson's [torch-rnn](https://github.com/jcjohnson/torch-rnn). Following changes were introduced:
* Implemented Pyphen-based syllabic prediction (thanks to [dreavjr](https://github.com/dreavjr) for his PyHyphen syllabic prediction implementation, on which I've based mine).
* Included [marao... | {
"content_hash": "d72e707eb9947db7ad30e4bdfd8a4cb4",
"timestamp": "",
"source": "github",
"line_count": 180,
"max_line_length": 175,
"avg_line_length": 42.361111111111114,
"alnum_prop": 0.7537049180327868,
"repo_name": "tmp6154/torch-rnn",
"id": "6ff0a4aa023ce7c2b311feb5853f90d85015653d",
"size": "... |
RSpec.describe RuboCop::Cop::Naming::HeredocDelimiterCase, :config do
let(:config) do
RuboCop::Config.new(described_class.badge.to_s => cop_config)
end
context 'when enforced style is uppercase' do
let(:cop_config) do
{
'SupportedStyles' => %w[uppercase lowercase],
'EnforcedStyle' =... | {
"content_hash": "5583c063fedc93416646f9ffed74f548",
"timestamp": "",
"source": "github",
"line_count": 349,
"max_line_length": 77,
"avg_line_length": 22.92836676217765,
"alnum_prop": 0.4823794051487128,
"repo_name": "tdeo/rubocop",
"id": "7a4ed9a80c1035cda128913c2d3ff3890ee1e7cd",
"size": "8033",
... |
'use strict';
const fs = require('fs');
const path = require('path');
const winston = require('../lib/winston');
const filename = path.join(__dirname, 'created-logfile.log');
//
// Remove the file, ignoring any errors
//
try { fs.unlinkSync(filename); }
catch (ex) { }
//
// Create a new winston logger instance with... | {
"content_hash": "9d3b870f6fdf9dfe5f8796d1f2c82605",
"timestamp": "",
"source": "github",
"line_count": 34,
"max_line_length": 77,
"avg_line_length": 20.970588235294116,
"alnum_prop": 0.6451612903225806,
"repo_name": "winstonjs/winston",
"id": "6fd0e18b35fe669561a1b76da4920f89b02a876c",
"size": "71... |
from __future__ import print_function
import numpy as np
class Classifier:
def __init__(self,subjectNodes,userNodes):
self.subjectNodes = subjectNodes
self.userNodes = userNodes
self.alpha = 0.6
def __classify__(self,attributeList):
for att in attributeList:
for su... | {
"content_hash": "f2196055d5bd5e89b90958102c36be5f",
"timestamp": "",
"source": "github",
"line_count": 84,
"max_line_length": 82,
"avg_line_length": 24.833333333333332,
"alnum_prop": 0.5067114093959731,
"repo_name": "camallen/aggregation",
"id": "f472561f1bcf1ec494e6bbed50620239b6f3ce22",
"size": ... |
<!-- Title of Post Form Input -->
<div class="form-group @if ($errors->has('title')) has-error @endif">
{!! Form::label('title', 'Title') !!}
{!! Form::text('title', null, ['class' => 'form-control', 'placeholder' => 'Title of Post']) !!}
@if ($errors->has('title')) <p class="help-block">{{ $errors->first('... | {
"content_hash": "32b81227d40d9705eaf622b6855cf762",
"timestamp": "",
"source": "github",
"line_count": 17,
"max_line_length": 114,
"avg_line_length": 47.05882352941177,
"alnum_prop": 0.5775,
"repo_name": "adsofmelk/art",
"id": "9d58d53a11c08ea7d63f9181e9c7ba429c6ba0e5",
"size": "800",
"binary": ... |
//
// This file is part of nuBASIC
// Copyright (c) Antonino Calderone (antonino.calderone@gmail.com)
// All rights reserved.
// Licensed under the MIT License.
// See COPYING file in the project root for full license information.
//
/* -------------------------------------------------------------------------- */... | {
"content_hash": "1697cab7781c9c061a2abf3d36c962cc",
"timestamp": "",
"source": "github",
"line_count": 56,
"max_line_length": 88,
"avg_line_length": 31.375,
"alnum_prop": 0.5025611838360843,
"repo_name": "eantcal/nubasic",
"id": "b508d77884e0c0fa889670537dffbd9b9c2f4bf3",
"size": "1757",
"binary... |
package org.apache.samza.storage;
import java.io.File;
import org.apache.samza.container.SamzaContainerContext;
import org.apache.samza.metrics.MetricsRegistry;
import org.apache.samza.serializers.Serde;
import org.apache.samza.system.SystemStreamPartition;
import org.apache.samza.task.MessageCollector;
public cla... | {
"content_hash": "ce483feb0ffeb71b80c5fad3e16c0d54",
"timestamp": "",
"source": "github",
"line_count": 21,
"max_line_length": 120,
"avg_line_length": 43.61904761904762,
"alnum_prop": 0.8307860262008734,
"repo_name": "InnovaCo/samza",
"id": "d483ae69fe0aaacf5135ff16072a2d655254afaf",
"size": "1723"... |
package com.thinkgem.jeesite.test.web;
/**
* Created by mk on 2017/9/18.
*/
public class teee {
}
| {
"content_hash": "817d7559b4910e3e05b45728576b8245",
"timestamp": "",
"source": "github",
"line_count": 7,
"max_line_length": 38,
"avg_line_length": 14.428571428571429,
"alnum_prop": 0.6633663366336634,
"repo_name": "QQ85979512/jeesite-master",
"id": "14ae09c7db70df7353b904701acb30eeb77fa8de",
"siz... |
#import "TiBase.h"
#import "KrollBridge.h"
#import "KrollCallback.h"
#import "KrollObject.h"
#import "TiHost.h"
#import "TopTiModule.h"
#import "TiUtils.h"
#import "TiApp.h"
#import "ApplicationMods.h"
#import <libkern/OSAtomic.h>
#import "KrollContext.h"
#import "TiConsole.h"
#import "TiExceptionHandler.h"
#import "A... | {
"content_hash": "5dc60cb0119f5313769d8ad22d4df0a3",
"timestamp": "",
"source": "github",
"line_count": 1098,
"max_line_length": 184,
"avg_line_length": 30.636612021857925,
"alnum_prop": 0.6967507952079431,
"repo_name": "pinnamur/titanium_mobile",
"id": "6d6008631136b087426f2bfd6ac032fd39aab124",
"... |
"""
Written by Nathan Fritz and Lance Stout. Copyright 2011 by &yet, LLC.
Released under the terms of the MIT License
"""
import time
import uuid
try:
import queue
except ImportError:
import Queue as queue
from thoonk.exceptions import *
import redis.exceptions
class Feed(object):
"""
A Thoo... | {
"content_hash": "d1b3e928823c5b8d87595859a2de09c2",
"timestamp": "",
"source": "github",
"line_count": 204,
"max_line_length": 77,
"avg_line_length": 34.53431372549019,
"alnum_prop": 0.5635202271114266,
"repo_name": "andyet/thoonk.py",
"id": "bf40de93bc7e5e1818d4f475108b50cc265800dc",
"size": "704... |
package net.sf.jabref.logic.importer.fetcher;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.net.MalformedURLException;
import java.net.URL;
import java.nio.charset.StandardCharsets;
import java.util.Optional;
import net.sf.jabref.logic.formatter.bibtexfields.UnitsToLatexFormatter;
impo... | {
"content_hash": "05d27cad3dd2c13bfc8e6c3ee63bc613",
"timestamp": "",
"source": "github",
"line_count": 103,
"max_line_length": 118,
"avg_line_length": 39.601941747572816,
"alnum_prop": 0.6695268448149057,
"repo_name": "motokito/jabref",
"id": "45ade5bda400f1efb66c6ceb1a65bc38f0e62db3",
"size": "40... |
"use strict";
var drinkreviews,
DrinkReview = require("../../models/drinkReview");
// Reused by all routes
function respond(res, result) {
var code = result.success ? 200 : 500;
res.status(code).json(result);
}
function findById(req, res) {
DrinkReview.findById(req.params, respond.bind(null, res));
}... | {
"content_hash": "e81ea7ec4db9a9b01d4c5d4891f077c0",
"timestamp": "",
"source": "github",
"line_count": 44,
"max_line_length": 62,
"avg_line_length": 21.25,
"alnum_prop": 0.6556149732620321,
"repo_name": "rcruz/whiskey-app",
"id": "4e0bc2809706cf1b76c517f9cc9ab852023592ab",
"size": "935",
"binary... |
var lang = require('cssauron-falafel')
, falafel = require('falafel')
, through = require('through')
var test_file_rex = /\.test\.js$/
, is_require_pass
is_require_pass = lang(
'call > id[name=suite]:first-child + literal ' +
'~ function > id[name=require]'
)
module.exports = transform
function transf... | {
"content_hash": "98974b8598e0faff97e1f3a6e86c96a1",
"timestamp": "",
"source": "github",
"line_count": 41,
"max_line_length": 52,
"avg_line_length": 18.804878048780488,
"alnum_prop": 0.5992217898832685,
"repo_name": "urbanairship/drive.js",
"id": "5ee1842fb63dfe9fded6012aa3ee584abc9f210c",
"size":... |
<?php
declare(strict_types=1);
namespace Edde\Service\Validator;
use Edde\Validator\IValidatorManager;
trait ValidatorManager {
/** @var IValidatorManager */
protected $validatorManager;
/**
* @param IValidatorManager $validatorManager
*/
public function injectValidatorManager(IValidatorMa... | {
"content_hash": "b48ca16ee29334873b2ccc4f86ea23c5",
"timestamp": "",
"source": "github",
"line_count": 18,
"max_line_length": 87,
"avg_line_length": 23,
"alnum_prop": 0.717391304347826,
"repo_name": "edde-framework/edde",
"id": "726c005054c7f51671c593f280ecb09410014227",
"size": "414",
"binary":... |
#ifndef itkLabelShapeKeepNObjectsImageFilter_h
#define itkLabelShapeKeepNObjectsImageFilter_h
#include "itkShapeLabelObject.h"
#include "itkLabelImageToLabelMapFilter.h"
#include "itkShapeLabelMapFilter.h"
#include "itkShapeKeepNObjectsLabelMapFilter.h"
#include "itkLabelMapToLabelImageFilter.h"
namespace itk
{
/** ... | {
"content_hash": "b4464d42c113d2d80f3734b462c4e161",
"timestamp": "",
"source": "github",
"line_count": 158,
"max_line_length": 141,
"avg_line_length": 40.74050632911393,
"alnum_prop": 0.7371446325928227,
"repo_name": "PlutoniumHeart/ITK",
"id": "b53630749ef786ce8564096dd027c4eb65e2731f",
"size": "... |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>Uses of Class org.apache.commons.collections4.bidimap.AbstractOrderedBidiMapDecorator (Apache Common... | {
"content_hash": "3b77be0e247bd618e8c3e61e23667e85",
"timestamp": "",
"source": "github",
"line_count": 175,
"max_line_length": 413,
"avg_line_length": 50.18857142857143,
"alnum_prop": 0.6751679380621656,
"repo_name": "LDAforVisProject/VKPSA",
"id": "7530403ae6acf91009e00d2319bfd25fa23d91ef",
"size... |
package pl.java.scalatech.design_pattern.aroundMethod;
import java.util.function.Consumer;
import lombok.extern.slf4j.Slf4j;
@Slf4j
public class Resource {
private Resource(){
log.info("create resource");
}
public Resource operationOne(){
log.info("operation one");
return this;
}
publi... | {
"content_hash": "0c326b103aee667a9a960223843c7271",
"timestamp": "",
"source": "github",
"line_count": 34,
"max_line_length": 54,
"avg_line_length": 19.705882352941178,
"alnum_prop": 0.6238805970149254,
"repo_name": "przodownikR1/java8features",
"id": "781bf1f7aa368707adb2163051c2fc7c2b22a755",
"s... |
<?php
namespace SharePoint\PHP\Client\WebParts;
use SharePoint\PHP\Client\ClientObject;
class WebPart extends ClientObject
{
} | {
"content_hash": "a715962a064de28fa6217fb692bcaca8",
"timestamp": "",
"source": "github",
"line_count": 9,
"max_line_length": 41,
"avg_line_length": 14.333333333333334,
"alnum_prop": 0.8062015503875969,
"repo_name": "ctcudd/phpSPO",
"id": "d191363ccce38b1eda8118033789162e12276d2f",
"size": "129",
... |
// No for loop here. Instead, a global variable.
var y = 0;
function setup(){
createCanvas(200,200);
background(255);
// Slowing down the frame rate so we can easily see the effect.
setFrameRate(5);
};
function draw(){
// Draw a line
stroke(0);
// Only one line is drawn each time through draw().
lin... | {
"content_hash": "b441e4e50347b208280e1f997c2b1b83",
"timestamp": "",
"source": "github",
"line_count": 23,
"max_line_length": 65,
"avg_line_length": 20.217391304347824,
"alnum_prop": 0.6193548387096774,
"repo_name": "hcvazquez/UFFOptimizer",
"id": "c729cc3da53b62b3eb38105f0969fbd669df283f",
"size"... |
package com.example.cl.notepad.DataAdapter;
import android.content.Context;
import android.database.Cursor;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.CursorAdapter;
import android.widget.TextView;
import com.example.cl.notepad.ConstantValue;
imp... | {
"content_hash": "6092e56cad8f51c9c43a108bba54c33d",
"timestamp": "",
"source": "github",
"line_count": 91,
"max_line_length": 124,
"avg_line_length": 35.94505494505494,
"alnum_prop": 0.7013145826964231,
"repo_name": "AllenChenAndroid/NotePad",
"id": "6f0d9155c5095d54afe2cd95d9ac192f9c5ed8bd",
"siz... |
Yet Another Entity-Component System. Fed up with the vast variety of ECS
available in Rust crates, I decided "me too" and dived in with this effort.
## Current state
At present, this is a deliberately simple and naive implementation, as my poor
little brain hurt when I looked at other awesome systems such as [ecs](ht... | {
"content_hash": "f2c42a1fdec5e1bb1287947ad43464ee",
"timestamp": "",
"source": "github",
"line_count": 11,
"max_line_length": 109,
"avg_line_length": 56.54545454545455,
"alnum_prop": 0.7845659163987139,
"repo_name": "davidedmonds/yaecs",
"id": "ef44c35504bab7925060490e701cfcdf8b37e698",
"size": "6... |
<?php
namespace Proyecto\TaskBundle\Form;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolverInterface;
class CountryType extends AbstractType
{
/**
* @param FormBuilderInterface $builder
* @param array $opt... | {
"content_hash": "58c95279ed4da48d9a70ea720b6abcd5",
"timestamp": "",
"source": "github",
"line_count": 40,
"max_line_length": 76,
"avg_line_length": 22.525,
"alnum_prop": 0.6270810210876804,
"repo_name": "ilzayas/arbeitsplan",
"id": "5c771a72cdd6526e749d33bceee6aba13c13ba2b",
"size": "901",
"bin... |
declare module 'oada-error' {
export class OADAError {
constructor(
message: string,
code?: number,
userMessage?: string | null,
href?: string | null,
detail?: string | null
);
}
}
// Make TS understand assert better
declare module 'assert' {
function internal(value: any, me... | {
"content_hash": "4b69bb0c98a10c60b86c3167f777ab2e",
"timestamp": "",
"source": "github",
"line_count": 16,
"max_line_length": 73,
"avg_line_length": 22.625,
"alnum_prop": 0.6298342541436464,
"repo_name": "OADA/oada-srvc-docker",
"id": "af5f5fb61d7ab4ad4c88a48013f1ed747fe9774d",
"size": "362",
"b... |
<?xml version="1.0" encoding="utf-8"?>
<appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android"
android:minWidth="110dp"
android:minHeight="40dp"
android:updatePeriodMillis="86400000"
android:previewImage="@drawable/example_appwidget_preview"
android:initialLayout="@layout/demo... | {
"content_hash": "8dcee195217d2831114c8f24aa9fb659",
"timestamp": "",
"source": "github",
"line_count": 12,
"max_line_length": 86,
"avg_line_length": 49,
"alnum_prop": 0.7687074829931972,
"repo_name": "andreasnilsson/RemoteViewsDemo",
"id": "a904ba6907259df2c2b7eff4d35999b089aba36d",
"size": "588",... |
/* global describe it */
var path = require('path')
var chai = require('chai')
var check = require(path.resolve(__dirname, '../index'))
chai.should()
chai.config.includeStack = true
describe('got', function () {
function Base () {
this.a = 1
}
function Sub () {
this.b = 2
}
Sub.prototype = new Ba... | {
"content_hash": "76096d0c324a4300560de8df8305709c",
"timestamp": "",
"source": "github",
"line_count": 31,
"max_line_length": 56,
"avg_line_length": 17.612903225806452,
"alnum_prop": 0.5531135531135531,
"repo_name": "yusangeng/param-check",
"id": "38c79706ae0dfba85fed9201c115318cca2b9974",
"size":... |
SYNONYM
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
null
#### Original name
null
### Remarks
null | {
"content_hash": "d05f632f1e9822adbc330311f5a4bd08",
"timestamp": "",
"source": "github",
"line_count": 13,
"max_line_length": 39,
"avg_line_length": 10.23076923076923,
"alnum_prop": 0.6917293233082706,
"repo_name": "mdoering/backbone",
"id": "5bf4980a8bf184b6ba03c4ad601730be3b33473f",
"size": "191... |
from django.test.client import Client
from django.test import TestCase
from push.views import *
class UrlResolveTests(TestCase):
def test_url_index(self):
c = Client()
response = c.get('/')
self.assertEqual(response.status_code, 302)
def test_url_index_page(self):
c = Client()
... | {
"content_hash": "b9a014a62c67fcb293abfd70914279f9",
"timestamp": "",
"source": "github",
"line_count": 15,
"max_line_length": 51,
"avg_line_length": 30.8,
"alnum_prop": 0.6363636363636364,
"repo_name": "nnsnodnb/django-mbaas",
"id": "44cd2d2efbcfefe6063340f67ea3d63a330a483c",
"size": "478",
"bin... |
ACCEPTED
#### According to
International Plant Names Index
#### Published in
null
#### Original name
null
### Remarks
null | {
"content_hash": "6b0caadbb25a776cf2f3af1cc2f43ea6",
"timestamp": "",
"source": "github",
"line_count": 13,
"max_line_length": 31,
"avg_line_length": 9.692307692307692,
"alnum_prop": 0.7063492063492064,
"repo_name": "mdoering/backbone",
"id": "f0982949755b262cbce9b4699f982caec308527f",
"size": "186... |
export { default } from 'shared/components/star-rating/component'; | {
"content_hash": "b4c50ad5c435de46df912dda3cd3bd44",
"timestamp": "",
"source": "github",
"line_count": 1,
"max_line_length": 66,
"avg_line_length": 66,
"alnum_prop": 0.7878787878787878,
"repo_name": "pengjiang80/ui",
"id": "e79a50017a472079063777f849437baa2a89fa87",
"size": "66",
"binary": false... |
package org.deviceconnect.android.event.cache;
import org.deviceconnect.android.event.Event;
import org.deviceconnect.android.event.EventError;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.concurrent.CopyOnWriteArrayLi... | {
"content_hash": "c150a6ae91009f355afa1993640690ab",
"timestamp": "",
"source": "github",
"line_count": 293,
"max_line_length": 105,
"avg_line_length": 28.392491467576793,
"alnum_prop": 0.531674480105782,
"repo_name": "TakayukiHoshi1984/DeviceConnect-Android",
"id": "b20b3a525905051a1aa7c9bbeb7d333b7... |
package jp.ne.smma.wheel;
import android.database.DataSetObserver;
import android.view.View;
import android.view.ViewGroup;
/**
* Wheel items adapter interface
*/
public interface WheelViewAdapter {
/**
* Gets items count
* @return the count of wheel items
*/
public int ge... | {
"content_hash": "2f60be24038f39d76f5870fe581f097b",
"timestamp": "",
"source": "github",
"line_count": 49,
"max_line_length": 100,
"avg_line_length": 33.97959183673469,
"alnum_prop": 0.6288288288288288,
"repo_name": "NhamPhanDinh/smmatest",
"id": "3a899cdf4042e89a515aaa0a1745a4c288baae69",
"size":... |
class Browser;
namespace content {
class BrowserContext;
}
namespace aura {
class Window;
}
namespace chrome {
class MultiUserWindowManagerChromeOS;
// The MultiUserWindowManager manages windows from multiple users by presenting
// only user relevant windows to the current user. The manager is automatically
// det... | {
"content_hash": "cb82cc421746fa05d95a95e9dbb69ed9",
"timestamp": "",
"source": "github",
"line_count": 140,
"max_line_length": 80,
"avg_line_length": 41.621428571428574,
"alnum_prop": 0.7271323150849494,
"repo_name": "patrickm/chromium.src",
"id": "af43f3ec414a68af8d34f944ba50e54b24805449",
"size"... |
class leveldb_error : public std::runtime_error
{
public:
leveldb_error(const std::string &msg) : std::runtime_error(msg) {}
};
void HandleError(const leveldb::Status &status) throw(leveldb_error);
// Batch of changes queued to be written to a CLevelDB
class CLevelDBBatch
{
friend class CLevelDB;
private:
... | {
"content_hash": "ce568e9f807edc38100fd8c8469f3d85",
"timestamp": "",
"source": "github",
"line_count": 140,
"max_line_length": 120,
"avg_line_length": 30.678571428571427,
"alnum_prop": 0.6281722933643772,
"repo_name": "rotocoin/rotocoin",
"id": "1faa644afa5becd3ebf823661307a2f49f409de3",
"size": "... |
require.config({
paths: {
bootstrap: "./vendor/bootstrap.min",
diffMatchPatch: "./vendor/diff_match_patch.min",
handlebars: "./vendor/handlebars.min",
handlebarsExtended: "./handlebars_helper",
locales: "./locales/locale",
lodash: "./vendor/lodash.min",
prettify: "./vendor/prettify/prettify"
},
shim: {... | {
"content_hash": "78cc511d0f2c36cc735b0b37b7184cd4",
"timestamp": "",
"source": "github",
"line_count": 544,
"max_line_length": 170,
"avg_line_length": 28.277573529411764,
"alnum_prop": 0.6341415848664109,
"repo_name": "sylvainw/brain-api",
"id": "d638e6ee85bd295ca307c291ea8a738cddf20935",
"size": ... |
using PipServices.Commons.Data;
using PipServices.Commons.Log;
using System;
using System.Collections.Generic;
using Xunit;
namespace PipServices.Commons.Convert
{
//[TestClass]
public class TypeConverterTest
{
[Fact]
public void TestToTypeCode()
{
Assert.Equal(TypeCode... | {
"content_hash": "879975a7f9fed1dd62b61a18970b9a0e",
"timestamp": "",
"source": "github",
"line_count": 83,
"max_line_length": 141,
"avg_line_length": 56.674698795180724,
"alnum_prop": 0.6639030612244898,
"repo_name": "pip-services/pip-services-commons-dotnet",
"id": "9271ef380564808066cd478141d9d437... |
"""
-------------------------------------------------------
contains
holds a function contains
-------------------------------------------------------
Author: Dallas Fraser
ID: 110242560
Email: fras2560@mylaurier.ca
Version: 2014-09-17
-------------------------------------------------------
"""
import itertool... | {
"content_hash": "b4dd2173d36b219327428a86bcdd5a3d",
"timestamp": "",
"source": "github",
"line_count": 171,
"max_line_length": 79,
"avg_line_length": 37.28654970760234,
"alnum_prop": 0.5221141781681304,
"repo_name": "fras2560/graph-helper",
"id": "df2a0cee3384e34fb9e909d0603be67626868d44",
"size":... |
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia Site Renderer 1.9.2 from org.apache.maven.plugins:maven-project-info-reports-plugin:3.0.0:summary at 2020-04-14
| Rendered using Apache Maven Default Skin
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="UTF-8" ... | {
"content_hash": "752f361762e2f153a1da2a970e1d6a19",
"timestamp": "",
"source": "github",
"line_count": 119,
"max_line_length": 191,
"avg_line_length": 41.09243697478992,
"alnum_prop": 0.6298568507157464,
"repo_name": "archiecobbs/jsimpledb",
"id": "726c21091a7cf27029555e8825467b01b0c2802f",
"size"... |
Calculate the moment when someone has lived for 10^9 seconds.
A gigasecond is 10^9 (1,000,000,000) seconds.
## Setup
Go through the setup instructions for TypeScript to
install the necessary dependencies:
http://exercism.io/languages/typescript
## Requirements
Install assignment dependencies:
```bash
$ yarn inst... | {
"content_hash": "842624284d243ce1785da9152a18f37b",
"timestamp": "",
"source": "github",
"line_count": 35,
"max_line_length": 146,
"avg_line_length": 20.228571428571428,
"alnum_prop": 0.7584745762711864,
"repo_name": "rootulp/exercism",
"id": "91c7203584793e573a89b727793134e17508452d",
"size": "72... |
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<Button
android:id="@+id/btnAnalyzeBuild"
style="@style/LabelButton"
android:paddingTop="16dp"
... | {
"content_hash": "d9e17851bcbf76c3788325783f153785",
"timestamp": "",
"source": "github",
"line_count": 20,
"max_line_length": 71,
"avg_line_length": 37.4,
"alnum_prop": 0.6724598930481284,
"repo_name": "idunnololz/LoLCraft",
"id": "2c0a10d398560c2107bb889d86c93c15b6d72f64",
"size": "748",
"binar... |
function usage() {
echo "$0 username api_key organisation package_file site_url"
exit 0
}
if [ $# -lt 5 ]; then
usage
fi
BINTRAY_USER=$1
BINTRAY_APIKEY=$2
BINTRAY_ACCOUNT=$3
PACKAGE_FILE=$4
BASE_DESC=$5
FILE_EXTENSION=${PACKAGE_FILE##*.}
BINTRAY_REPO="${FILE_EXTENSION,,}"
XDEBUG=""
DIR="$( cd "$( dirname "${BAS... | {
"content_hash": "7679c0cc068a00792983b57e67ce638f",
"timestamp": "",
"source": "github",
"line_count": 97,
"max_line_length": 265,
"avg_line_length": 36.134020618556704,
"alnum_prop": 0.6918687589158345,
"repo_name": "RobAltena/deeplearning4j",
"id": "78fbed7613615f0424dc012ca6bd586a7f58379f",
"si... |
<?php
namespace Pagekit\Console;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class ThemeUploadCommand extends ExtensionUploadCommand
{
/**
* {@inheritdoc}
*/
protected $name = 'theme:upload';
/**
* {@inheritdoc}
*/
pro... | {
"content_hash": "89214e5d26804890d8322de9b1468b92",
"timestamp": "",
"source": "github",
"line_count": 34,
"max_line_length": 81,
"avg_line_length": 20.205882352941178,
"alnum_prop": 0.6244541484716157,
"repo_name": "RobertJGabriel/pagekit",
"id": "5719436c965d66151ce093d6f9f0d5b80f04601e",
"size"... |
package com.cubedhost.fir;
import com.google.common.collect.HashMultimap;
import com.google.common.collect.ImmutableMap;
import com.google.common.collect.Multimap;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import java.io.File;
import java.io.FileFilter;
import java.io.FileInputStream;
import jav... | {
"content_hash": "7620fe19c1620d3bda33fa3622ca1daf",
"timestamp": "",
"source": "github",
"line_count": 94,
"max_line_length": 129,
"avg_line_length": 32.861702127659576,
"alnum_prop": 0.6008416963418582,
"repo_name": "CubedHost/Fir",
"id": "c9a4956380f41f224fa5b2dd335d2b23fd742ddf",
"size": "3089"... |
#include "sk_tool_utils.h"
#include "SkBlurImageFilter.h"
#include "SkColor.h"
#include "SkDisplacementMapEffect.h"
#include "SkDropShadowImageFilter.h"
#include "SkGradientShader.h"
#include "SkImage.h"
#include "SkImageSource.h"
#include "SkMorphologyImageFilter.h"
#include "SkScalar.h"
#include "SkSurface.h"
#incl... | {
"content_hash": "cc2c403937494540b505fa9450d18098",
"timestamp": "",
"source": "github",
"line_count": 156,
"max_line_length": 97,
"avg_line_length": 34.916666666666664,
"alnum_prop": 0.5814209656691757,
"repo_name": "qrealka/skia-hc",
"id": "7ceff001351e1cba1944c72313d2d2b2b953c7cb",
"size": "559... |
title: MakeGravGradGridDH (Python)
keywords: spherical harmonics software package, spherical harmonic transform, legendre functions, multitaper spectral analysis, fortran, Python, gravity, magnetic field
sidebar: mydoc_sidebar
permalink: pymakegravgradgriddh.html
summary:
tags: [python]
toc: false
---
Create 2D cylind... | {
"content_hash": "6afea81f96401d3e97a3773784e6b9e7",
"timestamp": "",
"source": "github",
"line_count": 106,
"max_line_length": 747,
"avg_line_length": 61.198113207547166,
"alnum_prop": 0.7273007553568676,
"repo_name": "MMesch/SHTOOLS",
"id": "07796cfb9bd22ba9a7b3a500e4c3e9c12cbe9448",
"size": "649... |
<?php @session_start();
require_once('inc/data.inc');
require_once('inc/authorize.inc');
require_once('inc/partitions.inc');
require_once('inc/plural.inc');
require_permission(SET_UP_PERMISSION);
require_once('inc/import-csv.inc');
try {
$partitions = all_partitions();
} catch (PDOException $p) {
$partitions = [... | {
"content_hash": "acf09ce4dd1679269d4d940c4f6a6c48",
"timestamp": "",
"source": "github",
"line_count": 115,
"max_line_length": 115,
"avg_line_length": 40.678260869565214,
"alnum_prop": 0.4805472424112869,
"repo_name": "jeffpiazza/derbynet",
"id": "b462e4743875296b123798c68cfba2f88a29cb80",
"size":... |
namespace node {
using v8::Array;
using v8::Context;
using v8::Function;
using v8::FunctionCallbackInfo;
using v8::FunctionTemplate;
using v8::Local;
using v8::NewStringType;
using v8::Object;
using v8::String;
using v8::Value;
class NodeCategorySet : public BaseObject {
public:
static void Initialize(Local<Object... | {
"content_hash": "bdc794cdeeb5c02cc9b4d6ba4c93d9cd",
"timestamp": "",
"source": "github",
"line_count": 147,
"max_line_length": 77,
"avg_line_length": 35.074829931972786,
"alnum_prop": 0.6788207913110939,
"repo_name": "enclose-io/compiler",
"id": "9adee9e458ccc0fa4e91364d060b96643032ea57",
"size": ... |
.daterangepicker.dropdown-menu {
max-width: none;
z-index: 3000;
}
.daterangepicker.opensleft .ranges, .daterangepicker.opensleft .calendar {
float: left;
margin: 4px;
}
.daterangepicker.opensright .ranges, .daterangepicker.opensright .calendar,
.daterangepicker.openscenter .ranges, .daterangepicker.opensc... | {
"content_hash": "e7d9c4a6c2b93089b038b93ee16e42e5",
"timestamp": "",
"source": "github",
"line_count": 312,
"max_line_length": 148,
"avg_line_length": 19.887820512820515,
"alnum_prop": 0.6960515713134569,
"repo_name": "joyplus/o2oadmin",
"id": "c17bb23317baa627808c7dcfd50b4ff6d1ed0e44",
"size": "6... |
import { initCookies, getCookie } from "./cookies";
import { addStaffButtons, getStaff, getStaffMenuHTML, openStaffLightBox } from "./manage";
import { prepareThumbnails, preparePostPreviews } from "./postutil";
import { initSettings } from "./settings";
import { initTopBar, TopBarButton, DropDownMenu } from "./topbar"... | {
"content_hash": "06a1dfd53c9277004c2e9a26b05682a6",
"timestamp": "",
"source": "github",
"line_count": 158,
"max_line_length": 119,
"avg_line_length": 28,
"alnum_prop": 0.6252260397830018,
"repo_name": "Eggbertx/gochan",
"id": "7fb06bcd9424fa8784fca923fd217858f40655ec",
"size": "4424",
"binary":... |
ACCEPTED
#### According to
International Plant Names Index
#### Published in
null
#### Original name
null
### Remarks
null | {
"content_hash": "68003c6d2f965e4390420b8953a72ed3",
"timestamp": "",
"source": "github",
"line_count": 13,
"max_line_length": 31,
"avg_line_length": 9.692307692307692,
"alnum_prop": 0.7063492063492064,
"repo_name": "mdoering/backbone",
"id": "703f8d4202bb365a3cc3bc49fb2686ee6bfbfdd5",
"size": "177... |
Ti=Representations and Warranties of {_the_Company}
Olist=<ol><li>{Organization.Sec}<li>{Power.Sec}<li>{Authorization.Sec}<li>{GovtConsent.Sec}<li>{ComplyLaw.Sec}<li>{ComplyInstruments.Sec}<li>{Offering.Sec}<li>{UseOfProceeds.Sec}</ol>
Organization.=[G/Techstars-Equity-CmA/NotePurchase/Sec/Rep/Company/Organize/0.md]
... | {
"content_hash": "d959a9bc4bb743b6817c3d758555eaca",
"timestamp": "",
"source": "github",
"line_count": 21,
"max_line_length": 183,
"avg_line_length": 43.57142857142857,
"alnum_prop": 0.7857923497267759,
"repo_name": "CommonAccord/Cmacc-Source",
"id": "6c68205ec236b095aa9977e25e64a16362f1fcbe",
"si... |
package fi.jgke.tagger.unit.controller;
import fi.jgke.tagger.controller.DefaultController;
import fi.jgke.tagger.domain.Source;
import fi.jgke.tagger.repository.SourceRepository;
import fi.jgke.tagger.service.ThumbnailService;
import java.util.ArrayList;
import java.util.List;
import org.junit.Test;
import static or... | {
"content_hash": "af4437072661c828908acf9ed0565aeb",
"timestamp": "",
"source": "github",
"line_count": 57,
"max_line_length": 77,
"avg_line_length": 26.140350877192983,
"alnum_prop": 0.7080536912751678,
"repo_name": "jgke/tagger",
"id": "cf0f86ffd38fe1fed12f48b55d68beccb7974373",
"size": "2093",
... |
namespace ui {
CursorProxyMojo::CursorProxyMojo(service_manager::Connector* connector)
: connector_(connector->Clone()) {
connector->ConnectToInterface(ui::mojom::kServiceName, &main_cursor_ptr_);
}
void CursorProxyMojo::InitializeOnEvdev() {
evdev_ref_ = base::PlatformThread::CurrentRef();
connector_->Conn... | {
"content_hash": "3dc793506b31486515ff5a7e1bbd5c1e",
"timestamp": "",
"source": "github",
"line_count": 35,
"max_line_length": 78,
"avg_line_length": 34.714285714285715,
"alnum_prop": 0.6477366255144033,
"repo_name": "Samsung/ChromiumGStreamerBackend",
"id": "ff24d4ad81b008317f8f584c6c6e8949aba20d0d"... |
require "tokenator/version"
require "tokenator/core"
module Tokenator
def self.new
PTB.new
end
end
| {
"content_hash": "8769c6f1936a10cc193d4df4ffbc8c6e",
"timestamp": "",
"source": "github",
"line_count": 8,
"max_line_length": 27,
"avg_line_length": 13.5,
"alnum_prop": 0.7407407407407407,
"repo_name": "Amval/tokenator",
"id": "03a734f9c23c2a4f0db2cc2c39d9610d88debd8d",
"size": "108",
"binary": f... |
from bs4 import BeautifulSoup
import requests
import time
def get_movie_budgets( page_index):
r = requests.get('https://www.the-numbers.com/movie/budgets/all/%s'% (page_index,))
html_doc = r.content
soup = BeautifulSoup(html_doc, 'html.parser')
rows = [tr for tr in soup.find_all('tr') if len(tr) == ... | {
"content_hash": "061707a4db43771edc87ce732fa20bea",
"timestamp": "",
"source": "github",
"line_count": 31,
"max_line_length": 176,
"avg_line_length": 29.387096774193548,
"alnum_prop": 0.6125137211855104,
"repo_name": "mariosky/databook",
"id": "a582006196099f8a43b3ee481a2618f2212cf6ad",
"size": "9... |
package org.sasm.tree;
import org.sasm.*;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
/**
* A node that represents a type annotation on a local or resource variable.
*
* @author Eric Bruneton
*/
public class LocalVariableAnnotationNode extends TypeAnnotationNode {
/**
*... | {
"content_hash": "87bfb276cbc069976963c44ceccc23a6",
"timestamp": "",
"source": "github",
"line_count": 119,
"max_line_length": 136,
"avg_line_length": 42.65546218487395,
"alnum_prop": 0.6048069345941687,
"repo_name": "iZeus/SASM",
"id": "c0d4db73febd53bd01ec2e6f9fc8fe6f91fee423",
"size": "5076",
... |
package com.datastax.driver.core.exceptions;
import com.datastax.driver.core.ConsistencyLevel;
import com.datastax.driver.core.WriteType;
import java.net.InetSocketAddress;
/**
* A non-timeout error during a write query.
* <p/>
* This happens when some of the replicas that were contacted by the coordinator repli... | {
"content_hash": "279bc5f308a0c7b020acfacd128dd6b6",
"timestamp": "",
"source": "github",
"line_count": 80,
"max_line_length": 152,
"avg_line_length": 35.875,
"alnum_prop": 0.6494773519163763,
"repo_name": "DICL/cassandra-driver",
"id": "079c882c16522d43a3d4a2403f74aef193334813",
"size": "3497",
... |
<!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 Mar 26 16:48:33 UTC 2015 -->
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<TITLE>
com.hazelcast (Hazelcast Root 3.4... | {
"content_hash": "70b44bcc8e52262210ebba671a6a6d29",
"timestamp": "",
"source": "github",
"line_count": 158,
"max_line_length": 150,
"avg_line_length": 38.58860759493671,
"alnum_prop": 0.6275217319993439,
"repo_name": "akiskip/KoDeMat-Collaboration-Platform-Application",
"id": "ccf8966ce36badb09b7fd6... |
var EventRange = Class.extend({
unzonedRange: null,
eventDef: null,
eventInstance: null, // optional
constructor: function(unzonedRange, eventDef, eventInstance) {
this.unzonedRange = unzonedRange;
this.eventDef = eventDef;
if (eventInstance) {
this.eventInstance = eventInstance;
}
}
});
| {
"content_hash": "36bdbe71ed6e8aee1101c4825a44d03e",
"timestamp": "",
"source": "github",
"line_count": 17,
"max_line_length": 63,
"avg_line_length": 18.235294117647058,
"alnum_prop": 0.7161290322580646,
"repo_name": "pietervisser/fullcalendar",
"id": "2cef8df413609fbd08fb3819fcdaa26cf090563b",
"si... |
OtherService::OtherService() = default;
OtherService::~OtherService() = default;
int OtherService::getRandomInt(int limit)
{
return -(qrand() % limit);
}
| {
"content_hash": "9daa51528a503da9625df4dbc3612577",
"timestamp": "",
"source": "github",
"line_count": 8,
"max_line_length": 41,
"avg_line_length": 20,
"alnum_prop": 0.70625,
"repo_name": "joncol/jcon-cpp",
"id": "0b9c58552c146c1fc0e3e886c67d45043925ad1e",
"size": "209",
"binary": false,
"copi... |
{% extends "base.html" %}
{% block content %}
<div id="root"></div>
<script>
window.props = {{ props | safe }};
window.root = document.getElementById('root');
</script>
{% load static %}
<script src={% static 'feedback/src/dist/index.js' %}?{% now "U" %}></script>
{% endblock %} | {
"content_hash": "4e70c7e0d39a218265a9c0d2015feb0d",
"timestamp": "",
"source": "github",
"line_count": 11,
"max_line_length": 77,
"avg_line_length": 26.181818181818183,
"alnum_prop": 0.5972222222222222,
"repo_name": "duosproject/duos-web",
"id": "40adf2bb0eefd14f3c759261e470e7eef4ac0f9f",
"size": ... |
package com.google.gwt.sample.validation.shared;
import com.google.gwt.sample.validation.server.ServerConstraint;
import com.google.gwt.user.client.rpc.IsSerializable;
import java.util.Map;
import javax.validation.Valid;
import javax.validation.constraints.Max;
import javax.validation.constraints.NotNull;
import j... | {
"content_hash": "8db0e1770f67ddd20be4404ac2ef4a2c",
"timestamp": "",
"source": "github",
"line_count": 57,
"max_line_length": 64,
"avg_line_length": 18.92982456140351,
"alnum_prop": 0.7173308619091752,
"repo_name": "dougkoellmer/swarm",
"id": "c24ef952c1933095106642b2a54df8d1102a7325",
"size": "16... |
<?xml version="1.0" encoding="UTF-8"?>
<!--
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 Lic... | {
"content_hash": "0fa919fe3a77de39acea02bb11edf031",
"timestamp": "",
"source": "github",
"line_count": 53,
"max_line_length": 201,
"avg_line_length": 41.0188679245283,
"alnum_prop": 0.7083716651333947,
"repo_name": "jonmcewen/camel",
"id": "72282f5d2593c3b776275a140a48e8161d5d3dcc",
"size": "2174"... |
'use strict';
const globalHooks = require('../../../hooks');
const hooks = require('feathers-hooks');
const auth = require('feathers-authentication').hooks;
exports.before = {
all: [],
find: [
auth.verifyToken(),
auth.populateUser(),
auth.restrictToAuthenticated()
],
get: [],
create: [
auth.... | {
"content_hash": "6742dd5d3d085682eab0696c521a27aa",
"timestamp": "",
"source": "github",
"line_count": 46,
"max_line_length": 54,
"avg_line_length": 20.108695652173914,
"alnum_prop": 0.6064864864864865,
"repo_name": "kieusonlam/vue-feathers-wepack",
"id": "337f38c7035463e977050a8982b1307585d23ba2",
... |
using System.IO;
using HttpMultipartParser;
using Nancy.ModelBinding;
using Nancy.Swagger.Demo.Models;
using System.Linq;
namespace Nancy.Swagger.Demo.Modules
{
public class ServiceDetailsModule : NancyModule
{
public ServiceDetailsModule() : base("/service")
{
Get("/", _ => "Hello... | {
"content_hash": "e1d1fb65a012e5bcf19639cb2998664b",
"timestamp": "",
"source": "github",
"line_count": 59,
"max_line_length": 110,
"avg_line_length": 33.220338983050844,
"alnum_prop": 0.4943877551020408,
"repo_name": "catcherwong/Nancy.Swagger",
"id": "a9dcc4fe81ebc2c093e0b4ba2d6d23219a4d4186",
"s... |
package kieker.tools.traceAnalysis.filter;
import kieker.analysis.IProjectContext;
import kieker.analysis.plugin.annotation.Plugin;
import kieker.analysis.plugin.annotation.RepositoryPort;
import kieker.analysis.plugin.filter.AbstractFilterPlugin;
import kieker.common.configuration.Configuration;
import kieker.commo... | {
"content_hash": "616f4ef305f15721b328df0800550965",
"timestamp": "",
"source": "github",
"line_count": 157,
"max_line_length": 162,
"avg_line_length": 49.152866242038215,
"alnum_prop": 0.7957755604509524,
"repo_name": "HaStr/kieker",
"id": "e2a92b2ee5f6cc99bc3273d4ce7eb2f32c537279",
"size": "8493"... |
<?php
namespace common\modules\wizard\generators\model;
use Yii;
use yii\db\Schema;
use yii\helpers\Inflector;
/**
* This generator will generate one ActiveRecord classes for the specified database table.
*
* @author ChisWill
*/
class Generator extends \common\modules\wizard\Generator
{
// 公共属... | {
"content_hash": "b8b203e6b983b1b8449e05ad9920bf60",
"timestamp": "",
"source": "github",
"line_count": 285,
"max_line_length": 234,
"avg_line_length": 36.75087719298246,
"alnum_prop": 0.4765132709566546,
"repo_name": "ChisWill/cii",
"id": "61ec07e9f0a7abe19c0fbdb65d3a25c45c1bb020",
"size": "10644"... |
package org.dcm4chex.archive.mbean;
import java.io.BufferedInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.nio.ByteBuffer;
import java.rmi.RemoteException;
import java.util.Collection;
import java.util.Iterator;
import javax.ejb.C... | {
"content_hash": "81e19b159010233be36b7f8d5a851122",
"timestamp": "",
"source": "github",
"line_count": 298,
"max_line_length": 129,
"avg_line_length": 33.70134228187919,
"alnum_prop": 0.6790799561883899,
"repo_name": "medicayun/medicayundicom",
"id": "074fbea59c9a6e68feda03bb6b017f9cc2eaba34",
"si... |
#ifndef _MULTI_PLANT_H_
#define _MULTI_PLANT_H_
#include "plant.h"
#include <vector>
/** Allows combining multiple plants into one.
* Sub-plants are specified by parameters of the form
* \b plant_i <em> = <class> <chapter> </em>, with \b i
* being a continuous index starting at 0, <class> being the
* type of ... | {
"content_hash": "db2858d0ec2421880362a137da47012a",
"timestamp": "",
"source": "github",
"line_count": 42,
"max_line_length": 134,
"avg_line_length": 39.5,
"alnum_prop": 0.7082579867389994,
"repo_name": "AADC-Fruit/AADC_2015_FRUIT",
"id": "96f3c3dfd307c1db50631849d15d5bb7b0f0143c",
"size": "1659",... |
ACCEPTED
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
Annls mycol. 2: 163 (1904)
#### Original name
Phyllachora vossiae Syd. & P. Syd., 1904
### Remarks
null | {
"content_hash": "3a4d4a712b24dc3a295c8c847bc39350",
"timestamp": "",
"source": "github",
"line_count": 13,
"max_line_length": 40,
"avg_line_length": 14.76923076923077,
"alnum_prop": 0.6875,
"repo_name": "mdoering/backbone",
"id": "fdeec1dd06dfeba97ec77a516a242e2406d23f4c",
"size": "256",
"binary... |
#include <linux/module.h>
#include <linux/delay.h>
#include <linux/dmi.h>
#include <linux/input/mt.h>
#include <linux/serio.h>
#include <linux/libps2.h>
#include <linux/slab.h>
#include "psmouse.h"
#include "synaptics.h"
/*
* The x/y limits are taken from the Synaptics TouchPad interfacing Guide,
* section 2.3.2, ... | {
"content_hash": "8c2befa73705322e9fce07fe43053f42",
"timestamp": "",
"source": "github",
"line_count": 1715,
"max_line_length": 103,
"avg_line_length": 27.630320699708456,
"alnum_prop": 0.6363693918034863,
"repo_name": "Ant-OS/android_kernel_moto_shamu",
"id": "d60c9b7ad1b8a9c1eed1c2185879dfdb80d486... |
/**
* @fileoverview
* Shuffl code to load cards into the workspace.
*
* @author Graham Klyne
* @version $Id: shuffl-loadworkspace.js 788 2010-05-12 15:55:59Z diana.galletly@gmail.com $
*
* Coypyright (C) 2009, University of Oxford
*
* Licensed under the MIT License. You may obtain a copy of the License at... | {
"content_hash": "dc660c7be215c2bc5284d8493bacaa3e",
"timestamp": "",
"source": "github",
"line_count": 232,
"max_line_length": 115,
"avg_line_length": 40.75431034482759,
"alnum_prop": 0.5539925965097832,
"repo_name": "tectronics/admiral-jiscmrd",
"id": "5c276f6c23ad70414227e8eff485f1c9d0ac9080",
"... |
namespace {
GURL GetURLForLayoutTest(const std::string& test_name,
FilePath* current_working_directory,
bool* enable_pixel_dumping,
std::string* expected_pixel_hash) {
// A test name is formated like file:///path/to/test'--pixel-test'pixelhas... | {
"content_hash": "9630246487b21fdc9cb4a0d938dfc52c",
"timestamp": "",
"source": "github",
"line_count": 126,
"max_line_length": 77,
"avg_line_length": 30.349206349206348,
"alnum_prop": 0.638336820083682,
"repo_name": "leighpauls/k2cro4",
"id": "8447c9c1969fb8aa62ab32b6d63ba09782d6c8e3",
"size": "45... |
import pyaf.Bench.TS_datasets as tsds
import tests.artificial.process_artificial_dataset as art
art.process_dataset(N = 1024 , FREQ = 'D', seed = 0, trendtype = "LinearTrend", cycle_length = 5, transform = "Difference", sigma = 0.0, exog_count = 0, ar_order = 0); | {
"content_hash": "dbff247a0dbc870ad7fceb531a37a477",
"timestamp": "",
"source": "github",
"line_count": 7,
"max_line_length": 167,
"avg_line_length": 38.142857142857146,
"alnum_prop": 0.7078651685393258,
"repo_name": "antoinecarme/pyaf",
"id": "1b42dfa28eec998be44366a7d95a89f157f23c78",
"size": "26... |
layout: single
title: "javascript project for beginners"
desc: "JavaScript is a popular programming language used for building web applications, among many other things."
keywords: "js, javascript"
categories: [javascript]
tag: [js, javascript]
---
The best way to learn a new programming language is to build ... | {
"content_hash": "d73a833720cd6d709883bf6520c675c9",
"timestamp": "",
"source": "github",
"line_count": 628,
"max_line_length": 285,
"avg_line_length": 39.060509554140125,
"alnum_prop": 0.7225030574806359,
"repo_name": "ducdongmg/ducdongmg.github.io",
"id": "8c56b91654051de049671c260047d6f6c5db154b",... |
+++
categories="article"
date="2012-05-29T01:08:53+03:00"
issue="2012-01"
issue_name="2012 - #01"
issue_id="1"
number="16"
file = "https://static.nuclear-power-engineering.ru/articles/2012/01/16.pdf"
first_page="135"
last_page="143"
udc="621.039.543.4"
title="On the Issues of Uranium Reprocessed from High Burnup Fuels... | {
"content_hash": "938a509b7d6a4939796913f4a95dac4a",
"timestamp": "",
"source": "github",
"line_count": 23,
"max_line_length": 284,
"avg_line_length": 39.08695652173913,
"alnum_prop": 0.7664071190211346,
"repo_name": "nuclear-power-engineering/nuclear-power-engineering",
"id": "04a7e60e4ae246ad867384... |
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:background="@drawable/splasf_bgg">
<ImageView android:src="@drawable/splash_logo"
android:layout_width="wrap_content" andr... | {
"content_hash": "619f284ba83aba281fbc9384646d4674",
"timestamp": "",
"source": "github",
"line_count": 22,
"max_line_length": 77,
"avg_line_length": 52.72727272727273,
"alnum_prop": 0.7577586206896552,
"repo_name": "iniesta2014/GSinaWeiBo",
"id": "3c43123aa4330667a11d3308f37d0e47e67e9eb3",
"size":... |
title: NetworkLabels
category: feature
authors: alkaplan, danken, lvernia, moti, mpavlik
wiki_category: Feature
wiki_title: Features/NetworkLabels
wiki_revision_count: 66
wiki_last_updated: 2014-09-15
feature_name: Network Labels
feature_modules: Networking
feature_status: Released
---
# Network Labels
## Summary
**... | {
"content_hash": "ed609acb23e8a58b917a97effd3bef8f",
"timestamp": "",
"source": "github",
"line_count": 277,
"max_line_length": 379,
"avg_line_length": 50.6173285198556,
"alnum_prop": 0.7320447899579202,
"repo_name": "jasonbrooks/ovirt-stg",
"id": "7663d541793a95490b0dcb2b3e8bff938a423739",
"size":... |
A .NET Fast Very Late Binding invoker

#### Basically…
### Reflection is hard… And dreadfully slow!
Horizon addresses these issues by supplying a **simple to use** API.
Underneath t... | {
"content_hash": "6fd42363b1fb6f4c65d63156d517b216",
"timestamp": "",
"source": "github",
"line_count": 15,
"max_line_length": 156,
"avg_line_length": 44.333333333333336,
"alnum_prop": 0.7578947368421053,
"repo_name": "StevenThuriot/Horizon",
"id": "edd0500d654e27784873618781ddf0a2967a2eaf",
"size"... |
package GAL::Parser::korean_snp;
use strict;
use vars qw($VERSION);
$VERSION = 0.2.0;
use base qw(GAL::Parser);
use GAL::Reader::DelimitedLine;
=head1 NAME
GAL::Parser::korean_snp - Parse SNV files from the first Korean Genome
=head1 VERSION
This document describes GAL::Parser::korean_snp version 0.2.0
=head1 S... | {
"content_hash": "97ceec856af364a08aec7e8d2cc7fa47",
"timestamp": "",
"source": "github",
"line_count": 274,
"max_line_length": 122,
"avg_line_length": 32.77007299270073,
"alnum_prop": 0.5982848869584586,
"repo_name": "4ureliek/TEanalysis",
"id": "aade5199f92c29e1bf76d55f38ed64179c6dcd6a",
"size": ... |
/**
* Definition of the map's footer (game objects)
* @author Sebastian Straub <sebastian-straub@gmx.net>
*/
package de.nx42.maps4cim.objects; | {
"content_hash": "23bd254eecd09c4dab280c710ece8f43",
"timestamp": "",
"source": "github",
"line_count": 5,
"max_line_length": 54,
"avg_line_length": 29,
"alnum_prop": 0.7310344827586207,
"repo_name": "Klamann/maps4cim",
"id": "e5b85b9dd94c4e82a19dc2ff1490aa626f255e8c",
"size": "145",
"binary": fa... |
<?xml version='1.0' encoding='UTF-8'?>
<hopsanobjectappearance version="0.3">
<modelobject sourcecode="HydraulicPressureSourceC.hpp" typename="HydraulicPressureSourceC" displayname="C-type Pressure Source">
<icons>
<icon scale="1" path="pressuresource_user.svg" iconrotation="ON" type="user"/>
... | {
"content_hash": "8989abbe860361c5c2af0c088243abde",
"timestamp": "",
"source": "github",
"line_count": 16,
"max_line_length": 132,
"avg_line_length": 42.6875,
"alnum_prop": 0.5900439238653001,
"repo_name": "Hopsan/hopsan",
"id": "6a9ae28a06bffb20e0ffd035dfc51201f5e07cda",
"size": "683",
"binary"... |
import hash from 'object-hash'
import Phaser from 'phaser'
import config from './config'
import {getAngle} from './utils'
export default class Intersection extends Phaser.Point {
constructor (x, y) {
super(x, y)
this.streets = []
this.graphic = null
this.id = hash.sha1({
x,
y
})
t... | {
"content_hash": "2a9bb54d9e0040a1c0e656af9cc077e9",
"timestamp": "",
"source": "github",
"line_count": 74,
"max_line_length": 84,
"avg_line_length": 29.04054054054054,
"alnum_prop": 0.5858538855281527,
"repo_name": "anoff/phaser-microlight",
"id": "c6de68314ff0b6765ff665829e47e05720e6b5ed",
"size"... |
require "pathname"
require "vagrant/util/ssh"
module Vagrant
module Action
module Builtin
# This class will exec into a full fledged SSH console into the
# remote machine. This middleware assumes that the VM is running and
# ready for SSH, and uses the {Machine#ssh_info} method to retrieve
... | {
"content_hash": "5969185f9abb7dde4d3d562c7f92c10c",
"timestamp": "",
"source": "github",
"line_count": 49,
"max_line_length": 76,
"avg_line_length": 30.020408163265305,
"alnum_prop": 0.5948334466349422,
"repo_name": "trivoallan/vagrant",
"id": "23b2090667505815ad10070a8143e304b84b6c1c",
"size": "1... |
import { PlayerTournamentViewData } from "./PlayerTournamentViewData";
import { BinaryNetworkID } from "../../core/data/BinaryNetworkID";
import { AbstractData } from "../../core/data/AbstractData";
export class SrvPlayerTournamentViewData extends AbstractData {
public tourNetworkIDVO:BinaryNetworkID;
public pl... | {
"content_hash": "57ec1183e25c28a84343fbd374ae969c",
"timestamp": "",
"source": "github",
"line_count": 17,
"max_line_length": 70,
"avg_line_length": 25.176470588235293,
"alnum_prop": 0.7733644859813084,
"repo_name": "gesh123/MyLibrary",
"id": "f7cf9068b1b9c9cf10722e793d418158884fa78e",
"size": "42... |
package no.kantega.publishing.admin.taglib;
import no.kantega.commons.client.util.ValidationError;
import no.kantega.commons.client.util.ValidationErrors;
import no.kantega.commons.exception.SystemException;
import no.kantega.commons.util.LocaleLabels;
import no.kantega.publishing.admin.AdminSessionAttributes;
import ... | {
"content_hash": "a6854b8ce144ab6d8a5fc1da557b57b6",
"timestamp": "",
"source": "github",
"line_count": 140,
"max_line_length": 182,
"avg_line_length": 34.27857142857143,
"alnum_prop": 0.6330485517816211,
"repo_name": "kantega/Flyt-cms",
"id": "e416432b8be6f249aa1093f7008414462e3725f6",
"size": "47... |
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
/*XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX... | {
"content_hash": "9cb76a3de2484c49ce68dc79edb17e10",
"timestamp": "",
"source": "github",
"line_count": 8413,
"max_line_length": 165,
"avg_line_length": 43.59835968144538,
"alnum_prop": 0.6189212989342763,
"repo_name": "ruben-ayrapetyan/coreclr",
"id": "44a5661b3dfe5ccd0586ec0ab2b4e4ba576eb05e",
"s... |
//
// CSSingleSelectionItem.h
// clojushop_client_ios
//
// Created by ischuetz on 27/05/2014.
// Copyright (c) 2014 ivanschuetz. All rights reserved.
//
#import <Foundation/Foundation.h>
/**
Wrapper for items which will be displayed using CSSingleSelectionController
*/
@protocol CSSingleSelectionItem <NSObject... | {
"content_hash": "a150bc1981908d590406bd0ca67b49a7",
"timestamp": "",
"source": "github",
"line_count": 28,
"max_line_length": 107,
"avg_line_length": 19.821428571428573,
"alnum_prop": 0.7297297297297297,
"repo_name": "i-schuetz/clojushop_client_ios",
"id": "6326214ea1693919ef3b50ed466abcc089f36dbf",... |
<!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_24) on Sun Apr 08 20:51:59 UTC 2012 -->
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<TITLE>
Uses of Package org.encog.plugin ... | {
"content_hash": "f588f69ab70f99ec425abf40758fb8c6",
"timestamp": "",
"source": "github",
"line_count": 228,
"max_line_length": 200,
"avg_line_length": 40.776315789473685,
"alnum_prop": 0.638162848230612,
"repo_name": "larhoy/SentimentProjectV2",
"id": "6a9d3e2e891b0f4a398860dea9c901d407a7e5cf",
"s... |
Decompress `my_file.gz` to `my_file` and delete the original:
gzip my_file.gz
Opposite of [gzip](../gzip/).
| {
"content_hash": "48c54663f62da315cdfc978b680c8254",
"timestamp": "",
"source": "github",
"line_count": 5,
"max_line_length": 61,
"avg_line_length": 22.2,
"alnum_prop": 0.6846846846846847,
"repo_name": "MattMS/shelp",
"id": "5cfe877d1dbfa92ef310b7c6ad8dc2a327de76a4",
"size": "121",
"binary": fals... |
require "soundcloud-rails/version"
module Soundcloud
module Rails
require "soundcloud-rails/engine"
end
end
| {
"content_hash": "aeacc198ae1513ccc65f482476ae7a9e",
"timestamp": "",
"source": "github",
"line_count": 7,
"max_line_length": 37,
"avg_line_length": 16.714285714285715,
"alnum_prop": 0.7692307692307693,
"repo_name": "thatdutchguy/soundcloud-rails",
"id": "4ec7074d83106d7b9495211840b3277a73db2b62",
... |
module Awspec::Generator
module Doc
module Type
class TransferServer < Base
def initialize
super
@type_name = 'TransferServer'
@type = Awspec::Type::TransferServer.new('s-4dc0a424f0154fa89')
@ret = @type.resource_via_client
@matchers = [
... | {
"content_hash": "8ea2a0e804377af93323eb5d7e1357c2",
"timestamp": "",
"source": "github",
"line_count": 19,
"max_line_length": 117,
"avg_line_length": 32.421052631578945,
"alnum_prop": 0.5454545454545454,
"repo_name": "k1LoW/awspec",
"id": "b704ceece3950514b55183756783a34d0f49703f",
"size": "647",
... |
package bitops.test;
import java.awt.image.BufferedImage;
import java.util.HashMap;
import java.util.Map;
import java.util.TreeMap;
import bitops.BitOps;
import bitops.ByteStream;
import bitops.ByteStreamReader;
import convert.FrameData;
import convert.VideoData;
import convert.capture.HeaderCapture;
import convert.c... | {
"content_hash": "e931bddeb07afcabd9657d181458cf9f",
"timestamp": "",
"source": "github",
"line_count": 390,
"max_line_length": 132,
"avg_line_length": 30.70769230769231,
"alnum_prop": 0.6668336673346693,
"repo_name": "DavidArayan/EzyVideo",
"id": "77e4afcac85c54b2bd025de6105f846fa22dcec3",
"size":... |
// Copyright 2015 The Bazel 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
//
// Unless required by appl... | {
"content_hash": "fc7bed98322ccfa0b29c2446faf2191f",
"timestamp": "",
"source": "github",
"line_count": 98,
"max_line_length": 97,
"avg_line_length": 38.59183673469388,
"alnum_prop": 0.7580645161290323,
"repo_name": "kamalmarhubi/bazel",
"id": "0cbd48cd94751f27c27f705f53624545c5c53416",
"size": "37... |
@interface DetailScrollContent : UIView
@end
| {
"content_hash": "75d6e28a063937b2a6a0f3b0b0493aaf",
"timestamp": "",
"source": "github",
"line_count": 3,
"max_line_length": 39,
"avg_line_length": 15.333333333333334,
"alnum_prop": 0.8043478260869565,
"repo_name": "SirArkimedes/WWDC-2015",
"id": "93e21ef2387157cfd47039a487096eb9dab74a49",
"size":... |
from django.contrib import admin
from .models import Badge, CrawledBadge
from guardian.admin import GuardedModelAdmin
# Register your models here.
class BadgeAdmin(GuardedModelAdmin):
list_display = ["name"]
readonly_fields = ('secret_key',)
class CrawledBadgeAdmin(admin.ModelAdmin):
list_display = ["user... | {
"content_hash": "99ded4a38d7f39fb6513140ef7a96e0f",
"timestamp": "",
"source": "github",
"line_count": 15,
"max_line_length": 51,
"avg_line_length": 31.466666666666665,
"alnum_prop": 0.7542372881355932,
"repo_name": "vchrisb/emc_phoenix3",
"id": "67b68b87ede840dc985c1abae546715c271c5a63",
"size": ... |
<?php
namespace cascade\modules\core\TypeGrant\widgets;
/**
* DetailList [[@doctodo class_description:cascade\modules\core\TypeGrant\widgets\DetailList]].
*
* @author Jacob Morrison <email@ofjacob.com>
*/
class DetailList extends \cascade\components\web\widgets\base\DetailList
{
}
| {
"content_hash": "00a25f6e60fed264f76763f1f1a276a8",
"timestamp": "",
"source": "github",
"line_count": 13,
"max_line_length": 95,
"avg_line_length": 22.23076923076923,
"alnum_prop": 0.7612456747404844,
"repo_name": "PSESD/cascade-core-types",
"id": "aa3c5393dbbb3297d044a3e7efd9b7ac931454fb",
"size... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.