text
stringlengths
2
1.04M
meta
dict
<?php namespace App\Silex; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\JsonResponse; use Symfony\Component\HttpFoundation\RedirectResponse; use Symfony\Component\HttpFoundation\Response; use Silex\Provider\SessionServiceProvider; use Silex; use Elasticsearch\ClientBuilder; use App\Domain\Logs; use Symfony\Component\Debug\Debug; use App\Domain\Repositories; final class Application extends Silex\Application { public function __construct($debug = false) { parent::__construct($_ENV); $this['debug'] = $debug; $this->register(new SessionServiceProvider); new OAuth($this); new Controllers($this); $this['elasticsearch'] = $this->share(function() { return ClientBuilder::create() ->setHosts(['elk:9200']) ->build() ; }); $this['logs'] = $this->share(function() { return new Logs($this['elasticsearch']); }); $this['github'] = $this->share(function() { return new \Github\Client; }); $this['repositories'] = $this->share(function() { return new Repositories( $this['github'], $this['session']->get('user')->getToken(), $this['HOST'] ); }); } public static function debug() { Debug::enable(); return new self(true); } public static function nodebug() { return new self(false); } }
{ "content_hash": "62159d1f34e8b5c88a696b29ba5eebe5", "timestamp": "", "source": "github", "line_count": 61, "max_line_length": 58, "avg_line_length": 25.295081967213115, "alnum_prop": 0.5787427090084252, "repo_name": "docteurklein/dockeliver", "id": "f757406a16382995894796ec6d549b7c9952c45b", "size": "1543", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "api/src/App/Silex/Application.php", "mode": "33188", "license": "mit", "language": [ { "name": "CSS", "bytes": "2098" }, { "name": "HTML", "bytes": "3569" }, { "name": "JavaScript", "bytes": "113031" }, { "name": "PHP", "bytes": "8246" }, { "name": "Python", "bytes": "4143" }, { "name": "Shell", "bytes": "758" } ], "symlink_target": "" }
TweetNaCl.js Changelog ====================== v0.13.2 ------- * Fixed undefined variable bug in fast version of Poly1305. No worries, this bug was *never* triggered. * Specified CC0 public domain dedication. * Updated development dependencies. v0.13.1 ------- * Exclude `crypto` and `buffer` modules from browserify builds. v0.13.0 ------- * Made `nacl-fast` the default version in NPM package. Now `require("tweetnacl")` will use fast version; to get the original version, use `require("tweetnacl/nacl.js")`. * Cleanup temporary array after generating random bytes. v0.12.2 ------- * Improved performance of curve operations, making `nacl.scalarMult`, `nacl.box`, `nacl.sign` and related functions up to 3x faster in `nacl-fast` version. v0.12.1 ------- * Significantly improved performance of Salsa20 (~1.5x faster) and Poly1305 (~3.5x faster) in `nacl-fast` version. v0.12.0 ------- * Instead of using the given secret key directly, TweetNaCl.js now copies it to a new array in `nacl.box.keyPair.fromSecretKey` and `nacl.sign.keyPair.fromSecretKey`. v0.11.2 ------- * Added new constant: `nacl.sign.seedLength`. v0.11.1 ------- * Even faster hash for both short and long inputs (in `nacl-fast`). v0.11.0 ------- * Implement `nacl.sign.keyPair.fromSeed` to enable creation of sign key pairs deterministically from a 32-byte seed. (It behaves like [libsodium's](http://doc.libsodium.org/public-key_cryptography/public-key_signatures.html) `crypto_sign_seed_keypair`: the seed becomes a secret part of the secret key.) * Fast version now has an improved hash implementation that is 2x-5x faster. * Fixed benchmarks, which may have produced incorrect measurements. v0.10.1 ------- * Exported undocumented `nacl.lowlevel.crypto_core_hsalsa20`. v0.10.0 ------- * **Signature API breaking change!** `nacl.sign` and `nacl.sign.open` now deal with signed messages, and new `nacl.sign.detached` and `nacl.sign.detached.verify` are available. Previously, `nacl.sign` returned a signature, and `nacl.sign.open` accepted a message and "detached" signature. This was unlike NaCl's API, which dealt with signed messages (concatenation of signature and message). The new API is: nacl.sign(message, secretKey) -> signedMessage nacl.sign.open(signedMessage, publicKey) -> message | null Since detached signatures are common, two new API functions were introduced: nacl.sign.detached(message, secretKey) -> signature nacl.sign.detached.verify(message, signature, publicKey) -> true | false (Note that it's `verify`, not `open`, and it returns a boolean value, unlike `open`, which returns an "unsigned" message.) * NPM package now comes without `test` directory to keep it small. v0.9.2 ------ * Improved documentation. * Fast version: increased theoretical message size limit from 2^32-1 to 2^52 bytes in Poly1305 (and thus, secretbox and box). However this has no impact in practice since JavaScript arrays or ArrayBuffers are limited to 32-bit indexes, and most implementations won't allocate more than a gigabyte or so. (Obviously, there are no tests for the correctness of implementation.) Also, it's not recommended to use messages that large without splitting them into smaller packets anyway. v0.9.1 ------ * Initial release
{ "content_hash": "62b7d6b9124696f0d49fe79ddf82ebc8", "timestamp": "", "source": "github", "line_count": 128, "max_line_length": 92, "avg_line_length": 27.0625, "alnum_prop": 0.6916859122401847, "repo_name": "ndcg91/kike", "id": "378a01ea630b3fc3faa37918091d353be37bda18", "size": "3464", "binary": false, "copies": "2", "ref": "refs/heads/master", "path": "node_modules/node-gyp/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/tweetnacl/CHANGELOG.md", "mode": "33188", "license": "mit", "language": [ { "name": "CSS", "bytes": "196904" }, { "name": "HTML", "bytes": "62533" }, { "name": "JavaScript", "bytes": "307601" } ], "symlink_target": "" }
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.rocket.shop</groupId> <artifactId>myshop-user</artifactId> <version>0.0.1-SNAPSHOT</version> </parent> <artifactId>myshop-user-mapper</artifactId> <dependencies> <dependency> <groupId>com.rocket.shop</groupId> <artifactId>myshop-user-pojo</artifactId> <version>0.0.1-SNAPSHOT</version> </dependency> <dependency> <groupId>com.rocket.shop</groupId> <artifactId>myshop-user-dto</artifactId> <version>0.0.1-SNAPSHOT</version> </dependency> </dependencies> </project>
{ "content_hash": "58310f4c427e7692b913761636ee089b", "timestamp": "", "source": "github", "line_count": 21, "max_line_length": 204, "avg_line_length": 37.38095238095238, "alnum_prop": 0.6993630573248407, "repo_name": "goder037/myshop", "id": "fa68de888bdf52965f1891cfcd650ec0dfeb424d", "size": "785", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "myshop-user/myshop-user-mapper/pom.xml", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "CSS", "bytes": "104649" }, { "name": "HTML", "bytes": "1530372" }, { "name": "Java", "bytes": "518558" }, { "name": "JavaScript", "bytes": "134205" } ], "symlink_target": "" }
import fileUrl = require('file-url') import * as url from 'url' import * as path from 'path' import { decode } from 'urlencode' import RelateUrl from 'relateurl' /** * Options to make sure that RelateUrl only outputs relative URLs and performs not other "smart" modifications. * They would mess up things like prefix checking. */ const RELATE_URL_OPTIONS: RelateUrl.Options = { // Make sure RelateUrl does not prefer root-relative URLs if shorter output: RelateUrl.PATH_RELATIVE, // Make sure RelateUrl does not remove trailing slash if present removeRootTrailingSlash: false, // Make sure RelateUrl does not remove default ports defaultPorts: {}, } /** * Like `path.relative()` but for URLs. * Inverse of `url.resolve()` or `new URL(relative, base)`. */ const relativeUrl = (from: string, to: string): string => RelateUrl.relate(from, to, RELATE_URL_OPTIONS) /** converts a server-side Xdebug file URI to a local path for VS Code with respect to source root settings */ export function convertDebuggerPathToClient( fileUri: string | url.Url, pathMapping?: { [index: string]: string } ): string { let localSourceRoot: string | undefined let serverSourceRoot: string | undefined if (typeof fileUri === 'string') { fileUri = url.parse(fileUri) } // convert the file URI to a path let serverPath = decode(fileUri.pathname!) // strip the trailing slash from Windows paths (indicated by a drive letter with a colon) const serverIsWindows = /^\/[a-zA-Z]:\//.test(serverPath) if (serverIsWindows) { serverPath = serverPath.substr(1) } if (pathMapping) { for (const mappedServerPath of Object.keys(pathMapping)) { const mappedLocalSource = pathMapping[mappedServerPath] // normalize slashes for windows-to-unix const serverRelative = (serverIsWindows ? path.win32 : path.posix).relative(mappedServerPath, serverPath) if (serverRelative.indexOf('..') !== 0) { // If a matching mapping has previously been found, only update // it if the current server path is longer than the previous one // (longest prefix matching) if (!serverSourceRoot || mappedServerPath.length > serverSourceRoot.length) { serverSourceRoot = mappedServerPath localSourceRoot = mappedLocalSource } } } } let localPath: string if (serverSourceRoot && localSourceRoot) { const clientIsWindows = /^[a-zA-Z]:\\/.test(localSourceRoot) || /^\\\\/.test(localSourceRoot) || /^[a-zA-Z]:$/.test(localSourceRoot) || /^[a-zA-Z]:\//.test(localSourceRoot) // get the part of the path that is relative to the source root let pathRelativeToSourceRoot = (serverIsWindows ? path.win32 : path.posix).relative( serverSourceRoot, serverPath ) if (serverIsWindows && !clientIsWindows) { pathRelativeToSourceRoot = pathRelativeToSourceRoot.replace(/\\/g, path.posix.sep) } if (clientIsWindows && /^[a-zA-Z]:$/.test(localSourceRoot)) { // if local source root mapping is only drive letter, add backslash localSourceRoot += '\\' } // resolve from the local source root localPath = (clientIsWindows ? path.win32 : path.posix).resolve(localSourceRoot, pathRelativeToSourceRoot) } else { localPath = (serverIsWindows ? path.win32 : path.posix).normalize(serverPath) } return localPath } /** converts a local path from VS Code to a server-side Xdebug file URI with respect to source root settings */ export function convertClientPathToDebugger(localPath: string, pathMapping?: { [index: string]: string }): string { let localSourceRoot: string | undefined let serverSourceRoot: string | undefined // Xdebug always lowercases Windows drive letters in file URIs let localFileUri = fileUrl( localPath.replace(/^[A-Z]:\\/, match => match.toLowerCase()), { resolve: false } ) let serverFileUri: string if (pathMapping) { for (const mappedServerPath of Object.keys(pathMapping)) { let mappedLocalSource = pathMapping[mappedServerPath] if (/^[a-zA-Z]:$/.test(mappedLocalSource)) { // if local source root mapping is only drive letter, add backslash mappedLocalSource += '\\' } const localRelative = path.relative(mappedLocalSource, localPath) if (localRelative.indexOf('..') !== 0) { // If a matching mapping has previously been found, only update // it if the current local path is longer than the previous one // (longest prefix matching) if (!localSourceRoot || mappedLocalSource.length > localSourceRoot.length) { serverSourceRoot = mappedServerPath localSourceRoot = mappedLocalSource } } } } if (localSourceRoot) { localSourceRoot = localSourceRoot.replace(/^[A-Z]:$/, match => match.toLowerCase()) localSourceRoot = localSourceRoot.replace(/^[A-Z]:\\/, match => match.toLowerCase()) localSourceRoot = localSourceRoot.replace(/^[A-Z]:\//, match => match.toLowerCase()) } if (serverSourceRoot) { serverSourceRoot = serverSourceRoot.replace(/^[A-Z]:$/, match => match.toLowerCase()) serverSourceRoot = serverSourceRoot.replace(/^[A-Z]:\\/, match => match.toLowerCase()) serverSourceRoot = serverSourceRoot.replace(/^[A-Z]:\//, match => match.toLowerCase()) } if (serverSourceRoot && localSourceRoot) { let localSourceRootUrl = fileUrl(localSourceRoot, { resolve: false }) if (!localSourceRootUrl.endsWith('/')) { localSourceRootUrl += '/' } let serverSourceRootUrl = fileUrl(serverSourceRoot, { resolve: false }) if (!serverSourceRootUrl.endsWith('/')) { serverSourceRootUrl += '/' } // get the part of the path that is relative to the source root const urlRelativeToSourceRoot = relativeUrl(localSourceRootUrl, localFileUri) // resolve from the server source root serverFileUri = url.resolve(serverSourceRootUrl, urlRelativeToSourceRoot) } else { serverFileUri = localFileUri } return serverFileUri } export function isWindowsUri(path: string): boolean { return /^file:\/\/\/[a-zA-Z]:\//.test(path) } export function isSameUri(clientUri: string, debuggerUri: string): boolean { if (isWindowsUri(clientUri) || isWindowsUri(debuggerUri)) { // compare case-insensitive on Windows return debuggerUri.toLowerCase() === clientUri.toLowerCase() } else { return debuggerUri === clientUri } }
{ "content_hash": "9022ae3ac71f7df4b8e8d729633b87dd", "timestamp": "", "source": "github", "line_count": 155, "max_line_length": 117, "avg_line_length": 44.87741935483871, "alnum_prop": 0.6385853939045428, "repo_name": "felixfbecker/vscode-php-debug", "id": "7024f2db728766921ae19d8864d64193d5dacad0", "size": "6956", "binary": false, "copies": "1", "ref": "refs/heads/renovate/typescript-4.x", "path": "src/paths.ts", "mode": "33188", "license": "mit", "language": [ { "name": "PHP", "bytes": "879" }, { "name": "PowerShell", "bytes": "1794" }, { "name": "Shell", "bytes": "178" }, { "name": "TypeScript", "bytes": "142054" } ], "symlink_target": "" }
class Demon def initialize @running = true start end def start Thread.new do while (@running) execute sleep rate end end end def stop @running = false end def rate 30 end def execute end end
{ "content_hash": "c4e9e9ff37861c9649754079afd1f370", "timestamp": "", "source": "github", "line_count": 28, "max_line_length": 22, "avg_line_length": 9.571428571428571, "alnum_prop": 0.5522388059701493, "repo_name": "maldrasen/archive", "id": "1d71d99573e4af278d1d4551686b6d83595999cb", "size": "268", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "Mechalurgy/lib/demon/demon.rb", "mode": "33188", "license": "mit", "language": [ { "name": "CSS", "bytes": "230920" }, { "name": "HTML", "bytes": "1056213" }, { "name": "JavaScript", "bytes": "2161778" }, { "name": "Ruby", "bytes": "722167" }, { "name": "Shell", "bytes": "442" } ], "symlink_target": "" }
require 'mtk' require 'mtk/io/midi_file' include MTK file = ARGV[0] || 'MTK-random_tone_row.mid' row = Groups::PitchClassSet.random_row sequence = Patterns.Sequence *row sequencer = Sequencers.StepSequencer sequence timeline = sequencer.to_timeline MIDIFile(file).write timeline
{ "content_hash": "156e4551eaf3514db5b7f9c50016a783", "timestamp": "", "source": "github", "line_count": 14, "max_line_length": 45, "avg_line_length": 20.285714285714285, "alnum_prop": 0.7676056338028169, "repo_name": "adamjmurray/mtk", "id": "e3eb16151a7ec75b3ccf634a5f5e5c848e291774", "size": "440", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "examples/random_tone_row.rb", "mode": "33188", "license": "bsd-2-clause", "language": [ { "name": "Ruby", "bytes": "402500" } ], "symlink_target": "" }
using System; using System.Collections.Generic; using System.Linq; using System.Text; class ProblemsWithMatrices { static void Main(string[] args) { var rowAndCol = Console.ReadLine().Split().Select(int.Parse).ToArray(); var commandsCounter = int.Parse(Console.ReadLine()); int row; int col; int moves; var matrix = new List<List<int>>(); GenerateMatrix(matrix, rowAndCol); var result = new StringBuilder(); bool rowOrNot = true; for (int i = 0; i < commandsCounter; i++) { var command = Console.ReadLine().Split(); var direction = command[1]; moves = int.Parse(command[2]); if (direction.Equals("left") || direction.Equals("right")) { row = int.Parse(command[0]); ShuffleMatrix(matrix, row, direction, moves, rowOrNot); } else { rowOrNot = false; col = int.Parse(command[0]); ShuffleMatrix(matrix, col, direction, moves, rowOrNot); rowOrNot = true; } } RearrangeMatrix(result, matrix); Console.WriteLine(result.ToString()); } public static void RearrangeMatrix(StringBuilder result, List<List<int>> matrix) { int rows = matrix.Count; int cols; for (int i = 0; i < rows; i++) { cols = matrix[i].Count; for (int j = 0; j < cols; j++) { int initValue = i * cols + (j + 1); int currentValue = matrix[i][j]; if (initValue != currentValue) { for (int k = 0; k < rows; k++) { var currentRow = matrix[k].ToArray(); int index = Array.IndexOf(currentRow, initValue); if (index > -1) { matrix[k][index] = currentValue; matrix[i][j] = initValue; Console.WriteLine($"Swap ({i}, {j}) with ({k}, {index})"); break; } } } else { Console.WriteLine("No swap required"); } } } } private static void ShuffleMatrix(List<List<int>> matrix, int rowOrCol, string direction, int moves, bool rowOrNot) { if (rowOrNot) { switch (direction) { case "left": MoveRowToLeft(matrix, rowOrCol, moves); break; case "right": MoveRowToRight(matrix, rowOrCol, moves); break; default: break; } } else { switch (direction) { case "up": MoveColUp(matrix, rowOrCol, moves); break; case "down": MoveColDown(matrix, rowOrCol, moves); break; default: break; } } } private static void MoveColDown(List<List<int>> matrix, int rowOrCol, int moves) { int holder; int col = rowOrCol; List<int> currentCol = new List<int>(); for (int i = 0; i < matrix.Count; i++) { currentCol.Add(matrix[i][col]); } int lastIndex = currentCol.Count - 1; for (int i = 0; i < moves; i++) { holder = currentCol[lastIndex]; currentCol.RemoveAt(lastIndex); currentCol.Insert(0, holder); } for (int i = 0; i < matrix.Count; i++) { matrix[i][col] = currentCol[i]; } } private static void MoveColUp(List<List<int>> matrix, int rowOrCol, int moves) { int holder; int col = rowOrCol; List<int> currentCol = new List<int>(); for (int i = 0; i < matrix.Count; i++) { currentCol.Add(matrix[i][col]); } for (int i = 0; i < moves; i++) { holder = currentCol[0]; currentCol.RemoveAt(0); currentCol.Add(holder); } for (int i = 0; i < matrix.Count; i++) { matrix[i][col] = currentCol[i]; } } private static void MoveRowToRight(List<List<int>> matrix, int row, int moves) { int holder = 0; int lastIndex = matrix[row].Count - 1; for (int i = 0; i < moves; i++) { holder = matrix[row][lastIndex]; matrix[row].RemoveAt(lastIndex); matrix[row].Insert(0, holder); } } private static void MoveRowToLeft(List<List<int>> matrix, int row, int moves) { int holder = 0; for (int i = 0; i < moves; i++) { holder = matrix[row][0]; matrix[row].RemoveAt(0); matrix[row].Add(holder); } } private static void GenerateMatrix(List<List<int>> matrix, int[] rowAndCol) { int num = 1; for (int row = 0; row < rowAndCol[0]; row++) { matrix.Add(new List<int>()); for (int col = 0; col < rowAndCol[1]; col++) { matrix[row].Add(num); num++; } } } }
{ "content_hash": "d761a1607433e5a5e0f9487693f7d31c", "timestamp": "", "source": "github", "line_count": 196, "max_line_length": 119, "avg_line_length": 28.51530612244898, "alnum_prop": 0.4431919842547862, "repo_name": "sevdalin/Software-University-SoftUni", "id": "f6941cd8beffa27762d57787b4426c57f4940343", "size": "5591", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "C-sharp-Web-Developer/C# Advanced/Matrices/05. RubiksMatrix/RubiksMatrix.cs", "mode": "33188", "license": "mit", "language": [ { "name": "ASP", "bytes": "388" }, { "name": "C#", "bytes": "3998101" }, { "name": "CSS", "bytes": "161101" }, { "name": "HTML", "bytes": "261529" }, { "name": "Java", "bytes": "20909" }, { "name": "JavaScript", "bytes": "609440" }, { "name": "PHP", "bytes": "16185" }, { "name": "PLSQL", "bytes": "723" }, { "name": "PLpgSQL", "bytes": "4714" }, { "name": "PowerShell", "bytes": "471" }, { "name": "Ruby", "bytes": "1030" }, { "name": "SQLPL", "bytes": "3383" }, { "name": "Smalltalk", "bytes": "2065" } ], "symlink_target": "" }
/* * Minio Java Library for Amazon S3 Compatible Cloud Storage, (C) 2015 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 * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import io.minio.MinioClient; import io.minio.acl.Acl; import io.minio.errors.ClientException; import org.xmlpull.v1.XmlPullParserException; import java.io.IOException; public class GetBucketAcl { public static void main(String[] args) throws IOException, XmlPullParserException, ClientException { System.out.println("GetBucketAcl app"); // Set s3 endpoint, region is calculated automatically MinioClient s3Client = new MinioClient("https://s3.amazonaws.com", "YOUR-ACCESSKEYID", "YOUR-SECRETACCESSKEY"); // get bucket canned acl Acl acl = s3Client.getBucketACL("mybucket"); System.out.println(acl); } }
{ "content_hash": "7a31582dc5416f42c8f2cf1ca10e2532", "timestamp": "", "source": "github", "line_count": 35, "max_line_length": 115, "avg_line_length": 36.714285714285715, "alnum_prop": 0.7455252918287938, "repo_name": "arunsingh/minio-java", "id": "94a9a85f1c64a35bed225d19e69100d6f683ddc7", "size": "1285", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "examples/GetBucketAcl.java", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "Java", "bytes": "161236" } ], "symlink_target": "" }
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ (function (ng) { var mod = ng.module("paymentMethodModule"); mod.controller("paymentMethodEditCtrl", ["$scope", "$state", "paymentMethod", function ($scope, $state, paymentMethod) { $scope.currentRecord = paymentMethod; $scope.actions = { save: { displayName: 'Save', icon: 'save', fn: function () { if ($scope.paymentMethodForm.$valid) { $scope.currentRecord.put().then(function (rc) { $state.go('paymentMethodDetail', {paymentMethodId: rc.id}, {reload: true}); }); } } }, cancel: { displayName: 'Cancel', icon: 'remove', fn: function () { $state.go('paymentMethodDetail'); } } }; }]); })(window.angular);
{ "content_hash": "c0a52a2504f5dba2bb8d7de463b48791", "timestamp": "", "source": "github", "line_count": 35, "max_line_length": 107, "avg_line_length": 35.42857142857143, "alnum_prop": 0.442741935483871, "repo_name": "Uniandes-MISO4203/turism-201620-2", "id": "a25beeb9a48f9511d9324297af8b9411d7096cbc", "size": "1240", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "turism-api/src/main/webapp/src/modules/paymentMethod/instance/edit/paymentMethod.edit.ctrl.js", "mode": "33188", "license": "mit", "language": [ { "name": "Batchfile", "bytes": "186" }, { "name": "CSS", "bytes": "12095" }, { "name": "HTML", "bytes": "130540" }, { "name": "Java", "bytes": "669433" }, { "name": "JavaScript", "bytes": "225378" } ], "symlink_target": "" }
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package try_ddd.try_ddd.javafxgui; import javafx.event.ActionEvent; import javafx.fxml.FXML; import javafx.scene.control.Button; import javafx.scene.text.Text; /** * * @author lucius */ public class IndexController { @FXML private Button manageBorrow; @FXML private Text label = new Text("test"); @FXML protected void openAddCopy(ActionEvent event) { SceneSwitcher.switchScene(manageBorrow, SceneSwitcher.SCENE_ADD_COPY); } @FXML protected void openManageBorrows(ActionEvent event) { } @FXML protected void openManageComics(ActionEvent event) { } @FXML protected void openManageFriends(ActionEvent event) { } }
{ "content_hash": "f25137be8f611d7f4a3452d00b14813f", "timestamp": "", "source": "github", "line_count": 35, "max_line_length": 79, "avg_line_length": 25.142857142857142, "alnum_prop": 0.7045454545454546, "repo_name": "BacLuc/try_ddd", "id": "c484dc0014bef2dd2af424c6cb57112ce81f6032", "size": "880", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "src/main/java/try_ddd/try_ddd/javafxgui/IndexController.java", "mode": "33188", "license": "mit", "language": [ { "name": "Java", "bytes": "54378" } ], "symlink_target": "" }
<!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="Docutils 0.17.1: http://docutils.sourceforge.net/" /> <meta name="viewport" content="width=device-width,initial-scale=1"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <meta name="lang:clipboard.copy" content="Copy to clipboard"> <meta name="lang:clipboard.copied" content="Copied to clipboard"> <meta name="lang:search.language" content="en"> <meta name="lang:search.pipeline.stopwords" content="True"> <meta name="lang:search.pipeline.trimmer" content="True"> <meta name="lang:search.result.none" content="No matching documents"> <meta name="lang:search.result.one" content="1 matching document"> <meta name="lang:search.result.other" content="# matching documents"> <meta name="lang:search.tokenizer" content="[\s\-]+"> <link href="https://fonts.gstatic.com/" rel="preconnect" crossorigin> <link href="https://fonts.googleapis.com/css?family=Roboto+Mono:400,500,700|Roboto:300,400,400i,700&display=fallback" rel="stylesheet"> <style> body, input { font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif } code, kbd, pre { font-family: "Roboto Mono", "Courier New", Courier, monospace } </style> <link rel="stylesheet" href="../_static/stylesheets/application.css"/> <link rel="stylesheet" href="../_static/stylesheets/application-palette.css"/> <link rel="stylesheet" href="../_static/stylesheets/application-fixes.css"/> <link rel="stylesheet" href="../_static/fonts/material-icons.css"/> <meta name="theme-color" content="#3f51b5"> <script src="../_static/javascripts/modernizr.js"></script> <title>statsmodels.tsa.vector_ar.vecm.VECMResults.pvalues_gamma &#8212; statsmodels</title> <link rel="icon" type="image/png" sizes="32x32" href="../_static/icons/favicon-32x32.png"> <link rel="icon" type="image/png" sizes="16x16" href="../_static/icons/favicon-16x16.png"> <link rel="manifest" href="../_static/icons/site.webmanifest"> <link rel="mask-icon" href="../_static/icons/safari-pinned-tab.svg" color="#919191"> <meta name="msapplication-TileColor" content="#2b5797"> <meta name="msapplication-config" content="../_static/icons/browserconfig.xml"> <link rel="stylesheet" href="../_static/stylesheets/examples.css"> <link rel="stylesheet" href="../_static/stylesheets/deprecation.css"> <link rel="stylesheet" type="text/css" href="../_static/pygments.css" /> <link rel="stylesheet" type="text/css" href="../_static/material.css" /> <link rel="stylesheet" type="text/css" href="../_static/graphviz.css" /> <link rel="stylesheet" type="text/css" href="../_static/plot_directive.css" /> <script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js"></script> <script src="../_static/jquery.js"></script> <script src="../_static/underscore.js"></script> <script src="../_static/doctools.js"></script> <script crossorigin="anonymous" integrity="sha256-Ae2Vz/4ePdIu6ZyI/5ZGsYnb+m0JlOmKPjt6XZ9JJkA=" src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.4/require.min.js"></script> <link rel="shortcut icon" href="../_static/favicon.ico"/> <link rel="author" title="About these documents" href="../about.html" /> <link rel="index" title="Index" href="../genindex.html" /> <link rel="search" title="Search" href="../search.html" /> <link rel="next" title="statsmodels.tsa.vector_ar.vecm.VECMResults.resid" href="statsmodels.tsa.vector_ar.vecm.VECMResults.resid.html" /> <link rel="prev" title="statsmodels.tsa.vector_ar.vecm.VECMResults.pvalues_det_coef_coint" href="statsmodels.tsa.vector_ar.vecm.VECMResults.pvalues_det_coef_coint.html" /> </head> <body dir=ltr data-md-color-primary=indigo data-md-color-accent=blue> <svg class="md-svg"> <defs data-children-count="0"> <svg xmlns="http://www.w3.org/2000/svg" width="416" height="448" viewBox="0 0 416 448" id="__github"><path fill="currentColor" d="M160 304q0 10-3.125 20.5t-10.75 19T128 352t-18.125-8.5-10.75-19T96 304t3.125-20.5 10.75-19T128 256t18.125 8.5 10.75 19T160 304zm160 0q0 10-3.125 20.5t-10.75 19T288 352t-18.125-8.5-10.75-19T256 304t3.125-20.5 10.75-19T288 256t18.125 8.5 10.75 19T320 304zm40 0q0-30-17.25-51T296 232q-10.25 0-48.75 5.25Q229.5 240 208 240t-39.25-2.75Q130.75 232 120 232q-29.5 0-46.75 21T56 304q0 22 8 38.375t20.25 25.75 30.5 15 35 7.375 37.25 1.75h42q20.5 0 37.25-1.75t35-7.375 30.5-15 20.25-25.75T360 304zm56-44q0 51.75-15.25 82.75-9.5 19.25-26.375 33.25t-35.25 21.5-42.5 11.875-42.875 5.5T212 416q-19.5 0-35.5-.75t-36.875-3.125-38.125-7.5-34.25-12.875T37 371.5t-21.5-28.75Q0 312 0 260q0-59.25 34-99-6.75-20.5-6.75-42.5 0-29 12.75-54.5 27 0 47.5 9.875t47.25 30.875Q171.5 96 212 96q37 0 70 8 26.25-20.5 46.75-30.25T376 64q12.75 25.5 12.75 54.5 0 21.75-6.75 42 34 40 34 99.5z"/></svg> </defs> </svg> <input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer"> <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search"> <label class="md-overlay" data-md-component="overlay" for="__drawer"></label> <a href="#generated/statsmodels.tsa.vector_ar.vecm.VECMResults.pvalues_gamma" tabindex="1" class="md-skip"> Skip to content </a> <header class="md-header" data-md-component="header"> <nav class="md-header-nav md-grid"> <div class="md-flex navheader"> <div class="md-flex__cell md-flex__cell--shrink"> <a href="../index.html" title="statsmodels" class="md-header-nav__button md-logo"> <img src="../_static/statsmodels-logo-v2-bw.svg" height="26" alt="statsmodels logo"> </a> </div> <div class="md-flex__cell md-flex__cell--shrink"> <label class="md-icon md-icon--menu md-header-nav__button" for="__drawer"></label> </div> <div class="md-flex__cell md-flex__cell--stretch"> <div class="md-flex__ellipsis md-header-nav__title" data-md-component="title"> <span class="md-header-nav__topic">statsmodels v0.13.1</span> <span class="md-header-nav__topic"> statsmodels.tsa.vector_ar.vecm.VECMResults.pvalues_gamma </span> </div> </div> <div class="md-flex__cell md-flex__cell--shrink"> <label class="md-icon md-icon--search md-header-nav__button" for="__search"></label> <div class="md-search" data-md-component="search" role="dialog"> <label class="md-search__overlay" for="__search"></label> <div class="md-search__inner" role="search"> <form class="md-search__form" action="../search.html" method="get" name="search"> <input type="text" class="md-search__input" name="q" placeholder="Search" autocapitalize="off" autocomplete="off" spellcheck="false" data-md-component="query" data-md-state="active"> <label class="md-icon md-search__icon" for="__search"></label> <button type="reset" class="md-icon md-search__icon" data-md-component="reset" tabindex="-1"> &#xE5CD; </button> </form> <div class="md-search__output"> <div class="md-search__scrollwrap" data-md-scrollfix> <div class="md-search-result" data-md-component="result"> <div class="md-search-result__meta"> Type to start searching </div> <ol class="md-search-result__list"></ol> </div> </div> </div> </div> </div> </div> <div class="md-flex__cell md-flex__cell--shrink"> <div class="md-header-nav__source"> <a href="https://github.com/statsmodels/statsmodels" title="Go to repository" class="md-source" data-md-source="github"> <div class="md-source__icon"> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24" width="28" height="28"> <use xlink:href="#__github" width="24" height="24"></use> </svg> </div> <div class="md-source__repository"> statsmodels </div> </a> </div> </div> <script src="../_static/javascripts/version_dropdown.js"></script> <script> var json_loc = "../../versions-v2.json", target_loc = "../../", text = "Versions"; $( document ).ready( add_version_dropdown(json_loc, target_loc, text)); </script> </div> </nav> </header> <div class="md-container"> <nav class="md-tabs" data-md-component="tabs"> <div class="md-tabs__inner md-grid"> <ul class="md-tabs__list"> <li class="md-tabs__item"><a href="../user-guide.html" class="md-tabs__link">User Guide</a></li> <li class="md-tabs__item"><a href="../vector_ar.html" class="md-tabs__link">Vector Autoregressions <code class="xref py py-mod docutils literal notranslate"><span class="pre">tsa.vector_ar</span></code></a></li> <li class="md-tabs__item"><a href="statsmodels.tsa.vector_ar.vecm.VECMResults.html" class="md-tabs__link">statsmodels.tsa.vector_ar.vecm.VECMResults</a></li> </ul> </div> </nav> <main class="md-main"> <div class="md-main__inner md-grid" data-md-component="container"> <div class="md-sidebar md-sidebar--primary" data-md-component="navigation"> <div class="md-sidebar__scrollwrap"> <div class="md-sidebar__inner"> <nav class="md-nav md-nav--primary" data-md-level="0"> <label class="md-nav__title md-nav__title--site" for="__drawer"> <a href="../index.html" title="statsmodels" class="md-nav__button md-logo"> <img src="../_static/statsmodels-logo-v2-bw.svg" alt=" logo" width="48" height="48"> </a> <a href="../index.html" title="statsmodels">statsmodels v0.13.1</a> </label> <div class="md-nav__source"> <a href="https://github.com/statsmodels/statsmodels" title="Go to repository" class="md-source" data-md-source="github"> <div class="md-source__icon"> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24" width="28" height="28"> <use xlink:href="#__github" width="24" height="24"></use> </svg> </div> <div class="md-source__repository"> statsmodels </div> </a> </div> <ul class="md-nav__list"> <li class="md-nav__item"> <a href="../install.html" class="md-nav__link">Installing statsmodels</a> </li> <li class="md-nav__item"> <a href="../gettingstarted.html" class="md-nav__link">Getting started</a> </li> <li class="md-nav__item"> <a href="../user-guide.html" class="md-nav__link">User Guide</a> <ul class="md-nav__list"> <li class="md-nav__item"> <a href="../user-guide.html#background" class="md-nav__link">Background</a> </li> <li class="md-nav__item"> <a href="../user-guide.html#regression-and-linear-models" class="md-nav__link">Regression and Linear Models</a> </li> <li class="md-nav__item"> <a href="../user-guide.html#time-series-analysis" class="md-nav__link">Time Series Analysis</a> <ul class="md-nav__list"> <li class="md-nav__item"> <a href="../tsa.html" class="md-nav__link">Time Series analysis <code class="xref py py-mod docutils literal notranslate"><span class="pre">tsa</span></code></a> </li> <li class="md-nav__item"> <a href="../statespace.html" class="md-nav__link">Time Series Analysis by State Space Methods <code class="xref py py-mod docutils literal notranslate"><span class="pre">statespace</span></code></a> </li> <li class="md-nav__item"> <a href="../vector_ar.html" class="md-nav__link">Vector Autoregressions <code class="xref py py-mod docutils literal notranslate"><span class="pre">tsa.vector_ar</span></code></a> </li></ul> </li> <li class="md-nav__item"> <a href="../user-guide.html#other-models" class="md-nav__link">Other Models</a> </li> <li class="md-nav__item"> <a href="../user-guide.html#statistics-and-tools" class="md-nav__link">Statistics and Tools</a> </li> <li class="md-nav__item"> <a href="../user-guide.html#data-sets" class="md-nav__link">Data Sets</a> </li> <li class="md-nav__item"> <a href="../user-guide.html#sandbox" class="md-nav__link">Sandbox</a> </li></ul> </li> <li class="md-nav__item"> <a href="../examples/index.html" class="md-nav__link">Examples</a> </li> <li class="md-nav__item"> <a href="../api.html" class="md-nav__link">API Reference</a> </li> <li class="md-nav__item"> <a href="../about.html" class="md-nav__link">About statsmodels</a> </li> <li class="md-nav__item"> <a href="../dev/index.html" class="md-nav__link">Developer Page</a> </li> <li class="md-nav__item"> <a href="../release/index.html" class="md-nav__link">Release Notes</a> </li> </ul> </nav> </div> </div> </div> <div class="md-sidebar md-sidebar--secondary" data-md-component="toc"> <div class="md-sidebar__scrollwrap"> <div class="md-sidebar__inner"> <nav class="md-nav md-nav--secondary"> <ul class="md-nav__list" data-md-scrollfix=""> <li class="md-nav__item"><a class="md-nav__extra_link" href="../_sources/generated/statsmodels.tsa.vector_ar.vecm.VECMResults.pvalues_gamma.rst.txt">Show Source</a> </li> <li id="searchbox" class="md-nav__item"></li> </ul> </nav> </div> </div> </div> <div class="md-content"> <article class="md-content__inner md-typeset" role="main"> <section id="statsmodels-tsa-vector-ar-vecm-vecmresults-pvalues-gamma"> <h1 id="generated-statsmodels-tsa-vector-ar-vecm-vecmresults-pvalues-gamma--page-root">statsmodels.tsa.vector_ar.vecm.VECMResults.pvalues_gamma<a class="headerlink" href="#generated-statsmodels-tsa-vector-ar-vecm-vecmresults-pvalues-gamma--page-root" title="Permalink to this headline">¶</a></h1> <dl class="py attribute"> <dt class="sig sig-object py" id="statsmodels.tsa.vector_ar.vecm.VECMResults.pvalues_gamma"> <span class="sig-prename descclassname"><span class="pre">VECMResults.</span></span><span class="sig-name descname"><span class="pre">pvalues_gamma</span></span><a class="headerlink" href="#statsmodels.tsa.vector_ar.vecm.VECMResults.pvalues_gamma" title="Permalink to this definition">¶</a></dt> <dd></dd></dl> </section> </article> </div> </div> </main> </div> <footer class="md-footer"> <div class="md-footer-nav"> <nav class="md-footer-nav__inner md-grid"> <a href="statsmodels.tsa.vector_ar.vecm.VECMResults.pvalues_det_coef_coint.html" title="statsmodels.tsa.vector_ar.vecm.VECMResults.pvalues_det_coef_coint" class="md-flex md-footer-nav__link md-footer-nav__link--prev" rel="prev"> <div class="md-flex__cell md-flex__cell--shrink"> <i class="md-icon md-icon--arrow-back md-footer-nav__button"></i> </div> <div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title"> <span class="md-flex__ellipsis"> <span class="md-footer-nav__direction"> Previous </span> statsmodels.tsa.vector_ar.vecm.VECMResults.pvalues_det_coef_coint </span> </div> </a> <a href="statsmodels.tsa.vector_ar.vecm.VECMResults.resid.html" title="statsmodels.tsa.vector_ar.vecm.VECMResults.resid" class="md-flex md-footer-nav__link md-footer-nav__link--next" rel="next"> <div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title"><span class="md-flex__ellipsis"> <span class="md-footer-nav__direction"> Next </span> statsmodels.tsa.vector_ar.vecm.VECMResults.resid </span> </div> <div class="md-flex__cell md-flex__cell--shrink"><i class="md-icon md-icon--arrow-forward md-footer-nav__button"></i> </div> </a> </nav> </div> <div class="md-footer-meta md-typeset"> <div class="md-footer-meta__inner md-grid"> <div class="md-footer-copyright"> <div class="md-footer-copyright__highlight"> &#169; Copyright 2009-2019, Josef Perktold, Skipper Seabold, Jonathan Taylor, statsmodels-developers. </div> Last updated on Nov 12, 2021. <br/> Created using <a href="http://www.sphinx-doc.org/">Sphinx</a> 4.3.0. and <a href="https://github.com/bashtage/sphinx-material/">Material for Sphinx</a> </div> </div> </div> </footer> <script src="../_static/javascripts/application.js"></script> <script>app.initialize({version: "1.0.4", url: {base: ".."}})</script> </body> </html>
{ "content_hash": "a1c042a3da6502e9b02c680cf694c7a1", "timestamp": "", "source": "github", "line_count": 447, "max_line_length": 999, "avg_line_length": 39.55257270693512, "alnum_prop": 0.6015271493212669, "repo_name": "statsmodels/statsmodels.github.io", "id": "e94bfc81ee778d33b1f7a4d423562f5f382e9081", "size": "17684", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "v0.13.1/generated/statsmodels.tsa.vector_ar.vecm.VECMResults.pvalues_gamma.html", "mode": "33188", "license": "bsd-3-clause", "language": [], "symlink_target": "" }
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>class RDoc::Store::MissingFileError - RDoc Documentation</title> <script type="text/javascript"> var rdoc_rel_prefix = "../../"; </script> <script src="../../js/jquery.js"></script> <script src="../../js/darkfish.js"></script> <link href="../../css/fonts.css" rel="stylesheet"> <link href="../../css/rdoc.css" rel="stylesheet"> <body id="top" role="document" class="class"> <nav role="navigation"> <div id="project-navigation"> <div id="home-section" role="region" title="Quick navigation" class="nav-section"> <h2> <a href="../../index.html" rel="home">Home</a> </h2> <div id="table-of-contents-navigation"> <a href="../../table_of_contents.html#pages">Pages</a> <a href="../../table_of_contents.html#classes">Classes</a> <a href="../../table_of_contents.html#methods">Methods</a> </div> </div> <div id="search-section" role="search" class="project-section initially-hidden"> <form action="#" method="get" accept-charset="utf-8"> <div id="search-field-wrapper"> <input id="search-field" role="combobox" aria-label="Search" aria-autocomplete="list" aria-controls="search-results" type="text" name="search" placeholder="Search" spellcheck="false" title="Type to search, Up and Down to navigate, Enter to load"> </div> <ul id="search-results" aria-label="Search Results" aria-busy="false" aria-expanded="false" aria-atomic="false" class="initially-hidden"></ul> </form> </div> </div> <div id="class-metadata"> <div id="parent-class-section" class="nav-section"> <h3>Parent</h3> <p class="link"><a href="Error.html">RDoc::Store::Error</a> </div> <!-- Method Quickref --> <div id="method-list-section" class="nav-section"> <h3>Methods</h3> <ul class="link-list" role="directory"> <li ><a href="#method-c-new">::new</a> </ul> </div> </div> </nav> <main role="main" aria-labelledby="class-RDoc::Store::MissingFileError"> <h1 id="class-RDoc::Store::MissingFileError" class="class"> class RDoc::Store::MissingFileError </h1> <section class="description"> <p>Raised when a stored file for a class, module, page or method is missing.</p> </section> <section id="5Buntitled-5D" class="documentation-section"> <section class="attribute-method-details" class="method-section"> <header> <h3>Attributes</h3> </header> <div id="attribute-i-file" class="method-detail"> <div class="method-heading attribute-method-heading"> <span class="method-name">file</span><span class="attribute-access-type">[R]</span> </div> <div class="method-description"> <p>The file the <a href="MissingFileError.html#attribute-i-name">name</a> should be saved as</p> </div> </div> <div id="attribute-i-name" class="method-detail"> <div class="method-heading attribute-method-heading"> <span class="method-name">name</span><span class="attribute-access-type">[R]</span> </div> <div class="method-description"> <p>The name of the object the <a href="MissingFileError.html#attribute-i-file">file</a> would be loaded from</p> </div> </div> <div id="attribute-i-store" class="method-detail"> <div class="method-heading attribute-method-heading"> <span class="method-name">store</span><span class="attribute-access-type">[R]</span> </div> <div class="method-description"> <p>The store the file should exist in</p> </div> </div> </section> <section id="public-class-5Buntitled-5D-method-details" class="method-section"> <header> <h3>Public Class Methods</h3> </header> <div id="method-c-new" class="method-detail "> <div class="method-heading"> <span class="method-name">new</span><span class="method-args">(store, file, name)</span> <span class="method-click-advice">click to toggle source</span> </div> <div class="method-description"> <p>Creates a new <a href="MissingFileError.html">MissingFileError</a> for the missing <code>file</code> for the given <code>name</code> that should have been in the <code>store</code>.</p> <div class="method-source-code" id="new-source"> <pre><span class="ruby-comment"># File lib/rdoc/store.rb, line 56</span> <span class="ruby-keyword">def</span> <span class="ruby-identifier">initialize</span> <span class="ruby-identifier">store</span>, <span class="ruby-identifier">file</span>, <span class="ruby-identifier">name</span> <span class="ruby-ivar">@store</span> = <span class="ruby-identifier">store</span> <span class="ruby-ivar">@file</span> = <span class="ruby-identifier">file</span> <span class="ruby-ivar">@name</span> = <span class="ruby-identifier">name</span> <span class="ruby-keyword">end</span></pre> </div> </div> </div> </section> </section> </main> <footer id="validator-badges" role="contentinfo"> <p><a href="http://validator.w3.org/check/referer">Validate</a> <p>Generated by <a href="http://docs.seattlerb.org/rdoc/">RDoc</a> 4.2.0. <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>. </footer>
{ "content_hash": "0175ec9172deccfbf84077f48fbc6ed1", "timestamp": "", "source": "github", "line_count": 208, "max_line_length": 214, "avg_line_length": 27.620192307692307, "alnum_prop": 0.5932114882506527, "repo_name": "arianepaola/arianepaola.github.io", "id": "44b5bcd870a2767d47ce2b8d4ccaff9d66b43667", "size": "5745", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "rdoc/RDoc/Store/MissingFileError.html", "mode": "33188", "license": "mit", "language": [ { "name": "CSS", "bytes": "15702" }, { "name": "HTML", "bytes": "3441419" }, { "name": "JavaScript", "bytes": "17926" } ], "symlink_target": "" }
package org.lockss.plugin.silverchair.oup; import java.io.InputStream; import org.htmlparser.NodeFilter; import org.htmlparser.filters.OrFilter; import org.lockss.daemon.PluginException; import org.lockss.filter.html.*; import org.lockss.plugin.*; public class OupScHtmlCrawlFilterFactory implements FilterFactory { @Override public InputStream createFilteredInputStream(ArchivalUnit au, InputStream in, String encoding) throws PluginException { return new HtmlFilterInputStream( in, encoding, HtmlNodeFilterTransform.exclude(new OrFilter(new NodeFilter[] { HtmlNodeFilters.tagWithAttributeRegex("a", "class", "prev"), HtmlNodeFilters.tagWithAttributeRegex("a", "class", "next"), // 6/15/18 - not seeing this header anymore, HtmlNodeFilters.tagWithAttributeRegex("div", "class", "master-header"), // now seeing this one. Leaving previous in case HtmlNodeFilters.tagWithAttributeRegex("div", "class", "widget-SitePageHeader"), HtmlNodeFilters.tagWithAttributeRegex("div", "class", "widget-SitePageFooter"), // article left side with image of cover and nav arrows HtmlNodeFilters.tagWithAttributeRegex("div", "id", "InfoColumn"), // right side of article - all the latest, most cited, etc HtmlNodeFilters.tagWithAttributeRegex("div", "id", "Sidebar"), // top of article - links to correction or original article HtmlNodeFilters.tagWithAttribute("div", "class", "articlelinks"), // don't collect the powerpoint version of images HtmlNodeFilters.tagWithAttribute("div", "class", "downloadImagesppt"), HtmlNodeFilters.tagWithAttributeRegex("a", "class", "download-slide"), //references to the article - contain links to google,pubmed - guard against internal refs HtmlNodeFilters.tagWithAttributeRegex("div", "class", "^ref-content"), // and the references section may contains links to other articles in this journal // ex:https://academic.oup.com/bja/article/118/6/811/3829424 (look for /article/117) HtmlNodeFilters.tagWithAttributeRegex("div","class","^ref-list"), // Limit access to other issues - nav bar with drop downs HtmlNodeFilters.tagWithAttributeRegex("div", "class","^issue-browse-top"), // manifest/start page has hidden dropdown links to other issues HtmlNodeFilters.tagWithAttribute("div", "class", "navbar"), // which are also tagged so check this to guard against other locations HtmlNodeFilters.tagWithAttributeRegex("a", "class", "^nav-link"), // article - author section with notes has some bogus relative links // which redirect back to article page so are collected as content // https://academic.oup.com/jnen/article/76/7/578/[XSLTImagePath] HtmlNodeFilters.tagWithAttributeRegex("div", "class", "al-author-info-wrap"), HtmlNodeFilters.tagWithAttributeRegex("dive", "class", "widget-instance-OUP_FootnoteSection"), }) ) ); } }
{ "content_hash": "9708e801e1e863802a98b976cae08402", "timestamp": "", "source": "github", "line_count": 69, "max_line_length": 103, "avg_line_length": 46.492753623188406, "alnum_prop": 0.6698877805486284, "repo_name": "lockss/lockss-daemon", "id": "c67fb4007111db371ee54203f7b241c4fdc43c62", "size": "4721", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "plugins/src/org/lockss/plugin/silverchair/oup/OupScHtmlCrawlFilterFactory.java", "mode": "33188", "license": "bsd-3-clause", "language": [ { "name": "ANTLR", "bytes": "19051" }, { "name": "Awk", "bytes": "14488" }, { "name": "Batchfile", "bytes": "77" }, { "name": "C", "bytes": "4376" }, { "name": "CSS", "bytes": "8825" }, { "name": "HTML", "bytes": "747906" }, { "name": "Java", "bytes": "34571927" }, { "name": "JavaScript", "bytes": "1093221" }, { "name": "Perl", "bytes": "237235" }, { "name": "Python", "bytes": "392081" }, { "name": "Shell", "bytes": "198060" }, { "name": "mIRC Script", "bytes": "12320" } ], "symlink_target": "" }
package org.apache.myfaces.ov2021.context.servlet; import java.util.Iterator; import java.util.List; import javax.faces.application.FacesMessage; import javax.faces.context.ExceptionHandler; import javax.faces.context.ExternalContext; import javax.faces.context.PartialViewContext; import javax.faces.context.ResponseStream; import javax.faces.context.ResponseWriter; import javax.faces.event.PhaseId; import org.apache.myfaces.ov2021.context.ReleaseableExternalContext; /** * A FacesContext implementation which will be set as the current instance * during container startup and shutdown and which provides a basic set of * FacesContext functionality. * * @author Jakob Korherr (latest modification by $Author: jakobk $) * @version $Revision: 963629 $ $Date: 2010-07-13 11:29:07 +0200 (Di, 13 Jul 2010) $ */ public class StartupFacesContextImpl extends FacesContextImplBase { public static final String EXCEPTION_TEXT = "This method is not supported during "; private boolean _startup; public StartupFacesContextImpl( ExternalContext externalContext, ReleaseableExternalContext defaultExternalContext, ExceptionHandler exceptionHandler, boolean startup) { // setCurrentInstance is called in constructor of super class super(externalContext, defaultExternalContext); _startup = startup; setExceptionHandler(exceptionHandler); } // ~ Methods which are valid by spec to be called during startup and shutdown------ // public final UIViewRoot getViewRoot() implemented in super-class // public void release() implemented in super-class // public final ExternalContext getExternalContext() implemented in super-class // public Application getApplication() implemented in super-class // public boolean isProjectStage(ProjectStage stage) implemented in super-class // ~ Methods which can be called during startup and shutdown, but are not // officially supported by the spec-------------------------------------- // all other methods on FacesContextImplBase // ~ Methods which are unsupported during startup and shutdown------------- @Override public final FacesMessage.Severity getMaximumSeverity() { assertNotReleased(); throw new UnsupportedOperationException(EXCEPTION_TEXT + _getTime()); } @Override public List<FacesMessage> getMessageList() { assertNotReleased(); throw new UnsupportedOperationException(EXCEPTION_TEXT + _getTime()); } @Override public List<FacesMessage> getMessageList(String clientId) { assertNotReleased(); throw new UnsupportedOperationException(EXCEPTION_TEXT + _getTime()); } @Override public final Iterator<FacesMessage> getMessages() { assertNotReleased(); throw new UnsupportedOperationException(EXCEPTION_TEXT + _getTime()); } @Override public final Iterator<String> getClientIdsWithMessages() { assertNotReleased(); throw new UnsupportedOperationException(EXCEPTION_TEXT + _getTime()); } @Override public final Iterator<FacesMessage> getMessages(final String clientId) { assertNotReleased(); throw new UnsupportedOperationException(EXCEPTION_TEXT + _getTime()); } @Override public final void addMessage(final String clientId, final FacesMessage message) { assertNotReleased(); throw new UnsupportedOperationException(EXCEPTION_TEXT + _getTime()); } @Override public PartialViewContext getPartialViewContext() { assertNotReleased(); throw new UnsupportedOperationException(EXCEPTION_TEXT + _getTime()); } @Override public boolean isPostback() { assertNotReleased(); throw new UnsupportedOperationException(EXCEPTION_TEXT + _getTime()); } @Override public void validationFailed() { assertNotReleased(); throw new UnsupportedOperationException(EXCEPTION_TEXT + _getTime()); } @Override public boolean isValidationFailed() { assertNotReleased(); throw new UnsupportedOperationException(EXCEPTION_TEXT + _getTime()); } @Override public final void renderResponse() { assertNotReleased(); throw new UnsupportedOperationException(EXCEPTION_TEXT + _getTime()); } @Override public final void responseComplete() { assertNotReleased(); throw new UnsupportedOperationException(EXCEPTION_TEXT + _getTime()); } @Override public PhaseId getCurrentPhaseId() { assertNotReleased(); throw new UnsupportedOperationException(EXCEPTION_TEXT + _getTime()); } @Override public void setCurrentPhaseId(PhaseId currentPhaseId) { assertNotReleased(); throw new UnsupportedOperationException(EXCEPTION_TEXT + _getTime()); } @Override public final boolean getRenderResponse() { assertNotReleased(); throw new UnsupportedOperationException(EXCEPTION_TEXT + _getTime()); } @Override public final boolean getResponseComplete() { assertNotReleased(); throw new UnsupportedOperationException(EXCEPTION_TEXT + _getTime()); } @Override public final void setResponseStream(final ResponseStream responseStream) { assertNotReleased(); throw new UnsupportedOperationException(EXCEPTION_TEXT + _getTime()); } @Override public final ResponseStream getResponseStream() { assertNotReleased(); throw new UnsupportedOperationException(EXCEPTION_TEXT + _getTime()); } @Override public final void setResponseWriter(final ResponseWriter responseWriter) { assertNotReleased(); throw new UnsupportedOperationException(EXCEPTION_TEXT + _getTime()); } @Override public final ResponseWriter getResponseWriter() { assertNotReleased(); throw new UnsupportedOperationException(EXCEPTION_TEXT + _getTime()); } // ~ private Methods ------------------------------------------------------ /** * Returns startup or shutdown as String according to the field _startup. * @return */ private String _getTime() { return _startup ? "startup" : "shutdown"; } }
{ "content_hash": "4409bac2a0aa792d9fd0afb2abc63f8a", "timestamp": "", "source": "github", "line_count": 219, "max_line_length": 87, "avg_line_length": 29.67579908675799, "alnum_prop": 0.6711801815663948, "repo_name": "lu4242/ext-myfaces-2.0.2-patch", "id": "cc3d471d89c7d95038b9abffc60e70ba5c3bc0f7", "size": "7306", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "trunk/myfaces-impl-2021override/src/main/java/org/apache/myfaces/ov2021/context/servlet/StartupFacesContextImpl.java", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "Java", "bytes": "4340490" } ], "symlink_target": "" }
namespace clang { namespace TypeName { /// Get the fully qualified name for a type. This includes full /// qualification of all template parameters etc. /// /// \param[in] QT - the type for which the fully qualified name will be /// returned. /// \param[in] Ctx - the ASTContext to be used. /// \param[in] WithGlobalNsPrefix - If true, then the global namespace /// specifier "::" will be prepended to the fully qualified name. std::string getFullyQualifiedName(QualType QT, const ASTContext &Ctx, const PrintingPolicy &Policy, bool WithGlobalNsPrefix = false); /// Generates a QualType that can be used to name the same type /// if used at the end of the current translation unit. This ignores /// issues such as type shadowing. /// /// \param[in] QT - the type for which the fully qualified type will be /// returned. /// \param[in] Ctx - the ASTContext to be used. /// \param[in] WithGlobalNsPrefix - Indicate whether the global namespace /// specifier "::" should be prepended or not. QualType getFullyQualifiedType(QualType QT, const ASTContext &Ctx, bool WithGlobalNsPrefix = false); } // end namespace TypeName } // end namespace clang #endif // LLVM_CLANG_TOOLING_CORE_QUALTYPENAMES_H
{ "content_hash": "8050eca815c6cd031cd2871a8b8022fc", "timestamp": "", "source": "github", "line_count": 28, "max_line_length": 73, "avg_line_length": 46.17857142857143, "alnum_prop": 0.6821345707656613, "repo_name": "youtube/cobalt", "id": "422ed9e4c8fc40e946dbaa4585ceadae2a0421d2", "size": "3143", "binary": false, "copies": "5", "ref": "refs/heads/master", "path": "third_party/llvm-project/clang/include/clang/AST/QualTypeNames.h", "mode": "33188", "license": "bsd-3-clause", "language": [], "symlink_target": "" }
#include "StackTrace.h" #include "MQTTPacket.h" #if defined(__USE_STD__) #include <string.h> #endif /** * Encodes the message length according to the MQTT algorithm * @param buf the buffer into which the encoded data is written * @param length the length to be encoded * @return the number of bytes written to buffer */ int MQTTPacket_encode(unsigned char* buf, int length) { int rc = 0; FUNC_ENTRY; do { char d = length % 128; length /= 128; /* if there are more digits to encode, set the top bit of this digit */ if (length > 0) d |= 0x80; buf[rc++] = d; } while (length > 0); FUNC_EXIT_RC(rc); return rc; } /** * Decodes the message length according to the MQTT algorithm * @param getcharfn pointer to function to read the next character from the data source * @param value the decoded length returned * @return the number of bytes read from the socket */ int MQTTPacket_decode(int (*getcharfn)(unsigned char*, int), int* value) { unsigned char c; int multiplier = 1; int len = 0; #define MAX_NO_OF_REMAINING_LENGTH_BYTES 4 FUNC_ENTRY; *value = 0; do { int rc = MQTTPACKET_READ_ERROR; if (++len > MAX_NO_OF_REMAINING_LENGTH_BYTES) { rc = MQTTPACKET_READ_ERROR; /* bad data */ goto exit; } rc = (*getcharfn)(&c, 1); if (rc != 1) goto exit; *value += (c & 127) * multiplier; multiplier *= 128; } while ((c & 128) != 0); exit: FUNC_EXIT_RC(len); return len; } int MQTTPacket_len(int rem_len) { rem_len += 1; /* header byte */ /* now remaining_length field */ if (rem_len < 128) rem_len += 1; else if (rem_len < 16384) rem_len += 2; else if (rem_len < 2097151) rem_len += 3; else rem_len += 4; return rem_len; } static unsigned char* bufptr; int bufchar(unsigned char* c, int count) { int i; for (i = 0; i < count; ++i) *c = *bufptr++; return count; } int MQTTPacket_decodeBuf(unsigned char* buf, int* value) { bufptr = buf; return MQTTPacket_decode(bufchar, value); } /** * Calculates an integer from two bytes read from the input buffer * @param pptr pointer to the input buffer - incremented by the number of bytes used & returned * @return the integer value calculated */ int readInt(unsigned char** pptr) { unsigned char* ptr = *pptr; int len = 256*(*ptr) + (*(ptr+1)); *pptr += 2; return len; } /** * Reads one character from the input buffer. * @param pptr pointer to the input buffer - incremented by the number of bytes used & returned * @return the character read */ char readChar(unsigned char** pptr) { char c = **pptr; (*pptr)++; return c; } /** * Writes one character to an output buffer. * @param pptr pointer to the output buffer - incremented by the number of bytes used & returned * @param c the character to write */ void writeChar(unsigned char** pptr, char c) { **pptr = c; (*pptr)++; } /** * Writes an integer as 2 bytes to an output buffer. * @param pptr pointer to the output buffer - incremented by the number of bytes used & returned * @param anInt the integer to write */ void writeInt(unsigned char** pptr, int anInt) { **pptr = (unsigned char)(anInt / 256); (*pptr)++; **pptr = (unsigned char)(anInt % 256); (*pptr)++; } /** * Writes a "UTF" string to an output buffer. Converts C string to length-delimited. * @param pptr pointer to the output buffer - incremented by the number of bytes used & returned * @param string the C string to write */ void writeCString(unsigned char** pptr, const char* string) { int len = strlen(string); writeInt(pptr, len); memcpy(*pptr, string, len); *pptr += len; } int getLenStringLen(char* ptr) { int len = 256*((unsigned char)(*ptr)) + (unsigned char)(*(ptr+1)); return len; } void writeMQTTString(unsigned char** pptr, MQTTString mqttstring) { if (mqttstring.lenstring.len > 0) { writeInt(pptr, mqttstring.lenstring.len); memcpy(*pptr, mqttstring.lenstring.data, mqttstring.lenstring.len); *pptr += mqttstring.lenstring.len; } else if (mqttstring.cstring) writeCString(pptr, mqttstring.cstring); else writeInt(pptr, 0); } /** * @param mqttstring the MQTTString structure into which the data is to be read * @param pptr pointer to the output buffer - incremented by the number of bytes used & returned * @param enddata pointer to the end of the data: do not read beyond * @return 1 if successful, 0 if not */ int readMQTTLenString(MQTTString* mqttstring, unsigned char** pptr, unsigned char* enddata) { int rc = 0; FUNC_ENTRY; /* the first two bytes are the length of the string */ if (enddata - (*pptr) > 1) /* enough length to read the integer? */ { mqttstring->lenstring.len = readInt(pptr); /* increments pptr to point past length */ if (&(*pptr)[mqttstring->lenstring.len] <= enddata) { mqttstring->lenstring.data = (char*)*pptr; *pptr += mqttstring->lenstring.len; rc = 1; } } mqttstring->cstring = NULL; FUNC_EXIT_RC(rc); return rc; } /** * Return the length of the MQTTstring - C string if there is one, otherwise the length delimited string * @param mqttstring the string to return the length of * @return the length of the string */ int MQTTstrlen(MQTTString mqttstring) { int rc = 0; if (mqttstring.cstring) rc = strlen(mqttstring.cstring); else rc = mqttstring.lenstring.len; return rc; } /** * Compares an MQTTString to a C string * @param a the MQTTString to compare * @param bptr the C string to compare * @return boolean - equal or not */ int MQTTPacket_equals(MQTTString* a, char* bptr) { int alen = 0, blen = 0; char *aptr; if (a->cstring) { aptr = a->cstring; alen = strlen(a->cstring); } else { aptr = a->lenstring.data; alen = a->lenstring.len; } blen = strlen(bptr); return (alen == blen) && (strncmp(aptr, bptr, alen) == 0); } /** * Helper function to read packet data from some source into a buffer * @param buf the buffer into which the packet will be serialized * @param buflen the length in bytes of the supplied buffer * @param getfn pointer to a function which will read any number of bytes from the needed source * @return integer MQTT packet type, or -1 on error * @note the whole message must fit into the caller's buffer */ int MQTTPacket_read(unsigned char* buf, int buflen, int (*getfn)(unsigned char*, int)) { int rc = -1; MQTTHeader header = {0}; int len = 0; int rem_len = 0; /* 1. read the header byte. This has the packet type in it */ if ((*getfn)(buf, 1) != 1) goto exit; len = 1; /* 2. read the remaining length. This is variable in itself */ MQTTPacket_decode(getfn, &rem_len); len += MQTTPacket_encode(buf + 1, rem_len); /* put the original remaining length back into the buffer */ /* 3. read the rest of the buffer using a callback to supply the rest of the data */ if((rem_len + len) > buflen) goto exit; if (rem_len && ((*getfn)(buf + len, rem_len) != rem_len)) goto exit; header.byte = buf[0]; rc = header.bits.type; exit: return rc; } /** * Decodes the message length according to the MQTT algorithm, non-blocking * @param trp pointer to a transport structure holding what is needed to solve getting data from it * @param value the decoded length returned * @return integer the number of bytes read from the socket, 0 for call again, or -1 on error */ static int MQTTPacket_decodenb(MQTTTransport *trp) { unsigned char c; int rc = MQTTPACKET_READ_ERROR; FUNC_ENTRY; if(trp->len == 0){ /* initialize on first call */ trp->multiplier = 1; trp->rem_len = 0; } do { int frc; if (trp->len >= MAX_NO_OF_REMAINING_LENGTH_BYTES) goto exit; if ((frc=(*trp->getfn)(trp->sck, &c, 1)) == -1) goto exit; if (frc == 0){ rc = 0; goto exit; } ++(trp->len); trp->rem_len += (c & 127) * trp->multiplier; trp->multiplier *= 128; } while ((c & 128) != 0); rc = trp->len; exit: FUNC_EXIT_RC(rc); return rc; } /** * Helper function to read packet data from some source into a buffer, non-blocking * @param buf the buffer into which the packet will be serialized * @param buflen the length in bytes of the supplied buffer * @param trp pointer to a transport structure holding what is needed to solve getting data from it * @return integer MQTT packet type, 0 for call again, or -1 on error * @note the whole message must fit into the caller's buffer */ int MQTTPacket_readnb(unsigned char* buf, int buflen, MQTTTransport *trp) { int rc = -1, frc; MQTTHeader header = {0}; switch(trp->state){ default: trp->state = 0; /*FALLTHROUGH*/ case 0: /* read the header byte. This has the packet type in it */ if ((frc=(*trp->getfn)(trp->sck, buf, 1)) == -1) goto exit; if (frc == 0) return 0; trp->len = 0; ++trp->state; /*FALLTHROUGH*/ /* read the remaining length. This is variable in itself */ case 1: if((frc=MQTTPacket_decodenb(trp)) == MQTTPACKET_READ_ERROR) goto exit; if(frc == 0) return 0; trp->len = 1 + MQTTPacket_encode(buf + 1, trp->rem_len); /* put the original remaining length back into the buffer */ if((trp->rem_len + trp->len) > buflen) goto exit; ++trp->state; /*FALLTHROUGH*/ case 2: if(trp->rem_len){ /* read the rest of the buffer using a callback to supply the rest of the data */ if ((frc=(*trp->getfn)(trp->sck, buf + trp->len, trp->rem_len)) == -1) goto exit; if (frc == 0) return 0; trp->rem_len -= frc; trp->len += frc; if(trp->rem_len) return 0; } header.byte = buf[0]; rc = header.bits.type; break; } exit: trp->state = 0; return rc; }
{ "content_hash": "8a0b8a9611b60b01afedc25db3b66cf8", "timestamp": "", "source": "github", "line_count": 399, "max_line_length": 119, "avg_line_length": 23.80952380952381, "alnum_prop": 0.6612631578947369, "repo_name": "arrow-acs/acn-sdk-c", "id": "6db58da4f2c1db05581cf8fc38565fd173466ecc", "size": "10303", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "src/mqtt/packet/src/MQTTPacket.c", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "C", "bytes": "4540305" }, { "name": "C++", "bytes": "17229" } ], "symlink_target": "" }
using System; using System.Threading.Tasks; namespace OKHOSTING.Core { public static class TaskExtensions { /// <summary> /// Tries to run an action during the timeout specified, if the task takes longer, trows a TimeOutException /// </summary> public static void Run(TimeSpan timeout, Action action) { var run = Task.Run(action); if (timeout != TimeSpan.Zero && timeout != System.Threading.Timeout.InfiniteTimeSpan) { if (Task.WhenAny(run, Task.Delay(timeout)).Result != run) { throw new TimeoutException(); } } run.Wait(); } /// <summary> /// Tries to run a function during the timeout specified, if the task takes longer, trows a TimeOutException /// </summary> public static TResult Run<TResult>(TimeSpan timeout, Func<TResult> action) { var run = Task.Run(action); if (timeout != TimeSpan.Zero && timeout != System.Threading.Timeout.InfiniteTimeSpan) { if (Task.WhenAny(run, Task.Delay(timeout)).Result != run) { throw new TimeoutException(); } } return run.Result; } /// <summary> /// Tries to run an action, and if the action fails, tries again until the action is succesfully executed /// </summary> /// <param name="maxRetries">Max number of times we will try to run the action</param> /// <param name="retryLapse">Lapse of time between each try</param> /// <param name="action">Action to run</param> public static void Retry(int maxRetries, TimeSpan retryLapse, Action action) { int count = 0; Exception error; do { try { action(); return; } catch (Exception e) { error = e; count++; Task.Delay(retryLapse).Wait(); } } while (count < maxRetries); throw error; } public static TResult Retry<TResult>(int maxRetries, TimeSpan retryLapse, Func<TResult> action) { int count = 0; Exception error; do { try { return action(); } catch (Exception e) { error = e; count++; Task.Delay(retryLapse).Wait(); } } while (count < maxRetries); throw error; } } }
{ "content_hash": "ba47434aa3762f4fb5b81b9771bb5184", "timestamp": "", "source": "github", "line_count": 99, "max_line_length": 110, "avg_line_length": 21.414141414141415, "alnum_prop": 0.6306603773584906, "repo_name": "okhosting/OKHOSTING.Core", "id": "c976dc50c0a5fa130f0690935a96fcedd4d64f85", "size": "2122", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "src/Standard/OKHOSTING.Core/TaskExtensions.cs", "mode": "33188", "license": "mit", "language": [ { "name": "C#", "bytes": "715312" }, { "name": "Smalltalk", "bytes": "1220" } ], "symlink_target": "" }
sort_order: 172 tei_id: p.idm239137117088 annotation_count: 0 images: small-thumbnail: http://example.com/books/emory:7st9j/pages/readux-rsk:pgdxm/mini-thumbnail/ json: http://example.com/books/emory:7st9j/pages/readux-rsk:pgdxm/info/ full: http://example.com/books/emory:7st9j/pages/readux-rsk:pgdxm/fs/ page: http://example.com/books/emory:7st9j/pages/readux-rsk:pgdxm/single-page/ thumbnail: http://example.com/books/emory:7st9j/pages/readux-rsk:pgdxm/thumbnail/ title: Page 172 number: 172 permalink: /pages/172/ --- <div class="ocr-line ocrtext" style="left:16.23%;top:5.63%;width:54.55%;height:1.33%;text-align:left;font-size:13.33px" data-vhfontsize="1.33"> <span>{% raw %}168 THE BUSINESS OF PLEASURE.{% endraw %}</span> </div> <div class="ocr-line ocrtext" style="left:16.17%;top:9.12%;width:66.49%;height:1.89%;text-align:left;font-size:18.92px" data-vhfontsize="1.89"> <span>{% raw %}only speciality, Ave leave the greenhouse, and proceed up{% endraw %}</span> </div> <div class="ocr-line ocrtext" style="left:16.17%;top:11.44%;width:66.61%;height:1.85%;text-align:left;font-size:18.49px" data-vhfontsize="1.85"> <span>{% raw %}the centre road. Those Avooden " sleepers " reared against{% endraw %}</span> </div> <div class="ocr-line ocrtext" style="left:16.23%;top:13.81%;width:66.67%;height:1.85%;text-align:left;font-size:18.49px" data-vhfontsize="1.85"> <span>{% raw %}the Avail are of seasoned Avood, and are used during the{% endraw %}</span> </div> <div class="ocr-line ocrtext" style="left:16.17%;top:16.13%;width:66.72%;height:1.89%;text-align:left;font-size:18.92px" data-vhfontsize="1.89"> <span>{% raw %}formation of earthworks and in building brick graves. On{% endraw %}</span> </div> <div class="ocr-line ocrtext" style="left:16.35%;top:18.54%;width:66.61%;height:1.89%;text-align:left;font-size:18.92px" data-vhfontsize="1.89"> <span>{% raw %}our Avay to the chapel, disturbed neither by the constant{% endraw %}</span> </div> <div class="ocr-line ocrtext" style="left:16.29%;top:20.9%;width:66.72%;height:1.85%;text-align:left;font-size:18.49px" data-vhfontsize="1.85"> <span>{% raw %}Avhizzing past of trains on the divers lines adjacent, nor{% endraw %}</span> </div> <div class="ocr-line ocrtext" style="left:16.29%;top:23.27%;width:66.9%;height:1.89%;text-align:left;font-size:18.92px" data-vhfontsize="1.89"> <span>{% raw %}by the incessant " Crack, crack !" from the riflemen at prac¬{% endraw %}</span> </div> <div class="ocr-line ocrtext" style="left:16.35%;top:25.68%;width:66.84%;height:1.72%;text-align:left;font-size:17.2px" data-vhfontsize="1.72"> <span>{% raw %}tice on AA^ormwood Scrubs, Mr. DaAA'e informs me that the{% endraw %}</span> </div> <div class="ocr-line ocrtext" style="left:16.41%;top:28.04%;width:66.84%;height:1.81%;text-align:left;font-size:18.06px" data-vhfontsize="1.81"> <span>{% raw %}cemetery is vested in a joint-stock company of proprietors;{% endraw %}</span> </div> <div class="ocr-line ocrtext" style="left:16.41%;top:30.37%;width:66.96%;height:1.85%;text-align:left;font-size:18.49px" data-vhfontsize="1.85"> <span>{% raw %}that it has been in existence more than thirty years; and{% endraw %}</span> </div> <div class="ocr-line ocrtext" style="left:16.41%;top:32.73%;width:67.01%;height:1.85%;text-align:left;font-size:18.49px" data-vhfontsize="1.85"> <span>{% raw %}that from fifty to sixty thousand persons are interred herein.{% endraw %}</span> </div> <div class="ocr-line ocrtext" style="left:16.46%;top:35.1%;width:66.96%;height:1.85%;text-align:left;font-size:18.49px" data-vhfontsize="1.85"> <span>{% raw %}This he considers a Ioav estimate, as there are some eighteen{% endraw %}</span> </div> <div class="ocr-line ocrtext" style="left:16.46%;top:37.51%;width:67.07%;height:1.85%;text-align:left;font-size:18.49px" data-vhfontsize="1.85"> <span>{% raw %}thousand graves, and an average of three or four bodies in{% endraw %}</span> </div> <div class="ocr-line ocrtext" style="left:16.58%;top:39.87%;width:67.01%;height:1.89%;text-align:left;font-size:18.92px" data-vhfontsize="1.89"> <span>{% raw %}each. HoAV many burials does he consider the rule per{% endraw %}</span> </div> <div class="ocr-line ocrtext" style="left:16.52%;top:42.28%;width:67.13%;height:1.85%;text-align:left;font-size:18.49px" data-vhfontsize="1.85"> <span>{% raw %}Aveek ? Perhaps seven a day in summer, and eight in{% endraw %}</span> </div> <div class="ocr-line ocrtext" style="left:16.58%;top:44.65%;width:67.07%;height:1.85%;text-align:left;font-size:18.49px" data-vhfontsize="1.85"> <span>{% raw %}winter; he has knoAA'n as many as tAvelve in one winter's{% endraw %}</span> </div> <div class="ocr-line ocrtext" style="left:16.64%;top:47.01%;width:67.13%;height:1.89%;text-align:left;font-size:18.92px" data-vhfontsize="1.89"> <span>{% raw %}day, but that Avas exceptional. No, this cemetery never{% endraw %}</span> </div> <div class="ocr-line ocrtext" style="left:16.7%;top:49.38%;width:67.07%;height:1.85%;text-align:left;font-size:18.49px" data-vhfontsize="1.85"> <span>{% raw %}inters on Sundays. It used to do so formerly, but has given{% endraw %}</span> </div> <div class="ocr-line ocrtext" style="left:16.7%;top:51.74%;width:67.13%;height:1.89%;text-align:left;font-size:18.92px" data-vhfontsize="1.89"> <span>{% raw %}the practice up for years; the Roman Catholic one adjoining{% endraw %}</span> </div> <div class="ocr-line ocrtext" style="left:16.75%;top:54.06%;width:67.13%;height:1.81%;text-align:left;font-size:18.06px" data-vhfontsize="1.81"> <span>{% raw %}it to the Avest does, and also, he believes, the one at AA'il-{% endraw %}</span> </div> <div class="ocr-line ocrtext" style="left:16.75%;top:56.52%;width:67.13%;height:1.89%;text-align:left;font-size:18.92px" data-vhfontsize="1.89"> <span>{% raw %}lesden; and if I should ever attend the chapel of Lock{% endraw %}</span> </div> <div class="ocr-line ocrtext" style="left:16.99%;top:58.92%;width:66.9%;height:1.85%;text-align:left;font-size:18.49px" data-vhfontsize="1.85"> <span>{% raw %}Hospital, and hear of, or see, irreverent burial processions{% endraw %}</span> </div> <div class="ocr-line ocrtext" style="left:16.87%;top:61.29%;width:67.07%;height:1.94%;text-align:left;font-size:19.35px" data-vhfontsize="1.94"> <span>{% raw %}passing on the road, perhaps I Avill remember that they are{% endraw %}</span> </div> <div class="ocr-line ocrtext" style="left:16.93%;top:63.7%;width:64.64%;height:1.85%;text-align:left;font-size:18.49px" data-vhfontsize="1.85"> <span>{% raw %}not coming here, but to one of -the tAA'o grounds adjacent{% endraw %}</span> </div> <div class="ocr-line ocrtext" style="left:21.04%;top:66.02%;width:63.01%;height:1.85%;text-align:left;font-size:18.49px" data-vhfontsize="1.85"> <span>{% raw %}AVhat is the size of the cemetery? AA'ell, betAA'een{% endraw %}</span> </div> <div class="ocr-line ocrtext" style="left:17.04%;top:68.39%;width:67.07%;height:1.85%;text-align:left;font-size:18.49px" data-vhfontsize="1.85"> <span>{% raw %}seventy and eighty acres. Forty-seven acres are at jsresent{% endraw %}</span> </div> <div class="ocr-line ocrtext" style="left:17.1%;top:70.71%;width:67.01%;height:1.94%;text-align:left;font-size:19.35px" data-vhfontsize="1.94"> <span>{% raw %}in actual use, but thirty additional acres have been recently{% endraw %}</span> </div> <div class="ocr-line ocrtext" style="left:17.16%;top:73.08%;width:66.9%;height:1.85%;text-align:left;font-size:18.49px" data-vhfontsize="1.85"> <span>{% raw %}consecrated, the party-Avall having just been taken doAvn ;{% endraw %}</span> </div> <div class="ocr-line ocrtext" style="left:17.22%;top:75.31%;width:66.9%;height:1.98%;text-align:left;font-size:19.78px" data-vhfontsize="1.98"> <span>{% raw %}and Avorkmen are now employed in making roads and laying{% endraw %}</span> </div> <div class="ocr-line ocrtext" style="left:17.28%;top:77.68%;width:66.84%;height:1.89%;text-align:left;font-size:18.92px" data-vhfontsize="1.89"> <span>{% raw %}out the ground. A portion of the original forty-seven acres{% endraw %}</span> </div> <div class="ocr-line ocrtext" style="left:17.28%;top:80%;width:66.84%;height:1.81%;text-align:left;font-size:18.06px" data-vhfontsize="1.81"> <span>{% raw %}is unconsecrated, and appropriated to dissenters. This{% endraw %}</span> </div> <div class="ocr-line ocrtext" style="left:17.33%;top:82.41%;width:66.9%;height:2.02%;text-align:left;font-size:20.22px" data-vhfontsize="2.02"> <span>{% raw %}portion has its separate chapel and catacombs; and a dis¬{% endraw %}</span> </div> <div class="ocr-line ocrtext" style="left:17.45%;top:84.69%;width:66.78%;height:1.98%;text-align:left;font-size:19.78px" data-vhfontsize="1.98"> <span>{% raw %}senting minister, provided by the company, attends the{% endraw %}</span> </div> <div class="ocr-line ocrtext" style="left:17.45%;top:87.05%;width:66.78%;height:2.02%;text-align:left;font-size:20.22px" data-vhfontsize="2.02"> <span>{% raw %}funerals therein. Any other minister preferred by the{% endraw %}</span> </div> <div class="ocr-line ocrtext" style="left:17.51%;top:89.42%;width:67.07%;height:1.94%;text-align:left;font-size:19.35px" data-vhfontsize="1.94"> <span>{% raw %}friends of the deceased is permitted to officiate, and, if{% endraw %}</span> </div>
{ "content_hash": "e025891194f149510ba3302e697e6fde", "timestamp": "", "source": "github", "line_count": 123, "max_line_length": 144, "avg_line_length": 76.0569105691057, "alnum_prop": 0.6946018172100481, "repo_name": "rlskoeser/bop", "id": "851c23c9c11e0adfcaee6a9626a5edde12a117d9", "size": "9361", "binary": false, "copies": "1", "ref": "refs/heads/gh-pages", "path": "_volume_pages/0172.html", "mode": "33188", "license": "mit", "language": [], "symlink_target": "" }
class UpdateManager : public TSingleton<UpdateManager> { public: void StartCheck(void); protected: void FirstRunCheck(void); ///true means need to update. bool VersionCheck(CStringW &strDownLoadURL); ///check if it's in install process. working in the temp process. void InstallCheck(); ///check if there is a temp file to be installed. void TempCheck(); void ExecuteNext(const CStringW& strTempFile); void SetInstallPath(void); private: }; #endif //_UPDATE_MANAGER_H__
{ "content_hash": "bf7cec5c62f86e90555bbde824711718", "timestamp": "", "source": "github", "line_count": 23, "max_line_length": 66, "avg_line_length": 21.217391304347824, "alnum_prop": 0.7397540983606558, "repo_name": "MatrixTan/iBrowser", "id": "d255ba2751bed6d213ff4d61848dd30688684d09", "size": "766", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "iBrowser/iBrowser/update_manager.h", "mode": "33188", "license": "bsd-3-clause", "language": [ { "name": "C", "bytes": "1003259" }, { "name": "C++", "bytes": "1790495" }, { "name": "Objective-C", "bytes": "30996" } ], "symlink_target": "" }
<?php ?> <?php /** * TasksStatusTable * * This class has been auto-generated by the Doctrine ORM Framework */ class TasksStatusTable extends Doctrine_Table { /** * Returns an instance of this class. * * @return object TasksStatusTable */ public static function getInstance() { return Doctrine_Core::getTable('TasksStatus'); } }
{ "content_hash": "b886fbd3c5ca3de3107968d5237c80d9", "timestamp": "", "source": "github", "line_count": 22, "max_line_length": 67, "avg_line_length": 17.227272727272727, "alnum_prop": 0.6358839050131926, "repo_name": "arokia/oasis", "id": "65ee11f9447da61b8aa4d7d5ae9e709651ccefd7", "size": "1243", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "source/oasis-ems/core/lib/model/doctrine/TasksStatusTable.class.php", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "ApacheConf", "bytes": "1385" }, { "name": "Batchfile", "bytes": "1134" }, { "name": "CSS", "bytes": "424816" }, { "name": "HTML", "bytes": "608424" }, { "name": "JavaScript", "bytes": "1416921" }, { "name": "PHP", "bytes": "1928133" }, { "name": "Shell", "bytes": "1345" } ], "symlink_target": "" }
<div class="form-container col s12 m10 offset-m1 l10 offset-l1"> <form class="col s12" #form="ngForm" (ngSubmit)="onSubmit(form.value)"> <fieldset> <legend>Add Exercises</legend> <div class="btn-container row"> <a class="dropdown-button btn right em2" href="#!" data-activates="addDropdown">+</a> </div> <h5 *ngIf="!exercises.length" class="no-items">No exercises yet...</h5> <ul class="collection" [dragula]='"bag"' [dragulaModel]='exercises'> <li class="collection-item avatar z-depth-2" *ngFor="let exercise of exercises; let i = index"> <template [ngIf]="exercise.type === 'exercise'"> <img src="{{exercise.image}}" alt="Image not found" class="circle"> <span class="title">{{exercise.name}} | <a (click)="onClickExerciseDetails(i)">Details...</a></span> <p><span *ngIf="exercise.duration">Duration: {{exercise.duration}}</span> <span *ngIf="exercise.duration">Repetitions: {{exercise.repetitions}}</span> <br> Description: {{exercise.description}} </p> </template> <template [ngIf]="exercise.type === 'break'"> Break <i class="material-icons circle">query_builder</i> <br> <span class="title">{{exercise.time | timeFormat}}</span> <p class="range-field"> <input disabled type="range" min="0" max="360" /> </p> </template> <a href="#!" class="secondary-content" (click)="onDeleteExercise(i)"><i class="material-icons">delete</i></a> </li> </ul> <button type="button" class="btn waves-effect waves-light left" (click)="onClickBack($event)"><i class="material-icons left">backspace</i>Back to Details</button> <button type="submit" class="btn waves-effect waves-light right" [disabled]="!form.form.valid"><i class="material-icons right">done_all</i>Save Routine</button> </fieldset> </form> </div> <div id="viewDetailsExercise" class="modal"> <apollo-exercise *ngIf="exercises[viewExerciseIndex]" [exercise]="exercises[viewExerciseIndex]"></apollo-exercise> </div> <div id="addExercise" class="modal"> <apollo-add-exercise (addExercise)="onAddExercise($event)"></apollo-add-exercise> </div> <div id="addBreak" class="modal"> <div class="modal-content"> <h4>New Break</h4> <div class="input-field col s12 text-center"> <div class="row inline-block"> <div class="clock table-cell"> <span class="em4">{{minutes}}</span> <br> <span class="em4">{{seconds}}</span> </div> </div> <p class="range-field inline-block"> <input id="time" [(ngModel)]="time" (ngModelChange)="onChange($event)" type="range" min="0" max="360" /> </p> </div> </div> <div class="modal-footer"> <a (click)="onAddBreak($event)" disabled='true' class=" modal-action modal-close waves-effect waves-green btn-flat">Add</a> </div> <ul id="addDropdown" class="dropdown-content"> <!--dropdown content begin--> <li> <a class="modal-trigger" data-target="addBreak">Break</a> </li> <li class="divider"></li> <li> <a class="modal-trigger" data-target="addExercise">Exercise</a> </li> </ul>
{ "content_hash": "5a4e1797d40421093bd386ceef089804", "timestamp": "", "source": "github", "line_count": 76, "max_line_length": 174, "avg_line_length": 48.9078947368421, "alnum_prop": 0.5329566854990584, "repo_name": "DimitarRuskov/Apollo-angular2", "id": "88af2e7ac53386525efcb208c66480cd7654b416", "size": "3717", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "app/components/categories/category/routines/add/add-exercises/exercises.component.html", "mode": "33188", "license": "mit", "language": [ { "name": "CSS", "bytes": "9612" }, { "name": "HTML", "bytes": "35658" }, { "name": "JavaScript", "bytes": "2451" }, { "name": "TypeScript", "bytes": "56240" } ], "symlink_target": "" }
Infinite scrolling canvas. You can type or sketch. See other people type or sketch in real time. Uses construction paper as the background. Lots of logic around grouping users together, a lack of permanence of information, and generating positive conversation.
{ "content_hash": "21675c77448e23c60ba52e0b70eab32d", "timestamp": "", "source": "github", "line_count": 3, "max_line_length": 163, "avg_line_length": 87, "alnum_prop": 0.8199233716475096, "repo_name": "maxmcd/paper", "id": "fea4deb1b433c2f4b137c63b89dce65a864be164", "size": "274", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "readme.md", "mode": "33188", "license": "mit", "language": [ { "name": "HTML", "bytes": "39449" }, { "name": "JavaScript", "bytes": "593845" } ], "symlink_target": "" }
This plugin allows to switch from EE to CE at runtime.
{ "content_hash": "1886025e5ec6c87509c245977fd332e9", "timestamp": "", "source": "github", "line_count": 1, "max_line_length": 54, "avg_line_length": 55, "alnum_prop": 0.7818181818181819, "repo_name": "wistityhq/strapi", "id": "a822d3a6be969393672b343ede3325db04ec1c14", "size": "91", "binary": false, "copies": "2", "ref": "refs/heads/master", "path": "packages/utils/babel-plugin-switch-ee-ce/README.md", "mode": "33188", "license": "mit", "language": [ { "name": "HTML", "bytes": "609" }, { "name": "JavaScript", "bytes": "389082" }, { "name": "Makefile", "bytes": "507" } ], "symlink_target": "" }
package ihm; import java.awt.BorderLayout; import java.awt.Color; import java.awt.Dimension; import java.awt.Event; import java.awt.FlowLayout; import java.awt.Font; import java.awt.Panel; import java.awt.Toolkit; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.KeyEvent; import java.awt.event.KeyListener; import java.awt.event.WindowAdapter; import java.awt.event.WindowEvent; import java.util.Arrays; import java.util.HashMap; import javax.swing.BorderFactory; import javax.swing.BoxLayout; import javax.swing.Icon; import javax.swing.ImageIcon; import javax.swing.JButton; import javax.swing.JComboBox; import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.JOptionPane; import javax.swing.JPanel; import javax.swing.JScrollPane; import javax.swing.JTextArea; import javax.swing.JTextPane; import javax.swing.SwingConstants; import javax.swing.border.EmptyBorder; import javax.swing.border.LineBorder; import javax.swing.text.BadLocationException; import javax.swing.text.SimpleAttributeSet; import javax.swing.text.StyleConstants; import javax.swing.text.StyledDocument; import utils.MessageControler; import utils.MessageControlerException; /* * This class is the graphical interface for displaying chat messages */ public class Chat extends JFrame { /* * */ private static final long serialVersionUID = 1L; private JPanel contentPane; private JTextPane textPane; private JTextArea textArea; private JComboBox<Object> comboBox; private StyledDocument doc; private SimpleAttributeSet styleNormal; private SimpleAttributeSet nickStyle; private JLabel lblNickname; private JLabel lblChannel; private static final String[] EMOJIS = {":grinning:", ":grin:", ":joy:", ":rofl:", ":sweat_smile:", ":laughing:", ":wink:", ":blush:", ":sunglasses:", ":heart_eyes:", ":kissing_heart:", ":thinking:", ":smirk:", ":sleeping:", ":big_thongue:", ":drooling_face:", ":little_thongue:", ":big_thongue:", ":reverse:", ":sad:", ":triumph:", ":cry:", ":dizzy_face:", ":smiling_imp:", ":face_palm:", ":monkey:", ":smiley_cat:", ":sad_cat:", ":scream_cat:", ":8ball:", ":money:", ":snake:", ":ghost:", ":wind:", ":poop:", ":muscle:", ":ok_hand:", ":thumbsup:", ":clap:", "sloth","cereal"}; private static final ImageIcon[] EMOJIS_FILES = initEmojis(); private static final HashMap<String, String> EMOJIS_EQUIVALENT = initEquivalentList(); private static Chat INSTANCE = new Chat(); public static ImageIcon[] initEmojis(){ ImageIcon[] emos = new ImageIcon[EMOJIS.length]; for (int i=0; i < EMOJIS.length; i++) { emos[i] = new ImageIcon(Toolkit.getDefaultToolkit().getImage(Chat.class.getResource("/emojis/"+EMOJIS[i].replace(":", "")+".png"))); } return emos; } public static HashMap<String, String> initEquivalentList(){ HashMap<String, String> equiv = new HashMap<String, String>(); // Classics equiv.put(":)", "grin"); equiv.put(":(", "sad"); equiv.put(":p", "little_thongue"); equiv.put(":P", "big_thongue"); // Originals equiv.put("+1", "ok_hand"); equiv.put("(:", "reverse"); equiv.put("Zzz", "tired_face"); // Kitties :D equiv.put(";(", "sad_cat"); equiv.put(":O", "scream_cat"); equiv.put(":D", "smiley_cat"); // Joke equiv.put("Guillaume", "monkey"); equiv.put("Titanaum", "sloth"); equiv.put("LittleSnake", "snake"); equiv.put("Macklegan", "cereal"); return equiv; } /* * Create the frame. */ public Chat() { // Define the title of the window this.setTitle("Client IRC"); // Define the minimum size of the window this.setMinimumSize(new Dimension(300, 200)); // Define the size of the window this.setSize(800, 500); // Close process when clicking on the red cross this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); // Puts the window in the center of the screen this.setLocationRelativeTo(null); //Set the image to something coooooool setIconImage(Toolkit.getDefaultToolkit().getImage(Chat.class.getResource("/image/swag.png"))); /* * contentPane is the main container, it contains the other containers : * NORTH : panelTop * EAST : panelTopEast * CENTER : panelCenter * BOTTOM : panelBottom * CENTER : panelBottomCenter * EAST : panelBottomEast */ contentPane = new JPanel(); contentPane.setBorder(new EmptyBorder(5, 5, 5, 5)); setContentPane(contentPane); contentPane.setLayout(new BorderLayout(0, 0)); // panelTop is the top container, it contains the panel panelTopEast JPanel panelTop = new JPanel(); contentPane.add(panelTop, BorderLayout.NORTH); panelTop.setLayout(new BorderLayout(0, 0)); // panelTopEast contains the button to change channel and the button to logout JPanel panelTopEast = new JPanel(); panelTop.add(panelTopEast, BorderLayout.EAST); // button to change the channel JButton btnChannel = new JButton("Change channel"); btnChannel.setFont(new Font("Tahoma", Font.BOLD, 14)); btnChannel.addActionListener(new ChannelListener()); panelTopEast.add(btnChannel); // panelTopCenter contains the labels nickname et channel *** JPanel panelTopCenter = new JPanel(); panelTop.add(panelTopCenter, BorderLayout.CENTER); panelTopCenter.setLayout(new BorderLayout(0, 0)); // label for the nickname lblNickname = new JLabel("Nickname : "); lblNickname.setFont(new Font("Tahoma", Font.BOLD, 14)); panelTopCenter.add(lblNickname, BorderLayout.WEST); // label for the nickname lblChannel = new JLabel("Channel : "); lblChannel.setFont(new Font("Tahoma", Font.BOLD, 14)); lblChannel.setHorizontalAlignment(SwingConstants.CENTER); panelTopCenter.add(lblChannel, BorderLayout.CENTER); // button to logout JButton btnLogout = new JButton("Logout"); Icon imgLogout = new ImageIcon(Toolkit.getDefaultToolkit().getImage(Chat.class.getResource("/image/logout.png"))); btnLogout.setIcon(imgLogout); btnLogout.setFont(new Font("Tahoma", Font.BOLD, 14)); btnLogout.addActionListener(new LogoutListener()); panelTopEast.add(btnLogout); // panelBottom is the bottom container, it contains panelBottomEast and panelBottomCenter JPanel panelBottom = new JPanel(); contentPane.add(panelBottom, BorderLayout.SOUTH); panelBottom.setLayout(new BorderLayout(0, 0)); panelBottom.setBorder(BorderFactory.createEmptyBorder(10,0,5,0)); // panelBottomEast contains the dropdown list of the emojis and the button to send message JPanel panelBottomEast = new JPanel(); panelBottom.add(panelBottomEast, BorderLayout.EAST); panelBottomEast.setLayout(new FlowLayout(FlowLayout.LEFT, 5, 5)); // dropdown list of the emojis comboBox = new JComboBox<Object>(EMOJIS_FILES); comboBox.setPreferredSize(new Dimension(60,30)); comboBox.addActionListener(new ItemAction()); panelBottomEast.add(comboBox); // button to send message JButton btnOk = new JButton("OK"); btnOk.setFont(new Font("Tahoma", Font.BOLD, 14)); btnOk.addActionListener(new SendListener()); panelBottomEast.add(btnOk); // panelBottomCenter contains the text area to write a message Panel panelBottomCenter = new Panel(); panelBottom.add(panelBottomCenter, BorderLayout.CENTER); panelBottomCenter.setLayout(new BoxLayout(panelBottomCenter, BoxLayout.X_AXIS)); textArea = new JTextArea(); textArea.setLineWrap(true); textArea.addKeyListener(new keyboardListener()); textArea.setBorder(new LineBorder(new Color(0, 0, 0))); textArea.setCaretPosition(textArea.getText().length()); panelBottomCenter.add(textArea); // panelCenter is the center container, it contains the text pane where messages are displayed JPanel panelCenter = new JPanel(); panelCenter.setBorder(new LineBorder(new Color(0, 0, 0))); contentPane.add(panelCenter, BorderLayout.CENTER); panelCenter.setLayout(new BorderLayout(0, 0)); textPane = new JTextPane(); textPane.setEditable(false); JScrollPane sp = new JScrollPane(textPane); panelCenter.add(sp); // styles styleNormal = new SimpleAttributeSet(); StyleConstants.setFontFamily(styleNormal, "Calibri"); StyleConstants.setFontSize(styleNormal, 14); nickStyle = new SimpleAttributeSet(); StyleConstants.setFontFamily(nickStyle, "Calibri"); StyleConstants.setFontSize(nickStyle, 14); StyleConstants.setBold(nickStyle, true); StyleConstants.setForeground(nickStyle, Color.red); // styled document doc = textPane.getStyledDocument(); // Add a listener to the window this.addWindowListener( new WindowAdapter() { public void windowClosing(WindowEvent e) { closeFrame(); } }); } public static Chat getInstance() { return INSTANCE; } /* * Methods */ // this method allow to display messages on the screen public void displayMessage(String message, String nick) { // bug fix :smile::smile: not ok if (message.contains("::")) message = message.replace("::", ": :"); //check if need to be split String[] parts = null; if (message.contains(" ")) { System.out.println("Yep split"); parts = message.split(" "); } else { System.out.println("Nop"); parts = new String[1]; parts[0] = message.replaceAll("[\\r\\n]+", ""); System.out.println(parts[0].length()); } // Displays the nick MessageControler mc = MessageControler.getInstance(); try { if (nick.equals(mc.nickname)) { if(Chat.EMOJIS_EQUIVALENT.containsKey(nick)) { String emo_name = EMOJIS_EQUIVALENT.get(nick); textPane.setCaretPosition(doc.getLength()); textPane.insertIcon(new ImageIcon(Toolkit.getDefaultToolkit().getImage(Chat.class.getResource("/emojis/"+emo_name+".png")), nick)); doc.insertString(doc.getLength(), " # ", nickStyle); } else doc.insertString(doc.getLength(), nick + " # ", nickStyle); } else { if(Chat.EMOJIS_EQUIVALENT.containsKey(nick)) { String emo_name = EMOJIS_EQUIVALENT.get(nick); textPane.setCaretPosition(doc.getLength()); textPane.insertIcon(new ImageIcon(Toolkit.getDefaultToolkit().getImage(Chat.class.getResource("/emojis/"+emo_name+".png")), nick)); doc.insertString(doc.getLength(), "(" + nick + ") > ",styleNormal); } else doc.insertString(doc.getLength(), nick + " > ", styleNormal); } } catch (BadLocationException e1) { // TODO Auto-generated catch block e1.printStackTrace(); } // Displays the message + emos for (int i = 0; i < parts.length; i++) { if (Arrays.asList(Chat.EMOJIS).contains(parts[i])) { // Il faut placer le curseur String emo_name = parts[i].replace(":", ""); textPane.setCaretPosition(doc.getLength()); textPane.insertIcon(new ImageIcon(Toolkit.getDefaultToolkit().getImage(Chat.class.getResource("/emojis/"+emo_name+".png")))); } else { if(Chat.EMOJIS_EQUIVALENT.containsKey(parts[i])) { String emo_name = EMOJIS_EQUIVALENT.get(parts[i]); textPane.setCaretPosition(doc.getLength()); textPane.insertIcon(new ImageIcon(Toolkit.getDefaultToolkit().getImage(Chat.class.getResource("/emojis/"+emo_name+".png")))); } else { if (i != 0) { message = " " + parts[i];//split all spaces } else { message = parts[i]; } try { doc.insertString(doc.getLength(), message, styleNormal); } catch (BadLocationException e1) { // TODO Auto-generated catch block e1.printStackTrace(); } } } // si dernier mot (ou emo) \n if (i+1 == parts.length) try { doc.insertString(doc.getLength(), "\n", styleNormal); } catch (BadLocationException e1) { // TODO Auto-generated catch block e1.printStackTrace(); } } textPane.setCaretPosition(doc.getLength()); } // this method allow to get message sent public String getTextField() { return textArea.getText(); } // this method allow to display an error message public void displayError(String message) { JOptionPane.showMessageDialog(null, message, "Erreur", JOptionPane.ERROR_MESSAGE); } public void displayInfo(String message) { JOptionPane.showMessageDialog(null, message, "Just to let you know ...", JOptionPane.INFORMATION_MESSAGE); } // this method allow to request a confirmation before closing the application public void closeFrame() { ImageIcon imageQuestion = new ImageIcon(Toolkit.getDefaultToolkit().getImage(Chat.class.getResource("/image/question.png"))); int answer = JOptionPane.showConfirmDialog(this, "Are you sure you wish to close? ", "Confirmation", JOptionPane.YES_NO_OPTION, JOptionPane.QUESTION_MESSAGE, imageQuestion); if(answer == JOptionPane.YES_OPTION ){ // Close server if not already done MessageControler mc = MessageControler.getInstance(); if (mc.isConnectionOpened()) { try { mc.process("#EXIT"); } catch (MessageControlerException e) { // TODO Auto-generated catch block e.printStackTrace(); } } dispose(); } } /* * Class Listener */ // class listener button "Change channel" public class ChannelListener implements ActionListener{ public void actionPerformed(ActionEvent e) { textPane.setText(""); textArea.setText(""); dispose(); Channel channel = new Channel(); channel.setVisible(true); } } // class listener button "Logout" public class LogoutListener implements ActionListener{ public void actionPerformed(ActionEvent e) { textPane.setText(""); textArea.setText(""); dispose(); Login login = new Login(); login.setVisible(true); } } // class listener smiley class ItemAction implements ActionListener{ public void actionPerformed(ActionEvent e) { textArea.setText(textArea.getText() + EMOJIS[comboBox.getSelectedIndex()]); // focus textArea.requestFocus(); } } // class listener button SEND class SendListener implements ActionListener { public void actionPerformed(ActionEvent arg0) { // display messages on the screen if (textArea.getText().equals("")) { } else { // Process the message MessageControler mc = MessageControler.getInstance(); try { mc.process(textArea.getText()); } catch (MessageControlerException e) { // TODO Auto-generated catch block e.printStackTrace(); } } textArea.setText(""); textArea.requestFocus(); } } // class listener touch enter class keyboardListener implements KeyListener { public void keyTyped(KeyEvent eKey) { if (eKey.getKeyChar() == Event.ENTER) { if (textArea.getText().replaceAll("[\\r\\n]+", "").equals("")) { } else { // Process the message MessageControler mc = MessageControler.getInstance(); try { mc.process(textArea.getText().replaceAll("[\\r\\n]+", "")); } catch (MessageControlerException e) { // TODO Auto-generated catch block e.printStackTrace(); } } textArea.setText(""); textArea.requestFocus(); } } public void keyPressed(KeyEvent e) { } public void keyReleased(KeyEvent e) { } } public void cleanDisplay() { this.textPane.setText(""); } public void setNicknameTop(String nickname) { this.lblNickname.setText("Nickname : " + nickname); } public void setChannelTop(String channel) { this.lblChannel.setText("\tChannel : " + channel); } }
{ "content_hash": "d26caffbd8fde58a95f040e3ba033d51", "timestamp": "", "source": "github", "line_count": 501, "max_line_length": 579, "avg_line_length": 31.848303393213573, "alnum_prop": 0.6667084482326397, "repo_name": "LittleSnake42/java-irc", "id": "1f10e46466c5d38f33cee1b7ac60333ca3e7f640", "size": "15956", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "src/main/java/ihm/Chat.java", "mode": "33188", "license": "mit", "language": [ { "name": "Java", "bytes": "55616" } ], "symlink_target": "" }
using System; using System.Collections.Generic; using Microsoft.WindowsAzure.Storage.Blob; namespace AzureUtilities.Blobs { /// <summary> /// Interface IAzureBlobUtility /// </summary> public interface IAzureBlobUtility { /// <summary> /// BLOBs the list. /// </summary> /// <returns>IEnumerable&lt;System.String&gt;.</returns> IEnumerable<string> BlobList(); /// <summary> /// Checks if file exists. /// </summary> /// <param name="fileName">Name of the file.</param> /// <returns><c>true</c> if XXXX, <c>false</c> otherwise.</returns> bool CheckIfFileExists(string fileName); /// <summary> /// Creates the container. /// </summary> /// <param name="accessType">Type of the access.</param> void CreateContainer(BlobContainerPublicAccessType accessType = BlobContainerPublicAccessType.Off); /// <summary> /// Deletes the blobs. /// </summary> /// <param name="blobName">Name of the BLOB.</param> void DeleteBlobs(string blobName); /// <summary> /// Downloads the BLOB as file. /// </summary> /// <param name="filePath">The file path.</param> /// <param name="fileName">Name of the file.</param> /// <param name="newFileName">New name of the file.</param> void DownloadBlobAsFile(string filePath, string fileName, string newFileName = null); /// <summary> /// Downloads the BLOB as text. /// </summary> /// <param name="fileName">Name of the file.</param> /// <returns>System.String.</returns> string DownloadBlobAsText(string fileName); /// <summary> /// Uploads the BLOB. /// </summary> /// <param name="filePath">The file path.</param> /// <returns>Uri.</returns> Uri UploadBlob(string filePath); /// <summary> /// Uploads the BLOB. /// </summary> /// <param name="content">The content.</param> /// <param name="blobName">Name of the BLOB.</param> /// <returns>Uri.</returns> Uri UploadBlob(string content, string blobName); /// <summary> /// Gets or sets the connection string. /// </summary> /// <value>The connection string.</value> string ConnectionString { get; set; } /// <summary> /// Gets or sets the name of the container. /// </summary> /// <value>The name of the container.</value> string ContainerName { get; set; } } }
{ "content_hash": "7965dbfdeb2ae7f881cbee7a8e3deda5", "timestamp": "", "source": "github", "line_count": 78, "max_line_length": 107, "avg_line_length": 33.62820512820513, "alnum_prop": 0.5627144491040793, "repo_name": "jsucupira/azure-blob-utilities", "id": "9ec7c13a13dbd64ed8bc3937e1771432f7b2093f", "size": "2625", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "AzureUtilities/Blobs/IAzureBlobUtility.cs", "mode": "33188", "license": "mit", "language": [ { "name": "Batchfile", "bytes": "551" }, { "name": "C#", "bytes": "47030" } ], "symlink_target": "" }
package com.fibonacci.MiscCraft.mob.entity; import com.fibonacci.MiscCraft.common.MiscCraft; import net.minecraft.block.Block; import net.minecraft.entity.EntityFlying; import net.minecraft.entity.SharedMonsterAttributes; import net.minecraft.entity.monster.EntityMob; import net.minecraft.entity.monster.IMob; import net.minecraft.item.Item; import net.minecraft.world.World; public class EntityBoss extends EntityMob{ public EntityBoss(World par1World) { super(par1World); this.setSize(1.0F, 1.0F); this.experienceValue(100); this.preventEntitySpawning = true; this.isImmuneToFire = true; } private void experienceValue(int i) { } protected String getLivingSound() { return "mob.ghast.moan"; } protected String getDeathSound() { return "mob.ghast.moan"; } protected String getHurtSound() { return "mob.ghast.moan"; } protected void func_145780_a(int p_145780_1_, int p_145780_2_, int p_145780_3_, Block p_145780_4_) { this.playSound("mob.ghast.moan", 0.15f, 1.0f); } protected void applyEntityAttributes() { super.applyEntityAttributes(); this.getEntityAttribute(SharedMonsterAttributes.followRange).setBaseValue(40.0D); this.getEntityAttribute(SharedMonsterAttributes.movementSpeed).setBaseValue(0.43000000417232513D); this.getEntityAttribute(SharedMonsterAttributes.attackDamage).setBaseValue(7.0D); } protected Item getDropItem() { return MiscCraft.StarDust; } }
{ "content_hash": "2062a67969beb22e6ad028e4e0466ddc", "timestamp": "", "source": "github", "line_count": 69, "max_line_length": 108, "avg_line_length": 22.304347826086957, "alnum_prop": 0.7147498375568551, "repo_name": "FibonacciRedstone/MiscCraft-1.7.10", "id": "4ecd6db9f19e85453ae2e48f798199c30f606f9c", "size": "1539", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "main/java/com/fibonacci/MiscCraft/mob/entity/EntityBoss.java", "mode": "33188", "license": "mit", "language": [ { "name": "Java", "bytes": "786148" } ], "symlink_target": "" }
/// <reference path="APIBean.d.ts" /> declare module Adaptive { /** @class Adaptive.DatabaseRow @extends Adaptive.APIBean Structure representing a row for a data table. @author Ferran Vila Conesa @since v2.0 @version 1.0 */ class DatabaseRow extends APIBean { /** @property {string[]} values The values of the row. */ values: Array<string>; /** @property {string[]} values The values of the row. The 'valuesProperty' is registered with the ECMAScript 5 Object.defineProperty() for the class field 'values'. */ valuesProperty: Array<string>; /** @method constructor Constructor for implementation using. @param {string[]} values The values of the row @since v2.0 */ constructor(values: Array<string>); /** @method Returns the values of the row. @return {string[]} The values of the row. @since v2.0 */ getValues(): Array<string>; /** @method Sets the values of the row. @param {string[]} values The values of the row. @since v2.0 */ setValues(values: Array<string>): void; /** @method @static Convert JSON parsed object to typed equivalent. @param {Object} object JSON parsed structure of type Adaptive.DatabaseRow. @return {Adaptive.DatabaseRow} Wrapped object instance. */ static toObject(object: any): DatabaseRow; /** @method @static Convert JSON parsed object array to typed equivalent. @param {Object} object JSON parsed structure of type Adaptive.DatabaseRow[]. @return {Adaptive.DatabaseRow[]} Wrapped object array instance. */ static toObjectArray(object: any): DatabaseRow[]; } }
{ "content_hash": "c1de8161040e8c165f1be37c91a0fdb8", "timestamp": "", "source": "github", "line_count": 65, "max_line_length": 144, "avg_line_length": 30.861538461538462, "alnum_prop": 0.5528414755732801, "repo_name": "AdaptiveMe/adaptive-arp-javascript", "id": "0ef6a23d599762106e29cd6b8a9f8de246e30c73", "size": "3296", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "adaptive-arp-js/src_units/DatabaseRow.d.ts", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "JavaScript", "bytes": "2026884" }, { "name": "Shell", "bytes": "10079" } ], "symlink_target": "" }
<?php use Symfony\Component\HttpKernel\Kernel; use Symfony\Component\Config\Loader\LoaderInterface; class AppKernel extends Kernel { public function registerBundles() { $bundles = array( new Symfony\Bundle\FrameworkBundle\FrameworkBundle(), new Symfony\Bundle\SecurityBundle\SecurityBundle(), new Symfony\Bundle\TwigBundle\TwigBundle(), new Symfony\Bundle\MonologBundle\MonologBundle(), new Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle(), new Symfony\Bundle\AsseticBundle\AsseticBundle(), new Doctrine\Bundle\DoctrineBundle\DoctrineBundle(), new Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle(), new JMS\SerializerBundle\JMSSerializerBundle(), new Snc\RedisBundle\SncRedisBundle(), new FOS\UserBundle\FOSUserBundle(), new FOS\JsRoutingBundle\FOSJsRoutingBundle(), new FOS\RestBundle\FOSRestBundle(), new PersistenceBundle\PersistenceBundle(), new CacheBundle\CacheBundle(), new PermissionBundle\PermissionBundle(), new AppBundle\AppBundle(), new ApiBundle\ApiBundle(), new UserBundle\UserBundle(), ); if (in_array($this->getEnvironment(), array('dev', 'test'))) { $bundles[] = new Symfony\Bundle\DebugBundle\DebugBundle(); $bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle(); $bundles[] = new Sensio\Bundle\DistributionBundle\SensioDistributionBundle(); $bundles[] = new Sensio\Bundle\GeneratorBundle\SensioGeneratorBundle(); } return $bundles; } public function registerContainerConfiguration(LoaderInterface $loader) { $loader->load(__DIR__.'/config/config_'.$this->getEnvironment().'.yml'); } public function getLogDir() { return '/var/log/ts.dev'; } }
{ "content_hash": "27a13ba3c139a2d5d3a911a8e4182cdd", "timestamp": "", "source": "github", "line_count": 51, "max_line_length": 89, "avg_line_length": 38.6078431372549, "alnum_prop": 0.6480446927374302, "repo_name": "rcousens/team-spirit.old", "id": "9b99d1b973a3f75276a8dc528409995d8946fcd8", "size": "1969", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "app/app/AppKernel.php", "mode": "33188", "license": "mit", "language": [ { "name": "ApacheConf", "bytes": "171133" }, { "name": "CSS", "bytes": "1115" }, { "name": "JavaScript", "bytes": "43420" }, { "name": "Nginx", "bytes": "2174" }, { "name": "PHP", "bytes": "59070" }, { "name": "Scheme", "bytes": "222" }, { "name": "Shell", "bytes": "1579" }, { "name": "XML", "bytes": "1298" } ], "symlink_target": "" }
package org.web3j.abi.datatypes.generated; import java.math.BigInteger; import org.web3j.abi.datatypes.Uint; /** * <p>Auto generated code.<br> * <strong>Do not modifiy!</strong><br> * Please use {@link org.web3j.codegen.AbiTypesGenerator} to update.</p> */ public class Uint216 extends Uint { public static final Uint216 DEFAULT = new Uint216(BigInteger.ZERO); public Uint216(BigInteger value) { super(216, value); } public Uint216(long value) { this(BigInteger.valueOf(value)); } }
{ "content_hash": "80ba8c5617ee594966782dd285ed635f", "timestamp": "", "source": "github", "line_count": 22, "max_line_length": 72, "avg_line_length": 24, "alnum_prop": 0.6875, "repo_name": "saulbein/web3j", "id": "93bdd403b5b0088384293e941bf20eac01d538f0", "size": "528", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "core/src/main/java/org/web3j/abi/datatypes/generated/Uint216.java", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "Java", "bytes": "1586727" }, { "name": "Shell", "bytes": "647" } ], "symlink_target": "" }
from __future__ import absolute_import from fasteners.lock import locked from fasteners.lock import read_locked from fasteners.lock import ReaderWriterLock from fasteners.lock import try_lock from fasteners.lock import write_locked from fasteners.process_lock import interprocess_locked from fasteners.process_lock import interprocess_read_locked from fasteners.process_lock import interprocess_write_locked from fasteners.process_lock import InterProcessLock from fasteners.process_lock import InterProcessReaderWriterLock from fasteners.version import _VERSION as __version__ __all__ = [ '__version__', 'locked', 'read_locked', 'ReaderWriterLock', 'try_lock', 'write_locked', 'interprocess_locked', 'interprocess_read_locked', 'interprocess_write_locked', 'InterProcessLock', 'InterProcessReaderWriterLock', ]
{ "content_hash": "0b4e3268ed0941f565293f6920bf1f1a", "timestamp": "", "source": "github", "line_count": 28, "max_line_length": 63, "avg_line_length": 30.678571428571427, "alnum_prop": 0.7694994179278231, "repo_name": "harlowja/fasteners", "id": "80ce8ba6556e1dc7f6333f0b7706194da13e1278", "size": "1582", "binary": false, "copies": "1", "ref": "refs/heads/main", "path": "fasteners/__init__.py", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "Python", "bytes": "72646" } ], "symlink_target": "" }
.. _PackageConfigurations: Build the same package with different configs ============================================= If you want to build your application with different settings, e.g. for *test*, *staging* and *production*, then you have three ways to do this. .. tip:: All examples are shown in a simple ``build.sbt``. We recommend using AutoPlugins to encapsulate certain aspects of your build. All examples can also be found in the `native-packager examples`_, .. _native-packager examples: https://github.com/muuki88/sbt-native-packager-examples SBT sub modules --------------- The main idea is to create a submodule per configuration. We start with a simple project ``build.sbt``. .. code-block :: scala name := "my-app" enablePlugins(JavaAppPackaging) In the end we want to create three different packages (*test*, *stage*, *prod*) with the respective configurations. We do this by creating an application module and three packaging submodules. .. code-block :: scala // the application lazy val app = project .in(file(".")) .settings( name := "my-app", libraryDependencies += "com.typesafe" % "config" % "1.3.0" ) Now that our application is defined in a module, we can add the three packaging submodules. We will override the ``resourceDirectory`` setting with our ``app`` resource directory to gain easy access to the applications resources. .. code-block :: scala lazy val testPackage = project // we put the results in a build folder .in(file("build/test")) .enablePlugins(JavaAppPackaging) .settings( // override the resource directory Compile / resourceDirectory := (app / compile / resourceDirectory).value, Universal / mappings += { ((Compile / resourceDirectory).value / "test.conf") -> "conf/application.conf" } ) .dependsOn(app) // bascially identical despite the configuration differences lazy val stagePackage = project .in(file("build/stage")) .enablePlugins(JavaAppPackaging) .settings( Compile / resourceDirectory := (app / Compile / resourceDirectory).value, Universal / mappings += { ((Compile / resourceDirectory).value / "stage.conf") -> "conf/application.conf" } ) .dependsOn(app) lazy val prodPackage = project .in(file("build/prod")) .enablePlugins(JavaAppPackaging) .settings( Compile / resourceDirectory := (app / Compile / resourceDirectory).value, Universal / mappings += { ((Compile / resourceDirectory).value / "prod.conf") -> "conf/application.conf" } ) .dependsOn(app) Now that you have your ``build.sbt`` set up, you can try building packages. .. code-block :: bash # stages a test build in build/test/target/universal/stage testPackage/stage # creates a zip with the test configuration sbt testPackage/Universal/packageBin This technique is a bit verbose, but communicates very clear what is being built and why. SBT parameters and Build Environment ------------------------------------ SBT is a java process, which means you can start it with system properties and use these in your build. This pattern may be useful in other scopes as well. First we define an *AutoPlugin* that sets a build environment. .. code-block :: scala // A working example of this is available at https://github.com/ryanberckmans/sbt-optimize-prod-with-build-env-plugin-example import sbt._ import sbt.Keys._ import sbt.plugins.JvmPlugin /** sets the build environment */ object BuildEnvPlugin extends AutoPlugin { // make sure it triggers automatically override def trigger = AllRequirements override def requires = JvmPlugin object autoImport { object BuildEnv extends Enumeration { val Production, Stage, Test, Developement = Value } val buildEnv = settingKey[BuildEnv.Value]("the current build environment") } import autoImport._ override def projectSettings: Seq[Setting[_]] = Seq( buildEnv := { sys.props.get("env") .orElse(sys.env.get("BUILD_ENV")) .flatMap { case "prod" => Some(BuildEnv.Production) case "stage" => Some(BuildEnv.Stage) case "test" => Some(BuildEnv.Test) case "dev" => Some(BuildEnv.Developement) case unkown => None } .getOrElse(BuildEnv.Developement) }, // give feed back onLoadMessage := { // depend on the old message as well val defaultMessage = onLoadMessage.value val env = buildEnv.value s"""|$defaultMessage |Running in build environment: $env""".stripMargin } ) } This plugin allows you to start sbt for example like .. code-block :: bash sbt -Denv=prod [info] Set current project to my-app (in build file: ...) [info] Running in build environment: Production > show buildEnv [info] Production Now we can use this ``buildEnv`` setting to change things. For example the ``mappings``. We recommend doing this in a plugin as it involves quite some logic. In this case we decide which configuration file to map as ``application.conf``. .. code-block :: scala Universal / mappings += { val confFile = buildEnv.value match { case BuildEnv.Developement => "dev.conf" case BuildEnv.Test => "test.conf" case BuildEnv.Stage => "stage.conf" case BuildEnv.Production => "prod.conf" } ((Compile / resourceDirectory).value / confFile) -> "conf/application.conf" } Ofcourse you can change all other settings, package names, etc. as well. Building different output packages would look like this .. code-block :: bash sbt -Denv=test Universal/packageBin sbt -Denv=stage Universal/packageBin sbt -Denv=prod Universal/packageBin SBT configuration scope (not recommended) ----------------------------------------- The other option is to generate additional scopes in order to build a package like ``Prod / packageBin``. Scopes behave counter intuitive sometimes, why we don't recommend this technique. .. error:: This example is work in progress and doesn't work. Unless you are not very familiar with sbt we highly recommend using another technique. A simple start may look like this .. code-block :: scala lazy val Prod = config("prod") extend(Universal) describedAs("scope to build production packages") lazy val Stage = config("stage") extend(Universal) describedAs("scope to build staging packages") lazy val app = project .in(file(".")) .enablePlugins(JavaAppPackaging) .configs(Prod, Stage) .settings( name := "my-app", libraryDependencies += "com.typesafe" % "config" % "1.3.0" ) You would expect ``Prod / packageBin`` to work, but *extending* scopes doesn't imply inheriting tasks and settings. This needs to be done manually. Append this to the ``app`` project. .. code-block :: scala // inheriting tasks and settings .settings(inConfig(Prod)(UniversalPlugin.projectSettings)) .settings(inConfig(Prod)(JavaAppPackaging.projectSettings)) // define custom settings .settings(inConfig(Prod)(Seq( // you have to override everything carefully packageName := "my-prod-app", executableScriptName := "my-prod-app", // this is what we acutally want to change mappings += ((Compile / resourceDirectory).value / "prod.conf") -> "conf/application.conf" ))) Note that you have to know more on native-packager internals than you should, because you override all the necessary settings with the intended values. Still this doesn't work as the universal plugin picks up the wrong mappings to build the package.
{ "content_hash": "0c9a67c64785290fcc13e6cfadd090e2", "timestamp": "", "source": "github", "line_count": 228, "max_line_length": 229, "avg_line_length": 33.3421052631579, "alnum_prop": 0.6888976585109182, "repo_name": "sbt/sbt-native-packager", "id": "46cdbdcb12369d4a3e70b8403ad17ddf08c2ce10", "size": "7602", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "src/sphinx/recipes/package_configuration.rst", "mode": "33188", "license": "bsd-2-clause", "language": [ { "name": "C", "bytes": "58" }, { "name": "CSS", "bytes": "20" }, { "name": "Dockerfile", "bytes": "64" }, { "name": "HTML", "bytes": "530" }, { "name": "Java", "bytes": "1099" }, { "name": "JavaScript", "bytes": "88" }, { "name": "Makefile", "bytes": "5" }, { "name": "Python", "bytes": "9137" }, { "name": "Roff", "bytes": "260" }, { "name": "Scala", "bytes": "534419" }, { "name": "Shell", "bytes": "20321" } ], "symlink_target": "" }
using UnityEngine; using System.Collections; using System.Collections.Generic; namespace Magicolo { public static class SpriteRendererExtensions { public static void SetColor(this SpriteRenderer spriteRenderer, Color color, string channels) { Color newColor = spriteRenderer.color; if (channels.Contains("R")) newColor.r = color.r; if (channels.Contains("G")) newColor.g = color.g; if (channels.Contains("B")) newColor.b = color.b; if (channels.Contains("A")) newColor.a = color.a; spriteRenderer.color = newColor; } public static void SetColor(this SpriteRenderer spriteRenderer, float color, string channels) { spriteRenderer.SetColor(new Color(color, color, color, color), channels); } } }
{ "content_hash": "b043a027e0f03a80c8b25cbf76b171be", "timestamp": "", "source": "github", "line_count": 24, "max_line_length": 97, "avg_line_length": 30.791666666666668, "alnum_prop": 0.7280108254397835, "repo_name": "Magicolo/uPD", "id": "161e77640406848c22d1b16186a882ad09287fba", "size": "741", "binary": false, "copies": "2", "ref": "refs/heads/master", "path": "Unity Project/Assets/Magicolo/GeneralTools/Extensions/SpriteRendererExtensions.cs", "mode": "33188", "license": "mit", "language": [ { "name": "C#", "bytes": "555679" }, { "name": "Pure Data", "bytes": "51960" } ], "symlink_target": "" }
using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; using Norm; using Norm.BSON; using Norm.Collections; using Norm.Commands.Modifiers; using Norm.Responses; using Xunit; using Norm.Collections; namespace Norm.Tests { public class QueryTests : IDisposable { private readonly IMongo _server; private BuildInfoResponse _buildInfo = null; private readonly IMongoCollection<Person> _collection; public QueryTests() { var admin = new MongoAdmin("mongodb://localhost/admin?pooling=false&strict=true"); _server = Mongo.Create("mongodb://localhost/NormTests?pooling=false"); _collection = _server.GetCollection<Person>("People"); _buildInfo = admin.BuildInfo(); //cause the collection to exist on the server by inserting, then deleting some things. _collection.Insert(new Person()); _collection.Delete(new { }); } public void Dispose() { _server.Database.DropCollection("People"); using (var admin = new MongoAdmin("mongodb://localhost/NormTests?pooling=false")) { admin.DropDatabase(); } _server.Dispose(); } [Fact] public void FindUsesLimit() { _collection.Insert(new Person { Name = "BBB" }); _collection.Insert(new Person { Name = "CCC" }); _collection.Insert(new Person { Name = "AAA" }); _collection.Insert(new Person { Name = "DDD" }); var result = _collection.Find(new { }, 3).ToArray(); Assert.Equal(3, result.Length); } public void MongoCollection_Supports_LINQ() { _collection.Insert(new Person { Name = "BBB" }); _collection.Insert(new Person { Name = "CCC" }); _collection.Insert(new Person { Name = "AAA" }); _collection.Insert(new Person { Name = "DDD" }); var result = _collection.AsQueryable().Where(y => y.Name == "AAA").ToArray(); Assert.Equal(1, result.Length); } [Fact] public void Count_Works() { _collection.Insert(new Person { Name = "BBB" }); _collection.Insert(new Person { Name = "CCC" }); _collection.Insert(new Person { Name = "AAA" }); _collection.Insert(new Person { Name = "DDD" }); var result = _collection.Count(); Assert.Equal(4, result); } [Fact] public void Count_With_Filter_Works() { _collection.Insert(new Person { Name = "BBB" }); _collection.Insert(new Person { Name = "CCC" }); _collection.Insert(new Person { Name = "AAA" }); _collection.Insert(new Person { Name = "DDD" }); var result = _collection.Count(new { Name = "AAA" }); Assert.Equal(1, result); } [Fact] public void DateTime_GreaterThan_Qualifier_Works() { _collection.Insert(new Person { Birthday = new DateTime(1910, 1, 1) }); _collection.Insert(new Person { Birthday = new DateTime(1920, 1, 1) }); _collection.Insert(new Person { Birthday = new DateTime(1930, 1, 1) }); var find = _collection.Find(new { Birthday = Q.GreaterThan(new DateTime(1920, 1, 1)) }); Assert.Equal(1, find.Count()); } [Fact] public void Element_Match_Matches() { using (var db = Mongo.Create(TestHelper.ConnectionString())) { var coll = db.GetCollection<Post>(); coll.Delete(new { }); coll.Insert(new Post { Comments = new Comment[] { new Comment { Text = "xabc" }, new Comment { Text = "abc" } } }, new Post { Tags = new String[] { "hello", "world" } }, new Post { Comments = new Comment[] { new Comment { Text = "xyz" }, new Comment { Text = "abc" } } }); Assert.Equal(1, coll.Find(new { Comments = Q.ElementMatch(new { Text = "xyz" }) }).Count()); Assert.Equal(2, coll.Find(new { Comments = Q.ElementMatch(new { Text = Q.Matches("^x") }) }).Count()); } } [Fact] public void Where_Qualifier_Works() { _collection.Insert(new Person { Name = "Gnomey" }); _collection.Insert(new Person { Name = "kde" }); _collection.Insert(new Person { Name = "Elfy" }); var find = _collection.Find(Q.Where("this.Name === 'Elfy';")); Assert.Equal(1, find.Count()); } [Fact] public void Find_Uses_Limit_Orderby_And_Skip() { _collection.Insert(new Person { Name = "AAA" }); _collection.Insert(new Person { Name = "BBB" }); _collection.Insert(new Person { Name = "CCC" }); _collection.Insert(new Person { Name = "AAA" }); _collection.Insert(new Person { Name = "DDD" }); var result = _collection.Find(new { Name = Q.NotEqual(new int?()) }, new { Name = OrderBy.Descending }, 3, 1).ToArray(); Assert.Equal(3, result.Length); Assert.Equal("CCC", result[0].Name); Assert.Equal("BBB", result[1].Name); Assert.Equal("AAA", result[2].Name); } [Fact] public void Find_Uses_Query_And_Orderby() { _collection.Insert(new Person { Name = "AAA" }); _collection.Insert(new Person { Name = "BBB" }); _collection.Insert(new Person { Name = "CCC" }); _collection.Insert(new Person { Name = "AAA" }); _collection.Insert(new Person { Name = "DDD" }); var result = _collection.Find(new { Name = Q.NotEqual("AAA") }, new { Name = OrderBy.Descending }).ToArray(); Assert.Equal(3, result.Length); Assert.Equal("DDD", result[0].Name); Assert.Equal("CCC", result[1].Name); Assert.Equal("BBB", result[2].Name); } [Fact] public void Find_Uses_Query_And_Orderby_And_Limit() { _collection.Insert(new Person { Name = "AAA" }); _collection.Insert(new Person { Name = "BBB" }); _collection.Insert(new Person { Name = "CCC" }); _collection.Insert(new Person { Name = "AAA" }); _collection.Insert(new Person { Name = "DDD" }); var result = _collection.Find(new { Name = Q.NotEqual("DDD") }, new { Name = OrderBy.Descending }, 2, 0).ToArray(); Assert.Equal(2, result.Length); Assert.Equal("CCC", result[0].Name); Assert.Equal("BBB", result[1].Name); } [Fact] public void Find_Uses_Null_Qualifier() { _collection.Insert(new Person { Name = null }); _collection.Insert(new Person { Name = "BBB" }); _collection.Insert(new Person { Name = "CCC" }); _collection.Insert(new Person { Name = "AAA" }); _collection.Insert(new Person { Name = "DDD" }); var result = _collection.Find(new { Name = Q.IsNull() }, new { Name = OrderBy.Descending }, 2, 0).ToArray(); Assert.Equal(1, result.Length); Assert.Equal(null, result[0].Name); result = _collection.Find(new { Name = Q.IsNotNull() }, new { Name = OrderBy.Descending }).ToArray(); Assert.Equal(4, result.Length); Assert.Equal("DDD", result[0].Name); } [Fact] public void FindUsesLimitAndSkip() { _collection.Insert(new Person { Name = "BBB" }); _collection.Insert(new Person { Name = "CCC" }); _collection.Insert(new Person { Name = "AAA" }); _collection.Insert(new Person { Name = "DDD" }); var result = _collection.Find(new { }, 1, 1).ToArray(); Assert.Equal(1, result.Length); Assert.Equal("CCC", result[0].Name); } [Fact] public void FindCanQueryEmbeddedArray() { _collection.Delete(new { }); var person1 = new Person { Name = "Joe Cool", Address = { Street = "123 Main St", City = "Anytown", State = "CO", Zip = "45123" } }; var person2 = new Person { Name = "Sam Cool", Address = { Street = "300 Main St", City = "Anytown", State = "CO", Zip = "45123" }, Relatives = new List<string>() { "Emma", "Bruce", "Charlie" } }; _collection.Insert(person1); _collection.Insert(person2); var elem = new Expando(); elem["Relatives"] = "Charlie"; var a = _collection.Find(elem).ToArray(); Assert.Equal(1, a.Length); } [Fact] public void BasicQueryUsingProperty() { _collection.Insert(new Person { Name = "Lisa Cool", Address = { Street = "300 Main St", City = "Anytown", State = "CO", Zip = "45123" } }); _collection.Insert(new Person { Name = "Joe Cool", Address = { Street = "123 Main St", City = "Anytown", State = "CO", Zip = "45123" } }); _collection.Insert(new Person { Name = "Sam Cool", Address = { Street = "300 Main St", City = "Anytown", State = "CO", Zip = "45123" } }); var matchRegex = new Regex("^.{4}Cool$"); var results = _collection.Find(new { Name = matchRegex }).ToArray(); Assert.Equal(2, results.Length); Assert.True(results.All(y => matchRegex.IsMatch(y.Name))); } [Fact] public void BasicQueryWithSort() { //remove everything from the collection. _collection.Delete(new { }); _collection.Insert(new Person { Name = "Third", LastContact = new DateTime(2010, 1, 1) }); _collection.Insert(new Person { Name = "First", LastContact = new DateTime(2000, 1, 1) }); _collection.Insert(new Person { Name = "Second", LastContact = new DateTime(2005, 1, 1) }); var people = _collection.Find(new { }, new { LastContact = 1 }).ToArray(); Assert.Equal(3, people.Length); Assert.Equal("First", people[0].Name); Assert.Equal("Second", people[1].Name); Assert.Equal("Third", people[2].Name); } [Fact] public void BasicQueryWithMultiSortOrdering() { //remove everything from the collection. _collection.Delete(new { }); _collection.Insert(new Person { Name = "Third", LastContact = new DateTime(2010, 1, 1) }); _collection.Insert(new Person { Name = "First", LastContact = new DateTime(2005, 1, 1) }); _collection.Insert(new Person { Name = "Second", LastContact = new DateTime(2005, 1, 1) }); var people = _collection.Find(new { }, new { LastContact = -1, Name = 1 }).ToArray(); Assert.Equal(3, people.Length); Assert.Equal("Third", people[0].Name); Assert.Equal("First", people[1].Name); Assert.Equal("Second", people[2].Name); } [Fact] public void BasicQueryUsingChildProperty() { _collection.Insert(new Person { Name = "Joe Cool", Address = { Street = "123 Main St", City = "Anytown", State = "CO", Zip = "45123" } }); _collection.Insert(new Person { Name = "Sam Cool", Address = { Street = "300 Main St", City = "Anytown", State = "CO", Zip = "45123" } }); var query = new Expando(); query["Address.City"] = Q.Equals<string>("Anytown"); var results = _collection.Find(query); Assert.Equal(2, results.Count()); } [Fact] public void QueryWithinEmbeddedArray() { var post1 = new Person { Name = "First", Relatives = new List<String> { "comment1", "comment2" } }; var post2 = new Person { Name = "Second", Relatives = new List<String> { "commentA", "commentB" } }; _collection.Insert(post1); _collection.Insert(post2); var results = _collection.Find(new { Relatives = "commentA" }); Assert.Equal("Second", results.First().Name); } [Fact] public void Distinct_On_Collection_Should_Return_Arrays_As_Value_If_Earlier_Than_1_5_0() { var isLessThan150 = Regex.IsMatch(_buildInfo.Version, "^([01][.][01234])"); // Any version earlier than MongoDB 1.5.0 if (isLessThan150) { _collection.Insert(new Person { Name = "Joe Cool", Relatives = new List<string>(new[] { "Tom Cool", "Sam Cool" }) }); _collection.Insert(new Person { Name = "Sam Cool", Relatives = new List<string>(new[] { "Joe Cool", "Jay Cool" }) }); _collection.Insert(new Person { Name = "Ted Cool", Relatives = new List<string>(new[] { "Tom Cool", "Sam Cool" }) }); _collection.Insert(new Person { Name = "Jay Cool", Relatives = new List<string>(new[] { "Sam Cool" }) }); var results = _collection.Distinct<string[]>("Relatives"); Assert.Equal(3, results.Count()); } } [Fact] public void Distinct_On_Collection_Should_Return_Array_Values_In_1_5_0_Or_Later() { var isLessThan150 = Regex.IsMatch(_buildInfo.Version, "^([01][.][01234])"); // Any version MongoDB 1.5.0 + if (!isLessThan150) { _collection.Insert(new Person { Name = "Joe Cool", Relatives = new List<string>(new[] { "Tom Cool", "Sam Cool" }) }); _collection.Insert(new Person { Name = "Sam Cool", Relatives = new List<string>(new[] { "Joe Cool", "Jay Cool" }) }); _collection.Insert(new Person { Name = "Ted Cool", Relatives = new List<string>(new[] { "Tom Cool", "Sam Cool" }) }); _collection.Insert(new Person { Name = "Jay Cool", Relatives = new List<string>(new[] { "Sam Cool" }) }); var results = _collection.Distinct<string>("Relatives"); Assert.Equal(4, results.Count()); } } [Fact] public void DistinctOnSimpleProperty() { _collection.Insert(new Person { Name = "Joe Cool", Relatives = new List<string>(new[] { "Tom Cool", "Sam Cool" }) }); _collection.Insert(new Person { Name = "Sam Cool", Relatives = new List<string>(new[] { "Joe Cool", "Jay Cool" }) }); _collection.Insert(new Person { Name = "Ted Cool", Relatives = new List<string>(new[] { "Tom Cool", "Sam Cool" }) }); _collection.Insert(new Person { Name = "Jay Cool", Relatives = new List<string>(new[] { "Sam Cool" }) }); var results = _collection.Distinct<string>("Name"); Assert.Equal(4, results.Count()); } [Fact] public void DistinctOnComplexProperty() { _collection.Insert(new Person { Name = "Joe Cool", Address = new Address { State = "CA" } }); _collection.Insert(new Person { Name = "Sam Cool", Address = new Address { State = "CA" } }); _collection.Insert(new Person { Name = "Ted Cool", Address = new Address { State = "CA", Zip = "90010" } }); _collection.Insert(new Person { Name = "Jay Cool", Address = new Address { State = "NY" } }); var results = _collection.Distinct<Address>("Address"); Assert.Equal(3, results.Count()); } [Fact] public void FindAndModify() { _collection.Insert(new Person { Name = "Joe Cool", Age = 10 }); var update = new Expando(); update["$inc"] = new { Age = 1 }; var result = _collection.FindAndModify(new { Name = "Joe Cool" }, update); Assert.Equal(10, result.Age); var result2 = _collection.Find(new { Name = "Joe Cool" }).FirstOrDefault(); Assert.Equal(11, result2.Age); } [Fact] public void FindAndModifyWithSort() { _collection.Insert(new Person { Name = "Joe Cool", Age = 10 }); _collection.Insert(new Person { Name = "Joe Cool", Age = 15 }); var update = new Expando(); update["$inc"] = new { Age = 1 }; var result = _collection.FindAndModify(new { Name = "Joe Cool" }, update, new { Age = Norm.OrderBy.Descending }); Assert.Equal(15, result.Age); var result2 = _collection.Find(new { Name = "Joe Cool" }).OrderByDescending(x => x.Age).ToList(); Assert.Equal(16, result2[0].Age); Assert.Equal(10, result2[1].Age); } [Fact] public void FindAndModifyReturnsNullWhenQueryNotFound() { _collection.Insert(new Person { Name = "Joe Cool", Age = 10 }); _collection.Insert(new Person { Name = "Joe Cool", Age = 15 }); var update = new Expando(); update["$inc"] = new { Age = 1 }; var result = _collection.FindAndModify(new { Name = "Joe Cool1" }, update, new { Age = Norm.OrderBy.Descending }); Assert.Null(result); var result2 = _collection.Find(new { Age = 15 }).ToList(); Assert.Equal(1, result2.Count); } [Fact] public void SliceOperatorBringsBackCorrectItems() { var isLessThan151 = Regex.IsMatch(_buildInfo.Version, "^(([01][.][01234])|(1.5.0))"); if (!isLessThan151) { Person p = new Person() { Relatives = new List<string>() { "Bob", "Joe", "Helen" } }; _collection.Insert(p); var result = _collection.Find(new { }, new { _id = 1 }, new { Relatives = Q.Slice(1) }, 1, 0).FirstOrDefault(); Assert.NotNull(result); Assert.Equal("Joe", result.Relatives.First()); result = _collection.Find(new { }, new { _id = 1 }, new { Relatives = Q.Slice(1, 2) }, 1, 0).FirstOrDefault(); Assert.NotNull(result); Assert.True((new[] { "Joe", "Helen" }).SequenceEqual(result.Relatives)); } } } }
{ "content_hash": "fc9e5a11592144afc4066c332c7030a2", "timestamp": "", "source": "github", "line_count": 455, "max_line_length": 151, "avg_line_length": 41.58021978021978, "alnum_prop": 0.5179977800095142, "repo_name": "atheken/NoRM", "id": "977df9801ab038e8aef6222f3db83b038100432a", "size": "18919", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "NoRM.Tests/CollectionFindTests/QueryTests.cs", "mode": "33188", "license": "bsd-3-clause", "language": [ { "name": "ASP", "bytes": "21291" }, { "name": "C#", "bytes": "829968" }, { "name": "JavaScript", "bytes": "77944" } ], "symlink_target": "" }
using System.Collections.Generic; using System.Linq; using Sonneville.Investing.Domain; using Sonneville.Utilities.Persistence.v2; namespace Sonneville.Investing.Persistence { public interface ITransactionRepository { void Save(IEnumerable<ITransaction> transactions); IEnumerable<ITransaction> Get(); } public class TransactionRepository : ITransactionRepository { private readonly IDataStore _dataStore; public TransactionRepository(IDataStore dataStore) { _dataStore = dataStore; } public void Save(IEnumerable<ITransaction> transactions) { var transactionData = new TransactionMule {Transactions = transactions.ToList()}; _dataStore.Save(transactionData); } public IEnumerable<ITransaction> Get() { return _dataStore.Get<TransactionMule>().Transactions; } private class TransactionMule { public List<ITransaction> Transactions { get; set; } } } }
{ "content_hash": "7f02da8e6ca3666fd38c02a48536d24f", "timestamp": "", "source": "github", "line_count": 40, "max_line_length": 93, "avg_line_length": 26.75, "alnum_prop": 0.6495327102803738, "repo_name": "SonnevilleJ/Investing", "id": "714440cf2deb5d012a9a75327647fa6fa55bd09a", "size": "1070", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "Sonneville.Investing.Persistence/TransactionRepository.cs", "mode": "33188", "license": "mit", "language": [ { "name": "C#", "bytes": "600602" }, { "name": "Shell", "bytes": "96" } ], "symlink_target": "" }
SYNONYM #### According to The Catalogue of Life, 3rd January 2011 #### Published in null #### Original name null ### Remarks null
{ "content_hash": "19ebcfba9583816377552e53eb5dfa24", "timestamp": "", "source": "github", "line_count": 13, "max_line_length": 39, "avg_line_length": 10.23076923076923, "alnum_prop": 0.6917293233082706, "repo_name": "mdoering/backbone", "id": "e0fd4bba37f4fe15b13cb13f38e3459a191647a4", "size": "181", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "life/Plantae/Magnoliophyta/Magnoliopsida/Asterales/Asteraceae/Baccharis/Baccharis genistelloides/ Syn. Baccharis triptera/README.md", "mode": "33188", "license": "apache-2.0", "language": [], "symlink_target": "" }
#include "Firestore/core/src/local/reference_set.h" #include "Firestore/core/src/immutable/sorted_set.h" #include "Firestore/core/src/local/document_key_reference.h" #include "Firestore/core/src/model/document_key.h" namespace firebase { namespace firestore { namespace local { using model::DocumentKey; using model::DocumentKeySet; void ReferenceSet::AddReference(const DocumentKey& key, int id) { DocumentKeyReference reference{key, id}; by_key_ = by_key_.insert(reference); by_id_ = by_id_.insert(reference); } void ReferenceSet::AddReferences(const DocumentKeySet& keys, int id) { for (const DocumentKey& key : keys) { AddReference(key, id); } } void ReferenceSet::RemoveReference(const DocumentKey& key, int id) { RemoveReference(DocumentKeyReference{key, id}); } void ReferenceSet::RemoveReferences( const firebase::firestore::model::DocumentKeySet& keys, int id) { for (const DocumentKey& key : keys) { RemoveReference(key, id); } } DocumentKeySet ReferenceSet::RemoveReferences(int id) { DocumentKeyReference start{DocumentKey::Empty(), id}; DocumentKeyReference end{DocumentKey::Empty(), id + 1}; DocumentKeySet removed{}; auto initial = by_id_; for (const auto& reference : initial.values_in(start, end)) { RemoveReference(reference); removed = removed.insert(reference.key()); } return removed; } void ReferenceSet::RemoveAllReferences() { auto initial = by_key_; for (const DocumentKeyReference& reference : initial) { RemoveReference(reference); } } void ReferenceSet::RemoveReference(const DocumentKeyReference& reference) { by_key_ = by_key_.erase(reference); by_id_ = by_id_.erase(reference); } DocumentKeySet ReferenceSet::ReferencedKeys(int id) { DocumentKeyReference start{DocumentKey::Empty(), id}; DocumentKeyReference end{DocumentKey::Empty(), id + 1}; DocumentKeySet keys; for (const auto& reference : by_id_.values_in(start, end)) { keys = keys.insert(reference.key()); } return keys; } bool ReferenceSet::ContainsKey(const DocumentKey& key) { // Create a reference with a zero ID as the start position to find any // document reference with this key. DocumentKeyReference start{key, 0}; auto range = by_key_.values_from(start); auto begin = range.begin(); return begin != range.end() && begin->key() == key; } } // namespace local } // namespace firestore } // namespace firebase
{ "content_hash": "034952ee3aa55904897a00c287db684b", "timestamp": "", "source": "github", "line_count": 88, "max_line_length": 75, "avg_line_length": 27.488636363636363, "alnum_prop": 0.7205456800330715, "repo_name": "firebase/firebase-ios-sdk", "id": "166c1b649ebc97811429184901c0d99df5b949c8", "size": "3009", "binary": false, "copies": "3", "ref": "refs/heads/master", "path": "Firestore/core/src/local/reference_set.cc", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "C", "bytes": "365959" }, { "name": "C++", "bytes": "8345652" }, { "name": "CMake", "bytes": "91856" }, { "name": "JavaScript", "bytes": "3675" }, { "name": "Objective-C", "bytes": "10276029" }, { "name": "Objective-C++", "bytes": "837306" }, { "name": "Python", "bytes": "117723" }, { "name": "Ruby", "bytes": "179250" }, { "name": "Shell", "bytes": "127192" }, { "name": "Swift", "bytes": "2052268" }, { "name": "sed", "bytes": "2015" } ], "symlink_target": "" }
package lib import ( "time" context "golang.org/x/net/context" "github.com/SimonBuckner/grpc_auth/server/model" jwt "github.com/dgrijalva/jwt-go" gmAuth "github.com/grpc-ecosystem/go-grpc-middleware/auth" "google.golang.org/grpc" "google.golang.org/grpc/codes" ) func signingKeyFn(key string) jwt.Keyfunc { return func(*jwt.Token) (interface{}, error) { return []byte(key), nil } } // NewBearerToken ... func NewBearerToken(username string, role string, key string) (string, error) { claims := &model.UserClaims{} claims.Username = username claims.Role = role claims.Issuer = "grpc_auth" claims.IssuedAt = time.Now().Unix() claims.ExpiresAt = time.Now().Add(5 * time.Minute).Unix() token := jwt.NewWithClaims(jwt.SigningMethodHS256, claims) return token.SignedString([]byte(key)) } // AuthFromTokenFn ... func AuthFromTokenFn(authScheme string, key string) gmAuth.AuthFunc { return func(ctx context.Context) (context.Context, error) { tokenString, err := gmAuth.AuthFromMD(ctx, authScheme) if err != nil { return ctx, grpc.Errorf(codes.Unauthenticated, "1. AuthFromToken failed: %v", err) } token, err := jwt.ParseWithClaims(tokenString, &model.UserClaims{}, signingKeyFn(key)) if err != nil { return ctx, grpc.Errorf(codes.Unauthenticated, "decode of token failed: %v", err) } if !token.Valid { return ctx, grpc.Errorf(codes.Unauthenticated, "token is not valid") } return context.WithValue(ctx, "auth.token", token.Claims), nil } }
{ "content_hash": "0b1c7a9ae7031a0f68b9b4a090ebf17a", "timestamp": "", "source": "github", "line_count": 53, "max_line_length": 88, "avg_line_length": 29.150943396226417, "alnum_prop": 0.6906148867313916, "repo_name": "SimonBuckner/grpc_auth", "id": "d5d5f9568055a9e796b5697d194643c4cf1fb75b", "size": "1545", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "lib/jwt.go", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "Go", "bytes": "32026" }, { "name": "Protocol Buffer", "bytes": "539" }, { "name": "Shell", "bytes": "66" } ], "symlink_target": "" }
<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" > <solid android:color="@android:color/white" /> <stroke android:width="1dp" android:color="@android:color/white" /> <corners android:bottomLeftRadius="5dp" android:bottomRightRadius="5dp" android:topLeftRadius="0.5dp" android:topRightRadius="0.5dp" /> </shape>
{ "content_hash": "ca9198bc3e6ea851e5ebc4d446ae2c74", "timestamp": "", "source": "github", "line_count": 16, "max_line_length": 67, "avg_line_length": 26.9375, "alnum_prop": 0.6334106728538283, "repo_name": "ahmedaljazzar/edx-app-android", "id": "7e66ae3a71d45fd633fc24a4f3415f872932c32c", "size": "431", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "ExoPlayerLib/res/drawable/bg_white_bottom_rounded.xml", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "CSS", "bytes": "1264" }, { "name": "HTML", "bytes": "130398" }, { "name": "Java", "bytes": "3228180" } ], "symlink_target": "" }
import { Component, Input, ElementRef, OnInit } from '@angular/core'; import { UpdateClassService } from '../core/service/update.class.service'; import { isPresent, toNumber } from '../util/lang'; const statusColorMap = { normal: '#108ee9', exception: '#f04134', success: '#00a854', }; /** * Circle 进度圈 */ @Component({ selector: 'weui-circle', preserveWhitespaces: false, providers: [ UpdateClassService ], template: ` <svg [ngClass]="canvasClass" viewBox="0 0 100 100"> <path [ngClass]="circleTrailClass" [attr.stroke]="trailColor" [attr.stroke-width]="trailWidth || strokeWidth" [attr.fill-opacity]="0" [attr.d]="circleData.pathString" [ngStyle]="circleData.trailPathStyle" ></path> <path *ngIf="showCirclePath" [ngClass]="circlePathClass" [attr.stroke]="strokeColor" [attr.stroke-width]="strokeWidth" [attr.fill-opacity]="0" [attr.stroke-linecap]="strokeLinecap" [attr.d]="circleData.pathString" [ngStyle]="circleData.strokePathStyle" ></path> </svg> ` }) export class WeUICircle implements OnInit { /** 百分比 */ @Input() get percent(): number { return this._percent; } set percent(percent: number) { if (isPresent(percent)) { const value = toNumber(percent, 0); if (this._percent !== value) { this._percent = value; this.updateCircleData(); } } } private _percent = 0; /** 圆形进度条线的厚度,单位是进度条画布宽度的百分比 */ @Input() get trailWidth(): number { return this._trailWidth; } set trailWidth(trailWidth: number) { if (isPresent(trailWidth)) { const value = toNumber(trailWidth, 0); if (this._trailWidth !== value) { this._trailWidth = value; this.updateCircleData(); } } } private _trailWidth = 16; /** 圆形进度条线的宽度,单位是进度条画布宽度的百分比 */ @Input() get strokeWidth(): number { return this._strokeWidth; } set strokeWidth(strokeWidth: number) { if (isPresent(strokeWidth)) { const value = toNumber(strokeWidth, 0); if (this._strokeWidth !== value) { this._strokeWidth = value; this.updateCircleData(); } } } private _strokeWidth = 16; /** 圆形进度条线的颜色 */ @Input() get strokeColor(): string { return this._strokeColor; } set strokeColor(strokeColor: string) { if (this._strokeColor !== strokeColor) { this._strokeColor = strokeColor; this.updateCircleData(); } } private _strokeColor = '#108ee9'; /* @Input() successColor: string; @Input() exceptionColor: string; */ /** * 圆形进度条线条末端线帽的样式,可选值为 `butt` `round` `square`。默认为`round`。 * <ul> * <li> butt: 向线条的每个末端添加平直的边缘; </li> * <li> round: 向线条的每个末端添加圆形线帽; </li> * <li> square: 向线条的每个末端添加正方形线帽。 </li> * </ul> */ @Input() get strokeLinecap(): 'butt' | 'round' | 'square' { return this._strokeLinecap; } set strokeLinecap(strokeLinecap: 'butt' | 'round' | 'square') { if (this._strokeLinecap !== strokeLinecap) { this._strokeLinecap = strokeLinecap; this.updateCircleData(); } } private _strokeLinecap: 'butt' | 'round' | 'square' = 'round'; /** 圆形进度条线的轮廓颜色 */ @Input() get trailColor(): string { return this._trailColor; } set trailColor(trailColor: string) { if (this._trailColor !== trailColor) { this._trailColor = trailColor; this.updateCircleData(); } } private _trailColor = '#D9D9D9'; /** 圆形进度条缺口位置,可选值为 `top` `bottom` `left` `right`。默认为`top`。 */ @Input() get gapPosition(): 'top' | 'bottom' | 'left' | 'right' { return this._gapPosition; } set gapPosition(gapPosition: 'top' | 'bottom' | 'left' | 'right') { if (this._gapPosition !== gapPosition) { this._gapPosition = gapPosition; this.updateCircleData(); } } private _gapPosition: 'top' | 'bottom' | 'left' | 'right' = 'top'; /** 圆形进度条缺口角度,可取值 0 ~ 360 */ @Input() get gapDegree(): number { return this._gapDegree; } set gapDegree(gapDegree: number) { if (isPresent(gapDegree)) { const value = toNumber(gapDegree, 0); if (this._gapDegree !== value) { this._gapDegree = value; this.updateCircleData(); } } } private _gapDegree = 0; private _lastDrawTime = new Date(); // 内部样式 public canvasClass: any; public circleTrailClass: any; public circlePathClass: any; public circleData: {pathString?: string, trailPathStyle?: any, strokePathStyle?: any} = {}; constructor( protected el: ElementRef, protected updateClassService: UpdateClassService) { } ngOnInit(): void { this.updateCircleData(); this.updateClassMap(); } protected updateClassMap(): void { this.canvasClass = `weui-circle`; this.circleTrailClass = `weui-circle-trail`; this.circlePathClass = `weui-circle-path`; } protected updateCircleData(): void { const interval = this._lastDrawTime ? (new Date().getTime() - this._lastDrawTime.getTime()) : 0; const percent = this.percent; const gapDegree = this.gapDegree || 0; const radius = 50 - (this.strokeWidth / 2); let beginPositionX = 0; let beginPositionY = -radius; let endPositionX = 0; let endPositionY = radius * -2; switch (this.gapPosition) { case 'left': beginPositionX = -radius; beginPositionY = 0; endPositionX = radius * 2; endPositionY = 0; break; case 'right': beginPositionX = radius; beginPositionY = 0; endPositionX = radius * -2; endPositionY = 0; break; case 'bottom': beginPositionY = radius; endPositionY = radius * 2; break; default: } const pathString = `M 50,50 m ${beginPositionX},${beginPositionY} a ${radius},${radius} 0 1 1 ${endPositionX},${-endPositionY} a ${radius},${radius} 0 1 1 ${-endPositionX},${endPositionY}`; const len = Math.PI * 2 * radius; const trailPathStyle = { stroke: this.trailColor, strokeDasharray: `${len - gapDegree}px ${len}px`, strokeDashoffset: `-${gapDegree / 2}px`, transition: 'stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s' }; const strokePathStyle = { stroke: this.strokeColor, strokeDasharray: `${(percent / 100) * (len - gapDegree)}px ${len}px`, strokeDashoffset: `-${gapDegree / 2}px`, transition: 'stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s', transitionDuration: interval > 0 && interval < 100 ? '0s, 0s' : '0.3s, 0.3s' }; this.circleData = { pathString, trailPathStyle, strokePathStyle }; } get showCirclePath(): boolean { return this.percent > 0; } }
{ "content_hash": "635fd20c49453861c2eb1f0b05facc53", "timestamp": "", "source": "github", "line_count": 258, "max_line_length": 104, "avg_line_length": 29.44573643410853, "alnum_prop": 0.5427142293010399, "repo_name": "fbchen/angular4-weui", "id": "a1a15b11cce117d904f9375f7783e85ab7c8affb", "size": "8153", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "src/app/weui/src/progress/weui.circle.ts", "mode": "33188", "license": "mit", "language": [ { "name": "CSS", "bytes": "27132" }, { "name": "HTML", "bytes": "69266" }, { "name": "JavaScript", "bytes": "2397" }, { "name": "Shell", "bytes": "15735" }, { "name": "TypeScript", "bytes": "245032" } ], "symlink_target": "" }
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="24" android:viewportHeight="24" android:tint="?attr/colorControlNormal"> <path android:fillColor="@android:color/white" android:pathData="M7.65,12.3H16.375V11.675H7.65ZM4.425,19.575V4.4H19.6V19.575Z"/> </vector>
{ "content_hash": "2e4606954e8fb8fb9b1dfe0068c8194e", "timestamp": "", "source": "github", "line_count": 10, "max_line_length": 87, "avg_line_length": 37.9, "alnum_prop": 0.7097625329815304, "repo_name": "google/material-design-icons", "id": "644a7b1053b61320e548ebdda13ccbbee63ac128", "size": "379", "binary": false, "copies": "2", "ref": "refs/heads/master", "path": "symbols/android/indeterminate_check_box/materialsymbolssharp/indeterminate_check_box_wght100gradN25fill1_24px.xml", "mode": "33188", "license": "apache-2.0", "language": [], "symlink_target": "" }
import sys import click from bson import ObjectId import rvo.db as db import rvo.utils as utils import rvo.transaction as transaction from rvo.crypto import crypto from rvo.validate import validate import rvo.config @click.command(short_help="Shows a document", help=""" Shows a single document from documentstore and opens its content in a pager (or stdout). """) @click.argument('docid') @click.option('password', '-p', '--password', required=False, default=False, help="Password for encrypted documents") @click.option('stdout', '-s', '--stdout', required=False, default=False, is_flag=True, help="Print document to stdout instead of opening pager") @click.pass_context def show(ctx, docid, password, stdout): """ Shows a single object from database and opens its content in a pager :docid: string (will be converted to bson object) :returns: bool """ coll = db.get_document_collection(ctx) doc, docid = db.get_document_by_id(ctx, docid) config = ctx.obj["config"] content, c = db.get_content(ctx, doc, password=password) if sys.stdout.isatty() and not stdout: utils.view_content_in_pager(config["pager"], config['pageropts'], template=content) else: # try: # print(content.encode("utf-8")) # except UnicodeDecodeError: print(content.encode("utf-8")) transaction.log(ctx, docid, "show", doc["title"]) # showing the message means decrypting the message # in order to do not reuse the nonce from salsa20, # we have to reencrypt the content and update the field if doc["encrypted"] is True: doc["content"] = c.encrypt_content(content.encode("utf-8")) if validate(doc): coll.save(doc) else: utils.log_error("Validation of the updated object did not succeed") return True
{ "content_hash": "e3556a81787f35cd84b64718bef131c2", "timestamp": "", "source": "github", "line_count": 59, "max_line_length": 91, "avg_line_length": 32.67796610169491, "alnum_prop": 0.6493775933609959, "repo_name": "noqqe/rvo", "id": "afa2ce07ef63e9518c5448c6866ef5502094a99f", "size": "1928", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "rvo/commands/show.py", "mode": "33188", "license": "mit", "language": [ { "name": "Python", "bytes": "96671" }, { "name": "Shell", "bytes": "724" } ], "symlink_target": "" }
apemanask ========== <!--- This file is generated by ape-tmpl. Do not update manually. ---> <!-- Badge Start --> <a name="badges"></a> [![Build Status][bd_travis_shield_url]][bd_travis_url] [![Code Climate][bd_codeclimate_shield_url]][bd_codeclimate_url] [![Code Coverage][bd_codeclimate_coverage_shield_url]][bd_codeclimate_url] [![npm Version][bd_npm_shield_url]][bd_npm_url] [![JS Standard][bd_standard_shield_url]][bd_standard_url] [bd_repo_url]: https://github.com/apeman-labo/apemanask [bd_travis_url]: http://travis-ci.org/apeman-labo/apemanask [bd_travis_shield_url]: http://img.shields.io/travis/apeman-labo/apemanask.svg?style=flat [bd_license_url]: https://github.com/apeman-labo/apemanask/blob/master/LICENSE [bd_codeclimate_url]: http://codeclimate.com/github/apeman-labo/apemanask [bd_codeclimate_shield_url]: http://img.shields.io/codeclimate/github/apeman-labo/apemanask.svg?style=flat [bd_codeclimate_coverage_shield_url]: http://img.shields.io/codeclimate/coverage/github/apeman-labo/apemanask.svg?style=flat [bd_gemnasium_url]: https://gemnasium.com/apeman-labo/apemanask [bd_gemnasium_shield_url]: https://gemnasium.com/apeman-labo/apemanask.svg [bd_npm_url]: http://www.npmjs.org/package/apemanask [bd_npm_shield_url]: http://img.shields.io/npm/v/apemanask.svg?style=flat [bd_standard_url]: http://standardjs.com/ [bd_standard_shield_url]: https://img.shields.io/badge/code%20style-standard-brightgreen.svg <!-- Badge End --> <!-- Description Start --> <a name="description"></a> Demo of service project. <!-- Description End --> <!-- Overview Start --> <a name="overview"></a> <!-- Overview End --> <!-- Sections Start --> <a name="sections"></a> <!-- Section from "doc/guides/01.Installation.md.hbs" Start --> <a name="section-doc-guides-01-installation-md"></a> Installation ----- ```bash $ npm install apemanask --save ``` <!-- Section from "doc/guides/01.Installation.md.hbs" End --> <!-- Section from "doc/guides/02.Usage.md.hbs" Start --> <a name="section-doc-guides-02-usage-md"></a> Usage --------- ```javascript 'use strict' const apemanask = require('apemanask') // Ask yes no answer and callback with boolean result. apemanask.yesno('Are you sure?').then((answer) => { if (answer) { /* ... */ } else { /* ... */ } }) ``` <!-- Section from "doc/guides/02.Usage.md.hbs" End --> <!-- Sections Start --> <!-- LICENSE Start --> <a name="license"></a> License ------- This software is released under the [MIT License](https://github.com/apeman-labo/apemanask/blob/master/LICENSE). <!-- LICENSE End --> <!-- Links Start --> <a name="links"></a> Links ------ + [apeman](https://github.com/apeman-labo/apeman) <!-- Links End -->
{ "content_hash": "d0217b2d6dd7ba5e81c424673a1495c9", "timestamp": "", "source": "github", "line_count": 113, "max_line_length": 124, "avg_line_length": 23.95575221238938, "alnum_prop": 0.6775027705947544, "repo_name": "apeman-labo/apemanask", "id": "64fa0d3dde5ca4fd3589b19ff7cc6cc399272cb8", "size": "2707", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "README.md", "mode": "33188", "license": "mit", "language": [ { "name": "HTML", "bytes": "229" }, { "name": "JavaScript", "bytes": "5613" } ], "symlink_target": "" }
package org.apache.gora.hbase.util; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.hbase.HBaseTestingUtility; import org.apache.hadoop.hbase.HTableDescriptor; import org.apache.hadoop.hbase.MiniHBaseCluster; import org.apache.hadoop.hbase.client.HBaseAdmin; import org.apache.hadoop.hbase.util.Bytes; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * Class that will creates a single instance of HBase MiniCluster. * Copied from HBase support for Apache James: * http://svn.apache.org/repos/asf/james/mailbox/trunk/hbase/src/test/java/org/apache/james/mailbox/hbase/ */ public final class HBaseClusterSingleton { private static final Logger LOG = LoggerFactory.getLogger(HBaseClusterSingleton.class); private static final HBaseTestingUtility htu = new HBaseTestingUtility(); private static HBaseClusterSingleton cluster = null; private MiniHBaseCluster hbaseCluster; private Configuration conf; /** * Builds a MiniCluster instance. * @return the {@link HBaseClusterSingleton} instance * @throws RuntimeException */ public static synchronized HBaseClusterSingleton build(int numServers) throws RuntimeException { LOG.info("Retrieving cluster instance."); if (cluster == null) { cluster = new HBaseClusterSingleton(numServers); } return cluster; } private HBaseClusterSingleton(int numServers) throws RuntimeException { // Workaround for HBASE-5711, we need to set config value dfs.datanode.data.dir.perm // equal to the permissions of the temp dirs on the filesystem. These temp dirs were // probably created using this process' umask. So we guess the temp dir permissions as // 0777 & ~umask, and use that to set the config value. try { Process process = Runtime.getRuntime().exec("/bin/sh -c umask"); BufferedReader br = new BufferedReader(new InputStreamReader(process.getInputStream())); int rc = process.waitFor(); if(rc == 0) { String umask = br.readLine(); int umaskBits = Integer.parseInt(umask, 8); int permBits = 0777 & ~umaskBits; String perms = Integer.toString(permBits, 8); LOG.info("Setting dfs.datanode.data.dir.perm to " + perms); htu.getConfiguration().set("dfs.datanode.data.dir.perm", perms); } else { LOG.warn("Failed running umask command in a shell, nonzero return value"); } } catch (Exception e) { // ignore errors, we might not be running on POSIX, or "sh" might not be on the path LOG.warn("Couldn't get umask", e); } htu.getConfiguration().setInt("zookeeper.session.timeout", 20000); //htu.getConfiguration().set("hbase.zookeeper.quorum", "localhost"); //htu.getConfiguration().setInt("hbase.zookeeper.property.clientPort", 2181); try { LOG.info("Start HBase mini cluster."); hbaseCluster = htu.startMiniCluster(numServers); LOG.info("After cluster start-up."); hbaseCluster.waitForActiveAndReadyMaster(); LOG.info("After active and ready."); conf = hbaseCluster.getConfiguration(); /* LOG.info("Start mini mapreduce cluster."); htu.startMiniMapReduceCluster(numServers); LOG.info("After mini mapreduce cluster start-up."); */ } catch (Exception ex) { throw new RuntimeException("Minicluster not starting."); } finally { // add a shutdown hook for shutting down the minicluster. Runtime.getRuntime().addShutdownHook(new Thread(new Runnable() { @Override public void run() { try { if (hbaseCluster != null) { hbaseCluster.shutdown(); } //htu.shutdownMiniMapReduceCluster(); } catch (IOException e) { throw new RuntimeException("Exception shutting down cluster."); } } })); } } /** * Return a configuration for the runnning MiniCluster. * @return */ public Configuration getConf() { return conf; } /** * Creates a table with the specified column families. * @param tableName the table name * @param columnFamilies the colum families * @throws IOException */ public void ensureTable(String tableName, String... columnFamilies) throws IOException { byte[][] cfs = new byte[columnFamilies.length][]; for (int i = 0; i < columnFamilies.length; i++) { cfs[i] = Bytes.toBytes(columnFamilies[i]); } ensureTable(Bytes.toBytes(tableName), cfs); } /** * Creates a table with the specified column families. * @param tableName the table name * @param cfs the column families * @throws IOException */ public void ensureTable(byte[] tableName, byte[][] cfs) throws IOException { HBaseAdmin admin = htu.getHBaseAdmin(); if (!admin.tableExists(tableName)) { htu.createTable(tableName, cfs); } } /** * Truncates all tables * @throws Exception */ public void truncateAllTables() throws Exception { HBaseAdmin admin = htu.getHBaseAdmin(); for(HTableDescriptor table:admin.listTables()) { htu.truncateTable(table.getName()); } } /** * Delete all tables * @throws Exception */ public void deleteAllTables() throws Exception { HBaseAdmin admin = htu.getHBaseAdmin(); for(HTableDescriptor table:admin.listTables()) { admin.disableTable(table.getName()); admin.deleteTable(table.getName()); } } public void shutdownMiniCluster() throws IOException { hbaseCluster.shutdown(); } /** * Returns the HBaseTestingUtility instance * @return static instance of HBaseTestingUtility */ public HBaseTestingUtility getHbaseTestingUtil() { return htu; } }
{ "content_hash": "3e9e2ff7f9d029d317f129f545d9c646", "timestamp": "", "source": "github", "line_count": 176, "max_line_length": 106, "avg_line_length": 33.09659090909091, "alnum_prop": 0.6805150214592275, "repo_name": "jaferreiro/gora-indra", "id": "7406929708ba1bc256122028b0b8c86146c7ca95", "size": "6631", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "gora-hbase/src/test/java/org/apache/gora/hbase/util/HBaseClusterSingleton.java", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "HTML", "bytes": "3059" }, { "name": "Java", "bytes": "1410738" }, { "name": "Shell", "bytes": "6382" } ], "symlink_target": "" }
package org.brownsocks.payments; /** * Appications using the Brownsocks Payments API can implement * this interface to receive notifications about payments. * * Implementation should check the payments status and record them * to a database or whatever else you want. * * @author [email protected] */ public interface PaymentsListener { /** * Indicates that a payment is 'processing'. This is usually * because the customer is being re-directed to an external site * to complete the payment (browser submission or 3D-secure / * verified by visa). * * The payment is NOT final at this point. Once the payment is * finalized, paymentReceived() method will be called, which may * never happen if the customer abandons the process. * * @param result */ public void paymentProcessing(PaymentResult result); /** * Indicates that a payment has been received. * * The payment may be successful or failed. * * In any case, only one call is made to this method per payment, * once the payment is finalized. * * The paymentProcessing() method may or may not have been called * before. * * @param result */ public void paymentReceived(PaymentResult result); }
{ "content_hash": "48ca1b28a7d7d929e10ffd79c51b34e0", "timestamp": "", "source": "github", "line_count": 46, "max_line_length": 66, "avg_line_length": 26.76086956521739, "alnum_prop": 0.7140536149471974, "repo_name": "neopeak/brownsocks-payments", "id": "ec0344e55bf98487c6401924b2e9cc744891b14c", "size": "1392", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "src/java/org/brownsocks/payments/PaymentsListener.java", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "Java", "bytes": "29451" } ], "symlink_target": "" }
export default { state: { user: null, }, mutations: { setUser(state, user) { state.user = user; }, resetUser(state) { state.user = null; }, }, actions: { userLogin({ commit }, user = {}) { const { email, password } = user; // TODO: login via the server return new Promise((resolve, reject) => { setTimeout(() => { if (!email || !password) { commit('resetUser'); reject(); } else { commit('setUser', email); resolve(); } }, 300); }); }, userLogout({ commit }) { // TODO: logout via the server return new Promise((resolve) => { // TODO: reset user state on logout commit('resetUser'); resolve(); }); }, }, getters: { isAuthenticated(state) { // TODO: real user data checking via the server return state.user !== null; }, }, };
{ "content_hash": "d8e9ab799c5bcd96937c054aa8bacca4", "timestamp": "", "source": "github", "line_count": 45, "max_line_length": 53, "avg_line_length": 21.555555555555557, "alnum_prop": 0.47216494845360824, "repo_name": "w33ble/loopback-vue-app", "id": "a211fd621b7f392db0c55ef0bdad6c01863e6fc8", "size": "970", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "src/store/authentication.js", "mode": "33188", "license": "mit", "language": [ { "name": "CSS", "bytes": "757" }, { "name": "HTML", "bytes": "363" }, { "name": "JavaScript", "bytes": "13924" }, { "name": "Vue", "bytes": "6849" } ], "symlink_target": "" }
<!DOCTYPE html> <html lang="en"> <head> <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;"/> <meta charset="utf-8"/> <title> &raquo; \s3c3 </title> <meta name="author" content=""/> <meta name="description" content=""/> <!--[if lt IE 9]> <script src="http://html5shim.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script> <![endif]--> <script src="../js/jquery-1.7.1.min.js" type="text/javascript"></script> <script src="../js/jquery-ui-1.8.2.custom.min.js" type="text/javascript"></script> <script src="../js/jquery.mousewheel.min.js" type="text/javascript"></script> <script src="../js/bootstrap.js" type="text/javascript"></script> <script src="../js/template.js" type="text/javascript"></script> <script src="../js/prettify/prettify.min.js" type="text/javascript"></script> <link href="../css/template.css" rel="stylesheet" media="all"/> <link rel="shortcut icon" href="../img/favicon.ico"/> <link rel="apple-touch-icon" href="../img/apple-touch-icon.png"/> <link rel="apple-touch-icon" sizes="72x72" href="../img/apple-touch-icon-72x72.png"/> <link rel="apple-touch-icon" sizes="114x114" href="../img/apple-touch-icon-114x114.png"/> </head> <body> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </a> <a class="brand" href="../index.html">S3C3 API Documentation</a> <div class="nav-collapse"> <ul class="nav"> <li class="dropdown"> <a href="#api" class="dropdown-toggle" data-toggle="dropdown"> API Documentation <b class="caret"></b> </a> <ul class="dropdown-menu"> <li><a>Namespaces</a></li> <li><a href="../namespaces/s3c3.html">s3c3</a></li> </ul> </li> <li class="dropdown" id="charts-menu"> <a href="#charts" class="dropdown-toggle" data-toggle="dropdown"> Charts <b class="caret"></b> </a> <ul class="dropdown-menu"> <li> <a href="../graph_class.html"> <i class="icon-list-alt"></i>&#160;Class hierarchy diagram </a> </li> </ul> </li> <li class="dropdown" id="reports-menu"> <a href="#reports" class="dropdown-toggle" data-toggle="dropdown"> Reports <b class="caret"></b> </a> <ul class="dropdown-menu"> <li> <a href="../errors.html"> <i class="icon-list-alt"></i>&#160;Errors </a> </li> <li> <a href="../markers.html"> <i class="icon-list-alt"></i>&#160;Markers </a> </li> <li> <a href="../deprecated.html"> <i class="icon-list-alt"></i>&#160;Deprecated </a> </li> </ul> </li> </ul> </div> </div> </div> <div class="go_to_top"> <a href="#___" style="color: inherit">Back to top&#160;&#160;<i class="icon-upload icon-white"></i></a> </div> </div> <div id="___" class="container"> <noscript> <div class="alert alert-warning"> Javascript is disabled; several features are only available if Javascript is enabled. </div> </noscript> <div class="row"> <div class="span4"> <div class="btn-group view pull-right" data-toggle="buttons-radio"> <button class="btn details" title="Show descriptions and method names"> <i class="icon-list"></i></button><button class="btn simple" title="Show only method names"> <i class="icon-align-justify"></i> </button> </div> <ul class="side-nav nav nav-list"> <li class="nav-header"> <i class="icon-map-marker"></i> Packages </li> </ul> </div> <div class="span8 package-contents"> <ul class="breadcrumb"> <li><a href="../index.html"><i class="icon-th"></i></a></li> <li> <span class="divider">\</span><a href="../packages/default.html"></a> </li> <li> <span class="divider">\</span><a href="../packages/s3c3.html">s3c3</a> </li> </ul> <div class="package-indent"> <h3><i class="icon-custom icon-class"></i> Classes, interfaces and traits</h3> <div id="ClassLoader" class="element ajax clickable class"> <h1>ClassLoader<a href="../classes/s3c3.ClassLoader.html">¶</a></h1> <p class="short_description">class \s3c3\ClassLoader This classloader expects namespaces to match directory structures for all sub- namespaces below those it knows. Example: ClassLoader::addNamespace(&#039;s3c3&#039;, S3C3_APP . &#039;/&#039;); $foo = new \s3c3\foobar\util\FooUtil() would look for a file named FooUtil.php in S3C3_APP . &#039;/foobar/util/&#039;</p> <div class="details collapse"></div> <a href="../classes/s3c3.ClassLoader.html" class="more">« More »</a> </div> <div id="Client" class="element ajax clickable class"> <h1>Client<a href="../classes/s3c3.client.Client.html">¶</a></h1> <p class="short_description">class Client</p> <div class="details collapse"></div> <a href="../classes/s3c3.client.Client.html" class="more">« More »</a> </div> <div id="LocalClient" class="element ajax clickable class"> <h1>LocalClient<a href="../classes/s3c3.client.LocalClient.html">¶</a></h1> <p class="short_description">class Client</p> <div class="details collapse"></div> <a href="../classes/s3c3.client.LocalClient.html" class="more">« More »</a> </div> <div id="Config" class="element ajax clickable class"> <h1>Config<a href="../classes/s3c3.conf.Config.html">¶</a></h1> <p class="short_description">class Config</p> <div class="details collapse"></div> <a href="../classes/s3c3.conf.Config.html" class="more">« More »</a> </div> <div id="Cert" class="element ajax clickable class"> <h1>Cert<a href="../classes/s3c3.core.crypto.Cert.html">¶</a></h1> <p class="short_description">class Cert</p> <div class="details collapse"></div> <a href="../classes/s3c3.core.crypto.Cert.html" class="more">« More »</a> </div> <div id="Crypto" class="element ajax clickable class"> <h1>Crypto<a href="../classes/s3c3.core.crypto.Crypto.html">¶</a></h1> <p class="short_description">class Crypto</p> <div class="details collapse"></div> <a href="../classes/s3c3.core.crypto.Crypto.html" class="more">« More »</a> </div> <div id="Database" class="element ajax clickable class"> <h1>Database<a href="../classes/s3c3.core.db.Database.html">¶</a></h1> <p class="short_description">class Database</p> <div class="details collapse"></div> <a href="../classes/s3c3.core.db.Database.html" class="more">« More »</a> </div> <div id="ConfigItem" class="element ajax clickable class"> <h1>ConfigItem<a href="../classes/s3c3.core.model.ConfigItem.html">¶</a></h1> <p class="short_description">class Configuration</p> <div class="details collapse">Model uses &quot;magic&quot; getters/setters, allowing access to the fields directly by calling $object-&gt;field_name, and each model class has the ability to map nicknames or alternate names to the field, so it could map (for instance) the field called first_name to firstName or the field called ckey to key</div> <a href="../classes/s3c3.core.model.ConfigItem.html" class="more">« More »</a> </div> <div id="Context" class="element ajax clickable class"> <h1>Context<a href="../classes/s3c3.core.model.Context.html">¶</a></h1> <p class="short_description">class Context</p> <div class="details collapse">Model uses &quot;magic&quot; getters/setters, allowing access to the fields directly by calling $object-&gt;field_name, and each model class has the ability to map nicknames or alternate names to the field, so it could map (for instance) the field called first_name to firstName or the field called ckey to key</div> <a href="../classes/s3c3.core.model.Context.html" class="more">« More »</a> </div> <div id="Model" class="element ajax clickable class"> <h1>Model<a href="../classes/s3c3.core.Model.html">¶</a></h1> <p class="short_description">class Model Model classes map to a table in the database, with object instances mapping to a row in that table.</p> <div class="details collapse">Model uses &quot;magic&quot; getters/setters, allowing access to the fields directly by calling $object-&gt;field_name, and each model class has the ability to map nicknames or alternate names to the field, so it could map (for instance) the field called first_name to firstName or the field called ckey to key</div> <a href="../classes/s3c3.core.Model.html" class="more">« More »</a> </div> <div id="Token" class="element ajax clickable class"> <h1>Token<a href="../classes/s3c3.core.Token.html">¶</a></h1> <p class="short_description">class Token</p> <div class="details collapse"></div> <a href="../classes/s3c3.core.Token.html" class="more">« More »</a> </div> <div id="ErrorHandler" class="element ajax clickable class"> <h1>ErrorHandler<a href="../classes/s3c3.ErrorHandler.html">¶</a></h1> <p class="short_description">class ErrorHandler</p> <div class="details collapse"></div> <a href="../classes/s3c3.ErrorHandler.html" class="more">« More »</a> </div> <div id="ApplicationException" class="element ajax clickable class"> <h1>ApplicationException<a href="../classes/s3c3.except.ApplicationException.html">¶</a></h1> <p class="short_description">class ApplicationException</p> <div class="details collapse"></div> <a href="../classes/s3c3.except.ApplicationException.html" class="more">« More »</a> </div> <div id="ClassNotFoundException" class="element ajax clickable class"> <h1>ClassNotFoundException<a href="../classes/s3c3.except.ClassNotFoundException.html">¶</a></h1> <p class="short_description">class ClassNotFoundException</p> <div class="details collapse"></div> <a href="../classes/s3c3.except.ClassNotFoundException.html" class="more">« More »</a> </div> <div id="ConfigurationException" class="element ajax clickable class"> <h1>ConfigurationException<a href="../classes/s3c3.except.ConfigurationException.html">¶</a></h1> <p class="short_description">class ConfigurationException</p> <div class="details collapse"></div> <a href="../classes/s3c3.except.ConfigurationException.html" class="more">« More »</a> </div> <div id="DatabaseException" class="element ajax clickable class"> <h1>DatabaseException<a href="../classes/s3c3.except.DatabaseException.html">¶</a></h1> <p class="short_description">class DatabaseException</p> <div class="details collapse"></div> <a href="../classes/s3c3.except.DatabaseException.html" class="more">« More »</a> </div> <div id="ErrorException" class="element ajax clickable class"> <h1>ErrorException<a href="../classes/s3c3.except.ErrorException.html">¶</a></h1> <p class="short_description">class ErrorException</p> <div class="details collapse"></div> <a href="../classes/s3c3.except.ErrorException.html" class="more">« More »</a> </div> <div id="InvalidArgumentException" class="element ajax clickable class"> <h1>InvalidArgumentException<a href="../classes/s3c3.except.InvalidArgumentException.html">¶</a></h1> <p class="short_description">class InvalidArgumentException</p> <div class="details collapse"></div> <a href="../classes/s3c3.except.InvalidArgumentException.html" class="more">« More »</a> </div> <div id="InvalidCertificateException" class="element ajax clickable class"> <h1>InvalidCertificateException<a href="../classes/s3c3.except.InvalidCertificateException.html">¶</a></h1> <p class="short_description">class InvalidCertificateException</p> <div class="details collapse"></div> <a href="../classes/s3c3.except.InvalidCertificateException.html" class="more">« More »</a> </div> <div id="InvalidUsageException" class="element ajax clickable class"> <h1>InvalidUsageException<a href="../classes/s3c3.except.InvalidUsageException.html">¶</a></h1> <p class="short_description">class InvalidUsageException</p> <div class="details collapse"></div> <a href="../classes/s3c3.except.InvalidUsageException.html" class="more">« More »</a> </div> <div id="ObjectNotFoundException" class="element ajax clickable class"> <h1>ObjectNotFoundException<a href="../classes/s3c3.except.ObjectNotFoundException.html">¶</a></h1> <p class="short_description">class ObjectNotFoundException</p> <div class="details collapse"></div> <a href="../classes/s3c3.except.ObjectNotFoundException.html" class="more">« More »</a> </div> <div id="PropertyNotFoundException" class="element ajax clickable class"> <h1>PropertyNotFoundException<a href="../classes/s3c3.except.PropertyNotFoundException.html">¶</a></h1> <p class="short_description">class PropertyNotFoundException</p> <div class="details collapse"></div> <a href="../classes/s3c3.except.PropertyNotFoundException.html" class="more">« More »</a> </div> <div id="RuntimeException" class="element ajax clickable class"> <h1>RuntimeException<a href="../classes/s3c3.except.RuntimeException.html">¶</a></h1> <p class="short_description">class RuntimeException</p> <div class="details collapse"></div> <a href="../classes/s3c3.except.RuntimeException.html" class="more">« More »</a> </div> <div id="SchemeNameException" class="element ajax clickable class"> <h1>SchemeNameException<a href="../classes/s3c3.except.SchemeNameException.html">¶</a></h1> <p class="short_description">class SchemeNameException</p> <div class="details collapse"></div> <a href="../classes/s3c3.except.SchemeNameException.html" class="more">« More »</a> </div> <div id="SecurityViolationException" class="element ajax clickable class"> <h1>SecurityViolationException<a href="../classes/s3c3.except.SecurityViolationException.html">¶</a></h1> <p class="short_description">class SecurityViolationException</p> <div class="details collapse"></div> <a href="../classes/s3c3.except.SecurityViolationException.html" class="more">« More »</a> </div> <div id="Listener" class="element ajax clickable class"> <h1>Listener<a href="../classes/s3c3.listener.Listener.html">¶</a></h1> <p class="short_description">class Listener</p> <div class="details collapse"></div> <a href="../classes/s3c3.listener.Listener.html" class="more">« More »</a> </div> <div id="LocalListener" class="element ajax clickable class"> <h1>LocalListener<a href="../classes/s3c3.listener.LocalListener.html">¶</a></h1> <p class="short_description">class LocalListener</p> <div class="details collapse"></div> <a href="../classes/s3c3.listener.LocalListener.html" class="more">« More »</a> </div> <div id="LoggerManager" class="element ajax clickable class"> <h1>LoggerManager<a href="../classes/s3c3.LoggerManager.html">¶</a></h1> <p class="short_description">class \s3c3\LoggerManager</p> <div class="details collapse"></div> <a href="../classes/s3c3.LoggerManager.html" class="more">« More »</a> </div> <div id="LogFileHandler" class="element ajax clickable class"> <h1>LogFileHandler<a href="../classes/s3c3.util.logger.LogFileHandler.html">¶</a></h1> <p class="short_description">class LogFileHandler</p> <div class="details collapse"></div> <a href="../classes/s3c3.util.logger.LogFileHandler.html" class="more">« More »</a> </div> <div id="LogMailHandler" class="element ajax clickable class"> <h1>LogMailHandler<a href="../classes/s3c3.util.logger.LogMailHandler.html">¶</a></h1> <p class="short_description">class LogMailHandler</p> <div class="details collapse"></div> <a href="../classes/s3c3.util.logger.LogMailHandler.html" class="more">« More »</a> </div> <div id="LogMailSmsHandler" class="element ajax clickable class"> <h1>LogMailSmsHandler<a href="../classes/s3c3.util.logger.LogMailSmsHandler.html">¶</a></h1> <p class="short_description">class LogMailSmsHandler</p> <div class="details collapse"></div> <a href="../classes/s3c3.util.logger.LogMailSmsHandler.html" class="more">« More »</a> </div> <div id="Bootstrap" class="element ajax clickable class"> <h1>Bootstrap<a href="../classes/s3c3.bootstrap.Bootstrap.html">¶</a></h1> <p class="short_description">Bootstrap class handles installation/maintenance assistance</p> <div class="details collapse"></div> <a href="../classes/s3c3.bootstrap.Bootstrap.html" class="more">« More »</a> </div> <div id="CertHandler" class="element ajax clickable class"> <h1>CertHandler<a href="../classes/s3c3.bootstrap.CertHandler.html">¶</a></h1> <p class="short_description">class CertHandler</p> <div class="details collapse"></div> <a href="../classes/s3c3.bootstrap.CertHandler.html" class="more">« More »</a> </div> <div id="ClientShim" class="element ajax clickable class"> <h1>ClientShim<a href="../classes/s3c3.example.ClientShim.html">¶</a></h1> <p class="short_description">class ClientShim</p> <div class="details collapse"></div> <a href="../classes/s3c3.example.ClientShim.html" class="more">« More »</a> </div> <div id="ListenerShim" class="element ajax clickable class"> <h1>ListenerShim<a href="../classes/s3c3.example.ListenerShim.html">¶</a></h1> <p class="short_description">class ListenerShim</p> <div class="details collapse"></div> <a href="../classes/s3c3.example.ListenerShim.html" class="more">« More »</a> </div> </div> </div> </div> </div> <footer class="span12"> Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br/> Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor </a> and<br/> generated on Fri, 02 Aug 2013 00:42:15 +0000.<br/> </footer> </body> </html>
{ "content_hash": "c51ecd7c9d28af4a9a41430d95391b09", "timestamp": "", "source": "github", "line_count": 418, "max_line_length": 133, "avg_line_length": 52.89234449760765, "alnum_prop": 0.5442579944818852, "repo_name": "evardsson/s3c3", "id": "d22d9abd9fc4c14a9d0cfe0414f04326d9d4b364", "size": "22214", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "docs/phpdoc/packages/s3c3.html", "mode": "33188", "license": "mit", "language": [], "symlink_target": "" }
#ifndef TEXTPROPERTIESMANAGER_H #define TEXTPROPERTIESMANAGER_H #include "pandabase.h" #include "config_text.h" #include "textProperties.h" #include "textGraphic.h" /** * This defines all of the TextProperties structures that might be referenced * by name from an embedded text string. * * A text string, as rendered by a TextNode, can contain embedded references * to one of the TextProperties defined here, by enclosing the name between \1 * (ASCII 0x01) characters; this causes a "push" to the named state. All text * following the closing \1 character will then be rendered in the new state. * The next \2 (ASCII 0x02) character will then restore the previous state for * subsequent text. * * For instance, "x\1up\1n\2 + y" indicates that the character "x" will be * rendered in the normal state, the character "n" will be rendered in the * "up" state, and then " + y" will be rendered in the normal state again. * * This can also be used to define arbitrary models that can serve as embedded * graphic images in a text paragraph. This works similarly; the convention * is to create a TextGraphic that describes the graphic image, and then * associate it here via the set_graphic() call. Then "\5name\5" will embed * the named graphic. */ class EXPCL_PANDA_TEXT TextPropertiesManager { protected: TextPropertiesManager(); ~TextPropertiesManager(); PUBLISHED: void set_properties(const string &name, const TextProperties &properties); TextProperties get_properties(const string &name); bool has_properties(const string &name) const; void clear_properties(const string &name); void set_graphic(const string &name, const TextGraphic &graphic); void set_graphic(const string &name, const NodePath &model); TextGraphic get_graphic(const string &name); bool has_graphic(const string &name) const; void clear_graphic(const string &name); void write(ostream &out, int indent_level = 0) const; static TextPropertiesManager *get_global_ptr(); public: const TextProperties *get_properties_ptr(const string &name); const TextGraphic *get_graphic_ptr(const string &name); private: typedef pmap<string, TextProperties> Properties; Properties _properties; typedef pmap<string, TextGraphic> Graphics; Graphics _graphics; static TextPropertiesManager *_global_ptr; }; #include "textPropertiesManager.I" #endif
{ "content_hash": "947e9360ab6e232e30ec47c7c936920b", "timestamp": "", "source": "github", "line_count": 70, "max_line_length": 78, "avg_line_length": 33.92857142857143, "alnum_prop": 0.7511578947368421, "repo_name": "grimfang/panda3d", "id": "2c4f6b3c84c288d26c87f022c1600ad2028c23a6", "size": "2736", "binary": false, "copies": "5", "ref": "refs/heads/master", "path": "panda/src/text/textPropertiesManager.h", "mode": "33188", "license": "bsd-3-clause", "language": [ { "name": "Batchfile", "bytes": "4004" }, { "name": "C", "bytes": "5295145" }, { "name": "C++", "bytes": "27079782" }, { "name": "Emacs Lisp", "bytes": "229264" }, { "name": "HTML", "bytes": "8081" }, { "name": "Java", "bytes": "3113" }, { "name": "JavaScript", "bytes": "7003" }, { "name": "Logos", "bytes": "5504" }, { "name": "MAXScript", "bytes": "1745" }, { "name": "NSIS", "bytes": "61448" }, { "name": "Nemerle", "bytes": "3001" }, { "name": "Objective-C", "bytes": "28865" }, { "name": "Objective-C++", "bytes": "257551" }, { "name": "Perl", "bytes": "206982" }, { "name": "Perl 6", "bytes": "27055" }, { "name": "Puppet", "bytes": "2627" }, { "name": "Python", "bytes": "5563011" }, { "name": "R", "bytes": "421" }, { "name": "Roff", "bytes": "3432" }, { "name": "Shell", "bytes": "55940" }, { "name": "Visual Basic", "bytes": "136" } ], "symlink_target": "" }
import {aria} from '../../../../src/compile/mark/encode'; import {parseUnitModelWithScaleAndLayoutSize} from '../../../util'; describe('compile/mark/encoding/aria', () => { it('aria should be added to bar mark', () => { const model = parseUnitModelWithScaleAndLayoutSize({ mark: 'bar', encoding: { x: { field: 'category', type: 'ordinal' }, y: { field: 'value', type: 'quantitative' } }, data: {values: []} }); const ariaMixins = aria(model); expect(ariaMixins).toEqual({ description: { signal: '"category: " + (isValid(datum["category"]) ? datum["category"] : ""+datum["category"]) + "; value: " + (format(datum["value"], ""))' }, ariaRoleDescription: { value: 'bar' } }); }); it('aria set to false should hide everything', () => { const model = parseUnitModelWithScaleAndLayoutSize({ mark: { type: 'bar', aria: false, description: 'this will not show' }, encoding: { x: { field: 'category', type: 'ordinal' }, y: { field: 'value', type: 'quantitative' } }, data: {values: []} }); const ariaMixins = aria(model); expect(ariaMixins).toEqual({}); // we set aria: false in getMarkGroups }); it('should not generate default description when aria is to false in config', () => { const model = parseUnitModelWithScaleAndLayoutSize({ mark: 'bar', encoding: { x: { field: 'category', type: 'ordinal' } }, data: {values: []}, config: { aria: false } }); const ariaMixins = aria(model); expect(ariaMixins).toEqual({}); }); it('should support setting a description even if aria is set to false in config', () => { const model = parseUnitModelWithScaleAndLayoutSize({ mark: { type: 'bar', description: 'An awesome mark' }, encoding: { x: { field: 'category', type: 'ordinal' } }, data: {values: []}, config: { aria: false } }); const ariaMixins = aria(model); expect(ariaMixins).toEqual({ description: { value: 'An awesome mark' } }); }); it('should support custom ariaRoleDescription', () => { const model = parseUnitModelWithScaleAndLayoutSize({ mark: { type: 'bar', ariaRoleDescription: 'mark' }, encoding: { x: { field: 'category', type: 'ordinal' } }, data: {values: []} }); const ariaMixins = aria(model); expect(ariaMixins).toEqual({ ariaRoleDescription: { value: 'mark' }, description: { signal: '"category: " + (isValid(datum["category"]) ? datum["category"] : ""+datum["category"])' } }); }); });
{ "content_hash": "4f46beefc25dc5fa53048977f454ddb8", "timestamp": "", "source": "github", "line_count": 132, "max_line_length": 143, "avg_line_length": 22.87121212121212, "alnum_prop": 0.5014905597880093, "repo_name": "uwdata/vega-lite", "id": "a26aaa3c3a9f9685afdae02c1ab611381af283ef", "size": "3019", "binary": false, "copies": "2", "ref": "refs/heads/master", "path": "test/compile/mark/encoding/aria.test.ts", "mode": "33188", "license": "bsd-3-clause", "language": [ { "name": "CSS", "bytes": "12950" }, { "name": "HTML", "bytes": "8339" }, { "name": "JavaScript", "bytes": "1545" }, { "name": "Ruby", "bytes": "186" }, { "name": "Shell", "bytes": "4821" }, { "name": "TypeScript", "bytes": "258829" } ], "symlink_target": "" }
void impl_fp_bits(char *buf, size_t bufsize, enum type_primitive, floating_t); #endif
{ "content_hash": "7cdf23a131b95aff1ec4933164739881", "timestamp": "", "source": "github", "line_count": 3, "max_line_length": 78, "avg_line_length": 29, "alnum_prop": 0.735632183908046, "repo_name": "bobrippling/ucc-c-compiler", "id": "d13d3197d4eafda822bdf1857418f40b37be0d40", "size": "124", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "src/cc1/out/impl_fp.h", "mode": "33188", "license": "mit", "language": [ { "name": "Assembly", "bytes": "3172" }, { "name": "C", "bytes": "1993174" }, { "name": "Makefile", "bytes": "10681" }, { "name": "Perl", "bytes": "28974" }, { "name": "Raku", "bytes": "732" }, { "name": "Shell", "bytes": "6678" } ], "symlink_target": "" }
using System.ComponentModel; namespace LinqAn.Google.Metrics { /// <summary> /// The name of the requested custom metric, where 18 refers the number/index of the custom metric. Note that the data type of ga:metric18 can be INTEGER, CURRENCY or TIME. /// </summary> [Description("The name of the requested custom metric, where 18 refers the number/index of the custom metric. Note that the data type of ga:metric18 can be INTEGER, CURRENCY or TIME.")] public class Metric18: Metric<float> { /// <summary> /// Instantiates a <seealso cref="Metric18" />. /// </summary> public Metric18(): base("Custom Metric 18 Value",true,"ga:metric18") { } } }
{ "content_hash": "d5f09bdf80eff9233e83e0ed32473587", "timestamp": "", "source": "github", "line_count": 20, "max_line_length": 186, "avg_line_length": 33.55, "alnum_prop": 0.7049180327868853, "repo_name": "kenshinthebattosai/LinqAn.Google", "id": "563be60a19d229740419f3e36ab0fe27880bbb8b", "size": "671", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "src/LinqAn.Google/Metrics/Metric18.cs", "mode": "33188", "license": "mit", "language": [ { "name": "C#", "bytes": "1120052" } ], "symlink_target": "" }
title: Как начать разрабатывать в Windows subtitle: Подготовка окружения для современной разработки. description: Базовая настройка MS Windows, приближающая систему по возможностям к другим ОС в контексте разработки. image: "assets/images/development-on-windows/choco.png" author: Кирилл Мокевнин --- **В руководстве приводится пример базовой настройки Windows, приближающей её по возможностям к другим операционным системам.** Среда Windows не очень хорошо подходит для разработки, если вы не пишете под .net. Выражается это во многих аспектах: система не [POSIX](https://ru.wikipedia.org/wiki/POSIX)-совместимая (а большинство библиотек пишется именно для таких систем, например linux или mac), в Windows нет примитивных средств, которые необходимы любому разработчику для комфортной работы. {% include banner.html name="intensive-devops" %} Несмотря на все написанное ниже, наша основная рекомендация — ставить Linux-дистрибутив, например, Ubuntu и полностью погружаться в него. Подавляющее большинство веб-проектов работает под управлением Linux-систем. А постоянное использование такой системы на домашнем и рабочем компьютере равносильно погружению в языковую среду при изучении иностранных языков. ## Командная строка Первое, к чему сразу нужно привыкать — командная строка. Работа на удаленных серверах, git, пакетные менеджеры и многое другое, всё это делается, в первую очередь, в командной строке. Хотя такой способ и непривычен для обычного пользователя, он имеет множество преимуществ перед использованием мыши. К ним относятся: * Скорость работы значительно возрастает и намного опережает оконные интерфейсы * Легкая возможность автоматизации действий за счет скриптования. Другими словами, любые команды можно записать в файл и использовать его. Никаких специальных средств не требуется * Гораздо более хорошее понимание происходящих процессов * На серверах оконного интерфейса не бывает в принципе, так что тут без вариантов Если вы пользуетесь IDE, то, скорее всего, знаете, что они интегрируют внутри себя множество инструментов. И хотя местами такая интеграция удобна (не для всех), не стоит ей злоупотреблять в самом начале пути. Гораздо лучше научиться пользоваться чистыми инструментами для лучшего понимания происходящего. К тому же, вы не будете зависеть от среды и всегда будете ориентироваться на местности. Под термином "командная строка" скрывается сразу несколько тесно связанных, но все же независимых инструментов: терминал и командная оболочка. **Командная оболочка** (shell, командный интерпретатор) — программа, позволяющая с помощью текстовых команд выполнять функции операционной системы и управлять другими программами. Например с помощью _shell_ можно перемещаться по файловой системе и выполнять операции по созданию и удалению файлов. Сам по себе _shell_ представляет из себя REPL (Read Eval Print Loop). Другими словами после запуска оболочки, появляется строка ввода в которую вводятся команды. После того как команда отработает, _shell_ снова входит в режим ожидания ввода команд. Кстати у многих языков программирования есть свой собственный REPL, позволяющий в таком же стиле запускать код. В Windows по умолчанию используется `command.com`, а в Linux — Bash. Кроме них существует множество других оболочек, но Bash — стандарт де-факто, и его нужно знать. Чтобы запустить _shell_ нужна еще одна программа — **терминал** (term, Terminal Emulator). Терминал — это и есть то самое окно, внутри которого запускается оболочка. Этот термин изначально использовался для отдельно стоящих монитора и клавиатуры, посредством которых можно было подключиться к мейнфрейму (большим многопользовательским компьютерам древности). Терминалы популярны и сейчас: те же банкоматы и устройства для пополнения денег на счетах всевозможных сервисов. Поэтому тот терминал, который представлен программой на наших компьютерах, называют эмулятором, ведь у него нет железной части. Терминалов, как и оболочек существует множество. Разница заключается в том, какие возможности для удобной работы они предоставляют. Например, очень важно чтобы терминал поддерживал вкладки. Тогда очень сильно упрощается работа с большим количеством терминалов. Стандартный эмулятор в Windows не умеет работать ни с вкладками, ни с чем либо ещё. По сути, все что он делает — запускает `cmd.exe` и больше никак не участвует в процессе. А вот что могут хорошие терминалы: * Вкладки * Split Panes — разделение рабочей области на части * Поиск * Профили и многое другое. В Windows часто бывает так, что терминал одновременно поставляется с командной оболочкой. ## Основная (общая) конфигурация ### Chocolatey Пакетные менеджеры в средах, отличных от Windows — это основной способ установки программ и библиотек на компьютер. Если вам понадобится поставить Node.js, то достаточно сделать следующее: ``` // mac $ brew install node // ubuntu $ apt install node ``` Удобств в таком способе довольно много. Во-первых, не нужно бродить в поисках необходимого софта по всему интернету и тратить уйму времени. Во-вторых, всё, что можно набрать в командной строке автоматизируется. Другими словами, можно написать скрипт, который сам будет ставить всё, что нужно (подробнее смотрите [Ansible](https://www.ansible.com/)). Для Windows существует несколько пакетных менеджеров, но именно [Chocolatey](https://chocolatey.org/) стал стандартом де-факто. Установка _choco_ стоит из нескольких простых шагов, которые хорошо описаны в [соответствующем разделе](https://chocolatey.org/install). В чем-то Chocolaty справляется даже лучше, чем brew или apt. С его помощью можно ставить не только специализированный софт (например, для программистов), но и любые программы вообще. ```sh $ choco install GoogleChrome ``` или, что тоже самое ```sh $ cinst GoogleChrome ``` Список того, что можно поставить находится [здесь](https://chocolatey.org/packages). В тексте ниже подразумевается, что вы установили Chocolatey и знаете как им пользоваться. ### Терминалы #### Cmder (базируется на ConEmu) Эмулятор, поставляющийся вместе с командной оболочкой [Git Bash](https://git-for-windows.github.io/). Его установка решает сразу две задачи. С одной стороны вы получаете продвинутый терминал, с другой, из коробки, эмулятор Bash (настоящий bash получить нельзя, он работает только в *NIX системах). Запустите программу `cmd.exe` и выполните там следующую команду: ```sh $ choco install cmder ``` После установки Cmder всё остальное следует делать только из под него. #### MobaXterm Альтернативный эмулятор, доступный по ссылке: [MobaXterm](https://mobaxterm.mobatek.net/). Также как и Cmder, из коробки поставляется с командной оболочкой. Бесплатен для домашнего использования. ```sh $ choco install mobaxterm ``` #### Hyper.js Рассмотрен здесь для полноты картины. В отличие от предыдущих предоставляет только терминал. По умолчанию запускает внутри себя `cmd.exe`, но можно настроить на любую оболочку. ```sh $ choco install hyper ``` ## Ubuntu for Windows Ремарка для владельцев последних версий Windows. Microsoft интегрировала Ubuntu внутрь Windows. Особенности установки и включения этой интеграции зависят от конкретной версии Windows, но в целом это сводится к нажатию нескольких кнопок. Подробности можно найти в нашей [инструкции по установке Ubuntu Linux внутри Windows](https://guides.hexlet.io/ubuntu-linux-in-windows/). ## Vagrant [Vagrant](https://www.vagrantup.com/) — программа, созданная для разворачивания окружения разработчика, работающая во всех основных операционных системах. Она работает совместно с одной из [систем виртуализации](https://ru.wikipedia.org/wiki/Виртуализация) (например [VirtualBox](https://www.virtualbox.org/)). Главное преимущество перед другими способами работы в Windows в том, что это не эмуляция, а полноценная виртуальная машина с Linux на борту. Вагрант, в отличие от прямого использования виртуальной машины, дает множество полезностей для разработчика. Подробнее про преимущества и процесс установки читайте в [отдельном руководстве](/vagrant/). ```sh choco install virtualBox choco install vagrant ``` ## Babun (Cygwin) Cygwin — программное обеспечение, эмулирующее среду Linux на Windows. С его помощью можно запускать программы, написанные под Linux. Конечно, у этого способа множество ограничений, но все же он лучше, чем ничего. С Cygwin работать напрямую не очень удобно, поэтому был создан Babun. Это командная оболочка, построенная на Cygwin. В отличие от других вариантов, Babun поставляется с собственной экосистемой. Например, он включает в себя пакетный менеджер _pact_, что приводит к конфликту с Chocolatey. ```sh $ choco install babun ``` --- *Кирилл Мокевнин*
{ "content_hash": "2143f36edea54d4f1bbaa8713f59c28a", "timestamp": "", "source": "github", "line_count": 139, "max_line_length": 658, "avg_line_length": 62.25179856115108, "alnum_prop": 0.8041141800531607, "repo_name": "hexletguides/hexletguides.github.io", "id": "b861e613c6cd5e116cf6cacc41a225a4a97825da", "size": "14512", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "_posts/2017-10-25-development-on-windows.md", "mode": "33188", "license": "mit", "language": [ { "name": "HTML", "bytes": "5684" } ], "symlink_target": "" }
ACCEPTED #### According to International Plant Names Index #### Published in null #### Original name Leda subcordata C.B.Clarke ### Remarks null
{ "content_hash": "4b83b8586037449fe6797cba57a63bf9", "timestamp": "", "source": "github", "line_count": 13, "max_line_length": 31, "avg_line_length": 11.384615384615385, "alnum_prop": 0.722972972972973, "repo_name": "mdoering/backbone", "id": "78c11e0ecaf0e4173941bf1f37c4e9b232ba04f8", "size": "214", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "life/Plantae/Magnoliophyta/Magnoliopsida/Lamiales/Acanthaceae/Isoglossa/Isoglossa subcordata/README.md", "mode": "33188", "license": "apache-2.0", "language": [], "symlink_target": "" }
/** * Tests sit right alongside the file they are testing, which is more intuitive * and portable than separating `src` and `test` directories. Additionally, the * build process will exclude all `.spec.js` files from the build * automatically. */ describe( 'home section', function() { beforeEach( module( 'meanShop.home' ) ); it( 'should have a dummy test', inject( function() { expect( true ).toBeTruthy(); })); });
{ "content_hash": "90900bca5e72b4328eba8bec0b0dc321", "timestamp": "", "source": "github", "line_count": 14, "max_line_length": 79, "avg_line_length": 31.071428571428573, "alnum_prop": 0.6827586206896552, "repo_name": "aeife/meanshop", "id": "6b7caad0a78644aaaed8a769680be41f55801e34", "size": "435", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "client/src/app/home/home.spec.js", "mode": "33188", "license": "mit", "language": [ { "name": "CSS", "bytes": "2774" }, { "name": "JavaScript", "bytes": "69108" } ], "symlink_target": "" }
package com.sprintstack.util; import java.io.IOException; import java.io.StringReader; import org.json.simple.JSONArray; import org.json.simple.JSONObject; import org.json.simple.parser.JSONParser; import org.json.simple.parser.ParseException; public class JSON { public static JSONObject decode(String input) { JSONParser parser = new JSONParser(); try { try { StringReader reader = new StringReader(input); Object obj = parser.parse(reader); return (JSONObject)obj; } catch (IOException e) { System.out.println(e); return null; } } catch (ParseException e) { System.out.println(e); return null; } } }
{ "content_hash": "7010d4dd17db6e386e24f870b3d68ce0", "timestamp": "", "source": "github", "line_count": 25, "max_line_length": 75, "avg_line_length": 28.52, "alnum_prop": 0.6535764375876578, "repo_name": "m0wfo/rhinode", "id": "143f81d41984daa73860db373f777a9a3c23c281", "size": "713", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "src/com/sprintstack/util/JSON.java", "mode": "33188", "license": "mit", "language": [ { "name": "Java", "bytes": "14727" }, { "name": "JavaScript", "bytes": "62230" }, { "name": "Shell", "bytes": "422" } ], "symlink_target": "" }
<?xml version="1.0" encoding="iso-8859-1"?> <!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="en" lang="en"> <head> <title>File: graph_map_render.rb</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <meta http-equiv="Content-Script-Type" content="text/javascript" /> <link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" /> <script type="text/javascript"> // <![CDATA[ function popupCode( url ) { window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400") } function toggleCode( id ) { if ( document.getElementById ) elem = document.getElementById( id ); else if ( document.all ) elem = eval( "document.all." + id ); else return false; elemStyle = elem.style; if ( elemStyle.display != "block" ) { elemStyle.display = "block" } else { elemStyle.display = "none" } return true; } // Make codeblocks hidden by default document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" ) // ]]> </script> </head> <body> <div id="fileHeader"> <h1>graph_map_render.rb</h1> <table class="header-table"> <tr class="top-aligned-row"> <td><strong>Path:</strong></td> <td>lib/graph_map_render.rb </td> </tr> <tr class="top-aligned-row"> <td><strong>Last Update:</strong></td> <td>Thu Aug 20 10:16:41 -0300 2009</td> </tr> </table> </div> <!-- banner header --> <div id="bodyContent"> <div id="contextContent"> <div id="description"> <p> Renders the map as SVG or bitmap based on the map options passed </p> </div> </div> </div> <!-- if includes --> <div id="section"> <!-- if method_list --> </div> <div id="validator-badges"> <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p> </div> </body> </html>
{ "content_hash": "b159cb78fda6a22429216d96664efe81", "timestamp": "", "source": "github", "line_count": 107, "max_line_length": 102, "avg_line_length": 19.990654205607477, "alnum_prop": 0.5904628330995793, "repo_name": "caiosba/rails-graph-map", "id": "bb64b619f9130d14e8bac3d3f48d897d667865c0", "size": "2139", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "rdoc/files/lib/graph_map_render_rb.html", "mode": "33188", "license": "mit", "language": [ { "name": "JavaScript", "bytes": "19406" }, { "name": "Ruby", "bytes": "28763" } ], "symlink_target": "" }
<?xml version="1.0" encoding="UTF-8"?> <project version="4"> <component name="ProjectModuleManager"> <modules> <module fileurl="file://$PROJECT_DIR$/HealthXuhui.iml" filepath="$PROJECT_DIR$/HealthXuhui.iml" /> <module fileurl="file://$PROJECT_DIR$/HealthXuhui.iml" filepath="$PROJECT_DIR$/HealthXuhui.iml" /> <module fileurl="file://$PROJECT_DIR$/app/app.iml" filepath="$PROJECT_DIR$/app/app.iml" /> <module fileurl="file://$PROJECT_DIR$/app/app.iml" filepath="$PROJECT_DIR$/app/app.iml" /> </modules> </component> </project>
{ "content_hash": "bc39b654f294d82d4eba63b3c88e79c5", "timestamp": "", "source": "github", "line_count": 11, "max_line_length": 104, "avg_line_length": 51, "alnum_prop": 0.6666666666666666, "repo_name": "vlzl/HealthXuhui", "id": "b32d9575c5653989d2f504f9518e0c36b03cb83d", "size": "561", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": ".idea/modules.xml", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "CSS", "bytes": "23841" }, { "name": "HTML", "bytes": "685" }, { "name": "Java", "bytes": "157179" }, { "name": "JavaScript", "bytes": "2561" } ], "symlink_target": "" }
package org.apache.ignite.internal.processors.cache.distributed.dht.preloader; import java.util.ArrayList; import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.HashSet; import java.util.Iterator; import java.util.List; import java.util.Map; import java.util.UUID; import java.util.concurrent.ConcurrentLinkedQueue; import java.util.concurrent.CountDownLatch; import java.util.concurrent.TimeUnit; import java.util.concurrent.atomic.AtomicBoolean; import java.util.concurrent.atomic.AtomicReference; import java.util.concurrent.locks.ReadWriteLock; import org.apache.ignite.IgniteCheckedException; import org.apache.ignite.IgniteLogger; import org.apache.ignite.IgniteSystemProperties; import org.apache.ignite.cache.affinity.AffinityCentralizedFunction; import org.apache.ignite.cache.affinity.AffinityFunction; import org.apache.ignite.cluster.ClusterNode; import org.apache.ignite.events.CacheEvent; import org.apache.ignite.events.DiscoveryEvent; import org.apache.ignite.events.Event; import org.apache.ignite.events.EventType; import org.apache.ignite.internal.IgniteFutureTimeoutCheckedException; import org.apache.ignite.internal.IgniteInternalFuture; import org.apache.ignite.internal.IgniteInterruptedCheckedException; import org.apache.ignite.internal.cluster.ClusterTopologyCheckedException; import org.apache.ignite.internal.managers.discovery.GridDiscoveryTopologySnapshot; import org.apache.ignite.internal.processors.affinity.AffinityTopologyVersion; import org.apache.ignite.internal.processors.cache.DynamicCacheChangeRequest; import org.apache.ignite.internal.processors.cache.GridCacheContext; import org.apache.ignite.internal.processors.cache.GridCacheMvccCandidate; import org.apache.ignite.internal.processors.cache.GridCacheSharedContext; import org.apache.ignite.internal.processors.cache.distributed.dht.GridClientPartitionTopology; import org.apache.ignite.internal.processors.cache.distributed.dht.GridDhtAssignmentFetchFuture; import org.apache.ignite.internal.processors.cache.distributed.dht.GridDhtPartitionTopology; import org.apache.ignite.internal.processors.cache.distributed.dht.GridDhtTopologyFuture; import org.apache.ignite.internal.processors.cache.transactions.IgniteTxKey; import org.apache.ignite.internal.processors.cache.version.GridCacheVersion; import org.apache.ignite.internal.processors.timeout.GridTimeoutObject; import org.apache.ignite.internal.processors.timeout.GridTimeoutObjectAdapter; import org.apache.ignite.internal.util.GridConcurrentHashSet; import org.apache.ignite.internal.util.future.GridFutureAdapter; import org.apache.ignite.internal.util.tostring.GridToStringExclude; import org.apache.ignite.internal.util.tostring.GridToStringInclude; import org.apache.ignite.internal.util.typedef.CI1; import org.apache.ignite.internal.util.typedef.F; import org.apache.ignite.internal.util.typedef.X; import org.apache.ignite.internal.util.typedef.internal.CU; import org.apache.ignite.internal.util.typedef.internal.LT; import org.apache.ignite.internal.util.typedef.internal.S; import org.apache.ignite.internal.util.typedef.internal.U; import org.apache.ignite.lang.IgnitePredicate; import org.jetbrains.annotations.Nullable; import org.jsr166.ConcurrentHashMap8; import static org.apache.ignite.events.EventType.EVT_NODE_FAILED; import static org.apache.ignite.events.EventType.EVT_NODE_JOINED; import static org.apache.ignite.events.EventType.EVT_NODE_LEFT; import static org.apache.ignite.internal.events.DiscoveryCustomEvent.EVT_DISCOVERY_CUSTOM_EVT; import static org.apache.ignite.internal.managers.communication.GridIoPolicy.SYSTEM_POOL; /** * Future for exchanging partition maps. */ public class GridDhtPartitionsExchangeFuture extends GridFutureAdapter<AffinityTopologyVersion> implements Comparable<GridDhtPartitionsExchangeFuture>, GridDhtTopologyFuture { /** */ private static final int DUMP_PENDING_OBJECTS_THRESHOLD = IgniteSystemProperties.getInteger(IgniteSystemProperties.IGNITE_DUMP_PENDING_OBJECTS_THRESHOLD, 10); /** */ private static final long serialVersionUID = 0L; /** Dummy flag. */ private final boolean dummy; /** Force preload flag. */ private final boolean forcePreload; /** Dummy reassign flag. */ private final boolean reassign; /** Discovery event. */ private volatile DiscoveryEvent discoEvt; /** */ @GridToStringInclude private final Collection<UUID> rcvdIds = new GridConcurrentHashSet<>(); /** Remote nodes. */ private volatile Collection<ClusterNode> rmtNodes; /** Remote nodes. */ @GridToStringInclude private volatile Collection<UUID> rmtIds; /** Oldest node. */ @GridToStringExclude private final AtomicReference<ClusterNode> oldestNode = new AtomicReference<>(); /** ExchangeFuture id. */ private final GridDhtPartitionExchangeId exchId; /** Init flag. */ @GridToStringInclude private final AtomicBoolean init = new AtomicBoolean(false); /** Ready for reply flag. */ @GridToStringInclude private final AtomicBoolean ready = new AtomicBoolean(false); /** Replied flag. */ @GridToStringInclude private final AtomicBoolean replied = new AtomicBoolean(false); /** Timeout object. */ @GridToStringExclude private volatile GridTimeoutObject timeoutObj; /** Cache context. */ private final GridCacheSharedContext<?, ?> cctx; /** Busy lock to prevent activities from accessing exchanger while it's stopping. */ private ReadWriteLock busyLock; /** */ private AtomicBoolean added = new AtomicBoolean(false); /** Event latch. */ @GridToStringExclude private CountDownLatch evtLatch = new CountDownLatch(1); /** */ private GridFutureAdapter<Boolean> initFut; /** Topology snapshot. */ private AtomicReference<GridDiscoveryTopologySnapshot> topSnapshot = new AtomicReference<>(); /** Last committed cache version before next topology version use. */ private AtomicReference<GridCacheVersion> lastVer = new AtomicReference<>(); /** * Messages received on non-coordinator are stored in case if this node * becomes coordinator. */ private final Map<UUID, GridDhtPartitionsSingleMessage> singleMsgs = new ConcurrentHashMap8<>(); /** Messages received from new coordinator. */ private final Map<UUID, GridDhtPartitionsFullMessage> fullMsgs = new ConcurrentHashMap8<>(); /** */ @SuppressWarnings({"FieldCanBeLocal", "UnusedDeclaration"}) @GridToStringInclude private volatile IgniteInternalFuture<?> partReleaseFut; /** */ private final Object mux = new Object(); /** Logger. */ private IgniteLogger log; /** Dynamic cache change requests. */ private Collection<DynamicCacheChangeRequest> reqs; /** Cache validation results. */ private volatile Map<Integer, Boolean> cacheValidRes; /** Skip preload flag. */ private boolean skipPreload; /** */ private boolean clientOnlyExchange; /** Init timestamp. Used to track the amount of time spent to complete the future. */ private long initTs; /** * Dummy future created to trigger reassignments if partition * topology changed while preloading. * * @param cctx Cache context. * @param reassign Dummy reassign flag. * @param discoEvt Discovery event. * @param exchId Exchange id. */ public GridDhtPartitionsExchangeFuture( GridCacheSharedContext cctx, boolean reassign, DiscoveryEvent discoEvt, GridDhtPartitionExchangeId exchId ) { dummy = true; forcePreload = false; this.exchId = exchId; this.reassign = reassign; this.discoEvt = discoEvt; this.cctx = cctx; onDone(exchId.topologyVersion()); } /** * Force preload future created to trigger reassignments if partition * topology changed while preloading. * * @param cctx Cache context. * @param discoEvt Discovery event. * @param exchId Exchange id. */ public GridDhtPartitionsExchangeFuture(GridCacheSharedContext cctx, DiscoveryEvent discoEvt, GridDhtPartitionExchangeId exchId) { dummy = false; forcePreload = true; this.exchId = exchId; this.discoEvt = discoEvt; this.cctx = cctx; reassign = true; onDone(exchId.topologyVersion()); } /** * @param cctx Cache context. * @param busyLock Busy lock. * @param exchId Exchange ID. * @param reqs Cache change requests. */ public GridDhtPartitionsExchangeFuture( GridCacheSharedContext cctx, ReadWriteLock busyLock, GridDhtPartitionExchangeId exchId, Collection<DynamicCacheChangeRequest> reqs ) { assert busyLock != null; assert exchId != null; dummy = false; forcePreload = false; reassign = false; this.cctx = cctx; this.busyLock = busyLock; this.exchId = exchId; this.reqs = reqs; log = cctx.logger(getClass()); initFut = new GridFutureAdapter<>(); if (log.isDebugEnabled()) log.debug("Creating exchange future [localNode=" + cctx.localNodeId() + ", fut=" + this + ']'); } /** * @param reqs Cache change requests. */ public void cacheChangeRequests(Collection<DynamicCacheChangeRequest> reqs) { this.reqs = reqs; } /** {@inheritDoc} */ @Override public AffinityTopologyVersion topologyVersion() { return exchId.topologyVersion(); } /** * @return Skip preload flag. */ public boolean skipPreload() { return skipPreload; } /** * @return Dummy flag. */ public boolean dummy() { return dummy; } /** * @return Force preload flag. */ public boolean forcePreload() { return forcePreload; } /** * @return Dummy reassign flag. */ public boolean reassign() { return reassign; } /** * @return {@code True} if dummy reassign. */ public boolean dummyReassign() { return (dummy() || forcePreload()) && reassign(); } /** * @param cacheId Cache ID to check. * @param topVer Topology version. * @return {@code True} if cache was added during this exchange. */ public boolean isCacheAdded(int cacheId, AffinityTopologyVersion topVer) { if (!F.isEmpty(reqs)) { for (DynamicCacheChangeRequest req : reqs) { if (req.start() && !req.clientStartOnly()) { if (CU.cacheId(req.cacheName()) == cacheId) return true; } } } GridCacheContext<?, ?> cacheCtx = cctx.cacheContext(cacheId); return cacheCtx != null && F.eq(cacheCtx.startTopologyVersion(), topVer); } /** * @param cacheId Cache ID. * @return {@code True} if local client has been added. */ public boolean isLocalClientAdded(int cacheId) { if (!F.isEmpty(reqs)) { for (DynamicCacheChangeRequest req : reqs) { if (req.start() && F.eq(req.initiatingNodeId(), cctx.localNodeId())) { if (CU.cacheId(req.cacheName()) == cacheId) return true; } } } return false; } /** * @param cacheCtx Cache context. * @throws IgniteCheckedException If failed. */ private void initTopology(GridCacheContext cacheCtx) throws IgniteCheckedException { if (stopping(cacheCtx.cacheId())) return; if (canCalculateAffinity(cacheCtx)) { if (log.isDebugEnabled()) log.debug("Will recalculate affinity [locNodeId=" + cctx.localNodeId() + ", exchId=" + exchId + ']'); cacheCtx.affinity().calculateAffinity(exchId.topologyVersion(), discoEvt); } else { if (log.isDebugEnabled()) log.debug("Will request affinity from remote node [locNodeId=" + cctx.localNodeId() + ", exchId=" + exchId + ']'); // Fetch affinity assignment from remote node. GridDhtAssignmentFetchFuture fetchFut = new GridDhtAssignmentFetchFuture(cacheCtx, exchId.topologyVersion(), CU.affinityNodes(cacheCtx, exchId.topologyVersion())); fetchFut.init(); List<List<ClusterNode>> affAssignment = fetchFut.get(); if (log.isDebugEnabled()) log.debug("Fetched affinity from remote node, initializing affinity assignment [locNodeId=" + cctx.localNodeId() + ", topVer=" + exchId.topologyVersion() + ']'); if (affAssignment == null) { affAssignment = new ArrayList<>(cacheCtx.affinity().partitions()); List<ClusterNode> empty = Collections.emptyList(); for (int i = 0; i < cacheCtx.affinity().partitions(); i++) affAssignment.add(empty); } cacheCtx.affinity().initializeAffinity(exchId.topologyVersion(), affAssignment); } } /** * @param cacheCtx Cache context. * @return {@code True} if local node can calculate affinity on it's own for this partition map exchange. */ private boolean canCalculateAffinity(GridCacheContext cacheCtx) { AffinityFunction affFunc = cacheCtx.config().getAffinity(); // Do not request affinity from remote nodes if affinity function is not centralized. if (!U.hasAnnotation(affFunc, AffinityCentralizedFunction.class)) return true; // If local node did not initiate exchange or local node is the only cache node in grid. Collection<ClusterNode> affNodes = CU.affinityNodes(cacheCtx, exchId.topologyVersion()); return !exchId.nodeId().equals(cctx.localNodeId()) || (affNodes.size() == 1 && affNodes.contains(cctx.localNode())); } /** * @return {@code True} */ public boolean onAdded() { return added.compareAndSet(false, true); } /** * Event callback. * * @param exchId Exchange ID. * @param discoEvt Discovery event. */ public void onEvent(GridDhtPartitionExchangeId exchId, DiscoveryEvent discoEvt) { assert exchId.equals(this.exchId); this.discoEvt = discoEvt; evtLatch.countDown(); } /** * @return Discovery event. */ public DiscoveryEvent discoveryEvent() { return discoEvt; } /** * @return Exchange ID. */ public GridDhtPartitionExchangeId exchangeId() { return exchId; } /** * @return {@code true} if entered to busy state. */ private boolean enterBusy() { if (busyLock.readLock().tryLock()) return true; if (log.isDebugEnabled()) log.debug("Failed to enter busy state (exchanger is stopping): " + this); return false; } /** * */ private void leaveBusy() { busyLock.readLock().unlock(); } /** * Starts activity. * * @throws IgniteInterruptedCheckedException If interrupted. */ public void init() throws IgniteInterruptedCheckedException { if (isDone()) return; if (init.compareAndSet(false, true)) { if (isDone()) return; initTs = U.currentTimeMillis(); try { // Wait for event to occur to make sure that discovery // will return corresponding nodes. U.await(evtLatch); assert discoEvt != null : this; assert !dummy && !forcePreload : this; ClusterNode oldest = CU.oldestAliveCacheServerNode(cctx, exchId.topologyVersion()); oldestNode.set(oldest); if (!F.isEmpty(reqs)) blockGateways(); startCaches(); // True if client node joined or failed. boolean clientNodeEvt; if (F.isEmpty(reqs)) { int type = discoEvt.type(); assert type == EVT_NODE_JOINED || type == EVT_NODE_LEFT || type == EVT_NODE_FAILED : discoEvt; clientNodeEvt = CU.clientNode(discoEvt.eventNode()); } else { assert discoEvt.type() == EVT_DISCOVERY_CUSTOM_EVT : discoEvt; boolean clientOnlyCacheEvt = true; for (DynamicCacheChangeRequest req : reqs) { if (req.clientStartOnly() || req.close()) continue; clientOnlyCacheEvt = false; break; } clientNodeEvt = clientOnlyCacheEvt; } if (clientNodeEvt) { ClusterNode node = discoEvt.eventNode(); // Client need to initialize affinity for local join event or for stated client caches. if (!node.isLocal() || clientCacheClose()) { for (GridCacheContext cacheCtx : cctx.cacheContexts()) { if (cacheCtx.isLocal()) continue; GridDhtPartitionTopology top = cacheCtx.topology(); top.updateTopologyVersion(exchId, this, -1, stopping(cacheCtx.cacheId())); if (cacheCtx.affinity().affinityTopologyVersion() == AffinityTopologyVersion.NONE) { initTopology(cacheCtx); top.beforeExchange(this); } else cacheCtx.affinity().clientEventTopologyChange(discoEvt, exchId.topologyVersion()); } if (exchId.isLeft()) cctx.mvcc().removeExplicitNodeLocks(exchId.nodeId(), exchId.topologyVersion()); rmtIds = Collections.emptyList(); rmtNodes = Collections.emptyList(); onDone(exchId.topologyVersion()); skipPreload = cctx.kernalContext().clientNode(); return; } } clientOnlyExchange = clientNodeEvt || cctx.kernalContext().clientNode(); if (clientOnlyExchange) { skipPreload = cctx.kernalContext().clientNode(); for (GridCacheContext cacheCtx : cctx.cacheContexts()) { if (cacheCtx.isLocal()) continue; GridDhtPartitionTopology top = cacheCtx.topology(); top.updateTopologyVersion(exchId, this, -1, stopping(cacheCtx.cacheId())); } for (GridCacheContext cacheCtx : cctx.cacheContexts()) { if (cacheCtx.isLocal()) continue; initTopology(cacheCtx); } if (oldest != null) { rmtNodes = new ConcurrentLinkedQueue<>(CU.aliveRemoteServerNodesWithCaches(cctx, exchId.topologyVersion())); rmtIds = Collections.unmodifiableSet(new HashSet<>(F.nodeIds(rmtNodes))); initFut.onDone(true); if (log.isDebugEnabled()) log.debug("Initialized future: " + this); if (cctx.localNode().equals(oldest)) { for (GridCacheContext cacheCtx : cctx.cacheContexts()) { boolean updateTop = !cacheCtx.isLocal() && exchId.topologyVersion().equals(cacheCtx.startTopologyVersion()); if (updateTop) { for (GridClientPartitionTopology top : cctx.exchange().clientTopologies()) { if (top.cacheId() == cacheCtx.cacheId()) { cacheCtx.topology().update(exchId, top.partitionMap(true)); break; } } } } onDone(exchId.topologyVersion()); } else sendPartitions(oldest); } else { rmtIds = Collections.emptyList(); rmtNodes = Collections.emptyList(); onDone(exchId.topologyVersion()); } return; } assert oldestNode.get() != null; for (GridCacheContext cacheCtx : cctx.cacheContexts()) { if (isCacheAdded(cacheCtx.cacheId(), exchId.topologyVersion())) { if (cacheCtx.discovery().cacheAffinityNodes(cacheCtx.name(), topologyVersion()).isEmpty()) U.quietAndWarn(log, "No server nodes found for cache client: " + cacheCtx.namex()); } cacheCtx.preloader().onExchangeFutureAdded(); } List<String> cachesWithoutNodes = null; if (exchId.isLeft()) { for (String name : cctx.cache().cacheNames()) { if (cctx.discovery().cacheAffinityNodes(name, topologyVersion()).isEmpty()) { if (cachesWithoutNodes == null) cachesWithoutNodes = new ArrayList<>(); cachesWithoutNodes.add(name); // Fire event even if there is no client cache started. if (cctx.gridEvents().isRecordable(EventType.EVT_CACHE_NODES_LEFT)) { Event evt = new CacheEvent( name, cctx.localNode(), cctx.localNode(), "All server nodes have left the cluster.", EventType.EVT_CACHE_NODES_LEFT, 0, false, null, null, null, null, false, null, false, null, null, null ); cctx.gridEvents().record(evt); } } } } if (cachesWithoutNodes != null) { StringBuilder sb = new StringBuilder("All server nodes for the following caches have left the cluster: "); for (int i = 0; i < cachesWithoutNodes.size(); i++) { String cache = cachesWithoutNodes.get(i); sb.append('\'').append(cache).append('\''); if (i != cachesWithoutNodes.size() - 1) sb.append(", "); } U.quietAndWarn(log, sb.toString()); U.quietAndWarn(log, "Must have server nodes for caches to operate."); } assert discoEvt != null; assert exchId.nodeId().equals(discoEvt.eventNode().id()); for (GridCacheContext cacheCtx : cctx.cacheContexts()) { GridClientPartitionTopology clientTop = cctx.exchange().clearClientTopology( cacheCtx.cacheId()); long updSeq = clientTop == null ? -1 : clientTop.lastUpdateSequence(); // Update before waiting for locks. if (!cacheCtx.isLocal()) cacheCtx.topology().updateTopologyVersion(exchId, this, updSeq, stopping(cacheCtx.cacheId())); } // Grab all alive remote nodes with order of equal or less than last joined node. rmtNodes = new ConcurrentLinkedQueue<>(CU.aliveRemoteServerNodesWithCaches(cctx, exchId.topologyVersion())); rmtIds = Collections.unmodifiableSet(new HashSet<>(F.nodeIds(rmtNodes))); for (Map.Entry<UUID, GridDhtPartitionsSingleMessage> m : singleMsgs.entrySet()) // If received any messages, process them. onReceive(m.getKey(), m.getValue()); for (Map.Entry<UUID, GridDhtPartitionsFullMessage> m : fullMsgs.entrySet()) // If received any messages, process them. onReceive(m.getKey(), m.getValue()); AffinityTopologyVersion topVer = exchId.topologyVersion(); for (GridCacheContext cacheCtx : cctx.cacheContexts()) { if (cacheCtx.isLocal()) continue; // Must initialize topology after we get discovery event. initTopology(cacheCtx); cacheCtx.preloader().updateLastExchangeFuture(this); } IgniteInternalFuture<?> partReleaseFut = cctx.partitionReleaseFuture(topVer); // Assign to class variable so it will be included into toString() method. this.partReleaseFut = partReleaseFut; if (log.isDebugEnabled()) log.debug("Before waiting for partition release future: " + this); int dumpedObjects = 0; while (true) { try { partReleaseFut.get(2 * cctx.gridConfig().getNetworkTimeout(), TimeUnit.MILLISECONDS); break; } catch (IgniteFutureTimeoutCheckedException ignored) { // Print pending transactions and locks that might have led to hang. if (dumpedObjects < DUMP_PENDING_OBJECTS_THRESHOLD) { dumpPendingObjects(); dumpedObjects++; } } } if (log.isDebugEnabled()) log.debug("After waiting for partition release future: " + this); if (exchId.isLeft()) cctx.mvcc().removeExplicitNodeLocks(exchId.nodeId(), exchId.topologyVersion()); IgniteInternalFuture<?> locksFut = cctx.mvcc().finishLocks(exchId.topologyVersion()); dumpedObjects = 0; while (true) { try { locksFut.get(2 * cctx.gridConfig().getNetworkTimeout(), TimeUnit.MILLISECONDS); break; } catch (IgniteFutureTimeoutCheckedException ignored) { if (dumpedObjects < DUMP_PENDING_OBJECTS_THRESHOLD) { U.warn(log, "Failed to wait for locks release future. " + "Dumping pending objects that might be the cause: " + cctx.localNodeId()); U.warn(log, "Locked keys:"); for (IgniteTxKey key : cctx.mvcc().lockedKeys()) U.warn(log, "Locked key: " + key); for (IgniteTxKey key : cctx.mvcc().nearLockedKeys()) U.warn(log, "Locked near key: " + key); Map<IgniteTxKey, Collection<GridCacheMvccCandidate>> locks = cctx.mvcc().unfinishedLocks(exchId.topologyVersion()); for (Map.Entry<IgniteTxKey, Collection<GridCacheMvccCandidate>> e : locks.entrySet()) U.warn(log, "Awaited locked entry [key=" + e.getKey() + ", mvcc=" + e.getValue() + ']'); dumpedObjects++; } } } for (GridCacheContext cacheCtx : cctx.cacheContexts()) { if (cacheCtx.isLocal()) continue; // Notify replication manager. GridCacheContext drCacheCtx = cacheCtx.isNear() ? cacheCtx.near().dht().context() : cacheCtx; if (drCacheCtx.isDrEnabled()) drCacheCtx.dr().beforeExchange(topVer, exchId.isLeft()); // Partition release future is done so we can flush the write-behind store. cacheCtx.store().forceFlush(); // Process queued undeploys prior to sending/spreading map. cacheCtx.preloader().unwindUndeploys(); GridDhtPartitionTopology top = cacheCtx.topology(); assert topVer.equals(top.topologyVersion()) : "Topology version is updated only in this class instances inside single ExchangeWorker thread."; top.beforeExchange(this); } for (GridClientPartitionTopology top : cctx.exchange().clientTopologies()) { top.updateTopologyVersion(exchId, this, -1, stopping(top.cacheId())); top.beforeExchange(this); } } catch (IgniteInterruptedCheckedException e) { onDone(e); throw e; } catch (Throwable e) { U.error(log, "Failed to reinitialize local partitions (preloading will be stopped): " + exchId, e); onDone(e); if (e instanceof Error) throw (Error)e; return; } if (F.isEmpty(rmtIds)) { onDone(exchId.topologyVersion()); return; } ready.set(true); initFut.onDone(true); if (log.isDebugEnabled()) log.debug("Initialized future: " + this); ClusterNode oldest = oldestNode.get(); // If this node is not oldest. if (!oldest.id().equals(cctx.localNodeId())) sendPartitions(oldest); else { boolean allReceived = allReceived(); if (allReceived && replied.compareAndSet(false, true)) { if (spreadPartitions()) onDone(exchId.topologyVersion()); } } scheduleRecheck(); } else assert false : "Skipped init future: " + this; } /** * @return {@code True} if exchange initiated for client cache close. */ private boolean clientCacheClose() { return reqs != null && reqs.size() == 1 && reqs.iterator().next().close(); } /** * */ private void dumpPendingObjects() { U.warn(log, "Failed to wait for partition release future. Dumping pending objects that might be the cause: " + cctx.localNodeId()); cctx.exchange().dumpPendingObjects(); } /** * @param cacheId Cache ID to check. * @return {@code True} if cache is stopping by this exchange. */ private boolean stopping(int cacheId) { boolean stopping = false; if (!F.isEmpty(reqs)) { for (DynamicCacheChangeRequest req : reqs) { if (cacheId == CU.cacheId(req.cacheName())) { stopping = req.stop(); break; } } } return stopping; } /** * Starts dynamic caches. * @throws IgniteCheckedException If failed. */ private void startCaches() throws IgniteCheckedException { cctx.cache().prepareCachesStart(F.view(reqs, new IgnitePredicate<DynamicCacheChangeRequest>() { @Override public boolean apply(DynamicCacheChangeRequest req) { return req.start(); } }), exchId.topologyVersion()); } /** * */ private void blockGateways() { for (DynamicCacheChangeRequest req : reqs) { if (req.stop() || req.close()) cctx.cache().blockGateway(req); } } /** * @param node Node. * @param id ID. * @throws IgniteCheckedException If failed. */ private void sendLocalPartitions(ClusterNode node, @Nullable GridDhtPartitionExchangeId id) throws IgniteCheckedException { GridDhtPartitionsSingleMessage m = new GridDhtPartitionsSingleMessage(id, clientOnlyExchange, cctx.versions().last()); for (GridCacheContext cacheCtx : cctx.cacheContexts()) { if (!cacheCtx.isLocal()) m.addLocalPartitionMap(cacheCtx.cacheId(), cacheCtx.topology().localPartitionMap()); } if (log.isDebugEnabled()) log.debug("Sending local partitions [nodeId=" + node.id() + ", exchId=" + exchId + ", msg=" + m + ']'); cctx.io().send(node, m, SYSTEM_POOL); } /** * @param nodes Nodes. * @param id ID. * @throws IgniteCheckedException If failed. */ private void sendAllPartitions(Collection<? extends ClusterNode> nodes, GridDhtPartitionExchangeId id) throws IgniteCheckedException { GridDhtPartitionsFullMessage m = new GridDhtPartitionsFullMessage(id, lastVer.get(), id.topologyVersion()); for (GridCacheContext cacheCtx : cctx.cacheContexts()) { if (!cacheCtx.isLocal()) { AffinityTopologyVersion startTopVer = cacheCtx.startTopologyVersion(); boolean ready = startTopVer == null || startTopVer.compareTo(id.topologyVersion()) <= 0; if (ready) m.addFullPartitionsMap(cacheCtx.cacheId(), cacheCtx.topology().partitionMap(true)); } } // It is important that client topologies be added after contexts. for (GridClientPartitionTopology top : cctx.exchange().clientTopologies()) m.addFullPartitionsMap(top.cacheId(), top.partitionMap(true)); if (log.isDebugEnabled()) log.debug("Sending full partition map [nodeIds=" + F.viewReadOnly(nodes, F.node2id()) + ", exchId=" + exchId + ", msg=" + m + ']'); cctx.io().safeSend(nodes, m, SYSTEM_POOL, null); } /** * @param oldestNode Oldest node. */ private void sendPartitions(ClusterNode oldestNode) { try { sendLocalPartitions(oldestNode, exchId); } catch (ClusterTopologyCheckedException ignore) { if (log.isDebugEnabled()) log.debug("Oldest node left during partition exchange [nodeId=" + oldestNode.id() + ", exchId=" + exchId + ']'); } catch (IgniteCheckedException e) { scheduleRecheck(); U.error(log, "Failed to send local partitions to oldest node (will retry after timeout) [oldestNodeId=" + oldestNode.id() + ", exchId=" + exchId + ']', e); } } /** * @return {@code True} if succeeded. */ private boolean spreadPartitions() { try { sendAllPartitions(rmtNodes, exchId); return true; } catch (IgniteCheckedException e) { scheduleRecheck(); if (!X.hasCause(e, InterruptedException.class)) U.error(log, "Failed to send full partition map to nodes (will retry after timeout) [nodes=" + F.nodeId8s(rmtNodes) + ", exchangeId=" + exchId + ']', e); return false; } } /** {@inheritDoc} */ @Override public boolean onDone(AffinityTopologyVersion res, Throwable err) { Map<Integer, Boolean> m = null; for (GridCacheContext cacheCtx : cctx.cacheContexts()) { if (cacheCtx.config().getTopologyValidator() != null && !CU.isSystemCache(cacheCtx.name())) { if (m == null) m = new HashMap<>(); m.put(cacheCtx.cacheId(), cacheCtx.config().getTopologyValidator().validate(discoEvt.topologyNodes())); } } cacheValidRes = m != null ? m : Collections.<Integer, Boolean>emptyMap(); cctx.cache().onExchangeDone(exchId.topologyVersion(), reqs, err); cctx.exchange().onExchangeDone(this, err); if (super.onDone(res, err) && !dummy && !forcePreload) { if (log.isDebugEnabled()) log.debug("Completed partition exchange [localNode=" + cctx.localNodeId() + ", exchange= " + this + "duration=" + duration() + ", durationFromInit=" + (U.currentTimeMillis() - initTs) + ']'); initFut.onDone(err == null); GridTimeoutObject timeoutObj = this.timeoutObj; // Deschedule timeout object. if (timeoutObj != null) cctx.kernalContext().timeout().removeTimeoutObject(timeoutObj); if (exchId.isLeft()) { for (GridCacheContext cacheCtx : cctx.cacheContexts()) cacheCtx.config().getAffinity().removeNode(exchId.nodeId()); } return true; } return dummy; } /** {@inheritDoc} */ @Override public Throwable validateCache(GridCacheContext cctx) { Throwable err = error(); if (err != null) return err; if (cctx.config().getTopologyValidator() != null) { Boolean res = cacheValidRes.get(cctx.cacheId()); if (res != null && !res) { return new IgniteCheckedException("Failed to perform cache operation " + "(cache topology is not valid): " + cctx.name()); } } return null; } /** * Cleans up resources to avoid excessive memory usage. */ public void cleanUp() { topSnapshot.set(null); singleMsgs.clear(); fullMsgs.clear(); rcvdIds.clear(); oldestNode.set(null); partReleaseFut = null; Collection<ClusterNode> rmtNodes = this.rmtNodes; if (rmtNodes != null) rmtNodes.clear(); } /** * @return {@code True} if all replies are received. */ private boolean allReceived() { Collection<UUID> rmtIds = this.rmtIds; assert rmtIds != null : "Remote Ids can't be null: " + this; synchronized (rcvdIds) { return rcvdIds.containsAll(rmtIds); } } /** * @param nodeId Sender node id. * @param msg Single partition info. */ public void onReceive(final UUID nodeId, final GridDhtPartitionsSingleMessage msg) { assert msg != null; assert msg.exchangeId().equals(exchId); // Update last seen version. while (true) { GridCacheVersion old = lastVer.get(); if (old == null || old.compareTo(msg.lastVersion()) < 0) { if (lastVer.compareAndSet(old, msg.lastVersion())) break; } else break; } if (isDone()) { if (log.isDebugEnabled()) log.debug("Received message for finished future (will reply only to sender) [msg=" + msg + ", fut=" + this + ']'); sendAllPartitions(nodeId, cctx.gridConfig().getNetworkSendRetryCount()); } else { initFut.listen(new CI1<IgniteInternalFuture<Boolean>>() { @Override public void apply(IgniteInternalFuture<Boolean> f) { try { if (!f.get()) return; } catch (IgniteCheckedException e) { U.error(log, "Failed to initialize exchange future: " + this, e); return; } ClusterNode loc = cctx.localNode(); singleMsgs.put(nodeId, msg); boolean match = true; // Check if oldest node has changed. if (!oldestNode.get().equals(loc)) { match = false; synchronized (mux) { // Double check. if (oldestNode.get().equals(loc)) match = true; } } if (match) { boolean allReceived; synchronized (rcvdIds) { if (rcvdIds.add(nodeId)) updatePartitionSingleMap(msg); allReceived = allReceived(); } // If got all replies, and initialization finished, and reply has not been sent yet. if (allReceived && ready.get() && replied.compareAndSet(false, true)) { spreadPartitions(); onDone(exchId.topologyVersion()); } else if (log.isDebugEnabled()) log.debug("Exchange future full map is not sent [allReceived=" + allReceived() + ", ready=" + ready + ", replied=" + replied.get() + ", init=" + init.get() + ", fut=" + GridDhtPartitionsExchangeFuture.this + ']'); } } }); } } /** * @param nodeId Node ID. * @param retryCnt Number of retries. */ private void sendAllPartitions(final UUID nodeId, final int retryCnt) { ClusterNode n = cctx.node(nodeId); try { if (n != null) sendAllPartitions(F.asList(n), exchId); } catch (IgniteCheckedException e) { if (e instanceof ClusterTopologyCheckedException || !cctx.discovery().alive(n)) { log.debug("Failed to send full partition map to node, node left grid " + "[rmtNode=" + nodeId + ", exchangeId=" + exchId + ']'); return; } if (retryCnt > 0) { long timeout = cctx.gridConfig().getNetworkSendRetryDelay(); LT.error(log, e, "Failed to send full partition map to node (will retry after timeout) " + "[node=" + nodeId + ", exchangeId=" + exchId + ", timeout=" + timeout + ']'); cctx.time().addTimeoutObject(new GridTimeoutObjectAdapter(timeout) { @Override public void onTimeout() { sendAllPartitions(nodeId, retryCnt - 1); } }); } else U.error(log, "Failed to send full partition map [node=" + n + ", exchangeId=" + exchId + ']', e); } } /** * @param nodeId Sender node ID. * @param msg Full partition info. */ public void onReceive(final UUID nodeId, final GridDhtPartitionsFullMessage msg) { assert msg != null; if (isDone()) { if (log.isDebugEnabled()) log.debug("Received message for finished future [msg=" + msg + ", fut=" + this + ']'); return; } if (log.isDebugEnabled()) log.debug("Received full partition map from node [nodeId=" + nodeId + ", msg=" + msg + ']'); assert exchId.topologyVersion().equals(msg.topologyVersion()); initFut.listen(new CI1<IgniteInternalFuture<Boolean>>() { @Override public void apply(IgniteInternalFuture<Boolean> f) { try { if (!f.get()) return; } catch (IgniteCheckedException e) { U.error(log, "Failed to initialize exchange future: " + this, e); return; } ClusterNode curOldest = oldestNode.get(); if (!nodeId.equals(curOldest.id())) { if (log.isDebugEnabled()) log.debug("Received full partition map from unexpected node [oldest=" + curOldest.id() + ", unexpectedNodeId=" + nodeId + ']'); ClusterNode snd = cctx.discovery().node(nodeId); if (snd == null) { if (log.isDebugEnabled()) log.debug("Sender node left grid, will ignore message from unexpected node [nodeId=" + nodeId + ", exchId=" + msg.exchangeId() + ']'); return; } // Will process message later if sender node becomes oldest node. if (snd.order() > curOldest.order()) fullMsgs.put(nodeId, msg); return; } assert msg.exchangeId().equals(exchId); assert msg.lastVersion() != null; cctx.versions().onReceived(nodeId, msg.lastVersion()); updatePartitionFullMap(msg); onDone(exchId.topologyVersion()); } }); } /** * Updates partition map in all caches. * * @param msg Partitions full messages. */ private void updatePartitionFullMap(GridDhtPartitionsFullMessage msg) { for (Map.Entry<Integer, GridDhtPartitionFullMap> entry : msg.partitions().entrySet()) { Integer cacheId = entry.getKey(); GridCacheContext cacheCtx = cctx.cacheContext(cacheId); if (cacheCtx != null) cacheCtx.topology().update(exchId, entry.getValue()); else { ClusterNode oldest = CU.oldestAliveCacheServerNode(cctx, AffinityTopologyVersion.NONE); if (oldest != null && oldest.isLocal()) cctx.exchange().clientTopology(cacheId, this).update(exchId, entry.getValue()); } } } /** * Updates partition map in all caches. * * @param msg Partitions single message. */ private void updatePartitionSingleMap(GridDhtPartitionsSingleMessage msg) { for (Map.Entry<Integer, GridDhtPartitionMap> entry : msg.partitions().entrySet()) { Integer cacheId = entry.getKey(); GridCacheContext cacheCtx = cctx.cacheContext(cacheId); GridDhtPartitionTopology top = cacheCtx != null ? cacheCtx.topology() : cctx.exchange().clientTopology(cacheId, this); top.update(exchId, entry.getValue()); } } /** * @param nodeId Left node id. */ public void onNodeLeft(final UUID nodeId) { if (isDone()) return; if (!enterBusy()) return; try { // Wait for initialization part of this future to complete. initFut.listen(new CI1<IgniteInternalFuture<Boolean>>() { @Override public void apply(IgniteInternalFuture<Boolean> f) { try { if (!f.get()) return; } catch (IgniteCheckedException e) { U.error(log, "Failed to initialize exchange future: " + this, e); return; } if (isDone()) return; if (!enterBusy()) return; try { // Pretend to have received message from this node. rcvdIds.add(nodeId); Collection<UUID> rmtIds = GridDhtPartitionsExchangeFuture.this.rmtIds; assert rmtIds != null; ClusterNode oldest = oldestNode.get(); if (oldest.id().equals(nodeId)) { if (log.isDebugEnabled()) log.debug("Oldest node left or failed on partition exchange " + "(will restart exchange process)) [oldestNodeId=" + oldest.id() + ", exchangeId=" + exchId + ']'); boolean set = false; ClusterNode newOldest = CU.oldestAliveCacheServerNode(cctx, exchId.topologyVersion()); if (newOldest != null) { // If local node is now oldest. if (newOldest.id().equals(cctx.localNodeId())) { synchronized (mux) { if (oldestNode.compareAndSet(oldest, newOldest)) { // If local node is just joining. if (exchId.nodeId().equals(cctx.localNodeId())) { try { for (GridCacheContext cacheCtx : cctx.cacheContexts()) { if (!cacheCtx.isLocal()) cacheCtx.topology().beforeExchange( GridDhtPartitionsExchangeFuture.this); } } catch (IgniteCheckedException e) { onDone(e); return; } } set = true; } } } else { synchronized (mux) { set = oldestNode.compareAndSet(oldest, newOldest); } if (set && log.isDebugEnabled()) log.debug("Reassigned oldest node [this=" + cctx.localNodeId() + ", old=" + oldest.id() + ", new=" + newOldest.id() + ']'); } } if (set) { // If received any messages, process them. for (Map.Entry<UUID, GridDhtPartitionsSingleMessage> m : singleMsgs.entrySet()) onReceive(m.getKey(), m.getValue()); for (Map.Entry<UUID, GridDhtPartitionsFullMessage> m : fullMsgs.entrySet()) onReceive(m.getKey(), m.getValue()); // Reassign oldest node and resend. recheck(); } } else if (rmtIds.contains(nodeId)) { if (log.isDebugEnabled()) log.debug("Remote node left of failed during partition exchange (will ignore) " + "[rmtNode=" + nodeId + ", exchangeId=" + exchId + ']'); assert rmtNodes != null; for (Iterator<ClusterNode> it = rmtNodes.iterator(); it.hasNext(); ) { if (it.next().id().equals(nodeId)) it.remove(); } if (allReceived() && ready.get() && replied.compareAndSet(false, true)) if (spreadPartitions()) onDone(exchId.topologyVersion()); } } finally { leaveBusy(); } } }); } finally { leaveBusy(); } } /** * */ private void recheck() { ClusterNode oldest = oldestNode.get(); // If this is the oldest node. if (oldest.id().equals(cctx.localNodeId())) { Collection<UUID> remaining = remaining(); if (!remaining.isEmpty()) { try { cctx.io().safeSend(cctx.discovery().nodes(remaining), new GridDhtPartitionsSingleRequest(exchId), SYSTEM_POOL, null); } catch (IgniteCheckedException e) { U.error(log, "Failed to request partitions from nodes [exchangeId=" + exchId + ", nodes=" + remaining + ']', e); } } // Resend full partition map because last attempt failed. else { if (spreadPartitions()) onDone(exchId.topologyVersion()); } } else sendPartitions(oldest); // Schedule another send. scheduleRecheck(); } /** * */ private void scheduleRecheck() { if (!isDone()) { GridTimeoutObject old = timeoutObj; if (old != null) cctx.kernalContext().timeout().removeTimeoutObject(old); GridTimeoutObject timeoutObj = new GridTimeoutObjectAdapter( cctx.gridConfig().getNetworkTimeout() * Math.max(1, cctx.gridConfig().getCacheConfiguration().length)) { @Override public void onTimeout() { cctx.kernalContext().closure().runLocalSafe(new Runnable() { @Override public void run() { if (isDone()) return; if (!enterBusy()) return; try { U.warn(log, "Retrying preload partition exchange due to timeout [done=" + isDone() + ", dummy=" + dummy + ", exchId=" + exchId + ", rcvdIds=" + F.id8s(rcvdIds) + ", rmtIds=" + F.id8s(rmtIds) + ", remaining=" + F.id8s(remaining()) + ", init=" + init + ", initFut=" + initFut.isDone() + ", ready=" + ready + ", replied=" + replied + ", added=" + added + ", oldest=" + U.id8(oldestNode.get().id()) + ", oldestOrder=" + oldestNode.get().order() + ", evtLatch=" + evtLatch.getCount() + ", locNodeOrder=" + cctx.localNode().order() + ", locNodeId=" + cctx.localNode().id() + ']', "Retrying preload partition exchange due to timeout."); recheck(); } finally { leaveBusy(); } } }); } }; this.timeoutObj = timeoutObj; cctx.kernalContext().timeout().addTimeoutObject(timeoutObj); } } /** * @return Remaining node IDs. */ Collection<UUID> remaining() { if (rmtIds == null) return Collections.emptyList(); return F.lose(rmtIds, true, rcvdIds); } /** {@inheritDoc} */ @Override public int compareTo(GridDhtPartitionsExchangeFuture fut) { return exchId.compareTo(fut.exchId); } /** {@inheritDoc} */ @Override public boolean equals(Object o) { if (this == o) return true; GridDhtPartitionsExchangeFuture fut = (GridDhtPartitionsExchangeFuture)o; return exchId.equals(fut.exchId); } /** {@inheritDoc} */ @Override public int hashCode() { return exchId.hashCode(); } /** {@inheritDoc} */ @Override public String toString() { ClusterNode oldestNode = this.oldestNode.get(); return S.toString(GridDhtPartitionsExchangeFuture.class, this, "oldest", oldestNode == null ? "null" : oldestNode.id(), "oldestOrder", oldestNode == null ? "null" : oldestNode.order(), "evtLatch", evtLatch == null ? "null" : evtLatch.getCount(), "remaining", remaining(), "super", super.toString()); } }
{ "content_hash": "7c08836d252940a8e662d24045e31114", "timestamp": "", "source": "github", "line_count": 1600, "max_line_length": 127, "avg_line_length": 36.215, "alnum_prop": 0.5198985227115835, "repo_name": "agoncharuk/ignite", "id": "77e47a7c267efec23d5a5ab4aef31a8569eb39da", "size": "58746", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/preloader/GridDhtPartitionsExchangeFuture.java", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "Batchfile", "bytes": "31300" }, { "name": "C", "bytes": "3323" }, { "name": "C#", "bytes": "2610422" }, { "name": "C++", "bytes": "864786" }, { "name": "CSS", "bytes": "17517" }, { "name": "Groovy", "bytes": "15092" }, { "name": "HTML", "bytes": "4649" }, { "name": "Java", "bytes": "20788412" }, { "name": "JavaScript", "bytes": "1085" }, { "name": "PHP", "bytes": "11079" }, { "name": "Scala", "bytes": "653733" }, { "name": "Shell", "bytes": "398313" } ], "symlink_target": "" }
///btSoftBody implementation by Nathanael Presson #ifndef _BT_SOFT_BODY_H #define _BT_SOFT_BODY_H #include "btAlignedObjectArray.h" #include "btTransform.h" #include "btIDebugDraw.h" #include "btRigidBody.h" #include "btConcaveShape.h" #include "btCollisionCreateFunc.h" #include "btSparseSDF.h" #include "btDbvt.h" class btBroadphaseInterface; class btDispatcher; /* btSoftBodyWorldInfo */ struct btSoftBodyWorldInfo { btScalar air_density; btScalar water_density; btScalar water_offset; btVector3 water_normal; btBroadphaseInterface* m_broadphase; btDispatcher* m_dispatcher; btVector3 m_gravity; btSparseSdf<3> m_sparsesdf; }; ///The btSoftBody is an class to simulate cloth and volumetric soft bodies. ///There is two-way interaction between btSoftBody and btRigidBody/btCollisionObject. class btSoftBody : public btCollisionObject { public: btAlignedObjectArray<class btCollisionObject*> m_collisionDisabledObjects; // // Enumerations // ///eAeroModel struct eAeroModel { enum _ { V_Point, ///Vertex normals are oriented toward velocity V_TwoSided, ///Vertex normals are fliped to match velocity V_OneSided, ///Vertex normals are taken as it is F_TwoSided, ///Face normals are fliped to match velocity F_OneSided, ///Face normals are taken as it is END };}; ///eVSolver : velocities solvers struct eVSolver { enum _ { Linear, ///Linear solver END };}; ///ePSolver : positions solvers struct ePSolver { enum _ { Linear, ///Linear solver Anchors, ///Anchor solver RContacts, ///Rigid contacts solver SContacts, ///Soft contacts solver END };}; ///eSolverPresets struct eSolverPresets { enum _ { Positions, Velocities, Default = Positions, END };}; ///eFeature struct eFeature { enum _ { None, Node, Link, Face, END };}; typedef btAlignedObjectArray<eVSolver::_> tVSolverArray; typedef btAlignedObjectArray<ePSolver::_> tPSolverArray; // // Flags // ///fCollision struct fCollision { enum _ { RVSmask = 0x000f, ///Rigid versus soft mask SDF_RS = 0x0001, ///SDF based rigid vs soft CL_RS = 0x0002, ///Cluster vs convex rigid vs soft SVSmask = 0x00f0, ///Rigid versus soft mask VF_SS = 0x0010, ///Vertex vs face soft vs soft handling CL_SS = 0x0020, ///Cluster vs cluster soft vs soft handling /* presets */ Default = SDF_RS, END };}; ///fMaterial struct fMaterial { enum _ { DebugDraw = 0x0001, /// Enable debug draw /* presets */ Default = DebugDraw, END };}; // // API Types // /* sRayCast */ struct sRayCast { btSoftBody* body; /// soft body eFeature::_ feature; /// feature type int index; /// feature index btScalar fraction; /// time of impact fraction (rayorg+(rayto-rayfrom)*fraction) }; /* ImplicitFn */ struct ImplicitFn { virtual btScalar Eval(const btVector3& x)=0; }; // // Internal types // typedef btAlignedObjectArray<btScalar> tScalarArray; typedef btAlignedObjectArray<btVector3> tVector3Array; /* sCti is Softbody contact info */ struct sCti { btCollisionObject* m_colObj; /* Rigid body */ btVector3 m_normal; /* Outward normal */ btScalar m_offset; /* Offset from origin */ }; /* sMedium */ struct sMedium { btVector3 m_velocity; /* Velocity */ btScalar m_pressure; /* Pressure */ btScalar m_density; /* Density */ }; /* Base type */ struct Element { void* m_tag; // User data Element() : m_tag(0) {} }; /* Material */ struct Material : Element { btScalar m_kLST; // Linear stiffness coefficient [0,1] btScalar m_kAST; // Area/Angular stiffness coefficient [0,1] btScalar m_kVST; // Volume stiffness coefficient [0,1] int m_flags; // Flags }; /* Feature */ struct Feature : Element { Material* m_material; // Material }; /* Node */ struct Node : Feature { btVector3 m_x; // Position btVector3 m_q; // Previous step position btVector3 m_v; // Velocity btVector3 m_f; // Force accumulator btVector3 m_n; // Normal btScalar m_im; // 1/mass btScalar m_area; // Area btDbvtNode* m_leaf; // Leaf data int m_battach:1; // Attached }; /* Link */ struct Link : Feature { Node* m_n[2]; // Node pointers btScalar m_rl; // Rest length int m_bbending:1; // Bending link btScalar m_c0; // (ima+imb)*kLST btScalar m_c1; // rl^2 btScalar m_c2; // |gradient|^2/c0 btVector3 m_c3; // gradient }; /* Face */ struct Face : Feature { Node* m_n[3]; // Node pointers btVector3 m_normal; // Normal btScalar m_ra; // Rest area btDbvtNode* m_leaf; // Leaf data }; /* RContact */ struct RContact { sCti m_cti; // Contact infos Node* m_node; // Owner node btMatrix3x3 m_c0; // Impulse matrix btVector3 m_c1; // Relative anchor btScalar m_c2; // ima*dt btScalar m_c3; // Friction btScalar m_c4; // Hardness }; /* SContact */ struct SContact { Node* m_node; // Node Face* m_face; // Face btVector3 m_weights; // Weigths btVector3 m_normal; // Normal btScalar m_margin; // Margin btScalar m_friction; // Friction btScalar m_cfm[2]; // Constraint force mixing }; /* Anchor */ struct Anchor { Node* m_node; // Node pointer btVector3 m_local; // Anchor position in body space btRigidBody* m_body; // Body btMatrix3x3 m_c0; // Impulse matrix btVector3 m_c1; // Relative anchor btScalar m_c2; // ima*dt }; /* Note */ struct Note : Element { const char* m_text; // Text btVector3 m_offset; // Offset int m_rank; // Rank Node* m_nodes[4]; // Nodes btScalar m_coords[4]; // Coordinates }; /* Pose */ struct Pose { bool m_bvolume; // Is valid bool m_bframe; // Is frame btScalar m_volume; // Rest volume tVector3Array m_pos; // Reference positions tScalarArray m_wgh; // Weights btVector3 m_com; // COM btMatrix3x3 m_rot; // Rotation btMatrix3x3 m_scl; // Scale btMatrix3x3 m_aqq; // Base scaling }; /* Cluster */ struct Cluster { btAlignedObjectArray<Node*> m_nodes; tScalarArray m_masses; tVector3Array m_framerefs; btTransform m_framexform; btScalar m_idmass; btScalar m_imass; btMatrix3x3 m_locii; btMatrix3x3 m_invwi; btVector3 m_com; btVector3 m_vimpulses[2]; btVector3 m_dimpulses[2]; int m_nvimpulses; int m_ndimpulses; btVector3 m_lv; btVector3 m_av; btDbvtNode* m_leaf; btScalar m_ndamping; /* Node damping */ btScalar m_ldamping; /* Linear damping */ btScalar m_adamping; /* Angular damping */ btScalar m_matching; bool m_collide; int m_clusterIndex; Cluster() : m_leaf(0),m_ndamping(0),m_ldamping(0),m_adamping(0),m_matching(0) {} }; /* Impulse */ struct Impulse { btVector3 m_velocity; btVector3 m_drift; int m_asVelocity:1; int m_asDrift:1; Impulse() : m_velocity(0,0,0),m_drift(0,0,0),m_asVelocity(0),m_asDrift(0) {} Impulse operator -() const { Impulse i=*this; i.m_velocity=-i.m_velocity; i.m_drift=-i.m_drift; return(i); } Impulse operator*(btScalar x) const { Impulse i=*this; i.m_velocity*=x; i.m_drift*=x; return(i); } }; /* Body */ struct Body { Cluster* m_soft; btRigidBody* m_rigid; btCollisionObject* m_collisionObject; Body() : m_soft(0),m_rigid(0),m_collisionObject(0) {} Body(Cluster* p) : m_soft(p),m_rigid(0),m_collisionObject(0) {} Body(btCollisionObject* colObj) : m_soft(0),m_collisionObject(colObj) { m_rigid = btRigidBody::upcast(m_collisionObject); } void activate() const { if(m_rigid) m_rigid->activate(); } const btMatrix3x3& invWorldInertia() const { static const btMatrix3x3 iwi(0,0,0,0,0,0,0,0,0); if(m_rigid) return(m_rigid->getInvInertiaTensorWorld()); if(m_soft) return(m_soft->m_invwi); return(iwi); } btScalar invMass() const { if(m_rigid) return(m_rigid->getInvMass()); if(m_soft) return(m_soft->m_imass); return(0); } const btTransform& xform() const { static const btTransform identity=btTransform::getIdentity(); if(m_collisionObject) return(m_collisionObject->getInterpolationWorldTransform()); if(m_soft) return(m_soft->m_framexform); return(identity); } btVector3 linearVelocity() const { if(m_rigid) return(m_rigid->getLinearVelocity()); if(m_soft) return(m_soft->m_lv); return(btVector3(0,0,0)); } btVector3 angularVelocity(const btVector3& rpos) const { if(m_rigid) return(cross(m_rigid->getAngularVelocity(),rpos)); if(m_soft) return(cross(m_soft->m_av,rpos)); return(btVector3(0,0,0)); } btVector3 angularVelocity() const { if(m_rigid) return(m_rigid->getAngularVelocity()); if(m_soft) return(m_soft->m_av); return(btVector3(0,0,0)); } btVector3 velocity(const btVector3& rpos) const { return(linearVelocity()+angularVelocity(rpos)); } void applyVImpulse(const btVector3& impulse,const btVector3& rpos) const { if(m_rigid) m_rigid->applyImpulse(impulse,rpos); if(m_soft) btSoftBody::clusterVImpulse(m_soft,rpos,impulse); } void applyDImpulse(const btVector3& impulse,const btVector3& rpos) const { if(m_rigid) m_rigid->applyImpulse(impulse,rpos); if(m_soft) btSoftBody::clusterDImpulse(m_soft,rpos,impulse); } void applyImpulse(const Impulse& impulse,const btVector3& rpos) const { if(impulse.m_asVelocity) applyVImpulse(impulse.m_velocity,rpos); if(impulse.m_asDrift) applyDImpulse(impulse.m_drift,rpos); } void applyVAImpulse(const btVector3& impulse) const { if(m_rigid) m_rigid->applyTorqueImpulse(impulse); if(m_soft) btSoftBody::clusterVAImpulse(m_soft,impulse); } void applyDAImpulse(const btVector3& impulse) const { if(m_rigid) m_rigid->applyTorqueImpulse(impulse); if(m_soft) btSoftBody::clusterDAImpulse(m_soft,impulse); } void applyAImpulse(const Impulse& impulse) const { if(impulse.m_asVelocity) applyVAImpulse(impulse.m_velocity); if(impulse.m_asDrift) applyDAImpulse(impulse.m_drift); } void applyDCImpulse(const btVector3& impulse) const { if(m_rigid) m_rigid->applyCentralImpulse(impulse); if(m_soft) btSoftBody::clusterDCImpulse(m_soft,impulse); } }; /* Joint */ struct Joint { struct eType { enum _ { Linear, Angular, Contact };}; struct Specs { Specs() : erp(1),cfm(1),split(1) {} btScalar erp; btScalar cfm; btScalar split; }; Body m_bodies[2]; btVector3 m_refs[2]; btScalar m_cfm; btScalar m_erp; btScalar m_split; btVector3 m_drift; btVector3 m_sdrift; btMatrix3x3 m_massmatrix; bool m_delete; virtual ~Joint() {} Joint() : m_delete(false) {} virtual void Prepare(btScalar dt,int iterations); virtual void Solve(btScalar dt,btScalar sor)=0; virtual void Terminate(btScalar dt)=0; virtual eType::_ Type() const=0; }; /* LJoint */ struct LJoint : Joint { struct Specs : Joint::Specs { btVector3 position; }; btVector3 m_rpos[2]; void Prepare(btScalar dt,int iterations); void Solve(btScalar dt,btScalar sor); void Terminate(btScalar dt); eType::_ Type() const { return(eType::Linear); } }; /* AJoint */ struct AJoint : Joint { struct IControl { virtual void Prepare(AJoint*) {} virtual btScalar Speed(AJoint*,btScalar current) { return(current); } static IControl* Default() { static IControl def;return(&def); } }; struct Specs : Joint::Specs { Specs() : icontrol(IControl::Default()) {} btVector3 axis; IControl* icontrol; }; btVector3 m_axis[2]; IControl* m_icontrol; void Prepare(btScalar dt,int iterations); void Solve(btScalar dt,btScalar sor); void Terminate(btScalar dt); eType::_ Type() const { return(eType::Angular); } }; /* CJoint */ struct CJoint : Joint { int m_life; int m_maxlife; btVector3 m_rpos[2]; btVector3 m_normal; btScalar m_friction; void Prepare(btScalar dt,int iterations); void Solve(btScalar dt,btScalar sor); void Terminate(btScalar dt); eType::_ Type() const { return(eType::Contact); } }; /* Config */ struct Config { eAeroModel::_ aeromodel; // Aerodynamic model (default: V_Point) btScalar kVCF; // Velocities correction factor (Baumgarte) btScalar kDP; // Damping coefficient [0,1] btScalar kDG; // Drag coefficient [0,+inf] btScalar kLF; // Lift coefficient [0,+inf] btScalar kPR; // Pressure coefficient [-inf,+inf] btScalar kVC; // Volume conversation coefficient [0,+inf] btScalar kDF; // Dynamic friction coefficient [0,1] btScalar kMT; // Pose matching coefficient [0,1] btScalar kCHR; // Rigid contacts hardness [0,1] btScalar kKHR; // Kinetic contacts hardness [0,1] btScalar kSHR; // Soft contacts hardness [0,1] btScalar kAHR; // Anchors hardness [0,1] btScalar kSRHR_CL; // Soft vs rigid hardness [0,1] (cluster only) btScalar kSKHR_CL; // Soft vs kinetic hardness [0,1] (cluster only) btScalar kSSHR_CL; // Soft vs soft hardness [0,1] (cluster only) btScalar kSR_SPLT_CL; // Soft vs rigid impulse split [0,1] (cluster only) btScalar kSK_SPLT_CL; // Soft vs rigid impulse split [0,1] (cluster only) btScalar kSS_SPLT_CL; // Soft vs rigid impulse split [0,1] (cluster only) btScalar maxvolume; // Maximum volume ratio for pose btScalar timescale; // Time scale int viterations; // Velocities solver iterations int piterations; // Positions solver iterations int diterations; // Drift solver iterations int citerations; // Cluster solver iterations int collisions; // Collisions flags tVSolverArray m_vsequence; // Velocity solvers sequence tPSolverArray m_psequence; // Position solvers sequence tPSolverArray m_dsequence; // Drift solvers sequence }; /* SolverState */ struct SolverState { btScalar sdt; // dt*timescale btScalar isdt; // 1/sdt btScalar velmrg; // velocity margin btScalar radmrg; // radial margin btScalar updmrg; // Update margin }; /// RayFromToCaster takes a ray from, ray to (instead of direction!) struct RayFromToCaster : btDbvt::ICollide { btVector3 m_rayFrom; btVector3 m_rayTo; btVector3 m_rayNormalizedDirection; btScalar m_mint; Face* m_face; int m_tests; RayFromToCaster(const btVector3& rayFrom,const btVector3& rayTo,btScalar mxt); void Process(const btDbvtNode* leaf); static inline btScalar rayFromToTriangle(const btVector3& rayFrom, const btVector3& rayTo, const btVector3& rayNormalizedDirection, const btVector3& a, const btVector3& b, const btVector3& c, btScalar maxt=SIMD_INFINITY); }; // // Typedef's // typedef void (*psolver_t)(btSoftBody*,btScalar,btScalar); typedef void (*vsolver_t)(btSoftBody*,btScalar); typedef btAlignedObjectArray<Cluster*> tClusterArray; typedef btAlignedObjectArray<Note> tNoteArray; typedef btAlignedObjectArray<Node> tNodeArray; typedef btAlignedObjectArray<btDbvtNode*> tLeafArray; typedef btAlignedObjectArray<Link> tLinkArray; typedef btAlignedObjectArray<Face> tFaceArray; typedef btAlignedObjectArray<Anchor> tAnchorArray; typedef btAlignedObjectArray<RContact> tRContactArray; typedef btAlignedObjectArray<SContact> tSContactArray; typedef btAlignedObjectArray<Material*> tMaterialArray; typedef btAlignedObjectArray<Joint*> tJointArray; typedef btAlignedObjectArray<btSoftBody*> tSoftBodyArray; // // Fields // Config m_cfg; // Configuration SolverState m_sst; // Solver state Pose m_pose; // Pose void* m_tag; // User data btSoftBodyWorldInfo* m_worldInfo; // World info tNoteArray m_notes; // Notes tNodeArray m_nodes; // Nodes tLinkArray m_links; // Links tFaceArray m_faces; // Faces tAnchorArray m_anchors; // Anchors tRContactArray m_rcontacts; // Rigid contacts tSContactArray m_scontacts; // Soft contacts tJointArray m_joints; // Joints tMaterialArray m_materials; // Materials btScalar m_timeacc; // Time accumulator btVector3 m_bounds[2]; // Spatial bounds bool m_bUpdateRtCst; // Update runtime constants btDbvt m_ndbvt; // Nodes tree btDbvt m_fdbvt; // Faces tree btDbvt m_cdbvt; // Clusters tree tClusterArray m_clusters; // Clusters btAlignedObjectArray<bool>m_clusterConnectivity;//cluster connectivity, for self-collision btTransform m_initialWorldTransform; // // Api // /* ctor */ btSoftBody( btSoftBodyWorldInfo* worldInfo,int node_count, const btVector3* x, const btScalar* m); /* dtor */ virtual ~btSoftBody(); /* Check for existing link */ btAlignedObjectArray<int> m_userIndexMapping; btSoftBodyWorldInfo* getWorldInfo() { return m_worldInfo; } ///@todo: avoid internal softbody shape hack and move collision code to collision library virtual void setCollisionShape(btCollisionShape* collisionShape) { } bool checkLink( int node0, int node1) const; bool checkLink( const Node* node0, const Node* node1) const; /* Check for existring face */ bool checkFace( int node0, int node1, int node2) const; /* Append material */ Material* appendMaterial(); /* Append note */ void appendNote( const char* text, const btVector3& o, const btVector4& c=btVector4(1,0,0,0), Node* n0=0, Node* n1=0, Node* n2=0, Node* n3=0); void appendNote( const char* text, const btVector3& o, Node* feature); void appendNote( const char* text, const btVector3& o, Link* feature); void appendNote( const char* text, const btVector3& o, Face* feature); /* Append node */ void appendNode( const btVector3& x,btScalar m); /* Append link */ void appendLink(int model=-1,Material* mat=0); void appendLink( int node0, int node1, Material* mat=0, bool bcheckexist=false); void appendLink( Node* node0, Node* node1, Material* mat=0, bool bcheckexist=false); /* Append face */ void appendFace(int model=-1,Material* mat=0); void appendFace( int node0, int node1, int node2, Material* mat=0); /* Append anchor */ void appendAnchor( int node, btRigidBody* body, bool disableCollisionBetweenLinkedBodies=false); /* Append linear joint */ void appendLinearJoint(const LJoint::Specs& specs,Cluster* body0,Body body1); void appendLinearJoint(const LJoint::Specs& specs,Body body=Body()); void appendLinearJoint(const LJoint::Specs& specs,btSoftBody* body); /* Append linear joint */ void appendAngularJoint(const AJoint::Specs& specs,Cluster* body0,Body body1); void appendAngularJoint(const AJoint::Specs& specs,Body body=Body()); void appendAngularJoint(const AJoint::Specs& specs,btSoftBody* body); /* Add force (or gravity) to the entire body */ void addForce( const btVector3& force); /* Add force (or gravity) to a node of the body */ void addForce( const btVector3& force, int node); /* Add velocity to the entire body */ void addVelocity( const btVector3& velocity); /* Set velocity for the entire body */ void setVelocity( const btVector3& velocity); /* Add velocity to a node of the body */ void addVelocity( const btVector3& velocity, int node); /* Set mass */ void setMass( int node, btScalar mass); /* Get mass */ btScalar getMass( int node) const; /* Get total mass */ btScalar getTotalMass() const; /* Set total mass (weighted by previous masses) */ void setTotalMass( btScalar mass, bool fromfaces=false); /* Set total density */ void setTotalDensity(btScalar density); /* Transform */ void transform( const btTransform& trs); /* Translate */ void translate( const btVector3& trs); /* Rotate */ void rotate( const btQuaternion& rot); /* Scale */ void scale( const btVector3& scl); /* Set current state as pose */ void setPose( bool bvolume, bool bframe); /* Return the volume */ btScalar getVolume() const; /* Cluster count */ int clusterCount() const; /* Cluster center of mass */ static btVector3 clusterCom(const Cluster* cluster); btVector3 clusterCom(int cluster) const; /* Cluster velocity at rpos */ static btVector3 clusterVelocity(const Cluster* cluster,const btVector3& rpos); /* Cluster impulse */ static void clusterVImpulse(Cluster* cluster,const btVector3& rpos,const btVector3& impulse); static void clusterDImpulse(Cluster* cluster,const btVector3& rpos,const btVector3& impulse); static void clusterImpulse(Cluster* cluster,const btVector3& rpos,const Impulse& impulse); static void clusterVAImpulse(Cluster* cluster,const btVector3& impulse); static void clusterDAImpulse(Cluster* cluster,const btVector3& impulse); static void clusterAImpulse(Cluster* cluster,const Impulse& impulse); static void clusterDCImpulse(Cluster* cluster,const btVector3& impulse); /* Generate bending constraints based on distance in the adjency graph */ int generateBendingConstraints( int distance, Material* mat=0); /* Randomize constraints to reduce solver bias */ void randomizeConstraints(); /* Release clusters */ void releaseCluster(int index); void releaseClusters(); /* Generate clusters (K-mean) */ int generateClusters(int k,int maxiterations=8192); /* Refine */ void refine(ImplicitFn* ifn,btScalar accurary,bool cut); /* CutLink */ bool cutLink(int node0,int node1,btScalar position); bool cutLink(const Node* node0,const Node* node1,btScalar position); ///Ray casting using rayFrom and rayTo in worldspace, (not direction!) bool rayTest(const btVector3& rayFrom, const btVector3& rayTo, sRayCast& results); /* Solver presets */ void setSolver(eSolverPresets::_ preset); /* predictMotion */ void predictMotion(btScalar dt); /* solveConstraints */ void solveConstraints(); /* staticSolve */ void staticSolve(int iterations); /* solveCommonConstraints */ static void solveCommonConstraints(btSoftBody** bodies,int count,int iterations); /* solveClusters */ static void solveClusters(const btAlignedObjectArray<btSoftBody*>& bodies); /* integrateMotion */ void integrateMotion(); /* defaultCollisionHandlers */ void defaultCollisionHandler(btCollisionObject* pco); void defaultCollisionHandler(btSoftBody* psb); // // Cast // static const btSoftBody* upcast(const btCollisionObject* colObj) { if (colObj->getInternalType()==CO_SOFT_BODY) return (const btSoftBody*)colObj; return 0; } static btSoftBody* upcast(btCollisionObject* colObj) { if (colObj->getInternalType()==CO_SOFT_BODY) return (btSoftBody*)colObj; return 0; } // // ::btCollisionObject // virtual void getAabb(btVector3& aabbMin,btVector3& aabbMax) const { aabbMin = m_bounds[0]; aabbMax = m_bounds[1]; } // // Private // void pointersToIndices(); void indicesToPointers(const int* map=0); int rayTest(const btVector3& rayFrom,const btVector3& rayTo, btScalar& mint,eFeature::_& feature,int& index,bool bcountonly) const; void initializeFaceTree(); btVector3 evaluateCom() const; bool checkContact(btCollisionObject* colObj,const btVector3& x,btScalar margin,btSoftBody::sCti& cti) const; void updateNormals(); void updateBounds(); void updatePose(); void updateConstants(); void initializeClusters(); void updateClusters(); void cleanupClusters(); void prepareClusters(int iterations); void solveClusters(btScalar sor); void applyClusters(bool drift); void dampClusters(); void applyForces(); static void PSolve_Anchors(btSoftBody* psb,btScalar kst,btScalar ti); static void PSolve_RContacts(btSoftBody* psb,btScalar kst,btScalar ti); static void PSolve_SContacts(btSoftBody* psb,btScalar,btScalar ti); static void PSolve_Links(btSoftBody* psb,btScalar kst,btScalar ti); static void VSolve_Links(btSoftBody* psb,btScalar kst); static psolver_t getSolver(ePSolver::_ solver); static vsolver_t getSolver(eVSolver::_ solver); }; #endif //_BT_SOFT_BODY_H
{ "content_hash": "087f11c2898db7a1a1702235ea911bfd", "timestamp": "", "source": "github", "line_count": 835, "max_line_length": 112, "avg_line_length": 30.166467065868265, "alnum_prop": 0.6525467465957362, "repo_name": "iosengineer/zombieArcade", "id": "4d6497ab6c0b721461aecdf88f0e0ba2eb652e31", "size": "26134", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "Stormforge/ext/bullet/btSoftBody.h", "mode": "33188", "license": "mit", "language": [ { "name": "C", "bytes": "3311769" }, { "name": "C++", "bytes": "1714898" }, { "name": "Objective-C", "bytes": "958095" }, { "name": "Python", "bytes": "70408" }, { "name": "Shell", "bytes": "151" } ], "symlink_target": "" }
package org.jcodec.codecs.vpx.vp8; import java.util.Arrays; import org.jcodec.codecs.vpx.vp8.data.BlockD; import org.jcodec.codecs.vpx.vp8.data.CommonData; import org.jcodec.codecs.vpx.vp8.data.Compressor; import org.jcodec.codecs.vpx.vp8.data.Macroblock; import org.jcodec.codecs.vpx.vp8.data.MacroblockD; import org.jcodec.codecs.vpx.vp8.data.ModeInfo; import org.jcodec.codecs.vpx.vp8.data.OnyxInt; import org.jcodec.codecs.vpx.vp8.data.PickInfoReturn; import org.jcodec.codecs.vpx.vp8.data.QuantCommon; import org.jcodec.codecs.vpx.vp8.data.ReferenceCounts; import org.jcodec.codecs.vpx.vp8.data.TokenExtra; import org.jcodec.codecs.vpx.vp8.data.UsecTimer; import org.jcodec.codecs.vpx.vp8.data.YV12buffer; import org.jcodec.codecs.vpx.vp8.enums.FrameType; import org.jcodec.codecs.vpx.vp8.enums.MBPredictionMode; import org.jcodec.codecs.vpx.vp8.enums.MVReferenceFrame; import org.jcodec.codecs.vpx.vp8.enums.Tuning; import org.jcodec.codecs.vpx.vp8.pointerhelper.FullAccessGenArrPointer; import org.jcodec.codecs.vpx.vp8.subpixfns.BilinearPredict; import org.jcodec.codecs.vpx.vp8.subpixfns.SixtapPredict; import org.jcodec.codecs.vpx.vp8.subpixfns.SubPixFnCollector; /** * This class is part of JCodec ( www.jcodec.org ) This software is distributed * under FreeBSD License. * * The class is a direct java port of libvpx's * (https://github.com/webmproject/libvpx) relevant VP8 code with significant * java oriented refactoring. * * @author The JCodec project * */ public class EncodeFrame { public static final int VP8_ACTIVITY_AVG_MIN = 64; static int alt_activity_measure(Compressor cpi, Macroblock x, boolean use_dc_pred) { return EncodeIntra.vp8_encode_intra(cpi, x, use_dc_pred); } static int mb_activity_measure(Compressor cpi, Macroblock x, int mb_row, int mb_col) { int mb_activity; boolean use_dc_pred = (mb_col != 0 || mb_row != 0) && (mb_col == 0 || mb_row == 0); /* Or use and alternative. */ mb_activity = alt_activity_measure(cpi, x, use_dc_pred); if (mb_activity < VP8_ACTIVITY_AVG_MIN) mb_activity = VP8_ACTIVITY_AVG_MIN; return mb_activity; } /* Calculate an "average" mb activity value for the frame */ static void calc_av_activity(Compressor cpi, long activity_sum) { /* Simple mean for now */ cpi.activity_avg = (int) (activity_sum / cpi.common.MBs); if (cpi.activity_avg < VP8_ACTIVITY_AVG_MIN) { cpi.activity_avg = VP8_ACTIVITY_AVG_MIN; } /* Experimental code: return fixed value normalized for several clips */ cpi.activity_avg = 100000; } /* * Loop through all MBs. Note activity of each, average activity and calculate a * normalized activity for each */ static void build_activity_map(Compressor cpi) { Macroblock x = cpi.mb; MacroblockD xd = x.e_mbd; CommonData cm = cpi.common; YV12buffer new_yv12 = cm.yv12_fb[cm.new_fb_idx]; int recon_y_stride = new_yv12.y_stride; int mb_row, mb_col; int mb_activity; long activity_sum = 0; xd.dst.y_buffer = new_yv12.y_buffer.shallowCopy(); /* for each macroblock row in image */ for (mb_row = 0; mb_row < cm.mb_rows; ++mb_row) { /* reset above block coeffs */ xd.up_available = (mb_row != 0); xd.dst.y_buffer.incBy(mb_row * recon_y_stride * 16); /* for each macroblock col in image */ for (mb_col = 0; mb_col < cm.mb_cols; ++mb_col) { xd.left_available = (mb_col != 0); /* Copy current mb to a buffer */ CommonUtils.vp8_copy_mem16x16(x.src.y_buffer, x.src.y_stride, x.thismb, 16); /* measure activity */ mb_activity = mb_activity_measure(cpi, x, mb_row, mb_col); /* Keep frame sum */ activity_sum += mb_activity; /* Store MB level activity details. */ x.mb_activity_ptr.setAndInc((short) mb_activity); /* adjust to the next column of source macroblocks */ x.src.y_buffer.incBy(16); xd.dst.y_buffer.incBy(16); } xd.dst.y_buffer.incBy(16 * cm.mb_cols); /* adjust to the next row of mbs */ x.src.y_buffer.incBy(16 * x.src.y_stride - 16 * cm.mb_cols); /* extend the recon for intra prediction */ Extend.vp8_extend_mb_row(new_yv12, xd.dst.y_buffer.shallowCopyWithPosInc(16), xd.dst.u_buffer.shallowCopyWithPosInc(8), xd.dst.v_buffer.shallowCopyWithPosInc(8)); } /* Calculate an "average" MB activity */ calc_av_activity(cpi, activity_sum); } /* Macroblock activity masking */ static void vp8_activity_masking(Compressor cpi, Macroblock x) { long a; long b; long act = x.mb_activity_ptr.get(); /* Apply the masking to the RD multiplier. */ a = act + (2 * cpi.activity_avg); b = (2 * act) + cpi.activity_avg; x.rdmult = (int) (((long) x.rdmult * b + (a >> 1)) / a); x.errorperbit = x.rdmult * 100 / (110 * x.rddiv); x.errorperbit += (x.errorperbit == 0 ? 1 : 0); /* Activity based Zbin adjustment */ adjust_act_zbin(cpi, x); } static void adjust_act_zbin(Compressor cpi, Macroblock x) { long a; long b; long act = x.mb_activity_ptr.get(); /* Apply the masking to the RD multiplier. */ a = act + 4 * cpi.activity_avg; b = 4 * act + cpi.activity_avg; if (act > cpi.activity_avg) { x.act_zbin_adj = (int) (((long) b + (a >> 1)) / a) - 1; } else { x.act_zbin_adj = 1 - (int) (((long) a + (b >> 1)) / b); } } static void sum_intra_stats(Compressor cpi, Macroblock x) { final ModeInfo mi = x.e_mbd.mode_info_context.get(); final MBPredictionMode m = mi.mbmi.mode; final MBPredictionMode uvm = mi.mbmi.uv_mode; ++x.ymode_count[m.ordinal()]; ++x.uv_mode_count[uvm.ordinal()]; } static long vp8cx_encode_intra_macroblock(Compressor cpi, Macroblock x, FullAccessGenArrPointer<TokenExtra> t) { MacroblockD xd = x.e_mbd; long rate; ModeInfo mi = x.e_mbd.mode_info_context.get(); if (cpi.sf.RD && cpi.compressor_speed != 2) { rate = RDOpt.vp8_rd_pick_intra_mode(x); } else { rate = x.interPicker.vp8_pick_intra_mode(x); } if (cpi.oxcf.tuning == Tuning.TUNE_SSIM) { adjust_act_zbin(cpi, x); Quantize.vp8_update_zbin_extra(cpi, x); } if (mi.mbmi.mode == MBPredictionMode.B_PRED) { EncodeIntra.vp8_encode_intra4x4mby(x); } else { EncodeIntra.vp8_encode_intra16x16mby(x); } EncodeIntra.vp8_encode_intra16x16mbuv(x); sum_intra_stats(cpi, x); Tokenize.vp8_tokenize_mb(cpi, x, t); if (mi.mbmi.mode != MBPredictionMode.B_PRED) InvTrans.vp8_inverse_transform_mby(xd); IDCTBlk.vp8_dequant_idct_add_uv_block(xd.qcoeff.shallowCopyWithPosInc(16 * 16), xd.dequant_uv, xd.dst.u_buffer, xd.dst.v_buffer, xd.dst.uv_stride, xd.eobs.shallowCopyWithPosInc(16)); return rate; } static int vp8cx_encode_inter_macroblock(Compressor cpi, Macroblock x, FullAccessGenArrPointer<TokenExtra> t, int recon_yoffset, int recon_uvoffset, int mb_row, int mb_col) { MacroblockD xd = x.e_mbd; PickInfoReturn retDetails = new PickInfoReturn(); x.skip = false; ModeInfo mi = xd.mode_info_context.get(); if (xd.segmentation_enabled != 0) { x.encode_breakout = cpi.segment_encode_breakout[mi.mbmi.segment_id]; } else { x.encode_breakout = cpi.oxcf.encode_breakout; } if (cpi.sf.RD) { boolean zbin_mode_boost_enabled = x.zbin_mode_boost_enabled; /* Are we using the fast quantizer for the mode selection? */ if (cpi.sf.use_fastquant_for_pick) { x.quantize_b = Quantize.fastQuant; /* * the fast quantizer does not use zbin_extra, so do not recalculate */ x.zbin_mode_boost_enabled = false; } RDOpt.vp8_rd_pick_inter_mode(cpi, x, recon_yoffset, recon_uvoffset, retDetails, mb_row, mb_col); /* switch back to the regular quantizer for the encode */ if (cpi.sf.improved_quant) { x.quantize_b = Quantize.regularQuant; } /* restore cpi.zbin_mode_boost_enabled */ x.zbin_mode_boost_enabled = zbin_mode_boost_enabled; } else { x.interPicker.pickInterMode(cpi, x, recon_yoffset, recon_uvoffset, retDetails, mb_row, mb_col); } x.prediction_error += retDetails.distortion; x.intra_error += x.skip ? 0 : retDetails.intra; if (cpi.oxcf.tuning == Tuning.TUNE_SSIM) { /* Adjust the zbin based on this MB rate. */ adjust_act_zbin(cpi, x); } /* MB level adjutment to quantizer setup */ if (xd.segmentation_enabled != 0) { /* If cyclic update enabled */ if (cpi.current_layer == 0 && cpi.cyclic_refresh_mode_enabled) { /* Clear segment_id back to 0 if not coded (last frame 0,0) */ if ((mi.mbmi.segment_id == 1) && ((mi.mbmi.ref_frame != MVReferenceFrame.LAST_FRAME) || (mi.mbmi.mode != MBPredictionMode.ZEROMV))) { mi.mbmi.segment_id = 0; /* segment_id changed, so update */ Quantize.vp8cx_mb_init_quantizer(cpi, x, true); } } } { /* * Experimental code. Special case for gf and arf zeromv modes, for 1 temporal * layer. Increase zbin size to supress noise. */ x.zbin_mode_boost = 0; if (x.zbin_mode_boost_enabled) { if (mi.mbmi.ref_frame != MVReferenceFrame.INTRA_FRAME) { if (mi.mbmi.mode == MBPredictionMode.ZEROMV) { if (mi.mbmi.ref_frame != MVReferenceFrame.LAST_FRAME && cpi.oxcf.number_of_layers == 1) { x.zbin_mode_boost = OnyxInt.GF_ZEROMV_ZBIN_BOOST; } else { x.zbin_mode_boost = OnyxInt.LF_ZEROMV_ZBIN_BOOST; } } else if (mi.mbmi.mode == MBPredictionMode.SPLITMV) { x.zbin_mode_boost = 0; } else { x.zbin_mode_boost = OnyxInt.MV_ZBIN_BOOST; } } } /* * The fast quantizer doesn't use zbin_extra, only do so with the regular * quantizer. */ if (cpi.sf.improved_quant) Quantize.vp8_update_zbin_extra(cpi, x); } { MVReferenceFrame rf = mi.mbmi.ref_frame; x.count_mb_ref_frame_usage.put(rf, x.count_mb_ref_frame_usage.get(rf) + 1); } if (mi.mbmi.ref_frame == MVReferenceFrame.INTRA_FRAME) { EncodeIntra.vp8_encode_intra16x16mbuv(x); if (mi.mbmi.mode == MBPredictionMode.B_PRED) { EncodeIntra.vp8_encode_intra4x4mby(x); } else { EncodeIntra.vp8_encode_intra16x16mby(x); } sum_intra_stats(cpi, x); } else { int ref_fb_idx; ref_fb_idx = cpi.common.frameIdxs.get(mi.mbmi.ref_frame); xd.pre.y_buffer = cpi.common.yv12_fb[ref_fb_idx].y_buffer.shallowCopyWithPosInc(recon_yoffset); xd.pre.u_buffer = cpi.common.yv12_fb[ref_fb_idx].u_buffer.shallowCopyWithPosInc(recon_uvoffset); xd.pre.v_buffer = cpi.common.yv12_fb[ref_fb_idx].v_buffer.shallowCopyWithPosInc(recon_uvoffset); if (!x.skip) { EncodeMB.vp8_encode_inter16x16(x); } else { ReconInter.vp8_build_inter16x16_predictors_mb(xd, xd.dst.y_buffer, xd.dst.u_buffer, xd.dst.v_buffer, xd.dst.y_stride, xd.dst.uv_stride); } } if (!x.skip) { Tokenize.vp8_tokenize_mb(cpi, x, t); if (mi.mbmi.mode != MBPredictionMode.B_PRED) { InvTrans.vp8_inverse_transform_mby(xd); } IDCTBlk.vp8_dequant_idct_add_uv_block(xd.qcoeff.shallowCopyWithPosInc(16 * 16), xd.dequant_uv, xd.dst.u_buffer, xd.dst.v_buffer, xd.dst.uv_stride, xd.eobs.shallowCopyWithPosInc(16)); } else { /* always set mb_skip_coeff as it is needed by the loopfilter */ mi.mbmi.mb_skip_coeff = true; if (cpi.common.mb_no_coeff_skip) { x.skip_true_count++; Tokenize.vp8_fix_contexts(xd); } else { Tokenize.vp8_stuff_mb(cpi, x, t); } } return retDetails.rate; } static void encode_mb_row(Compressor cpi, CommonData cm, int mb_row, Macroblock x, MacroblockD xd, FullAccessGenArrPointer<TokenExtra> tp, int[] segment_counts, long[] totalrate) { int recon_yoffset, recon_uvoffset; int mb_col; int ref_fb_idx = cm.frameIdxs.get(MVReferenceFrame.LAST_FRAME); int dst_fb_idx = cm.new_fb_idx; int recon_y_stride = cm.yv12_fb[ref_fb_idx].y_stride; int recon_uv_stride = cm.yv12_fb[ref_fb_idx].uv_stride; int map_index = (mb_row * cpi.common.mb_cols); /* reset above block coeffs */ xd.above_context = cm.above_context.shallowCopy(); xd.up_available = (mb_row != 0); recon_yoffset = (mb_row * recon_y_stride * 16); recon_uvoffset = (mb_row * recon_uv_stride * 8); xd.dst.y_buffer = cm.yv12_fb[dst_fb_idx].y_buffer.shallowCopyWithPosInc(recon_yoffset); xd.dst.u_buffer = cm.yv12_fb[dst_fb_idx].u_buffer.shallowCopyWithPosInc(recon_uvoffset); xd.dst.v_buffer = cm.yv12_fb[dst_fb_idx].v_buffer.shallowCopyWithPosInc(recon_uvoffset); cpi.tplist[mb_row].start = tp.shallowCopy(); /* * Distance of Mb to the top & bottom edges, specified in 1/8th pel units as * they are always compared to values that are in 1/8th pel */ xd.mb_to_top_edge = -((mb_row * 16) << 3); xd.mb_to_bottom_edge = ((cm.mb_rows - 1 - mb_row) * 16) << 3; /* * Set up limit values for vertical motion vector components to prevent them * extending beyond the UMV borders */ x.mv_row_min = (short) (-((mb_row * 16) + (YV12buffer.VP8BORDERINPIXELS - 16))); x.mv_row_max = (short) (((cm.mb_rows - 1 - mb_row) * 16) + (YV12buffer.VP8BORDERINPIXELS - 16)); /* Set the mb activity pointer to the start of the row. */ x.mb_activity_ptr = cpi.mb_activity_map.shallowCopyWithPosInc(map_index); /* for each macroblock col in image */ for (mb_col = 0; mb_col < cm.mb_cols; ++mb_col) { ModeInfo mi = xd.mode_info_context.get(); /* * Distance of Mb to the left & right edges, specified in 1/8th pel units as * they are always compared to values that are in 1/8th pel units */ xd.mb_to_left_edge = -((mb_col * 16) << 3); xd.mb_to_right_edge = ((cm.mb_cols - 1 - mb_col) * 16) << 3; /* * Set up limit values for horizontal motion vector components to prevent them * extending beyond the UMV borders */ x.mv_col_min = (short) (-((mb_col * 16) + (YV12buffer.VP8BORDERINPIXELS - 16))); x.mv_col_max = (short) (((cm.mb_cols - 1 - mb_col) * 16) + (YV12buffer.VP8BORDERINPIXELS - 16)); xd.left_available = (mb_col != 0); x.rddiv = cpi.RDDIV; x.rdmult = cpi.RDMULT; /* Copy current mb to a buffer */ CommonUtils.vp8_copy_mem16x16(x.src.y_buffer, x.src.y_stride, x.thismb, 16); if (cpi.oxcf.tuning == Tuning.TUNE_SSIM) vp8_activity_masking(cpi, x); /* Is segmentation enabled */ /* MB level adjustment to quantizer */ if (xd.segmentation_enabled != 0) { /* * Code to set segment id in xd.mbmi.segment_id for current MB (with range * checking) */ if (cpi.segmentation_map[map_index + mb_col] <= 3) { mi.mbmi.segment_id = cpi.segmentation_map[map_index + mb_col]; } else { mi.mbmi.segment_id = 0; } Quantize.vp8cx_mb_init_quantizer(cpi, x, true); } else { /* Set to Segment 0 by default */ mi.mbmi.segment_id = 0; } x.active_ptr = cpi.active_map.shallowCopyWithPosInc(map_index + mb_col); if (cm.frame_type == FrameType.KEY_FRAME) { totalrate[0] += vp8cx_encode_intra_macroblock(cpi, x, tp); } else { totalrate[0] += vp8cx_encode_inter_macroblock(cpi, x, tp, recon_yoffset, recon_uvoffset, mb_row, mb_col); // Keep track of how many (consecutive) times a block is coded // as ZEROMV_LASTREF, for base layer frames. // Reset to 0 if its coded as anything else. if (cpi.current_layer == 0) { if (mi.mbmi.mode == MBPredictionMode.ZEROMV && mi.mbmi.ref_frame == MVReferenceFrame.LAST_FRAME) { // Increment, check for wrap-around. if (cpi.consec_zero_last[map_index + mb_col] < 255) { cpi.consec_zero_last[map_index + mb_col] += 1; } if (cpi.consec_zero_last_mvbias[map_index + mb_col] < 255) { cpi.consec_zero_last_mvbias[map_index + mb_col] += 1; } } else { cpi.consec_zero_last[map_index + mb_col] = 0; cpi.consec_zero_last_mvbias[map_index + mb_col] = 0; } if (x.zero_last_dot_suppress) { cpi.consec_zero_last_mvbias[map_index + mb_col] = 0; } } /* * Special case code for cyclic refresh If cyclic update enabled then copy * xd.mbmi.segment_id; (which may have been updated based on mode during * vp8cx_encode_inter_macroblock()) back into the global segmentation map */ if ((cpi.current_layer == 0) && (cpi.cyclic_refresh_mode_enabled && xd.segmentation_enabled != 0)) { cpi.segmentation_map[map_index + mb_col] = mi.mbmi.segment_id; /* * If the block has been refreshed mark it as clean (the magnitude of the -ve * influences how long it will be before we consider another refresh): Else if * it was coded (last frame 0,0) and has not already been refreshed then mark it * as a candidate for cleanup next time (marked 0) else mark it as dirty (1). */ if (mi.mbmi.segment_id != 0) { cpi.cyclic_refresh_map[map_index + mb_col] = -1; } else if ((mi.mbmi.mode == MBPredictionMode.ZEROMV) && (mi.mbmi.ref_frame == MVReferenceFrame.LAST_FRAME)) { if (cpi.cyclic_refresh_map[map_index + mb_col] == 1) { cpi.cyclic_refresh_map[map_index + mb_col] = 0; } } else { cpi.cyclic_refresh_map[map_index + mb_col] = 1; } } } cpi.tplist[mb_row].stop = tp.shallowCopy(); /* Increment pointer into gf usage flags structure. */ x.gf_active_ptr.inc(); /* Increment the activity mask pointers. */ x.mb_activity_ptr.inc(); /* adjust to the next column of macroblocks */ x.src.y_buffer.incBy(16); x.src.u_buffer.incBy(8); x.src.v_buffer.incBy(8); recon_yoffset += 16; recon_uvoffset += 8; xd.dst.y_buffer.incBy(16); xd.dst.u_buffer.incBy(8); xd.dst.v_buffer.incBy(8); /* Keep track of segment usage */ segment_counts[mi.mbmi.segment_id]++; /* skip to next mb */ xd.mode_info_context.inc(); x.partition_info.inc(); xd.above_context.inc(); } /* extend the recon for intra prediction */ Extend.vp8_extend_mb_row(cm.yv12_fb[dst_fb_idx], xd.dst.y_buffer, xd.dst.u_buffer, xd.dst.v_buffer); /* this is to account for the border */ xd.mode_info_context.inc(); x.partition_info.inc(); } static void init_encode_frame_mb_context(Compressor cpi) { cpi.mb.e_mbd.init_encode_frame_mbd_context(cpi); cpi.mb.init_encode_frame_mb_context(cpi); CommonData cm = cpi.common; /* reset intra mode contexts */ if (cm.frame_type == FrameType.KEY_FRAME) cm.fc.vp8_init_mbmode_probs(); /* set up frame for intra coded blocks */ cm.yv12_fb[cm.new_fb_idx].vp8_setup_intra_recon(); for (int kk = 0; kk < cm.mb_cols; kk++) { cm.above_context.getRel(kk).reset(); } } static void vp8_encode_frame(Compressor cpi) { int mb_row; Macroblock x = cpi.mb; CommonData cm = cpi.common; MacroblockD xd = x.e_mbd; FullAccessGenArrPointer<TokenExtra> tp = cpi.tok.shallowCopy(); int[] segment_counts = new int[xd.segmentation_enabled != 0 ? BlockD.MAX_MB_SEGMENTS : 1]; long[] totalrate = new long[1]; CommonUtils.vp8_zero(segment_counts); if (cpi.compressor_speed == 2) { if (cpi.oxcf.getCpu_used() < 0) { cpi.Speed = -(cpi.oxcf.getCpu_used()); } else { RDOpt.vp8_auto_select_speed(cpi); } } /* Functions setup for all frame types so we can use MC in AltRef */ SubPixFnCollector spfncollector = cm.use_bilinear_mc_filter ? BilinearPredict.bilinear : SixtapPredict.sixtap; xd.subpixel_predict = spfncollector.get4x4(); xd.subpixel_predict8x4 = spfncollector.get8x4(); xd.subpixel_predict8x8 = spfncollector.get8x8(); xd.subpixel_predict16x16 = spfncollector.get16x16(); cpi.mb.skip_true_count = 0; cpi.tok_count = 0; xd.mode_info_context = cm.mi.shallowCopy(); CommonUtils.vp8_zero(cpi.mb.MVcount); Quantize.vp8cx_frame_init_quantizer(cpi); RDOpt.vp8_initialize_rd_consts(cpi, x, QuantCommon.doLookup(cm, CommonData.Quant.Y1, CommonData.Comp.DC, cm.base_qindex)); x.vp8cx_initialize_me_consts(cm.base_qindex); if (cpi.oxcf.tuning == Tuning.TUNE_SSIM) { /* Initialize encode frame context. */ init_encode_frame_mb_context(cpi); /* Build a frame level activity map */ build_activity_map(cpi); } /* re-init encode frame context. */ init_encode_frame_mb_context(cpi); { UsecTimer emr_timer = new UsecTimer(); emr_timer.timerStart(); { /* for each macroblock row in image */ for (mb_row = 0; mb_row < cm.mb_rows; ++mb_row) { CommonUtils.vp8_zero(cm.left_context.panes); encode_mb_row(cpi, cm, mb_row, x, xd, tp, segment_counts, totalrate); /* adjust to the next row of mbs */ x.src.y_buffer.incBy(16 * x.src.y_stride - 16 * cm.mb_cols); x.src.u_buffer.incBy(8 * x.src.uv_stride - 8 * cm.mb_cols); x.src.v_buffer.incBy(8 * x.src.uv_stride - 8 * cm.mb_cols); } cpi.tok_count = cpi.tok.pointerDiff(tp); } emr_timer.mark(); cpi.time_encode_mb_row += emr_timer.elapsed(); } // Work out the segment probabilities if segmentation is enabled // and needs to be updated if (xd.segmentation_enabled != 0 && xd.update_mb_segmentation_map) { int tot_count; int i; /* Set to defaults */ Arrays.fill(xd.mb_segment_tree_probs, 255); tot_count = segment_counts[0] + segment_counts[1] + segment_counts[2] + segment_counts[3]; if (tot_count != 0) { xd.mb_segment_tree_probs[0] = ((segment_counts[0] + segment_counts[1]) * 255) / tot_count; tot_count = segment_counts[0] + segment_counts[1]; if (tot_count > 0) { xd.mb_segment_tree_probs[1] = (segment_counts[0] * 255) / tot_count; } tot_count = segment_counts[2] + segment_counts[3]; if (tot_count > 0) { xd.mb_segment_tree_probs[2] = (segment_counts[2] * 255) / tot_count; } /* Zero probabilities not allowed */ for (i = 0; i < BlockD.MB_FEATURE_TREE_PROBS; ++i) { if (xd.mb_segment_tree_probs[i] == 0) xd.mb_segment_tree_probs[i] = 1; } } } /* projected_frame_size in units of BYTES */ cpi.projected_frame_size = (int) (totalrate[0] >> 8); /* Make a note of the percentage MBs coded Intra. */ if (cm.frame_type == FrameType.KEY_FRAME) { cpi.this_frame_percent_intra = 100; } else { final ReferenceCounts rf = cpi.mb.sumReferenceCounts(); if (rf.total != 0) { cpi.this_frame_percent_intra = rf.intra * 100 / rf.total; } } /* * Adjust the projected reference frame usage probability numbers to reflect * what we have just seen. This may be useful when we make multiple iterations * of the recode loop rather than continuing to use values from the previous * frame. */ if ((cm.frame_type != FrameType.KEY_FRAME) && ((cpi.oxcf.number_of_layers > 1) || (!cm.refresh_alt_ref_frame && !cm.refresh_golden_frame))) { BitStream.vp8_convert_rfct_to_prob(cpi); } } }
{ "content_hash": "df93dc7e36eb11ab9593fa5e4f41ed0b", "timestamp": "", "source": "github", "line_count": 680, "max_line_length": 119, "avg_line_length": 39.66323529411765, "alnum_prop": 0.5472544584924549, "repo_name": "jcodec/jcodec", "id": "06dcad52a9cc5c23da1904322a57c0c6eb1ddfb5", "size": "26971", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "src/main/java/org/jcodec/codecs/vpx/vp8/EncodeFrame.java", "mode": "33188", "license": "bsd-2-clause", "language": [ { "name": "HTML", "bytes": "455" }, { "name": "Java", "bytes": "6888001" }, { "name": "JavaScript", "bytes": "2454" }, { "name": "Shell", "bytes": "696" } ], "symlink_target": "" }
Aalto ASR tools =============== Aku --- Aku is the acoustic modeling toolkit of Aalto University. Aalto Decoder ------------- summary of decoder Tools ----- summary of tools Installation ============ See INSTALLATION.md License ======= All the code in the AaltoASR package is licensed with the Modified BSD license (see also LICENSE). Code included from other packages (all in vendors) are licensed according their original project. You can find those licenses in the top of the source files or a LICENSE file in the appropriate directory.
{ "content_hash": "46e50e102fd111a5bc43836d060b3ed1", "timestamp": "", "source": "github", "line_count": 28, "max_line_length": 204, "avg_line_length": 19.678571428571427, "alnum_prop": 0.7132486388384754, "repo_name": "kkleino/AaltoASR", "id": "7b375b74119d8e2413a54f87734f7892e0651799", "size": "551", "binary": false, "copies": "1", "ref": "refs/heads/develop", "path": "README.md", "mode": "33188", "license": "bsd-3-clause", "language": [ { "name": "C++", "bytes": "1722985" }, { "name": "HTML", "bytes": "8087" }, { "name": "Makefile", "bytes": "1023" }, { "name": "Perl", "bytes": "101646" }, { "name": "Python", "bytes": "26933" }, { "name": "Shell", "bytes": "2180" } ], "symlink_target": "" }
<div class="tube"> <p>Page heading</p> <div bs-panel="controls outline"> <h1 bs-heading> <svg bs-svg-icon=""><use xlink:href="#svg-cog"/></svg> Overview </h1> </div> <hr> <div bs-panel="controls outline"> <h1 bs-heading> <svg bs-svg-icon=""><use xlink:href="#svg-syncall"/></svg> Sync all </h1> </div> <div bs-button-row> <button bs-button="inline icon-left success" ng-click="setMany(true)"> <svg bs-svg-icon=""><use xlink:href="#svg-circle-ok"/></svg> Enable All </button> <button bs-button="icon-left inline" ng-click="setMany(false)"> <svg bs-svg-icon=""><use xlink:href="#svg-circle-delete"/></svg> Disable all </button> </div> </div> <div bs-panel="controls outline"> <h1 bs-heading> <svg bs-svg-icon=""><use xlink:href="#svg-cog"/></svg> Overview </h1> </div> <hr>
{ "content_hash": "e2e7cfc4de0bb9183606121b08e7cb06", "timestamp": "", "source": "github", "line_count": 35, "max_line_length": 78, "avg_line_length": 27.485714285714284, "alnum_prop": 0.5291060291060291, "repo_name": "itarverne/generator-itarverne-landing-page", "id": "515136299ba723f165baa8580555294895df051e", "size": "962", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "public/en/OLDnode_modules/browser-sync-ui/static/components/panels.html", "mode": "33188", "license": "mit", "language": [ { "name": "CSS", "bytes": "9705" }, { "name": "Dockerfile", "bytes": "503" }, { "name": "HTML", "bytes": "197941" }, { "name": "JavaScript", "bytes": "41095" } ], "symlink_target": "" }
import User from '../user/user.model'; export default { dependencies: [User], seed: ([user]) => [ { text: 'Cool todo', user } ] };
{ "content_hash": "eb3f57dac9076cc068ba0311ef299aa1", "timestamp": "", "source": "github", "line_count": 11, "max_line_length": 38, "avg_line_length": 14.272727272727273, "alnum_prop": 0.5095541401273885, "repo_name": "noamokman/project-starter-sample", "id": "f37505d33c8ed8dc8c7246e23eee7c11a42a1605", "size": "157", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "server/api/todo/todo.seed.js", "mode": "33188", "license": "mit", "language": [ { "name": "CSS", "bytes": "104" }, { "name": "HTML", "bytes": "10538" }, { "name": "JavaScript", "bytes": "119880" } ], "symlink_target": "" }
{-# LANGUAGE RecordWildCards #-} {-# LANGUAGE LambdaCase #-} {-# LANGUAGE StandaloneDeriving #-} module HalRelations where import Data.Char import Data.Graph import Data.List import Data.Maybe import Data.Tree import Debug.Trace import HalTypes import Hal (compile, files) compileAll = mapM compile files cap (x:xs) = toUpper x : xs typeRef :: APIType -> Maybe String typeRef = \case List a -> typeRef a Map _ a -> typeRef a TypeRef [a] -> Just a TypeRef xs -> Just $ intercalate "." xs maybeDistinct x = \case y | y == x -> Nothing y -> Just y resources decls = [r | Right (DeclResource r) <- decls] infer xs = [(r, cap rName, catMaybes [mRetType >>= typeRef >>= maybeDistinct (cap rName) | Method{..} <- rMethods]) | r@Resource{..} <- xs] infer' :: [Resource] -> [Node String] infer' xs = [(rName, rName, nub $ catMaybes [mRetType >>= typeRef >>= maybeDistinct (cap rName) | Method{..} <- rMethods]) | r@Resource{..} <- xs] dfs' :: Ord a => a -> [Node a] -> Forest a dfs' e edges = unvertex (dfs g [root']) where unvertex = fmap (fmap ((\(k, _, _) -> k) . back)) Just root' = lookup e (g, back, lookup) = graphFromEdges edges dff' :: Ord key => [(node, key, [key])] -> Forest node dff' edges = unvertex (dff g) where unvertex = fmap (fmap ((\(k, _, _) -> k) . back)) (g, back, _) = graphFromEdges edges type Node a = (a, a, [a]) components' :: Ord key => [(node, key, [key])] -> Forest node components' edges = unvertex (components g) where unvertex = fmap (fmap ((\(k, _, _) -> k) . back)) (g, back, _) = graphFromEdges edges scc' :: Ord key => [(node, key, [key])] -> Forest node scc' edges = unvertex (scc g) where unvertex = fmap (fmap ((\(k, _, _) -> k) . back)) (g, back, _) = graphFromEdges edges mapAcc :: b -> (b -> a -> b) -> Tree a -> Tree b mapAcc acc f (Node x ts) = Node new (map (mapAcc new f) ts) where new = f acc x -- there is always a default resource -- R, path | RestApi, /restapis/1 -- actionR (R:action) -> path | updateRestapi (restapi:update ) -> /restapis/1 -- actionRT (R:T) -> path/T | getDeployments (restapi:deployments) -> /restapis/1/deployments/{args} -- actionTR (T:action) -> path/T | getDeploymentsById (deployments:by-id) -> /restapis/1/deployments/id/{args} -- actionT (T:action) | createDeplomynets (deployments:create) -> /restapis/1/deployments/{args} -- -- eg: -- RestApi, /restapis/1 -- createR go = do rs <- fmap resources compileAll return $ infer' rs --putStrLn $ drawForest $ fmap (fmap rName) $ dff' $ infer rs --return $ map flatten $ fmap (fmap rName) $ dff' $ infer rs --putStrLn $ drawForest $ fmap (fmap (show) . mapAcc [] (\ts n -> rName n:ts)) $ dff' $ infer rs type N k v = (k, v, [v]) dfs1 :: Ord v => v -> [N a v] -> Forest a dfs1 e edges = unvertex (dfs g [root']) where unvertex = fmap (fmap ((\(k, _, _) -> k) . back)) Just root' = lookup e (g, back, lookup) = graphFromEdges edges infer1 :: [Resource] -> [N Resource String] infer1 xs = [(r, rName, nub $ catMaybes [mRetType >>= typeRef >>= maybeDistinct (cap rName) | Method{..} <- rMethods]) | r@Resource{..} <- xs] infer2 :: [Either t APIDecl] -> Forest Resource infer2 = dfs1 "ApiGateway" . infer1 . resources inferAll = do rs <- fmap infer2 compileAll putStrLn $ drawForest $ fmap (fmap rName) rs print $ length rs go' = putStrLn $ drawForest $ dfs' root' cycled root' = f where (f, _, _) = root root = ( "ApiGateway" , "ApiGateway" , [ "RestApis" , "DomainNames" , "ApiKeys" , "ClientCertificates" , "RestApi" , "DomainName" , "ApiKey" , "Account" ] ) cycled :: [Node String] cycled = [ ( "Account" , "Account" , [] ) , root , ( "ApiKey" , "ApiKey" , [] ) , ( "ApiKeys" , "ApiKeys" , [ "ApiKey" ] ) , ( "BasePathMapping" , "BasePathMapping" , [] ) , ( "BasePathMappings" , "BasePathMappings" , [ "BasePathMapping" ] ) , ( "ClientCertificate" , "ClientCertificate" , [] ) , ( "ClientCertificates" , "ClientCertificates" , [ "ClientCertificate" ] ) , ( "Deployment" , "Deployment" , [ "Stages" ] ) , ( "Deployments" , "Deployments" , [ "Deployment" ] ) , ( "DomainName" , "DomainName" , [ "BasePathMappings" , "BasePathMapping" ] ) , ( "DomainNames" , "DomainNames" , [ "DomainName" ] ) , ( "Integration" , "Integration" , [ "IntegrationResponse" ] ) , ( "IntegrationResponse" , "IntegrationResponse" , [] ) , ( "Method" , "Method" , [ "MethodResponse" , "Integration" ] ) , ( "MethodResponse" , "MethodResponse" , [] ) , ( "Model" , "Model" , [ "Template" ] ) , ( "Models" , "Models" , [ "Model" ] ) , ( "Resource" , "Resource" , [ "Method" ] ) , ( "Resources" , "Resources" , [ "Resource" ] ) , ( "RestApi" , "RestApi" , [ "Resources" , "Deployments" , "Stages" , "Models" , "Resource" , "Deployment" , "Stage" , "Model" ] ) , ( "RestApis" , "RestApis" , [ "RestApi" ] ) , ( "Stage" , "Stage" , ["ClientCertificate"] ) , ( "Stages" , "Stages" , [ "Stage" ] ) , ( "Template" , "Template" , [] ) , ( "TestInvokeMethodResponse" , "TestInvokeMethodResponse" , [] ) ]
{ "content_hash": "dc3559550db27fdd33181e26f835f2be", "timestamp": "", "source": "github", "line_count": 184, "max_line_length": 130, "avg_line_length": 30.831521739130434, "alnum_prop": 0.5326987484576062, "repo_name": "proger/unhal", "id": "67332b7529c11e9a016531a3f5a5b34367d13e04", "size": "5673", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "src/HalRelations.hs", "mode": "33188", "license": "bsd-3-clause", "language": [ { "name": "Haskell", "bytes": "29075" } ], "symlink_target": "" }
class CreateSubscriptions < ActiveRecord::Migration def change create_table :stripe_rails_subscriptions do |t| t.references :plan, null: false, foreign_key: true t.integer :user_id, null: false, foreign_key: true, references: nil t.string :stripe_key, null: false t.integer :status_id, null: false, references: nil t.timestamps end end end
{ "content_hash": "5ae666ee20bf7107f0851ab1f17e1a99", "timestamp": "", "source": "github", "line_count": 12, "max_line_length": 73, "avg_line_length": 31.916666666666668, "alnum_prop": 0.6866840731070496, "repo_name": "FreshStartSoftware/stripe_rails", "id": "c19fd3664e734f2f6b7a4a5f85fff372ff8a0c6b", "size": "383", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "db/migrate/20160927185740_create_subscriptions.rb", "mode": "33188", "license": "mit", "language": [ { "name": "CSS", "bytes": "734" }, { "name": "HTML", "bytes": "15286" }, { "name": "JavaScript", "bytes": "730" }, { "name": "Ruby", "bytes": "88750" } ], "symlink_target": "" }
module Azure::Consumption::Mgmt::V2017_11_30 # # Consumption management client provides access to consumption resources for # Azure Enterprise Subscriptions. # class Operations include MsRestAzure # # Creates and initializes a new instance of the Operations class. # @param client service class for accessing basic functionality. # def initialize(client) @client = client end # @return [ConsumptionManagementClient] reference to the ConsumptionManagementClient attr_reader :client # # Lists all of the available consumption REST API operations. # # @param custom_headers [Hash{String => String}] A hash of custom headers that # will be added to the HTTP request. # # @return [Array<Operation>] operation results. # def list(custom_headers:nil) first_page = list_as_lazy(custom_headers:custom_headers) first_page.get_all_items end # # Lists all of the available consumption REST API operations. # # @param custom_headers [Hash{String => String}] A hash of custom headers that # will be added to the HTTP request. # # @return [MsRestAzure::AzureOperationResponse] HTTP response information. # def list_with_http_info(custom_headers:nil) list_async(custom_headers:custom_headers).value! end # # Lists all of the available consumption REST API operations. # # @param [Hash{String => String}] A hash of custom headers that will be added # to the HTTP request. # # @return [Concurrent::Promise] Promise object which holds the HTTP response. # def list_async(custom_headers:nil) fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil? request_headers = {} request_headers['Content-Type'] = 'application/json; charset=utf-8' # Set Headers request_headers['x-ms-client-request-id'] = SecureRandom.uuid request_headers['accept-language'] = @client.accept_language unless @client.accept_language.nil? path_template = 'providers/Microsoft.Consumption/operations' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], query_params: {'api-version' => @client.api_version}, headers: request_headers.merge(custom_headers || {}), base_url: request_url } promise = @client.make_request_async(:get, path_template, options) promise = promise.then do |result| http_response = result.response status_code = http_response.status response_content = http_response.body unless status_code == 200 error_model = JSON.load(response_content) fail MsRest::HttpOperationError.new(result.request, http_response, error_model) end result.request_id = http_response['x-ms-request-id'] unless http_response['x-ms-request-id'].nil? result.correlation_request_id = http_response['x-ms-correlation-request-id'] unless http_response['x-ms-correlation-request-id'].nil? result.client_request_id = http_response['x-ms-client-request-id'] unless http_response['x-ms-client-request-id'].nil? # Deserialize Response if status_code == 200 begin parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content) result_mapper = Azure::Consumption::Mgmt::V2017_11_30::Models::OperationListResult.mapper() result.body = @client.deserialize(result_mapper, parsed_response) rescue Exception => e fail MsRest::DeserializationError.new('Error occurred in deserializing the response', e.message, e.backtrace, result) end end result end promise.execute end # # Lists all of the available consumption REST API operations. # # @param next_page_link [String] The NextLink from the previous successful call # to List operation. # @param custom_headers [Hash{String => String}] A hash of custom headers that # will be added to the HTTP request. # # @return [OperationListResult] operation results. # def list_next(next_page_link, custom_headers:nil) response = list_next_async(next_page_link, custom_headers:custom_headers).value! response.body unless response.nil? end # # Lists all of the available consumption REST API operations. # # @param next_page_link [String] The NextLink from the previous successful call # to List operation. # @param custom_headers [Hash{String => String}] A hash of custom headers that # will be added to the HTTP request. # # @return [MsRestAzure::AzureOperationResponse] HTTP response information. # def list_next_with_http_info(next_page_link, custom_headers:nil) list_next_async(next_page_link, custom_headers:custom_headers).value! end # # Lists all of the available consumption REST API operations. # # @param next_page_link [String] The NextLink from the previous successful call # to List operation. # @param [Hash{String => String}] A hash of custom headers that will be added # to the HTTP request. # # @return [Concurrent::Promise] Promise object which holds the HTTP response. # def list_next_async(next_page_link, custom_headers:nil) fail ArgumentError, 'next_page_link is nil' if next_page_link.nil? request_headers = {} request_headers['Content-Type'] = 'application/json; charset=utf-8' # Set Headers request_headers['x-ms-client-request-id'] = SecureRandom.uuid request_headers['accept-language'] = @client.accept_language unless @client.accept_language.nil? path_template = '{nextLink}' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], skip_encoding_path_params: {'nextLink' => next_page_link}, headers: request_headers.merge(custom_headers || {}), base_url: request_url } promise = @client.make_request_async(:get, path_template, options) promise = promise.then do |result| http_response = result.response status_code = http_response.status response_content = http_response.body unless status_code == 200 error_model = JSON.load(response_content) fail MsRest::HttpOperationError.new(result.request, http_response, error_model) end result.request_id = http_response['x-ms-request-id'] unless http_response['x-ms-request-id'].nil? result.correlation_request_id = http_response['x-ms-correlation-request-id'] unless http_response['x-ms-correlation-request-id'].nil? result.client_request_id = http_response['x-ms-client-request-id'] unless http_response['x-ms-client-request-id'].nil? # Deserialize Response if status_code == 200 begin parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content) result_mapper = Azure::Consumption::Mgmt::V2017_11_30::Models::OperationListResult.mapper() result.body = @client.deserialize(result_mapper, parsed_response) rescue Exception => e fail MsRest::DeserializationError.new('Error occurred in deserializing the response', e.message, e.backtrace, result) end end result end promise.execute end # # Lists all of the available consumption REST API operations. # # @param custom_headers [Hash{String => String}] A hash of custom headers that # will be added to the HTTP request. # # @return [OperationListResult] which provide lazy access to pages of the # response. # def list_as_lazy(custom_headers:nil) response = list_async(custom_headers:custom_headers).value! unless response.nil? page = response.body page.next_method = Proc.new do |next_page_link| list_next_async(next_page_link, custom_headers:custom_headers) end page end end end end
{ "content_hash": "dbc22d7a01bf94da17e614849e4f2100", "timestamp": "", "source": "github", "line_count": 215, "max_line_length": 141, "avg_line_length": 38.27441860465116, "alnum_prop": 0.66180580872524, "repo_name": "Azure/azure-sdk-for-ruby", "id": "e49f53c244b6392eaaf01c1a49f47542508dc725", "size": "8393", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "management/azure_mgmt_consumption/lib/2017-11-30/generated/azure_mgmt_consumption/operations.rb", "mode": "33188", "license": "mit", "language": [ { "name": "Ruby", "bytes": "345216400" }, { "name": "Shell", "bytes": "305" } ], "symlink_target": "" }
<?php namespace Hackaton\CleanerJobBundle\DependencyInjection; use Symfony\Component\DependencyInjection\ContainerBuilder; use Symfony\Component\Config\FileLocator; use Symfony\Component\HttpKernel\DependencyInjection\Extension; use Symfony\Component\DependencyInjection\Loader; /** * This is the class that loads and manages your bundle configuration * * To learn more see {@link http://symfony.com/doc/current/cookbook/bundles/extension.html} */ class HackatonCleanerJobExtension extends Extension { /** * {@inheritdoc} */ public function load(array $configs, ContainerBuilder $container) { $configuration = new Configuration(); $config = $this->processConfiguration($configuration, $configs); $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); $loader->load('services.yml'); } }
{ "content_hash": "19d1fe445420b16536ccbdbdc14bb997", "timestamp": "", "source": "github", "line_count": 28, "max_line_length": 105, "avg_line_length": 31.964285714285715, "alnum_prop": 0.7318435754189944, "repo_name": "chabanenk0/hackathon", "id": "19a016e1aa6d40f94a55cd9c6da6da3b7169bb4b", "size": "895", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "src/Hackaton/CleanerJobBundle/DependencyInjection/HackatonCleanerJobExtension.php", "mode": "33261", "license": "mit", "language": [ { "name": "CSS", "bytes": "105827" }, { "name": "JavaScript", "bytes": "2458" }, { "name": "PHP", "bytes": "114486" }, { "name": "Shell", "bytes": "305" } ], "symlink_target": "" }
using System.Collections.Generic; using System.Linq; using DatabaseSupport; namespace Projects { public class ProjectDataGateway : IProjectDataGateway { private readonly IDatabaseTemplate _template; public ProjectDataGateway(IDatabaseTemplate template) { _template = template; } public ProjectRecord Create(long accountId, string name) { var sql = @" insert into projects (account_id, name, active) values (@accountId, @name, true)"; return _template.Create(sql, id => new ProjectRecord(id, accountId, name, true), new KeyValuePair<string, object>("@accountId", accountId), new KeyValuePair<string, object>("@name", name) ); } public List<ProjectRecord> FindBy(long accountId) { const string sql = @" select id, account_id, name, active from projects where account_id = @accountId order by name asc"; return _template.FindBy(sql, reader => new ProjectRecord( reader.GetInt64(0), reader.GetInt64(1), reader.GetString(2), reader.GetBoolean(3) ), "@accountId", accountId); } public ProjectRecord FindObject(long projectId) { const string sql = @" select id, account_id, name, active from projects where id = @projectId order by name asc"; var projectRecords = _template.FindBy(sql, reader => new ProjectRecord( reader.GetInt64(0), reader.GetInt64(1), reader.GetString(2), reader.GetBoolean(3) ), "@projectId", projectId); return projectRecords.Count > 0 ? projectRecords.First() : null; } } }
{ "content_hash": "dc37b4fdd1276f3b16232d1fa497f556", "timestamp": "", "source": "github", "line_count": 56, "max_line_length": 99, "avg_line_length": 32.285714285714285, "alnum_prop": 0.5846238938053098, "repo_name": "barinek/appcontinuum_dotnet", "id": "8e06ef18730779858992679980bc297112de58b3", "size": "1810", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "Components/Projects/ProjectDataGateway.cs", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "C#", "bytes": "73063" }, { "name": "Shell", "bytes": "764" } ], "symlink_target": "" }
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context="${packageName}.${activityClass}" > <ListView android:id="@+id/book_list" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_alignParentTop="true" android:background="@color/enchantment_background" > </ListView> </RelativeLayout>
{ "content_hash": "053d12e3ae06a650ee7826082b4c2132", "timestamp": "", "source": "github", "line_count": 16, "max_line_length": 74, "avg_line_length": 33.9375, "alnum_prop": 0.6869244935543278, "repo_name": "g-rauhoeft/enchantment", "id": "b6657f8a35260296510eb2624e96fa4603f4d3bc", "size": "543", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "res/layout/book_chooser_fragment.xml", "mode": "33188", "license": "mit", "language": [ { "name": "Java", "bytes": "262448" } ], "symlink_target": "" }
#ifndef LineLayoutState_h #define LineLayoutState_h #include "core/layout/LayoutBlockFlow.h" #include "platform/geometry/LayoutRect.h" #include "wtf/Allocator.h" namespace blink { // Like LayoutState for layout(), LineLayoutState keeps track of global information // during an entire linebox tree layout pass (aka layoutInlineChildren). class LineLayoutState { STACK_ALLOCATED(); public: LineLayoutState(bool fullLayout) : m_lastFloat(nullptr) , m_endLine(nullptr) , m_floatIndex(0) , m_endLineMatched(false) , m_hasInlineChild(false) , m_isFullLayout(fullLayout) { } void markForFullLayout() { m_isFullLayout = true; } bool isFullLayout() const { return m_isFullLayout; } bool endLineMatched() const { return m_endLineMatched; } void setEndLineMatched(bool endLineMatched) { m_endLineMatched = endLineMatched; } bool hasInlineChild() const { return m_hasInlineChild; } void setHasInlineChild(bool hasInlineChild) { m_hasInlineChild = hasInlineChild; } LineInfo& lineInfo() { return m_lineInfo; } const LineInfo& lineInfo() const { return m_lineInfo; } LayoutUnit endLineLogicalTop() const { return m_endLineLogicalTop; } void setEndLineLogicalTop(LayoutUnit logicalTop) { m_endLineLogicalTop = logicalTop; } RootInlineBox* endLine() const { return m_endLine; } void setEndLine(RootInlineBox* line) { m_endLine = line; } FloatingObject* lastFloat() const { return m_lastFloat; } void setLastFloat(FloatingObject* lastFloat) { m_lastFloat = lastFloat; } Vector<LayoutBlockFlow::FloatWithRect>& floats() { return m_floats; } unsigned floatIndex() const { return m_floatIndex; } void setFloatIndex(unsigned floatIndex) { m_floatIndex = floatIndex; } LayoutUnit adjustedLogicalLineTop() const { return m_adjustedLogicalLineTop; } void setAdjustedLogicalLineTop(LayoutUnit value) { m_adjustedLogicalLineTop = value; } private: Vector<LayoutBlockFlow::FloatWithRect> m_floats; FloatingObject* m_lastFloat; RootInlineBox* m_endLine; LineInfo m_lineInfo; unsigned m_floatIndex; LayoutUnit m_endLineLogicalTop; bool m_endLineMatched; // Used as a performance optimization to avoid doing a full paint invalidation when our floats // change but we don't have any inline children. bool m_hasInlineChild; bool m_isFullLayout; LayoutUnit m_adjustedLogicalLineTop; }; } // namespace blink #endif // LineLayoutState_h
{ "content_hash": "57200105bfea5d0e0ae27c6f05852b5f", "timestamp": "", "source": "github", "line_count": 75, "max_line_length": 98, "avg_line_length": 33.42666666666667, "alnum_prop": 0.72317510969286, "repo_name": "danakj/chromium", "id": "e4ba33cf41cf5f89a1aaa1d71aac75a365c0010e", "size": "3561", "binary": false, "copies": "2", "ref": "refs/heads/master", "path": "third_party/WebKit/Source/core/layout/line/LineLayoutState.h", "mode": "33188", "license": "bsd-3-clause", "language": [], "symlink_target": "" }
package org.hisp.dhis.dxf2.events.kafka; import com.fasterxml.jackson.annotation.JsonProperty; import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; import com.google.common.base.MoreObjects; import org.hisp.dhis.common.DxfNamespaces; import org.hisp.dhis.dxf2.common.ImportOptions; /** * @author Morten Olav Hansen <[email protected]> */ public abstract class AbstractKafkaMessage<T> { private final String id; private final String jobId; private Integer jobTotal; private final String user; private final ImportOptions importOptions; private final T payload; public AbstractKafkaMessage( String id, String jobId, String user, ImportOptions importOptions, T payload ) { this.id = id; this.jobId = jobId; this.user = user; this.importOptions = importOptions; this.payload = payload; } @JsonProperty @JacksonXmlProperty( namespace = DxfNamespaces.DXF_2_0 ) public String getId() { return id; } @JsonProperty @JacksonXmlProperty( namespace = DxfNamespaces.DXF_2_0 ) public String getJobId() { return jobId; } @JsonProperty @JacksonXmlProperty( namespace = DxfNamespaces.DXF_2_0 ) public Integer getJobTotal() { return jobTotal; } public void setJobTotal( Integer jobTotal ) { this.jobTotal = jobTotal; } @JsonProperty @JacksonXmlProperty( namespace = DxfNamespaces.DXF_2_0 ) public String getUser() { return user; } @JsonProperty @JacksonXmlProperty( namespace = DxfNamespaces.DXF_2_0 ) public ImportOptions getImportOptions() { return importOptions; } @JsonProperty @JacksonXmlProperty( namespace = DxfNamespaces.DXF_2_0 ) public T getPayload() { return payload; } @Override public String toString() { return MoreObjects.toStringHelper( this ) .add( "id", id ) .add( "jobId", jobId ) .add( "user", user ) .add( "importOptions", importOptions ) .add( "payload", payload ) .toString(); } }
{ "content_hash": "af6a609a70ebf007262cb2f83049d496", "timestamp": "", "source": "github", "line_count": 90, "max_line_length": 111, "avg_line_length": 24.266666666666666, "alnum_prop": 0.6433150183150184, "repo_name": "vietnguyen/dhis2-core", "id": "725405e4955484c02abaaf8dfb37b8f27511bf7c", "size": "3740", "binary": false, "copies": "2", "ref": "refs/heads/master", "path": "dhis-2/dhis-services/dhis-service-dxf2/src/main/java/org/hisp/dhis/dxf2/events/kafka/AbstractKafkaMessage.java", "mode": "33188", "license": "bsd-3-clause", "language": [ { "name": "CSS", "bytes": "195574" }, { "name": "HTML", "bytes": "68810" }, { "name": "Java", "bytes": "18270594" }, { "name": "JavaScript", "bytes": "995349" }, { "name": "PLpgSQL", "bytes": "690824" }, { "name": "Ruby", "bytes": "1011" }, { "name": "Shell", "bytes": "394" }, { "name": "XSLT", "bytes": "8281" } ], "symlink_target": "" }
cask 'tunnelblick' do version '3.7.3,4880' sha256 '06554366c3e02337aafb447a83abe6b054f90661be35e6e7fc317c82c5f5c77e' # github.com/Tunnelblick/Tunnelblick/releases/download was verified as official when first introduced to the cask url "https://github.com/Tunnelblick/Tunnelblick/releases/download/v#{version.before_comma}/Tunnelblick_#{version.before_comma}_build_#{version.after_comma}.dmg" appcast 'https://github.com/Tunnelblick/Tunnelblick/releases.atom', checkpoint: 'a25382dc78399c7abe953184b050e12a2d398c7186d7b95d0cc50cafb30259b5' name 'Tunnelblick' homepage 'https://www.tunnelblick.net/' auto_updates true app 'Tunnelblick.app' uninstall_preflight do set_ownership "#{appdir}/Tunnelblick.app" end uninstall launchctl: [ 'net.tunnelblick.tunnelblick.LaunchAtLogin', 'net.tunnelblick.tunnelblick.tunnelblickd', ], quit: 'net.tunnelblick.tunnelblick' zap delete: [ '~/Library/Caches/com.apple.helpd/SDMHelpData/Other/English/HelpSDMIndexFile/net.tunnelblick.tunnelblick.help', '~/Library/Caches/net.tunnelblick.tunnelblick', ], trash: [ '/Library/Application Support/Tunnelblick', '~/Library/Application Support/Tunnelblick', '~/Library/Preferences/net.tunnelblick.tunnelblick.plist', ] caveats <<~EOS For security reasons, #{token} must be installed to /Applications, and will request to be moved at launch. EOS end
{ "content_hash": "1fd150225443340e8cec7bbe2a58fcfe", "timestamp": "", "source": "github", "line_count": 40, "max_line_length": 162, "avg_line_length": 39.7, "alnum_prop": 0.6756926952141058, "repo_name": "0xadada/homebrew-cask", "id": "42dd2835419e6432c5699178f4b4683dc8f048ba", "size": "1588", "binary": false, "copies": "2", "ref": "refs/heads/master", "path": "Casks/tunnelblick.rb", "mode": "33188", "license": "bsd-2-clause", "language": [ { "name": "Ruby", "bytes": "2171873" }, { "name": "Shell", "bytes": "44270" } ], "symlink_target": "" }
======= Credits ======= Development Lead ---------------- * Ardy Dedase <[email protected]> Contributors ------------ * Denis Dudnik <[email protected]> * Amado Martinez <[email protected]>
{ "content_hash": "348864d059cc7e7d8da18abacfaf1c80", "timestamp": "", "source": "github", "line_count": 14, "max_line_length": 45, "avg_line_length": 15.642857142857142, "alnum_prop": 0.6210045662100456, "repo_name": "ardydedase/skyscanner-php-sdk", "id": "c1e85922cb929582a0dc6ae59f45a5625bc30dff", "size": "219", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "AUTHORS.rst", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "PHP", "bytes": "28889" } ], "symlink_target": "" }
{{ include.name }}{% if include.degree %}, {{ include.degree }}{% endif %}
{ "content_hash": "6e48551810ab8d4a9176986101a46339", "timestamp": "", "source": "github", "line_count": 1, "max_line_length": 74, "avg_line_length": 75, "alnum_prop": 0.5866666666666667, "repo_name": "GenomeInformatics/genomeinformatics.github.io", "id": "9c5e92b3c3cfa226bbd9d2e65168d3034f3b0244", "size": "75", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "_includes/person-name.html", "mode": "33188", "license": "mit", "language": [ { "name": "HTML", "bytes": "32175" }, { "name": "Perl", "bytes": "2501" }, { "name": "SCSS", "bytes": "68086" } ], "symlink_target": "" }
CMDNAME=`basename $0` if [ "$1" = '-?' -o "$1" = "--help" ]; then echo "$CMDNAME cleans up shared memory and semaphores from aborted PostgreSQL" echo "backends." echo echo "Usage:" echo " $CMDNAME" echo echo "Note: Since the utilities underlying this scrīpt are very different" echo "from platform. to platform, chances are that it might not work on" echo "yours. If that is the case, please write to <[email protected]>" echo "so that your platform. can be supported in the future." exit 0 fi if [ "$USER" = 'root' -o "$LOGNAME" = 'root' ] then ( echo "$CMDNAME: cannot be run as root" 1>&2 echo "Please log in (using, e.g., \"su\") as the (unprivileged) user that" 1>&2 echo "owned the server process." 1>&2 ) 1>&2 exit 1 fi EffectiveUser=`id -n -u 2>/dev/null || whoami 2>/dev/null` #----------------------------------- # List of platform-specific hacks # Feel free to add yours here. #----------------------------------- # # This is QNX 4.25 # if [ `uname` = 'QNX' ]; then if ps -eA | grep -s '[p]ostmaster' >/dev/null 2>&1 ; then echo "$CMDNAME: a postmaster is still running" 1>&2 exit 1 fi rm -f /dev/shmem/PgS* exit $? fi # # This is based on RedHat Linux system. 这里之后是该脚本的核心。 # if [ `uname` = 'Linux' ]; then did_anything= if ps x | grep -s '[p]ostmaster' >/dev/null 2>&1 ; then echo "$CMDNAME: a postmaster is still running" 1>&2 exit 1 fi # shared memory for val in `ipcs -m -p | grep '^[0-9]' | awk '{printf "%s:%s:%s\n", $1, $3, $4}'` do save_IFS=$IFS IFS=: set X $val shift IFS=$save_IFS ipcs_shmid=$1 ipcs_cpid=$2 ipcs_lpid=$3 # Note: We can do -n here, because we know the platform. echo -n "Shared memory $ipcs_shmid ... " # Don't do anything if process still running. # (This check is conceptually phony, but it's # useful anyway in practice.) ps hj $ipcs_cpid $ipcs_lpid >/dev/null 2>&1 if [ "$?" -eq 0 ]; then echo "skipped; process still exists (pid $ipcs_cpid or $ipcs_lpid)." continue fi # try remove ipcrm -m $ipcs_shmid if [ "$?" -eq 0 ]; then did_anything=t else exit fi done # semaphores for val in `ipcs -s -c | grep '^[0-9]' | awk '{printf "%s\n", $1}'`; do echo -n "Semaphore $val ... " # try remove ipcrm -s $val if [ "$?" -eq 0 ]; then did_anything=t else exit fi done [ -z "$did_anything" ] && echo "$CMDNAME: nothing removed" && exit 1 exit 0 fi # end Linux # This is the original implementation. It seems to work # on FreeBSD, SunOS/Solaris, HP-UX, IRIX, and probably # some others.
{ "content_hash": "21d2a59269909fc77b1f1410a6c2d1ea", "timestamp": "", "source": "github", "line_count": 107, "max_line_length": 82, "avg_line_length": 23.878504672897197, "alnum_prop": 0.6097847358121331, "repo_name": "coolhacks/scripts-hacks", "id": "ed66e1a2ac9890e742aa8b77a35463abbddf080f", "size": "2718", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "scripts/Shell-smilejay/sh2012/ipcclean.sh", "mode": "33188", "license": "mit", "language": [], "symlink_target": "" }
{% extends 'base.html' %} {% load staticfiles %} {% block main_content_block %} <h1>Convert Image to JPEG</h1> <p> Please select an <a href="https://en.wikipedia.org/wiki/Image_file_formats">image</a> file to upload and convert to <a href="https://en.wikipedia.org/wiki/JPEG">JPEG</a> file. </p> <form action="{% url 'upload_and_convert_image_file' %}" method="post" enctype="multipart/form-data"> {% csrf_token %} <p>{{ form.non_field_errors }}</p> <p>{{ form.file.label_tag }} {{ form.file.help_text }}</p> <p> {{ form.file.errors }} {{ form.file }} </p> <p><input type="submit" value="Upload and Convert" /></p> <p> Note: Processing your file may take some time. Please do not click the button again after submitting this form. </p> </form> {% endblock %}
{ "content_hash": "47e6730da4b2d201128cdd1599c751a9", "timestamp": "", "source": "github", "line_count": 32, "max_line_length": 97, "avg_line_length": 29.46875, "alnum_prop": 0.5355249204665959, "repo_name": "dumrauf/web_tools", "id": "81719ec3ce94567d2d827dcbd8a331e40aaf1e0f", "size": "943", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "image_converter/templates/upload.html", "mode": "33188", "license": "mit", "language": [ { "name": "HTML", "bytes": "1883" }, { "name": "Python", "bytes": "18788" }, { "name": "Shell", "bytes": "1631" } ], "symlink_target": "" }
from distutils.core import setup setup(name='svgage', version='0.1', description='Python Gauges in SVG', author='Mickael Hoareau', author_email='[email protected]', license='MIT', url='https://github.com/mhoareau/python-svgage', packages=['svgage'], )
{ "content_hash": "cb98279f4a1702df5eb46993c3d4ee8d", "timestamp": "", "source": "github", "line_count": 11, "max_line_length": 54, "avg_line_length": 28, "alnum_prop": 0.6298701298701299, "repo_name": "mhoareau/python-svgage", "id": "76c3e0c930827ff6dc19f386b98128de2fc1daab", "size": "308", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "setup.py", "mode": "33188", "license": "mit", "language": [ { "name": "Python", "bytes": "13630" } ], "symlink_target": "" }
<?xml version='1.0' encoding='UTF-8'?> <Document> <Header> <SchemaName>Location</SchemaName> <Identifier>location_geonames_2750570</Identifier> <DocumentState>public</DocumentState> <TimeStamp>1390753461704</TimeStamp> <SummaryFields> <Title>NL &gt; North Brabant &gt; Bergeijk &gt; Muggenhool</Title> </SummaryFields> </Header> <Body> <Location> <GeopoliticalHierarchy>NL,North Brabant,Bergeijk,Muggenhool</GeopoliticalHierarchy> <LocationName> <Appelation>Muggenhool</Appelation> <LocationNameType>populated place</LocationNameType> <Comments></Comments> </LocationName> <Coordinates> <Longitude>5.325</Longitude> <Latitude>51.31333</Latitude> </Coordinates> <GeonamesURI>http://www.geonames.org/2750570</GeonamesURI> <WikipediaLink/> <DbpediaLink/> </Location> </Body> </Document>
{ "content_hash": "c568db15c840c36edd9845c02042d0e0", "timestamp": "", "source": "github", "line_count": 29, "max_line_length": 89, "avg_line_length": 31.655172413793103, "alnum_prop": 0.6666666666666666, "repo_name": "delving/oscr-data", "id": "d912f368b1d5a5a099e9c721466f7197e1d142dd", "size": "918", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "shared/Location/location_geonames_2750570.xml", "mode": "33188", "license": "apache-2.0", "language": [], "symlink_target": "" }
namespace Google.Cloud.GkeMultiCloud.V1.Snippets { // [START gkemulticloud_v1_generated_AwsClusters_GetAwsNodePool_sync_flattened_resourceNames] using Google.Cloud.GkeMultiCloud.V1; public sealed partial class GeneratedAwsClustersClientSnippets { /// <summary>Snippet for GetAwsNodePool</summary> /// <remarks> /// This snippet has been automatically generated for illustrative purposes only. /// It may require modifications to work in your environment. /// </remarks> public void GetAwsNodePoolResourceNames() { // Create client AwsClustersClient awsClustersClient = AwsClustersClient.Create(); // Initialize request argument(s) AwsNodePoolName name = AwsNodePoolName.FromProjectLocationAwsClusterAwsNodePool("[PROJECT]", "[LOCATION]", "[AWS_CLUSTER]", "[AWS_NODE_POOL]"); // Make the request AwsNodePool response = awsClustersClient.GetAwsNodePool(name); } } // [END gkemulticloud_v1_generated_AwsClusters_GetAwsNodePool_sync_flattened_resourceNames] }
{ "content_hash": "b46cdce00bd773cb921c957995b281cc", "timestamp": "", "source": "github", "line_count": 24, "max_line_length": 155, "avg_line_length": 46.541666666666664, "alnum_prop": 0.6866606982990152, "repo_name": "jskeet/gcloud-dotnet", "id": "75be1d7beae6b3f7d4ce38b78ade5c03e3b1441a", "size": "1739", "binary": false, "copies": "1", "ref": "refs/heads/bq-migration", "path": "apis/Google.Cloud.GkeMultiCloud.V1/Google.Cloud.GkeMultiCloud.V1.GeneratedSnippets/AwsClustersClient.GetAwsNodePoolResourceNamesSnippet.g.cs", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "Batchfile", "bytes": "1725" }, { "name": "C#", "bytes": "1829733" } ], "symlink_target": "" }
/** * Wepack common config */ import { cleanClientDirPlugin, noEmitOnErrorPlugin, extractCSSChunksPlugin, htmlPlugin, inlineSourcePlugin, definePlugin, cssoPlugin, statsWriterPlugin, } from './plugins'; import { jsRules, cssRulesClient, imageRules, propertiesRules, inlineScriptsRules, } from './rules'; import { alias } from './resolve'; import { APP_SRC_ENTRY, DIST_CLIENT_DIR, } from '../environment'; const config = { entry: { main: [ '@babel/polyfill', APP_SRC_ENTRY, ], }, output: { path: DIST_CLIENT_DIR, filename: 'js/[name].[hash].js', chunkFilename: 'js/chunks/[name].[chunkhash].js', publicPath: '/', hotUpdateMainFilename: 'hot/[hash].hot-update.json', hotUpdateChunkFilename: 'hot/[id].[hash].hot-update.js', }, optimization: { runtimeChunk: true, splitChunks: { chunks: 'all', minSize: 30000, minChunks: 1, maxInitialRequests: 5, maxAsyncRequests: 5, automaticNameDelimiter: '-', cacheGroups: { vendors: { test: /[\\/]node_modules[\\/]/, name: 'vendors', }, }, }, }, module: { rules: [ jsRules(), cssRulesClient(), imageRules(), propertiesRules(), inlineScriptsRules(), ], }, plugins: [ cleanClientDirPlugin(), noEmitOnErrorPlugin(), extractCSSChunksPlugin(), htmlPlugin(), cssoPlugin(), inlineSourcePlugin(), definePlugin({ SSR: JSON.stringify(false), }), statsWriterPlugin(), ], resolve: { alias: alias(), }, stats: 'verbose', }; export default config;
{ "content_hash": "5dc7a9e694b88237ff8e1548a4066e28", "timestamp": "", "source": "github", "line_count": 90, "max_line_length": 60, "avg_line_length": 18.41111111111111, "alnum_prop": 0.5890162945081473, "repo_name": "dashukin/react-redux-template", "id": "2fe3542a560cf5399bca825120ce9a966ae2fc5a", "size": "1657", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "config/webpack/webpack.config.client.common.js", "mode": "33188", "license": "mit", "language": [ { "name": "CSS", "bytes": "12936" }, { "name": "HTML", "bytes": "1655" }, { "name": "JavaScript", "bytes": "96116" } ], "symlink_target": "" }
=pod =head1 NAME BN_CTX_new_ex, BN_CTX_new, BN_CTX_secure_new_ex, BN_CTX_secure_new, BN_CTX_free - allocate and free BN_CTX structures =head1 SYNOPSIS #include <openssl/bn.h> BN_CTX *BN_CTX_new_ex(OSSL_LIB_CTX *ctx); BN_CTX *BN_CTX_new(void); BN_CTX *BN_CTX_secure_new_ex(OSSL_LIB_CTX *ctx); BN_CTX *BN_CTX_secure_new(void); void BN_CTX_free(BN_CTX *c); =head1 DESCRIPTION A B<BN_CTX> is a structure that holds B<BIGNUM> temporary variables used by library functions. Since dynamic memory allocation to create B<BIGNUM>s is rather expensive when used in conjunction with repeated subroutine calls, the B<BN_CTX> structure is used. BN_CTX_new_ex() allocates and initializes a B<BN_CTX> structure for the given library context B<ctx>. The <ctx> value may be NULL in which case the default library context will be used. BN_CTX_new() is the same as BN_CTX_new_ex() except that the default library context is always used. BN_CTX_secure_new_ex() allocates and initializes a B<BN_CTX> structure but uses the secure heap (see L<CRYPTO_secure_malloc(3)>) to hold the B<BIGNUM>s for the given library context B<ctx>. The <ctx> value may be NULL in which case the default library context will be used. BN_CTX_secure_new() is the same as BN_CTX_secure_new_ex() except that the default library context is always used. BN_CTX_free() frees the components of the B<BN_CTX> and the structure itself. Since BN_CTX_start() is required in order to obtain B<BIGNUM>s from the B<BN_CTX>, in most cases BN_CTX_end() must be called before the B<BN_CTX> may be freed by BN_CTX_free(). If B<c> is NULL, nothing is done. A given B<BN_CTX> must only be used by a single thread of execution. No locking is performed, and the internal pool allocator will not properly handle multiple threads of execution. =head1 RETURN VALUES BN_CTX_new() and BN_CTX_secure_new() return a pointer to the B<BN_CTX>. If the allocation fails, they return B<NULL> and sets an error code that can be obtained by L<ERR_get_error(3)>. BN_CTX_free() has no return values. =head1 REMOVED FUNCTIONALITY void BN_CTX_init(BN_CTX *c); BN_CTX_init() is no longer available as of OpenSSL 1.1.0. Applications should replace use of BN_CTX_init with BN_CTX_new instead: BN_CTX *ctx; ctx = BN_CTX_new(); if (!ctx) /* error */ ... BN_CTX_free(ctx); =head1 SEE ALSO L<ERR_get_error(3)>, L<BN_add(3)>, L<BN_CTX_start(3)> =head1 HISTORY BN_CTX_init() was removed in OpenSSL 1.1.0. =head1 COPYRIGHT Copyright 2000-2020 The OpenSSL Project Authors. All Rights Reserved. Licensed under the Apache License 2.0 (the "License"). You may not use this file except in compliance with the License. You can obtain a copy in the file LICENSE in the source distribution or at L<https://www.openssl.org/source/license.html>. =cut
{ "content_hash": "d3df6f49b52b5bca74b9f9699028e230", "timestamp": "", "source": "github", "line_count": 89, "max_line_length": 80, "avg_line_length": 31.415730337078653, "alnum_prop": 0.7360515021459227, "repo_name": "openssl/openssl", "id": "1d93c8b55e87eb16f4c9ffa4eb75ed9e94422f2e", "size": "2796", "binary": false, "copies": "10", "ref": "refs/heads/master", "path": "doc/man3/BN_CTX_new.pod", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "Assembly", "bytes": "199540" }, { "name": "C", "bytes": "23117657" }, { "name": "C++", "bytes": "73678" }, { "name": "DIGITAL Command Language", "bytes": "5687" }, { "name": "M4", "bytes": "46625" }, { "name": "Pawn", "bytes": "4738" }, { "name": "Perl", "bytes": "7672239" }, { "name": "Python", "bytes": "1366" }, { "name": "Raku", "bytes": "285086" }, { "name": "Ruby", "bytes": "1171" }, { "name": "Shell", "bytes": "93154" }, { "name": "SourcePawn", "bytes": "2892" }, { "name": "eC", "bytes": "7473" }, { "name": "sed", "bytes": "502" } ], "symlink_target": "" }
using MO.Common.Lang; using MO.Content3d.Resource.Material; using System.Windows.Forms; namespace MO.Design3d.Material.Controls { //============================================================ // <T>材质信息属性控件。</T> //============================================================ public partial class QDsMaterialGroupProperty : UserControl { // 材质对象 protected FDrMaterialGroup _materialGroup; //============================================================ // <T>构造材质信息属性控件。</T> //============================================================ public QDsMaterialGroupProperty() { InitializeComponent(); } //============================================================ // <T>获得或设置材质信息。</T> //============================================================ public FDrMaterialGroup MaterialGroup { get { return _materialGroup; } set { _materialGroup = value; } } //============================================================ // <T>加载材质信息。</T> // // @param material 材质信息 //============================================================ public void LoadMaterialGroup(FDrMaterialGroup materialGroup) { _materialGroup = materialGroup; if (null != materialGroup) { // 设置属性 txtName.Text = materialGroup.Name + "(" + materialGroup.Label + ")"; if (RString.IsEmpty(materialGroup.EffectName)) { cboEffectName.Text = cboEffectName.Items[0].ToString(); } else { cboEffectName.Text = materialGroup.EffectName; } if (RString.IsEmpty(materialGroup.TransformName)) { cboTransformName.Text = cboTransformName.Items[0].ToString(); } else { cboTransformName.Text = materialGroup.TransformName; } // 设置配置 qdrOptionLight.DataValue = materialGroup.OptionLight; qdrOptionMerge.DataValue = materialGroup.OptionMerge; qdrOptionSort.DataValue = materialGroup.OptionSort; nudSortLevel.Value = materialGroup.SortLevel; qdrOptionAlpha.DataValue = materialGroup.OptionAlpha; qdrOptionDepth.DataValue = materialGroup.OptionDepth; cboOptionCompare.Text = materialGroup.OptionCompare; qdrOptionDouble.DataValue = materialGroup.OptionDouble; qdrOptionShadow.DataValue = materialGroup.OptionShadow; qdrOptionShadowSelf.DataValue = materialGroup.OptionShadowSelf; qdrOptionDynamic.DataValue = materialGroup.OptionDynamic; qdrOptionTransmittance.DataValue = materialGroup.OptionTransmittance; qdrOptionOpacity.DataValue = materialGroup.OptionOpacity; } } //============================================================ // <T>保存材质信息。</T> // // @param material 材质信息 //============================================================ public void SaveMaterialGroup(FDrMaterialGroup materialGroup = null) { // 修改默认材质 if (null == materialGroup) { materialGroup = _materialGroup; } if (null == materialGroup) { return; } // 存储属性 materialGroup.EffectName = cboEffectName.Text; materialGroup.TransformName = cboTransformName.Text; // 存储配置 materialGroup.OptionLight = qdrOptionLight.DataValue; materialGroup.OptionMerge = qdrOptionMerge.DataValue; materialGroup.OptionSort = qdrOptionSort.DataValue; materialGroup.SortLevel = (int)nudSortLevel.Value; materialGroup.OptionAlpha = qdrOptionAlpha.DataValue; materialGroup.OptionDepth = qdrOptionDepth.DataValue; materialGroup.OptionCompare = cboOptionCompare.Text; materialGroup.OptionDouble = qdrOptionDouble.DataValue; materialGroup.OptionShadow = qdrOptionShadow.DataValue; materialGroup.OptionShadowSelf = qdrOptionShadowSelf.DataValue; materialGroup.OptionDynamic = qdrOptionDynamic.DataValue; materialGroup.OptionTransmittance = qdrOptionTransmittance.DataValue; materialGroup.OptionOpacity = qdrOptionOpacity.DataValue; // 刷新材质 materialGroup.RefreshMaterials(); } } }
{ "content_hash": "ee7315576d7ae86aff135ebfb417b901", "timestamp": "", "source": "github", "line_count": 101, "max_line_length": 81, "avg_line_length": 43.118811881188115, "alnum_prop": 0.5460390355912744, "repo_name": "favedit/MoCross", "id": "25620f221c4090aded5e805a73f4b0af0ac05916", "size": "4521", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "Tools/2 - Core/MoDesign3d/Material/Controls/QDsMaterialGroupProperty.cs", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "Batchfile", "bytes": "19515" }, { "name": "C", "bytes": "12939673" }, { "name": "C#", "bytes": "6744036" }, { "name": "C++", "bytes": "22566573" }, { "name": "Java", "bytes": "44614" }, { "name": "Makefile", "bytes": "3602334" }, { "name": "Objective-C", "bytes": "19417" }, { "name": "PHP", "bytes": "5760" }, { "name": "Python", "bytes": "170434" }, { "name": "R", "bytes": "2957" }, { "name": "Shell", "bytes": "220566" } ], "symlink_target": "" }
<!DOCTYPE html> <html> <head> <title>Continuum</title> <meta charset="utf-8"> <link rel="icon" type="image/png" href="images/favicon.ico"> <link href='http://fonts.googleapis.com/css?family=Lato:400,700,900,300' rel='stylesheet' type='text/css'> <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> <link href="stylesheets/vendor.css" rel="stylesheet"> <link href="stylesheets/index.css" rel="stylesheet"> <script src=build.js></script> <meta name="viewport" content="width=device-width, initial-scale=1"> </head> <body layout="row"> <div id="content" ui-view layout="column" layout-fill></div> </body> </html>
{ "content_hash": "4d7fc950f68217cf0b3d59ccdfb52b07", "timestamp": "", "source": "github", "line_count": 17, "max_line_length": 110, "avg_line_length": 40, "alnum_prop": 0.6838235294117647, "repo_name": "SBGLevelUpToolkit/continuum-web", "id": "2ddc9c71d5ca2f8c40d9ed3a4a6298bd50a297df", "size": "680", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "dist/index.html", "mode": "33188", "license": "mit", "language": [ { "name": "CSS", "bytes": "11501" }, { "name": "HTML", "bytes": "68299" }, { "name": "JavaScript", "bytes": "158709" } ], "symlink_target": "" }
var cp = require('child_process'); console.log('I am father process. PID:', process.pid); var cat = cp.spawn('cat', ['./messy.txt']); var sort = cp.spawn('sort'); var uniq = cp.spawn('uniq'); cat.stdout.pipe(sort.stdin); sort.stdout.pipe(uniq.stdin); uniq.stdout.pipe(process.stdout);
{ "content_hash": "2644f3afe44d3cb71c5847320a15728e", "timestamp": "", "source": "github", "line_count": 11, "max_line_length": 54, "avg_line_length": 26.181818181818183, "alnum_prop": 0.6770833333333334, "repo_name": "zhangshans3/nodejs-demo", "id": "275af9e5dced2d096856ee7b9bd9cf97febb8d18", "size": "305", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "15-child-process/02-spawn-v4.js", "mode": "33261", "license": "mit", "language": [ { "name": "JavaScript", "bytes": "27271" } ], "symlink_target": "" }
@implementation UITableViewCell (RACSignalSupport) - (RACSignal *)rac_prepareForReuseSignal { RACSignal *signal = objc_getAssociatedObject(self, _cmd); if (signal != nil) return signal; signal = [[[self rac_signalForSelector:@selector(prepareForReuse)] mapReplace:RACUnit.defaultUnit] setNameWithFormat:@"%@ -rac_prepareForReuseSignal", self.rac_description]; objc_setAssociatedObject(self, _cmd, signal, OBJC_ASSOCIATION_RETAIN_NONATOMIC); return signal; } @end
{ "content_hash": "93e5859380a38fbbba4abf39ba04e986", "timestamp": "", "source": "github", "line_count": 16, "max_line_length": 81, "avg_line_length": 29.875, "alnum_prop": 0.7677824267782427, "repo_name": "rdlester/placeviewer-reactive", "id": "20777435695ac7f2f294984043e50dce20ceca4e", "size": "852", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "Pods/ReactiveCocoa/ReactiveCocoa/UITableViewCell+RACSignalSupport.m", "mode": "33188", "license": "mit", "language": [ { "name": "Objective-C", "bytes": "29457" }, { "name": "Ruby", "bytes": "525" } ], "symlink_target": "" }
using System; using System.Collections.Generic; using System.Linq; using ExceptionShield.Exceptions; using ExceptionShield.Plugable.Resolver; using ExceptionShield.Policies; using ExceptionShield.Rules; using ExceptionShield.Strategies; using JetBrains.Annotations; #endregion namespace ExceptionShield { public class ExceptionManager : IExceptionManager { [NotNull] private readonly IUnconfiguredExceptionRule defaultRule; [NotNull] private readonly IPolicyMatchingStrategy strategy; [NotNull] private readonly IReadOnlyDictionary<Type, IExceptionPolicyGroup> policyGroupDictionary; [NotNull] private readonly IExceptionalResolver resolver = new DefaultResolver(); public ExceptionManager(IEnumerable<IExceptionPolicyGroup> policyGroupDictionary, IUnconfiguredExceptionRule defaultRule = null, IPolicyMatchingStrategy strategy = null) { try { this.policyGroupDictionary = policyGroupDictionary.ToDictionary(i => i.Handles, i => i); } catch (ArgumentException) { throw new ExceptionManagerConfigurationException(); } this.strategy = strategy ?? new DefaultPolicyMatchingStrategy(); this.defaultRule = defaultRule ?? new PolicyMissingDefaultRule(); } /// <inheritdoc /> public void Handle<TSrc>(TSrc exception, string context = Context.Default) where TSrc : Exception { if (exception == null) { throw new ArgumentNullException(nameof(exception)); } if (string.IsNullOrWhiteSpace(context)) { context = Context.Default; } var result = HandleInner(exception, context); if (result != null) { throw result; } } private Exception HandleInner<TSrc>(TSrc exception, string context) where TSrc : Exception { var policy = this.strategy.MatchPolicy(this.policyGroupDictionary, exception.GetType(), context); return policy != null ? policy.Handle(this.resolver, exception) : this.defaultRule.Apply(exception); } } }
{ "content_hash": "3616459bdab416f7dd1882262af7fa9b", "timestamp": "", "source": "github", "line_count": 69, "max_line_length": 119, "avg_line_length": 34.15942028985507, "alnum_prop": 0.6202800169707255, "repo_name": "MatthiasJansen/Exceptional", "id": "707bea07273b9d97f82751cd306230c58b5ec091", "size": "2508", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "src/ExceptionShield/ExceptionManager.cs", "mode": "33188", "license": "mit", "language": [ { "name": "C#", "bytes": "46475" }, { "name": "PowerShell", "bytes": "195" } ], "symlink_target": "" }
/** *@author Grégory Van den Borre */ #include "../includes/JniDirectionalLight.h" #include "../includes/DirectionalLight.hpp" JNIEXPORT void JNICALL Java_jni_JniDirectionalLight_delete( JNIEnv*, jobject, POINTER pointer) { LOG_FUNCTION delete reinterpret_cast<yz::DirectionalLight*>(pointer); } JNIEXPORT void JNICALL Java_jni_JniDirectionalLight_setPosition( JNIEnv*, jobject, POINTER pointer, jfloat x, jfloat y, jfloat z) { LOG_FUNCTION reinterpret_cast<yz::DirectionalLight*>(pointer)->setPosition(x, y, z); } JNIEXPORT void JNICALL Java_jni_JniDirectionalLight_setDirection( JNIEnv*, jobject, POINTER pointer, jfloat x, jfloat y, jfloat z) { LOG_FUNCTION reinterpret_cast<yz::DirectionalLight*>(pointer)->setDirection(x, y, z); }
{ "content_hash": "b94493bd35312c309a7664cadd8af907", "timestamp": "", "source": "github", "line_count": 37, "max_line_length": 76, "avg_line_length": 22.2972972972973, "alnum_prop": 0.6921212121212121, "repo_name": "yildiz-online/module-graphic-ogre", "id": "96c7dd5bf0bf304090e20f2257b9d0049e352ac5", "size": "2096", "binary": false, "copies": "1", "ref": "refs/heads/develop", "path": "src/main/resources/main/c++/JniDirectionalLight.cpp", "mode": "33188", "license": "mit", "language": [ { "name": "C", "bytes": "83453" }, { "name": "C++", "bytes": "422744" }, { "name": "Java", "bytes": "364682" } ], "symlink_target": "" }
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <name>mdb-that-replies-to-response-queue-collocated-and-remote</name> <modelVersion>4.0.0</modelVersion> <groupId>io.novaordis.playground.jee.ejb.mdb</groupId> <artifactId>mdb-that-replies-to-response-queue-collocated-and-remote</artifactId> <packaging>jar</packaging> <version>1</version> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <slf4j-version>1.7.12</slf4j-version> </properties> <build> <finalName>mdb-relay</finalName> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </pluginManagement> </build> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j-version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>${slf4j-version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax</groupId> <artifactId>javaee-api</artifactId> <version>6.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.jboss.ejb3</groupId> <artifactId>jboss-ejb3-ext-api</artifactId> <version>2.1.0.redhat-1</version> <scope>provided</scope> </dependency> </dependencies> </project>
{ "content_hash": "47dbf2b996e4bcfaa995c8f0abec2fa9", "timestamp": "", "source": "github", "line_count": 75, "max_line_length": 201, "avg_line_length": 34.82666666666667, "alnum_prop": 0.5176110260336907, "repo_name": "NovaOrdis/playground", "id": "7d44dcb6ce5e45f91987f208f38eec663df7ccd8", "size": "2612", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "jee/ejb/mdb-that-replies-to-response-queue-collocated-and-remote/pom.xml", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "ANTLR", "bytes": "1580" }, { "name": "Batchfile", "bytes": "315" }, { "name": "Dockerfile", "bytes": "6302" }, { "name": "Go", "bytes": "22677" }, { "name": "Groovy", "bytes": "1952" }, { "name": "Java", "bytes": "1485300" }, { "name": "Shell", "bytes": "508745" } ], "symlink_target": "" }
package org.pentaho.di.core.plugins; import java.io.InputStream; import java.lang.annotation.Annotation; import java.util.List; import java.util.Map; import org.pentaho.di.core.Const; import org.pentaho.di.core.annotations.ImportRulePlugin; import org.pentaho.di.core.exception.KettlePluginException; import org.pentaho.di.core.exception.KettleXMLException; import org.pentaho.di.core.xml.XMLHandler; import org.pentaho.di.imp.rule.ImportRuleInterface; import org.w3c.dom.Document; import org.w3c.dom.Node; /** * This is the import rule plugin type. * * @author matt * */ @PluginMainClassType(ImportRuleInterface.class) @PluginAnnotationType(ImportRulePlugin.class) public class ImportRulePluginType extends BasePluginType implements PluginTypeInterface { private static ImportRulePluginType pluginType; private ImportRulePluginType() { super(ImportRulePlugin.class, "IMPORT_RULE", "Import rule"); populateFolders("rules"); } public static ImportRulePluginType getInstance() { if (pluginType==null) { pluginType=new ImportRulePluginType(); } return pluginType; } /** * Scan & register internal step plugins */ protected void registerNatives() throws KettlePluginException { // Scan the native steps... // String kettleImportRulesXmlFile = Const.XML_FILE_KETTLE_IMPORT_RULES; // Load the plugins for this file... // try { InputStream inputStream = getClass().getResourceAsStream(kettleImportRulesXmlFile); if (inputStream==null) { inputStream = getClass().getResourceAsStream("/"+kettleImportRulesXmlFile); } if (inputStream==null) { throw new KettlePluginException("Unable to find native import rules definition file: "+Const.XML_FILE_KETTLE_IMPORT_RULES); } Document document = XMLHandler.loadXMLFile(inputStream, null, true, false); // Document document = XMLHandler.loadXMLFile(kettleStepsXmlFile); Node stepsNode = XMLHandler.getSubNode(document, "rules"); List<Node> stepNodes = XMLHandler.getNodes(stepsNode, "rule"); for (Node stepNode : stepNodes) { registerPluginFromXmlResource(stepNode, null, this.getClass(), true, null); } } catch (KettleXMLException e) { throw new KettlePluginException("Unable to read the kettle steps XML config file: "+kettleImportRulesXmlFile, e); } } /** * Scan & register internal step plugins */ protected void registerAnnotations() throws KettlePluginException { // This is no longer done because it was deemed too slow. Only jar files in the plugins/ folders are scanned for annotations. } protected void registerXmlPlugins() throws KettlePluginException { // Not supported, ignored } @Override protected String extractCategory(Annotation annotation) { return ""; } @Override protected String extractDesc(Annotation annotation) { return ((ImportRulePlugin) annotation).description(); } @Override protected String extractID(Annotation annotation) { return ((ImportRulePlugin) annotation).id(); } @Override protected String extractName(Annotation annotation) { return ((ImportRulePlugin) annotation).name(); } @Override protected String extractImageFile(Annotation annotation) { return null; } @Override protected boolean extractSeparateClassLoader(Annotation annotation) { return false; } @Override protected String extractI18nPackageName(Annotation annotation) { return ((ImportRulePlugin) annotation).i18nPackageName(); } @Override protected void addExtraClasses(Map<Class<?>, String> classMap, Class<?> clazz, Annotation annotation) { } }
{ "content_hash": "140ddcc5bf8fd2c93f3f1a517c9641a2", "timestamp": "", "source": "github", "line_count": 126, "max_line_length": 128, "avg_line_length": 28.666666666666668, "alnum_prop": 0.7455703211517165, "repo_name": "soluvas/pdi-ce", "id": "e9f3f0747a2e6b6014924a01bf8c96ca9cd050d9", "size": "4514", "binary": false, "copies": "4", "ref": "refs/heads/soluvas-4.3.x", "path": "src/org/pentaho/di/core/plugins/ImportRulePluginType.java", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "Java", "bytes": "26226707" }, { "name": "Shell", "bytes": "24558" } ], "symlink_target": "" }
<!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_181) on Thu Apr 16 16:19:20 IST 2020 --> <title>Uses of Class pb.locationintelligence.LIAPIGeoPropertyServiceApi</title> <meta name="date" content="2020-04-16"> <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class pb.locationintelligence.LIAPIGeoPropertyServiceApi"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../pb/locationintelligence/LIAPIGeoPropertyServiceApi.html" title="class in pb.locationintelligence">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../overview-tree.html">Tree</a></li> <li><a href="../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../index-files/index-1.html">Index</a></li> <li><a href="../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../index.html?pb/locationintelligence/class-use/LIAPIGeoPropertyServiceApi.html" target="_top">Frames</a></li> <li><a href="LIAPIGeoPropertyServiceApi.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class pb.locationintelligence.LIAPIGeoPropertyServiceApi" class="title">Uses of Class<br>pb.locationintelligence.LIAPIGeoPropertyServiceApi</h2> </div> <div class="classUseContainer">No usage of pb.locationintelligence.LIAPIGeoPropertyServiceApi</div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../pb/locationintelligence/LIAPIGeoPropertyServiceApi.html" title="class in pb.locationintelligence">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../overview-tree.html">Tree</a></li> <li><a href="../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../index-files/index-1.html">Index</a></li> <li><a href="../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../index.html?pb/locationintelligence/class-use/LIAPIGeoPropertyServiceApi.html" target="_top">Frames</a></li> <li><a href="LIAPIGeoPropertyServiceApi.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
{ "content_hash": "8b40187dab4860866aeea0c7ff902208", "timestamp": "", "source": "github", "line_count": 124, "max_line_length": 163, "avg_line_length": 35.87903225806452, "alnum_prop": 0.6399190829399866, "repo_name": "PitneyBowes/LocationIntelligenceSDK-Java", "id": "228d7da130adf568dd888201a036faf36ee9a69d", "size": "4449", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "Documentation/pb/locationintelligence/class-use/LIAPIGeoPropertyServiceApi.html", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "Java", "bytes": "2644538" }, { "name": "Scala", "bytes": "790" }, { "name": "Shell", "bytes": "1664" } ], "symlink_target": "" }
var check = require("./check"); var convert = require("./convert"); function process(instance) { if ( check.isSVG(instance) && check.isCompatible(instance) ) { convert(instance); } } module.exports = process;
{ "content_hash": "1aac34716363e043a9daf2d8426e8045", "timestamp": "", "source": "github", "line_count": 15, "max_line_length": 61, "avg_line_length": 14.733333333333333, "alnum_prop": 0.665158371040724, "repo_name": "webframes/smil2css", "id": "653c4f522c1312a95137f8ebde84a7cfb98a0fee", "size": "221", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "lib/process/index.js", "mode": "33188", "license": "mit", "language": [ { "name": "HTML", "bytes": "3180" }, { "name": "JavaScript", "bytes": "61086" } ], "symlink_target": "" }
#ifdef __OPENCV_BUILD #error this is a compatibility header which should not be used inside the OpenCV library #endif #include BOSS_OPENCV_U_opencv2__calib3d_hpp //original-code:"opencv2/calib3d.hpp"
{ "content_hash": "b5a68f9194b248cd79fdc9e7f859a5cb", "timestamp": "", "source": "github", "line_count": 7, "max_line_length": 88, "avg_line_length": 29, "alnum_prop": 0.7783251231527094, "repo_name": "koobonil/Boss2D", "id": "7611ac2261a6ff2f6748c45968c5d4ac3cd4252b", "size": "2420", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "Boss2D/addon/opencv-3.1.0_for_boss/modules/calib3d/include/opencv2/calib3d/calib3d.hpp", "mode": "33188", "license": "mit", "language": [ { "name": "Assembly", "bytes": "4820445" }, { "name": "Awk", "bytes": "4272" }, { "name": "Batchfile", "bytes": "89930" }, { "name": "C", "bytes": "119747922" }, { "name": "C#", "bytes": "87505" }, { "name": "C++", "bytes": "272329620" }, { "name": "CMake", "bytes": "1199656" }, { "name": "CSS", "bytes": "42679" }, { "name": "Clojure", "bytes": "1487" }, { "name": "Cuda", "bytes": "1651996" }, { "name": "DIGITAL Command Language", "bytes": "239527" }, { "name": "Dockerfile", "bytes": "9638" }, { "name": "Emacs Lisp", "bytes": "15570" }, { "name": "Go", "bytes": "858185" }, { "name": "HLSL", "bytes": "3314" }, { "name": "HTML", "bytes": "2958385" }, { "name": "Java", "bytes": "2921052" }, { "name": "JavaScript", "bytes": "178190" }, { "name": "Jupyter Notebook", "bytes": "1833654" }, { "name": "LLVM", "bytes": "6536" }, { "name": "M4", "bytes": "775724" }, { "name": "MATLAB", "bytes": "74606" }, { "name": "Makefile", "bytes": "3941551" }, { "name": "Meson", "bytes": "2847" }, { "name": "Module Management System", "bytes": "2626" }, { "name": "NSIS", "bytes": "4505" }, { "name": "Objective-C", "bytes": "4090702" }, { "name": "Objective-C++", "bytes": "1702390" }, { "name": "PHP", "bytes": "3530" }, { "name": "Perl", "bytes": "11096338" }, { "name": "Perl 6", "bytes": "11802" }, { "name": "PowerShell", "bytes": "38571" }, { "name": "Python", "bytes": "24123805" }, { "name": "QMake", "bytes": "18188" }, { "name": "Roff", "bytes": "1261269" }, { "name": "Ruby", "bytes": "5890" }, { "name": "Scala", "bytes": "5683" }, { "name": "Shell", "bytes": "2879948" }, { "name": "TeX", "bytes": "243507" }, { "name": "TypeScript", "bytes": "1593696" }, { "name": "Verilog", "bytes": "1215" }, { "name": "Vim Script", "bytes": "3759" }, { "name": "Visual Basic", "bytes": "16186" }, { "name": "eC", "bytes": "9705" } ], "symlink_target": "" }
"""Django manage.""" import os import sys if __name__ == "__main__": os.environ.setdefault("DJANGO_SETTINGS_MODULE", "nextfeed.settings") from django.core.management import execute_from_command_line execute_from_command_line(sys.argv)
{ "content_hash": "e1f91606b01dfebbb954ce9330d0239e", "timestamp": "", "source": "github", "line_count": 11, "max_line_length": 72, "avg_line_length": 22.818181818181817, "alnum_prop": 0.6972111553784861, "repo_name": "Nurdok/nextfeed", "id": "09bd4901cba90d3667f05e0c4e58463b5073bfa5", "size": "274", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "manage.py", "mode": "33188", "license": "mit", "language": [ { "name": "CSS", "bytes": "4174" }, { "name": "HTML", "bytes": "31030" }, { "name": "JavaScript", "bytes": "34478" }, { "name": "Python", "bytes": "31106" }, { "name": "Ruby", "bytes": "1286" }, { "name": "Shell", "bytes": "3336" } ], "symlink_target": "" }
package net.dtkanov.blocks.circuit; import net.dtkanov.blocks.logic.Node; import net.dtkanov.blocks.logic.Wire; public abstract class MultiNode extends Node { protected int bitness; protected Node data[] = null; public MultiNode(int num_bits) { this(num_bits, null); } public MultiNode(int num_bits, Wire out) { super(out); bitness = num_bits; } @Override public boolean isReady() { for (int i = 0; i < bitness; i++) { if (!data[i].isReady()) return false; } return true; } @Override public void reset() { if (data != null) { for (int i = 0; i < bitness; i++) data[i].reset(); } } @Override public void propagate(boolean force) { if (!force && !isReady()) return; for (int i = 0; i < bitness; i++) data[i].propagate(); super.propagate(true); } }
{ "content_hash": "4ede8ff4d69d8ef4122bc16138fb014a", "timestamp": "", "source": "github", "line_count": 44, "max_line_length": 46, "avg_line_length": 18.477272727272727, "alnum_prop": 0.6309963099630996, "repo_name": "akademi4eg/aka-uvc", "id": "03db6636747f98467178c7aabeee48997d63483d", "size": "813", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "src/net/dtkanov/blocks/circuit/MultiNode.java", "mode": "33188", "license": "mit", "language": [ { "name": "Java", "bytes": "185621" } ], "symlink_target": "" }
using System; using System.Linq; using Microsoft.Azure.Management.Monitor; using Microsoft.Azure.Management.Monitor.Models; using Microsoft.Rest.Azure.OData; using System.Threading.Tasks; using Microsoft.Rest.Azure.Authentication; using Newtonsoft.Json; namespace AccessServiceBusMetricsViaCode { class Program { public static async Task Main(String[] args) { await RunSampleAsync(); } static async Task RunSampleAsync() { var tenantId = ""; // AAD Tenant var clientId = ""; // AAD Web App ID. Do not use a native app var secret = ""; // Your generated secret var resourceId = ""; // resourceId can be taken when you select the namespace you intend to use in the portal and copy the url. Then delete everything before "subscriptions" and after the namespace name. string entityName = ""; // Queue or Topic name string metricName = "ActiveMessages"; // Valid metrics "IncomingMessages,IncomingRequests,ActiveMessages,Messages,Size" string aggregation = "Total"; // Valid aggregations: Total and Average // Create new Metrics token and Management client. var serviceCreds = await ApplicationTokenProvider.LoginSilentAsync(tenantId, clientId, secret); MonitorManagementClient monitoringClient = new MonitorManagementClient(serviceCreds); var metricDefinitions = monitoringClient.MetricDefinitions.List(resourceId); if (metricDefinitions.FirstOrDefault( metric => string.Equals(metric.Name.Value, metricName, StringComparison.InvariantCultureIgnoreCase)) == null) { Console.WriteLine("Invalid metric"); return; } string startDate = DateTime.Now.AddHours(-1).ToString("o"); string endDate = DateTime.Now.ToString("o"); string timeSpan = startDate + "/" + endDate; ODataQuery<MetadataValue> odataFilterMetrics = new ODataQuery<MetadataValue>($"EntityName eq '{entityName}'"); // Use this as quick and easy way to understand what metrics are emitted and what to query for. // When looking for the count and size of an entity the only supported way is using total and 1 minute time slices. // Accessing those metrics via code is mostly for auto scaling purposes on sender and receiver side. Response metrics1 = monitoringClient.Metrics.List(resourceUri: resourceId, metricnames: metricName, odataQuery: odataFilterMetrics, timespan: timeSpan, aggregation: aggregation, interval: TimeSpan.FromMinutes(1)); Console.WriteLine(JsonConvert.SerializeObject(metrics1, Newtonsoft.Json.Formatting.Indented)); // Use this to get a list output to your console var metrics = monitoringClient.Metrics.List(resourceId, odataFilterMetrics, timeSpan, TimeSpan.FromMinutes(1), metricName, aggregation); EnumerateMetrics(metrics, resourceId, entityName); Console.WriteLine("Press any key to exit."); Console.ReadLine(); } private static void EnumerateMetrics(Response metrics, string armId, string entityName, int maxRecords = 60) { Console.Write( "Cost: {0}\r\nTimespan: {1}\r\nInterval: {2}\r\n", metrics.Cost, metrics.Timespan, metrics.Interval); var numRecords = 0; Console.WriteLine("Printing metrics for Resource " + armId); foreach (var metric in metrics.Value) { foreach (var timeSeries in metric.Timeseries) { // Use Average and multiplier for bigger time ranges than one minute and when observing bigger time ranges than 5 minutes. // Use Total for short time ranges and 1 minute interval for observing e.g. one hour worth of data and decide to automatically scale receivers or senders. foreach (var data in timeSeries.Data) { Console.WriteLine( "{0}\t{1}\t{2}\t{3}", entityName, metric.Name.Value, metric.Name.LocalizedValue, data.Total); } } numRecords++; if (numRecords >= maxRecords) { break; } } } } }
{ "content_hash": "1a4c542bebb588637d5b4b5295750456", "timestamp": "", "source": "github", "line_count": 92, "max_line_length": 239, "avg_line_length": 51.51086956521739, "alnum_prop": 0.5944292044735177, "repo_name": "clemensv/azure-service-bus", "id": "d628aba37a3b5a59edea41551f1dc131c53099a9", "size": "4741", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "samples/Management/Metrics/AccessServiceBusMetricsViaCode/Program.cs", "mode": "33188", "license": "mit", "language": [], "symlink_target": "" }
TASSELpy.net.maizegenetics.analysis.association package ======================================================= Submodules ---------- TASSELpy.net.maizegenetics.analysis.association.FixedEffectLMPlugin module -------------------------------------------------------------------------- .. automodule:: TASSELpy.net.maizegenetics.analysis.association.FixedEffectLMPlugin :members: :undoc-members: :show-inheritance: Module contents --------------- .. automodule:: TASSELpy.net.maizegenetics.analysis.association :members: :undoc-members: :show-inheritance:
{ "content_hash": "dac7bc214acca920ba3cadc12372d742", "timestamp": "", "source": "github", "line_count": 22, "max_line_length": 83, "avg_line_length": 26.545454545454547, "alnum_prop": 0.5736301369863014, "repo_name": "er432/TASSELpy", "id": "615bea67bf5ee65ae6c74dc6e59e1c5190eeab60", "size": "584", "binary": false, "copies": "1", "ref": "refs/heads/develop", "path": "docs/TASSELpy.net.maizegenetics.analysis.association.rst", "mode": "33188", "license": "bsd-3-clause", "language": [ { "name": "Python", "bytes": "947691" }, { "name": "Shell", "bytes": "6705" } ], "symlink_target": "" }
package com.sequenceiq.environment.client; import com.sequenceiq.cloudbreak.client.AbstractUserCrnServiceClient; import com.sequenceiq.cloudbreak.client.ConfigKey; public class EnvironmentServiceUserCrnClient extends AbstractUserCrnServiceClient<EnvironmentServiceCrnEndpoints> { protected EnvironmentServiceUserCrnClient(String serviceAddress, ConfigKey configKey, String apiRoot) { super(serviceAddress, configKey, apiRoot); } @Override public EnvironmentServiceCrnEndpoints withCrn(String crn) { return new EnvironmentServiceCrnEndpoints(getWebTarget(), crn); } }
{ "content_hash": "df2b76ecffccf674adb83c2e2e1a73cf", "timestamp": "", "source": "github", "line_count": 16, "max_line_length": 115, "avg_line_length": 37.9375, "alnum_prop": 0.8088962108731467, "repo_name": "hortonworks/cloudbreak", "id": "47c5817ad5786dc6686b5c0e8b6dde31dc82215b", "size": "607", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "environment-api/src/main/java/com/sequenceiq/environment/client/EnvironmentServiceUserCrnClient.java", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "CSS", "bytes": "7535" }, { "name": "Dockerfile", "bytes": "9586" }, { "name": "Fluent", "bytes": "10" }, { "name": "FreeMarker", "bytes": "395982" }, { "name": "Groovy", "bytes": "523" }, { "name": "HTML", "bytes": "9917" }, { "name": "Java", "bytes": "55250904" }, { "name": "JavaScript", "bytes": "47923" }, { "name": "Jinja", "bytes": "190660" }, { "name": "Makefile", "bytes": "8537" }, { "name": "PLpgSQL", "bytes": "1830" }, { "name": "Perl", "bytes": "17726" }, { "name": "Python", "bytes": "29898" }, { "name": "SaltStack", "bytes": "222692" }, { "name": "Scala", "bytes": "11168" }, { "name": "Shell", "bytes": "416225" } ], "symlink_target": "" }
const ghpages = require('gh-pages'); ghpages.publish( 'static', { message: 'update demo page', push: true, }, (error) => { console.log('finish'); console.log(error); }, );
{ "content_hash": "db5b43a183470a092b9b5c6463f4581a", "timestamp": "", "source": "github", "line_count": 13, "max_line_length": 36, "avg_line_length": 15.307692307692308, "alnum_prop": 0.5577889447236181, "repo_name": "WendellLiu/react-selectronic", "id": "2bd1fa8aafc09fabaa749d6c759ad6b5ad0aceed", "size": "199", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "script/publishGhpage.js", "mode": "33188", "license": "mit", "language": [ { "name": "HTML", "bytes": "337" }, { "name": "JavaScript", "bytes": "10904" } ], "symlink_target": "" }
<?php declare(strict_types = 1); namespace FireflyIII\Http\Controllers\Auth; use FireflyIII\Http\Controllers\Controller; use FireflyIII\User; use Illuminate\Foundation\Auth\ResetsPasswords; use Illuminate\Http\Request; use Illuminate\Mail\Message; use Illuminate\Support\Facades\Password; /** * Class PasswordController * * @package FireflyIII\Http\Controllers\Auth */ class PasswordController extends Controller { /* |-------------------------------------------------------------------------- | Password Reset Controller |-------------------------------------------------------------------------- | | This controller is responsible for handling password reset requests | and uses a simple trait to include this behavior. You're free to | explore this trait and override any methods you wish to tweak. | */ use ResetsPasswords; /** * Create a new password controller instance. * */ public function __construct() { parent::__construct(); $this->middleware('guest'); } /** * Send a reset link to the given user. * * @param \Illuminate\Http\Request $request * * @return \Illuminate\Http\Response */ public function sendResetLinkEmail(Request $request) { $this->validate($request, ['email' => 'required|email']); $user = User::whereEmail($request->get('email'))->first(); if (!is_null($user) && intval($user->blocked) === 1) { $response = 'passwords.blocked'; } else { $response = Password::sendResetLink( $request->only('email'), function (Message $message) { $message->subject($this->getEmailSubject()); } ); } switch ($response) { case Password::RESET_LINK_SENT: return $this->getSendResetLinkEmailSuccessResponse($response); case Password::INVALID_USER: case 'passwords.blocked': default: return $this->getSendResetLinkEmailFailureResponse($response); } } }
{ "content_hash": "79e1d4ec065cda3f734728feba0c0d69", "timestamp": "", "source": "github", "line_count": 79, "max_line_length": 79, "avg_line_length": 26.949367088607595, "alnum_prop": 0.5631751996242367, "repo_name": "tonicospinelli/firefly-iii", "id": "e341c46372a3eb06e41afcdc97f15e145605ecc9", "size": "2129", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "app/Http/Controllers/Auth/PasswordController.php", "mode": "33188", "license": "mit", "language": [ { "name": "ApacheConf", "bytes": "412" }, { "name": "HTML", "bytes": "377859" }, { "name": "JavaScript", "bytes": "134697" }, { "name": "PHP", "bytes": "1717078" }, { "name": "Shell", "bytes": "3352" } ], "symlink_target": "" }
from django.conf.urls import url from django.contrib.auth.views import logout from user.views import user_login, user_register, user_settings, user_profile, user_area51 urlpatterns = [ url(r'register$', user_register, name='user_register'), url(r'login$', user_login, name='user_login'), url(r'logout$', logout, {'next_page': 'index'}, name='user_logout'), url(r'settings/profile$', user_profile, name='user_profile'), url(r'settings/area51$', user_area51, name='user_area51'), url(r'settings$', user_settings, name='user_settings'), ]
{ "content_hash": "9763998e0ccc2c6a2a9dbec16d672e18", "timestamp": "", "source": "github", "line_count": 13, "max_line_length": 90, "avg_line_length": 43.23076923076923, "alnum_prop": 0.693950177935943, "repo_name": "Djacket/djacket", "id": "2465fc63bd1311374e685873ffb9933fdb7d314b", "size": "562", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "core/backend/user/urls.py", "mode": "33188", "license": "mit", "language": [ { "name": "CSS", "bytes": "29609" }, { "name": "HTML", "bytes": "35321" }, { "name": "JavaScript", "bytes": "12900" }, { "name": "Python", "bytes": "88290" }, { "name": "Shell", "bytes": "11320" } ], "symlink_target": "" }
using System; using System.Collections.Generic; using System.IO; using System.Reflection.Emit; using System.Text.RegularExpressions; using DocGenerator; namespace DocGenerator.Documentation.Files { public abstract class DocumentationFile { protected FileInfo FileLocation { get; } protected string Extension => this.FileLocation?.Extension.ToLowerInvariant(); protected DocumentationFile(FileInfo fileLocation) { this.FileLocation = fileLocation; } public abstract void SaveToDocumentationFolder(); public static DocumentationFile Load(FileInfo fileLocation) { var extension = fileLocation?.Extension; switch (extension) { case ".cs": return new CSharpDocumentationFile(fileLocation); case ".gif": case ".jpg": case ".jpeg": case ".png": return new ImageDocumentationFile(fileLocation); case ".asciidoc": return new RawDocumentationFile(fileLocation); } throw new ArgumentOutOfRangeException(nameof(fileLocation), $"The extension you specified is currently not supported: {extension}"); } protected virtual FileInfo CreateDocumentationLocation() { var testFullPath = this.FileLocation.FullName; var testInDocumentationFolder = Regex.Replace(testFullPath, @"(^.+\\Tests\\|\" + this.Extension + "$)", "") .TrimEnd(".doc") .TrimEnd("Tests") .PascalToHyphen() + ".asciidoc"; var documentationTargetPath = Path.GetFullPath(Path.Combine(Program.OutputDirPath, testInDocumentationFolder)); var fileInfo = new FileInfo(documentationTargetPath); if (fileInfo.Directory != null) Directory.CreateDirectory(fileInfo.Directory.FullName); return fileInfo; } } }
{ "content_hash": "2b374e57c50e7c4631fad98a7b04786e", "timestamp": "", "source": "github", "line_count": 60, "max_line_length": 114, "avg_line_length": 28.083333333333332, "alnum_prop": 0.7323442136498516, "repo_name": "TheFireCookie/elasticsearch-net", "id": "2f7cedd3527d12f13b030e64cccfc820af2d5759", "size": "1685", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "src/CodeGeneration/DocGenerator/Documentation/Files/DocumentationFile.cs", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "Batchfile", "bytes": "1511" }, { "name": "C#", "bytes": "7306106" }, { "name": "F#", "bytes": "33028" }, { "name": "HTML", "bytes": "401915" }, { "name": "Shell", "bytes": "698" }, { "name": "Smalltalk", "bytes": "3426" } ], "symlink_target": "" }