Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for randSeq (0.22 sec)

  1. pkg/proxy/util/linebuffer_test.go

    	for _, testCase := range testCases {
    		t.Run(testCase.name, func(t *testing.T) {
    			testBuffer.Reset()
    			discardBuffer.Reset()
    			for i := 0; i < testCase.expected; i++ {
    				testBuffer.Write(randSeq())
    				discardBuffer.Write(randSeq())
    			}
    			n := testBuffer.Lines()
    			if n != testCase.expected {
    				t.Fatalf("lines expected: %d, got: %d", testCase.expected, n)
    			}
    			n = discardBuffer.Lines()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 12:38:25 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. cluster/kubemark/iks/config-default.sh

    # limitations under the License.
    
    # Cloud information
    RANDGEN=$(dd if=/dev/urandom bs=64 count=1 2>/dev/null | base64 | tr -d "=+/" | dd bs=16 count=1 2>/dev/null | sed 's/[A-Z]//g')
    # shellcheck disable=2034 # Variable sourced in other scripts.
    KUBE_NAMESPACE="kubemark_${RANDGEN}"
    KUBEMARK_IMAGE_TAG="${KUBEMARK_IMAGE_TAG:-2}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 17:15:29 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  3. src/testing/sub_test.go

        --- FAIL: failnow skips future sequential and parallel tests at same level/#00 (N.NNs)
        `,
    		f: func(t *T) {
    			ranSeq := false
    			ranPar := false
    			t.Run("", func(t *T) {
    				t.Run("par", func(t *T) {
    					t.Parallel()
    					ranPar = true
    				})
    				t.Run("seq", func(t *T) {
    					ranSeq = true
    				})
    				t.FailNow()
    				t.Run("seq", func(t *T) {
    					realTest.Error("test must be skipped")
    				})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 21:27:08 UTC 2023
    - 23.8K bytes
    - Viewed (0)
  4. tensorflow/cc/framework/cc_op_gen_util.cc

          // Keywords obtained from http://en.cppreference.com/w/cpp/keyword
          kCPPReserved = new absl::flat_hash_set<StringPiece, StringPieceHasher>{
              "alignas",
              "alignof",
              "and",
              "and_eq",
              "asm",
              "atomic_cancel",
              "atomic_commit",
              "atomic_noexcept",
              "auto",
              "bitand",
              "bitor",
              "bool",
              "break",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 25K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/arm/armasm/tables.go

    	{0x0fe00000, 0x02000000, 2, AND_EQ, 0x14011c04, instArgs{arg_R_12, arg_R_16, arg_const}},                      // AND{S}<c> <Rd>,<Rn>,#<const> cond:4|0|0|1|0|0|0|0|S|Rn:4|Rd:4|imm12:12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 267.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_repositories.adoc

    ----
    
    e.g. `s3://myBucket.s3.eu-central-1.amazonaws.com/maven/release`
    
    * `myBucket` is the AWS S3 bucket name.
    * `s3.eu-central-1.amazonaws.com` is the _optional_ http://docs.aws.amazon.com/general/latest/gr/rande.html#s3_region[region specific endpoint].
    * `/maven/release` is the AWS S3 key (unique identifier for an object within a bucket)
    
    
    [[sub:s3_proxy_settings]]
    === S3 proxy settings
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 43.2K bytes
    - Viewed (0)
Back to top