text
stringlengths
2
1.04M
meta
dict
layout: post date: 2016-02-01 title: "Jovani Black Sleeveless Lace Prom Dress 90897 Sleeveless Sweep/Brush Train Sheath/Column" category: Jovani tags: [Jovani ,Jovani,Sheath/Column,V-neck,Sweep/Brush Train,Sleeveless] --- ### Jovani Black Sleeveless Lace Prom Dress 90897 Just **$538.98** ### Sleeveless Sweep/Brush T...
{ "content_hash": "2c30a9a956f184ef0e70740a5732c831", "timestamp": "", "source": "github", "line_count": 14, "max_line_length": 287, "avg_line_length": 96.57142857142857, "alnum_prop": 0.742603550295858, "repo_name": "novstylessee/novstylessee.github.io", "id": "bfde2d1c4f6613e7efec6d42a046fd223e50ff7...
<?xml version="1.0"?> <!-- ~ Copyright 2015 OpenCB ~ ~ 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 ...
{ "content_hash": "a4436447ed890e80085fc1af8bd09391", "timestamp": "", "source": "github", "line_count": 89, "max_line_length": 149, "avg_line_length": 35.41573033707865, "alnum_prop": 0.5843908629441624, "repo_name": "jmmut/biodata", "id": "33e5e41646243e881eb0c4b031bf00a13e254857", "size": "3152",...
import json from pants.backend.experimental.java.register import rules as java_rules from pants.backend.java.dependency_inference.types import JavaSourceDependencyAnalysis from pants.backend.java.target_types import JavaFieldSet from pants.core.util_rules.source_files import SourceFilesRequest from pants.engine.consol...
{ "content_hash": "6412ccb1a4a884218e755d75c4c50617", "timestamp": "", "source": "github", "line_count": 47, "max_line_length": 98, "avg_line_length": 37.02127659574468, "alnum_prop": 0.7477011494252873, "repo_name": "pantsbuild/pants", "id": "f1f5493588472a5c693f94deebd26a4c8616a404", "size": "1874...
<?php defined('C5_EXECUTE') or die("Access Denied."); $form = Loader::helper('form'); $json = Loader::helper('json'); // Set's helpful, accessible instruction title attribute text on our UI buttons. // Saves us battling with some of the convoluted JS string concatenation below // where the t() function is involved. ...
{ "content_hash": "407ed0fc3cc4f3e1b339831d92dbd9dd", "timestamp": "", "source": "github", "line_count": 194, "max_line_length": 249, "avg_line_length": 37.15979381443299, "alnum_prop": 0.651685393258427, "repo_name": "Cele-soft/myCmsConcr3te5", "id": "ee99137e19e27f815d1412d635f51119fc60a698", "siz...
using System; using System.Diagnostics; using System.Fabric; using System.Globalization; using System.Threading; using System.Threading.Tasks; using Microsoft.Owin.Hosting; using Microsoft.ServiceFabric.Services.Communication.Runtime; namespace Kevsoft.WordCount.WebService { public class OwinCommunicationListener...
{ "content_hash": "5e3be4c3628a47cfe66747864d924384", "timestamp": "", "source": "github", "line_count": 125, "max_line_length": 115, "avg_line_length": 30.16, "alnum_prop": 0.5204244031830239, "repo_name": "kevbite/MassTransit.ServiceFabric", "id": "d7dcfd7564b5684e399fd2cff89bc6c7ab77c806", "size"...
/* * gtgutil * * Provides utility functions for displaying error, status, and help messages. */ #include <stdio.h> #include <stdlib.h> #include <stdarg.h> #include "gtg.h" #include "gtgutil.h" namespace gtgutil { bool verbose = false; } /* * Print an error message to stderr and exit with failure status. * M...
{ "content_hash": "b40fdd0788b3fbd362cbe0f408ef2e3d", "timestamp": "", "source": "github", "line_count": 234, "max_line_length": 94, "avg_line_length": 45.69230769230769, "alnum_prop": 0.6450617283950617, "repo_name": "anoved/Ground-Track-Generator", "id": "54939eb24cd4d3e65f2c1612dec6f40d279534d0", ...
""" Given an integer, write a function to determine if it is a power of two. """ __author__ = 'Daniel' class Solution: def isPowerOfTwo(self, n): """ Bit manipulation :type n: int :rtype: bool """ if n <= 0: return False return n & (n-1) == 0
{ "content_hash": "2a513e52197c448f54daab721ad6f29c", "timestamp": "", "source": "github", "line_count": 17, "max_line_length": 72, "avg_line_length": 18.647058823529413, "alnum_prop": 0.49842271293375395, "repo_name": "ee08b397/LeetCode-4", "id": "88c22349a06b5b0740f437d1595aca73001d23e0", "size": ...
ACCEPTED #### According to The Catalogue of Life, 3rd January 2011 #### Published in Symb. sin. 7:1243. 1936 #### Original name null ### Remarks null
{ "content_hash": "6767aa09abd5266f1e212800dee755da", "timestamp": "", "source": "github", "line_count": 13, "max_line_length": 39, "avg_line_length": 11.76923076923077, "alnum_prop": 0.6862745098039216, "repo_name": "mdoering/backbone", "id": "3c4724472e80f6ce79fae9303fa10e4f6cb41c85", "size": "214...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Windy.Domain.Contracts; using Windy.Domain.Contracts.Managers; namespace Windy.Business.Managers { public class ExceptionManager : IExceptionManager { private readonly ILogger _log...
{ "content_hash": "42aa55daa4a9dc4c7805ce300c1e78de", "timestamp": "", "source": "github", "line_count": 52, "max_line_length": 148, "avg_line_length": 25.807692307692307, "alnum_prop": 0.5625931445603577, "repo_name": "msdevno/windy", "id": "d331887cccb8fef86b805201d32459361f1d9eec", "size": "1344"...
package com.thoughtworks.cruise.editpipelinewizard; import com.thoughtworks.cruise.page.CruisePage; import com.thoughtworks.cruise.state.CurrentPageState; import com.thoughtworks.cruise.state.CurrentPageState.Page; import com.thoughtworks.cruise.state.ScenarioState; import net.sf.sahi.client.Browser; import org.hamc...
{ "content_hash": "f9a966e5e26f60bb5d4958005eb82e1e", "timestamp": "", "source": "github", "line_count": 103, "max_line_length": 108, "avg_line_length": 38.13592233009709, "alnum_prop": 0.7176680244399185, "repo_name": "varshavaradarajan/functional-tests", "id": "55631cbf841bc8c39ca8fc9a6e49f35b891ed0...
class ForceCreateUserCommentUuidConstraint < Neo4j::Migrations::Base def up add_constraint :UserComment, :uuid, force: true end def down drop_constraint :UserComment, :uuid end end
{ "content_hash": "15ee4aab756b4cc893356fe92a2f0532", "timestamp": "", "source": "github", "line_count": 9, "max_line_length": 68, "avg_line_length": 22, "alnum_prop": 0.7424242424242424, "repo_name": "ndoit/fenrir", "id": "106f84c13b724b11acdeba02434b2851141fc62b", "size": "198", "binary": false,...
ACCEPTED #### According to NUB Generator [autonym] #### Published in null #### Original name null ### Remarks null
{ "content_hash": "a85da9d8d7e6d468b46cf398468126a8", "timestamp": "", "source": "github", "line_count": 13, "max_line_length": 23, "avg_line_length": 9.076923076923077, "alnum_prop": 0.6779661016949152, "repo_name": "mdoering/backbone", "id": "cee50a679a11e9a4273e28d670bb141d861eb7c6", "size": "179...
import * as React from 'react'; import * as Constants from '../constants'; interface ISelectorItemProps { class: any; item: any; select: (item: any) => void; remove?: (item: any) => void; } class SelectorItem extends React.Component<ISelectorItemProps, {}> { constructor(props) { super(prop...
{ "content_hash": "41cdf5acd4344c6193245f9298d88a4c", "timestamp": "", "source": "github", "line_count": 152, "max_line_length": 154, "avg_line_length": 33.098684210526315, "alnum_prop": 0.5418405883522163, "repo_name": "mgbennet/BotFramework-Emulator", "id": "dcf26f864d3dec40b14e8ce99ed1b2472464ec92"...
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace TaskManagerMVC.Filters { public class AuthenticationFilter : ActionFilterAttribute { public override void OnActionExecuting(ActionExecutingContext filterContext) { i...
{ "content_hash": "f9c6e4506bd5684781190026a7703c3a", "timestamp": "", "source": "github", "line_count": 20, "max_line_length": 132, "avg_line_length": 31.2, "alnum_prop": 0.6826923076923077, "repo_name": "toshetoo/TaskManagerMVC", "id": "91e103356439e7e8c5f89174198faec9f7eddadd", "size": "626", "...
<!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_76) on Tue Apr 21 13:16:28 PDT 2015 --> <title>Listener (AWS SDK for Android - 2.2.1)</title> <meta name="date" content="2015-04-21"> <...
{ "content_hash": "0a704176c86c48faf8c3ea741e1f0029", "timestamp": "", "source": "github", "line_count": 745, "max_line_length": 929, "avg_line_length": 58.25503355704698, "alnum_prop": 0.7014746543778801, "repo_name": "94bryanr/PartypushAndroid", "id": "e9a4fc257097dc5242b35075f4418ed5d77bd3ac", "s...
<!-- @author Horacio Gonzalez (@lostinbrittany) @copyright (c) 2017 Cityzen Data @license Apache 2.0 --> <!-- Load the Polymer.Element base class --> <link rel="import" href="../polymer/polymer-element.html"> <!-- Import mixins --> <link rel="import" href="./warp10-tiles-mixin.html"> <!-- Import elements --> <link r...
{ "content_hash": "2b8019267a14e3a1314a07c09a26233b", "timestamp": "", "source": "github", "line_count": 159, "max_line_length": 101, "avg_line_length": 27.264150943396228, "alnum_prop": 0.4938869665513264, "repo_name": "LostInBrittany/warp10-tiles", "id": "30b3f6b5b45c9fde10aa6eb373945cda94a338d9", ...
goog.provide('pl.retained.Image'); goog.require('pl.gfx'); goog.require('pl.retained.Element'); /** * @constructor * @extends {pl.retained.Element} * @param {HTMLImageElement|HTMLCanvasElement|HTMLVideoElement} value * @param {number} width * @param {number} height */ pl.retained.Image = function(value, width...
{ "content_hash": "969a03eb7a7940a194e745f928469ea0", "timestamp": "", "source": "github", "line_count": 27, "max_line_length": 69, "avg_line_length": 22.22222222222222, "alnum_prop": 0.6983333333333334, "repo_name": "Talinpa/html5B4", "id": "9e9cc1ad770f8baee9f3c859554de52656e8a447", "size": "600",...
package com.leanplum.messagetemplates.actions; import android.app.Activity; import android.content.Context; import androidx.annotation.NonNull; import com.leanplum.ActionArgs; import com.leanplum.ActionContext; import com.leanplum.LeanplumActivityHelper; import com.leanplum.internal.Log; import com.leanplum.messaget...
{ "content_hash": "9ec039541ff059b1f8e0d2a4af4766bb", "timestamp": "", "source": "github", "line_count": 67, "max_line_length": 84, "avg_line_length": 26.492537313432837, "alnum_prop": 0.716056338028169, "repo_name": "Leanplum/Leanplum-Android-SDK", "id": "eb7779bed3a792c28ca789d2e146f8a7be2461ad", ...
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE191_Integer_Underflow__int_fgets_sub_82.h Label Definition File: CWE191_Integer_Underflow__int.label.xml Template File: sources-sinks-82.tmpl.h */ /* * @description * CWE: 191 Integer Underflow * BadSource: fgets Read data from the console using fgets() * Go...
{ "content_hash": "75b33fbc2691fccca00a2e634f011251", "timestamp": "", "source": "github", "line_count": 56, "max_line_length": 113, "avg_line_length": 26.25, "alnum_prop": 0.7020408163265306, "repo_name": "maurer/tiamat", "id": "14208d9336458d615223d6f3d5349f0b975884dc", "size": "1470", "binary":...
package com.google.idea.blaze.base.lang.projectview.parser; import com.google.idea.blaze.base.lang.projectview.language.ProjectViewKeywords; import com.google.idea.blaze.base.lang.projectview.lexer.ProjectViewTokenType; import com.google.idea.blaze.base.lang.projectview.psi.ProjectViewElementType; import com.google.i...
{ "content_hash": "30712908d255aab0bf3d71d0ffedf711", "timestamp": "", "source": "github", "line_count": 185, "max_line_length": 99, "avg_line_length": 30.01081081081081, "alnum_prop": 0.6734510086455331, "repo_name": "brendandouglas/intellij", "id": "2703bd2796d357f032f7bc5d06a524bedc544fcc", "size...
#ifndef ALIANALYSISTASKPARTICLEEFF #define ALIANALYSISTASKPARTICLEEFF #define MULTBINS 1 #define PARTTYPES 6 #include "AliAnalysisTaskSE.h" #include "AliAnalysisUtils.h" #include "AliEventCuts.h" #include "THnSparse.h" #include "AliPIDResponse.h" #include "AliAODpidUtil.h" class AliAnalysisUtils; class AliAnalysis...
{ "content_hash": "a0e95248dc86d324d1fac9e71eaa0f01", "timestamp": "", "source": "github", "line_count": 159, "max_line_length": 645, "avg_line_length": 32.0125786163522, "alnum_prop": 0.7337917485265226, "repo_name": "dstocco/AliPhysics", "id": "726600a784d876ed9eb5295073ca4d8b4a7d70f6", "size": "5...
<?php require_once(__DIR__ . '/../vendor/autoload.php'); use League\Flysystem\Filesystem; use League\Flysystem\Memory\MemoryAdapter as Adapter; use Flyfinder\Finder; use Flyfinder\Specification\IsHidden; /* * First create a new Filesystem and add the FlySystem plugin * In this example we are using a filesystem with...
{ "content_hash": "799769b990f4fd2fa502f7db86d4cee7", "timestamp": "", "source": "github", "line_count": 31, "max_line_length": 94, "avg_line_length": 30.64516129032258, "alnum_prop": 0.7368421052631579, "repo_name": "phpDocumentor/FlyFinder", "id": "0bfd896bcbc39d436f9dd94c56e7319c8ecf35ed", "size"...
cask "metashape" do version "1.8.0" sha256 "cd32618913ad89338923f7fbdface5e6cfb17a7d9f40f1f3bfb5bc4268ddcc17" url "http://download.agisoft.com/metashape_#{version.dots_to_underscores}.dmg" name "Agisoft Metashape Standard Edition" desc "Process digital images and generate 3D spatial data" homepage "https:/...
{ "content_hash": "7de76c5fdb60e4d755a9af379758bb7f", "timestamp": "", "source": "github", "line_count": 21, "max_line_length": 82, "avg_line_length": 30.714285714285715, "alnum_prop": 0.7271317829457364, "repo_name": "malob/homebrew-cask", "id": "79933f39ef6ae3d45d817cba5579f94ee43a2fab", "size": "...
================================================= Psycopg -- PostgreSQL database adapter for Python ================================================= .. sectionauthor:: Daniele Varrazzo <daniele.varrazzo@gmail.com> Psycopg_ is the most popular PostgreSQL_ database adapter for the Python_ programming language. Its ma...
{ "content_hash": "ce835b2e658651d1e2f11cae8c285bb3", "timestamp": "", "source": "github", "line_count": 69, "max_line_length": 77, "avg_line_length": 28.47826086956522, "alnum_prop": 0.6844783715012722, "repo_name": "mollstam/UnrealPy", "id": "5cf0f24eaf23f3f2663a15942c5e8515578d47c2", "size": "196...
#include <linux/errno.h> #include <linux/kernel.h> #include <linux/delay.h> #include <linux/console.h> #include <linux/export.h> #include <linux/pci.h> #include <linux/of_platform.h> #include <linux/gfp.h> #include <asm/prom.h> #include <asm/system.h> #include <asm/iommu.h> #include <asm/machdep.h> #include <asm/mpi...
{ "content_hash": "08f3ef5d47dc8cfd4b2c0a72545773bd", "timestamp": "", "source": "github", "line_count": 426, "max_line_length": 73, "avg_line_length": 23.821596244131456, "alnum_prop": 0.6651556957035869, "repo_name": "WhiteBearSolutions/WBSAirback", "id": "6f35582105544396ca584f908e6cb2dbef548dfc", ...
<?php namespace Pharel\Nodes; class SqlLiteral { use \Pharel\Expressions; use \Pharel\Predications; use \Pharel\AliasPredication; use \Pharel\OrderPredications; public $value; public function __construct($value) { if ($value instanceof SqlLiteral) $this->value = $value->v...
{ "content_hash": "b7468bdcaab3ecd5df90a17221ec4fa2", "timestamp": "", "source": "github", "line_count": 19, "max_line_length": 41, "avg_line_length": 20.105263157894736, "alnum_prop": 0.6099476439790575, "repo_name": "aomega08/pharel", "id": "57c2efe178bac9b93e1f65edb35720cfba45912b", "size": "382"...
package com.android.volley; /** * Encapsulates a parsed response for delivery. * * @param <T> Parsed type of this response */ public class Response<T> { /** * Callback interface for delivering parsed responses. */ public interface Listener<T> { /** * Called when a response is ...
{ "content_hash": "d092755b744fd8a94da70eabd2daba9f", "timestamp": "", "source": "github", "line_count": 87, "max_line_length": 83, "avg_line_length": 24.367816091954023, "alnum_prop": 0.6084905660377359, "repo_name": "longluo/AndroidDemo", "id": "9b9c9d04e80d18c3a5fed2e90460d7580389adf9", "size": "...
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>hammer-tactics: Not compatible 👼</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap....
{ "content_hash": "838c96f9ad9c8e3a61ab267f7632a0b3", "timestamp": "", "source": "github", "line_count": 177, "max_line_length": 159, "avg_line_length": 40.02824858757062, "alnum_prop": 0.5515878616796048, "repo_name": "coq-bench/coq-bench.github.io", "id": "c59ab2fbf00f1f50339de99b4d93e65b24947d90", ...
package cineCheck; import java.lang.reflect.Type; import java.text.SimpleDateFormat; import java.util.Date; import com.google.gson.JsonElement; import com.google.gson.JsonPrimitive; import com.google.gson.JsonSerializationContext; import com.google.gson.JsonSerializer; public class DateSerializer implements JsonSer...
{ "content_hash": "687fe88aaa7ca7ec7ca63aff260d1bd4", "timestamp": "", "source": "github", "line_count": 24, "max_line_length": 68, "avg_line_length": 25.5, "alnum_prop": 0.7859477124183006, "repo_name": "vvhof/cineCheck", "id": "3802aed7ed07d86a6b678b4797b9dc89fe7e1d7b", "size": "612", "binary": ...
package org.apache.ignite.testsuites; import junit.framework.*; import org.apache.ignite.examples.*; import org.apache.ignite.testframework.*; import static org.apache.ignite.IgniteSystemProperties.*; /** * Examples test suite. * <p> * Contains only Spring ignite examples tests. */ public class IgniteExamplesS...
{ "content_hash": "6b62f4f533e5a90629f63ac30cb23a39", "timestamp": "", "source": "github", "line_count": 58, "max_line_length": 86, "avg_line_length": 46.44827586206897, "alnum_prop": 0.7516703786191536, "repo_name": "akuznetsov-gridgain/ignite", "id": "3ede10fd5d01493d3f19f50633f6b1372667b6e7", "si...
using System; using Windows.UI.StartScreen; using Windows.UI.Xaml.Controls; using Windows.UI.Xaml.Input; namespace CodeShow.CS.Shared { public sealed partial class CreateSecondaryTileDemo : UserControl { public CreateSecondaryTileDemo() { this.InitializeComponent(); } ...
{ "content_hash": "2503d1846a1b686628233d317ba48027", "timestamp": "", "source": "github", "line_count": 34, "max_line_length": 84, "avg_line_length": 38.61764705882353, "alnum_prop": 0.5567402894135567, "repo_name": "codefoster/codeshow", "id": "a407a6eca2bf3284d09490448786da657351f4c1", "size": "1...
<Record> <Term>Ovrette</Term> <SemanticType>Pharmacologic Substance</SemanticType> <SemanticType>Organic Chemical</SemanticType> <PrimarySemanticType>Pharmacologic Substance</PrimarySemanticType> <Synonym>Norgestrel</Synonym> <Source>FDA Registry</Source> </Record>
{ "content_hash": "96a55ed795c98aea5159ac7fa25c29af", "timestamp": "", "source": "github", "line_count": 8, "max_line_length": 66, "avg_line_length": 34.25, "alnum_prop": 0.7992700729927007, "repo_name": "detnavillus/modular-informatic-designs", "id": "ab0f5e08101bc6effed3815d7ebd2725cb6120ea", "siz...
@interface MOBProjectionEPSG4181 : MOBProjection @end
{ "content_hash": "0d069fb1cd338b8db01e5e85bc5b68dc", "timestamp": "", "source": "github", "line_count": 3, "max_line_length": 48, "avg_line_length": 18.333333333333332, "alnum_prop": 0.8363636363636363, "repo_name": "jkdubr/Proj4", "id": "7a2095072b1c2998c4bffc3d12570722bea1b609", "size": "82", "...
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using System.Windows.Forms; namespace PADIMapNoReduce { static class Program { /// <summary> /// The main entry point for the application. /// </summary> [STAThread] stati...
{ "content_hash": "b479fe2549129129fad6502ad2f99630", "timestamp": "", "source": "github", "line_count": 60, "max_line_length": 98, "avg_line_length": 28.55, "alnum_prop": 0.46876824284880325, "repo_name": "ruipgil/MapNoReduce", "id": "df566c5eb628d5aa03022ab7341139c833a12c3d", "size": "1715", "bi...
/**** Boby ****/ body { background-color: #fff; } /****** General ******/ /* Theme Font Color */ .theme-font { color: #44B6AE !important; } /* Pace - Page Progress */ .pace .pace-progress { background: #44B6AE; } /* Theme Light Portlet */ .portlet.light .btn.btn-circle.btn-icon-only.btn-d...
{ "content_hash": "fec19af2abc9e242d46801ffe8cd5ec5", "timestamp": "", "source": "github", "line_count": 608, "max_line_length": 838, "avg_line_length": 42.30263157894737, "alnum_prop": 0.672045101088647, "repo_name": "sarankh80/restaurant168", "id": "16f688b7f8e3796b6a7230934f5c2031ae45b487", "size...
from typing import Tuple, Callable, Optional, cast from ..model import Model from ..config import registry from ..types import Floats1d, Floats2d from ..initializers import glorot_uniform_init, zero_init from ..util import get_width, partial InT = Floats2d OutT = Floats2d @registry.layers("Linear.v1") def Linear( ...
{ "content_hash": "650cce39013e749b8a6c8f6e201ab5bf", "timestamp": "", "source": "github", "line_count": 58, "max_line_length": 87, "avg_line_length": 27.775862068965516, "alnum_prop": 0.6039726877715704, "repo_name": "explosion/thinc", "id": "c6dc1b350b15f457f534aa21129604b58d8b5dbf", "size": "1611...
Title: WebGL - Orthographic 3D Description: How to do 3D in WebGL starting with an orthographic projection. This post is a continuation of a series of posts about WebGL. The first [started with fundamentals](webgl-fundamentals.html) and the previous was [about 2D matrices](webgl-2d-matrices.html). If you haven't read ...
{ "content_hash": "e32df4317862e64ac13e9ed54a9f7765", "timestamp": "", "source": "github", "line_count": 625, "max_line_length": 113, "avg_line_length": 29.272, "alnum_prop": 0.6567368133369773, "repo_name": "ichenjin/webgl-fundamentals", "id": "108cfe490997ba4e70f0d191009293a68e9cc726", "size": "18...
 #include <aws/appstream/model/DeleteImageBuilderRequest.h> #include <aws/core/utils/json/JsonSerializer.h> #include <utility> using namespace Aws::AppStream::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; DeleteImageBuilderRequest::DeleteImageBuilderRequest() : m_nameHasBeenSet(false) {...
{ "content_hash": "5667befafa9944ce51d6d8bbd3af1596", "timestamp": "", "source": "github", "line_count": 40, "max_line_length": 107, "avg_line_length": 20.025, "alnum_prop": 0.7640449438202247, "repo_name": "JoyIfBam5/aws-sdk-cpp", "id": "fa82cacef40ad0afa89eea6a4a1fae5db5b4307f", "size": "1374", ...
import requests import ConfigParser from getpass import getpass class Setup: URLS = { "1": "https://www.fireservicerota.co.uk", "2": "https://www.brandweerrooster.nl" } CONFIG_FILE = '.local_settings.ini' domain = None api_key = None def __init__(self): pass def get_settings(self): se...
{ "content_hash": "67edf8ddf3592ccc10ce4651433df890", "timestamp": "", "source": "github", "line_count": 95, "max_line_length": 93, "avg_line_length": 24.83157894736842, "alnum_prop": 0.6299279355659178, "repo_name": "rhomeister/firepi", "id": "5b229462fa8c147896abfdf6592cf246b8ca0220", "size": "237...
echo "Running wordcount example" . ./configDefaults.sh ARGS="$HDFS_WC $HDFS_WC_OUT" echo "running wc with args $ARGS" $FLINK_BUILD_HOME"/bin/flink" run -p $DOP -j $FLINK_BUILD_HOME/examples/flink-java-examples-*-WordCount.jar $ARGS
{ "content_hash": "c7cdd50280f94c0f84f4418da986cc78", "timestamp": "", "source": "github", "line_count": 8, "max_line_length": 113, "avg_line_length": 29.375, "alnum_prop": 0.7319148936170212, "repo_name": "rmetzger/flink-perf", "id": "45d88e4351578005ca3c365856cbed6510e80d3a", "size": "248", "bin...
package org.smurve.hsr2014.utils; import org.smurve.hsr2014.domain.User; import org.springframework.security.core.userdetails.UserDetails; public interface UserFactory { User newUser(UserDetails details); User newInactiveUser(String username, String password); User newUser(String username, String passw...
{ "content_hash": "481d5287c43957f96227a6e6dc543206", "timestamp": "", "source": "github", "line_count": 15, "max_line_length": 65, "avg_line_length": 24.6, "alnum_prop": 0.7831978319783198, "repo_name": "smurve/hsr2015", "id": "5b68f0c6dd01190846b260e3f3b738e0bdf0e021", "size": "369", "binary": f...
var vows = require('vows'); var assert = require('assert'); var tools = require(__dirname + '/utils/rest.js'); var specs = require(__dirname + '/utils/defaultspecs.js'); // Create a Test Suite vows.describe('bug 1409070735: Things may have a criteria and a state:').addBatch({ 'Insert me to men laughed and cried and ...
{ "content_hash": "72401d734b0aa6ee73801e19f697ff14", "timestamp": "", "source": "github", "line_count": 37, "max_line_length": 105, "avg_line_length": 41.189189189189186, "alnum_prop": 0.6141732283464567, "repo_name": "knurtsysteme/things-happened-db", "id": "5c573c0f92fb92c12629bf42ab2f1de2a973f948"...
import unittest import os import imath import IECore import Gaffer import GafferTest class MetadataAlgoTest( GafferTest.TestCase ) : def testReadOnly( self ) : n = GafferTest.AddNode() self.assertEqual( Gaffer.MetadataAlgo.getReadOnly( n ), False ) self.assertEqual( Gaffer.MetadataAlgo.getReadOnly( n["op1...
{ "content_hash": "881957d2d5c33bfdc68af52af36b4ea1", "timestamp": "", "source": "github", "line_count": 756, "max_line_length": 143, "avg_line_length": 41.72486772486773, "alnum_prop": 0.704349480091301, "repo_name": "GafferHQ/gaffer", "id": "ead9a77675e5c70bb5db07b9a3f60a839bcce5f5", "size": "3334...
@implementation BHBlockTableStaticSectionCellDef @end
{ "content_hash": "4c26f190cb053c396023ccf44cee736a", "timestamp": "", "source": "github", "line_count": 3, "max_line_length": 48, "avg_line_length": 18.333333333333332, "alnum_prop": 0.8909090909090909, "repo_name": "eorygen/sema2_ios", "id": "253654c77ce512176bc92c624da5472f97fa2326", "size": "257...
package gowd import ( "fmt" ) //ExecJS executes JS code after a DOM update from gowd func ExecJS(js string) { execJSBuffer = append(execJSBuffer, js) } //ExecJSNow Executes JS code in NWJS without waiting for a DOM update to be finished. func ExecJSNow(js string) { fmt.Fprintf(Output, "$%v\n", stripchars(js, '\r'...
{ "content_hash": "10dc6c7290c7171c163e342d8ed40430", "timestamp": "", "source": "github", "line_count": 20, "max_line_length": 85, "avg_line_length": 22.05, "alnum_prop": 0.7029478458049887, "repo_name": "dtylman/gowd", "id": "9450e09d0f18fe5053af93a87c040dabda301a93", "size": "441", "binary": fa...
'use strict'; import React, { Component } from 'react'; import { View, ScrollView, Text, } from 'react-native'; import { styles } from '../styles'; import { connect } from 'react-redux'; import Question from './Question'; if (global.globalDeviceType == 'iPad') { var headingSize = 48; var bodySize = 20; } ...
{ "content_hash": "41b498a3d83902d8ebd5db5aa97b71ef", "timestamp": "", "source": "github", "line_count": 56, "max_line_length": 136, "avg_line_length": 27.732142857142858, "alnum_prop": 0.6490663232453316, "repo_name": "DFAxCMU/sentence-mosaics", "id": "dc7566f4c090d4e8b04974072071116c19846388", "si...
package com.netflix.zeno.util.collections.heapfriendly; import static com.netflix.zeno.util.collections.heapfriendly.HeapFriendlyMapArrayRecycler.INDIVIDUAL_OBJECT_ARRAY_SIZE; import java.util.AbstractSet; import java.util.Collection; import java.util.Iterator; import java.util.NoSuchElementException; import java.ut...
{ "content_hash": "7c96efdffa70b4f6ccd8efe31c332e28", "timestamp": "", "source": "github", "line_count": 254, "max_line_length": 157, "avg_line_length": 31.4251968503937, "alnum_prop": 0.5895765472312704, "repo_name": "Netflix/zeno", "id": "4945a287a627557f197f181f959b52c7d3cadfbc", "size": "8621", ...
using System; using System.Collections; using System.Collections.Generic; using System.Globalization; using System.IO; using System.Web.Hosting; using Root.Infrastructure.Imaging; using Root.Web.Extensions; using Root.Web.Mvc.Models; namespace Root.RootPosition.Services { internal class DescendingComparer : IComp...
{ "content_hash": "5dd21e506936ab3fc96dc6608c547a34", "timestamp": "", "source": "github", "line_count": 51, "max_line_length": 134, "avg_line_length": 34.72549019607843, "alnum_prop": 0.6007905138339921, "repo_name": "kolotygin/RootPosition", "id": "3ff31a8357ba2f3f26a1d559dfbc6c3eef7f72b9", "size"...
<?php ?> <hr> <h4> Resources: </h4> <ul> <li> Source code for iPXE images is available at <a href="http://www.ipxe.org/download" target="_blank"> http://www.ipxe.org/download</a> <br><br> </li> <li> For general information about using iPXE, please visit the <a href="http://www.ipxe.org/...
{ "content_hash": "2685587c0e395257b6a0a1cc0f61b3cf", "timestamp": "", "source": "github", "line_count": 45, "max_line_length": 106, "avg_line_length": 21.822222222222223, "alnum_prop": 0.5977596741344195, "repo_name": "egraba/vbox_openbsd", "id": "9ba8e3190a7519b37ba23b2019b2bc2925fcb430", "size": ...
Kubernetes ========== .. toctree:: :maxdepth: 1 :hidden: Helm <kubernetes-helm.rst> Native <kubernetes-native.rst> Kubernetes_ is a popular system for deploying distributed applications on clusters, particularly in the cloud. You can use Kubernetes to launch Dask workers in the following two ways: 1. ...
{ "content_hash": "65215cbec59ede3805d4be09d8018979", "timestamp": "", "source": "github", "line_count": 69, "max_line_length": 93, "avg_line_length": 35.56521739130435, "alnum_prop": 0.6943765281173594, "repo_name": "ContinuumIO/dask", "id": "2ab9fae15e05f89afb34d6d988e498a2e8f3115d", "size": "2454...
package org.jboss.arquillian.container.fabric8.common; import io.fabric8.api.EnvironmentVariables; import io.fabric8.utils.Strings; import io.fabric8.testkit.support.FabricControllerManagerSupport; import org.jboss.arquillian.container.spi.ConfigurationException; import org.jboss.arquillian.container.spi.client.conta...
{ "content_hash": "c761c2aafedc91aa4acd7d8f354b38c1", "timestamp": "", "source": "github", "line_count": 95, "max_line_length": 115, "avg_line_length": 32.96842105263158, "alnum_prop": 0.691890166028097, "repo_name": "rnc/fabric8", "id": "9974218a23e26c8f1374962879f8ab824e509c34", "size": "3933", ...
layout: page title: Dragon Township Motors Dinner date: 2016-05-24 author: Ann Wilkins tags: weekly links, java status: published summary: Sed id justo a leo. banner: images/banner/wedding.jpg booking: startDate: 08/19/2019 endDate: 08/20/2019 ctyhocn: MBGINHX groupCode: DTMD published: true --- Vivamus a tinci...
{ "content_hash": "4556b6ce47403ea2242ec268334dee46", "timestamp": "", "source": "github", "line_count": 25, "max_line_length": 870, "avg_line_length": 87.12, "alnum_prop": 0.8099173553719008, "repo_name": "KlishGroup/prose-pogs", "id": "1644a78c095de765d65077c10d6da12de1244a29", "size": "2182", "...
/** * @fileoverview Extensions for vertical blocks in scratch-blocks. * The following extensions can be used to describe a block in Scratch terms. * For instance, a block in the operators colour scheme with a number output * would have the "colours_operators" and "output_number" extensions. * @author fenichel@go...
{ "content_hash": "40ba134d5fa2f540f8eb7dde94258d07", "timestamp": "", "source": "github", "line_count": 238, "max_line_length": 86, "avg_line_length": 34.554621848739494, "alnum_prop": 0.711454280155642, "repo_name": "isabela-angelo/scratch-tangible-blocks", "id": "4f5ab8c30f685c54d2acff045a86a76b0e0...
import pytest from mitmproxy.utils import data def test_pkg_data(): assert data.pkg_data.path("tools/console") with pytest.raises(ValueError): data.pkg_data.path("nonexistent")
{ "content_hash": "6cf258f78e1368c7e6950831c46b0650", "timestamp": "", "source": "github", "line_count": 8, "max_line_length": 46, "avg_line_length": 24.375, "alnum_prop": 0.7128205128205128, "repo_name": "StevenVanAcker/mitmproxy", "id": "f40fc86657127ed60f5084884502a6bd52c17eca", "size": "195", ...
factorio jetpack mod awfasdf
{ "content_hash": "54af4a42e97f64c26eb5b52ba5b5c47b", "timestamp": "", "source": "github", "line_count": 2, "max_line_length": 20, "avg_line_length": 14.5, "alnum_prop": 0.8620689655172413, "repo_name": "imajor75/jetpack", "id": "2c04d64b54a7f4bb38529fb9b01055891caf6696", "size": "39", "binary": f...
package Paws::CloudSearchDomain::UploadDocuments; use Moose; has ContentType => (is => 'ro', isa => 'Str', traits => ['ParamInHeader'], header_name => 'contentType', required => 1); has Documents => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'documents', required => 1); use MooseX:...
{ "content_hash": "c8ea7d0f0ed3b4a86bcf1ecf1b4f9b25", "timestamp": "", "source": "github", "line_count": 72, "max_line_length": 249, "avg_line_length": 32.916666666666664, "alnum_prop": 0.7113924050632912, "repo_name": "ioanrogers/aws-sdk-perl", "id": "24cba58582791e4b2e653e5712894b7e7edda805", "siz...
import os import sys import uuid from scrapy.command import ScrapyCommand from scrapy.utils.conf import arglist_to_dict from scrapy.exceptions import UsageError from collections import defaultdict import json from scrapy_sci.status import Status, Reader from scrapy_sci.classifier import ClassifierFactory class Command...
{ "content_hash": "e0e04152f923616491fa2ff03499efcd", "timestamp": "", "source": "github", "line_count": 113, "max_line_length": 122, "avg_line_length": 46.80530973451327, "alnum_prop": 0.5354509359047079, "repo_name": "dangra/scrapy-sci", "id": "ce71d5152d88cef2c54194589d8f0f01bb381c72", "size": "5...
class LinkType { bool used = false; public: void setUsed() {used = true;} bool isUsed() {return used;} virtual int getIfacesSupported() = 0; virtual void writeIncludes(std::ostream& str) = 0; virtual void writeTypeInit(std::ostream& str) = 0; virtual void writeLinkInit(std::ostream& str, st...
{ "content_hash": "c9a592fe47d2f09cbd1823f0aa6c75d0", "timestamp": "", "source": "github", "line_count": 15, "max_line_length": 94, "avg_line_length": 35.13333333333333, "alnum_prop": 0.681214421252372, "repo_name": "buzz66boy/NS-3_LXC", "id": "b8dc32358430e39af0a5389c3075f802448836a0", "size": "684...
/** * @typedef {object} Phaser.Types.Animations.GenerateFrameNumbers * @since 3.0.0 * * @property {number} [start=0] - The starting frame of the animation. * @property {number} [end=-1] - The ending frame of the animation. * @property {(boolean|number)} [first=false] - A frame to put at the beginning of the anima...
{ "content_hash": "27a3e2bd4c584fe5c5ba6d3d91b7950d", "timestamp": "", "source": "github", "line_count": 10, "max_line_length": 142, "avg_line_length": 57.1, "alnum_prop": 0.7040280210157618, "repo_name": "photonstorm/phaser", "id": "e5d8b6a27c11c44e11daaa1d7f5956eccf8b8f92", "size": "571", "binar...
package org.apache.camel.component.aws2.msk; import java.util.Map; import org.apache.camel.CamelContext; import org.apache.camel.Endpoint; import org.apache.camel.spi.Metadata; import org.apache.camel.spi.annotations.Component; import org.apache.camel.support.DefaultComponent; import org.slf4j.Logger; import org.slf...
{ "content_hash": "9b1d61095c6f84222a28943169c2f2e7", "timestamp": "", "source": "github", "line_count": 57, "max_line_length": 123, "avg_line_length": 31.140350877192983, "alnum_prop": 0.7115492957746479, "repo_name": "gnodet/camel", "id": "a7fd84654a4cbeb786043d1e9e74344d51eba9b1", "size": "2577",...
package com.stratio.cassandra.lucene.column import com.google.common.base.MoreObjects.toStringHelper /** An immutable sorted list of CQL3 logic [[Column]]s. * * @param columns the [[Column]]s composing this * @author Andres de la Pena `adelapena@stratio.com` */ @scala.annotation.varargs case class Columns(pr...
{ "content_hash": "afadab898742ac3a14e978d75e2652bc", "timestamp": "", "source": "github", "line_count": 68, "max_line_length": 96, "avg_line_length": 36.161764705882355, "alnum_prop": 0.6880845872305815, "repo_name": "adelapena/cassandra-lucene-index", "id": "10edeb49c7d267c1bc39645a5b4d60fa7de5ce37"...
package org.apache.activemq.artemis.jms.client; import javax.jms.InvalidDestinationException; import javax.jms.InvalidSelectorException; import javax.jms.JMSException; import javax.jms.JMSSecurityException; import org.apache.activemq.artemis.api.core.ActiveMQException; public final class JMSExceptionHelper { pu...
{ "content_hash": "1a26b062107d3501a0d9d33abbc9fc4b", "timestamp": "", "source": "github", "line_count": 73, "max_line_length": 86, "avg_line_length": 26.438356164383563, "alnum_prop": 0.6098445595854922, "repo_name": "ryanemerson/activemq-artemis", "id": "ae85f56d83ce618f01f9f10c2a2c3bdbfcbe0bb3", ...
package seev import ( "encoding/xml" "github.com/fgrid/iso20022" ) type Document04100101 struct { XMLName xml.Name `xml:"urn:iso:std:iso:20022:tech:xsd:seev.041.001.01 Document"` Message *CorporateActionInstructionCancellationRequestStatusAdviceV01 `xml:"CorpA...
{ "content_hash": "e920c998830e871bf256b2be86ecadd7", "timestamp": "", "source": "github", "line_count": 113, "max_line_length": 531, "avg_line_length": 55.256637168141594, "alnum_prop": 0.8374439461883408, "repo_name": "fgrid/iso20022", "id": "239a77ba1c05efc7dbaa4fb7a91cd6b0971f6535", "size": "624...
import {Req} from "@tsed/common"; /** * Return the serverless.event * @decorator */ export function ServerlessEvent(): ParameterDecorator { return Req("serverless.event"); }
{ "content_hash": "a485dd91e307791577ff6965f67daed5", "timestamp": "", "source": "github", "line_count": 9, "max_line_length": 55, "avg_line_length": 20, "alnum_prop": 0.7055555555555556, "repo_name": "Romakita/ts-express-decorators", "id": "e80fd769ded3fd163fc76d55819ad1a5bfb32fbf", "size": "180", ...
var DynamicChartController = (function() { function DynamicChartController(currentTimeseries, el) { _.extend(this, Backbone.Events); this.currentTimeseries = currentTimeseries; this.el = $(el); this.listenTo(this.currentTimeseries, 'change:color', function() {Backbone.Mediator.publish('chart:cur...
{ "content_hash": "02d81f4e83682f7f0204f40fd3c78bce", "timestamp": "", "source": "github", "line_count": 103, "max_line_length": 142, "avg_line_length": 34.66019417475728, "alnum_prop": 0.6635854341736694, "repo_name": "52North/sosmobileclient", "id": "d6d82a1fc80c2b888764a2a059e6e4a2f43f189d", "siz...
/* * <auto-generated> * This code was generated by a tool. * * Changes to this file may cause incorrect behavior and will be lost if * the code is regenerated. * </auto-generated> */ #import "MOZUApplicationBehavior.h" @implementation MOZUApplicationBehavior + (BOOL)propertyIsOptional:(...
{ "content_hash": "485ecba835c3e293f7f1b655dc33eee3", "timestamp": "", "source": "github", "line_count": 23, "max_line_length": 75, "avg_line_length": 16.565217391304348, "alnum_prop": 0.6587926509186351, "repo_name": "Mozu/mozu-ios-sdk", "id": "8ab88c7e10678820b784aa99d123c2c4e7ab27e2", "size": "38...
namespace ui { void AddUiColorMixer(ColorProvider* provider, const ColorProviderManager::Key& key) { const bool dark_mode = key.color_mode == ColorProviderManager::ColorMode::kDark; ColorMixer& mixer = provider->AddMixer(); mixer[kColorAvatarHeaderArt] = {kColorMidground}; mixer[kCo...
{ "content_hash": "d725db40cdfea1e03f8e0c7d5f66973d", "timestamp": "", "source": "github", "line_count": 223, "max_line_length": 80, "avg_line_length": 56.771300448430495, "alnum_prop": 0.8006319115323854, "repo_name": "nwjs/chromium.src", "id": "9f16d549f88563aa00e0e10ee51237342711cff2", "size": "1...
"""Internal implementation for declarative.""" from ...schema import Table, Column from ...orm import mapper, class_mapper, synonym from ...orm.interfaces import MapperProperty from ...orm.properties import ColumnProperty, CompositeProperty from ...orm.attributes import QueryableAttribute from ...orm.base import _is_m...
{ "content_hash": "f375da1d4ef5765bb2bc41c1287f6051", "timestamp": "", "source": "github", "line_count": 651, "max_line_length": 79, "avg_line_length": 38.384024577572966, "alnum_prop": 0.5178885865215304, "repo_name": "jburger424/MediaQueueHCI", "id": "59ebe3722a570b96504c6d55b580615164520389", "si...
ACCEPTED #### According to Index Fungorum #### Published in null #### Original name null ### Remarks null
{ "content_hash": "03a685082c6fd8318ae2b26e2b8271d7", "timestamp": "", "source": "github", "line_count": 13, "max_line_length": 18, "avg_line_length": 8.384615384615385, "alnum_prop": 0.6788990825688074, "repo_name": "mdoering/backbone", "id": "a1c7fc4e14e6aa27e5ac03005ce0fe0ae01f2c60", "size": "170...
class Contact < ActiveRecord::Base validates :name, presence: true, length: { maximum: 50 } VALID_EMAIL_REGEX = /\A[\w+\-.]+@[a-z\d\-]+(\.[a-z]+)*\.[a-z]+\z/i validates :email, presence: true , format: { with: VALID_EMAIL_REGEX } validates :content, presence: true, length: { maximum: 1000 } end
{ "content_hash": "1f81247e8b57d17996d55b41f1cd4798", "timestamp": "", "source": "github", "line_count": 8, "max_line_length": 72, "avg_line_length": 38.125, "alnum_prop": 0.6327868852459017, "repo_name": "modernscape/practice", "id": "ca3ac2401b9ae8e828ef0dd66abe504c76f5a80e", "size": "305", "bin...
html, body { width: 100%; height: 100%; } body { background-color: #eceff2; font-family: 'Microsoft YaHei', sans-serif; } .show { display: block !important; } .hide { display: none !important; } .clearfix:after { content: " "; display: block; clear: both; height: 0; font-size: 0; visibility: hid...
{ "content_hash": "7f09d0085485a119fb41f253e963447d", "timestamp": "", "source": "github", "line_count": 271, "max_line_length": 76, "avg_line_length": 18.33210332103321, "alnum_prop": 0.6650563607085346, "repo_name": "bestyxie/design", "id": "ef64d47212748e7917f9631fe53fa950949477eb", "size": "4968...
SYNONYM #### According to The Catalogue of Life, 3rd January 2011 #### Published in null #### Original name null ### Remarks null
{ "content_hash": "babee891f4d8637c9345032ff4c061c2", "timestamp": "", "source": "github", "line_count": 13, "max_line_length": 39, "avg_line_length": 10.23076923076923, "alnum_prop": 0.6917293233082706, "repo_name": "mdoering/backbone", "id": "f3ee82a6380c8738d82259feebb399b0b5b2022a", "size": "188...
#include "config.h" #include "compat.h" #define P11_DEBUG_FLAG P11_DEBUG_LIB #include "debug.h" #include "library.h" #include "virtual.h" #include <assert.h> #include <stdarg.h> #include <stdlib.h> #include <string.h> #ifdef WITH_FFI /* * We use libffi to build closures. Note that even with libffi certain * pla...
{ "content_hash": "a2240fe2de72056157399125bbd264c8", "timestamp": "", "source": "github", "line_count": 2931, "max_line_length": 188, "avg_line_length": 33.77140907540089, "alnum_prop": 0.5423401761900913, "repo_name": "Distrotech/p11-kit", "id": "104ece0f96b67dfb91888ed2d2f6800cc72ae5ee", "size": ...
<component name="libraryTable"> <library name="play-services-identity-8.1.0"> <CLASSES> <root url="file://$PROJECT_DIR$/ParseStarterProject/build/intermediates/exploded-aar/com.google.android.gms/play-services-identity/8.1.0/res" /> <root url="jar://$PROJECT_DIR$/ParseStarterProject/build/intermediate...
{ "content_hash": "71091ad6765f78aa2c65c50380bd1a09", "timestamp": "", "source": "github", "line_count": 10, "max_line_length": 164, "avg_line_length": 48.2, "alnum_prop": 0.7074688796680498, "repo_name": "Matt-F-Wu/GroceryRunnerNative", "id": "ff8840c2748fb94a701ac6b94feaa79a7baa3a6f", "size": "482...
using System; using System.Diagnostics; using System.Runtime.InteropServices; using System.Security; using System.Text; using Khronos; #endregion // ReSharper disable StringLiteralTypo // ReSharper disable CheckNamespace // ReSharper disable InconsistentNaming // ReSharper disable JoinDeclarationAndInitializer // ReS...
{ "content_hash": "8402763584aab1a38b08cfd5fb24a8ff", "timestamp": "", "source": "github", "line_count": 1505, "max_line_length": 193, "avg_line_length": 51.285049833887044, "alnum_prop": 0.6130286069651741, "repo_name": "Cryru/SoulEngine", "id": "985cc9f57843739e34bc763e180abbeda75b4387", "size": "...
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distribut...
{ "content_hash": "19a2c1bc2d4ee741fca919d5b23f7dd2", "timestamp": "", "source": "github", "line_count": 535, "max_line_length": 189, "avg_line_length": 42.31028037383177, "alnum_prop": 0.6691995052129351, "repo_name": "yuananf/presto", "id": "745565116532447d992ebc1b79942337bd17d4dc", "size": "2263...
import com.sun.javadoc.*; public class X { public static boolean start(RootDoc root) { System.out.println("X.start"); return true; } }
{ "content_hash": "720d8d82913d623bbba7e3b15ecd3de0", "timestamp": "", "source": "github", "line_count": 10, "max_line_length": 47, "avg_line_length": 16.2, "alnum_prop": 0.6049382716049383, "repo_name": "rokn/Count_Words_2015", "id": "90d3dca682e73649cab3748117e865794a20784a", "size": "1218", "bi...
name 'openvpn' maintainer 'Xhost Australia' maintainer_email 'cookbooks@xhost.com.au' license 'Apache 2.0' description 'Installs and configures openvpn and includes rake tasks for managing certs.' long_description IO.read(File.join(File.dirname(__FILE__), 'README.md')) version ...
{ "content_hash": "1965683b55f0427386be03ef7b94aa18", "timestamp": "", "source": "github", "line_count": 174, "max_line_length": 97, "avg_line_length": 44.98850574712644, "alnum_prop": 0.5929994890137966, "repo_name": "zackp30/openvpn", "id": "7f9fcee9d3930731ba6cac7995f4449e1a58c9a2", "size": "7828...
title: "24 Days of Hackage: doctest" --- Testing and documentation. Two words that will make even the most hardened programmers shudder. Unfortunately, they are ultimately two of the most important aspects of programming - especially if you want your work to succeed in the wild. Even if you practice test-driven develo...
{ "content_hash": "1c336c1cdbc1ea987d2e4369ec9f8c9d", "timestamp": "", "source": "github", "line_count": 99, "max_line_length": 80, "avg_line_length": 37.76767676767677, "alnum_prop": 0.7384327360256753, "repo_name": "ocharles/blog", "id": "6427c92380c257250d70f9314f27723f9a88fcc8", "size": "3743", ...
/** * Elements that make up the popup. */ var container = document.getElementById('popup'); var content = document.getElementById('popup-content'); var closer = document.getElementById('popup-closer'); /** * Create an overlay to anchor the popup to the map. */ var overlay = new ol.Overlay(/** @type {olx.OverlayOpt...
{ "content_hash": "ac88621923c3f82ed797a66e374deffd", "timestamp": "", "source": "github", "line_count": 29, "max_line_length": 65, "avg_line_length": 21.275862068965516, "alnum_prop": 0.6742301458670988, "repo_name": "mdiener21/python-geospatial-analysis-cookbook", "id": "0249fcc6928a489c95fa510ba7cf...
namespace WestBlueGolfLeagueWeb.Models { using System.CodeDom.Compiler; using System.Data.Entity.Migrations; using System.Data.Entity.Migrations.Infrastructure; using System.Resources; [GeneratedCode("EntityFramework.Migrations", "6.1.0-30225")] public sealed partial class EquitableScore : ...
{ "content_hash": "b2a74cb3c4b387e1ce614d4e3124d7be", "timestamp": "", "source": "github", "line_count": 28, "max_line_length": 97, "avg_line_length": 28.892857142857142, "alnum_prop": 0.6266996291718171, "repo_name": "tahoeWolverine/WestBlueGolfLeague", "id": "dbbb62924b95ea7ab1592ae42b9bc2c0a14d834a...
package com.alibaba.dubbo.governance.web.personal.module.screen; import com.alibaba.dubbo.governance.service.UserService; import com.alibaba.dubbo.governance.web.common.module.screen.Restful; import com.alibaba.dubbo.registry.common.domain.User; import org.springframework.beans.factory.annotation.Autowired; import j...
{ "content_hash": "cfa3a4555e2df5fe310b84de018e9b74", "timestamp": "", "source": "github", "line_count": 33, "max_line_length": 91, "avg_line_length": 29.454545454545453, "alnum_prop": 0.7098765432098766, "repo_name": "way-way/dubbo", "id": "065674797b166e33cdfaed46b94da4859e5ac307", "size": "972", ...
@charset "utf-8"; /* CSS Document */ #box { /* Position absolutely, 30px down from the top */ position: absolute; top: 30px; /* In my case I'm centering it in the window; do what you like */ margin-left: -100px; left: 50%; width: 200px; /* These are just for my example */ height: 1.25em; /*borde...
{ "content_hash": "804da8190cd4c4de27249ef7b1e3d2cb", "timestamp": "", "source": "github", "line_count": 19, "max_line_length": 67, "avg_line_length": 19.157894736842106, "alnum_prop": 0.6236263736263736, "repo_name": "alanh2/Alike-sistemaintegral", "id": "f8256575e1f63a12ece860294d045b74363c5fcc", ...
"""SQL connections, SQL execution and high-level DB-API interface. The engine package defines the basic components used to interface DB-API modules with higher-level statement construction, connection-management, execution and result contexts. The primary "entry point" class into this package is the Engine and it's p...
{ "content_hash": "9b896b61a41721345281c45ff0e8df93", "timestamp": "", "source": "github", "line_count": 366, "max_line_length": 103, "avg_line_length": 42.83879781420765, "alnum_prop": 0.6869698322597104, "repo_name": "jessekl/flixr", "id": "99251f63039bd6328313f2ff943cd0a20d0c4503", "size": "15916...
package org.apereo.cas.services; import java.util.Collection; import java.util.Map; import java.util.Optional; /** * This is {@link MultifactorAuthenticationProviderResolver}. * * @author Misagh Moayyed * @since 5.1.0 */ public interface MultifactorAuthenticationProviderResolver { /** * Consolidate pro...
{ "content_hash": "eb547dda8ba81c2c567e654ea3d090dc", "timestamp": "", "source": "github", "line_count": 35, "max_line_length": 134, "avg_line_length": 34, "alnum_prop": 0.6974789915966386, "repo_name": "William-Hill-Online/cas", "id": "277bc2f48a469a23d0d47ec0988d338217b135a6", "size": "1190", "b...
import logging from django.utils.encoding import smart_text logger = logging.getLogger('rbac_migrations') def migrate_team(apps, schema_editor): '''If an orphan team exists that is still active, delete it.''' Team = apps.get_model('main', 'Team') for team in Team.objects.iterator(): if team.organi...
{ "content_hash": "f1d549e11ecb63a4cd52f2ba21be5fb9", "timestamp": "", "source": "github", "line_count": 12, "max_line_length": 84, "avg_line_length": 37.25, "alnum_prop": 0.6756152125279642, "repo_name": "snahelou/awx", "id": "7c0db853096bbca1f3d22a8315e1150a465e3ebb", "size": "456", "binary": fa...
using MediaBrowser.Common.Configuration; using MediaBrowser.Common.Plugins; using MediaBrowser.Model.Serialization; using MediaBrowser.Plugins.PushBulletNotifications.Configuration; namespace MediaBrowser.Plugins.PushBulletNotifications { public class Plugin : BasePlugin<PluginConfiguration> { public ...
{ "content_hash": "953c01b30992e191694f46d8f10e6f69", "timestamp": "", "source": "github", "line_count": 31, "max_line_length": 87, "avg_line_length": 27.516129032258064, "alnum_prop": 0.6424384525205158, "repo_name": "hamstercat/Emby.Plugins", "id": "1d8aca153d65604852f39f597ddbd3b898a5abbb", "size...
package org.ovirt.engine.api.restapi.resource; import static org.ovirt.engine.api.restapi.resource.AbstractBackendNetworksResourceTest.getModel; import java.util.ArrayList; import javax.ws.rs.WebApplicationException; import org.junit.Test; import org.ovirt.engine.api.model.Network; import org.ovirt.engine.core.comm...
{ "content_hash": "376333817976e06c819d1213d3c378a3", "timestamp": "", "source": "github", "line_count": 234, "max_line_length": 117, "avg_line_length": 34.205128205128204, "alnum_prop": 0.5614692653673163, "repo_name": "zerodengxinchao/ovirt-engine", "id": "7a8065e189e286b79e1d60323ba2ddb6943bc185", ...
{% extends "base.html" %} {% block sidebar %} {% endblock %} {% block header_ext %} {% endblock %} {% block content %} <h1>Error 404 - Page not found</h1> {% endblock %}
{ "content_hash": "296f52337213026f6c1c5522cb024983", "timestamp": "", "source": "github", "line_count": 11, "max_line_length": 35, "avg_line_length": 15.727272727272727, "alnum_prop": 0.5838150289017341, "repo_name": "emergebtc/evennia", "id": "0d5979d6e7718bab0e52a4b43e1ac98bf6127fa1", "size": "17...
package pl.java.scalatech.collection; import java.util.HashMap; import java.util.Map; import org.junit.Test; import com.google.common.collect.HashMultiset; import com.google.common.collect.Multiset; import lombok.extern.slf4j.Slf4j; import pl.java.scalatech.common.DataPrepareTest; @Slf4j public class OrDefaultTest...
{ "content_hash": "41bb174b63afbaaeaaa5bf8e9df8d26d", "timestamp": "", "source": "github", "line_count": 41, "max_line_length": 63, "avg_line_length": 25.78048780487805, "alnum_prop": 0.6158940397350994, "repo_name": "przodownikR1/java8features", "id": "6d8b7b842a6d6d015c0345d4ca1e94a65eae2f2f", "si...
import { Arr, Fun, Optional } from '@ephox/katamari'; import Editor from '../api/Editor'; import * as CaretContainer from '../caret/CaretContainer'; import CaretPosition from '../caret/CaretPosition'; import * as CaretUtils from '../caret/CaretUtils'; import { CaretWalker, HDirection } from '../caret/CaretWalker'; imp...
{ "content_hash": "99ba22f3044c4ce536ee9ba6c75c0bd2", "timestamp": "", "source": "github", "line_count": 168, "max_line_length": 154, "avg_line_length": 43.57142857142857, "alnum_prop": 0.7379781420765027, "repo_name": "tinymce/tinymce", "id": "82a22ad2c86dbd382272a3aaadd1ab3a6da616a4", "size": "732...
"""Save and restore variables.""" from __future__ import absolute_import from __future__ import division from __future__ import print_function import collections import os.path import re import time from google.protobuf import text_format from tensorflow.core.protobuf import saver_pb2 from tensorflow.python.eager im...
{ "content_hash": "a1d75fda56d04c98d926616c36739650", "timestamp": "", "source": "github", "line_count": 688, "max_line_length": 80, "avg_line_length": 41.93313953488372, "alnum_prop": 0.6894974003466204, "repo_name": "kevin-coder/tensorflow-fork", "id": "131ecf71ba56c4c683bf1748c4681dc28507d829", "...
PROJECT = $(shell gcloud config get-value project) DOMAIN ?= hail.is MONITORING_LATEST = gcr.io/$(PROJECT)/monitoring:latest MONITORING_IMAGE = gcr.io/$(PROJECT)/monitoring:$(shell docker images -q --no-trunc monitoring:latest | sed -e 's,[^:]*:,,') PYTHONPATH := $${PYTHONPATH:+$${PYTHONPATH}:} PYTHON := PYTHONPATH=$...
{ "content_hash": "01a8ffb6e06e16b30f75b65dbcac774b", "timestamp": "", "source": "github", "line_count": 38, "max_line_length": 378, "avg_line_length": 41.81578947368421, "alnum_prop": 0.7042164883574575, "repo_name": "danking/hail", "id": "decd1b428aa777a8fb4a6ee77ccbd354e14069d1", "size": "1589", ...
function JobControler() { function init() { $(".sched-tree").treeview({ url: "test.php", collapsed: true, animated: "medium", persist: "cookie" }); var treeElems = $(".execing-jobs"); if (treeElems.length > 0) { var execingJobsTree; for (i=0; i<tre...
{ "content_hash": "716e7ad22a4f02b404a9970a80cd8cdc", "timestamp": "", "source": "github", "line_count": 36, "max_line_length": 50, "avg_line_length": 19.305555555555557, "alnum_prop": 0.5280575539568345, "repo_name": "sukritmohan/qfAzkaban", "id": "63f57dddad09c7881ebc21892b6c79ace15a5005", "size":...
function __processArg(obj, key) { var arg = null; if (obj) { arg = obj[key] || null; delete obj[key]; } return arg; } function Controller() { function showOptions() { $.dialog.show(); } require("/alloy/controllers/BaseController").apply(this, Array.prototype.slice.ca...
{ "content_hash": "a9b6755d511251cce99991c511b07229", "timestamp": "", "source": "github", "line_count": 59, "max_line_length": 136, "avg_line_length": 31.372881355932204, "alnum_prop": 0.561858454889249, "repo_name": "brentonhouse/brentonhouse.alloy", "id": "7f5b02512969a504e9da70b2817bffe5ad0fcefa",...
using System; using System.Threading.Tasks; using Microsoft.EntityFrameworkCore; using Weapsy.Domain.Languages; using Weapsy.Domain.Pages; using Weapsy.Reporting.Pages; using Weapsy.Reporting.Pages.Queries; using System.Linq; using Weapsy.Reporting.Roles.Queries; using System.Collections.Generic; using Microsoft.AspNe...
{ "content_hash": "6351559750c6dbc3ff4776c96fd6aaa3", "timestamp": "", "source": "github", "line_count": 129, "max_line_length": 137, "avg_line_length": 37.44186046511628, "alnum_prop": 0.5397515527950311, "repo_name": "lucabriguglia/weapsy", "id": "d70124807beeb537295b9202c881a2a307316c22", "size":...
extern NSString* const ALPHAFileDataIdentifier; @interface ALPHAFileSource : ALPHABaseDataSource @end
{ "content_hash": "6f4daac4874e576e2b4c7d2fdd1223a1", "timestamp": "", "source": "github", "line_count": 5, "max_line_length": 48, "avg_line_length": 20.8, "alnum_prop": 0.8461538461538461, "repo_name": "Legoless/Alpha", "id": "9ba57231874973ae3f97305b31ca89b1d8d08bf9", "size": "276", "binary": fa...
// This file was automatically generated by informer-gen package internalinterfaces import ( versioned "github.com/PaddlePaddle/cloud/go/client/clientset/versioned" runtime "k8s.io/apimachinery/pkg/runtime" cache "k8s.io/client-go/tools/cache" time "time" ) type NewInformerFunc func(versioned.Interface, time.Du...
{ "content_hash": "9318d765d119a8c8b172e636ff9b55e5", "timestamp": "", "source": "github", "line_count": 19, "max_line_length": 98, "avg_line_length": 32.10526315789474, "alnum_prop": 0.8114754098360656, "repo_name": "PaddlePaddle/cloud", "id": "8cd3882cc70a07ec95acd31cc048e233da781937", "size": "11...
<?php namespace app\modules\apps\models; class DictZhCyXs extends \hightman\xunsearch\ActiveRecord { public static function projectName() { return "chengyu"; } }
{ "content_hash": "751b9c77f2244b20cc06ba7c4bb2fb6b", "timestamp": "", "source": "github", "line_count": 13, "max_line_length": 57, "avg_line_length": 15.153846153846153, "alnum_prop": 0.6446700507614214, "repo_name": "awebc/web_xbf", "id": "62be9c80b3d91cfb6adca9a1abe77d9f7af077c0", "size": "197", ...
r""" ===================================================================== The Johnson-Lindenstrauss bound for embedding with random projections ===================================================================== The `Johnson-Lindenstrauss lemma`_ states that any high dimensional dataset can be randomly projected i...
{ "content_hash": "c88e85db167b74ee80d35c7e0d9f687b", "timestamp": "", "source": "github", "line_count": 215, "max_line_length": 88, "avg_line_length": 36.15348837209302, "alnum_prop": 0.7016595908915476, "repo_name": "sergeyf/scikit-learn", "id": "c92920ffb7280ef3d78f41f98ad0cba73ffab990", "size": ...