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 |
|---|---|---|---|---|---|
---
layout: vakit_dashboard
title: KONYA, TÜRKİYE için iftar, namaz vakitleri ve hava durumu - ilçe/eyalet seç
permalink: /TÜRKİYE/KONYA/AKÖREN
---
<script type="text/javascript">
var GLOBAL_COUNTRY = 'TÜRKİYE';
var GLOBAL_CITY = 'KONYA';
var GLOBAL_STATE = 'AKÖREN';
var lat = 72;
var lon = 21;
</script>
| hakanu/iftar | _posts_/vakit/TÜRKİYE/KONYA/AKÖREN/2017-02-01-AKÖREN.markdown | Markdown | apache-2.0 | 328 |
# coding: utf-8
"""
Copyright 2015 SmartBear Software
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 applica... | jianajavier/pnc-cli | pnc_cli/swagger_client/models/build_record_set_singleton.py | Python | apache-2.0 | 2,941 |
<div class="panel panel-default mdw-panel">
<div class="panel-heading mdw-heading">
<div class="mdw-heading-label">Add New Attribute</div>
</div>
<div class="form-horizontal mdw-section">
<div class="form-group mdw-static-group">
<label
class="control-label col-xs-2 mdw-required"
for... | CenturyLinkCloud/mdw | mdw-hub/web/users/userAttributes.html | HTML | apache-2.0 | 1,199 |
/*
* Hibernate Validator, declare and validate application constraints
*
* License: Apache License, Version 2.0
* See the license.txt file in the root directory or <http://www.apache.org/licenses/LICENSE-2.0>.
*/
package org.hibernate.validator.ap.testmodel.annotationparameters;
import javax.validation.constraint... | shahramgdz/hibernate-validator | annotation-processor/src/test/java/org/hibernate/validator/ap/testmodel/annotationparameters/ValidPatternParameters.java | Java | apache-2.0 | 1,124 |
package at.forsyte.apalache.infra.passes
class TerminalPassWithTlaModule extends TerminalPass with TlaModuleMixin
| konnov/apalache | mod-infra/src/main/scala/at/forsyte/apalache/infra/passes/TerminalPassWithTlaModule.scala | Scala | apache-2.0 | 115 |
// 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;
namespace Microsoft.CodeAnalysis.Diagnostics
{
internal abstract par... | russpowers/roslyn | src/Compilers/Core/Portable/DiagnosticAnalyzer/CompilerDiagnosticAnalyzer.CompilationAnalyzer.cs | C# | apache-2.0 | 6,159 |
#region Apache License Version 2.0
/*----------------------------------------------------------------
Copyright 2019 Jeffrey Su & Suzhou Senparc Network Technology Co.,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 ... | lishewen/WeiXinMPSDK | src/Senparc.Weixin.MP/Senparc.Weixin.MP/AdvancedAPIs/WiFi/WiFiJson/WiFiStatisticsResultJson.cs | C# | apache-2.0 | 2,320 |
/****************************************************************
* Licensed to the AOS Community (AOS) under one or more *
* contributor license agreements. See the NOTICE file *
* distributed with this work for additional information *
* regarding copyright ownership. The AOS licenses this... | XClouded/t4f-core | java/jdk/demo/plugin/jfc/Java2D/src/java2d/demos/Colors/BullsEye.java | Java | apache-2.0 | 4,069 |
/*
* Copyright 2011 JBoss 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 i... | mswiderski/droolsjbpm-knowledge | kie-internal/src/main/java/org/kie/fluent/FluentKnowledgeBuilder.java | Java | apache-2.0 | 941 |
/*
* Copyright © 2016 Cask Data, 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... | cdapio/tephra | tephra-hbase-compat-1.0-cdh/src/main/java/co/cask/tephra/hbase10cdh/coprocessor/CellSkipFilter.java | Java | apache-2.0 | 4,910 |
using Base.Dto;
namespace Base.ActivityInterface
{
public interface ICoreFlowProvider
{
ActivityOutput SendEmail(EmailDto dto);
}
}
| kanewanggit/tcsworkflow | Core/Base/ActivityInterface/ICoreFlowProvider.cs | C# | apache-2.0 | 156 |
<script type="text/javascript">
console.log('calleed!!');
function initialize() {
var mapOptions = {
center: new google.maps.LatLng(-34.397, 150.644),
zoom: 8
};
var map = new google.maps.Map(document.getElementById("map-canvas"),
mapOptions);
}
initialize();
</script>
<div id="map-canvas"></div>
| SurvivingMondayUMich/officialdemo | views/test.html | HTML | apache-2.0 | 317 |
var searchData=
[
['includequery',['includeQuery',['../classcom_1_1example_1_1servlets_1_1_atakan_servlet_1_1_mathematician.html#a2ded5a2636fe235baef719d9f16ad2e1',1,'com::example::servlets::AtakanServlet::Mathematician']]]
];
| bounswe/bounswe2016group5 | TestWebProject/html/search/functions_5.js | JavaScript | apache-2.0 | 229 |
package chapter6.concurrentutils;
import java.util.Random;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
/**
* CountDownLatch犹如倒计时器 ,调用CountDownLatch对象的countdown方法就将计数器减1 ,当计数到达0时 ,则所有等待者或单个等待者开始执行
*/
public class CountDownLatchDemo {... | Ztiany/CodeRepository | Java/Java-Concurrent/Java-Concurrent-Art/src/main/java/chapter6/concurrentutils/CountDownLatchDemo.java | Java | apache-2.0 | 2,283 |
/*
* Copyright 2009 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 requi... | oehf/ipf | commons/ihe/xds/src/test/java/org/openehealth/ipf/commons/ihe/xds/core/transform/ebxml/ebxml30/SubmissionSetTransformerTest.java | Java | apache-2.0 | 1,338 |
#!/bin/bash
# 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"); y... | DaanHoogland/cloudstack | systemvm/debian/opt/cloud/bin/setup/router.sh | Shell | apache-2.0 | 3,355 |
/*
* Copyright (c) 2013, OpenCloudDB/MyCAT and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software;Designed and Developed mainly by many Chinese
* opensource volunteers. you can redistribute it and/or modify it under the
* ... | youngor/openclouddb | MyCAT_1.2/src/test/java/org/opencloudb/route/function/PartitionByPrefixPatternTest.java | Java | apache-2.0 | 1,939 |
/*
* 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... | pfirmstone/JGDMS | qa/src/org/apache/river/test/spec/discoverymanager/GroupsMulticastMonitorChange.java | Java | apache-2.0 | 2,831 |
# 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 under t... | cernops/keystone | keystone/tests/unit/common/test_manager.py | Python | apache-2.0 | 1,531 |
/**
* 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... | BUPTAnderson/apache-hive-2.1.1-src | serde/src/java/org/apache/hadoop/hive/serde2/lazy/LazyLong.java | Java | apache-2.0 | 7,631 |
/**
* 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... | JingchengDu/hadoop | hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/ResourceManager.java | Java | apache-2.0 | 71,584 |
$packageName = 'wakemeonlan'
$url = 'http://www.nirsoft.net/utils/wakemeonlan.zip'
$checksum = '7b0de93a56e982c001f1cab1f1b350bd7a3c3e5c'
$checksumType = 'sha1'
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$installFile = Join-Path $toolsDir "$($packageName).exe"
Install-ChocolateyZipPackage -... | dtgm/chocolatey-packages | automatic/_output/wakemeonlan/1.68/tools/chocolateyInstall.ps1 | PowerShell | apache-2.0 | 672 |
CC = gcc
ifndef HTSLIB_DIR
$(error HTSLIB_DIR is undefined, see README.txt for details)
endif
all: calc_genotypes ld_vcf
install: calc_genotypes
mkdir -p ../bin
cp calc_genotypes ../bin/
cp ld_vcf ../bin/
calc_genotypes: calc_genotypes.o
$(CC) -o calc_genotypes calc_genotypes.c
calc_genotypes.o: calc_genotype... | Ensembl/ensembl-variation | C_code/Makefile | Makefile | apache-2.0 | 517 |
from a10sdk.common.A10BaseClass import A10BaseClass
class SslCertKey(A10BaseClass):
""" :param action: {"optional": true, "enum": ["create", "import", "export", "copy", "rename", "check", "replace", "delete"], "type": "string", "description": "'create': create; 'import': import; 'export': export; 'copy': ... | amwelch/a10sdk-python | a10sdk/core/A10_file/file_ssl_cert_key.py | Python | apache-2.0 | 1,981 |
package com.alex.develop.fragment.service;
/**
* Created by Administrator on 2015-11-19.
*/
interface OptionalServiceInterFace<T> {
public T LoadData();
}
| xhackertxl/StocksAnalyzer | app/src/main/java/com/alex/develop/fragment/service/OptionalServiceInterFace.java | Java | apache-2.0 | 163 |
/**
* JVectormap demo page
*/
(function ($) {
'use strict';
$('.world-map').vectorMap({
map: 'world_mill_en',
backgroundColor: 'transparent',
zoomOnScroll: false,
strokeWidth: 1,
regionStyle: {
initial: {
fill: $.staticApp.dark,
'fill-opacity': 0.2
},
hover: ... | wiemKh/BotOrient | client/scripts/maps/jvector.js | JavaScript | apache-2.0 | 1,813 |
<!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_111) on Mon Oct 31 20:20:43 PDT 2016 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.apache.gu... | mike-jumper/incubator-guacamole-website | doc/0.9.10-incubating/guacamole-ext/org/apache/guacamole/xml/class-use/DocumentHandler.html | HTML | apache-2.0 | 4,629 |
/*
Copyright 2016 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, ... | shakamunyi/kubernetes | test/e2e/cluster_size_autoscaling.go | GO | apache-2.0 | 21,163 |
' Copyright 2015, 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 ... | stevemanderson/googleads-dotnet-lib | examples/AdXBuyer/Vb/v201502/Reporting/DownloadCriteriaReport.vb | Visual Basic | apache-2.0 | 3,826 |
require_relative './shared_examples/schema_validation'
describe 'Envelope schema-json' do
it_behaves_like 'json-schema validation', :envelope
end
| learningtapestry/learningregistry | spec/schemas/envelope_spec.rb | Ruby | apache-2.0 | 149 |
# Copyright 2016 Pants project contributors (see CONTRIBUTORS.md).
# Licensed under the Apache License, Version 2.0 (see LICENSE).
import os
import subprocess
from typing import Sequence
from pants.util.osutil import get_os_name
class IdeaNotFoundException(Exception):
"""Could not find Idea executable."""
cla... | tdyas/pants | src/python/pants/util/desktop.py | Python | apache-2.0 | 2,880 |
/**
* 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 require... | prateekbh/amphtml | build-system/tasks/check-types.js | JavaScript | apache-2.0 | 4,088 |
/*-
*
* * Copyright 2015 Skymind,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
* *
* * ... | kinbod/deeplearning4j | deeplearning4j-nn/src/main/java/org/deeplearning4j/optimize/listeners/TimeIterationListener.java | Java | apache-2.0 | 2,227 |
/*
* tkUnixXId.c --
*
* Copyright (c) 1993 The Regents of the University of California.
* Copyright (c) 1994-1997 Sun Microsystems, Inc.
*
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*/
#include "tkUnixInt.h"
/*
*-------... | bitkeeper-scm/bitkeeper | src/gui/tcltk/tk/unix/tkUnixXId.c | C | apache-2.0 | 3,371 |
/*
* Copyright (C) 2013 OTAPlatform
*
* 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... | beerbong/OTAPlatform | src/com/beerbong/otaplatform/updater/impl/OUCUpdater.java | Java | apache-2.0 | 3,380 |
#!/usr/bin/python
"""
Copyright 2015 Ericsson AB
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... | EricssonResearch/monad | TravelRecommendation/TravelRecommendation_faster.py | Python | apache-2.0 | 14,541 |
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// Управление общими сведениями о сборке осуществляется посредством следующего
// набора атрибутов. Измените значения этих атрибутов, чтобы изменить сведения,
// связанные со сборкой.
[assembly: AssemblyTitle("Parse... | AlbertMukhammadiev/University | Second_semester/Homework_4/Parser/Parser.Tests/Properties/AssemblyInfo.cs | C# | apache-2.0 | 2,141 |
# rkt prepare
rkt can prepare images to run in a pod.
This means it will fetch (if necessary) the images, extract them in its internal tree store, and allocate a pod UUID.
If overlay fs is not supported or disabled, it will also copy the tree in the pod rootfs.
In this way, the pod is ready to be launched immediately... | sinfomicien/rkt | Documentation/subcommands/prepare.md | Markdown | apache-2.0 | 5,258 |
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="description" content="Javadoc API documentation for Fresco." />
<link rel="shortcut icon" type="image/x-icon" href="../../../../favicon.ico" />
<title>
As... | weiwenqiang/GitHub | expert/fresco/docs/javadoc/reference/com/facebook/drawee/view/AspectRatioMeasure.html | HTML | apache-2.0 | 28,446 |
package org.zstack.network.service.virtualrouter.lb;
import org.apache.commons.codec.digest.DigestUtils;
import org.apache.commons.lang.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.transaction.annot... | zstackio/zstack | plugin/virtualRouterProvider/src/main/java/org/zstack/network/service/virtualrouter/lb/VirtualRouterLoadBalancerBackend.java | Java | apache-2.0 | 112,967 |
# 14.
print_log('\n14. Issuer (Trust Anchor) is creating a Credential Offer for Prover\n')
cred_offer_json = await anoncreds.issuer_create_credential_offer(issuer_wallet_handle,
cred_def_id)
print_log('Credential Of... | Artemkaaas/indy-sdk | docs/how-tos/issue-credential/python/step4.py | Python | apache-2.0 | 2,869 |
package fix
package v0_7_0
import com.spotify.scio.CoreSysProps
import com.spotify.scio.bigquery.BigQuerySysProps
object RewriteSysProp {
BigQuerySysProps.Project.value = "project-key"
BigQuerySysProps.CacheEnabled.value = false.toString
BigQuerySysProps.Priority.value = "INTERACTIVE"
val tmp = CoreSysProps.... | spotify/scio | scalafix/output-0_7/src/main/scala/fix/RewriteSysProp.scala | Scala | apache-2.0 | 376 |
/*
* Copyright 2015-2017 Red Hat, Inc. and/or its affiliates
* and other contributors as indicated by the @author tags.
*
* 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://w... | hawkular/hawkular-android-client | mobile/src/main/java/org/hawkular/client/android/fragment/AlertsFragment.java | Java | apache-2.0 | 17,256 |
/*
* 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... | AaronNGray/xalan | src/xalanc/XSLT/ElemParam.hpp | C++ | apache-2.0 | 2,368 |
<html>
<body>
<font face="verdana" size="-1">Allows to see syntax errors in the results of Analyze | Inspect Code.
</body>
</html> | jexp/idea2 | platform/platform-resources-en/src/inspectionDescriptions/SyntaxError.html | HTML | apache-2.0 | 130 |
#
# Author:: Tyler Ball (<tball@chef.io>)
# Copyright:: Copyright 2014-2016, Chef Software, Inc.
# License:: Apache License, Version 2.0
#
# 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
#
# ... | juliandunn/chef | lib/chef/audit/audit_event_proxy.rb | Ruby | apache-2.0 | 3,344 |
/*
* 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 ... | andrewor14/iolap | mllib/src/main/scala/org/apache/spark/ml/util/SchemaUtils.scala | Scala | apache-2.0 | 2,744 |
/*
* 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 ... | fwassmer/aries | component-dsl/component-dsl/src/main/java/org/apache/aries/osgi/functional/internal/BundleContextOSGiImpl.java | Java | apache-2.0 | 1,142 |
// Copyright 2018 The Bazel 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 appl... | akira-baruah/bazel | src/main/java/com/google/devtools/build/lib/query2/aquery/ActionGraphProtoV2OutputFormatterCallback.java | Java | apache-2.0 | 4,875 |
# Generated by Django 2.1.7 on 2019-04-07 21:43
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('data_log', '0008_auto_20190402_2035'),
]
operations = [
migrations.AlterModelOptions(
name='cra... | PeteAndersen/swarfarm | data_log/migrations/0009_auto_20190407_1443.py | Python | apache-2.0 | 2,137 |
var view = Ti.UI.createView({
backgroundColor:'#000',
top:0,
left:0,
width:'100%',
height:'100%',
layout:'vertical'
});
// create labels, buttons, text fields
var helpLabel = Titanium.UI.createLabel({
color:'#abcdef',
highlightedColor:'#0f0',
backgroundColor:'transparent',
width:'auto',
h... | prpatel/VoterLab | Resources/lab5-b.js | JavaScript | apache-2.0 | 2,072 |
# vim: tabstop=4 shiftwidth=4 softtabstop=4
# Copyright 2012, Intel, 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
#
# ... | inkerra/cinder | cinder/volume/rpcapi.py | Python | apache-2.0 | 7,605 |
#include "./Processors/DenoiseStrategies/DoublehistEqual.h"
#include "math.h"
#include "string.h"
//Àྲ̬±äÁ¿±ØÐëÔÚ.cppÎļþÀïÉùÃ÷
DoublehistEqual* DoublehistEqual::mSingleton = NULL;
void DoublehistEqual::denoise(const Mat& srcImg, Mat& desImg)
{
unsigned char* cvtImg = mat2GrayImgPointer(srcImg, desImg);
histEq... | sxxlearn2rock/SissorActionTest | HODTest/HODTest/Processors/DenoiseStrategies/DoublehistEqual.cpp | C++ | apache-2.0 | 7,482 |
/* Copyright (C) Relevance Lab Private Limited- All Rights Reserved
* Unauthorized copying of this file, via any medium is strictly prohibited
* Proprietary and confidential
* Written by Relevance UI Team,
* Aug 2015
*/
//This is a global service and will be cache
angular.module('factory.appPermission', ... | RLOpenCatalyst/core | client/cat3/src/factory/access_permission_service.js | JavaScript | apache-2.0 | 1,465 |
<!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.6.0_20) on Tue Jun 01 14:31:55 BST 2010 -->
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<TITLE>
Uses of Class com.hp.hpl.j... | jianglili007/pretty-printer | Jenna-2.6.3/doc/javadoc/com/hp/hpl/jena/graph/query/class-use/PatternStageCompiler.html | HTML | apache-2.0 | 6,464 |
<!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_111) on Thu Aug 18 01:51:18 UTC 2016 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Package org... | TK-TarunW/ecosystem | hadoop-2.7.3/share/doc/hadoop/api/org/apache/hadoop/lib/lang/package-use.html | HTML | apache-2.0 | 4,102 |
package org.wtrader.loader.utils.interfaces;
import java.io.IOException;
import java.util.List;
public interface IStockDataLoader {
public void loadFile(String fullnamePath, List<String> acceptedStocks) throws IOException;
}
| bbranquinho/wpattern-wtrader | wtrader-loader/wtrader-loader-utils/src/main/java/org/wtrader/loader/utils/interfaces/IStockDataLoader.java | Java | apache-2.0 | 240 |
---
layout: default
title: CAS - Database Authentication
category: Authentication
---
{% include variables.html %}
# Database Authentication
Database authentication is enabled by including the following dependencies in the WAR overlay:
{% include casmodule.html group="org.apereo.cas" module="cas-server-support-jdbc"... | fogbeam/cas_mirror | docs/cas-server-documentation/authentication/Database-Authentication.md | Markdown | apache-2.0 | 2,203 |
using System;
namespace SimpleWAWS.Authentication
{
public static class AuthConstants
{
//public const string EncryptionReason = "ProtectCookie";
public const string LoginSessionCookie = "loginsession";
public static readonly TimeSpan SessionCookieValidTimeSpan = TimeSpan.FromMinutes(5... | projectkudu/TryAppService | SimpleWAWS/Authentication/AuthConstants.cs | C# | apache-2.0 | 556 |
Ext.namespace("Inubit.WebModeler");
Inubit.WebModeler.ModelNodesLoader = Ext.extend(Inubit.WebModeler.Loader, {
constructor : function (config) {
this.chunkSize = 25;
this.loaded = 0;
this.toLoad = 0;
this.currentChunk = 0;
this.chunks = new Array();
this.nodes = new Array();
this.mode = config.mode;
... | frapu78/processeditor | www/js/loader/ModelNodesLoader.js | JavaScript | apache-2.0 | 3,202 |
# -*- coding:utf-8 -*-
"""
Description:
Issue Transaction
Usage:
from AntShares.Core.IssueTransaction import IssueTransaction
"""
from AntShares.Core.AssetType import AssetType
from AntShares.Helper import *
from AntShares.Core.Transaction import Transaction
from AntShares.Core.TransactionType import Transactio... | AntSharesSDK/antshares-python | sdk/AntShares/Core/IssueTransaction.py | Python | apache-2.0 | 922 |
/*
Copyright 2019 Esri
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, ... | SoJourned/arcgis-pro-sdk-community-samples-1 | Editing/DivideLines/Properties/AssemblyInfo.cs | C# | apache-2.0 | 1,987 |
/*
* Copyright 2010-2016 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 "l... | nterry/aws-sdk-java | aws-java-sdk-sns/src/main/java/com/amazonaws/services/sns/model/SetPlatformApplicationAttributesResult.java | Java | apache-2.0 | 2,106 |
package costmanagement
// Copyright (c) Microsoft and contributors. 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
//... | anpingli/origin | vendor/github.com/Azure/azure-sdk-for-go/services/costmanagement/mgmt/2018-05-31/costmanagement/operations.go | GO | apache-2.0 | 4,861 |
package org.openqa.selenium.support;
// Basic colour keywords as defined by the W3C HTML4 spec
// See http://www.w3.org/TR/css3-color/#html4
import org.openqa.selenium.support.Color;
public enum Colors {
BLACK(new Color(0, 0, 0, 1d)),
SILVER(new Color(192, 192, 192, 1d)),
GRAY(new Color(128, 128, 128, 1d... | winhamwr/selenium | java/client/src/org/openqa/selenium/support/Colors.java | Java | apache-2.0 | 1,017 |
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or ... | jeltz/rust-debian-package | src/test/compile-fail/liveness-issue-2163.rs | Rust | apache-2.0 | 581 |
/*
* Copyright 2012 Google 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 w... | Plonk42/mytracks | myTracks/src/main/java/com/google/android/apps/mytracks/io/file/importer/ImportAsyncTask.java | Java | apache-2.0 | 7,667 |
package com.s4game.server.message.manager;
import javax.annotation.Resource;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Component;
import com.s4game.core.message.Message;
import com.s4game.core.message.Message.DestType;
import com.s4game.core.message.Message.FromTy... | zuesgooogle/HappyMj | mj-game/src/main/java/com/s4game/server/message/manager/SwapManager.java | Java | apache-2.0 | 3,175 |
<?php
/*
* This file is part of the symfony package.
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
* Finds deprecated plugins usage.
*
* @package symfony
*... | avpreserve/MediaSCORE | lib/vendor/lib/task/project/validation/sfDeprecatedPluginsValidation.class.php | PHP | apache-2.0 | 1,700 |
package org.keycloak.services.messages;
import java.io.IOException;
import java.net.URL;
import java.text.MessageFormat;
import java.util.Locale;
import java.util.Properties;
import org.jboss.logging.Logger;
import org.keycloak.models.KeycloakSession;
import org.keycloak.messages.MessagesProvider;
/**
* @author <a h... | matzew/keycloak | services/src/main/java/org/keycloak/services/messages/AdminMessagesProvider.java | Java | apache-2.0 | 1,720 |
/*
* Copyright 2015 RONDHUIT Co.,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 agre... | gazimahmud/nlp4l | src/main/scala/org/nlp4l/core/analysis/Token.scala | Scala | apache-2.0 | 1,506 |
from plenum.common.event_bus import InternalBus
from plenum.common.startable import Mode
from plenum.common.timer import QueueTimer
from plenum.common.util import get_utc_epoch
from plenum.server.consensus.primary_selector import RoundRobinConstantNodesPrimariesSelector
from plenum.server.database_manager import Databa... | evernym/zeno | plenum/test/replica/test_buffers_cleaning.py | Python | apache-2.0 | 3,313 |
from distutils.core import setup, Extension
module1=Extension('hamsterdb',
libraries=['hamsterdb'],
include_dirs=['../include'],
library_dirs=['../src/.libs'],
sources=['src/python.cc'])
setup(name='hamsterdb-python',
version='2.1.8',
author='Christoph Rupp',
author_email... | cloudrain21/hamsterdb | python/setup.py | Python | apache-2.0 | 505 |
// 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.Linq;
using Microsoft.CodeAnalysis.CSharp.Symbols;
using Microsoft.CodeAnalysis.CSharp.Syntax;
using Microsoft.CodeAnalysis.CSharp.Test.Utilitie... | weltkante/roslyn | src/Compilers/CSharp/Test/Symbol/Symbols/Source/FieldTests.cs | C# | apache-2.0 | 21,652 |
#
# Copyright:: Copyright (c) 2014 Chef Software Inc.
# License:: Apache License, Version 2.0
#
# 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.... | vinyar/chef-dk | spec/unit/policyfile_lock_serialization_spec.rb | Ruby | apache-2.0 | 18,676 |
Setting up your development environment
=======================================
To begin with, please follow the steps outlined in:
[Apache Apex Development Environment Setup](../apex_development_setup.md)
to setup your development environment; you can skip the sandbox download
and installation if you already have a H... | sanjaypujare/docs | docs/tutorials/topnwords-c1.md | Markdown | apache-2.0 | 1,348 |
/*
* 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... | nknize/elasticsearch | server/src/main/java/org/elasticsearch/action/admin/indices/template/post/TransportSimulateTemplateAction.java | Java | apache-2.0 | 7,785 |
/**
* Licensed to the Sakai Foundation (SF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The SF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use t... | jonmhays/3akai-ux | devwidgets/entity/css/entity.css | CSS | apache-2.0 | 21,419 |
<%#
Copyright 2013-2017 the original author or authors.
This file is part of the JHipster project, see https://jhipster.github.io/
for more information.
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 L... | fjuriolli/scribble | node_modules/generator-jhipster/generators/client/templates/angularjs/src/main/webapp/app/_app.constants.js | JavaScript | apache-2.0 | 982 |
#!/usr/bin/env python
#
# Copyright 2007 Google 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 o... | illicitonion/givabit | lib/sdks/google_appengine_1.7.1/google_appengine/google/appengine/ext/appstats/datamodel_pb.py | Python | apache-2.0 | 81,798 |
// Copyright 2013 The GLFW-RS Developers. For a full listing of the authors,
// refer to the AUTHORS file at the top-level directory of this distribution.
//
// 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... | bvssvni/glfw-rs | examples/events.rs | Rust | apache-2.0 | 5,806 |
/*
Copyright 2018 The OpenEBS 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, sof... | openebs/maya | cmd/cstor-volume-mgmt/app/command/start.go | GO | apache-2.0 | 2,131 |
// Copyright (c) 2015 Alachisoft
//
// 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... | modulexcite/NCache | Src/NCCommon/Protobuf/CacheStoppedEventResponse.cs | C# | apache-2.0 | 2,316 |
/**
* Copyright 2014-2016 CyberVision, 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 applicabl... | Deepnekroz/kaa | server/node/src/main/java/org/kaaproject/kaa/server/operations/service/akka/actors/supervision/SupervisionStrategyFactory.java | Java | apache-2.0 | 3,672 |
require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
require 'digest/md5'
module Mrg
module Grid
module Config
describe Node do
before(:each) do
setup_rhubarb
@store = Store.new
reconstitute_db
end
after(:each) do
teard... | willb/configuration-store | spec/bz796406_spec.rb | Ruby | apache-2.0 | 1,129 |
/*
* Copyright (c) 2008-2020, 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 ... | mdogan/hazelcast | hazelcast/src/main/java/com/hazelcast/map/impl/ListenerAdapters.java | Java | apache-2.0 | 1,501 |
package com.alibaba.json.bvt.parser;
import org.junit.Assert;
import junit.framework.TestCase;
import com.alibaba.fastjson.JSON;
public class JSONScannerTest__x extends TestCase {
public void test_x() throws Exception {
StringBuilder buf = new StringBuilder();
buf.append("\"");
... | alibaba/fastjson | src/test/java/com/alibaba/json/bvt/parser/JSONScannerTest__x.java | Java | apache-2.0 | 910 |
@echo off
setlocal enableextensions
set config=%1
if "%config%" == "" (
set config=Release
)
set version=
if not "%PackageVersion%" == "" (
set version=-Version %PackageVersion%
)
REM Clean
echo Cleaning...
del /q src\NuPeek\bin\Release\*
REM Build DotPeek 1.0 version
%WINDIR%\Microsoft.NET\Framework\v4.0.303... | modulexcite/dotpeek-nupeek | build.bat | Batchfile | apache-2.0 | 1,847 |
/*
* Copyright 2010-2015 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 "lice... | sdole/aws-sdk-java | aws-java-sdk-opsworks/src/main/java/com/amazonaws/services/opsworks/model/DescribeLoadBasedAutoScalingResult.java | Java | apache-2.0 | 6,974 |
import {parseQueryString} from '#core/types/string/url';
import {BrowserController, RequestBank} from '#testing/test-helper';
const config = describes.sandboxed.configure().skipEdge().skipSafari();
config.run('amp-story analytics', {}, () => {
const extensions = ['amp-story:1.0', 'amp-analytics', 'amp-social-share... | jpettitt/amphtml | test/integration/test-amp-story-analytics.js | JavaScript | apache-2.0 | 7,557 |
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/ec2/EC2_EXPORTS.h>
#include <aws/ec2/EC2Request.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/ec2/model/FpgaImageAttributeName.h>
#include <aws/ec2/model... | awslabs/aws-sdk-cpp | aws-cpp-sdk-ec2/include/aws/ec2/model/ModifyFpgaImageAttributeRequest.h | C | apache-2.0 | 18,714 |
#!/bin/sh
echo "Dropping DB schema"
mysql -u alfresco -palfresco -e "DROP SCHEMA activiticompatibility"
echo "Creating DB schema"
mysql -u alfresco -palfresco -e "CREATE SCHEMA activiticompatibility DEFAULT CHARACTER SET utf8 COLLATE utf8_bin"
echo "Building dependencies"
cd ..
mvn clean install -DskipTests
cd modu... | stefan-ziel/Activiti | scripts/run-compatibility-tests.sh | Shell | apache-2.0 | 730 |
////////////////////////////////////////////////////////////////////////////////
/// DISCLAIMER
///
/// Copyright 2014-2021 ArangoDB GmbH, Cologne, Germany
/// Copyright 2004-2014 triAGENS GmbH, Cologne, Germany
///
/// Licensed under the Apache License, Version 2.0 (the "License");
/// you may not use this file except... | Simran-B/arangodb | arangod/Aql/QueryList.cpp | C++ | apache-2.0 | 13,671 |
/*
* Licensed to Metamarkets Group Inc. (Metamarkets) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. Metamarkets licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); yo... | andy256/druid | processing/src/main/java/io/druid/segment/data/CompressedVSizeIntsIndexedSupplier.java | Java | apache-2.0 | 13,000 |
/*!
* ${copyright}
*/
sap.ui.define(['jquery.sap.global', './Matcher'], function ($, Matcher) {
"use strict";
/**
* BindingPath - checks if a control has a binding context with the exact same binding path.
*
* @class BindingPath - checks if a control has a binding context with the exact same binding path
... | SQCLabs/openui5 | src/sap.ui.core/src/sap/ui/test/matchers/BindingPath.js | JavaScript | apache-2.0 | 2,247 |
/*
* Copyright 2016 The BigDL 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 agr... | intel-analytics/BigDL | scala/dllib/src/test/scala/com/intel/analytics/bigdl/dllib/nn/MinSerialTest.scala | Scala | apache-2.0 | 1,047 |
/*
* Copyright 2000-2014 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... | MichaelNedzelsky/intellij-community | plugins/gradle/src/org/jetbrains/plugins/gradle/service/project/GradleProjectResolver.java | Java | apache-2.0 | 35,093 |
// Copyright (C) 2020 T. Zachary Laine
//
// Distributed under the Boost Software License, Version 1.0. (See
// accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#ifndef BOOST_TEXT_DETAIL_UNPACK_HPP
#define BOOST_TEXT_DETAIL_UNPACK_HPP
#include <boost/text/transcode_iterator.hpp>
... | wiltonlazary/arangodb | 3rdParty/iresearch/external/text/include/boost/text/detail/unpack.hpp | C++ | apache-2.0 | 7,706 |
/*
* 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... | alexksikes/elasticsearch | src/main/java/org/elasticsearch/index/mapper/Uid.java | Java | apache-2.0 | 6,728 |
/**
* Copyright (C) 2009 - present by OpenGamma Inc. and the OpenGamma group of companies
*
* Please see distribution for license.
*/
package com.opengamma.strata.math.impl;
import com.opengamma.strata.collect.ArgChecker;
/**
* Utilities for working with complex numbers.
*/
public class ComplexMathUtils {
pu... | jmptrader/Strata | modules/math/src/main/java/com/opengamma/strata/math/impl/ComplexMathUtils.java | Java | apache-2.0 | 7,523 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.