text stringlengths 2 1.04M | meta dict |
|---|---|
import resolve from 'rollup-plugin-node-resolve';
import { uglify } from 'rollup-plugin-uglify';
import sourcemaps from 'rollup-plugin-sourcemaps';
export default {
input : 'lib/index.js',
// FIXME: need to build UMD bundle properly so ext-types will be included.
external : ["type-r", "type-r/ext-types"],
... | {
"content_hash": "c7bab147c07a77ac1fcfc1b6f0b7f764",
"timestamp": "",
"source": "github",
"line_count": 24,
"max_line_length": 117,
"avg_line_length": 29.875,
"alnum_prop": 0.5843793584379359,
"repo_name": "Volicon/Type-R",
"id": "2c922161e3962087cafa09de2e1715ddec6e2b1d",
"size": "717",
"binary"... |
@implementation SessionSaveController
@synthesize saveSessionTextField = _saveSessionTextField;
@synthesize currentSessionName = _currentSessionName;
- (void)dealloc {
self.currentSessionName = nil;
self.saveSessionTextField = nil;
[super dealloc];
}
- (void)viewWillAppear:(BOOL)animated {
self.sa... | {
"content_hash": "3db75124a59da890a17203854005f4f8",
"timestamp": "",
"source": "github",
"line_count": 37,
"max_line_length": 89,
"avg_line_length": 21.486486486486488,
"alnum_prop": 0.7622641509433963,
"repo_name": "igvteam/igv-ipad",
"id": "e06b9628d42efa9db53b92af6b199aff07c76793",
"size": "208... |
/* eslint-disable operator-linebreak */
const fetchWithResponceValidation = (url, options) => {
return window.fetch(url, options)
.then(response => {
let code = response.status
if ((code >= 200 && code < 300)
|| code === 400
) {
return Promise.resolve(response.json())
}
... | {
"content_hash": "62d6db7206777ecb5dd5649c0b9c0a29",
"timestamp": "",
"source": "github",
"line_count": 19,
"max_line_length": 67,
"avg_line_length": 26.68421052631579,
"alnum_prop": 0.631163708086785,
"repo_name": "cygwin255/SimpleSurvey",
"id": "75bd439d596bc185097ba409cbd9322d84a8d1c2",
"size": ... |
FROM nodesource/sid-base
MAINTAINER William Blankenship <wblankenship@nodesource.com>
RUN curl https://deb.nodesource.com/node/pool/main/n/nodejs/nodejs_0.10.31-1chl1~sid1_amd64.deb > node.deb \
&& dpkg -i node.deb \
&& rm node.deb
RUN npm install -g pangyp\
&& ln -s $(which pangyp) $(dirname $(which pangyp))/node... | {
"content_hash": "1b6a2d5e2c3b85a1f31f8a115dd266aa",
"timestamp": "",
"source": "github",
"line_count": 19,
"max_line_length": 108,
"avg_line_length": 28.31578947368421,
"alnum_prop": 0.6895910780669146,
"repo_name": "nodesource/docker-node",
"id": "0c72f93cfd4d6ae993e1e4745a5cc13bd2d6868e",
"size"... |
@echo off
setlocal
set SCRIPT_FLAGS=%SCRIPT_FLAGS% --debug --scratch
call ..\make interpreter rlgo main
copy ..\..\lib\scratch-rt\debug\*.rasl ..\..\build\interpreter >NUL
copy ..\..\lib\scratch-rt\debug\*.cpp ..\..\build\interpreter >NUL
endlocal
| {
"content_hash": "e9b190061b4db2eb1d17792d841f08db",
"timestamp": "",
"source": "github",
"line_count": 8,
"max_line_length": 69,
"avg_line_length": 32.125,
"alnum_prop": 0.6770428015564203,
"repo_name": "Mazdaywik/simple-refal",
"id": "9d49b3d3c0c94494c653fd05bab146e68fd39956",
"size": "257",
"b... |
import textwrap
import httpretty
from test.unit.helper.test_helper import android_w3c_driver, appium_command, get_httpretty_request_body
class TestWebDriverExecuteDriver(object):
@httpretty.activate
def test_batch(self):
driver = android_w3c_driver()
httpretty.register_uri(
httpr... | {
"content_hash": "b3ec666ba2cd44ec36f10c31507110ca",
"timestamp": "",
"source": "github",
"line_count": 66,
"max_line_length": 103,
"avg_line_length": 43.121212121212125,
"alnum_prop": 0.6004919184820802,
"repo_name": "appium/python-client",
"id": "250b8cc84ec8671ffaa620c6f455f07582cf36ec",
"size":... |
package java.sql;
public interface ResultSetMetaData
extends Wrapper
{
// Fields
public static final int columnNoNulls = 0;
public static final int columnNullable = 1;
public static final int columnNullableUnknown = 2;
// Methods
public boolean isReadOnly(int arg1) throws SQLException;
public i... | {
"content_hash": "35c48c1fb70ce8fe2539db8a827e01be",
"timestamp": "",
"source": "github",
"line_count": 40,
"max_line_length": 75,
"avg_line_length": 39.775,
"alnum_prop": 0.8032683846637335,
"repo_name": "Orange-OpenSource/matos-profiles",
"id": "a1cf61f53035f81d281db5440b4346da85fb39a2",
"size": ... |
package lan.dk.podcastserver.utils.facade.stats;
import java.util.Set;
/**
* Created by kevin on 28/04/15 for HackerRank problem
*/
public class StatsPodcastType {
public final String type;
public final Set<NumberOfItemByDateWrapper> values;
public StatsPodcastType(String type, Set<NumberOfItemByDateW... | {
"content_hash": "9e57cd6df3e4420155a92256e05ddf45",
"timestamp": "",
"source": "github",
"line_count": 25,
"max_line_length": 81,
"avg_line_length": 21.6,
"alnum_prop": 0.6759259259259259,
"repo_name": "radut/Podcast-Server",
"id": "25d9b4e46f03d30fd906afc4b38740d36284eb27",
"size": "540",
"bina... |
using System;
using System.Net.Http;
using System.Threading.Tasks;
using System.Web.Http;
using System.Web.Http.Results;
using EMSV.Api;
using EMSV.CLI.CORE.Core;
namespace EMSV.CLI.CORE.Controllers {
public abstract class ControllerBase : ApiController {
private readonly IAdminApi _api;
private... | {
"content_hash": "3670e9435f4fcd4ec0059bad1d835013",
"timestamp": "",
"source": "github",
"line_count": 36,
"max_line_length": 121,
"avg_line_length": 29.5,
"alnum_prop": 0.6450094161958568,
"repo_name": "EpicMorg/EpicMorg-Supervisor",
"id": "00268c2afea425c8fd3a148337371141e05d78be",
"size": "1064... |
package org.apache.hyracks.algebricks.core.algebra.operators.physical;
import java.util.List;
import java.util.Map;
import java.util.Set;
import org.apache.hyracks.algebricks.common.exceptions.AlgebricksException;
import org.apache.hyracks.algebricks.common.exceptions.NotImplementedException;
import org.apache.hyrac... | {
"content_hash": "49f37c3c3bd9014ce8cfd8013f4dd2a1",
"timestamp": "",
"source": "github",
"line_count": 178,
"max_line_length": 130,
"avg_line_length": 54.03370786516854,
"alnum_prop": 0.570388854231649,
"repo_name": "tectronics/hyracks",
"id": "afd8ce7c4111dadd9240f6742999cf68e1542071",
"size": "1... |
package main
import (
"flag"
"fmt"
"io"
"log"
"math"
"math/rand"
"net/http"
"os"
"os/exec"
"strconv"
"text/template"
"tools/ktop"
)
var homeTempl = template.Must(template.New("plot").Parse(plotTemplate))
func handler(w http.ResponseWriter, r *http.Request) {
fmt.Println("handler:", r.Method, r.URL)
hom... | {
"content_hash": "3cd64a00681b74e3ff2a0b0122b17eeb",
"timestamp": "",
"source": "github",
"line_count": 302,
"max_line_length": 88,
"avg_line_length": 24.102649006622517,
"alnum_prop": 0.6275587305948619,
"repo_name": "taysom/va",
"id": "f1027d28dec240dd1a8e73f1f29222bff55cfd7b",
"size": "7511",
... |
SYNONYM
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
null
#### Original name
null
### Remarks
null | {
"content_hash": "2525609e20bc7e66d65866f78354f73c",
"timestamp": "",
"source": "github",
"line_count": 13,
"max_line_length": 39,
"avg_line_length": 10.23076923076923,
"alnum_prop": 0.6917293233082706,
"repo_name": "mdoering/backbone",
"id": "e70922f907033be9df148e456e88419acfd727ee",
"size": "191... |
ACCEPTED
#### According to
International Plant Names Index
#### Published in
null
#### Original name
Pagaea poeppigii Griseb.
### Remarks
null | {
"content_hash": "6e731f784139d2b397ef4b1e3d3baaba",
"timestamp": "",
"source": "github",
"line_count": 13,
"max_line_length": 31,
"avg_line_length": 11.23076923076923,
"alnum_prop": 0.726027397260274,
"repo_name": "mdoering/backbone",
"id": "20ca08f405be2a32c8efdd4dca518d13e7c55da8",
"size": "213"... |
kid_readout.analysis package
============================
Subpackages
-----------
.. toctree::
kid_readout.analysis.physics
kid_readout.analysis.resonator
kid_readout.analysis.resources
kid_readout.analysis.tests
kid_readout.analysis.timedomain
Submodules
----------
kid_readout.analysis.archive... | {
"content_hash": "9b735b27cf18fd3254a653b41488f123",
"timestamp": "",
"source": "github",
"line_count": 105,
"max_line_length": 57,
"avg_line_length": 21.961904761904762,
"alnum_prop": 0.5763226366001735,
"repo_name": "ColumbiaCMB/kid_readout",
"id": "131f143c21db87c8ae9077995e7251dba39421c6",
"siz... |
/*
To get this list of colors inject jQuery at http://www.google.com/design/spec/style/color.html#color-color-palette
Then, run this script to get the list.
(function() {
var colors = {}, main = {};
$(".color-group").each(function() {
var color = $(this).find(".name").text().trim().toLowerCase().replace(" "... | {
"content_hash": "8febd6edb2009d1c2b582e25459155eb",
"timestamp": "",
"source": "github",
"line_count": 3014,
"max_line_length": 204,
"avg_line_length": 29.219973457199735,
"alnum_prop": 0.7025741180210971,
"repo_name": "HMProgrammingClub/NYCSL",
"id": "d710787847d317fbc73269b54adcaeaacb1adf15",
"s... |
package de.v13dev.designpatterns.factorymethod.creators;
import de.v13dev.designpatterns.factorymethod.products.IProduct;
import de.v13dev.designpatterns.factorymethod.products.ProductB;
public class CreatorB extends ACreator {
@Override
protected IProduct factoryMethod() {
return new ProductB();
... | {
"content_hash": "1d9596c76b03da6fdb071ebcd962882c",
"timestamp": "",
"source": "github",
"line_count": 13,
"max_line_length": 64,
"avg_line_length": 25.076923076923077,
"alnum_prop": 0.7760736196319018,
"repo_name": "ste-bo/designpatterns",
"id": "7384bbdc3f66f8fe5f7c589faf5ee12b18fed7b2",
"size":... |
<!DOCTYPE html>
<html lang="en">
<head>
<title>Info Enumeration Reference</title>
<link rel="stylesheet" type="text/css" href="../../css/jazzy.css" />
<link rel="stylesheet" type="text/css" href="../../css/highlight.css" />
<meta charset="utf-8">
<script src="../../js/jquery.min.js" defer></script... | {
"content_hash": "e335cfc5fab0cb90988a7fe3847d70dd",
"timestamp": "",
"source": "github",
"line_count": 766,
"max_line_length": 223,
"avg_line_length": 54.12532637075718,
"alnum_prop": 0.519922817173179,
"repo_name": "eBardX/XestiMonitors",
"id": "41c86703716e3d35e09eb2bf45c5a2f867b95571",
"size": ... |
require('coffee-script');
var roaster = require("roaster");
var taskLists = require("../src/index");
var fs = require("fs");
var options = {};
options.isFile = true;
roaster("./markdown.md", options, function(err, contents) {
contents = taskLists(contents);
fs.writeFileSync("./markdown.html", contents, "utf8");
... | {
"content_hash": "0f89ac984541695b016cd29fe354f681",
"timestamp": "",
"source": "github",
"line_count": 12,
"max_line_length": 59,
"avg_line_length": 26.916666666666668,
"alnum_prop": 0.6749226006191951,
"repo_name": "atom/task-lists-js",
"id": "37190db3e40d5addc0b0c72cf92c9bb3dc09b74c",
"size": "3... |
export BOOST_ROOT=/src/monero/boost_1_70_0
export OPENSSL_ROOT_DIR=/src/monero/openssl-1.1.1g
cd monero
git submodule init
git submodule update
mkdir -p build
cd build
cmake -D SANITIZE=ON -D OSSFUZZ=ON -D STATIC=ON -D BUILD_TESTS=ON -D USE_LTO=OFF -D ARCH="default" ..
make -C tests/fuzz \
base58_fuzz_tests \
bloc... | {
"content_hash": "b9dfaba2b6847c0996314dac9dbf5f90",
"timestamp": "",
"source": "github",
"line_count": 40,
"max_line_length": 101,
"avg_line_length": 25.525,
"alnum_prop": 0.6669931439764937,
"repo_name": "FeliciaLim/oss-fuzz",
"id": "b2ba520b1735cd0d1ed7e938ea8ae1c0365af988",
"size": "1704",
"b... |
package uk.nhs.ciao.docs.transformer;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import com.google.common.collect.Lists;
import com.google.common.collect.Maps;
/**
* Utility methods to clone / deep clone property object graphs
*/
public final class PropertyCloneUtils {
p... | {
"content_hash": "cd624d1e560c40eef331954a887075bb",
"timestamp": "",
"source": "github",
"line_count": 63,
"max_line_length": 71,
"avg_line_length": 22.92063492063492,
"alnum_prop": 0.6488919667590027,
"repo_name": "nhs-ciao/ciao-docs-transformer",
"id": "6e39a6fa6ca729e15551fa71dcd6036730a1cc40",
... |
package org.sakaiproject.sitestats.tool.wicket.widget;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.wicket.Page;
import org.apache.wicket.PageParameters;
import org.apache.wicket.exte... | {
"content_hash": "f9bfc99f18e39cb806903f13159e1ae1",
"timestamp": "",
"source": "github",
"line_count": 659,
"max_line_length": 141,
"avg_line_length": 31.731411229135052,
"alnum_prop": 0.6813638754722395,
"repo_name": "eemirtekin/Sakai-10.6-TR",
"id": "de059fcbc2aad8bdae05efb6b2d1cbfe795c073a",
"s... |
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="license">Licence</string>
<string name="import_wif">"Import z privátní klíč (WIF)"</string>
<string name="txt_wif_activity">Peněženka import Format - WIF</string>
<string name="txt_wif_paste">Soukromý klíč (WIF)</string>
<string name=... | {
"content_hash": "0949138fd5f8d84ba46b65bb08b3c1b4",
"timestamp": "",
"source": "github",
"line_count": 474,
"max_line_length": 306,
"avg_line_length": 33.31856540084388,
"alnum_prop": 0.7404546317988983,
"repo_name": "computationalcore/smartcoins-wallet",
"id": "db33ee8eb3fa0c60ab2d5c69be53f427b6f14... |
import logging
import sys
from twisted.internet import reactor, stdio
from twisted.protocols import basic
from twobitbot.utils import configure
from twobitbot.botresponder import BotResponder
from twobitbot.bitstampwatcher import BitstampWatcher
log = logging.getLogger("termbot")
# Terminal environment for testing
... | {
"content_hash": "94b7916d2f727421a6d1958d1f74f4b8",
"timestamp": "",
"source": "github",
"line_count": 63,
"max_line_length": 86,
"avg_line_length": 24.746031746031747,
"alnum_prop": 0.6465683130211675,
"repo_name": "socillion/twobitbot",
"id": "3e1a48b459eae0d084aa34aaa584ebc0631af763",
"size": "... |
struct SESound
{
playmu_sound* sound;
int pos;
float volume;
bool loop;
bool stop;
};
SESound playmu_sesounds[64];
float* playmu_soundbank[2048];
StereoBufferP playmu_soundbuffer;
void playmu_ZeroSoundBuffer()
{
if(playmu_soundbuffer.size==0)
return;
ZeroBuffer(playmu_soundbuffer.left, playm... | {
"content_hash": "8529990ad1813783aaf9a0f65dc4892b",
"timestamp": "",
"source": "github",
"line_count": 297,
"max_line_length": 183,
"avg_line_length": 25.84175084175084,
"alnum_prop": 0.6300977198697069,
"repo_name": "Huntasubs/musagi-hunta",
"id": "85e08834fe2ff58aa4b25bd7ca1801a890f78c2a",
"size... |
<?xml version="1.0" encoding="UTF-8"?>
<project name="zstack all in one package builder" basedir="../">
<property name="target.license.file" location="${allinone.dir}/zstack-license" />
<property name="zstack.repo.version" location="${zstack.distro.source}/mkiso/.repo_version" />
<condition property="check.... | {
"content_hash": "b98f583601cdbfdca70925412d1850b3",
"timestamp": "",
"source": "github",
"line_count": 88,
"max_line_length": 98,
"avg_line_length": 43.90909090909091,
"alnum_prop": 0.5709109730848861,
"repo_name": "zstackio/zstack-utility",
"id": "d3d929bf06f92a47d00fc3f6f0c207e9b4e3d2bd",
"size"... |
#ifndef __XLBINTREE_H_6C3F6F71_DCAC_4B1D_9BAC_1333FB803DEE_INCLUDED__
#define __XLBINTREE_H_6C3F6F71_DCAC_4B1D_9BAC_1333FB803DEE_INCLUDED__
#include "../Memory/xlMemory.h"
namespace xl
{
template <typename T>
struct BinTreeNode
{
typedef BinTreeNode *NodePtr;
T tValue;
... | {
"content_hash": "ca159a93f429a521c3431d4e2b4d1daa",
"timestamp": "",
"source": "github",
"line_count": 755,
"max_line_length": 116,
"avg_line_length": 24.566887417218542,
"alnum_prop": 0.4037632089713177,
"repo_name": "ywang2014/xlLib",
"id": "7726f1ae33dba0f86df6636b1e417bee72e43d0f",
"size": "18... |
. $PSScriptRoot\..\Dns\GcdCmdlets.ps1
Describe "Get-GcdResourceRecordSet" {
BeforeAll {
Remove-AllManagedZone($project)
}
AfterAll {
Remove-AllManagedZone($project)
}
It "should fail to return ResourceRecordSets of non-existent project" {
{ Get-GcdResourceRecordSet -Projec... | {
"content_hash": "d5c5aad05e5de08592bbf41ac2bb1430",
"timestamp": "",
"source": "github",
"line_count": 101,
"max_line_length": 121,
"avg_line_length": 41.73267326732673,
"alnum_prop": 0.6657176749703441,
"repo_name": "marceloyuela/google-cloud-powershell",
"id": "f7b12f67b9377e571a61d6b18752c1700385... |
//---------------------------------------------------------------------------
// myobject.h - Implementation of the User Layer
//
// This file implements the 2 classes required by the SlimTree Library User
// Layer.
//
// TCity is the object which will be indexed by a metric tree. It abstracts a
// city. Each city has ... | {
"content_hash": "64018ad231b09a235260c1cb9e8cbf6c",
"timestamp": "",
"source": "github",
"line_count": 275,
"max_line_length": 85,
"avg_line_length": 32.763636363636365,
"alnum_prop": 0.5942286348501665,
"repo_name": "pedro-stanaka/PgAR-tree",
"id": "384696789e38625ad093b21da4006a7aa60754d5",
"siz... |
<?php
namespace tests\TransactPRO\Gate\Builders;
class ChargeRecurrentDataBuilderTest extends BuilderTestCase
{
protected function setUp()
{
$this->builderClass = 'TransactPRO\Gate\Builders\ChargeRecurrentDataBuilder';
$this->data = array(
'f_extended' => '5'... | {
"content_hash": "9bf66ede977323c3685e01e2ee256434",
"timestamp": "",
"source": "github",
"line_count": 30,
"max_line_length": 86,
"avg_line_length": 24.2,
"alnum_prop": 0.5661157024793388,
"repo_name": "TransactPRO/transactpro-integration-php",
"id": "26f20a4ac40e85445537d439370986647c7bc503",
"si... |
/**
* Autogenerated by Thrift Compiler (0.16.0)
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
* @generated
*/
package org.apache.hadoop.hive.metastore.api;
@SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"})
@javax.annotation.Generated(value = "Autogenerated by Thrift ... | {
"content_hash": "2bd00102f749ea7c16b68c110db29a94",
"timestamp": "",
"source": "github",
"line_count": 589,
"max_line_length": 288,
"avg_line_length": 33.0509337860781,
"alnum_prop": 0.6625057790106333,
"repo_name": "sankarh/hive",
"id": "37311fc02a628624b7fc4105f36c05b2a29fa3f7",
"size": "19467",... |
'use strict';
describe('diagrammatica.bar', function () {
var chart;
var dataset;
var fixture;
beforeEach(function () {
dataset = [
{name: 'A', data: [2, 1, 5]},
{name: 'B', data: [1, 4, 3]}
];
fixture = d3.select('body').append('div').classed('test-cont... | {
"content_hash": "f7c60165260ef1b83d6607abca902762",
"timestamp": "",
"source": "github",
"line_count": 57,
"max_line_length": 86,
"avg_line_length": 26.526315789473685,
"alnum_prop": 0.5787037037037037,
"repo_name": "ethanhann/Diagrammatica",
"id": "eb80e23d0f29e966c15fc342bbefd373074f32c2",
"size... |
package com.landawn.abacus.util.function;
import com.landawn.abacus.util.N;
import com.landawn.abacus.util.Try;
/**
*
* @since 0.8
*
* @author Haiyang Li
*/
public interface ByteFunction<R> extends Try.ByteFunction<R, RuntimeException> {
static final ByteFunction<Byte> BOX = new ByteFunctio... | {
"content_hash": "ea1f1676aa918fe77609c437ee7c192a",
"timestamp": "",
"source": "github",
"line_count": 34,
"max_line_length": 81,
"avg_line_length": 21.61764705882353,
"alnum_prop": 0.5877551020408164,
"repo_name": "landawn/AbacusUtil",
"id": "cdbd0b8b035d7fcb1871321e9306abe053ba0b1d",
"size": "13... |
package com.company;
public interface ITelphone {
void powerOn();
void dial(int phoneNumber);
void answer();
boolean callPhone(int phoneNumber);
boolean isRinging();
}
| {
"content_hash": "0f2fcec4eaeadff9aabc113220b13141",
"timestamp": "",
"source": "github",
"line_count": 9,
"max_line_length": 39,
"avg_line_length": 22,
"alnum_prop": 0.6565656565656566,
"repo_name": "DorkinsTheOwl/owl-learning-java",
"id": "db3a6133305c5992af120e58d43bd2de430223f0",
"size": "198",... |
import sendgrid
import os
sg = sendgrid.SendGridAPIClient(os.environ.get('SENDGRID_API_KEY'))
##################################################
# Retrieve all blocks #
# GET /suppression/blocks #
params = {'start_time': 1, 'limit': 1, 'end_time': 1, 'offset': 1}
response = sg.client.suppression.blocks.get(query_pa... | {
"content_hash": "bdb1c579461905a90511eae27b786418",
"timestamp": "",
"source": "github",
"line_count": 200,
"max_line_length": 77,
"avg_line_length": 27.555,
"alnum_prop": 0.6131373616403557,
"repo_name": "sendgrid/sendgrid-python",
"id": "430f76f352a31a0b5436fa9350601d4b1ded67dd",
"size": "5511",... |
<?php
namespace App\Container\Helpers;
class Request {
private $vars = [];
public $post = [];
public $get = [];
public function __construct($vars){
$this->vars = $vars;
if(isset($vars['post']['_token'])) unset($vars['post']['_token']);
$this->post = (object) ... | {
"content_hash": "9bff33f0a0aa99ba8852054f8f45187d",
"timestamp": "",
"source": "github",
"line_count": 35,
"max_line_length": 106,
"avg_line_length": 22.685714285714287,
"alnum_prop": 0.5012594458438288,
"repo_name": "OrangeeWeb/IMT-3851-Assignment-3",
"id": "54e5f5869caa143ae0cabe595ee60d7d536bcdfe... |
class DeviceActions : public ash::AndroidIntentHelper,
public ash::assistant::DeviceActions,
public ArcAppListPrefs::Observer {
public:
explicit DeviceActions(std::unique_ptr<DeviceActionsDelegate> delegate);
DeviceActions(const DeviceActions&) = delete;
DeviceActions... | {
"content_hash": "57167b42b265e875d5d587372f82f9e5",
"timestamp": "",
"source": "github",
"line_count": 51,
"max_line_length": 80,
"avg_line_length": 42.23529411764706,
"alnum_prop": 0.7599814298978644,
"repo_name": "chromium/chromium",
"id": "43df537a5471df8e869705f13ca6ada71986642d",
"size": "309... |
package stocklist_demo.adapters;
import java.io.File;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import org.apache.log4j.Logger;
import org.apache.log4j.xml.DOMConfigurator;
import com.lightstreamer.adapters.metadata.LiteralBasedProvider;
import com.lightstreamer.interfaces.metadata.Credi... | {
"content_hash": "657417356d847efabfaf39f95165108e",
"timestamp": "",
"source": "github",
"line_count": 245,
"max_line_length": 142,
"avg_line_length": 42.69387755102041,
"alnum_prop": 0.615678776290631,
"repo_name": "Weswit/Lightstreamer-example-MPNStockListMetadata-adapter-java",
"id": "e0fe5339233... |
function [Fx,Fy,Fz]=backwards2forwards(Bx,By,Bz)
% This function will turn a backward transformation field in to a
% forward transformation field, using gaussian kernel splatting.
%
% Thus when you have transformed image1 into image2 with the Rueckert
% Registration, this function can reverse the vectorField allo... | {
"content_hash": "9415148f935a7b9afa17f3eb81b11fd9",
"timestamp": "",
"source": "github",
"line_count": 41,
"max_line_length": 92,
"avg_line_length": 39.02439024390244,
"alnum_prop": 0.665625,
"repo_name": "bugra/Similarity-Transform",
"id": "79d2b4d2c42f79e48b291d1cdda69fcab98985c0",
"size": "1600... |
package dk.brics.tajs.util;
import java.io.Serializable;
import java.util.Comparator;
import java.util.Map;
import java.util.Map.Entry;
/**
* Comparator for map entries using the natural order of the entry keys.
*/
public class MapEntryComparator<K extends Comparable<K>,V> implements Comparator<Map.Entry<K,V>>, S... | {
"content_hash": "f8af3ad7becbe48aea0115a4078ab229",
"timestamp": "",
"source": "github",
"line_count": 22,
"max_line_length": 112,
"avg_line_length": 22.818181818181817,
"alnum_prop": 0.7370517928286853,
"repo_name": "cursem/ScriptCompressor",
"id": "32ca5de23655107d3a93549052d26a6114e9b84c",
"siz... |
extern NxActor* gSelectedActor;
// Draw 3ds mesh
void Draw3DSMesh(NxShape* shape, Model_3DS* model)
{
NxMat34 pose;
pose = shape->getGlobalPose();
// Get saved-away wheel shape pose to draw wheel shape at proper position
if (shape->getType() == NX_SHAPE_WHEEL)
{
NxWheelShape* ws = (NxWheelShape *)shape;
p... | {
"content_hash": "92344fb69f020e6234c225e8932f10f1",
"timestamp": "",
"source": "github",
"line_count": 58,
"max_line_length": 96,
"avg_line_length": 24.103448275862068,
"alnum_prop": 0.6688125894134478,
"repo_name": "daher-alfawares/xr.desktop",
"id": "e9881da4d2a05d3aae0100606c8955b6695ff360",
"s... |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_45) on Tue Dec 02 21:24:55 EST 2014 -->
<title>Uses of Interface org.maltparser.core.syntaxgraph.node.Node (MaltParser 1.8.1)</title>
<... | {
"content_hash": "c2fd4aea1494468430474ac04e17d227",
"timestamp": "",
"source": "github",
"line_count": 364,
"max_line_length": 478,
"avg_line_length": 67.38461538461539,
"alnum_prop": 0.6687866927592955,
"repo_name": "jerryyeezus/nlp-summarization",
"id": "07f854c45bad9f02e9bd52ff5e803523e06ffad8",
... |
// Data Access is a Java library to store data
// Copyright (C) 2016-2019 Adrián Romero Corchado.
//
// This file is part of Data Access
//
// 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 c... | {
"content_hash": "dcd5daa3311d212243f888b9a8c30e21",
"timestamp": "",
"source": "github",
"line_count": 71,
"max_line_length": 86,
"avg_line_length": 33.32394366197183,
"alnum_prop": 0.6398985629754861,
"repo_name": "adrianromero/data",
"id": "ec242c514bb81dcc4d214728ae848dad04e91a78",
"size": "236... |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>quickchick: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.... | {
"content_hash": "5a18ce9ee736712a403fba92c11cb412",
"timestamp": "",
"source": "github",
"line_count": 183,
"max_line_length": 159,
"avg_line_length": 39.26775956284153,
"alnum_prop": 0.5464792652379628,
"repo_name": "coq-bench/coq-bench.github.io",
"id": "19b81c12a2c196f3dfd57877adfcd6cc650fbf9b",
... |
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
namespace Microsoft.CodeAnalysis.PerformanceSensitiveAnalyzers
{
internal static class AllocationRules
{
public const string PerformanceSensi... | {
"content_hash": "72ce26c8435bd6fd3c33dbbdfc0bdcd0",
"timestamp": "",
"source": "github",
"line_count": 9,
"max_line_length": 161,
"avg_line_length": 44.22222222222222,
"alnum_prop": 0.7814070351758794,
"repo_name": "pakdev/roslyn-analyzers",
"id": "ee97c5ddaf667eba2b9e5dc3e04e444171c7cf1e",
"size"... |
FROM balenalib/odroid-u3+-ubuntu:cosmic-build
ENV NODE_VERSION 15.10.0
ENV YARN_VERSION 1.22.4
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pgp.com --recv-keys "$key" || \
gpg --keyserver ha.pool.sks-keyservers... | {
"content_hash": "795b785881add6de97ec3062d4672ccb",
"timestamp": "",
"source": "github",
"line_count": 41,
"max_line_length": 694,
"avg_line_length": 66.8780487804878,
"alnum_prop": 0.7097009482129832,
"repo_name": "nghiant2710/base-images",
"id": "a28b09235879c1312e77c3104b6d53311f33ca36",
"size"... |
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//--... | {
"content_hash": "f4b7f8afbdb99f24be53fe0edbeb5955",
"timestamp": "",
"source": "github",
"line_count": 81,
"max_line_length": 188,
"avg_line_length": 42.60493827160494,
"alnum_prop": 0.6009852216748769,
"repo_name": "arsher/libclangsharp",
"id": "2f40a73848e98e305abc127bc336b183bc9cd67d",
"size": ... |
package omtteam.omlib.network.messages.render;
import io.netty.buffer.ByteBuf;
import net.minecraft.client.Minecraft;
import net.minecraft.util.EnumParticleTypes;
import net.minecraft.world.World;
import net.minecraftforge.fml.client.FMLClientHandler;
import net.minecraftforge.fml.common.network.simpleimpl.IMessage;
i... | {
"content_hash": "676d89072e00431d7d73b3a236078f3d",
"timestamp": "",
"source": "github",
"line_count": 97,
"max_line_length": 169,
"avg_line_length": 40.44329896907217,
"alnum_prop": 0.6064236553657915,
"repo_name": "OpenModularTurretsTeam/OMLib",
"id": "55bc82278dde5d7d4f0776e80af64c0ce51f5b60",
... |
var Action = require('../action');
var Register = Action.extend({
data: function() {
return {
title: 'MomConnect: Register the user',
fields: [{
key: 'msisdn',
name: 'msisdn',
userFieldId: 'msisdn'
}, {
key: 'clinic-code',
name: 'Clinic Code',
us... | {
"content_hash": "1645623d200200093d654a05fecc137b",
"timestamp": "",
"source": "github",
"line_count": 29,
"max_line_length": 45,
"avg_line_length": 17.96551724137931,
"alnum_prop": 0.510556621880998,
"repo_name": "praekelt/numi-prototypes",
"id": "48a9c26461d2194193d00e87136d0614dea10161",
"size"... |
export interface IPushNotificationSub {
version: string;
createdOn: number;
copayerId: string;
token: string;
externalUserId: string;
packageName: string;
platform: string;
walletId: string;
}
export class PushNotificationSub {
version: string;
createdOn: number;
copayerId: string;
token: string... | {
"content_hash": "fae33300a916dcb51ea602c69c12aee8",
"timestamp": "",
"source": "github",
"line_count": 50,
"max_line_length": 48,
"avg_line_length": 22.98,
"alnum_prop": 0.6684073107049608,
"repo_name": "bitpay/bitcore",
"id": "5880fa9e6557572c16ca49cf9879913d393c7baa",
"size": "1149",
"binary":... |
<?php
/**
* @namespace
*/
namespace Zend\Crypt\Rsa\Key;
/**
* @see Zend_Crypt_Rsa_Key
*/
require_once 'Zend/Crypt/Rsa/Key.php';
/**
* @category Zend
* @package Zend_Crypt
* @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/licen... | {
"content_hash": "4a9df54508de0e1ce29cd5f3e2816d77",
"timestamp": "",
"source": "github",
"line_count": 61,
"max_line_length": 87,
"avg_line_length": 24.37704918032787,
"alnum_prop": 0.5608607935440484,
"repo_name": "FbN/Zend-Framework-Namespaced-",
"id": "b9eae8d6b83ab8bb4dd9b4a5657624b7f8f7dd56",
... |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_77) on Sun Feb 12 12:26:27 EST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Interface com.buffal... | {
"content_hash": "03e473a0ffcdc7f31dff612a5fef7c1c",
"timestamp": "",
"source": "github",
"line_count": 168,
"max_line_length": 408,
"avg_line_length": 42.970238095238095,
"alnum_prop": 0.6554924504779055,
"repo_name": "SheepGuru/aerodrome-for-jet",
"id": "5fa88c675bc7a7ebf834350c39d356e5dfdf7856",
... |
{% extends "base.html" %}
{% load email_protection %}
{% block content %}
<div id="LR_Provision" class="anchor"></div>
<h2>Provision of LRs in the ELRC-SHARE repository</h2>
<div class="content_box">
<p>The ELRC-SHARE repository is intended for documenting, storing, browsing and accessing LRs that are considered usef... | {
"content_hash": "3708afadd8a801f5286a39b2f0966574",
"timestamp": "",
"source": "github",
"line_count": 225,
"max_line_length": 660,
"avg_line_length": 63.51111111111111,
"alnum_prop": 0.7237228831350595,
"repo_name": "MiltosD/CEF-ELRC",
"id": "c6455e874ed2b6b7aef301ddfa263a1c85ea2f05",
"size": "14... |
package org.fishwife.jrugged.examples;
import java.util.Random;
import org.fishwife.jrugged.aspects.PerformanceMonitor;
public class AspectResponseTweaker {
@PerformanceMonitor("AspectResponseTweaker")
public int delay() throws Exception {
Random r = new Random();
int count = r.nextInt(2001... | {
"content_hash": "a862e0676fab1bb1f0700c0675c43083",
"timestamp": "",
"source": "github",
"line_count": 26,
"max_line_length": 61,
"avg_line_length": 21.115384615384617,
"alnum_prop": 0.6229508196721312,
"repo_name": "bvand/jrugged",
"id": "b07075ee089cd7cf1c187dc00f37ba62e738d6fb",
"size": "1165",... |
from model.group import Group
import random
import string
import jsonpickle
import os.path
import getopt
import sys
try:
opts, args = getopt.getopt(sys.argv[1:], "n:f:", ["number of groups", "file"])
except getopt.GetoptError as err:
getopt.usage()
sys.exit(2)
n = 1
f = "data/groups_editor.json"
for o,... | {
"content_hash": "8b755633ef8006fa0bc48b75711f65f0",
"timestamp": "",
"source": "github",
"line_count": 42,
"max_line_length": 114,
"avg_line_length": 22.523809523809526,
"alnum_prop": 0.6469344608879493,
"repo_name": "IgorGolubenkov/python_training",
"id": "81392b2ad422a03948df0328ba3c4a5004c25307",... |
<?xml version="1.0"?>
<configuration>
<property>
<name>fuzzyjoin.data.dir</name>
<value>/data/enron</value>
</property>
<property>
<name>fuzzyjoin.data.record.data</name>
<value>8</value>
</property>
<property>
<name>fuzzyjoin.data.raw</name>
<value>enron.txt</value>
<description>Only used for Recor... | {
"content_hash": "b17770488ce03520727fd95e6483a836",
"timestamp": "",
"source": "github",
"line_count": 72,
"max_line_length": 66,
"avg_line_length": 23.819444444444443,
"alnum_prop": 0.6309037900874636,
"repo_name": "TonyApuzzo/fuzzyjoin",
"id": "616a6384bd2a70ea950a5cc412613cf57ad8e179",
"size": ... |
/* */
"format cjs";
/*!
* Angular Material Design
* https://github.com/angular/material
* @license MIT
* v1.1.0-master-0d7fbad
*/
goog.provide('ngmaterial.components.autocomplete');
goog.require('ngmaterial.components.icon');
goog.require('ngmaterial.components.virtualRepeat');
goog.require('ngmaterial.core');
/*... | {
"content_hash": "4ae114db8606d9f5184b6b8e7b885001",
"timestamp": "",
"source": "github",
"line_count": 1431,
"max_line_length": 162,
"avg_line_length": 33.714884696016775,
"alnum_prop": 0.6182066907101107,
"repo_name": "israel-11/solid-fiesta",
"id": "b8c4fb798d7be127a5eed34f4878182e5c19c261",
"si... |
require "HDRHistogram/version"
require "ruby_hdr_histogram"
class HDRHistogram
def initialize(lowest, highest, sig, opt={})
@multiplier = opt[:multiplier] || 1
@unit = opt[:unit] || opt[:units]
if opt[:unserialized]
m=opt[:unserialized]
self.unit_magnitude= m[:unit_magnitude].to_i
... | {
"content_hash": "68775c7e6feb5a8ad24978419d7161c3",
"timestamp": "",
"source": "github",
"line_count": 166,
"max_line_length": 476,
"avg_line_length": 30.704819277108435,
"alnum_prop": 0.583284284873455,
"repo_name": "slact/hdr_histogram_ruby",
"id": "2a60bf2e07e04dc571ee9cfae687f77670c04cbc",
"si... |
/*global QUnit:true, module:true, test:true, asyncTest:true, expect:true*/
/*global start:true, stop:true ok:true, equal:true, notEqual:true, deepEqual:true*/
/*global notDeepEqual:true, strictEqual:true, notStrictEqual:true, raises:true*/
(function( window ) {
// window.unprefixed = window.unprefix();
module("Un... | {
"content_hash": "3902f3888261c5b04b384d674cc42d8c",
"timestamp": "",
"source": "github",
"line_count": 99,
"max_line_length": 151,
"avg_line_length": 23.92929292929293,
"alnum_prop": 0.5799915576192486,
"repo_name": "rwaldron/unprefix.js",
"id": "b2687de96ffb339561c2ec391a2e893b4e4b646e",
"size": ... |
<?xml version="1.0"?>
<REUTERS TOPICS="YES" LEWISSPLIT="TRAIN" CGISPLIT="TRAINING-SET" OLDID="12561" NEWID="379">
<DATE>2-MAR-1987 08:43:25.91</DATE>
<TOPICS>
<D>acq</D>
</TOPICS>
<PLACES>
<D>usa</D>
</PLACES>
<PEOPLE/>
<ORGS/>
<EXCHANGES/>
<COMPANIES/>
<UNKNOWN>F
f0362 reute
d f BC-MARRIOTT-<MHS>... | {
"content_hash": "7e342636219116a2d428e2188b1dcb0b",
"timestamp": "",
"source": "github",
"line_count": 29,
"max_line_length": 91,
"avg_line_length": 28.896551724137932,
"alnum_prop": 0.7028639618138425,
"repo_name": "fyears/tmpy",
"id": "33a58db6033ad4217a0c2d087a3e253a223dc090",
"size": "838",
... |
package com.wayneleo.quickstart.sample.security;
import java.io.Serializable;
import java.util.List;
import javax.persistence.CascadeType;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.Id;
import javax.persistence.ManyToMany;
@Entity( na... | {
"content_hash": "64f806813cd38e2ddf18a05863ba8b4c",
"timestamp": "",
"source": "github",
"line_count": 46,
"max_line_length": 125,
"avg_line_length": 24.73913043478261,
"alnum_prop": 0.6590509666080844,
"repo_name": "cnwayne/QuickStartForJava",
"id": "31ba112e379b21920b8d31972fa91e1a7c027ed8",
"si... |
<?php
/**
* $LICENSE$
*
* @category Light
* @package Light_Test
* @subpackage Library
* @license New BSD License
* @version $Id:$
* @author erenon
*/
require_once 'Light/Service/Abstract.php';
/**
* Library Service Abstract test suite
*
* @category Light
* @package Light_Test
* @subpackage Li... | {
"content_hash": "bb3a58b024bc0b7828ccb9cdba038ac2",
"timestamp": "",
"source": "github",
"line_count": 45,
"max_line_length": 73,
"avg_line_length": 19.77777777777778,
"alnum_prop": 0.6157303370786517,
"repo_name": "erenon/Light",
"id": "f4ccedf54115983e016c05c9175dfb31bd9bac03",
"size": "890",
... |
import _extends from "@babel/runtime/helpers/extends";
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
var _excluded = ["mode", "children", "className"];
import * as React from "react";
import { classNamesString } from "../../lib/classNames";
/**
* @see https://vkcom.github.io/V... | {
"content_hash": "cbacac0a0fbd75f3ab7727ba02d18045",
"timestamp": "",
"source": "github",
"line_count": 25,
"max_line_length": 102,
"avg_line_length": 39.64,
"alnum_prop": 0.6962663975782039,
"repo_name": "cdnjs/cdnjs",
"id": "a29b5ac4a7655cc04d68d01bd7f75fc7fa6f6e52",
"size": "991",
"binary": fa... |
'-------------------------------------------------------------------------------------------'
' Inicio del codigo
'-------------------------------------------------------------------------------------------'
' Importando librerias
'--------------------------------------------------------------------------------------... | {
"content_hash": "a3847bff0bc6a51b72fdf8b0ad0d1985",
"timestamp": "",
"source": "github",
"line_count": 130,
"max_line_length": 191,
"avg_line_length": 55.53846153846154,
"alnum_prop": 0.5556786703601108,
"repo_name": "kodeitsolutions/ef-reports",
"id": "90382fefe993f2111728d87ca7db9b10e0e6a3d0",
"... |
/**
* Node Module that exports a housing ubpdate function that takes the url and data to be updated.
* Returns success or failure. Primarily used by the scraper script.
*
* Housing Schema: {
* city: 'string', # Name of the city (ie, 'Seattle WA')
* rent: { # rental object contain... | {
"content_hash": "13ccb2e4fa98adabf6565435d03ebc1c",
"timestamp": "",
"source": "github",
"line_count": 58,
"max_line_length": 99,
"avg_line_length": 34.1551724137931,
"alnum_prop": 0.5906108026249369,
"repo_name": "masharp/maker-towns",
"id": "13fd505cc380132a038bc4f652b7883863858974",
"size": "19... |
echo Getting latest bits...
git pull
echo "Copying login.sh file to root..."
cp login.sh ~/
echo Starting Mini Mobile Device Lab Client
cd PiLab
echo ""
echo Starting Monitor...
forever start monitor.js
echo ""
echo Starting ADB Server with sudo
sudo adb start-server
# echo ""
# echo Installing and updating node ... | {
"content_hash": "5abaab4832710a510f005a62197f7f50",
"timestamp": "",
"source": "github",
"line_count": 30,
"max_line_length": 43,
"avg_line_length": 15.2,
"alnum_prop": 0.7478070175438597,
"repo_name": "GoogleChromeLabs/MiniMobileDeviceLab",
"id": "21a144b3600e34a42f22dd4dd7bbb2a2080115f8",
"size"... |
package org.ddogleg.clustering;
/**
* List of different initialization techniques for k-means
*
* @author Peter Abeles
*/
public enum KMeansInitializers {
/**
* Randomly select seeds from the set of available points
*/
STANDARD,
/**
* See {@link org.ddogleg.clustering.kmeans.InitializePlusPlus}. Select... | {
"content_hash": "2508143192218d1791bc833b10365ca4",
"timestamp": "",
"source": "github",
"line_count": 20,
"max_line_length": 99,
"avg_line_length": 20.65,
"alnum_prop": 0.7239709443099274,
"repo_name": "bladestery/Sapphire",
"id": "f74f60410cd7a0d8190d9f591012f92bbb3c9fb1",
"size": "1095",
"bin... |
// 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.
/*============================================================
**
**
**
** Purpose: This class will encapsulate a by... | {
"content_hash": "e57590dd61f395bd67cc6e659cd82f11",
"timestamp": "",
"source": "github",
"line_count": 284,
"max_line_length": 150,
"avg_line_length": 31.570422535211268,
"alnum_prop": 0.5817532902074504,
"repo_name": "rartemev/coreclr",
"id": "d9beb397b7802a0f9aace9b6fb77afa09dcf604c",
"size": "8... |
[summary]: #summary
This RFC summarizes a few observed problems _of_ and suggestions for improvement _for_ the `/start_trajectory` service of Cartographer ROS.
## Motivation
[motivation]: #motivation
Starting a trajectory on demand, optionally with a start pose, is a very common task in robot localization.
However, ... | {
"content_hash": "c10b044e9892cb4ee115e051040de502",
"timestamp": "",
"source": "github",
"line_count": 80,
"max_line_length": 310,
"avg_line_length": 45.1,
"alnum_prop": 0.7904656319290465,
"repo_name": "googlecartographer/rfcs",
"id": "0b4ac90bbe6fbb6519b7e5abfe4023c35ca29b87",
"size": "3652",
... |
import scala.util.Try
import org.slf4j.LoggerFactory
import gitbucket.core.plugin.PluginRegistry
import gitbucket.core.service.SystemSettingsService.SystemSettings
import io.github.gitbucket.solidbase.model.Version
import javax.servlet.ServletContext
import tobiasroeser.gitbucket.asciidoctor.AsciidoctorRenderer
clas... | {
"content_hash": "82a1372e65cee0fb179f4fb299323d80",
"timestamp": "",
"source": "github",
"line_count": 47,
"max_line_length": 112,
"avg_line_length": 31.638297872340427,
"alnum_prop": 0.7511768661735037,
"repo_name": "asciidoctor/gitbucket-asciidoctor-plugin",
"id": "2eb2ff8f5fd70232087599f69b2b6eb6... |
<?php
namespace common\modules\user\models\forms;
use Yii;
use yii\base\Model;
/**
* LoginForm is the model behind the login form.
*/
class LoginForm extends Model
{
/**
* @var string Username and/or email
*/
public $username;
/**
* @var string Password
*/
public $password;
... | {
"content_hash": "1d9e744b524781e40eb596471e1f97c6",
"timestamp": "",
"source": "github",
"line_count": 166,
"max_line_length": 119,
"avg_line_length": 26.867469879518072,
"alnum_prop": 0.5069506726457399,
"repo_name": "ramshresh/dmis",
"id": "707c3fc3a345baf69cf6fb4bb0f474f7846a3306",
"size": "446... |
package h;
import java.util.Arrays;
import java.util.List;
//2 at817e3s1icc92sqipan1gjl9
public interface Agedge_t extends Agedge_s {
public static List<String> DEFINITION = Arrays.asList(
"typedef struct Agedge_s Agedge_t");
}
// typedef struct Agedge_s Agedge_t; | {
"content_hash": "e9c4f75cc1a6f740c149b8ab96331923",
"timestamp": "",
"source": "github",
"line_count": 13,
"max_line_length": 55,
"avg_line_length": 20.692307692307693,
"alnum_prop": 0.7657992565055762,
"repo_name": "Banno/sbt-plantuml-plugin",
"id": "d918afe66f920c96532d04b804b3219a352e9a65",
"si... |
package org.springframework.boot.autoconfigure.mongo;
import java.net.UnknownHostException;
import java.util.List;
import com.mongodb.MongoClient;
import com.mongodb.MongoCredential;
import com.mongodb.ServerAddress;
import org.junit.Test;
import org.springframework.boot.context.properties.EnableConfigurationPrope... | {
"content_hash": "0403bf31923f438d07c457dff2445b32",
"timestamp": "",
"source": "github",
"line_count": 125,
"max_line_length": 88,
"avg_line_length": 36.912,
"alnum_prop": 0.7869527524924144,
"repo_name": "neo4j-contrib/spring-boot",
"id": "96a051a28ba8f4607af3ec28f51107de903df1a0",
"size": "5234"... |
import React, { Component, PropTypes } from 'react';
import DailyPricesTable from './DailyPricesTable';
export default class DailyPricesCard extends Component {
static propTypes = {
dailyPrices: PropTypes.array.isRequired,
};
render() {
const { dailyPrices } = this.props;
return ... | {
"content_hash": "b1f1e1992afb5c0df17798c0b0c675ba",
"timestamp": "",
"source": "github",
"line_count": 17,
"max_line_length": 58,
"avg_line_length": 23.529411764705884,
"alnum_prop": 0.635,
"repo_name": "qingweibinary/binary-next-gen",
"id": "1b4e18edb3932a1f4ee945429dd38d87852d1d51",
"size": "400... |
using Wangkanai.Detection.Models;
namespace Wangkanai.Detection.Services;
/// <summary>
/// Provides the APIs for query client platform.
/// </summary>
public interface IPlatformService
{
/// <summary>
/// Gets the <see cref="Processor"/> of the request client.
/// </summary>
public Processor Processo... | {
"content_hash": "0f23546026f2caa74a432db77b3f35c0",
"timestamp": "",
"source": "github",
"line_count": 24,
"max_line_length": 63,
"avg_line_length": 25.166666666666668,
"alnum_prop": 0.6274834437086093,
"repo_name": "wangkanai/Detection",
"id": "784b41b6e47027763f354f7a73033c32f13e53a3",
"size": "... |
package com.google.common.graph;
import static com.google.common.graph.GraphConstants.ENDPOINTS_MISMATCH;
import static com.google.common.graph.TestUtil.assertEdgeNotInGraphErrorMessage;
import static com.google.common.truth.Truth.assertThat;
import static org.junit.Assert.fail;
import com.google.common.collect.Imm... | {
"content_hash": "ab215fe5f4b352cf6eaab26bf6916da4",
"timestamp": "",
"source": "github",
"line_count": 240,
"max_line_length": 97,
"avg_line_length": 32.1,
"alnum_prop": 0.6984683281412254,
"repo_name": "EdwardLee03/guava",
"id": "6111f82367565110cd0613acc4b883d432a91285",
"size": "8304",
"binar... |
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.dahanne.android.google.client" >
<uses-sdk android:minSdkVersion="11" />
<uses-permission android:name="android.permission.INTERNET" />
<application
android:name=".MainAppl... | {
"content_hash": "fe3f921b674f8f6adc093a4e4db87758",
"timestamp": "",
"source": "github",
"line_count": 29,
"max_line_length": 76,
"avg_line_length": 34.275862068965516,
"alnum_prop": 0.6146881287726358,
"repo_name": "anthonydahanne/spring-for-android-starter-book",
"id": "80061d8e96bca0f587c1566f33f... |
<ion-view>
<ion-content>
<ion-list>
<ion-item class="item-avatar"
ng-repeat="model in collection.models | groupFilter:searchText | orderBy:'+name'"
ng-controller="GroupCtrl"
ng-class="model.selected ? 'selected' : ''"
href="#/chat/groupchat/{{model.id}}"
on-hold="select()">
<ng-include sr... | {
"content_hash": "5ab370b35fb1672a3f37caaf8984d123",
"timestamp": "",
"source": "github",
"line_count": 16,
"max_line_length": 114,
"avg_line_length": 35.125,
"alnum_prop": 0.6637010676156584,
"repo_name": "jokyip/imsails",
"id": "db4af80e0a8cf69e91a5e6d5ac1252793252c88b",
"size": "562",
"binary"... |
package com.orientechnologies.orient.core.db;
import com.orientechnologies.orient.core.db.ODatabase.ATTRIBUTES;
public interface ODatabaseComplexInternal<T> extends ODatabaseComplex<T>, ODatabaseInternal {
/**
* Returns the database owner. Used in wrapped instances to know the up level ODatabase instance.
... | {
"content_hash": "5008babef8861256633fc69e4911a23f",
"timestamp": "",
"source": "github",
"line_count": 33,
"max_line_length": 105,
"avg_line_length": 29.484848484848484,
"alnum_prop": 0.7410071942446043,
"repo_name": "DiceHoldingsInc/orientdb",
"id": "19da34c00f990f2686d6e539e501513bc664f7ed",
"si... |
// Original work: Copyright 2009 Google Inc. All Rights Reserved.
//
// Modified work: The original source code (AndroidNdt.java) comes from the NDT Android app
// that is available from http://code.google.com/p/ndt/.
// It's modified for the CalSPEED Android app by California
// ... | {
"content_hash": "71bcb17d848916542e2edc98bb1cd921",
"timestamp": "",
"source": "github",
"line_count": 1533,
"max_line_length": 129,
"avg_line_length": 28.596868884540118,
"alnum_prop": 0.7046693583339037,
"repo_name": "nikakhov/DataHawk",
"id": "78cd08255fe931850150adad555fe2b7a559cdef",
"size": ... |
package com.artech.prototype2.saver.dao.impl;
import com.artech.prototype2.saver.dao.AbstractDao;
import com.artech.prototype2.saver.entity.FourgramRuVarOne;
/**
* Created by User on 14.12.2014.
*/
public class FourgramRuVarOneDaoImpl extends AbstractDao<Integer, FourgramRuVarOne> {
}
| {
"content_hash": "cee1f625edff85adbb137afcaccadde4",
"timestamp": "",
"source": "github",
"line_count": 10,
"max_line_length": 85,
"avg_line_length": 29,
"alnum_prop": 0.8,
"repo_name": "mirabon/PrototypeV2",
"id": "21a19555b38714a26ef54b5b4ebe74dc5a762e2f",
"size": "290",
"binary": false,
"cop... |
@interface RCDUpdateNameViewController()<UIViewControllerRestoration>
@end
@implementation RCDUpdateNameViewController
+ (UIViewController *)viewControllerWithRestorationIdentifierPath:(NSArray *)identifierComponents
coder:(NSCoder *)coder
{
UIViewContr... | {
"content_hash": "b37066bcf9270e052238238dbc75d4db",
"timestamp": "",
"source": "github",
"line_count": 105,
"max_line_length": 180,
"avg_line_length": 29.761904761904763,
"alnum_prop": 0.66144,
"repo_name": "birdcopy/Birdcopy-IOS-APP",
"id": "3b97a38c4f5c5296e696d8e792510bea7eb059ed",
"size": "344... |
var chai = require('chai');
var should = chai.should();
var location = require('../../../../lib/model/response/vehicle/location');
describe('location model test', function () {
it('should create model', function (done) {
var locationModel = new location.Location('wielkopolskie', 'PL');
should.exist(locatio... | {
"content_hash": "0e34b2c3fe1280cffcb72dedb4ae13fb",
"timestamp": "",
"source": "github",
"line_count": 31,
"max_line_length": 74,
"avg_line_length": 26.06451612903226,
"alnum_prop": 0.6633663366336634,
"repo_name": "togusafish/vehicle-history-_-npm-vehicle-history-model",
"id": "74a24eef83c1a3d58d9b... |
package org.apache.onami.persist;
import de.bechte.junit.runners.context.HierarchicalContextRunner;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import javax.persistence.EntityManager;
import javax.persistence.EntityTransaction;
import static org.mockito.Mockito.doReturn;
import... | {
"content_hash": "afcb2bb0baaa61a79c63a1862ef0c9e9",
"timestamp": "",
"source": "github",
"line_count": 127,
"max_line_length": 90,
"avg_line_length": 20.677165354330707,
"alnum_prop": 0.6835491241431836,
"repo_name": "tocktix/onami-persist",
"id": "0d17f2b7b91e57ab1f8bbe2982a7f2db8c51ef45",
"size"... |
#import "GlobalNotificationSettingsViewController.h"
#import "RageShakeManager.h"
@implementation GlobalNotificationSettingsViewController
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
// Setup `MXKRoomMemberListViewController` ... | {
"content_hash": "952634dde26e349c75537a4044b817fa",
"timestamp": "",
"source": "github",
"line_count": 17,
"max_line_length": 76,
"avg_line_length": 23.529411764705884,
"alnum_prop": 0.7725,
"repo_name": "matrix-org/matrix-ios-console",
"id": "e1b65b61077ea0ec2cfa6819715ad577459aba09",
"size": "97... |
/**
* @file lv_mask.h
*
*/
#ifndef LV_MASK_H
#define LV_MASK_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
#include <stdbool.h>
#include "../lv_misc/lv_area.h"
#include "../lv_misc/lv_color.h"
/*********************
* DEFINES
*********************... | {
"content_hash": "2dac15d4cd7160a9ac3a6380879c79e5",
"timestamp": "",
"source": "github",
"line_count": 302,
"max_line_length": 120,
"avg_line_length": 32.08940397350993,
"alnum_prop": 0.6370859560416882,
"repo_name": "littlevgl/lvgl",
"id": "adb9a050a8de7671116962bbcae7f0a1c9fef5cd",
"size": "9691... |
package fr.expdev.bench.bench.mysql.engine;
/**
* Table created with :
* <p>CREATE TABLE User_INNODB
* (
* id BIGINT PRIMARY KEY NOT NULL AUTO_INCREMENT,
* login VARCHAR(100) NOT NULL,
* firstName VARCHAR(255) NOT NULL,
* lastName VARCHAR(255) NOT NULL
* );
* CREATE UNIQUE INDEX UK_login ON User_INNODB ( logi... | {
"content_hash": "7cbadc5b29273b949697dbdd7e300321",
"timestamp": "",
"source": "github",
"line_count": 21,
"max_line_length": 57,
"avg_line_length": 23.761904761904763,
"alnum_prop": 0.6733466933867736,
"repo_name": "olivierperez/java-bench",
"id": "8c22d78338f34e39bc23a44db03a82846767d622",
"size... |
<?php
/*
|--------------------------------------------------------------------------
| Application Routes
|--------------------------------------------------------------------------
|
| Here is where you can register all of the routes for an application.
| It's a breeze. Simply tell Laravel the URIs it should respond ... | {
"content_hash": "ceb6d6526e7d6544ecf22943e25115c9",
"timestamp": "",
"source": "github",
"line_count": 59,
"max_line_length": 109,
"avg_line_length": 51.33898305084746,
"alnum_prop": 0.70122152525586,
"repo_name": "Paturages/EEISTI-Tournaments",
"id": "43abad5f9f3111b79f17b7814dffc58cdf7c8f4f",
"s... |
class Article < ActiveRecord::Base
has_many :comments
has_many :taggings
has_many :tags, through: :taggings
#has_attached_file :image # this method is part of the paperclip library.
# paperclip will understand that this model should accept a file attachment and that there are fields to store information about ... | {
"content_hash": "e910260fe208ebe07d7e58dbde262d5f",
"timestamp": "",
"source": "github",
"line_count": 24,
"max_line_length": 197,
"avg_line_length": 61.666666666666664,
"alnum_prop": 0.7128378378378378,
"repo_name": "arthur-vieira/rails-blogger",
"id": "08141bda8d325d54307eb23e683b7c0ff6a8ec61",
... |
# This file is copied to spec/ when you run 'rails generate rspec:install'
ENV["RAILS_ENV"] ||= 'test'
require 'spec_helper'
require File.expand_path("../../config/environment", __FILE__)
require 'rspec/rails'
# Requires supporting ruby files with custom matchers and macros, etc, in
# spec/support/ and its subdirector... | {
"content_hash": "44a079272f46834341cc2ecdfa776fc3",
"timestamp": "",
"source": "github",
"line_count": 43,
"max_line_length": 79,
"avg_line_length": 45.74418604651163,
"alnum_prop": 0.7275038129130655,
"repo_name": "otsutomesan/mid",
"id": "f6e3494efccc139b7f90a4a479a45f1903312168",
"size": "1967"... |
<?php
use \Wa72\HtmlPageDom\HtmlPageCrawler;
class XmlParser {
private $task;
private $content;
private $page;
public function __construct($task, $content) {
$this->content = $content;
$this->task = $task;
$this->page = new HtmlPageCrawler($content);
}
public funct... | {
"content_hash": "79000a6e83e6a7926aea9f2274d98824",
"timestamp": "",
"source": "github",
"line_count": 79,
"max_line_length": 89,
"avg_line_length": 25.949367088607595,
"alnum_prop": 0.4795121951219512,
"repo_name": "Trungi/Webclone",
"id": "79fca4a9982d3f608b120d18dcba0de6d1e5677a",
"size": "2054... |
layout: post
title: MP Vyapam Jail Department Jobs last date 19th Oct-2015
date: 2015-09-29 05:26
comments: true
tags: Instructor ITI-Apprentice Latest MP Online
archive: false
---
Examination-2015 for various job posts in MP Jail Department of Government of MP on Direct basis
An examination will be condu... | {
"content_hash": "fa365e2f515674167ff4a33f62c59a50",
"timestamp": "",
"source": "github",
"line_count": 30,
"max_line_length": 224,
"avg_line_length": 34.63333333333333,
"alnum_prop": 0.7449470644850819,
"repo_name": "anchalrani/getopportunity",
"id": "12ee7961ddc671e89562bef30248c67214949e23",
"si... |
package org.jboss.resteasy.spring;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.MediaTypeEditor;
import java.beans.PropertyEditor;
import static org.junit.Assert.assertEquals;
public class TestMediaTypePropertyEditor
{
p... | {
"content_hash": "8dea0142bfeb3e89980696db806a17f1",
"timestamp": "",
"source": "github",
"line_count": 75,
"max_line_length": 65,
"avg_line_length": 25.293333333333333,
"alnum_prop": 0.6879283078545071,
"repo_name": "raphaelning/resteasy-client-android",
"id": "7092b33dc391cd74474b9f4390ee2af7c04cc2... |
package com.bq.corbel.lib.queries.request;
import static org.fest.assertions.api.Assertions.assertThat;
import org.junit.Test;
import com.bq.corbel.lib.queries.BooleanQueryLiteral;
import com.bq.corbel.lib.queries.QueryNodeImpl;
import com.bq.corbel.lib.queries.StringQueryLiteral;
public class ResourceQueryTest {
... | {
"content_hash": "66548c58d657df5cbebdcc65aac2d174",
"timestamp": "",
"source": "github",
"line_count": 49,
"max_line_length": 128,
"avg_line_length": 41.16326530612245,
"alnum_prop": 0.6866633614278632,
"repo_name": "bq/lib-queries",
"id": "aa0eca8501f0e8e2c0acf6764738cd3d875088ae",
"size": "2017"... |
using System.Reflection;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("MSBuild.Orchard.Tasks")]
[assembly... | {
"content_hash": "3e3b738c4174993e6d1b8d744d676228",
"timestamp": "",
"source": "github",
"line_count": 34,
"max_line_length": 84,
"avg_line_length": 39.14705882352941,
"alnum_prop": 0.7272727272727273,
"repo_name": "bigfont/orchard-cms-modules-and-themes",
"id": "d80b3d68ce4da0fb20bcc3a99555c501d6e5... |
package com.aspose.slides.examples.Shapes;
import com.aspose.slides.*;
import com.aspose.slides.examples.Utils;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
public class FillShapesPicture
{
public static void main(String[] args) throws Exception
{
// The path to... | {
"content_hash": "7fc8dcb5eff77d4db1a4529dc69599b8",
"timestamp": "",
"source": "github",
"line_count": 52,
"max_line_length": 96,
"avg_line_length": 27.51923076923077,
"alnum_prop": 0.6722571628232006,
"repo_name": "ali-salman/Aspose.Slides-for-Java",
"id": "389064bd3756f72925f54a712022cf5f4fc03bf7"... |
require 'rubygems'
require 'sinatra'
require 'sinatra/reloader'
require 'sqlite3'
def init_db
@db = SQLite3::Database.new 'leprosorium.db'
@db.results_as_hash = true
end
before do
init_db
end
configure do
init_db
#creates table Posts if it does not exist
@db.execute 'CREATE TABLE IF NOT EXISTS
"Posts"
... | {
"content_hash": "b60f7449de72809ea60d0cd5da33b850",
"timestamp": "",
"source": "github",
"line_count": 115,
"max_line_length": 109,
"avg_line_length": 19.36521739130435,
"alnum_prop": 0.6766951055231253,
"repo_name": "cheshi-mantu/smallLepra",
"id": "ba45c035e45c894a53d539b251f0f799e7b9b0c1",
"siz... |
<!-- HTML header for doxygen 1.8.18-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" con... | {
"content_hash": "2e5147dc7e275841eed53b02d144afb3",
"timestamp": "",
"source": "github",
"line_count": 114,
"max_line_length": 395,
"avg_line_length": 58.473684210526315,
"alnum_prop": 0.7002700270027002,
"repo_name": "or-tools/docs",
"id": "6e0c02d462f484bbfb571787ca3422bc70f41fdd",
"size": "6666... |
BlazePose topology contains 33 points extending 17 points by COCO with missing
points on palms and feet to provide lacking scale and orientation information
for limbs, which is vital for practical applications like fitness, yoga and
dance.
<!-- task: image-pose-detection -->
<!-- fine-tunable: false -->
| {
"content_hash": "f16d882ab74d667a54909a8595adcd40",
"timestamp": "",
"source": "github",
"line_count": 7,
"max_line_length": 78,
"avg_line_length": 43.714285714285715,
"alnum_prop": 0.7777777777777778,
"repo_name": "tensorflow/tfhub.dev",
"id": "2d91c35653e702d0324a943609dd005da8519f83",
"size": "... |
using System;
using System.Text;
using System.Collections.Generic;
using System.Linq;
using Duality;
using Duality.IO;
using Duality.Resources;
using NUnit.Framework;
namespace Duality.Tests.Resources
{
[TestFixture]
public class ContentProviderTest
{
[Test] public void AddRemoveContent()
{
Pixmap resour... | {
"content_hash": "f306f38f0a8e815175d58e264dab71d2",
"timestamp": "",
"source": "github",
"line_count": 237,
"max_line_length": 112,
"avg_line_length": 44.924050632911396,
"alnum_prop": 0.7638771484925331,
"repo_name": "AdamsLair/duality",
"id": "7b6e11e2f489c177810b55bbc90ab03257ee4aaa",
"size": "... |
from os.path import expanduser, isfile
from typing import Dict, Iterator, Union
from yaml import safe_load_all, dump
class Configuration:
def __init__(self, path: str = ''):
self.settings: Dict[str, str] = {}
self.path = expanduser(path)
if self.exists():
input_file = open(sel... | {
"content_hash": "570359fda75b84c8a1f1e613303475cf",
"timestamp": "",
"source": "github",
"line_count": 60,
"max_line_length": 75,
"avg_line_length": 26.6,
"alnum_prop": 0.5639097744360902,
"repo_name": "FunTimeCoding/python-utility",
"id": "95b1ed01c9a336a614e1f96eeb9dc5b2fb149745",
"size": "1596"... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.