code stringlengths 3 1.01M | repo_name stringlengths 5 116 | path stringlengths 3 311 | language stringclasses 30
values | license stringclasses 15
values | size int64 3 1.01M |
|---|---|---|---|---|---|
/* AngularBeans, CDI-AngularJS bridge Copyright (c) 2014, Bessem Hmidi. or third-party contributors as indicated by
* the @author tags or express copyright attribution statements applied by the authors. This copyrighted material is
* made available to anyone wishing to use, modify, copy, or redistribute it subject to... | bessemHmidi/AngularBeans | angular-beans/src/main/java/angularBeans/context/BeanLocator.java | Java | lgpl-3.0 | 2,829 |
/*
* Copyright (C) 2006 Oliver Hunt <oliver@nerget.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
... | nawawi/wkhtmltopdf | webkit/Source/WebCore/svg/SVGFEDisplacementMapElement.h | C | lgpl-3.0 | 3,203 |
package com.github.axet.wget.info.ex;
public class DownloadIOCodeError extends DownloadError {
private static final long serialVersionUID = 7835308901669107488L;
int code;
public DownloadIOCodeError() {
}
public DownloadIOCodeError(int code) {
this.code = code;
}
public int get... | sngvahmed/wGet_ODM | src/main/java/com/github/axet/wget/info/ex/DownloadIOCodeError.java | Java | lgpl-3.0 | 359 |
/**
* Copyright (c) 2012
*/
package lab.s2jh.core.web.view;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonInclude.Include;
/**
* 用于Object到JSON序列化的对象结构体定义
*/
@JsonInclude(Include.NON_NULL)
public class OperationResult {
/** 标识操作成功与否 */
publ... | xautlx/s2jh | core-service/src/main/java/lab/s2jh/core/web/view/OperationResult.java | Java | lgpl-3.0 | 2,803 |
/*
Integrate.c
integrate over the unit hypercube
this file is part of Vegas
last modified 23 May 14 th
*/
typedef struct {
signature_t signature;
count niter;
number nsamples, neval;
Cumulants cumul[];
} State;
static int Integrate(This *t, real *integral, real *error, real *prob)
{
bin_t *bins;
c... | JohannesBuchner/cuba | src/vegas/Integrate.c | C | lgpl-3.0 | 5,669 |
# uexQQ
QQ插件
| sandy1108/uexQQ | README.md | Markdown | lgpl-3.0 | 17 |
/*
Copyright (c) 2013-2014 Andrey Goryachev <andrey.goryachev@gmail.com>
Copyright (c) 2011-2014 Other contributors as noted in the AUTHORS file.
This file is part of Cocaine.
Cocaine is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public Licens... | cocaine/cocaine-core | include/cocaine/traits/frozen.hpp | C++ | lgpl-3.0 | 1,600 |
CREATE TABLE IF NOT EXISTS `be_BlogRollItems` (
`BlogRollID` varchar(36) NOT NULL,
`Title` varchar(255) NOT NULL,
`Description` longtext DEFAULT NULL,
`BlogUrl` varchar(255) NOT NULL,
`FeedUrl` varchar(255) DEFAULT NULL,
`Xfn` varchar(255) DEFAULT NULL,
`SortIndex` int(10) NOT NULL,
PRIMARY KEY (`BlogR... | royosherove/dotnetmocks2demo | blogengine_7761d88db905/BlogEngine/BlogEngine.NET/setup/MySQL/MySQLUpgradeFrom1.5To1.6.sql | SQL | lgpl-3.0 | 898 |
# Copyright Iris contributors
#
# This file is part of Iris and is released under the LGPL license.
# See COPYING and COPYING.LESSER in the root of the repository for full
# licensing details.
"""Unit tests for the :class:`iris.coord_systems.VerticalPerspective` class."""
# Import iris.tests first so that some things ... | SciTools/iris | lib/iris/tests/unit/coord_systems/test_VerticalPerspective.py | Python | lgpl-3.0 | 3,251 |
/*
* This file is part of the GROMACS molecular simulation package.
*
* Copyright (c) 1991-2000, University of Groningen, The Netherlands.
* Copyright (c) 2001-2004, The GROMACS development team.
* Copyright (c) 2011-2019, by the GROMACS development team, led by
* Mark Abraham, David van der Spoel, Berk Hess, and... | plumed/plumed2 | patches/gromacs-2020.6.diff/src/gromacs/mdrun/legacymdrunoptions.cpp | C++ | lgpl-3.0 | 7,356 |
/*
* #%L
* Alfresco Repository
* %%
* Copyright (C) 2005 - 2016 Alfresco Software Limited
* %%
* This file is part of the Alfresco software.
* If the software was purchased under a paid Alfresco license, the terms of
* the paid license agreement will prevail. Otherwise, the software is
* provided under the... | Alfresco/community-edition | projects/repository/source/java/org/alfresco/repo/tagging/TagScopePropertyMethodInterceptor.java | Java | lgpl-3.0 | 8,523 |
/**
* This file is part of FNLP (formerly FudanNLP).
*
* FNLP is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* FNLP... | xpqiu/fnlp | fnlp-app/src/main/java/org/fnlp/app/num/Test.java | Java | lgpl-3.0 | 3,439 |
/// @author Alexander Rykovanov 2013
/// @email rykovanov.as@gmail.com
/// @brief Opc binary cnnection channel.
/// @license GNU LGPL
///
/// Distributed under the GNU LGPL License
/// (See accompanying file LICENSE or copy at
/// http://www.gnu.org/licenses/lgpl.html)
///
#ifndef __OPC_UA_BINARY_MESSAGE_IdENTIFIERS
#... | FreeOpcUa/freeopcua | include/opc/ua/protocol/message_identifiers.h | C | lgpl-3.0 | 2,870 |
/**
* Copyright (c) 2012
*/
package lab.s2jh.core.entity;
import java.io.Serializable;
import java.util.Date;
import javax.persistence.Column;
import javax.persistence.EntityListeners;
import javax.persistence.MappedSuperclass;
import javax.persistence.Temporal;
import javax.persistence.TemporalType;
i... | xautlx/s2jh | core-service/src/main/java/lab/s2jh/core/entity/BaseEntity.java | Java | lgpl-3.0 | 4,989 |
<div class="navbar-layout-phone" data-options="dxLayout : { name: 'pivot', platform: 'win', phone: true }">
<div class="layout-content" data-options="dxContentPlaceholder : { name: 'content' }">
</div>
<div class="layout-footer" data-options="dxContentPlaceholder : { name: 'footer' }">
<div data-... | has191210/bdademo | src/main/resources/public/bower_components/devextreme/layouts/Pivot/PivotLayout.html | HTML | unlicense | 510 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.7.0_17) on Wed Mar 20 16:04:59 PDT 2013 -->
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<TITLE>
Shape (rectangles)
</TITLE>
<MET... | W0mpRat/IntroToProgramming | Code/lesson4/checkerboard/doc/Shape.html | HTML | unlicense | 9,230 |
// Copyright 2015 The etcd 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 law or agreed t... | OyTao/etcd_learning | version/version.go | GO | apache-2.0 | 1,520 |
/*
* Copyright (c) 2007, 2016, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*/
/*
* Copyright 2001-2004 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except ... | shun634501730/java_source_cn | src_en/com/sun/org/apache/xalan/internal/xsltc/dom/Filter.java | Java | apache-2.0 | 1,037 |
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distribut... | suyucs/presto | presto-hive/src/main/java/com/facebook/presto/hive/HiveWriteUtils.java | Java | apache-2.0 | 31,459 |
<?php
namespace Codeception\Module;
// here you can define custom functions for TestGuy
class TestHelper extends \Codeception\Module
{
}
| tambora-org/dockerCRE | volumes/www/survey/tmp/assets/d8a56be1/tests/_helpers/TestHelper.php | PHP | apache-2.0 | 148 |
package org.ovirt.engine.api.restapi.resource;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.ws.rs.core.Response;
import org.ovirt.engine.api.common.security.auth.Principal;
import org.ovirt.engine.api.model.BaseResource;
import org.ovirt.engine.api.model.Group;
import org.ovirt... | anjalshireesh/gluster-ovirt-poc | backend/manager/modules/restapi/jaxrs/src/main/java/org/ovirt/engine/api/restapi/resource/BackendAssignedPermissionsResource.java | Java | apache-2.0 | 9,096 |
#
# Copyright (c) 2015, Chef Software, Inc. <legal@chef.io>
#
# 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... | chef/license_scout | spec/fixtures/berkshelf_cache_dir/cookbooks/chef-ingredient-0.19.0/recipes/default.rb | Ruby | apache-2.0 | 705 |
package io.bxbxbai.zhuanlan.utils;
import android.os.SystemClock;
import android.util.Log;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
/**
* Android应用中的秒表工具,跟踪某一段代码的执行时间<br/>
* 调用begin方法启动秒表,并在当前时间打上tag。当你再调用end方法时,TimeTester就会输出这个tag的时间差,并删除tag<br/>
*
* 如果你调用lap方法,就相当于计次,不会删除tag,可以多次调用
... | Zhenghaotao/ZhuanLan | app/src/main/java/io/bxbxbai/zhuanlan/utils/StopWatch.java | Java | apache-2.0 | 3,738 |
/*
* 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 ... | szha/mxnet | src/operator/tensor/elemwise_binary_broadcast_op_logic.cc | C++ | apache-2.0 | 6,133 |
package org.zstack.test.core.job;
import org.springframework.beans.factory.annotation.Autowire;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Configurable;
import org.zstack.core.job.Job;
import org.zstack.core.job.JobContext;
import org.zstack.heade... | MaJin1996/zstack | test/src/test/java/org/zstack/test/core/job/FakeJobReturnValue.java | Java | apache-2.0 | 1,047 |
package org.batfish.specifier.parboiled;
import com.google.common.base.MoreObjects;
import java.util.Objects;
final class NameFilterAstNode implements FilterAstNode {
private final String _name;
NameFilterAstNode(AstNode nameAst) {
this(((StringAstNode) nameAst).getStr());
}
NameFilterAstNode(String nam... | intentionet/batfish | projects/batfish-common-protocol/src/main/java/org/batfish/specifier/parboiled/NameFilterAstNode.java | Java | apache-2.0 | 1,114 |
package org.zstack.sdk;
import java.util.HashMap;
import java.util.Map;
import org.zstack.sdk.*;
public class DeleteEcsVpcInLocalAction extends AbstractAction {
private static final HashMap<String, Parameter> parameterMap = new HashMap<>();
private static final HashMap<String, Parameter> nonAPIParameterMap ... | AlanJager/zstack | sdk/src/main/java/org/zstack/sdk/DeleteEcsVpcInLocalAction.java | Java | apache-2.0 | 2,821 |
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Struct template noinvoke</title>
<link rel="stylesheet" href="../../../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="../../index.html" title="... | biospi/seamass-windeps | src/boost_1_57_0/doc/html/boost/proto/noinvoke.html | HTML | apache-2.0 | 8,924 |
# encoding: utf-8
"""
Test lldb data formatter subsystem.
"""
from __future__ import print_function
import lldb
from lldbsuite.test.decorators import *
from lldbsuite.test.lldbtest import *
from lldbsuite.test import lldbutil
from ObjCDataFormatterTestCase import ObjCDataFormatterTestCase
class ObjCDataFormatterNS... | llvm-mirror/lldb | packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSError.py | Python | apache-2.0 | 1,050 |
#lightbox{ position: absolute; left: 0; width: 100%; z-index: 10000; text-align: center; line-height: 0;}
#lightbox img{ width: auto; height: auto;}
#lightbox a img{ border: none; }
#outerImageContainer{ position: relative; background-color: #fff; width: 250px; height: 250px; margin: 0 auto; }
#imageContainer... | klose911/klose911.github.io | html/scheme/tutorial/css/org.css | CSS | apache-2.0 | 46,276 |
/*
* Copyright 2012-2015 org.opencloudb.
*
* 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... | mingfly/opencloudb | src/main/java/org/opencloudb/paser/ast/expression/function/cast/Cast.java | Java | apache-2.0 | 2,239 |
// Copyright 2012 ESRI
//
// All rights reserved under the copyright laws of the United States
// and applicable international laws, treaties, and conventions.
//
// You may freely redistribute and use this sample code, with or
// without modification, provided you include the original copyright
// notice and us... | sugar2010/arcgis-runtime-samples-ios | WeatherInfoSample/objective-c/Classes/WeatherInfoSampleAppDelegate.h | C | apache-2.0 | 609 |
//
// Copyright 2019 The AMP HTML Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required... | adup-tech/amphtml | validator/htmlparser/htmldataset_test.cc | C++ | apache-2.0 | 11,379 |
/**
* Copyright 2013-2020 the original author or authors from the JHipster project.
*
* This file is part of the JHipster project, see http://www.jhipster.tech/
* for more information.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the Li... | cbornet/generator-jhipster | jdl/jhipster/application-types.js | JavaScript | apache-2.0 | 1,037 |
/*
* 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 ... | ArvinDevel/onlineAggregationOnSparkV2 | core/src/main/scala/org/apache/spark/SSLOptions.scala | Scala | apache-2.0 | 9,430 |
/*
* 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 ... | tqchen/tvm | src/relay/transforms/legalize.cc | C++ | apache-2.0 | 3,776 |
/*
* Copyright 2018-present Open Networking 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 appli... | gkatsikas/onos | apps/openstacktroubleshoot/app/src/main/java/org/onosproject/openstacktroubleshoot/util/OpenstackTroubleshootUtil.java | Java | apache-2.0 | 3,347 |
/*
* Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free ... | mirkosertic/Bytecoder | classlib/java.base/src/main/resources/META-INF/modules/java.base/classes/java/lang/module/InvalidModuleDescriptorException.java | Java | apache-2.0 | 2,064 |
/**
* 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 m... | RanjithKumar5550/RanMifos | fineract-provider/src/main/java/org/apache/fineract/portfolio/interestratechart/incentive/AttributeIncentiveCalculation.java | Java | apache-2.0 | 1,860 |
/**
* 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... | dlyle65535/metron | metron-interface/metron-rest/src/test/java/org/apache/metron/rest/controller/SensorIndexingConfigControllerIntegrationTest.java | Java | apache-2.0 | 6,791 |
/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* 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 applic... | facebook/buck | src/com/facebook/buck/core/test/rule/TestRunnerSpec.java | Java | apache-2.0 | 1,737 |
/*
* JBoss, Home of Professional Open Source
* Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors
* as indicated by the @authors tag. All rights reserved.
* See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* Licensed under the Apache License, Vers... | rhusar/arquillian-core | container/spi/src/main/java/org/jboss/arquillian/container/spi/event/DeploymentEvent.java | Java | apache-2.0 | 1,714 |
/**
* SoundJS
* Visit http://createjs.com/ for documentation, updates and examples.
*
* Copyright (c) 2011 gskinner.com, inc.
*
* Distributed under the terms of the MIT license.
* http://www.opensource.org/licenses/mit-license.html
*
* This notice shall be included in all copies or substantial portions of the Software... | Koava/Shtacker | jQueryShtacker/jQueryShtacker/TypeScriptShtacker/public/javascripts/soundjs-NEXT.min.js | JavaScript | apache-2.0 | 12,246 |
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Параметры экрана AJAX Spider </title>
</head>
<body>
<h1>Параметры экрана AJAX Spider </h1>
Этот экран позволяет настроить
<a href="concepts.html">AJAX-паук</a> опции. A... | kingthorin/zap-extensions | addOns/spiderAjax/src/main/javahelp/org/zaproxy/zap/extension/spiderAjax/resources/help_ru_RU/contents/options.html | HTML | apache-2.0 | 7,170 |
/*
* Copyright (c) 2008-2021, Hazelcast, Inc. 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 ... | jerrinot/hazelcast | hazelcast/src/main/java/com/hazelcast/client/impl/protocol/task/multimap/MultiMapValueCountMessageTask.java | Java | apache-2.0 | 2,896 |
# SkyWalking Cross Process Propagation Headers Protocol
* Version 3.0
SkyWalking is more akin to an APM system, rather than a common distributed tracing system.
SkyWalking's headers are much more complex than those found in a common distributed tracing system. The reason behind their complexity is for better analysis... | ascrutae/sky-walking | docs/en/protocols/Skywalking-Cross-Process-Propagation-Headers-Protocol-v3.md | Markdown | apache-2.0 | 2,978 |
# Copyright (c) 2015 FUJITSU 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
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law o... | Akrog/cinder | cinder/tests/test_fujitsu_compatibility.py | Python | apache-2.0 | 2,530 |
/*
* Copyright (c) 1997, 2006, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free ... | andreagenso/java2scala | test/J2s/java/openjdk-6-src-b27/jdk/src/share/classes/javax/swing/DefaultDesktopManager.java | Java | apache-2.0 | 27,642 |
/*
* Copyright 2016 Alexey Andreev.
*
* 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... | jtulach/teavm | core/src/main/java/org/teavm/backend/wasm/model/expression/WasmFloatUnary.java | Java | apache-2.0 | 1,924 |
/*
* 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 ... | witgo/spark | sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/v2/orc/OrcScan.scala | Scala | apache-2.0 | 3,137 |
package samples;
import java.beans.*;
import java.lang.reflect.*;
import net.sf.cglib.proxy.*;
/**
*
* @author baliuka
*/
public class Beans implements MethodInterceptor {
private PropertyChangeSupport propertySupport;
public void addPropertyChangeListener(PropertyChangeListener listener) {
... | bric3/nCGLIB | src/test/java/samples/Beans.java | Java | apache-2.0 | 2,740 |
/* Copyright JS Foundation and other contributors, http://js.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 r... | zherczeg/jerryscript | jerry-port/default/default-external-context.c | C | apache-2.0 | 1,340 |
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Diagnostics;
using System.Linq;
using System.Reflection;
usi... | amcasey/roslyn | src/Test/Utilities/Desktop/CodeRuntime/RuntimeAssemblyManager.cs | C# | apache-2.0 | 17,128 |
///////////////////////////////////////////////////////////////////////////////////////////////////////
// Tencent is pleased to support the open source community by making Appecker available.
//
// Copyright (C) 2015 THL A29 Limited, a Tencent company. All rights reserved.
//
// Licensed under the Apache License, Vers... | TencentOpen/Appecker | hook/privateHeader/AppeckerHookManager.h | C | apache-2.0 | 1,268 |
# DesignOverlay UI Test
## Set up
Install sauce labs client library:
```shell
pip install sauceclient
```
Install appium client library:
```shell
pip install Appium-Python-Client
pip install pytest
```
## how to run (SauceLabs)
For configuration, look at the config_sauce_labs.json.
```shell
./gradlew sauceLabsDe... | poovarasanvasudevan/DesignOverlay-Android | appium/README.md | Markdown | apache-2.0 | 327 |
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Example - example-forms-custom-triggers-debug</title>
<script src="../../../angular.js"></script>
<script src="script.js"></script>
</head>
<body ng-app="customTriggerExample">
<div ng-controller="ExampleController">
<form>
... | LADOSSIFPB/nutrif | nutrif-web-refactor/lib/angular/docs/examples/example-forms-custom-triggers/index-debug.html | HTML | apache-2.0 | 601 |
package com.github.dockerjava.api.model;
import com.google.common.base.Objects;
import com.google.common.base.Optional;
import java.io.Serializable;
/**
* @author magnayn
*/
public class Identifier implements Serializable {
private static final long serialVersionUID = 1L;
public final Repository repositor... | ollie314/docker-java | src/main/java/com/github/dockerjava/api/model/Identifier.java | Java | apache-2.0 | 1,760 |
/*
* 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 ... | aray/spark | sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/aggregate/ApproxCountDistinctForIntervals.scala | Scala | apache-2.0 | 9,716 |
# Encoding: utf-8
# Cloud Foundry Java Buildpack
# Copyright 2013 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/LICEN... | brijeshgp/java-buildpack | lib/java_buildpack/repository/repository_index.rb | Ruby | apache-2.0 | 3,513 |
/*
* Copyright 2015 Naver Corp.
*
* 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 ... | cl9200/nbase-arc | smr/smr/log_util.c | C | apache-2.0 | 2,232 |
/*
* Licensed to Elasticsearch under one or more contributor
* license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright
* ownership. Elasticsearch licenses this file to you under
* the Apache License, Version 2.0 (the "License"); you may
* not use this fi... | s1monw/elasticsearch | qa/smoke-test-http/src/test/java/org/elasticsearch/http/ContextAndHeaderTransportIT.java | Java | apache-2.0 | 15,442 |
---
layout: post100
title: Port usage Control
categories: XAP100ADM
parent: network.html
weight: 700
---
XAP space and client components open different ports in various situations. The following list describes the different ports used by XAP and how these can be modified:
{% refer %}Learn how to **[set... | barakb/gigaspaces-wiki-jekyll | xap100adm/network-ports.markdown | Markdown | apache-2.0 | 2,810 |
// Copyright 2005-2010 Gallio Project - http://www.gallio.org/
// Portions Copyright 2000-2004 Jonathan de Halleux
//
// 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:... | mterwoord/mbunit-v3 | src/MbUnit/MbUnit/Framework/ApartmentStateAttribute.cs | C# | apache-2.0 | 3,425 |
/*
* Copyright 2011 Red Hat, Inc. and/or its affiliates.
*
* 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... | gsheldon/optaplanner | optaplanner-examples/src/main/java/org/optaplanner/examples/machinereassignment/swingui/MachineReassignmentPanel.java | Java | apache-2.0 | 8,996 |
/*
* Copyright 2019 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
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applic... | djechelon/spring-security | rsocket/src/main/java/org/springframework/security/rsocket/core/PayloadSocketAcceptorInterceptor.java | Java | apache-2.0 | 2,336 |
# Copyright 2013 Google Inc. 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 applicable law or agree... | tweksteen/compute-image-packages | gcimagebundle/gcimagebundlelib/utils.py | Python | apache-2.0 | 13,831 |
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Linq;
using DataTests.AdventureWorks.LTS;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using OpenRiaServices.Silverlight.Testing;
using TestDomainServices;
namespace OpenRiaServices.DomainServices.Client.Test
{
public clas... | Daniel-Svensson/OpenRiaServices | OpenRiaServices.DomainServices.Client/Test/Silverlight/Data/AssociationTests.cs | C# | apache-2.0 | 16,594 |
// <auto-generated>
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// re... | devigned/azure-powershell | src/Common/Commands.Common.Network/Version2017_10_01/Models/ApplicationGatewaySslPolicyType.cs | C# | apache-2.0 | 704 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.5.0_11) on Sat Aug 18 11:01:03 CEST 2007 -->
<META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<TITLE>
Uses of Class org.apache.co... | fmassart/commons-httpclient | docs/apidocs/org/apache/commons/httpclient/auth/class-use/AuthPolicy.html | HTML | apache-2.0 | 6,102 |
/*
* Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH
* under one or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information regarding copyright
* ownership. Camunda licenses this file to you under the Apache License,
* Version 2.0; y... | camunda/camunda-bpm-platform | engine/src/main/java/org/camunda/bpm/application/impl/metadata/spi/ProcessesXml.java | Java | apache-2.0 | 2,856 |
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Struct template multiplies_assign</title>
<link rel="stylesheet" href="../../../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="../../index.html... | biospi/seamass-windeps | src/boost_1_57_0/doc/html/boost/proto/multiplies_assign.html | HTML | apache-2.0 | 7,301 |
/*
* Copyright 2013-present Facebook, 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... | marcinkwiatkowski/buck | src/com/facebook/buck/ocaml/OcamlLibraryDescription.java | Java | apache-2.0 | 4,652 |
/*
* Copyright 2016-present Facebook, 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... | brettwooldridge/buck | test/com/facebook/buck/util/network/FakeScribeLogger.java | Java | apache-2.0 | 2,023 |
/*
Copyright 2018 The Kubernetes 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 law or agreed to in writing, ... | michelle192837/test-infra | prow/spyglass/spyglass_test.go | GO | apache-2.0 | 45,162 |
extern crate futures;
use indy::IndyError;
use indy::blob_storage;
use self::futures::Future;
pub fn open_reader(type_: &str, config_json: &str) -> Result<i32, IndyError> {
blob_storage::open_reader(type_, config_json).wait()
}
pub fn open_writer(type_: &str, config_json: &str) -> Result<i32, IndyError> {
b... | Artemkaaas/indy-sdk | libindy/tests/utils/blob_storage.rs | Rust | apache-2.0 | 373 |
# Copyright (c) 2001-2004 Twisted Matrix Laboratories.
# See LICENSE for details.
#
'''
Usage:
advogato.py <name> <diary entry file>
'''
from twisted.web.xmlrpc import Proxy
from twisted.internet import reactor
from getpass import getpass
import sys
class AddDiary:
def __init__(self, name, password):
... | jxta/cc | vendor/Twisted-10.0.0/doc/web/examples/advogato.py | Python | apache-2.0 | 1,110 |
<html>
<title>org.continuent.appia.core.events.channel</title>
<body>
<i>Appia</i> events processed by any channel.
<br>
This package contains all the events that will be accepted and/or provided
by the channel.
</body>
</html> | archie/appia-byzantine | src/core/net/sf/appia/core/events/channel/package.html | HTML | apache-2.0 | 249 |
from openflow.optin_manager.sfa.rspecs.elements.element import Element
class PLTag(Element):
fields = [
'tagname',
'value',
]
| dana-i2cat/felix | optin_manager/src/python/openflow/optin_manager/sfa/rspecs/elements/pltag.py | Python | apache-2.0 | 161 |
package registry
import (
"bytes"
"crypto/sha256"
// this is required for some certificates
_ "crypto/sha512"
"encoding/hex"
"encoding/json"
"fmt"
"io"
"io/ioutil"
"net/http"
"net/http/cookiejar"
"net/url"
"strconv"
"strings"
"time"
"github.com/Sirupsen/logrus"
"github.com/docker/docker/pkg/httputils... | camallen/docker | registry/session.go | GO | apache-2.0 | 18,640 |
#!/usr/bin/python
#
# Copyright 2014 Google Inc. 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 b... | wubr2000/googleads-python-lib | examples/dfa/v1_20/create_campaign.py | Python | apache-2.0 | 2,699 |
package org.collectionspace.services.test;
//import org.collectionspace.services.intake.Intake;
//import org.collectionspace.services.intake.IntakeList;
/**
* A IntakeServiceTest.
*
* @version $Revision:$
*/
public class DimensionServiceTest {
//empty
}
| cherryhill/collectionspace-services | services/dimension/service/src/test/java/org/collectionspace/services/test/DimensionServiceTest.java | Java | apache-2.0 | 262 |
Neuro Evolution of Augmenting Topologies
========================================
A slightly tidier version of Kenneth Stanley's NEAT original source code.
***
Copyright 2010 The University of Texas at Austin
------------------------------------------------
Licensed under the Apache License, Version 2.0 (the "L... | slowriot/NEAT | README.md | Markdown | apache-2.0 | 5,582 |
// Copyright 2016 syzkaller project authors. All rights reserved.
// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
package symbolizer
import (
"bufio"
"bytes"
"os/exec"
"strconv"
)
type Symbol struct {
Addr uint64
Size int
}
// ReadSymbols returns list of text ... | sploving/syzkaller | symbolizer/nm.go | GO | apache-2.0 | 1,794 |
/*
* Copyright 2013, 2014 Deutsche Nationalbibliothek
*
* 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... | philboeselager/metafacture-core | src/main/java/org/culturegraph/mf/stream/source/Bzip2Opener.java | Java | apache-2.0 | 2,699 |
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using System.Threading;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Threading;
namespace Microsoft.VisualStudioToo... | lukedgr/nodejstools | Nodejs/Product/Nodejs/SharedProject/TaskProgressBar.xaml.cs | C# | apache-2.0 | 2,688 |
/**
* plugin.js
*
* Copyright, Moxiecode Systems AB
* Released under LGPL License.
*
* License: http://www.tinymce.com/license
* Contributing: http://www.tinymce.com/contributing
*/
/*global tinymce:true */
tinymce.PluginManager.add('image', function(editor) {
function getImageSize(url, callback) {
var img... | jbottel/openstorefront | server/openstorefront/tinymcetextarea/src/main/resources/META-INF/resources/webjars/tinymcetextarea/5.1/tinymce/plugins/image/plugin.js | JavaScript | apache-2.0 | 10,236 |
<?php
final class PhabricatorRepositoryCommitData extends PhabricatorRepositoryDAO {
protected $commitID;
protected $authorName = '';
protected $commitMessage = '';
protected $commitDetails = array();
private $commitRef;
protected function getConfiguration() {
return array(
self::CONFIG_TIME... | freebsd/phabricator | src/applications/repository/storage/PhabricatorRepositoryCommitData.php | PHP | apache-2.0 | 4,785 |
# Copyright (c) 2014 VMware, 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 writi... | sajuptpm/neutron-ipam | neutron/tests/unit/vmware/nsxlib/test_switch.py | Python | apache-2.0 | 14,400 |
/* 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 not... | lightenna/structuredfun-pc | structured/vendor/Apache24/include/apr_poll.h | C | apache-2.0 | 21,099 |
CCM (Cassandra Cluster Manager)
====================================================
A script/library to create, launch and remove an Apache Cassandra cluster on
localhost.
The goal of ccm and ccmlib is to make it easy to create, manage and destroy a
small Cassandra cluster on a local box. It is meant for testing a C... | kishkaru/ccm | README.md | Markdown | apache-2.0 | 8,112 |
/*
Copyright 2014 The Kubernetes Authors All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or ag... | gouyang/kubernetes | cmd/kube-apiserver/app/plugins.go | GO | apache-2.0 | 1,718 |
package com.mapswithme.maps.widget.placepage;
import android.location.Location;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.view.LayoutInflater;
import android.view.MotionEvent;
import android.view.View;
import android.view.ViewGroup;
import android.view.ViewTreeObserver;
impor... | yunikkk/omim | android/src/com/mapswithme/maps/widget/placepage/DirectionFragment.java | Java | apache-2.0 | 4,758 |
#
# %CopyrightBegin%
#
# Copyright Ericsson AB 1997-2016. 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 re... | falkevik/otp | lib/kernel/test/Makefile | Makefile | apache-2.0 | 3,560 |
/*
* Copyright 2014 MongoDB, 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 ... | christopherjwang/mongo-c-driver | src/mongoc/mongoc-scram-private.h | C | apache-2.0 | 2,068 |
# ___ ___ _ _ ___ ___ _ _____ ___ ___
# / __| __| \| | __| _ \ /_\_ _| __| \
# | (_ | _|| .` | _|| / / _ \| | | _|| |) |
# \___|___|_|\_|___|_|_\/_/_\_\_|_|___|___/_ _____
# | \ / _ \ | \| |/ _ \_ _| | __| \_ _|_ _|
# | |) | (_) | | .` | (_) || | | _|| |) |... | andrewklau/openshift-tools | docker/oso-saml-sso/rhel7/Dockerfile | Dockerfile | apache-2.0 | 2,037 |
// 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 n... | cpcloud/arrow | cpp/examples/parquet/parquet_stream_api/stream_reader_writer.cc | C++ | apache-2.0 | 10,174 |
=head1 NAME
Apache2::FilterRec - Perl API for manipulating the Apache filter record
=head1 Synopsis
use Apache2::Filter ();
use Apache2::FilterRec ();
my $frec = $filter->frec;
print "filter name is:", $frec->name;
=head1 Description
C<Apache2::FilterRec> provides an access to the filter record
st... | Distrotech/mod_perl | docs/src/docs/2.0/api/Apache2/FilterRec.pod | Perl | apache-2.0 | 1,679 |
/*
* 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 ... | kulinski/myfaces | impl/src/main/java/org/apache/myfaces/spi/InjectionProvider.java | Java | apache-2.0 | 1,428 |
const int classes-5_abc_length = 2609;
const int classes-5_abc_method_count = 20;
const int classes-5_abc_class_count = 5;
const int classes-5_abc_script_count = 1;
const unsigned char classes-5_abc_data[2609] = {
0x10, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x03, 0x48, 0xaf, 0xbc, 0x9a, 0xf2, 0xd7, 0x7a, 0x3e, 0x8d,
0xed, 0xb5... | tschneidereit/shumway | test/avm2/shumway/classes-5.cpp | C++ | apache-2.0 | 15,870 |
// Copyright 2004-present Facebook. All Rights Reserved.
//
// You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
// copy, modify, and distribute this software in source code or binary form for use
// in connection with the web services and APIs provided by Facebook.
//
// As with any softw... | darina/omim | iphone/Maps/Pods/FBAudienceNetwork/Static/FBAudienceNetwork.framework/Headers/FBAdDefines.h | C | apache-2.0 | 2,646 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.