repo_name stringlengths 4 116 | path stringlengths 3 942 | size stringlengths 1 7 | content stringlengths 3 1.05M | license stringclasses 15
values |
|---|---|---|---|---|
resin-io-library/base-images | balena-base-images/node/coral-dev/ubuntu/bionic/17.6.0/run/Dockerfile | 2905 | # AUTOGENERATED FILE
FROM balenalib/coral-dev-ubuntu:bionic-run
ENV NODE_VERSION 17.6.0
ENV YARN_VERSION 1.22.4
RUN buildDeps='curl libatomic1' \
&& set -x \
&& for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pgp.com ... | apache-2.0 |
resin-io-library/base-images | balena-base-images/dotnet/odroid-xu4/ubuntu/focal/3.1-aspnet/run/Dockerfile | 3157 | # AUTOGENERATED FILE
FROM balenalib/odroid-xu4-ubuntu:focal-run
RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
ca-certificates \
\
# .NET Core dependencies
libc6 \
libgcc1 \
libgssapi-krb5-2 \
libicu66 \
... | apache-2.0 |
epishkin/scalatest-google-code | src/test/scala/org/scalatest/fixture/FixtureFeatureSpecSpec.scala | 38866 | /*
* Copyright 2001-2009 Artima, Inc.
*
* 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 agre... | apache-2.0 |
phenoxim/nova | nova/tests/functional/compute/test_instance_list.py | 23474 | # 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
# d... | apache-2.0 |
jonathanqbo/jpa | src/main/java/bq/jpa/demo/lifecycle/domain/ContractEmployee.java | 2171 | /*
Copyright (c) 2014 (Jonathan Q. Bo)
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 use, copy, modify, merge, publish, distribut... | apache-2.0 |
simon-whitehead/go-debug | utils.go | 393 | package godebug
import (
"regexp"
"strconv"
"strings"
)
func getFileDetails(stack string) (string, int) { // file name, line that called godebug.Break(), and a "preview line" to begin from
re, _ := regexp.Compile(`(?m)^(.*?)(:)(\d+)`)
res := re.FindAllStringSubmatch(stack, -1)
fn := strings.Trim(res[1][1], " \r... | apache-2.0 |
beav/netty-ant | doc/xref/org/jboss/netty/handler/timeout/IdleStateHandler.html | 60775 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de_DE" lang="de_DE">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>IdleStateHandler xref</title>
<link type... | apache-2.0 |
xorware/android_frameworks_base | docs/html/sdk/api_diff/24/changes/java.util.logging.StreamHandler.html | 5383 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//www.w3.org/TR/html4/strict.dtd">
<HTML style="overflow:auto;">
<HEAD>
<meta name="generator" content="JDiff v1.1.0">
<!-- Generated by the JDiff Javadoc doclet -->
<!-- (http://www.jdiff.org) -->
<meta name="description" content="JDiff is a Javadoc doclet which gener... | apache-2.0 |
AlanJager/zstack | header/src/main/java/org/zstack/header/network/service/VirtualRouterAfterDetachNicExtensionPoint.java | 243 | package org.zstack.header.network.service;
import org.zstack.header.vm.VmNicInventory;
/**
* Created by yaohua.wu on 8/14/2019.
*/
public interface VirtualRouterAfterDetachNicExtensionPoint {
void afterDetachNic(VmNicInventory nic);
}
| apache-2.0 |
seggcsont/HiitTimerWeb | public/editTraining.html | 2008 | <div class="row">
<div class="panel panel-default">
<h2>{{ training.title }}</h2>
<span class="text-danger not_remove" ng-show="is_changed">
Training has been changed! Don't forget to save it.
<button class="btn btn-danger btn-sm" type="button" ng-click="save()">Save</button>
</span>
<tabl... | apache-2.0 |
Tealium/nagios | recipes/pagerduty.rb | 2473 | #
# Author:: Jake Vanderdray <jvanderdray@customink.com>
# Cookbook Name:: nagios
# Recipe:: pagerduty
#
# Copyright 2011, CustomInk LLC
#
# 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
#
# ... | apache-2.0 |
swetland/m3dev | arch/arm-cm3/include/arch/cpu.h | 308 | #ifndef _CPU_H_
#define _CPU_H_
static inline void disable_interrupts(void) {
asm("cpsid i" : : : "memory");
}
static inline void enable_interrupts(void) {
asm("cpsie i" : : : "memory");
}
void irq_enable(unsigned n);
void irq_disable(unsigned n);
void irq_set_base(unsigned vector_table_addr);
#endif
| apache-2.0 |
adaptris/interlok | interlok-core/src/test/java/com/adaptris/core/stubs/MockMessageProducer.java | 3368 | /*
* Copyright 2015 Adaptris Ltd.
*
* 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 t... | apache-2.0 |
MAnbar/SearchEngine | Crawler/src/crawler/Main.java | 5900 | package crawler;
import java.beans.PropertyVetoException;
import java.io.BufferedReader;
import java.io.File;
import java.io.IOException;
import java.io.InputStreamReader;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.Scanner;
public class Main
{
public static void mai... | apache-2.0 |
amida-tech/blue-button-model | test/samples/unit/cda_email.js | 320 | "use strict";
var samples = {};
module.exports = samples;
samples.valid_0 = {
"address": "xde@sjdu.com",
"type": "work place"
};
samples.valid_1 = {
"address": "xde@sjdu.com"
};
samples.invalid_0 = {};
samples.invalid_1 = {
"address": "xde@sjdu.com",
"type": "work place",
"other": "na"
};
| apache-2.0 |
chinhnc/floodlight | lib/apache-jena-2.10.1/javadoc-core/com/hp/hpl/jena/reasoner/rulesys/RuleContext.html | 17319 | <!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_21) on Sat May 11 22:07:15 BST 2013 -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>RuleContext (Apache... | apache-2.0 |
mdoering/backbone | life/Fungi/Ascomycota/Eurotiomycetes/Eurotiales/Trichocomaceae/Penicillium/Penicillium inusitatum/README.md | 264 | # Penicillium inusitatum D.B. Scott, 1968 SPECIES
#### Status
ACCEPTED
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
Mycopath. Mycol. appl. 36: 20 (1968)
#### Original name
Penicillium inusitatum D.B. Scott, 1968
### Remarks
null | apache-2.0 |
nodekit-io/nodekit-windows | src/nodekit/NKScripting/common/engines/chakra/Engine/Native_uwp.cs | 24924 | #if WINDOWS_UWP
namespace io.nodekit.NKScripting.Engines.Chakra
{
using System;
using System.Diagnostics.CodeAnalysis;
using System.Runtime.InteropServices;
using System.Threading.Tasks;
/// <summary>
/// Native interfaces.
/// </summary>
public static class Native
{
///... | apache-2.0 |
Vilsol/NMSWrapper | src/main/java/me/vilsol/nmswrapper/wraps/unparsed/NMSCommandBlockListenerAbstract.java | 5334 | package me.vilsol.nmswrapper.wraps.unparsed;
import me.vilsol.nmswrapper.NMSWrapper;
import me.vilsol.nmswrapper.reflections.ReflectiveClass;
import me.vilsol.nmswrapper.reflections.ReflectiveMethod;
import me.vilsol.nmswrapper.wraps.NMSWrap;
import org.bukkit.command.CommandSender;
@ReflectiveClass(name = "CommandBl... | apache-2.0 |
duanzhenglong/xianchufang | xianchufang/xianchufang/Class/ShoppingCart/Controller/LJShoppingCartViewController.h | 818 | //
// LJFoodCircleViewController.h
// meishimeike
//
// Created by zhenglong duan on 11/02/2017.
// Copyright © 2017 zhenglong duan. All rights reserved.
//
#import "LJBaseViewController.h"
@interface LJShoppingCartViewController : LJBaseViewController
/*** 结算按钮 ***/
@property (nonatomic,strong) UIButton *settlem... | apache-2.0 |
glammedia/phoenix | phoenix-core/src/main/java/org/apache/phoenix/compile/DeleteCompiler.java | 30200 | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | apache-2.0 |
supershiro/Cancer | src/libs/const.js | 1357 | /**
* define global constant
*
* Created by Shiro on 16/12/20.
*/
const NAV = [
{name: 'Home', link: '/index'},
{name: 'Editor', link: '/editor'},
{name: 'Project', link: '/project', children: [
{name: 'RMSP', link: '/project/rmsp'},
{name: 'test', link: '/project/'},
{name: 'test', link: '/projec... | apache-2.0 |
Hexworks/zircon | docs/2020.2.0-RELEASE-KOTLIN/zircon.core/zircon.core/org.hexworks.zircon.internal.resource/-built-in-c-p437-tileset-resource/-c-o-o-z_16-x16/name.html | 3593 | <html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>name</title>
<link href="../../../../images/logo-icon.svg" rel="icon" type="image/svg">
<script>var pathToRoot = "../../../../";</script>
<script type="text/javascript" src="../../../../script... | apache-2.0 |
skremp/pictura-io | servlet/src/main/java/io/pictura/servlet/CacheControlHandler.java | 2439 | /**
* Copyright 2015 Steffen Kremp
*
* 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 i... | apache-2.0 |
GIP-RECIA/esco-grouper-ui | ext/bundles/myfaces-api/src/main/java/javax/faces/event/FacesListener.java | 2038 | /**
* Copyright (C) 2009 GIP RECIA http://www.recia.fr
* @Author (C) 2009 GIP RECIA <contact@recia.fr>
* @Contributor (C) 2009 SOPRA http://www.sopragroup.com/
* @Contributor (C) 2011 Pierre Legay <pierre.legay@recia.fr>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this f... | apache-2.0 |
atelierspierrot/patterns | src/Patterns/Interfaces/OptionableInterface.php | 1567 | <?php
/**
* This file is part of the Patterns package.
*
* Copyright (c) 2013-2016 Pierre Cassat <me@e-piwi.fr> and contributors
*
* 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
*
*... | apache-2.0 |
wildfly-swarm/wildfly-swarm-javadocs | 2017.12.1/apidocs/org/wildfly/swarm/config/management/access/class-use/RoleMappingConsumer.html | 12296 | <!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_151) on Wed Dec 13 10:32:43 MST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Interface org.wildf... | apache-2.0 |
stryker-mutator/stryker | packages/jest-runner/test/unit/config-loaders/custom-config-loader.spec.ts | 5452 | import fs from 'fs';
import path from 'path';
import { expect } from 'chai';
import sinon from 'sinon';
import { factory } from '@stryker-mutator/test-helpers';
import * as utils from '@stryker-mutator/util';
import type { Config } from '@jest/types';
import { CustomJestConfigLoader } from '../../../src/config-loader... | apache-2.0 |
lixinjian/MyFirstWinner | app/src/main/java/com/xinjian/winner/di/qualifier/VtexUrl.java | 334 | package com.xinjian.winner.di.qualifier;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import javax.inject.Qualifier;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
/**
* Created by codeest on 2017/2/26.
*/
@Qualifier
@Documented
@Retention(RUNTIME)
public @interface... | apache-2.0 |
wilfriedcomte/centreon-plugins | hardware/ups/powerware/snmp/mode/outputsource.pm | 4126 | #
# Copyright 2018 Centreon (http://www.centreon.com/)
#
# Centreon is a full-fledged industry-strength solution that meets
# the needs in IT infrastructure and application monitoring for
# service performance.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in com... | apache-2.0 |
agileowl/tapestry-5 | tapestry-jpa/src/test/java/org/apache/tapestry5/jpa/integration/app5/ExplicitPersistenceProviderClassTest.java | 1014 | // Copyright 2012 The Apache Software Foundation
//
// 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 l... | apache-2.0 |
debkh/jagen | client/components/create-menu/directives/documentsList.html | 543 | <ng-form name="vm.formSave">
<div layout="row">
<md-input-container flex="100">
<label>Document</label>
<md-select name="item" ng-model="vm.document" required>
<md-option ng-value="item" ng-repeat="item in vm.documents">{{item.title}}</md-option>
</md-select>
<div class="errors"
... | apache-2.0 |
driftyco/ionic-site | content/docs/v3/3.1.0/api/components/scroll/Scroll/index.md | 2304 | ---
layout: "fluid/docs_base"
version: "3.1.0"
versionHref: "/docs/v3/3.1.0"
path: ""
category: api
id: "scroll"
title: "Scroll"
header_sub_title: "Ionic API Documentation"
doc: "Scroll"
docType: "class"
show_preview_device: true
preview_device_url: "/docs/v3/demos/src/scroll/www/"
angular_controller: APIDemoCtrl
---
... | apache-2.0 |
harshavardhana/minio | cmd/api-router.go | 15882 | /*
* MinIO Cloud Storage, (C) 2016-2020 MinIO, Inc.
*
* 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 applicab... | apache-2.0 |
VVSilinenko/java_first | addressbook-web-tests/src/test/java/ru/stqa/pft/addressbook/appmanager/ContactHelper.java | 5422 | package ru.stqa.pft.addressbook.appmanager;
import org.openqa.selenium.By;
import org.openqa.selenium.NoSuchElementException;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import ru.stqa.pft.addressbook.model.ContactData;
import java.util.ArrayList;
import java.util.List;
/**
* Create... | apache-2.0 |
wichtounet/jtheque-core | jtheque-modules/src/main/java/org/jtheque/modules/impl/RepositoryImpl.java | 2249 | package org.jtheque.modules.impl;
/*
* Copyright JTheque (Baptiste Wicht)
*
* 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
*
... | apache-2.0 |
KevinLiLu/kafka | core/src/test/scala/unit/kafka/server/LogRecoveryTest.scala | 9565 | /**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may... | apache-2.0 |
jentfoo/aws-sdk-java | aws-java-sdk-organizations/src/main/java/com/amazonaws/services/organizations/model/transform/DisablePolicyTypeRequestProtocolMarshaller.java | 2748 | /*
* Copyright 2014-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "licen... | apache-2.0 |
youwenliang/Project-6x6 | dist/scripts/vendor/1aad92e4.modernizr.js | 247 | /* Modernizr (Custom Build) | MIT & BSD
* Build: http://modernizr.com/download/#-shiv-load-cssclasses-csstransforms3d-flexbox-opacity-touch-cors-svg
*/
;Modernizr.addTest("cors",!!(window.XMLHttpRequest&&"withCredentials"in new XMLHttpRequest)); | apache-2.0 |
lessthanoptimal/BoofCV | demonstrations/src/main/java/boofcv/demonstrations/imageprocessing/DemonstrationInterpolateScaleApp.java | 4261 | /*
* Copyright (c) 2011-2020, Peter Abeles. All Rights Reserved.
*
* This file is part of BoofCV (http://boofcv.org).
*
* 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-2.0 |
genericsystem/genericsystem2015 | gs-reactor/src/main/java/org/genericsystem/reactor/contextproperties/StylesDefaults.java | 1576 | package org.genericsystem.reactor.contextproperties;
import org.genericsystem.reactor.Context;
import org.genericsystem.reactor.HtmlDomNode;
import org.genericsystem.reactor.Tag;
import javafx.collections.MapChangeListener;
import javafx.collections.ObservableMap;
public interface StylesDefaults extends MapStringDef... | apache-2.0 |
hmusavi/asn1_codec | ieee_1609dot2_api/per_opentype.c | 9737 | /*
* Copyright (c) 2007 Lev Walkin <vlm@lionet.info>. All rights reserved.
* Redistribution and modifications are permitted subject to BSD license.
*/
#include <asn_internal.h>
#include <per_support.h>
#include <constr_TYPE.h>
#include <per_opentype.h>
typedef struct uper_ugot_key {
asn_per_data_t oldpd; /* Old pe... | apache-2.0 |
masneyb/pi-dinger | README.md | 3661 | # pi-dinger
This project allows ringing one or two bells with varying sequences from a
Raspberry Pi using a solenoid. A [Hubot](https://github.com/github/hubot)
plugin is provided so that you can ring the bell from inside a chat room.
The Hubot plugin uses [Amazon SQS](https://aws.amazon.com/sqs/) so that
your Raspber... | apache-2.0 |
shatian114/tpWeb | userInterface.md | 5991 | ## 用户类
这个类的父路径为userManager,所有这个类下面的接口在ajax的路径前面都是`userManager`,如注册的接口是`regist.php`,则ajax的url参数为`/userManager/regist.php`。
### 注册(regist.php)
#### up
* name:用户名
* password: 密码(在前端将密码加密再传过来)
#### return
* 0、1如概述
* 2:用户名已注册
### 登陆(login.php)
#### up
* loginType:登陆方式,可以有一下几种
* name:用户名
* identity:身份证
* mobilePhone:手机... | apache-2.0 |
ifilipenko/Building-Blocks | src/BuildingBlocks.Store.RavenDB.Tests/RavenDbSessionTests.cs | 1629 | using FluentAssertions;
using NUnit.Framework;
using Raven.Client.Embedded;
namespace BuildingBlocks.Store.RavenDB.Tests
{
[TestFixture]
public class RavenDbSessionTests
{
private EmbeddableDocumentStore _documentStore;
private RavenDbSession _session;
[TestFixtureSetU... | apache-2.0 |
ajor/bpftrace | src/bpftrace.cpp | 17280 | #include <assert.h>
#include <fstream>
#include <iomanip>
#include <iostream>
#include <regex>
#include <sstream>
#include <sys/epoll.h>
#include "bcc_syms.h"
#include "perf_reader.h"
#include "bpforc.h"
#include "bpftrace.h"
#include "attached_probe.h"
#include "triggers.h"
namespace bpftrace {
int BPFtrace::add_p... | apache-2.0 |
DeLaSalleUniversity-Manila/ForkHub-macexcel | app/src/main/java/com/github/zion/ui/gist/StarredGistsFragment.java | 1214 | /*
* Copyright 2012 GitHub Inc.
*
* 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 ... | apache-2.0 |
USC-NSL/SIF | lib/PScout/bin/parseandroidmanifest.pl | 11115 | #!/usr/bin/perl
use XML::Simple;
use Data::Dumper;
open MANLIST, "<manifestlist" or die $!;
while (<MANLIST>) {
chomp($_);
$file = $_;
next if (-B "$file");
print "Processing $file -----\n";
$xml = new XML::Simple;
eval{
$data = $xml->XMLin($file);
};
if ($@) {
print "ERROR! Failed to parse $file...\n";
}
$pack... | apache-2.0 |
dave-tucker/intellij-yang | gen/com/intellij/lang/psi/impl/YangPrefixStmtImpl.java | 1626 | /*
* Copyright 2014 Red Hat, Inc.
*
* 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 t... | apache-2.0 |
DaanHoogland/cloudstack | server/src/main/java/com/cloud/storage/upload/params/UploadParamsBase.java | 6233 | // Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may... | apache-2.0 |
clamburger/pictshare | README.md | 17053 | # PictShare
**[Live Demo](https://www.pictshare.net)**
PictShare is a multi lingual, open source image hosting service with a simple resizing and upload API that you can host yourself.
---
[](https://rocket.haschek.at/channel/pictshare)
[![Apache Lice... | apache-2.0 |
jsmale/MassTransit | src/MassTransit.RabbitMqTransport/SequentialHostnameSelector.cs | 2154 | // Copyright 2007-2016 Chris Patterson, Dru Sellers, Travis Smith, et. al.
//
// 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... | apache-2.0 |
som-snytt/dotty | library/src/scala/annotation/internal/ContextResultCount.scala | 329 | package scala.annotation
package internal
/** An annotation that's aitomatically added for methods
* that have one or more nested context closures as their right hand side.
* The parameter `n` is an Int Literal that tells how many nested closures
* there are.
*/
class ContextResultCount(n: Int) extends StaticAn... | apache-2.0 |
inputx/code-ref-doc | rebbit/_variables/display_names.html | 5233 | <!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html>
<head>
<title>PHPXRef 0.7.1 : Unnamed Project : Variable Reference: $display_names</title>
<link rel="stylesheet" href="../sample.css" type="text/css">
<link rel="stylesheet" href="../sample-pri... | apache-2.0 |
ultradns/ultra-java-api | src/main/java/com/neustar/ultraservice/schema/v01/HeaderRule.java | 3436 |
package com.neustar.ultraservice.schema.v01;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for HeaderRule complex type.
*
* <p>The following schema fra... | apache-2.0 |
dropwizard/metrics | metrics-jetty11/src/test/java/io/dropwizard/metrics/jetty11/InstrumentedHandlerTest.java | 9140 | package io.dropwizard.metrics.jetty11;
import com.codahale.metrics.MetricRegistry;
import org.eclipse.jetty.client.HttpClient;
import org.eclipse.jetty.client.api.ContentResponse;
import org.eclipse.jetty.server.Request;
import org.eclipse.jetty.server.Server;
import org.eclipse.jetty.server.ServerConnector;
import or... | apache-2.0 |
UniversalDependencies/docs | treebanks/bg_btb/bg-feat-NumType.md | 4252 | ---
layout: base
title: 'Statistics of NumType in UD_Bulgarian'
udver: '2'
---
## Treebank Statistics: UD_Bulgarian: Features: `NumType`
This feature is universal.
It occurs with 2 different values: `Card`, `Ord`.
3629 tokens (2%) have a non-empty value of `NumType`.
726 types (3%) occur at least once with a non-em... | apache-2.0 |
jumpstarter-io/nova | nova/api/openstack/compute/contrib/floating_ips.py | 12423 | # Copyright 2011 OpenStack Foundation
# Copyright (c) 2011 X.commerce, a business unit of eBay Inc.
# Copyright 2011 Grid Dynamics
# Copyright 2011 Eldar Nugaev, Kirill Shileev, Ilya Alekseyev
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with... | apache-2.0 |
bbrangeo/OpenSourceBIMaaS | dev/foundation/src/main/java/com/bimaas/exception/JSONErrorBuilder.java | 1064 | /**
*
*/
package com.bimaas.exception;
import org.json.JSONObject;
/**
* Builds the errors and return a {@link JSONObject} with the error.
* <p>
* <code>
* {"response":
* {"error|warning": "error details"}
* }
* </code>
* </p>
*
* @author isuru
*
*/
public class JSONErrorBuilder {
/**
* Build ... | apache-2.0 |
gallandarakhneorg/sarl | eclipse-products/contribs/io.sarl.examples/io.sarl.examples.tests/src/io/sarl/examples/tests/FakeTest.java | 772 | /*
* Copyright (C) 2014-2016 the original authors 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 b... | apache-2.0 |
Funi1234/InternetSpaceships | python/main/eve_universe.py | 1437 | #/usr/bin/python
"""
Author: David Benson (dbenson@tssg.org)
Date: 02/09/2013
Description: This python module is responsible for storing information about all
systems within the eve universe.
"""
import system
import datetime
import evelink.api
class EveUniverse:
""" This class acts as a storage class for the al... | apache-2.0 |
moyq5/weixin-popular | src/main/java/weixin/popular/bean/message/mass/sendall/Filter.java | 1712 | package weixin.popular.bean.message.mass.sendall;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* 用于设定图文消息的接收者
* @author Moyq5
* @date 2016年9月17日
*/
public class Filter {
/**
* 用于设定是否向全部用户发送,值为true或false,选择true该消息群发给所有用户,选择false可根据tag_id发送给指定群组的用户
*/
@JsonProperty("is_to_all")
p... | apache-2.0 |
BjoernKW/Freshcard | src/main/resources/db/migration/V6__Add_oAuth_fields.sql | 436 | ALTER TABLE users
ADD COLUMN use_oauth boolean NOT NULL DEFAULT false;
ALTER TABLE users
ADD COLUMN most_recently_used_oauth_service character varying;
ALTER TABLE users
ADD COLUMN github_access_token character varying;
ALTER TABLE users
ADD COLUMN linkedin_access_token character varying;
ALTER TABLE users
AD... | apache-2.0 |
jbosstm/narayana.io | docs/api/com/arjuna/orbportability/orb/core/class-use/ORB.html | 9193 | <!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_312) on Wed Jan 19 23:44:09 GMT 2022 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class com.arjuna.or... | apache-2.0 |
consulo/consulo | modules/base/core-api/src/main/java/com/intellij/psi/search/EverythingGlobalScope.java | 1792 | /*
* Copyright 2000-2009 JetBrains s.r.o.
*
* 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 agre... | apache-2.0 |
manager-alert/manager-alert | src/app/landing-page/landing-page.component.spec.ts | 765 | import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { LayoutModule } from '../layout/layout.module';
import { LandingPageComponent } from './landing-page.component';
describe('LandingPageComponent', () => {
let component: LandingPageComponent;
let fixture: ComponentFixture<LandingPage... | apache-2.0 |
real-logic/Agrona | agrona-agent/src/main/java/org/agrona/agent/BufferAlignmentInterceptor.java | 4703 | /*
* Copyright 2014-2021 Real Logic Limited.
*
* 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
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or ... | apache-2.0 |
manueldeveloper/springcloudconfigserver | SimpleRestAPI/src/main/java/com/example/demo/SimpleRestApiApplication.java | 2343 | package com.example.demo;
import java.util.Collection;
import java.util.stream.Stream;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.CommandLineRunner;
import org.spring... | apache-2.0 |
stdlib-js/stdlib | lib/node_modules/@stdlib/_tools/eslint/rules/jsdoc-markdown-remark/test/fixtures/valid.js | 6669 | /**
* @license Apache-2.0
*
* Copyright (c) 2018 The Stdlib 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 a... | apache-2.0 |
YoukaiCat/imgbrd-grabber | gui/src/batch/adduniquewindow.cpp | 3454 | #include <QSettings>
#include <QFileDialog>
#include "adduniquewindow.h"
#include "ui_adduniquewindow.h"
#include "functions.h"
#include "helpers.h"
#include "vendor/json.h"
#include "models/page.h"
#include "models/filename.h"
/**
* Constructor of the AddUniqueWindow class, generating its window.
* @param favorit... | apache-2.0 |
tensorflow/tfjs | tfjs-core/src/ops/sign_test.ts | 3063 | /**
* @license
* Copyright 2020 Google LLC. All Rights Reserved.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by a... | apache-2.0 |
javild/opencga | opencga-storage/src/main/java/org/opencb/opencga/storage/alignment/hbase/AlignmentHBaseQueryBuilder.java | 10790 | /*
* Copyright 2015-2016 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 applicable law or agreed to ... | apache-2.0 |
nitro-devs/nitro-game-engine | docs/sdl2_sys/keycode/constant.SDLK_KP9.html | 4284 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="generator" content="rustdoc">
<meta name="description" content="API documentation for the Rust `SDLK_KP9` constant in crate `sdl2_sys`.">
<meta name="keyw... | apache-2.0 |
googleinterns/step133-2020 | src/test/java/com/google/step/finscholar/CollegeTest.java | 3967 | // Copyright 2019 Google LLC
//
// 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
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in ... | apache-2.0 |
wbrefvem/openshift-ansible | roles/openshift_health_checker/openshift_checks/package_version.py | 3386 | """Check that available RPM packages match the required versions."""
from openshift_checks import OpenShiftCheck
from openshift_checks.mixins import NotContainerizedMixin
class PackageVersion(NotContainerizedMixin, OpenShiftCheck):
"""Check that available RPM packages match the required versions."""
name = ... | apache-2.0 |
bykoianko/omim | geocoder/geocoder_tests/geocoder_tests.cpp | 6292 | #include "testing/testing.hpp"
#include "geocoder/geocoder.hpp"
#include "indexer/search_string_utils.hpp"
#include "platform/platform_tests_support/scoped_file.hpp"
#include "base/geo_object_id.hpp"
#include "base/math.hpp"
#include "base/stl_helpers.hpp"
#include <algorithm>
#include <string>
#include <vector>
... | apache-2.0 |
ilearninging/xxhis | all/2591.html | 12585 | </div><form action="search.asp" name="form1" id="form1">
<table border="1" id="table1" style="border-collapse: collapse">
<tr>
<td height="25" align="center"><span style="font-size: 16px">清</span></td>
<td height="25" align="center"><span style="font-size: 16px">公元1664年</span></td>
<td height="25" align=... | apache-2.0 |
edersonmf/flickring | src/main/java/com/emf/flickring/manager/ApiKeysCommand.java | 7638 | package com.emf.flickring.manager;
import static com.emf.flickring.Command.Response.END;
import static com.emf.flickring.deploy.DeployModule.Constant.API_KEY;
import static com.emf.flickring.deploy.DeployModule.Constant.BASE_PICS_DIR;
import static com.emf.flickring.deploy.DeployModule.Constant.SECRET;
import static c... | apache-2.0 |
am0e/commons | src/main/java/com/github/am0e/utils/Handler.java | 1071 | /*******************************************************************************
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this ... | apache-2.0 |
google/kube-node-tracer | Dockerfile | 419 | FROM gcr.io/google.com/cloudsdktool/cloud-sdk:alpine
VOLUME ["/dump"]
RUN apk add --no-cache --update bash coreutils which curl tcpdump inotify-tools
COPY ./kube_node_tracer.sh /
COPY ./rolling_tcpdump.sh /
COPY ./file_watcher.sh /
RUN mkdir -p /dump
RUN chmod +x /kube_node_tracer.sh
RUN chmod +... | apache-2.0 |
armstrong/armstrong.core.arm_layout | tests/templatetags/__init__.py | 30 | from .layout_helpers import *
| apache-2.0 |
Youngman619/cwkz | src/wx/sunl/entry/WeixinOauth2Token.java | 1035 | package wx.sunl.entry;
/**
* WeixinUserInfo(΢ÐÅÓû§µÄ»ù±¾ÐÅÏ¢)
* @author Youngman
*/
public class WeixinOauth2Token {
// ÍøÒ³ÊÚȨ½Ó¿Úµ÷ÓÃÆ¾Ö¤
private String accessToken;
// ƾ֤ÓÐЧʱ³¤
private int expiresIn;
// ÓÃÓÚË¢ÐÂÆ¾Ö¤
private String refreshToken;
// Óû§±êʶ
private String openI... | apache-2.0 |
craigacgomez/flaming_monkey_packages_apps_Email | src/com/android/email/provider/AttachmentProvider.java | 13480 | /*
* Copyright (C) 2008 The Android Open Source Project
*
* 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 app... | apache-2.0 |
inbloom/secure-data-service | tools/data-tools/src/org/slc/sli/test/edfi/entitiesR1/Program.java | 6094 | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 20... | apache-2.0 |
pebble2015/cpoi | ext/stub/java/awt/geom/Path2D_Float_CopyIterator-stub.cpp | 1586 | // Generated from /Library/Java/JavaVirtualMachines/jdk1.8.0_144.jdk/Contents/Home/jre/lib/rt.jar
#include <java/awt/geom/Path2D_Float_CopyIterator.hpp>
extern void unimplemented_(const char16_t* name);
java::awt::geom::Path2D_Float_CopyIterator::Path2D_Float_CopyIterator(const ::default_init_tag&)
: super(*static... | apache-2.0 |
IHTSDO/snow-owl | commons/com.b2international.index/src/com/b2international/index/es/AwaitPendingTasks.java | 1558 | /*
* Copyright 2017 B2i Healthcare Pte Ltd, http://b2i.sg
*
* 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 ... | apache-2.0 |
milpol/jwt4j | src/main/java/jwt4j/checkers/IssuerChecker.java | 614 | package jwt4j.checkers;
import com.google.gson.JsonObject;
import jwt4j.TokenChecker;
import jwt4j.exceptions.InvalidIssuerException;
import static jwt4j.JWTConstants.ISSUER;
public class IssuerChecker implements TokenChecker
{
private final String issuer;
public IssuerChecker(final String issuer)
{
... | apache-2.0 |
Mashape/kong | kong/plugins/request-size-limiting/handler.lua | 1150 | -- Copyright (C) Kong Inc.
local strip = require("pl.stringx").strip
local tonumber = tonumber
local MB = 2^20
local RequestSizeLimitingHandler = {}
RequestSizeLimitingHandler.PRIORITY = 951
RequestSizeLimitingHandler.VERSION = "2.0.0"
local function check_size(length, allowed_size, headers)
local allowed_bytes_... | apache-2.0 |
Gubancs/TypeUI | typeui-framework/src/main/resources/typescript/ui/TabPanel.ts | 4557 |
/**
* A TabPanel osztály egységbe foglal több Panel-t, és segíti azok kezelését.
*
*
* @author Gabor Kokeny
*/
class TabPanel extends Container {
/**
* Ez a változó tárolja az aktív index értékét, amely egy pozitív egész szám.
*
* @property {number} activeTabIndex
*/
private activ... | apache-2.0 |
phenoxim/nova | nova/tests/unit/scheduler/client/test_report.py | 143398 | # 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
# d... | apache-2.0 |
bnsantos/android-javarx-example | app/src/main/java/com/bnsantos/movies/model/Links.java | 1305 | package com.bnsantos.movies.model;
import com.j256.ormlite.field.DatabaseField;
/**
* Created by bruno on 14/11/14.
*/
public class Links {
@DatabaseField(generatedId = true, columnName = "id")
private Integer id;
@DatabaseField()
private String self;
@DatabaseField()
private String alternat... | apache-2.0 |
google/myelin-acorn-electron-hardware | third_party/arm-trusted-firmware/memset.c | 402 | /*
* Copyright (c) 2013-2018, ARM Limited and Contributors. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*
* https://raw.githubusercontent.com/ARM-software/arm-trusted-firmware/6d4f6aea2cd96a4a57ffa2d88b9230e2cab88f28/lib/libc/memset.c
*/
#include <stddef.h>
void *memset(void *dst, int val, si... | apache-2.0 |
tengbinlive/aibao_demo | app/src/main/java/com/mytian/lb/bean/push/UpdateChannelidParam.java | 1799 | package com.mytian.lb.bean.push;
import com.core.openapi.OpenApiBaseRequestAdapter;
import com.core.util.StringUtil;
import java.util.HashMap;
import java.util.Map;
public class UpdateChannelidParam extends OpenApiBaseRequestAdapter {
private String uid;
private String token;
private Str... | apache-2.0 |
robsoncardosoti/flowable-engine | modules/flowable-form-rest/src/main/java/org/flowable/rest/form/FormRestUrls.java | 4399 | /* 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
* distributed... | apache-2.0 |
wildfly-swarm/wildfly-swarm-javadocs | 2.1.0.Final/apidocs/org/wildfly/swarm/config/messaging/activemq/server/RuntimeQueueSupplier.html | 9744 | <!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_151) on Tue Aug 14 15:31:42 MST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>RuntimeQueueSupplier (BOM: ... | apache-2.0 |
BoxUpp/boxupp | page/templates/projects.html | 6754 | <!-- <script type="text/javascript-lazy" src="js/projectController.js"></script> -->
<div class="container-fluid">
<div class="project-container col-md-12">
<div class="row">
<div class="col-md-offset-1 col-md-10 text-center">
<h2 class="projectsTitle">
<span class="titleText loginInput">
<span ng-... | apache-2.0 |
garfieldnate/Weka_AnalogicalModeling | src/test/java/weka/classifiers/lazy/AM/label/IntLabelerTest.java | 877 | package weka.classifiers.lazy.AM.label;
import org.hamcrest.core.StringContains;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
import weka.classifiers.lazy.AM.TestUtils;
import weka.core.Instances;
/**
* Test aspects of {@link IntLabeler} that are not applicable to other
*... | apache-2.0 |
JFixby/libgdx-nightly | gdx-nightly/docs/api/com/badlogic/gdx/utils/class-use/Json.Serializable.html | 44026 | <!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_05) on Tue Feb 02 23:09:49 CET 2016 -->
<title>Uses of Interface com.badlogic.gdx.utils.Json.Serializable (libgdx API)</title>
<meta name="date... | apache-2.0 |
MatrixFrog/closure-compiler | src/com/google/javascript/jscomp/Es6RewriteDestructuring.java | 19873 | /*
* Copyright 2015 The Closure Compiler 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 applicable... | apache-2.0 |
oMMuCo/HPTT-FT-UGM-Official-Website | protected/controllers/ZonecityController.php | 10950 | <?php
/**
* ZonecityController
* @var $this ZonecityController
* @var $model OmmuZoneCity
* @var $form CActiveForm
* version: 1.1.0
* Reference start
*
* TOC :
* Index
* Suggest
* Manage
* Add
* Edit
* RunAction
* Delete
* Publish
*
* LoadModel
* performAjaxValidation
*
* @author Putra Sudaryanto <... | apache-2.0 |