- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 928 for Tiller (0.3 sec)
-
.markdownlint.yml
Others - Registered: 2022-08-10 19:40 - Last Modified: 2022-07-13 00:08 - 2.5K bytes - Viewed (0) -
doc/core/epoll-polling-engine.md
# `epoll`-based pollset implementation in gRPC Sree Kuchibhotla (sreek@) [May - 2016] (Design input from Craig Tiller and David Klempner) > Status: As of June 2016, this change is implemented and merged. > * The bulk of the functionality is in: [ev_epollsig_linux.c](https://github.com/grpc/grpc/blob/master/src/core/lib/iomgr/ev_epollsig_linux.c) > * Pull request: https://github.com/grpc/grpc/pull/6803 ## 1. Introduction
Plain Text - Registered: 2022-08-09 20:15 - Last Modified: 2020-02-10 14:53 - 9.6K bytes - Viewed (0) -
cmd/update_test.go
t.Fatalf("Unable to create temporary file. %s", err) } return tmpfile.Name() } filename := createTempFile( `app="virtuous-rat-minio" chart="minio-0.1.3" heritage="Tiller" pod-template-hash="818089471"`) defer os.Remove(filename) testCases := []struct { filename string expectedResult string }{ {"", ""}, {"/tmp/non-existing-file", ""},
Go - Registered: 2022-08-14 16:08 - Last Modified: 2022-07-15 23:00 - 10.8K bytes - Viewed (0) -
doc/release-notes/release-notes-0.10.0.md
- Cory Fields - Cozz Lovan - daniel - Daniel Kraft - David Hill - Derek701 - dexX7 - dllud - Dominyk Tiller - Doug - elichai - elkingtowa - ENikS - Eric Shaw - Federico Bond - Francis GASCHET - Gavin Andresen - Giuseppe Mazzotta - Glenn Willen - Gregory Maxwell - gubatron - HarryWu - himynameismartin - Huang Le - Ian Carroll - imharrywu - Jameson Lopp
Plain Text - Registered: 2022-08-09 01:31 - Last Modified: 2015-04-01 16:43 - 35.5K bytes - Viewed (0) -
src/plugins/plugin.filler/filler.target.js
import {isFinite} from '../../helpers'; import {_createBoundaryLine} from './filler.helper'; import {_getTargetPixel, _getTargetValue} from './filler.options'; import {_buildStackLine} from './filler.target.stack'; import {simpleArc} from './simpleArc'; /** * @typedef { import('../../core/core.controller').default } Chart * @typedef { import('../../core/core.scale').default } Scale * @typedef { import('../../elements/element.point').default } PointElement
JavaScript - Registered: 2022-08-14 10:25 - Last Modified: 2022-03-18 21:39 - 2.2K bytes - Viewed (0) -
src/plugins/plugin.filler/filler.drawing.js
import {clipArea, unclipArea} from '../../helpers'; import {_findSegmentEnd, _getBounds, _segments} from './filler.segment'; import {_getTarget} from './filler.target'; export function _drawfill(ctx, source, area) { const target = _getTarget(source); const {line, scale, axis} = source; const lineOpts = line.options; const fillOption = lineOpts.fill; const color = lineOpts.backgroundColor; const {above = color, below = color} = fillOption || {};
JavaScript - Registered: 2022-08-14 10:25 - Last Modified: 2022-02-12 15:22 - 3.2K bytes - Viewed (0) -
test/specs/plugin.filler.tests.js
describe('Plugin.filler', function() { function decodedFillValues(chart) { return chart.data.datasets.map(function(dataset, index) { var meta = chart.getDatasetMeta(index) || {}; expect(meta.$filler).toBeDefined(); return meta.$filler.fill; }); } describe('auto', jasmine.fixture.specs('plugin.filler')); describe('dataset.fill', function() { it('should support boundaries', function() {
JavaScript - Registered: 2022-08-14 10:25 - Last Modified: 2021-02-10 13:21 - 6.4K bytes - Viewed (0) -
ciphers/deterministic_miller_rabin.py
assert not miller_rabin(3_078_386_641) assert miller_rabin(3_078_386_653) # 3_215_031_751 assert not miller_rabin(1_713_045_574_801) assert miller_rabin(1_713_045_574_819) # 2_152_302_898_747 assert not miller_rabin(2_779_799_728_307) assert miller_rabin(2_779_799_728_327) # 3_474_749_660_383 assert not miller_rabin(113_850_023_909_441) assert miller_rabin(113_850_023_909_527)
Python - Registered: 2022-08-11 19:18 - Last Modified: 2022-01-30 19:29 - 4.1K bytes - Viewed (0) -
src/plugins/plugin.filler/filler.helper.js
* @typedef { import('../../elements/element.point').default } PointElement */ import {LineElement} from '../../elements'; import {isArray} from '../../helpers'; import {_pointsFromSegments} from './filler.segment'; /** * @param {PointElement[] | { x: number; y: number; }} boundary * @param {LineElement} line * @return {LineElement?} */ export function _createBoundaryLine(boundary, line) { let points = [];
JavaScript - Registered: 2022-08-14 10:25 - Last Modified: 2022-06-22 11:41 - 943 bytes - Viewed (0) -
ciphers/rabin_miller.py
# Primality Testing with the Rabin-Miller Algorithm import random def rabinMiller(num: int) -> bool: s = num - 1 t = 0 while s % 2 == 0: s = s // 2 t += 1 for trials in range(5): a = random.randrange(2, num - 1) v = pow(a, s, num) if v != 1: i = 0 while v != (num - 1): if i == t - 1: return False
Python - Registered: 2022-08-11 19:18 - Last Modified: 2022-04-08 17:40 - 3.2K bytes - Viewed (0)