text
stringlengths
2
1.04M
meta
dict
namespace FluentBuilders.Core { /// <summary> /// Simple interface for a builder factory. /// </summary> public interface IBuilderFactory { T Create<T>() where T : IBuilder; } }
{ "content_hash": "f7cbba76991424554f1885d5ab62a3ba", "timestamp": "", "source": "github", "line_count": 10, "max_line_length": 47, "avg_line_length": 21.1, "alnum_prop": 0.5971563981042654, "repo_name": "peter-raven/FluentBuilders", "id": "dcc08e9aa16a1aaaabf9289f1c5450a7e8f57d2e", "size": "213", ...
#include <ctype.h> #include <stdarg.h> #include <stdlib.h> #include <string.h> #include "lkc.h" static const char nohelp_text[] = "There is no help available for this option."; struct menu rootmenu; static struct menu **last_entry_ptr; struct file *file_list; struct file *current_file; void menu_warn(struct menu...
{ "content_hash": "547893d0d9c63a1db853e19f7a18692e", "timestamp": "", "source": "github", "line_count": 691, "max_line_length": 102, "avg_line_length": 24.6917510853835, "alnum_prop": 0.6142890634157777, "repo_name": "TechV/DroneOS", "id": "db1512ae30cc48d6f2ea87bc26a082a084551811", "size": "17176"...
from __future__ import unicode_literals from django.db import migrations, models def load_data(apps, schema_editor): AccountType = apps.get_model("profiles", "AccountType") AccountType.objects.get_or_create( name="GITHUB", display_name="Github", social_auth_provider_name="github", ...
{ "content_hash": "93e7e0ebf7e56fcd498f45fd7d23a47c", "timestamp": "", "source": "github", "line_count": 34, "max_line_length": 86, "avg_line_length": 28.38235294117647, "alnum_prop": 0.6435233160621762, "repo_name": "noisy/steemprojects.com", "id": "0e9362c775464cf324fe4b2876dca0d70f3d40d6", "size"...
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Coq bench</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css" rel="stylesheet...
{ "content_hash": "2e8c4f869febeaabd8e1d3fe4fb3ae6c", "timestamp": "", "source": "github", "line_count": 143, "max_line_length": 157, "avg_line_length": 44.04895104895105, "alnum_prop": 0.5019844419749167, "repo_name": "coq-bench/coq-bench.github.io-old", "id": "b68d3527f2669b80e439d839962a4beeff78344...
require 'unicode_normalize/tables.rb' module UnicodeNormalize ## Constant for max hash capacity to avoid DoS attack MAX_HASH_LENGTH = 18000 # enough for all test cases, otherwise tests get slow ## Regular Expressions and Hash Constants REGEXP_D = Regexp.compile(REGEXP_D_STRING, Regexp::EXTENDED) REGEXP_C =...
{ "content_hash": "fa11a40da6b8c685bdfba44783c5770d", "timestamp": "", "source": "github", "line_count": 156, "max_line_length": 102, "avg_line_length": 33.11538461538461, "alnum_prop": 0.6227255129694154, "repo_name": "rhomobile/rhodes", "id": "8f0e8a20d1180154651ef8f3e7309271765ed99c", "size": "52...
package com.googlecode.jstdmavenplugin; public interface ProcessExecutor { String execute(ProcessConfiguration config); }
{ "content_hash": "7a99ff4ccdc44bc826e9816b9128486c", "timestamp": "", "source": "github", "line_count": 7, "max_line_length": 48, "avg_line_length": 18.285714285714285, "alnum_prop": 0.8125, "repo_name": "wavesoftware/jstd-maven-plugin", "id": "7abc8ddeeeb3f278b00b5300bc6fcc63f63a88c0", "size": "19...
package jp77.beta.utillib; public class Queue<T> { protected Node _First = null; protected Node _Last = null; protected int _Length = 0; public Queue() {} public Queue(T initial) { push(initial); } public void push(T i) { final Node TEMP = new Node(); TEMP._Value = i; if(_Last == null) { _Firs...
{ "content_hash": "cd7e36c6f66cc8427fce16f6d42d88de", "timestamp": "", "source": "github", "line_count": 61, "max_line_length": 31, "avg_line_length": 13.62295081967213, "alnum_prop": 0.5812274368231047, "repo_name": "J-P-77/utilities", "id": "eabf1ffc54249a859659863eaa350dba6aa19605", "size": "1982...
SYNONYM #### According to The Catalogue of Life, 3rd January 2011 #### Published in null #### Original name Ectrogella eunotiae Friedmann, 1952 ### Remarks null
{ "content_hash": "3ee94f0b943de4d087efc53492fb15cb", "timestamp": "", "source": "github", "line_count": 13, "max_line_length": 39, "avg_line_length": 12.615384615384615, "alnum_prop": 0.725609756097561, "repo_name": "mdoering/backbone", "id": "8b3ec53d986ba003b3c75a95783a659b7a301c9f", "size": "223...
package com.github.dozermapper.core.functional_tests; import java.util.HashMap; import java.util.List; import java.util.Map; import org.junit.Before; import org.junit.Test; import static org.hamcrest.CoreMatchers.equalTo; import static org.junit.Assert.assertThat; public class UntypedCollectionTest extends Abstrac...
{ "content_hash": "ce2a1a04b971b8474180fb64b9935265", "timestamp": "", "source": "github", "line_count": 77, "max_line_length": 71, "avg_line_length": 23.68831168831169, "alnum_prop": 0.5729166666666666, "repo_name": "garethahealy/dozer", "id": "43769a10269803c612dfce762cea953adbdb83f9", "size": "24...
#include "cyPm.h" #include "CyLib.h" /******************************************************************************* * Function Name: CySysPmSleep ******************************************************************************** * * Summary: * Puts the part into the Sleep state. This is a CPU-centric power mode. *...
{ "content_hash": "c063817b7315a0f7898407e769c2bc19", "timestamp": "", "source": "github", "line_count": 455, "max_line_length": 116, "avg_line_length": 37.23296703296703, "alnum_prop": 0.5522696416976566, "repo_name": "jrgdre/1Wire_3LED_PWM", "id": "7b3aa98d2c544f6a545655ae33cf970752a91880", "size"...
{% load prefixed_i18n admin_urls admin_static admin_modify %} {% set_i18n_prefix 'mtr.sync' %} <div class="inline-group" id="{{ inline_admin_formset.formset.prefix }}-group"> <div class="tabular inline-related {% if forloop.last %}last-related{% endif %}"> {{ inline_admin_formset.formset.management_form }} <fieldset ...
{ "content_hash": "1c7197c3a6dc73656bf4dc43648f820d", "timestamp": "", "source": "github", "line_count": 85, "max_line_length": 951, "avg_line_length": 60.64705882352941, "alnum_prop": 0.5800193986420951, "repo_name": "mtrgroup/django-mtr-sync", "id": "89dc832697f66f11f22da5fbea54939f6d21b5be", "siz...
@ECHO OFF SET mypath=%~dp0 SET casper=%mypath%lib\casperjs\bin SET phantom=%mypath%lib\phantomjs\bin REM echo %mypath% REM echo %casper% REM echo %phantom% SET PATH=%PATH%;%casper%;%phantom% cls echo %TIME% echo === RUN === echo( casperjs index.js echo( echo === END === echo %TIME%
{ "content_hash": "c448facd26cc946df3eb61f1d69e3f8c", "timestamp": "", "source": "github", "line_count": 20, "max_line_length": 37, "avg_line_length": 15.25, "alnum_prop": 0.6524590163934426, "repo_name": "cloverink/farm", "id": "3e10d0c1c07819e41f1befe8cbe55f6db1300ffa", "size": "305", "binary": ...
layout: post title: Powershell equivalents of Unix commands date: 2015-07-08 summary: categories: [powershell, unix] --- Windows happens. So do text files. Sometimes, they happen together. (Put `Cygwin` down.) ### Encodings Powershell, like the rest of Windows, thinks in UTF-16. One charming con...
{ "content_hash": "29001e839aa74446c2ccee31c045c9b5", "timestamp": "", "source": "github", "line_count": 124, "max_line_length": 288, "avg_line_length": 22.330645161290324, "alnum_prop": 0.6699169375225713, "repo_name": "asnr/asnr.github.io", "id": "f773dc0cc721fa6ebc767e6f289d50fb5f0f1279", "size":...
name: Feature request about: Suggest an idea for this project --- **Is your feature request related to a problem? Please describe.** <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> **Describe the solution you'd like** <!-- A clear and concise description of what...
{ "content_hash": "87590e9bd3c617adc92c1fc75f7b0768", "timestamp": "", "source": "github", "line_count": 17, "max_line_length": 101, "avg_line_length": 34.88235294117647, "alnum_prop": 0.7268128161888702, "repo_name": "prescottprue/generator-react-firebase", "id": "fdd12f306e3f8ccca14aef7f52b24236b053...
package org.apache.batik.gvt; import java.awt.Graphics2D; import java.awt.Shape; import java.awt.geom.Area; import java.awt.geom.Point2D; import java.awt.geom.Rectangle2D; /** * A shape painter which consists of multiple shape painters. * * @author <a href="mailto:Thierry.Kormann@sophia.inria.fr">Thierry Kormann<...
{ "content_hash": "384ea70d72013238cd20c42fdfaa0a1e", "timestamp": "", "source": "github", "line_count": 233, "max_line_length": 81, "avg_line_length": 27.56223175965665, "alnum_prop": 0.5468701339146683, "repo_name": "ggeorg/WebXView", "id": "b22f9b516dfe1b2372a65189806839f3bed1e5af", "size": "7221...
<?xml version="1.0"?> <root> <metadata> <gencode>11</gencode> <genomes> <genome>/tmp/tmplFZ5li/files/000/dataset_14.dat</genome> </genomes> <general> <defaultLocation></defaultLocation> <trackPadding>20</trackPadding> <shareLink>...
{ "content_hash": "43184083a4ca98e7ff391809b344442c", "timestamp": "", "source": "github", "line_count": 50, "max_line_length": 99, "avg_line_length": 33.26, "alnum_prop": 0.46422128683102826, "repo_name": "blankclemens/tools-iuc", "id": "930b55afab632cb48ba3d410a69fb09dc8062008", "size": "1663", ...
package org.apache.hadoop.fs.viewfs; import java.io.DataOutputStream; import java.io.IOException; import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.fs.FileSystem; import org.apache.hadoop.fs.FileSystemTestHelper; import org.apache.hadoop.fs.FsConstants; import org.apache.hadoop.fs.LocalFileSystem;...
{ "content_hash": "8931a65fd195c1f23bddb89e41f59736", "timestamp": "", "source": "github", "line_count": 94, "max_line_length": 121, "avg_line_length": 41.287234042553195, "alnum_prop": 0.7562483895903118, "repo_name": "wwjiang007/hadoop", "id": "06cbdab8d210f454367d8921766caea283864808", "size": "4...
package com.asakusafw.lang.compiler.analyzer.model; import java.lang.reflect.AnnotatedElement; import java.util.Objects; import com.asakusafw.lang.compiler.model.graph.Operator; import com.asakusafw.lang.compiler.model.graph.Operator.OperatorKind; /** * Represents origin of operators. * @since 0.3.0 */ public cl...
{ "content_hash": "410508daeacdd9109226193e87bbc979", "timestamp": "", "source": "github", "line_count": 47, "max_line_length": 79, "avg_line_length": 24.76595744680851, "alnum_prop": 0.6881443298969072, "repo_name": "akirakw/asakusafw-compiler", "id": "3e2a4b2b6a39e70fdfc5339d027658425cf8f060", "si...
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2015.01....
{ "content_hash": "01f405cf1e6bf49d5c0e5fc6942d3413", "timestamp": "", "source": "github", "line_count": 71, "max_line_length": 122, "avg_line_length": 26.43661971830986, "alnum_prop": 0.6563665423548215, "repo_name": "lewismc/akomantoso-lib", "id": "4ff798e7c18fdafe97d34dbdbd30e94c8222c0d2", "size"...
let Statment = require('../base').Statment; let events = require('../../events'); let RuntimeError = require('../../../basics/errors').RuntimeError; module.exports = Statment.extend('ACTION','UPDATE', { }, { $init(target, context){ this.target = target; this.context = context; }, async exec(eenv){ let statme...
{ "content_hash": "4a8f5af1055aa65d0b5c03840fb7dde1", "timestamp": "", "source": "github", "line_count": 30, "max_line_length": 66, "avg_line_length": 22.233333333333334, "alnum_prop": 0.6326836581709145, "repo_name": "onzag/NotionScript", "id": "621527f53a8c6d8ad9db861af10b130f7ee7e9c7", "size": "6...
title: "Class 10: Atomic Design and HTML Wireframing" date: 2016-11-01 12:00:00 description: "We'll also talk about wireframing templates with HTML, how the atomic design methodology helps create more consistent web design systems and work on your next project assignment in class. <i>Special Guest - ipsoCreative</i>" ...
{ "content_hash": "0718304878d4d6b90ff57ff1119a497b", "timestamp": "", "source": "github", "line_count": 13, "max_line_length": 403, "avg_line_length": 83.3076923076923, "alnum_prop": 0.7423822714681441, "repo_name": "KentStateWeb/rwd", "id": "532b2395f21b6f8cf0a7e788b242b6a53ed17e65", "size": "1087...
@interface SparklerGenericVersionComparatorTest : SenTestCase { } - (void)testGenericVersionComparison; - (void)testRevisionNumberComparison; - (void)testPreReleaseVersionComparison; @end
{ "content_hash": "2e5f127306266850bb3d3262e7189c86", "timestamp": "", "source": "github", "line_count": 11, "max_line_length": 63, "avg_line_length": 17.90909090909091, "alnum_prop": 0.8020304568527918, "repo_name": "eczarny/sparkler", "id": "6c43bb5eb4ef0647cd54714ec3f27f06e532f315", "size": "238"...
package com.mindoo.domino.jna.richtext.conversion; import java.util.HashMap; import java.util.Map; import java.util.Map.Entry; import java.util.regex.Matcher; import java.util.regex.Pattern; /** * Simple subclass of {@link AbstractMailMergeConversion} that uses a from/to * map to find/replace matches * * @author...
{ "content_hash": "d7b8b26fe478dab8a181f5f3c3856290", "timestamp": "", "source": "github", "line_count": 75, "max_line_length": 128, "avg_line_length": 26.506666666666668, "alnum_prop": 0.7243460764587525, "repo_name": "klehmann/domino-jna", "id": "0d2b25673a79d0e0227ade588665e538322a284c", "size": ...
package org.knowm.xchange.examples.bleutrade.account; import java.io.IOException; import org.knowm.xchange.Exchange; import org.knowm.xchange.bleutrade.service.BleutradeAccountServiceRaw; import org.knowm.xchange.currency.Currency; import org.knowm.xchange.examples.bleutrade.BleutradeDemoUtils; import org.knowm.xchan...
{ "content_hash": "26f23ced2093d44835001651d2d0d03d", "timestamp": "", "source": "github", "line_count": 35, "max_line_length": 103, "avg_line_length": 32.91428571428571, "alnum_prop": 0.7977430555555556, "repo_name": "jheusser/XChange", "id": "9f7626c8bbed67142a44beb57907e92246675482", "size": "115...
package com.cardpay.pccredit.report.service; import java.math.BigDecimal; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Date; import java.util.HashMap; import java.util.Iterator; import java.util.List; import org.apache.commons.lang.StringUtils; import org.apache.log4j.Logg...
{ "content_hash": "a3e120cb8c29c53c0b78d3f68b5d0f63", "timestamp": "", "source": "github", "line_count": 132, "max_line_length": 155, "avg_line_length": 46.34848484848485, "alnum_prop": 0.743543641712978, "repo_name": "wangxu2013/PCCREDIT", "id": "6cc1244dd9c2012e42e2fefd8b22cea8aafc600a", "size": "...
<?php defined('BASEPATH') OR exit('No direct script access allowed'); $lang['db_invalid_connection_str'] = 'Unable to determine the database settings based on the connection string you submitted.'; $lang['db_unable_to_connect'] = 'Unable to connect to your database server using the provided settings.'; $lang['db_unab...
{ "content_hash": "5e71e24396be7c6f7e380eb9813c502b", "timestamp": "", "source": "github", "line_count": 28, "max_line_length": 127, "avg_line_length": 80.57142857142857, "alnum_prop": 0.7291666666666666, "repo_name": "flagholder/php_ci_test", "id": "b9da89b14d15699f0fe29ef0221ece44404729f0", "size"...
using namespace uth; Engine::Engine() : m_running(false) { } bool Engine::Init(const uth::WindowSettings &wsettings) { m_wsettings = wsettings; return initialize(); } void Engine::Update() { const float deltaTime = static_cast<float>(m_timer.DeltaTime()); uthInput.Update(deltaTime); uthSceneM.Update(deltaTi...
{ "content_hash": "7de300a774bb3398779dabe4e4b9c603", "timestamp": "", "source": "github", "line_count": 80, "max_line_length": 83, "avg_line_length": 17.4875, "alnum_prop": 0.6854896354538956, "repo_name": "Team-Innis/UtH-Engine", "id": "925054f8b00d6f6ce942e165ecbf9c3da98ae361", "size": "1545", ...
""" Python Interchangeable Virtual Instrument Library Copyright (c) 2016 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the righ...
{ "content_hash": "d01ea40720a1dcb2fa15d06f722478ad", "timestamp": "", "source": "github", "line_count": 42, "max_line_length": 86, "avg_line_length": 39.19047619047619, "alnum_prop": 0.7545565006075334, "repo_name": "Diti24/python-ivi", "id": "13904508d6be7e8e0af2d6c949d5824e776dfef7", "size": "164...
<!-- Main jumbotron for a primary marketing message or call to action --> <div class="jumbotron"> <div class="container"> <h2>Detalle de la competencia</h2> </div> </div> <div class="container"> <div class="row" align="center"> <a href="<?= base_url('administrar_indicadores');?>">&laquo;Regresar</a> <di...
{ "content_hash": "f74667fd2265d60f768559cbaf1ed853", "timestamp": "", "source": "github", "line_count": 250, "max_line_length": 117, "avg_line_length": 36.744, "alnum_prop": 0.5869801872414544, "repo_name": "jesusadvanzer/advanzer", "id": "5b93cb096d11cbfade53d59f5b55fc4388243066", "size": "9189", ...
from threading import Event import os from sys import exc_info import netrc import errno from offlineimap.repository.Base import BaseRepository from offlineimap import folder, imaputil, imapserver, OfflineImapError from offlineimap.folder.UIDMaps import MappedIMAPFolder from offlineimap.threadutil import ExitNotifyThr...
{ "content_hash": "040af6d6c6a9390032265b72b35c5b7b", "timestamp": "", "source": "github", "line_count": 462, "max_line_length": 95, "avg_line_length": 38.18614718614719, "alnum_prop": 0.593583493934928, "repo_name": "frioux/offlineimap", "id": "60d5a08f666eb345e6dcf63ca2d340f19c23c528", "size": "18...
package org.brackit.server.store.index.bracket; import org.brackit.server.node.DocID; import org.brackit.server.node.XTCdeweyID; import org.brackit.server.store.SearchMode; /** * @author Martin Hiller * */ public enum NavigationMode { NEXT_SIBLING(SearchMode.GREATEST_HAVING_PREFIX) { @Override ...
{ "content_hash": "3aefea1c2e47fa23e9a091f7b6c337e3", "timestamp": "", "source": "github", "line_count": 179, "max_line_length": 113, "avg_line_length": 24.75977653631285, "alnum_prop": 0.7157039711191335, "repo_name": "x-clone/brackit.brackitdb", "id": "42cabd7a165fbc1810cf96cc6216f477368f9ee8", "s...
<?php /** * Abstract class for extension */ require_once 'Zend/View/Helper/FormElement.php'; /** * Helper to generate a set of radio button elements * * @category Zend * @package Zend_View * @subpackage Helper * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @l...
{ "content_hash": "aec70fa9651e6027454432c75927924a", "timestamp": "", "source": "github", "line_count": 168, "max_line_length": 87, "avg_line_length": 32.55952380952381, "alnum_prop": 0.4753199268738574, "repo_name": "weierophinney/zf1", "id": "941324258e4c724187d8d495de7199d543d38f7d", "size": "61...
module RSpec module Mocks module ArgumentMatchers RSpec.describe ArrayIncludingMatcher do it "describes itself properly" do expect(ArrayIncludingMatcher.new([1, 2, 3]).description).to eq "array_including(1, 2, 3)" end it "describes passed matchers" do description...
{ "content_hash": "ea2b1bccff32313ac260caaac76ccc62", "timestamp": "", "source": "github", "line_count": 73, "max_line_length": 99, "avg_line_length": 36.41095890410959, "alnum_prop": 0.5485327313769752, "repo_name": "rspec/rspec-mocks", "id": "219250ff9389c813469cb7b1352f5eaadbf20d60", "size": "265...
function test_dimmer_settings() { $.fn.dimmer.settings.error.method = 'method'; $.fn.dimmer.settings.namespace = 'namespace'; $.fn.dimmer.settings.name = 'name'; $.fn.dimmer.settings.silent = false; $.fn.dimmer.settings.debug = true; $.fn.dimmer.settings.performance = true; $.fn.dimmer.setti...
{ "content_hash": "80430d086d8d81dc27fb39a2655d953e", "timestamp": "", "source": "github", "line_count": 99, "max_line_length": 64, "avg_line_length": 30.505050505050505, "alnum_prop": 0.4867549668874172, "repo_name": "GiedriusGrabauskas/DefinitelyTyped", "id": "68aa418a7d54b928c1ca8179548a6a02ae0b470...
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>amm11262: Not compatible 👼</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.cs...
{ "content_hash": "c0e8d715b62ec0f8dc3b74c076aa6e12", "timestamp": "", "source": "github", "line_count": 165, "max_line_length": 159, "avg_line_length": 41.86060606060606, "alnum_prop": 0.5400318517446069, "repo_name": "coq-bench/coq-bench.github.io", "id": "fbb33b04f3f74eb39374e38e2160821d0e24de81", ...
namespace T8to10Matrix { using System; using System.Text; using System.Linq; public class Matrix<T> where T : IComparable { private int rows; private int cols; private T[,] matrix; public Matrix(int rowCount, int colCount) { this.Rows = rowCou...
{ "content_hash": "584edb340295553f8ff10dd6d04265c8", "timestamp": "", "source": "github", "line_count": 157, "max_line_length": 120, "avg_line_length": 31.70700636942675, "alnum_prop": 0.4085978304539976, "repo_name": "studware/Ange-Git", "id": "d0687f3102928fe6f81e37937c066f82f075f5b7", "size": "4...
:: this script starts a las2peer node providing the example service of this project :: pls execute it from the bin folder of your deployment by double-clicking on it cd .. set BASE=%CD% set CLASSPATH="%BASE%/lib/*;" java -cp %CLASSPATH% i5.las2peer.tools.L2pNodeLauncher -w -p 9011 uploadStartupDirectory('etc/startup'...
{ "content_hash": "d338852f8298ec97dccfc4c526da2604", "timestamp": "", "source": "github", "line_count": 9, "max_line_length": 227, "avg_line_length": 50.22222222222222, "alnum_prop": 0.7964601769911505, "repo_name": "rwth-acis/LAS2peer-IdGeneratingService", "id": "d8fb1d39ecc219cb71d4c0672f9b35276cf0...
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_m...
{ "content_hash": "6e42afcfbce561be9347ad046777ea7a", "timestamp": "", "source": "github", "line_count": 16, "max_line_length": 74, "avg_line_length": 40.8125, "alnum_prop": 0.7289433384379785, "repo_name": "adrianosepe/dev-android-02-13", "id": "7b07fc548901b0a761c57a80c7254ea0a84d39db", "size": "6...
Cornell CSRVL Cornell Robotics and Vision Laboratory Welcome to the Web niche of the Cornell Robotics and Vision Laboratory. cp: No match. match. rrently under development; please don your hard hat. Questions and comments should be directed to mdw@cs.cornell.edu. Thanks. About the CSRVL The Cornell Computer S...
{ "content_hash": "fad461e8c5fe9df2f0f7635ab7fd13e1", "timestamp": "", "source": "github", "line_count": 184, "max_line_length": 79, "avg_line_length": 23.97826086956522, "alnum_prop": 0.7669990933816863, "repo_name": "ML-SWAT/Web2KnowledgeBase", "id": "bab811306dee689c390cbf6dc560b1b210785184", "si...
import './LayoutHeader.scss' import { VNode } from 'vue' import { defineComponent, ref } from '@vue/composition-api' import { typeUI, typeTheme } from '../mixin' import Row from '@vue2do/component/module/Row' import Col from '@vue2do/component/module/Col' import Icon from '@vue2do/component/module/Icon' import Inp...
{ "content_hash": "9832ba4c2da604d04524f542aed2ad4c", "timestamp": "", "source": "github", "line_count": 102, "max_line_length": 67, "avg_line_length": 28.794117647058822, "alnum_prop": 0.4902962206332993, "repo_name": "zen0822/vue2do", "id": "4fbfc16f9d18ba453d05a14f276378b6134c7a17", "size": "2961...
ACCEPTED #### According to International Plant Names Index #### Published in null #### Original name null ### Remarks null
{ "content_hash": "69aa97da141100877428947801f24042", "timestamp": "", "source": "github", "line_count": 13, "max_line_length": 31, "avg_line_length": 9.692307692307692, "alnum_prop": 0.7063492063492064, "repo_name": "mdoering/backbone", "id": "e4707df3d7fb98254da65a544577a377dd9e9878", "size": "174...
 #include <aws/backup/model/BackupRule.h> #include <aws/core/utils/json/JsonSerializer.h> #include <utility> using namespace Aws::Utils::Json; using namespace Aws::Utils; namespace Aws { namespace Backup { namespace Model { BackupRule::BackupRule() : m_ruleNameHasBeenSet(false), m_targetBackupVaultNameHa...
{ "content_hash": "543124fe7bfe873b3e8274daad1d8fd9", "timestamp": "", "source": "github", "line_count": 196, "max_line_length": 120, "avg_line_length": 24.147959183673468, "alnum_prop": 0.7377984365096133, "repo_name": "jt70471/aws-sdk-cpp", "id": "8df1c72b6d5cbb1f05fd0fe0f446ed340bf31765", "size":...
<?php namespace My; use Exception; class Route{ public static $routeList=[ ]; public static function add( $routeString , $handle = '' ):RouteInstance { if( $routeString instanceof RouteInstance ) { $route = $routeString; }elseif(is_string( $routeString )){ $route = new RouteInstance($r...
{ "content_hash": "4a93643ad64b250f5d15bd9fc8b07ae9", "timestamp": "", "source": "github", "line_count": 71, "max_line_length": 77, "avg_line_length": 21.6056338028169, "alnum_prop": 0.6284224250325945, "repo_name": "fearlessforever/ci-laravel", "id": "cd12650d593d912089eb7d10ae12d0da48ecbdc8", "siz...
BSLS_IDENT_RCSID(bdlcc_queue_cpp,"$Id$ $CSID$") // ---------------------------------------------------------------------------- // Copyright 2015 Bloomberg Finance L.P. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may o...
{ "content_hash": "661378ac98c3873a021abd7770492826", "timestamp": "", "source": "github", "line_count": 17, "max_line_length": 79, "avg_line_length": 47.529411764705884, "alnum_prop": 0.6051980198019802, "repo_name": "idispatch/bde", "id": "ab59f50e131527345d60079fe1d8064e0c584f85", "size": "1279",...
namespace boost { namespace mpl { namespace aux { struct set_tag; }}} #endif // BOOST_MPL_SET_AUX_TAG_HPP_INCLUDED
{ "content_hash": "d8931b9abacaaeef346873323e848b55", "timestamp": "", "source": "github", "line_count": 7, "max_line_length": 49, "avg_line_length": 16.857142857142858, "alnum_prop": 0.7033898305084746, "repo_name": "Ezeer/VegaStrike_win32FR", "id": "3ad3d4837f0d99d42dfeb9704733fe0bd8afbf8e", "size...
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>elpi: Not compatible 👼</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css" r...
{ "content_hash": "1969465cc683a40dfc330e0873a2e458", "timestamp": "", "source": "github", "line_count": 176, "max_line_length": 159, "avg_line_length": 43.51704545454545, "alnum_prop": 0.5550332941637289, "repo_name": "coq-bench/coq-bench.github.io", "id": "b41ac3b5f3b84f12ba73d20a68f63f865776edff", ...
require 'rspec/its' require 'collection_of' class Widget attr_accessor :name def initialize(name = nil) @name = name end end class Wadget attr_accessor :name def initialize @name = yield if block_given? end end class SubWidget < Widget; end describe Collection do let(:w) { Widget.new } de...
{ "content_hash": "48553853918ebc1704c938b0c0cbe72f", "timestamp": "", "source": "github", "line_count": 273, "max_line_length": 96, "avg_line_length": 26.78021978021978, "alnum_prop": 0.5940363835316647, "repo_name": "dvandersluis/collection_of", "id": "1406e2e76c207eeb1a729a314fbc496db4052272", "s...
var app = angular.module("phoneApp",[]); var phoneAppStuff = {}; phoneAppStuff.controllers = {}; phoneAppStuff.controllers.AppCtrl = function($scope) { this.sayHi = function() { alert("Hi!!"); } return $scope.AppCtrl = this; }; phoneAppStuff.directives = {}; phoneAppStuff.directives.panel = function() { retur...
{ "content_hash": "55e20e57152bdb55c1212ca36f70e6da", "timestamp": "", "source": "github", "line_count": 23, "max_line_length": 54, "avg_line_length": 18.73913043478261, "alnum_prop": 0.703016241299304, "repo_name": "mloayzagahona/egg", "id": "c67365d3eba7fdb9de4f2a62af53b7a1b6f054a1", "size": "431"...
#ifndef VPX_VP9_ENCODER_VP9_ENCODEMB_H_ #define VPX_VP9_ENCODER_VP9_ENCODEMB_H_ #include "./vpx_config.h" #include "vp9/encoder/vp9_block.h" #ifdef __cplusplus extern "C" { #endif struct encode_b_args { MACROBLOCK *x; int enable_coeff_opt; ENTROPY_CONTEXT *ta; ENTROPY_CONTEXT *tl; int8_t *skip; #if CONFI...
{ "content_hash": "8ba02fe63a9b19461e4109e4a079c068", "timestamp": "", "source": "github", "line_count": 49, "max_line_length": 80, "avg_line_length": 31.632653061224488, "alnum_prop": 0.6425806451612903, "repo_name": "ShiftMediaProject/libvpx", "id": "1975ee73acd4bff627aacecc3fdc1a2e3fda0748", "siz...
@import SBObjectiveCWrapper; @implementation ZNGLabelGridView { UIImage * xImage; UIColor * moreButtonColor; CGSize totalSize; ZNGDashedBorderLabel * addLabelView; NSArray<ZNGDashedBorderLabel *> * labelViews; UILabel * moreLabel; } #pragma mark - Initialization - (id) initWithCoder:...
{ "content_hash": "6267754979bcbe607c627ab087d082f0", "timestamp": "", "source": "github", "line_count": 463, "max_line_length": 197, "avg_line_length": 36.31317494600432, "alnum_prop": 0.6446202343424731, "repo_name": "Zingle/ios-sdk", "id": "0a11363667c785d141155868bb84bc22bcb85769", "size": "1706...
package org.jabref.gui.maintable.columns; import java.io.IOException; import java.util.Map; import javafx.scene.Node; import javafx.scene.control.ContextMenu; import javafx.scene.control.MenuItem; import javafx.scene.control.Tooltip; import javafx.scene.input.MouseButton; import org.jabref.gui.DialogService; import ...
{ "content_hash": "b737cb193634e26f9b254b39ec34abce", "timestamp": "", "source": "github", "line_count": 112, "max_line_length": 137, "avg_line_length": 42.142857142857146, "alnum_prop": 0.6616525423728814, "repo_name": "sauliusg/jabref", "id": "7b51e516723111de24cb2d0b42bee7a2a2d7fa71", "size": "47...
#ifndef __itkFEMLoadEdge_h #define __itkFEMLoadEdge_h #include "itkFEMLoadElementBase.h" #include "vnl/vnl_matrix.h" namespace itk { namespace fem { /** * \class LoadEdge * \brief A generic load that can be applied to an edge of the element. * * Can also be used to apply natural (Neumann) boundary condition on ...
{ "content_hash": "226eea21e110713809a58081120c9354", "timestamp": "", "source": "github", "line_count": 67, "max_line_length": 76, "avg_line_length": 32.014925373134325, "alnum_prop": 0.7123543123543123, "repo_name": "daviddoria/itkHoughTransform", "id": "834100b054747c0c5bafab7e56955c0c142cfe26", ...
// // WSAdapter.m // // Created by Csaba Tűz on 2014.02.22.. // Copyright (c) 2014 All rights reserved. // #import <SystemConfiguration/SystemConfiguration.h> #import "WebServiceAdapter.h" #import "WebServiceAdapter_internal.h" #import "BaseWebServiceResource.h" #import "LanguageManager.h" static AFNetworkReachab...
{ "content_hash": "7a7ef5ccaaea57d5dfa7eee418a5eac0", "timestamp": "", "source": "github", "line_count": 183, "max_line_length": 145, "avg_line_length": 33.16393442622951, "alnum_prop": 0.6683143845773604, "repo_name": "supersabbath/tmp", "id": "537144fe422ccf9be5cc4fb3b334cbb11d1e2353", "size": "60...
package builder import ( "fmt" "os" "path/filepath" "github.com/hyperhq/hyper/lib/docker/daemon" "github.com/hyperhq/hyper/lib/docker/pkg/stringid" "github.com/hyperhq/hyper/lib/docker/runconfig" "github.com/hyperhq/hyper/utils" "github.com/hyperhq/runv/lib/glog" ) func fixPermissions(source, destination str...
{ "content_hash": "e5ae92aa7f7e8504d0e1dc169c322ce5", "timestamp": "", "source": "github", "line_count": 93, "max_line_length": 88, "avg_line_length": 28.516129032258064, "alnum_prop": 0.6866515837104072, "repo_name": "WIZARD-CXY/hyper", "id": "d4462c360ccb09a647aeb96134f1c94d7475e588", "size": "265...
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Mvc; using Aspose.ThreeD; using Aspose.App.Api.Services; using System.Runtime.Serialization; using System.IO; using System.Diagnostics; using System.Security.Permissions; using Aspose.App.Api.Uti...
{ "content_hash": "094416831bb2f58dc5ddc8fbd66da060", "timestamp": "", "source": "github", "line_count": 187, "max_line_length": 89, "avg_line_length": 33.8235294117647, "alnum_prop": 0.5772332015810276, "repo_name": "aspose-3d/Aspose.3D-for-.NET", "id": "0d915016bf4656caac8b2a24a0a36b7714bd2d5a", "...
package org.apache.catalina.ssi; import java.io.IOException; import java.io.OutputStreamWriter; import java.io.PrintWriter; import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.Locale; import java.util.TimeZone; import javax.servlet.ServletContext; import javax.servlet.Servl...
{ "content_hash": "4ebb4b240afa4e00d49b9d5e9bbd2950", "timestamp": "", "source": "github", "line_count": 237, "max_line_length": 81, "avg_line_length": 32.36286919831224, "alnum_prop": 0.5986962190352021, "repo_name": "wenzhucjy/tomcat_source", "id": "ca850f7ea652d215836c70710b5fb56775e5aeac", "size...
package com.oracle.ptsdemo.healthcare.view.bean; import java.util.Date; public class MedicationReport { private String id; private Date startDate; private Date endDate; private String name; public MedicationReport(String id, Date startDate, Date endDate, String name) { this.id = ...
{ "content_hash": "bad7aac706ee49cd1a55669d3c911a2e", "timestamp": "", "source": "github", "line_count": 55, "max_line_length": 83, "avg_line_length": 20.509090909090908, "alnum_prop": 0.6037234042553191, "repo_name": "dushmis/Oracle-Cloud", "id": "7be282f69e39d253b9aef5668fc4a7370127f4fa", "size": ...
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_27) on Wed Nov 21 16:03:56 EST 2012 --> <TITLE> Uses of Package org.pentaho.di.trans.steps.edi2xml </TITLE> <META NAME="date" CONTENT="2012-11-21"> ...
{ "content_hash": "0aeaab66edf72b7dc18f82ee701effa7", "timestamp": "", "source": "github", "line_count": 144, "max_line_length": 162, "avg_line_length": 39.548611111111114, "alnum_prop": 0.6073748902546093, "repo_name": "ColFusion/PentahoKettle", "id": "cdaedfba9d6696fd1225e20422261363a2df605d", "si...
/** *Backboen Model of the Test */ var Test = Backbone.Model.extend({ url: "", /* getQuestions: function(url){ this.url = url; this.fetch({ success: function(collection, response){ console.log("success"); } }); }, */ });
{ "content_hash": "464b53be3c818806e799710b309890db", "timestamp": "", "source": "github", "line_count": 22, "max_line_length": 43, "avg_line_length": 12.5, "alnum_prop": 0.52, "repo_name": "kakadu-group/kakadu", "id": "1e9581d05d7b88241b7d1c350121bf61a4b28d29", "size": "275", "binary": false, "...
package com.amazonaws.services.devopsguru.model.transform; import java.math.*; import javax.annotation.Generated; import com.amazonaws.services.devopsguru.model.*; import com.amazonaws.transform.SimpleTypeJsonUnmarshallers.*; import com.amazonaws.transform.*; import com.fasterxml.jackson.core.JsonToken; import sta...
{ "content_hash": "04c5fe6cd5644db04300dae1fdbf8187", "timestamp": "", "source": "github", "line_count": 63, "max_line_length": 160, "avg_line_length": 36.03174603174603, "alnum_prop": 0.6779735682819383, "repo_name": "aws/aws-sdk-java", "id": "91e4425bf08a386b2f2da63917a5600ed22c4e8a", "size": "285...
using System.ComponentModel; using System.Diagnostics; using System.Windows.Forms; using OpenLiveWriter.Localization.Bidi; namespace OpenLiveWriter.Controls { public class ToolTip2 : ToolTip { public ToolTip2(IContainer container) : base(container) { if (BidiHelper.IsRightToLeft) ...
{ "content_hash": "417dd5cc5f83b66739cfe54ebe8018ae", "timestamp": "", "source": "github", "line_count": 44, "max_line_length": 119, "avg_line_length": 27.454545454545453, "alnum_prop": 0.5579470198675497, "repo_name": "hashhar/OpenLiveWriter", "id": "d6ba66d39451199b2d1291b2908f0b20d31cd908", "size...
<?xml version="1.0"?> <!DOCTYPE sect2 SYSTEM "/src/Docs/DocBookManuals/docbookx.dtd"> <sect2> <sect2info><date>Monday, April 19, 2004 13:14:25</date> </sect2info> <title>System.SetGroupDeviceUserConnectionParameters</title> <para></para> <bridgehead renderas="sect3">Remarks</bridgehead> <para>...
{ "content_hash": "849e8eb4f736e5f13a5b8bef0d547f94", "timestamp": "", "source": "github", "line_count": 47, "max_line_length": 128, "avg_line_length": 55.46808510638298, "alnum_prop": 0.760644418872267, "repo_name": "n8allan/Dataphor", "id": "cf204903e809d12ee060450a33b04a88c5c2b160", "size": "2607...
RtlMtgCardBbCode ================ xenForo addon for M:TG-related custom BB Codes Installation ------------- - download the repository (or a tag) as a .zip (or tarball where available) - unpack locally and place the following things in your xenForo installation's library (via SCP or ftp, etc): - the contents of the...
{ "content_hash": "e08e5e0091da97ecc889cfbe56c3f0b7", "timestamp": "", "source": "github", "line_count": 41, "max_line_length": 153, "avg_line_length": 35.46341463414634, "alnum_prop": 0.7235213204951857, "repo_name": "riptidelab/RtlMtgCardBbCode", "id": "3fc403d65b58be9a3d17e0e0ac346d2ae68b1a8a", "...
var odsstrexConfig = { /* * rest: odsstres-rest endpoint URL. */ rest: "/odsstrex-rest", /* * readonly: if true, modifications/additions are disabled */ readonly: true };
{ "content_hash": "84a181fabb94d93d13be585b4546f1f7", "timestamp": "", "source": "github", "line_count": 14, "max_line_length": 62, "avg_line_length": 15.071428571428571, "alnum_prop": 0.5639810426540285, "repo_name": "carueda/odsstrex-ui", "id": "b9d38ad4690ebdcdc392fe58a25dafe3c0c7c402", "size": "...
Store your entreprise crt in this directory to make them available to any collector. Procedure: 1. Add your crt in this directory 2. Add a volume in your docker-compose.override.yml to mount the directory: ``` volumes: - ./certs:/certs ``` 3. Depending on the collector's environment, create a env variable ...
{ "content_hash": "f465dc50552176085c49c9e8414fcf73", "timestamp": "", "source": "github", "line_count": 11, "max_line_length": 112, "avg_line_length": 41, "alnum_prop": 0.7605321507760532, "repo_name": "tabladrum/Hygieia", "id": "8c0c51e8549f7cd52917d1a8cae2af706d72a8c7", "size": "481", "binary":...
#import "IDETestFailureBreakpoint.h" @class NSImage; @interface IDETestFailureBreakpoint (IDEBreakpointNavigatorSupport) - (BOOL)shouldEditNewBreakpoints; - (id)popUpEditorDisplayName; @property(readonly) NSImage *navigableItem_image; @end
{ "content_hash": "caf261f588cc0f79e45a7e408aa40e0c", "timestamp": "", "source": "github", "line_count": 12, "max_line_length": 67, "avg_line_length": 20.416666666666668, "alnum_prop": 0.8204081632653061, "repo_name": "liyong03/YLCleaner", "id": "b9b6c7e6297a750c845a2530cc937e2b65a317e2", "size": "3...
using System.Collections.Generic; namespace ZptSharp.Dom { /// <summary> /// Replaces the specified node with a collection of replacement nodes. /// </summary> public interface IReplacesNode { /// <summary> /// <para> /// Replace the specified node with a collection of repl...
{ "content_hash": "b567890d461c1007ab1e6190ed9904dd", "timestamp": "", "source": "github", "line_count": 23, "max_line_length": 113, "avg_line_length": 36.30434782608695, "alnum_prop": 0.6191616766467066, "repo_name": "csf-dev/ZPT-Sharp", "id": "e998d9c75446939729f6bd2b5bec2f26b1e31465", "size": "83...
// // HRTAppModule.h // HRTAppModule // // Created by Hirat on 15/11/4. // Copyright (c) 2015年 Hirat. All rights reserved. // #import <UIKit/UIKit.h> @protocol HRTAppModule <NSObject> @required /// 通过这个 NavigationController弹出子视图 @property (nonatomic, strong) UINavigationController* navigationController; /// 该模...
{ "content_hash": "3e27627873b7497266f6278471abb87a", "timestamp": "", "source": "github", "line_count": 49, "max_line_length": 76, "avg_line_length": 18.93877551020408, "alnum_prop": 0.7133620689655172, "repo_name": "hirat/HRTAppModule", "id": "45fca06fdd669b0e7417a90b63ac40331d8ba78e", "size": "10...
namespace Glyph3 { class PixelShaderDX11 : public ShaderDX11 { public: PixelShaderDX11( ID3D11PixelShader* pShader ); virtual ~PixelShaderDX11(); virtual ShaderType GetType(); protected: ID3D11PixelShader* m_pPixelShader; friend PixelStageDX11; }; }; //-----------------------------------------------...
{ "content_hash": "404b3733e61907cb86691fd050dfa979", "timestamp": "", "source": "github", "line_count": 20, "max_line_length": 82, "avg_line_length": 23.3, "alnum_prop": 0.47639484978540775, "repo_name": "MIFOZ/Hieroglyph3-mirror", "id": "47f160d67d847005e5f97dcfcbbee67ab73f6c7f", "size": "1367", ...
package com.intellij.util; import com.intellij.openapi.diagnostic.Logger; import com.intellij.openapi.util.Comparing; import com.intellij.openapi.util.Condition; import com.intellij.openapi.util.DifferenceFilter; import com.intellij.util.containers.ContainerUtil; import com.intellij.util.containers.JBIterable; import...
{ "content_hash": "2557837878ea3c3379265e26a2a2e89a", "timestamp": "", "source": "github", "line_count": 646, "max_line_length": 188, "avg_line_length": 33.188854489164086, "alnum_prop": 0.6541977611940298, "repo_name": "mdanielwork/intellij-community", "id": "0b003a33abf7313ba29b61b511307ea26d1f1bc3"...
using System; namespace Azure.Messaging.EventGrid.SystemEvents { internal static partial class MediaJobErrorCategoryExtensions { public static string ToSerialString(this MediaJobErrorCategory value) => value switch { MediaJobErrorCategory.Service => "Service", MediaJobEr...
{ "content_hash": "6e7402dc8f6d1847e529df961127f7af", "timestamp": "", "source": "github", "line_count": 18, "max_line_length": 116, "avg_line_length": 40.333333333333336, "alnum_prop": 0.6763085399449036, "repo_name": "Azure/azure-sdk-for-net", "id": "4194a07537fce8c9b252810f6d8e3b085d984283", "siz...
const util = require('util'); const cluster = require('cluster'); const events = require("events"); const logger = require(__dirname + '/logger'); const core = require(__dirname + '/core'); const lib = require(__dirname + '/lib'); const metrics = require(__dirname + '/metrics'); const Client = require(__dirname + "/ipc...
{ "content_hash": "2ef0ab038fc7db5d2172240a31deb825", "timestamp": "", "source": "github", "line_count": 949, "max_line_length": 511, "avg_line_length": 42.43097997892519, "alnum_prop": 0.629994784811384, "repo_name": "vseryakov/backendjs", "id": "f12829f043a38420c3621f81954fb6b1a607d51e", "size": "...
/* * The IEEE hereby grants a general, royalty-free license to copy, distribute, * display and make derivative works from this material, for all purposes, * provided that any use of the material contains the following * attribution: "Reprinted with permission from IEEE 1516.1(TM)-2010". * Should you require additi...
{ "content_hash": "825fadbb53b247482f3fb7f88d04f0cc", "timestamp": "", "source": "github", "line_count": 26, "max_line_length": 78, "avg_line_length": 29.46153846153846, "alnum_prop": 0.7428198433420365, "repo_name": "MSG134/IVCT", "id": "67ca9dedfd1f52fad6a0f348b87402e1e4702d61", "size": "766", "...
<?php namespace yiiunit\framework\i18n; use NumberFormatter; use Yii; use yii\i18n\Formatter; use yiiunit\TestCase; /** * @group i18n */ class FormatterNumberTest extends TestCase { /** * @var Formatter */ protected $formatter; protected function setUp() { parent::setUp(); ...
{ "content_hash": "6d2b1cd1e4d1fddbe53c112a7e173ca5", "timestamp": "", "source": "github", "line_count": 811, "max_line_length": 149, "avg_line_length": 48.464858199753394, "alnum_prop": 0.6037654242462791, "repo_name": "rob006/yii2-dev", "id": "6d1b7b7fa30c140908c6efad02a9129fdc128854", "size": "39...
package org.apache.hadoop.hbase.util; import java.io.IOException; import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.hbase.CompoundConfiguration; import org.apache.hadoop.hbase.DoNotRetryIOException; import org.apache.hadoop.hbase.HConstants; import org.apache.hadoop.hbase.TableName; import org.apa...
{ "content_hash": "5301aa5c01ba76db8730d0cd1ee291e9", "timestamp": "", "source": "github", "line_count": 302, "max_line_length": 100, "avg_line_length": 42.5, "alnum_prop": 0.7100895987534086, "repo_name": "apurtell/hbase", "id": "6683b8734a88e10c04c5094ad63ced042244ba33", "size": "13640", "binary...
<?xml version="1.0" encoding="utf-8"?> <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent"> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" ...
{ "content_hash": "1b721eba87aadcbfca71f9531c82c47f", "timestamp": "", "source": "github", "line_count": 38, "max_line_length": 76, "avg_line_length": 37.71052631578947, "alnum_prop": 0.6113049546406141, "repo_name": "mdamis/journal", "id": "c1a69fc74b640efce720546d53df4724042f4286", "size": "1433",...
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <title>RKUtil (POI API Documentation)</title> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javas...
{ "content_hash": "d0d4a9a8cd4798bb6ab5a32a2b48b28a", "timestamp": "", "source": "github", "line_count": 232, "max_line_length": 197, "avg_line_length": 32.52155172413793, "alnum_prop": 0.6202783300198808, "repo_name": "Aarhus-BSS/Aarhus-Research-Rebuilt", "id": "c40551cf852c1db7120b44d867b5ea33b1fea8...
package org.apache.shardingsphere.sharding.rule.builder; import org.apache.shardingsphere.infra.config.props.ConfigurationProperties; import org.apache.shardingsphere.infra.rule.builder.schema.SchemaRuleBuilder; import org.apache.shardingsphere.sharding.algorithm.config.AlgorithmProvidedShardingRuleConfiguration; im...
{ "content_hash": "abf1171b9bdd8e95fc4e8379dfec2def", "timestamp": "", "source": "github", "line_count": 58, "max_line_length": 199, "avg_line_length": 41.775862068965516, "alnum_prop": 0.775072224515064, "repo_name": "apache/incubator-shardingsphere", "id": "ea88046910f1c0f6286b3f2129ab943495b7c23a",...
itk_fetch_module(TotalVariation "An ITK-based implementation of fast total variation methods used for image denoising, image deconvolution, and other applications. The class itkProxTVImageFilter wraps the third party library proxTV for 2D and 3D images. Please refer to the documentation upstream for a detailed descrip...
{ "content_hash": "e0d7f9fe1a7443d76df6a3c1a32b4283", "timestamp": "", "source": "github", "line_count": 12, "max_line_length": 93, "avg_line_length": 44.75, "alnum_prop": 0.8305400372439479, "repo_name": "thewtex/ITK", "id": "446a28f3dab42d4cdfb808c28cad05192c64f2e7", "size": "2916", "binary": fa...
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/ll_editors" android:layout_width="match_parent" android:layout_height="50dp" android:orientation="horizontal"> <Te...
{ "content_hash": "bb2bdf20f553adca3761cdfa0042bdde", "timestamp": "", "source": "github", "line_count": 25, "max_line_length": 72, "avg_line_length": 37.2, "alnum_prop": 0.6279569892473118, "repo_name": "xroocky/ZhiHuRiBao", "id": "b093c43214cb57792d355e2ba2d76004215269cd", "size": "930", "binary...
angular.module('directives', []);
{ "content_hash": "f7c5ca3fa5ca0f6e3f77cf74bf67274c", "timestamp": "", "source": "github", "line_count": 1, "max_line_length": 33, "avg_line_length": 34, "alnum_prop": 0.6764705882352942, "repo_name": "perrywoodin/drk-monitor", "id": "0607b9082d11c69cdb8ea01fa9a415dc0f3eb5a5", "size": "34", "binar...
ACCEPTED #### According to NUB Generator [autonym] #### Published in null #### Original name null ### Remarks null
{ "content_hash": "9d9c94c11a4fb2c486610ac7da37b3d0", "timestamp": "", "source": "github", "line_count": 13, "max_line_length": 23, "avg_line_length": 9.076923076923077, "alnum_prop": 0.6779661016949152, "repo_name": "mdoering/backbone", "id": "ce5edaab32507a23372621ce767d0c0153ece380", "size": "179...
// Copyright 2018 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": "6bf893db9e64981d6909d887a025ee09", "timestamp": "", "source": "github", "line_count": 548, "max_line_length": 100, "avg_line_length": 35.556569343065696, "alnum_prop": 0.711367718758019, "repo_name": "meteorcloudy/bazel", "id": "4a86bd110af6f330155446f87664b76f00112335", "size": "...
package com.thinkgem.jeesite.modules.pro.service; import java.util.List; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; import com.thinkgem.jeesite.common.persistence.Page; import com.thinkgem.jeesite.common.service.CrudService; import com.thinkgem.je...
{ "content_hash": "1486be084948a5fd4bb70ca0b72a4b57", "timestamp": "", "source": "github", "line_count": 45, "max_line_length": 89, "avg_line_length": 25.755555555555556, "alnum_prop": 0.7860224331320104, "repo_name": "vriche/procat", "id": "7ce5c7c535cb67be4aed668b40e2767e3f6ad31a", "size": "1283",...
package blackberry.pim.task; import blackberry.core.FunctionSignature; import blackberry.core.ScriptableFunctionBase; import blackberry.identity.service.ServiceObject; /** * This class represents the constructor of a Task * * @author dmateescu */ public class TaskConstructor extends ScriptableFuncti...
{ "content_hash": "0f086420c295f929cc583077f808fc7c", "timestamp": "", "source": "github", "line_count": 148, "max_line_length": 104, "avg_line_length": 36.58108108108108, "alnum_prop": 0.6067602512005911, "repo_name": "marek/WebWorks", "id": "6deb8fc05ac41904bcf3701883e949540921b634", "size": "6025...
/* Huerate - Mobile System for Customer Feedback Collection Master Thesis at BUT FIT (http://www.fit.vutbr.cz), 2013 Available at http://huerate.cz Author: Bc. Jakub Kadlubiec, xkadlu00@stud.fit.vutbr.cz or jakub.kadlubiec@gmail.com */ using System; using System.Collections.Generic; using System.Globalizat...
{ "content_hash": "740993c4f0da909b0b22aa3542deb7f3", "timestamp": "", "source": "github", "line_count": 49, "max_line_length": 201, "avg_line_length": 33.673469387755105, "alnum_prop": 0.7018181818181818, "repo_name": "jakubka/Huerate", "id": "47cc165edff622b8944b0a4fef347b8e8690155f", "size": "165...
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>sudoku: Not compatible 👼</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css"...
{ "content_hash": "20742311d8ad6a523bfaebcac4c3a27e", "timestamp": "", "source": "github", "line_count": 173, "max_line_length": 159, "avg_line_length": 40.32947976878613, "alnum_prop": 0.5429267593521571, "repo_name": "coq-bench/coq-bench.github.io", "id": "1338fae4183ad910ac95e5aa01f8098b2164c350", ...
#pragma checksum "..\..\devMgrCtrl.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "E9699BFE2F07802E2BB5AC6D1B4EDE12" //------------------------------------------------------------------------------ // <auto-generated> // 此代码由工具生成。 // 运行时版本:4.0.30319.34209 // // 对此文件的更改可能会导致不正确的行为,并且如果 // 重新生成代码,...
{ "content_hash": "fff03746976312d7b7587d728da3b864", "timestamp": "", "source": "github", "line_count": 228, "max_line_length": 141, "avg_line_length": 38.46052631578947, "alnum_prop": 0.5959630516592542, "repo_name": "sdlylshl/Gateway", "id": "03e22f64f8bfef54c1edb5e8901ab19ccaed2ef5", "size": "88...
""" The setup script for Flask-OpenAPI. """ from setuptools import find_packages from setuptools import setup with open('README.rst') as f: readme = f.read() setup( name='Flask-OpenAPI', version='0.1.0a1', author='Remco Haszing', author_email='remcohaszing@gmail.com', description='Generate ...
{ "content_hash": "5a80fa00ef7d00a77a6bc5b1a0d38572", "timestamp": "", "source": "github", "line_count": 27, "max_line_length": 67, "avg_line_length": 21.037037037037038, "alnum_prop": 0.6267605633802817, "repo_name": "remcohaszing/flask-openapi", "id": "92bdb0f3e0c26089c385e328328164a9628a6edf", "s...
<form name="editForm" role="form" novalidate ng-submit="save()"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-hidden="true" ng-click="clear()">&times;</button> <h4 class="modal-title" id="myAllocationLabel" translate="ontimeApp.allocation....
{ "content_hash": "f344879b1fbeef8ac89d480ad20ce9ba", "timestamp": "", "source": "github", "line_count": 61, "max_line_length": 233, "avg_line_length": 56.08196721311475, "alnum_prop": 0.600701549254604, "repo_name": "sandor-balazs/nosql-java", "id": "f43dd6dfeafd7dbb06d03baba9f74cfde48bc42c", "size...
require 'set' # This is the latest iteration of the gem dependency resolving algorithm. As of now, # it can resolve (as a success or failure) any set of gem dependencies we throw at it # in a reasonable amount of time. The most iterations I've seen it take is about 150. # The actual implementation of the algorithm is ...
{ "content_hash": "9539b6a2662887b45f466755e3548ba2", "timestamp": "", "source": "github", "line_count": 351, "max_line_length": 119, "avg_line_length": 32.319088319088316, "alnum_prop": 0.5784555712270804, "repo_name": "cstrahan/bundler", "id": "e83a40ee2837bbcfb544d31e589d4e64fde504f0", "size": "1...
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title>{{ page.title }}</title> <meta name="viewport" content="width=device-width"> <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Open+Sans:400,700" type="text/css"> <link ...
{ "content_hash": "855ab49227f0f910b2b9821d0e557063", "timestamp": "", "source": "github", "line_count": 101, "max_line_length": 303, "avg_line_length": 36.396039603960396, "alnum_prop": 0.6164309031556039, "repo_name": "anton-rudeshko/anton-rudeshko.github.io", "id": "2c002bef72f5fef67508e7cde7beb30e...
Template[getTemplate('postDownvote')].helpers({ downvoted: function(){ var user = Meteor.user(); if(!user) return false; return _.include(this.downvoters, user._id); }, oneBasedRank: function(){ if(typeof this.rank !== 'undefined') return this.rank - 1; } }); Template[getTemplate('postDo...
{ "content_hash": "448327ad75cdf3a2e9d418fe9e54bbac", "timestamp": "", "source": "github", "line_count": 26, "max_line_length": 62, "avg_line_length": 26.307692307692307, "alnum_prop": 0.6140350877192983, "repo_name": "ISPOL/codebuddies-meteor", "id": "f6679bd1fb1d13612049ed46308d8195bd71dbe6", "siz...
/// Copyright (c) 2012 Ecma International. All rights reserved. /// Ecma International makes this code available under the terms and conditions set /// forth on http://hg.ecmascript.org/tests/test262/raw-file/tip/LICENSE (the /// "Use Terms"). Any redistribution of this code must retain the above /// copyrigh...
{ "content_hash": "ae23da4511ce2cdc4c9575005d1f04a2", "timestamp": "", "source": "github", "line_count": 30, "max_line_length": 84, "avg_line_length": 35.166666666666664, "alnum_prop": 0.5848341232227489, "repo_name": "fdecampredon/jsx-typescript-old-version", "id": "242420ecffc4d39e3ef684db7f8c1a68c9...
package com.amazonaws.apigatewaydemo.action; import com.amazonaws.apigatewaydemo.configuration.DynamoDBConfiguration; import com.amazonaws.apigatewaydemo.exception.BadRequestException; import com.amazonaws.apigatewaydemo.exception.InternalErrorException; import com.amazonaws.apigatewaydemo.model.DAOFactory; import co...
{ "content_hash": "dda9eb9947c9c6e872cc8ae2dfa9b6ae", "timestamp": "", "source": "github", "line_count": 39, "max_line_length": 120, "avg_line_length": 35.205128205128204, "alnum_prop": 0.7771303714493809, "repo_name": "awslabs/api-gateway-secure-pet-store", "id": "6f256961b070a3664af893ac7734dfced7ca...
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ @import url("//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css"); html { font-family: sans-serif; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; } body { margin: 0; } article, aside, details, figcapti...
{ "content_hash": "788aaac9e4fccfae526f2931c006c64a", "timestamp": "", "source": "github", "line_count": 7262, "max_line_length": 540, "avg_line_length": 20.902919305976315, "alnum_prop": 0.6569563298352404, "repo_name": "seamusjunior/my-angular-components", "id": "9c8b77fe453b2de310dc8ceed3aaaa875466...
<?xml version="1.0" encoding="utf-8"?> <com.hencoder.hencoderpracticedraw4.practice.Practice02ClipPathView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent"/>
{ "content_hash": "3dce94abeb101e7246ae69732f376e09", "timestamp": "", "source": "github", "line_count": 4, "max_line_length": 126, "avg_line_length": 62, "alnum_prop": 0.7701612903225806, "repo_name": "Ztiany/Repository", "id": "29117c42cd52366d918dffcd5111080f11d1cddd", "size": "248", "binary": ...
package org.gaurav.webapp.controller; import java.io.IOException; import java.io.PrintWriter; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.gaurav.webapp.biz.DatabaseService; import...
{ "content_hash": "877bd8650794783bb0c6c92d7e26ca27", "timestamp": "", "source": "github", "line_count": 46, "max_line_length": 71, "avg_line_length": 32.54347826086956, "alnum_prop": 0.7661990647962592, "repo_name": "gauravkr4u/myrepo", "id": "f32f27166743975c95d7757af8ad7c7710a40ac4", "size": "149...
@extra:ParamConverter ===================== Usage ----- The ``@extra:ParamConverter`` annotation calls *converters* to convert request parameters to objects. These objects are stored as request attributes and so they can be injected as controller method arguments:: /** * @extra:Route("/blog/:id") * @ex...
{ "content_hash": "50a5d1714f1792702e1c090103a862ea", "timestamp": "", "source": "github", "line_count": 80, "max_line_length": 97, "avg_line_length": 31.8875, "alnum_prop": 0.7185417483339867, "repo_name": "orchestra-io/sample-symfony2", "id": "4e321bace71402dafd3f5b503cbadaa17b3d997c", "size": "25...
import React from 'react'; import {IndexRoute, Route} from 'react-router'; // Layouts import Page from './components/layout/page'; // Pages import Home from './pages/home' import About from './pages/about' import NoMatch from './pages/no_match' import FilterableTimetrackingTable from './pages/report' // Routes expor...
{ "content_hash": "75e09ce425aa05e9e325df5dd54b6bb5", "timestamp": "", "source": "github", "line_count": 21, "max_line_length": 85, "avg_line_length": 31.19047619047619, "alnum_prop": 0.6900763358778625, "repo_name": "AlbinOS/book-keeper-ui", "id": "4595ba4afcdb8f9333a99cbf59d6e530d58145c2", "size":...