// GENERATED - DO NOT EDIT // Copyright 2018+ the Deno authors. All rights reserved. MIT license. // https://raw.githubusercontent.com/denoland/deno/main/cli/tests/unit/get_random_values_test.ts import { createDenoTest } from "deno:harness"; const { test, assertNotEquals, assertStrictEquals } = createDenoTest(import.meta.path); test(function getRandomValuesInt8Array() { const arr = new Int8Array(32); crypto.getRandomValues(arr); assertNotEquals(arr, new Int8Array(32)); }); test(function getRandomValuesUint8Array() { const arr = new Uint8Array(32); crypto.getRandomValues(arr); assertNotEquals(arr, new Uint8Array(32)); }); test(function getRandomValuesUint8ClampedArray() { const arr = new Uint8ClampedArray(32); crypto.getRandomValues(arr); assertNotEquals(arr, new Uint8ClampedArray(32)); }); test(function getRandomValuesInt16Array() { const arr = new Int16Array(4); crypto.getRandomValues(arr); assertNotEquals(arr, new Int16Array(4)); }); test(function getRandomValuesUint16Array() { const arr = new Uint16Array(4); crypto.getRandomValues(arr); assertNotEquals(arr, new Uint16Array(4)); }); test(function getRandomValuesInt32Array() { const arr = new Int32Array(8); crypto.getRandomValues(arr); assertNotEquals(arr, new Int32Array(8)); }); test(function getRandomValuesBigInt64Array() { const arr = new BigInt64Array(8); crypto.getRandomValues(arr); assertNotEquals(arr, new BigInt64Array(8)); }); test(function getRandomValuesUint32Array() { const arr = new Uint32Array(8); crypto.getRandomValues(arr); assertNotEquals(arr, new Uint32Array(8)); }); test(function getRandomValuesBigUint64Array() { const arr = new BigUint64Array(8); crypto.getRandomValues(arr); assertNotEquals(arr, new BigUint64Array(8)); }); test(function getRandomValuesReturnValue() { const arr = new Uint32Array(8); const rtn = crypto.getRandomValues(arr); assertNotEquals(arr, new Uint32Array(8)); assertStrictEquals(rtn, arr); }); _modules/k8s-io-95614c8192 Unnamed repository; edit this file 'description' to name the repository.
aboutsummaryrefslogtreecommitdiff
path: root/plugin/kubernetes/object/pod.go (unfollow)
AgeCommit message (Expand)AuthorFilesLines
2021-07-29kubernetes: Improve namespace usage (#4767)Gravatar Mat Lowery 9-47/+100
2021-07-26build(deps): bump google.golang.org/api from 0.50.0 to 0.51.0 (#4770)Gravatar dependabot[bot] 2-7/+16
2021-07-26build(deps): bump github.com/aws/aws-sdk-go from 1.40.2 to 1.40.7 (#4769)Gravatar dependabot[bot] 2-3/+3
2021-07-26build(deps): bump codecov/codecov-action from 1 to 2.0.2 (#4768)Gravatar dependabot[bot] 1-1/+1
2021-07-20auto remove trailing whitespacesGravatar coredns[bot] 3-4/+4
2021-07-19build(deps): bump k8s.io/client-go from 0.21.2 to 0.21.3 (#4761)Gravatar dependabot[bot] 2-6/+3
2021-07-19build(deps): bump github.com/aws/aws-sdk-go from 1.39.4 to 1.40.2 (#4763)Gravatar dependabot[bot] 2-3/+3
2021-07-19build(deps): bump k8s.io/api from 0.21.2 to 0.21.3 (#4760)Gravatar dependabot[bot] 2-5/+8
2021-07-19auto go fmtGravatar coredns[bot] 1-3/+3
2021-07-18auto make -f Makefile.docGravatar coredns[bot] 2-0/+202
2021-07-16plugin/forward : add proxy address as tag (#4757)Gravatar Ondřej Benkovský 1-0/+2
2021-07-15notes: add introduction text and more PRs (#4755)Gravatar Miek Gieben 1-8/+17
2021-07-15plugin/header: run go gen and small doc updates (#4754)Gravatar Miek Gieben 5-10/+11
2021-07-15plugin/header: Introduce header plugin (#4752)Gravatar Qasim Sarfraz 8-0/+357
2021-07-14Fix typo on kubernetes plugin (#4753)Gravatar Jeongwook Park 1-6/+6
2021-07-14deflake TestMultiZoneBlockConfigs (#4751)Gravatar Miek Gieben 1-5/+25
2021-07-14Create geoip plugin (#4688)Gravatar Sven Nebel 17-6/+573
2021-07-14publish trace id as metadata from trace plugin (#4749)Gravatar Ondřej Benkovský 2-0/+17