repo_name stringlengths 4 116 | path stringlengths 3 942 | size stringlengths 1 7 | content stringlengths 3 1.05M | license stringclasses 15
values |
|---|---|---|---|---|
forresty/xiami | lib/xiami/song.rb | 1928 | require_relative "http_client"
require_relative 'artist'
require_relative 'album'
module Xiami
class Song
include Virtus.model(finalize: false)
attribute :id, Integer
attribute :name, String
attribute :temporary_url, String
attribute :artist, Artist
attribute :albu... | mit |
peppertech/OracleJET-Samples | MagicEightBall/hybrid/www/js/libs/oj/v2.0.0/resources/nls/th/ojtranslations.js | 22262 | define({"oj-message":{fatal:"ร้ายแรง",error:"ข้อผิดพลาด",warning:"คำเตือน",info:"ข้อมูล",confirmation:"การยืนยัน","compact-type-summary":"{0}: {1}"},"oj-converter":{summary:"ค่าไม่อยู่ในรูปแบบที่ต้องการ",detail:"ป้อนค่าในรูปแบบที่ต้องการ","plural-separator":", ",hint:{summary:"ตัวอย่าง: {exampleValue}",detail:"ป้อนค่าใ... | mit |
clark-stevenson/phaser | v3/src/renderer/webgl/shaders/UntexturedAndTintedShader.js | 509 | module.exports = {
vert: [
'uniform mat4 u_view_matrix;',
'attribute vec2 a_position;',
'attribute vec4 a_color;',
'varying vec4 v_color;',
'void main () {',
' gl_Position = u_view_matrix * vec4(a_position, 1.0, 1.0);',
' v_color = a_color;',
'}'
... | mit |
imasaru/sabbath-school-lessons | src/nl/2021-03/12/01.md | 1712 | ---
title: De rusteloze profeet
date: 11/09/2021
---
### Lezen
Jona 1-4; Jeremia 25:5; Ezechiël 14:6; Openbaring 2:5; Lucas 9:51-56; Judas 1-25
> <p>Kerntekst</p>
> ‘Zou Ik dan geen verdriet hebben om Ninevé, die grote stad, waar meer dan honderdtwintigduizend mensen wonen die het verschil tussen links en rechts... | mit |
julianxhokaxhiu/blog.julianxhokaxhiu.com | themes/mediumish-gohugo-theme/exampleSite/content/blog/fifth.md | 993 | ---
title: "Fifth"
date: 2018-10-07T11:39:22+02:00
publishdate: 2018-10-07T11:39:22+02:00
image: "/images/blog/5.jpg"
tags: ["interesting", "drink"]
comments: false
---
# This is another post
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean semper libero quis dictum dapibus. Nulla egestas vitae augue eu ... | mit |
tddold/Telerik-Academy-2 | Csharp-Part2/08.TextFiles/02.ConcatenateTextFiles/Properties/AssemblyInfo.cs | 1422 | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("02... | mit |
cmpayments/payments-sdk-net | Source/CM.Payments.Client.Test/Generated/AfterPayDetailsResponse_Tests.cs | 10445 | using System;
using System.Linq;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using CM.Payments.Client.Model;
using System.Reflection;
using CM.Payments.Client.Enums;
//<auto-generated>
// IMPORTANT NOTE:
// This code is generated by Mess... | mit |
chefspec/chefspec | spec/unit/matchers/state_attrs_matcher_spec.rb | 2289 | require "spec_helper"
describe ChefSpec::Matchers::StateAttrsMatcher do
subject { described_class.new(%i{a b}) }
context "when the resource does not exist" do
let(:resource) { nil }
before { subject.matches?(resource) }
it "does not match" do
expect(subject).to_not be_matches(resource)
end
... | mit |
soniar4i/Alood | src/MakerLabs/PagerBundle/Pager.php | 4498 | <?php
/*
* This file is part of the PagerBundle package.
*
* (c) Marcin Butlak <contact@maker-labs.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace MakerLabs\PagerBundle;
use MakerLabs\PagerBundle\Adapter\PagerAdap... | mit |
boggad/jdk9-sample | sample-catalog/spring-jdk9/src/spring.aop/org/springframework/aop/config/AbstractInterceptorDrivenBeanDefinitionDecorator.java | 5744 | /*
* Copyright 2002-2016 the original author or authors.
*
* 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 ap... | mit |
ruleless/CEGUI | samples/Tree/Tree.h | 2307 | /************************************************************************
created: 10/17/2004
author: David Durant (based on code by Paul D Turner)
*************************************************************************/
/***************************************************************************
* Copy... | mit |
bburnichon/PHPExiftool | lib/PHPExiftool/Driver/Tag/DICOM/UPSProgressInformationSequence.php | 844 | <?php
/*
* This file is part of the PHPExifTool package.
*
* (c) Alchemy <support@alchemy.fr>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace PHPExiftool\Driver\Tag\DICOM;
use JMS\Serializer\Annotation\ExclusionPolicy;... | mit |
exercism/xgo | exercises/luhn/example.go | 461 | package luhn
import "strings"
func Valid(id string) bool {
if len(strings.TrimSpace(id)) == 1 {
return false
}
d := make([]int, 0, len(id))
for _, r := range id {
if r == ' ' {
continue
}
if r < '0' || r > '9' {
return false
}
d = append(d, int(r-'0'))
}
return sum(d)%10 == 0
}
func sum(d... | mit |
nanobox-io/nanobox-pkgsrc-base | php54/patches/patch-ext_standard_basic__functions.c | 553 | $NetBSD: patch-ext_standard_basic__functions.c,v 1.1 2012/06/16 05:21:55 taca Exp $
Work around VAX FP lack of INF
--- ext/standard/basic_functions.c.orig 2012-05-08 05:22:56.000000000 +0000
+++ ext/standard/basic_functions.c
@@ -3498,7 +3498,7 @@ PHPAPI double php_get_nan(void) /* {{{ *
PHPAPI double php_get_inf(... | mit |
spadin/coverphoto | node_modules/grunt-contrib/node_modules/grunt-contrib-yuidoc/node_modules/yuidocjs/node_modules/yui/node-base/node-base-debug.js | 33629 | /*
YUI 3.7.2 (build 5639)
Copyright 2012 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
http://yuilibrary.com/license/
*/
YUI.add('node-base', function (Y, NAME) {
/**
* @module node
* @submodule node-base
*/
var methods = [
/**
* Determines whether each node has the given className.
* @method ... | mit |
mdpiper/topoflow | topoflow/utils/cfg_files.py | 12732 |
## Copyright (c) 2001-2010, Scott D. Peckham
## January 2009 (converted from IDL)
## November 2009 (collected into cfg_files.py
## May 2010 (added read_key_value_pair())
## July 2010 (added read_list()
import numpy
#---------------------------------------------------------------------
#
# unit_test()
#
# skip_h... | mit |
lemmy/tlaplus | tlatools/org.lamport.tlatools/src/tlc2/tool/liveness/LNAll.java | 2829 | // Copyright (c) 2003 Compaq Corporation. All rights reserved.
// Portions Copyright (c) 2003 Microsoft Corporation. All rights reserved.
// Last modified on Mon 30 Apr 2007 at 13:33:37 PST by lamport
// modified on Fri Sep 22 13:54:35 PDT 2000 by yuanyu
package tlc2.tool.liveness;
import tla2sany.semantic.Lev... | mit |
OpenJSX/babel-plugin-jsx | README.md | 3490 | [](https://travis-ci.org/jsx-ir/babel-plugin-jsx)
## Babel Plugin for generating JSX-IR
### Overview
This plugin produces [JSX-IR](https://github.com/jsx-ir/spec) output of given JSX source. Main purpose of this plugin is to be used with... | mit |
liangjg/openmc | tools/ci/travis-install.py | 2019 | import os
import shutil
import subprocess
def which(program):
def is_exe(fpath):
return os.path.isfile(fpath) and os.access(fpath, os.X_OK)
fpath, fname = os.path.split(program)
if fpath:
if is_exe(program):
return program
else:
for path in os.environ["PATH"].split(... | mit |
hillerlab/GenomeAlignmentTools | kent/src/hg/lib/cnpRedon.sql | 689 | # cnpRedon.sql was originally generated by the autoSql program, which also
# generated cnpRedon.c and cnpRedon.h. This creates the database representation of
# an object which can be loaded and saved from RAM in a fairly
# automatic way.
#CNP data from Redon lab
CREATE TABLE cnpRedon (
chrom varchar(255) not nu... | mit |
kokone/wp-phone-number | libphonenumber/data/PhoneNumberMetadata_MU.php | 2103 | <?php
return array (
'generalDesc' =>
array (
'NationalNumberPattern' => '[2-9]\\d{6}',
'PossibleNumberPattern' => '\\d{7}',
'ExampleNumber' => '',
),
'fixedLine' =>
array (
'NationalNumberPattern' => '
(?:
2(?:
[034789]\\d|
1[0-7]
... | mit |
CDLUC3/dash-xtf | xtf/WEB-INF/src/org/cdlib/xtf/textIndexer/IdxTreeDictMaker.java | 6314 | package org.cdlib.xtf.textIndexer;
/**
* Copyright (c) 2006, Regents of the University of California
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* - Redistributions of source code m... | mit |
tangcg/nanomsg | src/protocol.h | 7921 | /*
Copyright (c) 2012-2013 250bpm s.r.o. All rights reserved.
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 rights to u... | mit |
stricte/jammit | test/fixtures/tags/js_individual_includes.html | 152 | <script src="/fixtures/src/test1.js"></script>
<script src="/fixtures/src/test2.js"></script>
<script src="/assets/js_test_with_templates.jst"></script> | mit |
AndrePessoa/Topo | topo/app/core/email.class.php | 3191 | <?php
require_once(lib_path.'PHPMailer_5.2.1/class.phpmailer.php');
class Email{
/**
* sendMsg
*
* Envia um e-mail utilizando a bibliteca PHPMailer.
*
* @version 1.0
* @param string $to E-mail do destinatário.
* @param string $subject Assunto do e-mail.
* @param string $msg Mensa... | mit |
scriptit/github-basic | test/async.js | 5038 | 'use strict';
var assert = require('assert')
var Promise = require('promise')
var connect = require('../')
var client = connect({
version: 3,
cache: 'file',
auth: '90993e4e47b0fdd1f51f4c67b17368c62a3d6097' // github-basic-js-test
});
describe('async', function () {
it('can make simple api requests', function... | mit |
firsara/noop | examples/model/index.html | 444 | <!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<title>touch</title>
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-transluc... | mit |
hauledev/has_account_engine | spec/dummy/app/controllers/people_controller.rb | 624 | class PeopleController < HasAccountsController
def index
set_collection_ivar resource_class.search(
params[:by_text],
:star => true,
:page => params[:page]
)
end
def show
# Invoice scoping by state
@invoices = resource.invoices.where("type != 'Salary'").invoice_state(params[:inv... | mit |
mrhyh/ZYChat | ZYChat-EaseMob/ZYChat/ChatDetail/UITableViewCell/ChatCell/GJGCChatFriendPostMessageCell.h | 292 | //
// GJGCChatFriendPostMessageCell.h
// ZYChat
//
// Created by ZYVincent QQ:1003081775 on 14-12-11.
// Copyright (c) 2014年 ZYProSoft. All rights reserved.
//
#import "GJGCChatFriendImageMessageCell.h"
@interface GJGCChatFriendPostMessageCell : GJGCChatFriendImageMessageCell
@end
| mit |
CatsPoo/ShiftOnline | angular.src/node_modules/ngx-bootstrap/bs-moment/i18n/ru.js | 6071 | // moment.js locale configuration
// locale : Russian [ru]
// author : Viktorminator : https://github.com/Viktorminator
// Author : Menelion Elensúle : https://github.com/Oire
// author : Коренберг Марк : https://github.com/socketpair
function plural(word, num) {
var forms = word.split('_');
return num % 10 ===... | mit |
AzureCAT-GSI/DevCamp | HOL/node/03-azuread-office365/start/routes/dashboard.js | 2173 | var express = require('express');
var router = express.Router();
var request = require('request');
// Setup Redis Client
var redis = require("redis");
var client = redis.createClient(process.env.REDISCACHE_SSLPORT, process.env.REDISCACHE_HOSTNAME, { auth_pass: process.env.REDISCACHE_PRIMARY_KEY, tls: { servername: pro... | mit |
nnluukhtn/coffee_run | spec/controllers/pusher_controller_spec.rb | 218 | require 'rails_helper'
RSpec.describe PusherController, :type => :controller do
describe "GET webhook" do
it "returns http success" do
get :webhook
expect(response).to be_success
end
end
end
| mit |
smiley22/S22.Xmpp | Extensions/XEP-0107/Mood.cs | 9671 |
namespace S22.Xmpp.Extensions {
/// <summary>
/// Defines possible values for the mood of an XMPP user.
/// </summary>
/// <remarks>Refer to XEP-0107 for a detailed listing and description of the
/// various mood values.</remarks>
public enum Mood {
/// <summary>
/// Impressed with fear or apprehension; in ... | mit |
LeaderQiu/MeiTuanHD | 04-美团HD/Classes/Other/Lib/DP/DPRequest.h | 1502 | //
// DPRequest.h
// apidemo
//
// Created by ZhouHui on 13-1-28.
// Copyright (c) 2013年 Dianping. All rights reserved.
//
#import <Foundation/Foundation.h>
typedef void (^DPBlock)(id result, NSError *error);
typedef void (^DPSuccess)(id json);
typedef void (^DPFailure)(NSError *error);
@class DPAPI;
@protocol D... | mit |
koliva8245/HeroesParserData | HeroesMatchTracker/Views/RawData/RawMatchReplaysControl.xaml.cs | 346 | using System.Windows.Controls;
namespace HeroesMatchTracker.Views.RawData
{
/// <summary>
/// Interaction logic for RawMatchReplaysControl.xaml
/// </summary>
public partial class RawMatchReplaysControl : UserControl
{
public RawMatchReplaysControl()
{
InitializeCompone... | mit |
crocodic-studio/simple-stock-manager | vendor/unisharp/laravel-filemanager/src/lang/zh-TW/lfm.php | 2606 | <?php
return [
'nav-back' => '回上一頁',
'nav-new' => '新增資料夾',
'nav-upload' => '上傳檔案',
'nav-thumbnails' => '縮圖顯示',
'nav-list' => '列表顯示',
'menu-rename' => '重新命名',
'menu-delete' => '刪除',
'menu-view' => '預覽',
'menu-download' =>... | mit |
tomaaron/raiden | .travis/make_dag.sh | 193 | #!/usr/bin/env bash
set -e
mkdir -p $HOME/.ethash
# this will generate the DAG once, travis is configured to cache it and
# subsequent calls will not regenerate
geth makedag 0 $HOME/.ethash
| mit |
elgubenis/backbone.intercept | gruntfile.js | 2239 | module.exports = function(grunt) {
require('load-grunt-tasks')(grunt);
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
meta: {
version: '<%= pkg.version %>',
banner: '// Backbone.Intercept v<%= meta.version %>\n'
},
preprocess: {
intercep... | mit |
Etiene/sailor_website | docs/0.5/contributing.md | 10892 | # Contributing to Sailor
<3
* [Code of conduct](#code-of-conduct)
* [Questions](#questions)
* [Issue found](#issue-found)
* [Verifying issues](#verifying-issues)
* [New feature](#new-feature)
* [Setup developer environment](#setup-developer-environment)
* [Code and naming conventions](#code-and-naming-conventi... | mit |
boztek/guides | source/localizable/getting-started/core-concepts.es-ES.md | 3653 | Antes de empezar a escribir código, es buena idea obtener una visión general de cómo funciona una aplicación de Ember.

## Enrutador y gestores de ruta
Supongamos que vamos a escribir una aplicación web que permite a los usuarios ... | mit |
ModuleLoader/es-module-loader | test/fixtures/register-modules/rebinding.js | 197 | System.register([], function (_export, _context) {
"use strict";
var p;
return {
setters: [],
execute: function () {
_export("p", p = 4);
_export("p", p);
}
};
}); | mit |
gregvonkuster/icqsol | examples/addSurfaceFieldFromExpression.py | 3166 | #!/usr/bin/env python
"""
Apply a surface field to a shape
"""
from __future__ import print_function
import argparse
import time
import sys
import re
from numpy import linspace
from icqsol.shapes.icqShapeManager import ShapeManager
from icqsol import util
# time stamp
tid = re.sub(r'\.', '', str(time.time()))
descr... | mit |
Kittyfisto/Tailviewer | src/Tailviewer.Core/Filters/ExpressionEngine/IsExpression.cs | 2319 | using System;
using System.Collections.Generic;
using System.Diagnostics.Contracts;
using Tailviewer.Api;
namespace Tailviewer.Core.Filters.ExpressionEngine
{
internal sealed class IsExpression<T>
: IExpression<bool>
{
private static readonly IEqualityComparer<T> Comparer;
private readonly IExpression<T> _lhs... | mit |
tesler/cspt-moodle | moodle/lang/ru/enrol_imsenterprise.php | 11218 | <?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle... | mit |
charshu/birls_real | src/resources/lib/angular2-image-popup/index.html | 2259 | <html>
<head>
<base href="/">
<title>Angular 2 QuickStart</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- 1. Load libraries -->
<!-- IE required polyfills, in this exact order -->
<script src="node_modules/core-js/client/shim.min.js"></script>
<script... | mit |
badfuture/huoshui-backend-api | api/routes/statRoute.js | 126 |
module.exports = {
//get global stats
'GET /stat': {
controller: "StatController",
action: "getGlobalStat"
}
}
| mit |
paixaop/node-sodium | src/crypto_shorthash.cc | 1709 | /**
* Node Native Module for Lib Sodium
*
* @Author Pedro Paixao
* @email paixaop at gmail dot com
* @License MIT
*/
#include "node_sodium.h"
/**
* int crypto_shorthash(
* unsigned char *out,
* const unsigned char *in,
* unsigned long long inlen,
* const unsigned char *key)
*
* Parameters:
* ... | mit |
jnicklas/capybara | lib/capybara/spec/session/scroll_spec.rb | 5689 | # frozen_string_literal: true
Capybara::SpecHelper.spec '#scroll_to', requires: [:scroll] do
before do
@session.visit('/scroll')
end
it 'can scroll an element to the top of the viewport' do
el = @session.find(:css, '#scroll')
@session.scroll_to(el, align: :top)
expect(el.evaluate_script('this.ge... | mit |
mafredri/cdp | protocol/runtime/testdata/log_input_gen.go | 2730 | package main
import (
"context"
"encoding/json"
"log"
"os"
"path/filepath"
"time"
"github.com/mafredri/cdp"
"github.com/mafredri/cdp/devtool"
"github.com/mafredri/cdp/protocol/page"
"github.com/mafredri/cdp/rpcc"
)
func main() {
dir, err := os.Getwd()
if err != nil {
log.Fatal(err)
}
if err := run(c... | mit |
MarkThink/OROCRM | vendor/bundles/besimple/soap/src/BeSimple/SoapClient/Tests/AxisInterop/TestCase.php | 602 | <?php
namespace BeSimple\SoapClient\Tests\AxisInterop;
class TestCase extends \PHPUnit_Framework_TestCase
{
protected function setUp()
{
$ch = curl_init('http://localhost:8080/');
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10);
curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt(... | mit |
ocadni/citychrone | node_modules/mathjs/lib/function/algebra/simplify/simplifyConstant.js | 7764 | 'use strict';
var digits = require('./../../../utils/number').digits;
// TODO this could be improved by simplifying seperated constants under associative and commutative operators
function factory(type, config, load, typed, math) {
var util = load(require('./util'));
var isCommutative = util.isCommutative;
var i... | mit |
valesbc/valesbc.github.io | scripts/form_throttle.php | 2961 | <?php
/*
If you see this text in your browser, PHP is not configured correctly on this hosting provider.
Contact your hosting provider regarding PHP configuration for your site.
PHP file generated by Adobe Muse CC 2017.1.0.379
*/
function formthrottle_check()
{
if (!is_writable('.'))
{
return '8';... | mit |
mahdikallel/IHM | web/template/index.php/component/search/index7921.html | 572 | <?xml version="1.0" encoding="utf-8"?>
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/"><ShortName>Shaper Soccer</ShortName><Description></Description><InputEncoding>UTF-8</InputEncoding><Url type="application/opensearchdescription+xml" rel="self" template="http://demo.joomshaper.com/2015/soccer/inde... | mit |
yorozuyah/TPC-H_like_for_MySQL | dbt5-0.1.0/egen/inc/FlatLastTradeLoad.h | 2788 | /*
* Legal Notice
*
* This document and associated source code (the "Work") is a part of a
* benchmark specification maintained by the TPC.
*
* The TPC reserves all right, title, and interest to the Work as provided
* under U.S. and international laws, including without limitation all patent
* and trademark rig... | mit |
algorich/iugu-ruby | CHANGELOG.md | 152 | # Change log
All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org/).
| mit |
photonstorm/phaser | src/geom/mesh/RotateFace.js | 1512 | /**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2022 Photon Storm Ltd.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Rotates the vertices of a Face to the given angle.
*
* The actual vertex positions are adjusted, not their transformed positions.
*
*... | mit |
cloudcomputinghust/IoT | docker/oneM2M/CSE_IPE/org.eclipse.om2m/org.eclipse.om2m.core/src/main/java/org/eclipse/om2m/core/controller/PollingChannelUriController.java | 1885 | /*******************************************************************************
* Copyright (c) 2013-2016 LAAS-CNRS (www.laas.fr)
* 7 Colonel Roche 31077 Toulouse - France
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
... | mit |
cdnjs/cdnjs | ajax/libs/iCheck/1.0.3/icheck.js | 14225 | /*!
* iCheck v1.0.3, http://git.io/arlzeA
* ===================================
* Powerful jQuery and Zepto plugin for checkboxes and radio buttons customization
*
* (c) 2013 Damir Sultanov, http://fronteed.com
* MIT Licensed
*/
(function($) {
// Cached vars
var _iCheck = 'iCheck',
_iCheckHelper = _iCh... | mit |
dbisUnibas/ADAMpro | src/main/scala/org/vitrivr/adampro/communication/api/EntityOp.scala | 7563 | package org.vitrivr.adampro.communication.api
import org.apache.spark.sql.types.{StructField, StructType}
import org.apache.spark.sql.{DataFrame, Row}
import org.vitrivr.adampro.data.entity.Entity._
import org.vitrivr.adampro.data.entity.{AttributeDefinition, Entity, EntityPartitioner, SparsifyHelper}
import org.vitri... | mit |
benghaem/cavrr | src/IOREG.h | 6760 | /* ATtiny 25 / 45 / 85 IO Register Names
* generated from: http://www.atmel.com/Images/Atmel-2586-AVR-8-bit-Microcontroller-ATtiny25-ATtiny45-ATtiny85_Datasheet.pdf
*
* Named registers also have named values for their bits
* Named bits are shown below as REGISTERNAME_BITNAME
*/
#ifndef IOREG_H
#define IOREG_H
#d... | mit |
ohmygodvt95/wevivu | vendor/assets/components/angular-material/modules/js/sidenav/sidenav.css | 4036 | /*!
* Angular Material Design
* https://github.com/angular/material
* @license MIT
* v1.1.1-master-f6dedff
*/
md-sidenav {
box-sizing: border-box;
position: absolute;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
flex-direction: column;
z-index: ... | mit |
zapnap/voting | lib/voting/domain.rb | 352 | module Voting
class Domain
include DataMapper::Resource
property :id, Serial
property :name, String
property :created_at, DateTime
property :updated_at, DateTime
has n, :users, :class_name => "Voting::User", :child_key => [:domain_id]
validates_present :name
vali... | mit |
ceolter/angular-grid | community-modules/core/dist/es6/rendering/cellComp.d.ts | 6950 | // Type definitions for @ag-grid-community/core v25.0.1
// Project: http://www.ag-grid.com/
// Definitions by: Niall Crosby <https://github.com/ag-grid/>
import { Column } from "../entities/column";
import { CellChangedEvent, RowNode } from "../entities/rowNode";
import { CellEvent, FlashCellsEvent } from "../events";
... | mit |
dolymood/angular-packages | angular-1.3.17/docs/examples/example-example84/index-production.html | 812 | <!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Example - example-example84-production</title>
<link href="animations.css" rel="stylesheet" type="text/css">
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.16/angular.min.js"></script>
<script src="//ajax.googleapis.com/ajax... | mit |
ccpgames/dbkit | sql-core/zsystem/zsystem.Settings_Value.sql | 369 |
IF OBJECT_ID('zsystem.Settings_Value') IS NOT NULL
DROP FUNCTION zsystem.Settings_Value
GO
CREATE FUNCTION zsystem.Settings_Value(@group varchar(200), @key varchar(200))
RETURNS nvarchar(max)
BEGIN
DECLARE @value nvarchar(max)
SELECT @value = LTRIM(RTRIM([value])) FROM zsystem.settings WHERE [group] = @group AND... | mit |
CslaGenFork/CslaGenFork | trunk/CoverageTest/Invoices-CS-DAL-DR/Invoices.DataAccess.Sql/ProductTypeCachedNVLDal.cs | 135 | using System;
using Csla;
namespace Invoices.DataAccess.Sql
{
public partial class ProductTypeCachedNVLDal
{
}
}
| mit |
WeebDev/lolisafe | src/api/routes/admin/usersGET.js | 473 | const Route = require('../../structures/Route');
class usersGET extends Route {
constructor() {
super('/admin/users', 'get', { adminOnly: true });
}
async run(req, res, db) {
try {
const users = await db.table('users')
.select('id', 'username', 'enabled', 'isAdmin', 'createdAt');
return res.json({
... | mit |
ceolter/angular-grid | enterprise-modules/excel-export/src/excelExport/excelXlsxFactory.ts | 3835 | import { Autowired, Bean, BeanStub, XmlElement } from '@ag-grid-community/core';
import coreFactory from './files/ooxml/core';
import contentTypesFactory from './files/ooxml/contentTypes';
import officeThemeFactory from './files/ooxml/themes/office';
import sharedStringsFactory from './files/ooxml/sharedStrings';
impo... | mit |
ceolter/angular-grid | grid-packages/ag-grid-docs/documentation/src/pages/master-detail-custom-detail/examples/simple-custom-detail/detailCellRenderer_vanilla.js | 294 | function DetailCellRenderer() {}
DetailCellRenderer.prototype.init = function(params) {
this.eGui = document.createElement('div');
this.eGui.innerHTML = '<h1 style="padding: 20px;">My Custom Detail</h1>';
};
DetailCellRenderer.prototype.getGui = function() {
return this.eGui;
};
| mit |
deki/jira-plugin | src/main/resources/hudson/plugins/jira/JiraSite/help-timeout.html | 68 | <div>
Connection timeout for JIRA REST API calls (in seconds)
</div> | mit |
cdnjs/cdnjs | ajax/libs/highcharts/8.0.0/es-modules/annotations/annotations.src.js | 42338 | /* *
*
* (c) 2009-2017 Highsoft, Black Label
*
* License: www.highcharts.com/license
*
* */
'use strict';
import H from '../parts/Globals.js';
import U from '../parts/Utilities.js';
var defined = U.defined,
destroyObjectProperties = U.destroyObjectProperties,
erase = U.erase,
extend = U.extend,
... | mit |
Usagination/Decchi | Decchi-Plugins/foo_decchi/README.md | 566 | # 뎃찌EXT (Foobar 2000) : foo_decchi v1.1
***1.*** [여기](https://github.com/Usagination/Decchi/raw/master/Decchi-Plugins/foo_decchi/foo_decchi.fb2k-component) 를 클릭해서 파일을 다운로드해요.
***2.*** Foobar 2000 을 실행해요.

***3.*** `File` - `Preferences` 를 클릭, 혹은 `Ctrl + P` 를 눌러요

***4.*** `Install.... | mit |
RedHat-Eng-PGM/schedules-tools | schedules_tools/diff.py | 16312 | #!/usr/bin/python3
"""
Simple wrapper to get diff of two schedules
It's able to show different attributes (by 'attrs' kwarg)
and indicate missing phases
Follows 'diff' exit codes:
0 - same
1 - different
2 - other trouble
Test as "python -m schedules_tools.batches.diff"
"""
import argparse
from datetime... | mit |
cgvarela/passenger | src/cxx_supportlib/MemoryKit/palloc.h | 4866 | /*
* Copyright (C) Igor Sysoev
* Copyright (C) Nginx, Inc.
* Copyright (C) 2013-2014 Phusion
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must ret... | mit |
khalid-bd/psa-recovery | recouvrement-multi/03_1compte.html | 9274 | <!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-... | mit |
kdelfour/humhub-superhero-theme | css/superhero.css | 145438 | @import url("//fonts.googleapis.com/css?family=Lato:300,400,700");
/*!
* bootswatch v3.3.2
* Homepage: http://bootswatch.com
* Copyright 2012-2015 Thomas Park
* Licensed under MIT
* Based on Bootstrap
*/
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
html {
font-family: sans-serif;
-ms-text-size-... | mit |
cljsinfo/cljs-api-docs | docfiles/cljs.repl.browser/repl-env.md | 88 | ---
name: cljs.repl.browser/repl-env
see also:
---
## Summary
## Details
## Examples
| mit |
jerowe/bioconda-recipes | recipes/bioconductor-simpintlists/post-link.sh | 1430 | #!/bin/bash
FN="simpIntLists_1.20.0.tar.gz"
URLS=(
"https://bioconductor.org/packages/3.9/data/experiment/src/contrib/simpIntLists_1.20.0.tar.gz"
"https://bioarchive.galaxyproject.org/simpIntLists_1.20.0.tar.gz"
"https://depot.galaxyproject.org/software/bioconductor-simpintlists/bioconductor-simpintlists_1.20.0_s... | mit |
cdnjs/cdnjs | ajax/libs/primereact/6.5.1/multiselect/multiselect.js | 72104 | this.primereact = this.primereact || {};
this.primereact.multiselect = (function (exports, React, core, inputtext, virtualscroller, PrimeReact) {
'use strict';
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
var React__default = /*#__PURE__*/_in... | mit |
cdnjs/cdnjs | ajax/libs/highcharts/9.3.2/indicators/keltner-channels.js | 5499 | /*
Highstock JS v9.3.2 (2021-11-29)
Indicator series type for Highcharts Stock
(c) 2010-2021 Daniel Studencki
License: www.highcharts.com/license
*/
'use strict';(function(b){"object"===typeof module&&module.exports?(b["default"]=b,module.exports=b):"function"===typeof define&&define.amd?define("highcharts/indic... | mit |
cdnjs/cdnjs | ajax/libs/highcharts/7.2.2/es-modules/indicators/stochastic.src.js | 5303 | /* *
*
* License: www.highcharts.com/license
*
* !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
*
* */
'use strict';
import H from '../parts/Globals.js';
import U from '../parts/Utilities.js';
var isArray = U.isArray;
import reduceArrayMixin from '../mixins/reduce-array.js';
import mul... | mit |
C3BI-pasteur-fr/python-course-1 | source/_static/code/inheritance_sequence.py | 1463 | from __future__ import print_function
class Sequence(object):
def __init__(self, name, seq):
"""
:param seq: the sequence
:type seq: string
"""
self.name = name
self.sequence = seq
def __len__(self):
return len(self.sequence)
def to_fasta(self):
... | cc0-1.0 |
Anterotesis/historical-texts | evans-tcp/README.md | 114 | Evans-TCP
=========
Evans Early American Imprints-Text Creation Partnership (Evans-TCP) public file distribution
| cc0-1.0 |
MaxLeap/API-Reference-Android | v1.1.0/serialized-form.html | 6203 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_102) on Thu Jan 05 12:31:51 CST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Serialized Form (mod-core A... | cc0-1.0 |
waiting4bassel/waiting-latex | gitbook/ar/frontmatter/note_to_readers.md | 1404 | # رسالة إلى القراء
أنتظر باسل منذ 15 آذار 2012 … لم أختبر يوماً ألماً أفظع من ألم الانتظار …<br/>
م أعش قط أسوأ من حالة الانتظار .
وأنا في انتظاره ، كونت معظم أفكاري ، حققت أكبر أحلامي ، وصلت لأقصى درجات الحب والجنون<br/>
وأنا في انتظاره ، بكيت كما لم أبكِ ، ضحكت كما لم أضحك ، عشقته كما لم أعشق في حياتي ،<br/>
ونحن ف... | cc0-1.0 |
innoq/smarthome | bundles/core/org.eclipse.smarthome.core.transform.test/src/test/java/org/eclipse/smarthome/core/transform/internal/AbstractTransformationServiceTest.java | 2058 | /**
* Copyright (c) 2014 openHAB UG (haftungsbeschraenkt) and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*/... | epl-1.0 |
McGill-DP-Group/seg.jUCMNav | src/seg/jUCMNav/importexport/z151/generated/Description.java | 1823 | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.9-03/31/2009 04:14 PM(snajper)-fcs
// 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.
// Ge... | epl-1.0 |
acshea/edgware | gaian/GAIANDB_V2.1.7_20160201/doc/javadoc-errors/allclasses-frame.html | 748 | <!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_04-ea) on Mon Feb 01 19:29:33 GMT 2016 -->
<title>All Classes</title>
<meta name="date" content="2016-02-01">
<link rel="stylesheet" ty... | epl-1.0 |
BOTlibre/BOTlibre | swingdroid/source/android/app/ProgressDialog.java | 1233 | /******************************************************************************
*
* Copyright 2014 Paphus Solutions Inc.
*
* Licensed under the Eclipse Public License, Version 1.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
... | epl-1.0 |
OpenLiberty/open-liberty | dev/com.ibm.ws.wsoc/src/com/ibm/ws/wsoc/HandshakeProcessor.java | 20135 | /*******************************************************************************
* Copyright (c) 2017 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... | epl-1.0 |
OpenLiberty/open-liberty | dev/com.ibm.ws.jaxws.clientcontainer_fat/fat/src/com/ibm/ws/jaxws/test/wsr/client/TestUtils.java | 7976 | /*******************************************************************************
* Copyright (c) 2019 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... | epl-1.0 |
OpenLiberty/open-liberty | dev/com.ibm.ws.jpa.tests.spec10.query_fat.common/test-applications/svlquery/src/com/ibm/ws/query/web/loopqueryano/JULoopQueryAnoTest_001_Servlet.java | 11753 | /*******************************************************************************
* Copyright (c) 2021 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... | epl-1.0 |
stour/che | plugins/plugin-java/che-plugin-java-ext-lang-client/src/test/java/org/eclipse/che/ide/ext/java/client/action/MarkDirAsSourceActionTest.java | 8195 | /*******************************************************************************
* Copyright (c) 2012-2016 Codenvy, S.A.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available ... | epl-1.0 |
ESSICS/cs-studio | applications/alarm/alarm-plugins/org.csstudio.alarm.beast/src/org/csstudio/alarm/beast/ui/clientmodel/AlarmClientModel.java | 40140 | /*******************************************************************************
* Copyright (c) 2010 Oak Ridge National Laboratory.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, an... | epl-1.0 |
dlindhol/LaTiS | src/main/scala/latis/ops/Operation2.scala | 3390 | package latis.ops
import scala.Option.option2Iterable
import scala.reflect.runtime.currentMirror
import latis.dm.Dataset
import latis.dm.Function
import latis.dm.Sample
import latis.dm.Scalar
import latis.dm.Tuple
import latis.dm.Variable
import latis.util.LatisProperties
import latis.util.iterator.MappingIterator
im... | epl-1.0 |
OpenLiberty/open-liberty | dev/com.ibm.ws.ejbcontainer.injection_fat/test-applications/EJB3INJSABean.jar/src/com/ibm/ws/ejbcontainer/injection/ann/ejb/CatEJBLocalHome.java | 995 | /*******************************************************************************
* Copyright (c) 2006, 2018 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, an... | epl-1.0 |
openhab/openhab | bundles/binding/org.openhab.binding.zwave/src/main/java/org/openhab/binding/zwave/internal/protocol/commandclass/ZWaveSecureInclusionStateTracker.java | 7375 | /**
* Copyright (c) 2010-2020 Contributors to the openHAB project
*
* See the NOTICE file(s) distributed with this work for additional
* information.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.... | epl-1.0 |
davidhmhernandez/ServiciosyProcesos | Concurrencia1Act7/src/Main.java | 384 | import java.util.logging.Level;
import java.util.logging.Logger;
public class Main {
/**
* @param args
*/
public static void main(String[] args) {
Thread t1 = new Hilo(0);
t1.start();
try {
t1.join();
} catch (InterruptedException ex) {
Logger.getLogger(Main.... | epl-1.0 |
ModelWriter/Tarski | Source/eu.modelwriter.specification.editor/src/eu/modelwriter/specification/editor/scanner/LoadScanner.java | 619 | package eu.modelwriter.specification.editor.scanner;
import org.eclipse.jface.text.TextAttribute;
import org.eclipse.jface.text.rules.IToken;
import org.eclipse.jface.text.rules.RuleBasedScanner;
import org.eclipse.jface.text.rules.Token;
import org.eclipse.swt.graphics.Color;
import org.eclipse.swt.widgets.Display;
... | epl-1.0 |
openhab/openhab | bundles/binding/org.openhab.binding.tinkerforge/src/main/java/org/openhab/binding/tinkerforge/internal/model/impl/ElectrodeImpl.java | 3535 | /**
* Copyright (c) 2010-2020 Contributors to the openHAB project
*
* See the NOTICE file(s) distributed with this work for additional
* information.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.... | epl-1.0 |