code
stringlengths
3
1.05M
repo_name
stringlengths
4
116
path
stringlengths
3
942
language
stringclasses
30 values
license
stringclasses
15 values
size
int32
3
1.05M
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...
forresty/xiami
lib/xiami/song.rb
Ruby
mit
1,928
define({"oj-message":{fatal:"ร้ายแรง",error:"ข้อผิดพลาด",warning:"คำเตือน",info:"ข้อมูล",confirmation:"การยืนยัน","compact-type-summary":"{0}: {1}"},"oj-converter":{summary:"ค่าไม่อยู่ในรูปแบบที่ต้องการ",detail:"ป้อนค่าในรูปแบบที่ต้องการ","plural-separator":", ",hint:{summary:"ตัวอย่าง: {exampleValue}",detail:"ป้อนค่าใ...
peppertech/OracleJET-Samples
MagicEightBall/hybrid/www/js/libs/oj/v2.0.0/resources/nls/th/ojtranslations.js
JavaScript
mit
22,262
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;', '}' ...
clark-stevenson/phaser
v3/src/renderer/webgl/shaders/UntexturedAndTintedShader.js
JavaScript
mit
509
--- 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...
imasaru/sabbath-school-lessons
src/nl/2021-03/12/01.md
Markdown
mit
1,712
--- 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 ...
julianxhokaxhiu/blog.julianxhokaxhiu.com
themes/mediumish-gohugo-theme/exampleSite/content/blog/fifth.md
Markdown
mit
993
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...
tddold/Telerik-Academy-2
Csharp-Part2/08.TextFiles/02.ConcatenateTextFiles/Properties/AssemblyInfo.cs
C#
mit
1,422
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...
cmpayments/payments-sdk-net
Source/CM.Payments.Client.Test/Generated/AfterPayDetailsResponse_Tests.cs
C#
mit
10,445
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 ...
chefspec/chefspec
spec/unit/matchers/state_attrs_matcher_spec.rb
Ruby
mit
2,289
<?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...
soniar4i/Alood
src/MakerLabs/PagerBundle/Pager.php
PHP
mit
4,498
/* * 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...
boggad/jdk9-sample
sample-catalog/spring-jdk9/src/spring.aop/org/springframework/aop/config/AbstractInterceptorDrivenBeanDefinitionDecorator.java
Java
mit
5,744
/************************************************************************ created: 10/17/2004 author: David Durant (based on code by Paul D Turner) *************************************************************************/ /*************************************************************************** * Copy...
ruleless/CEGUI
samples/Tree/Tree.h
C
mit
2,307
<?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;...
bburnichon/PHPExiftool
lib/PHPExiftool/Driver/Tag/DICOM/UPSProgressInformationSequence.php
PHP
mit
844
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...
exercism/xgo
exercises/luhn/example.go
GO
mit
461
$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(...
nanobox-io/nanobox-pkgsrc-base
php54/patches/patch-ext_standard_basic__functions.c
C
mit
553
/* 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 ...
spadin/coverphoto
node_modules/grunt-contrib/node_modules/grunt-contrib-yuidoc/node_modules/yuidocjs/node_modules/yui/node-base/node-base-debug.js
JavaScript
mit
33,629
## 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...
mdpiper/topoflow
topoflow/utils/cfg_files.py
Python
mit
12,732
// 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...
lemmy/tlaplus
tlatools/org.lamport.tlatools/src/tlc2/tool/liveness/LNAll.java
Java
mit
2,829
[![Build Status](https://travis-ci.org/jsx-ir/babel-plugin-jsx.svg?branch=master)](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...
OpenJSX/babel-plugin-jsx
README.md
Markdown
mit
3,490
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(...
liangjg/openmc
tools/ci/travis-install.py
Python
mit
2,019
# 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...
hillerlab/GenomeAlignmentTools
kent/src/hg/lib/cnpRedon.sql
SQL
mit
689
<?php return array ( 'generalDesc' => array ( 'NationalNumberPattern' => '[2-9]\\d{6}', 'PossibleNumberPattern' => '\\d{7}', 'ExampleNumber' => '', ), 'fixedLine' => array ( 'NationalNumberPattern' => ' (?: 2(?: [034789]\\d| 1[0-7] ...
kokone/wp-phone-number
libphonenumber/data/PhoneNumberMetadata_MU.php
PHP
mit
2,103
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...
CDLUC3/dash-xtf
xtf/WEB-INF/src/org/cdlib/xtf/textIndexer/IdxTreeDictMaker.java
Java
mit
6,314
/* 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...
tangcg/nanomsg
src/protocol.h
C
mit
7,921
<script src="/fixtures/src/test1.js"></script> <script src="/fixtures/src/test2.js"></script> <script src="/assets/js_test_with_templates.jst"></script>
stricte/jammit
test/fixtures/tags/js_individual_includes.html
HTML
mit
152
<?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...
AndrePessoa/Topo
topo/app/core/email.class.php
PHP
mit
3,191
'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...
scriptit/github-basic
test/async.js
JavaScript
mit
5,038
<!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...
firsara/noop
examples/model/index.html
HTML
mit
444
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...
hauledev/has_account_engine
spec/dummy/app/controllers/people_controller.rb
Ruby
mit
624
// // 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
mrhyh/ZYChat
ZYChat-EaseMob/ZYChat/ChatDetail/UITableViewCell/ChatCell/GJGCChatFriendPostMessageCell.h
C
mit
292
// 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 ===...
CatsPoo/ShiftOnline
angular.src/node_modules/ngx-bootstrap/bs-moment/i18n/ru.js
JavaScript
mit
6,071
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...
AzureCAT-GSI/DevCamp
HOL/node/03-azuread-office365/start/routes/dashboard.js
JavaScript
mit
2,173
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
nnluukhtn/coffee_run
spec/controllers/pusher_controller_spec.rb
Ruby
mit
218
 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 ...
smiley22/S22.Xmpp
Extensions/XEP-0107/Mood.cs
C#
mit
9,671
// // 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...
LeaderQiu/MeiTuanHD
04-美团HD/Classes/Other/Lib/DP/DPRequest.h
C
mit
1,502
using System.Windows.Controls; namespace HeroesMatchTracker.Views.RawData { /// <summary> /// Interaction logic for RawMatchReplaysControl.xaml /// </summary> public partial class RawMatchReplaysControl : UserControl { public RawMatchReplaysControl() { InitializeCompone...
koliva8245/HeroesParserData
HeroesMatchTracker/Views/RawData/RawMatchReplaysControl.xaml.cs
C#
mit
346
<?php return [ 'nav-back' => '回上一頁', 'nav-new' => '新增資料夾', 'nav-upload' => '上傳檔案', 'nav-thumbnails' => '縮圖顯示', 'nav-list' => '列表顯示', 'menu-rename' => '重新命名', 'menu-delete' => '刪除', 'menu-view' => '預覽', 'menu-download' =>...
crocodic-studio/simple-stock-manager
vendor/unisharp/laravel-filemanager/src/lang/zh-TW/lfm.php
PHP
mit
2,606
#!/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
tomaaron/raiden
.travis/make_dag.sh
Shell
mit
193
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...
elgubenis/backbone.intercept
gruntfile.js
JavaScript
mit
2,239
# 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...
Etiene/sailor_website
docs/0.5/contributing.md
Markdown
mit
10,892
Antes de empezar a escribir código, es buena idea obtener una visión general de cómo funciona una aplicación de Ember. ![conceptos básicos de Ember](../../images/ember-core-concepts/ember-core-concepts.png) ## Enrutador y gestores de ruta Supongamos que vamos a escribir una aplicación web que permite a los usuarios ...
boztek/guides
source/localizable/getting-started/core-concepts.es-ES.md
Markdown
mit
3,653
System.register([], function (_export, _context) { "use strict"; var p; return { setters: [], execute: function () { _export("p", p = 4); _export("p", p); } }; });
ModuleLoader/es-module-loader
test/fixtures/register-modules/rebinding.js
JavaScript
mit
197
#!/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...
gregvonkuster/icqsol
examples/addSurfaceFieldFromExpression.py
Python
mit
3,166
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...
Kittyfisto/Tailviewer
src/Tailviewer.Core/Filters/ExpressionEngine/IsExpression.cs
C#
mit
2,319
<?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...
tesler/cspt-moodle
moodle/lang/ru/enrol_imsenterprise.php
PHP
mit
11,218
<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...
charshu/birls_real
src/resources/lib/angular2-image-popup/index.html
HTML
mit
2,259
module.exports = { //get global stats 'GET /stat': { controller: "StatController", action: "getGlobalStat" } }
badfuture/huoshui-backend-api
api/routes/statRoute.js
JavaScript
mit
126
/** * 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: * ...
paixaop/node-sodium
src/crypto_shorthash.cc
C++
mit
1,709
# 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...
jnicklas/capybara
lib/capybara/spec/session/scroll_spec.rb
Ruby
mit
5,689
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...
mafredri/cdp
protocol/runtime/testdata/log_input_gen.go
GO
mit
2,730
<?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(...
MarkThink/OROCRM
vendor/bundles/besimple/soap/src/BeSimple/SoapClient/Tests/AxisInterop/TestCase.php
PHP
mit
602
'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...
ocadni/citychrone
node_modules/mathjs/lib/function/algebra/simplify/simplifyConstant.js
JavaScript
mit
7,764
<?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';...
valesbc/valesbc.github.io
scripts/form_throttle.php
PHP
mit
2,961
<?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...
mahdikallel/IHM
web/template/index.php/component/search/index7921.html
HTML
mit
572
/* * 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...
yorozuyah/TPC-H_like_for_MySQL
dbt5-0.1.0/egen/inc/FlatLastTradeLoad.h
C
mit
2,788
# Change log All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org/).
algorich/iugu-ruby
CHANGELOG.md
Markdown
mit
152
/** * @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. * *...
photonstorm/phaser
src/geom/mesh/RotateFace.js
JavaScript
mit
1,512
/******************************************************************************* * 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 ...
cloudcomputinghust/IoT
docker/oneM2M/CSE_IPE/org.eclipse.om2m/org.eclipse.om2m.core/src/main/java/org/eclipse/om2m/core/controller/PollingChannelUriController.java
Java
mit
1,885
/*! * 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...
cdnjs/cdnjs
ajax/libs/iCheck/1.0.3/icheck.js
JavaScript
mit
14,225
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...
dbisUnibas/ADAMpro
src/main/scala/org/vitrivr/adampro/communication/api/EntityOp.scala
Scala
mit
7,563
/* 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...
benghaem/cavrr
src/IOREG.h
C
mit
6,760
/*! * 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: ...
ohmygodvt95/wevivu
vendor/assets/components/angular-material/modules/js/sidenav/sidenav.css
CSS
mit
4,036
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...
zapnap/voting
lib/voting/domain.rb
Ruby
mit
352
// 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"; ...
ceolter/angular-grid
community-modules/core/dist/es6/rendering/cellComp.d.ts
TypeScript
mit
6,950
<!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...
dolymood/angular-packages
angular-1.3.17/docs/examples/example-example84/index-production.html
HTML
mit
812
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...
ccpgames/dbkit
sql-core/zsystem/zsystem.Settings_Value.sql
SQL
mit
369
using System; using Csla; namespace Invoices.DataAccess.Sql { public partial class ProductTypeCachedNVLDal { } }
CslaGenFork/CslaGenFork
trunk/CoverageTest/Invoices-CS-DAL-DR/Invoices.DataAccess.Sql/ProductTypeCachedNVLDal.cs
C#
mit
135
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({ ...
WeebDev/lolisafe
src/api/routes/admin/usersGET.js
JavaScript
mit
473
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...
ceolter/angular-grid
enterprise-modules/excel-export/src/excelExport/excelXlsxFactory.ts
TypeScript
mit
3,835
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; };
ceolter/angular-grid
grid-packages/ag-grid-docs/documentation/src/pages/master-detail-custom-detail/examples/simple-custom-detail/detailCellRenderer_vanilla.js
JavaScript
mit
294
<div> Connection timeout for JIRA REST API calls (in seconds) </div>
deki/jira-plugin
src/main/resources/hudson/plugins/jira/JiraSite/help-timeout.html
HTML
mit
68
/* * * * (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, ...
cdnjs/cdnjs
ajax/libs/highcharts/8.0.0/es-modules/annotations/annotations.src.js
JavaScript
mit
42,338
# 뎃찌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 을 실행해요. ![사진1](img0.png) ***3.*** `File` - `Preferences` 를 클릭, 혹은 `Ctrl + P` 를 눌러요 ![사진1](img1.png) ***4.*** `Install....
Usagination/Decchi
Decchi-Plugins/foo_decchi/README.md
Markdown
mit
566
#!/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...
RedHat-Eng-PGM/schedules-tools
schedules_tools/diff.py
Python
mit
16,312
/* * 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...
cgvarela/passenger
src/cxx_supportlib/MemoryKit/palloc.h
C
mit
4,866
<!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-...
khalid-bd/psa-recovery
recouvrement-multi/03_1compte.html
HTML
mit
9,274
@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-...
kdelfour/humhub-superhero-theme
css/superhero.css
CSS
mit
145,438
--- name: cljs.repl.browser/repl-env see also: --- ## Summary ## Details ## Examples
cljsinfo/cljs-api-docs
docfiles/cljs.repl.browser/repl-env.md
Markdown
mit
88
#!/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...
jerowe/bioconda-recipes
recipes/bioconductor-simpintlists/post-link.sh
Shell
mit
1,430
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...
cdnjs/cdnjs
ajax/libs/primereact/6.5.1/multiselect/multiselect.js
JavaScript
mit
72,104
/* 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...
cdnjs/cdnjs
ajax/libs/highcharts/9.3.2/indicators/keltner-channels.js
JavaScript
mit
5,499
/* * * * 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...
cdnjs/cdnjs
ajax/libs/highcharts/7.2.2/es-modules/indicators/stochastic.src.js
JavaScript
mit
5,303
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): ...
C3BI-pasteur-fr/python-course-1
source/_static/code/inheritance_sequence.py
Python
cc0-1.0
1,463
Evans-TCP ========= Evans Early American Imprints-Text Creation Partnership (Evans-TCP) public file distribution
Anterotesis/historical-texts
evans-tcp/README.md
Markdown
cc0-1.0
114
<!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...
MaxLeap/API-Reference-Android
v1.1.0/serialized-form.html
HTML
cc0-1.0
6,203
# رسالة إلى القراء أنتظر باسل منذ 15 آذار 2012 … لم أختبر يوماً ألماً أفظع من ألم الانتظار …<br/> م أعش قط أسوأ من حالة الانتظار . وأنا في انتظاره ، كونت معظم أفكاري ، حققت أكبر أحلامي ، وصلت لأقصى درجات الحب والجنون<br/> وأنا في انتظاره ، بكيت كما لم أبكِ ، ضحكت كما لم أضحك ، عشقته كما لم أعشق في حياتي ،<br/> ونحن ف...
waiting4bassel/waiting-latex
gitbook/ar/frontmatter/note_to_readers.md
Markdown
cc0-1.0
1,404
/** * 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 */...
innoq/smarthome
bundles/core/org.eclipse.smarthome.core.transform.test/src/test/java/org/eclipse/smarthome/core/transform/internal/AbstractTransformationServiceTest.java
Java
epl-1.0
2,058
// // 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...
McGill-DP-Group/seg.jUCMNav
src/seg/jUCMNav/importexport/z151/generated/Description.java
Java
epl-1.0
1,823
<!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...
acshea/edgware
gaian/GAIANDB_V2.1.7_20160201/doc/javadoc-errors/allclasses-frame.html
HTML
epl-1.0
748
/****************************************************************************** * * 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 * ...
BOTlibre/BOTlibre
swingdroid/source/android/app/ProgressDialog.java
Java
epl-1.0
1,233
/******************************************************************************* * 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...
OpenLiberty/open-liberty
dev/com.ibm.ws.wsoc/src/com/ibm/ws/wsoc/HandshakeProcessor.java
Java
epl-1.0
20,135
/******************************************************************************* * 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...
OpenLiberty/open-liberty
dev/com.ibm.ws.jaxws.clientcontainer_fat/fat/src/com/ibm/ws/jaxws/test/wsr/client/TestUtils.java
Java
epl-1.0
7,976
/******************************************************************************* * 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...
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
Java
epl-1.0
11,753
/******************************************************************************* * 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 ...
stour/che
plugins/plugin-java/che-plugin-java-ext-lang-client/src/test/java/org/eclipse/che/ide/ext/java/client/action/MarkDirAsSourceActionTest.java
Java
epl-1.0
8,195
/******************************************************************************* * 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...
ESSICS/cs-studio
applications/alarm/alarm-plugins/org.csstudio.alarm.beast/src/org/csstudio/alarm/beast/ui/clientmodel/AlarmClientModel.java
Java
epl-1.0
40,140
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...
dlindhol/LaTiS
src/main/scala/latis/ops/Operation2.scala
Scala
epl-1.0
3,390
/******************************************************************************* * 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...
OpenLiberty/open-liberty
dev/com.ibm.ws.ejbcontainer.injection_fat/test-applications/EJB3INJSABean.jar/src/com/ibm/ws/ejbcontainer/injection/ann/ejb/CatEJBLocalHome.java
Java
epl-1.0
995
/** * 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....
openhab/openhab
bundles/binding/org.openhab.binding.zwave/src/main/java/org/openhab/binding/zwave/internal/protocol/commandclass/ZWaveSecureInclusionStateTracker.java
Java
epl-1.0
7,375
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....
davidhmhernandez/ServiciosyProcesos
Concurrencia1Act7/src/Main.java
Java
epl-1.0
384
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; ...
ModelWriter/Tarski
Source/eu.modelwriter.specification.editor/src/eu/modelwriter/specification/editor/scanner/LoadScanner.java
Java
epl-1.0
619
/** * 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....
openhab/openhab
bundles/binding/org.openhab.binding.tinkerforge/src/main/java/org/openhab/binding/tinkerforge/internal/model/impl/ElectrodeImpl.java
Java
epl-1.0
3,535