Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 42 for 0bxxxxx (0.21 sec)

  1. hack/make-rules/test-cmd.sh

      make -C "${KUBE_ROOT}" WHAT="cmd/kube-controller-manager"
    
      # Start controller manager
      kube::log::status 'Generate kubeconfig for controller-manager'
      local config
      config="$(mktemp controller-manager.kubeconfig.XXXXX)"
      cat <<EOF > "$config"
    kind: Config
    users:
    - name: controller-manager
      user:
        token: admin-token
    clusters:
    - cluster:
        server: https://127.0.0.1:${SECURE_API_PORT}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 09:10:14 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. docs/batch-jobs/README.md

    	  #     value: "image/*" # match objects with 'content-type', with all values starting with 'image/'
    
    	notify:
    	  endpoint: "https://notify.endpoint" # notification endpoint to receive job status events
    	  token: "Bearer xxxxx" # optional authentication token for the notification endpoint
    
    	retry:
    	  attempts: 10 # number of retries for the job before giving up
    	  delay: "500ms" # least amount of delay between each retry
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Oct 06 06:00:43 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  3. cmd/erasure-decode_test.go

    	b.Run(" X00000|X00000 ", func(b *testing.B) { benchmarkErasureDecode(6, 6, 1, 1, size, b) })
    	b.Run(" 000000|XXXXXX ", func(b *testing.B) { benchmarkErasureDecode(6, 6, 0, 6, size, b) })
    	b.Run(" XXX000|XXX000 ", func(b *testing.B) { benchmarkErasureDecode(6, 6, 3, 3, size, b) })
    	b.Run(" XXXXXX|000000 ", func(b *testing.B) { benchmarkErasureDecode(6, 6, 6, 0, size, b) })
    }
    
    func BenchmarkErasureDecode_16_40MB(b *testing.B) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 30 20:43:25 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/internal/language/compact/language.go

    // The parent for a language may change for newer versions of CLDR.
    func (t Tag) Parent() Tag {
    	if t.full != nil {
    		return Make(t.full.Parent())
    	}
    	if t.language != t.locale {
    		// Simulate stripping -u-rg-xxxxxx
    		return Tag{language: t.language, locale: t.language}
    	}
    	// TODO: use parent lookup table once cycle from internal package is
    	// removed. Probably by internalizing the table and declaring this fast
    	// enough.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/test_cache_inputs.txt

    go test testcache -run=Exec
    ! stdout '\(cached\)'
    go test testcache -run=Exec
    stdout '\(cached\)'
    
    -- testcache/file.txt --
    xx
    -- 4x.txt --
    xxxx
    -- 6x.txt --
    xxxxxx
    -- 2y.txt --
    yy
    -- $WORK/external.txt --
    This file is outside of GOPATH.
    -- testcache/script.sh --
    #!/bin/sh
    exit 0
    -- testcache/testcache_test.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 22:23:53 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. internal/config/identity/openid/jwt_test.go

    	}
    }
    
    func TestDefaultExpiryDuration(t *testing.T) {
    	testCases := []struct {
    		reqURL    string
    		duration  time.Duration
    		expectErr bool
    	}{
    		{
    			reqURL:   "http://127.0.0.1:8443/?Token=xxxxx",
    			duration: time.Duration(60) * time.Minute,
    		},
    		{
    			reqURL:    "http://127.0.0.1:8443/?DurationSeconds=9s",
    			expectErr: true,
    		},
    		{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. src/strings/replace_test.go

    		"X", "Y",
    		"Y", "Z",
    	)
    	testCases = append(testCases,
    		testCase{gen1, "fooaaabar", "foo3[aaa]b1[a]r"},
    		testCase{gen1, "long, longerst, longer", "short, most long, medium"},
    		testCase{gen1, "xxxxx", "xxxxX"},
    		testCase{gen1, "XiX", "YiY"},
    		testCase{gen1, "", ""},
    	)
    
    	// gen2 has multiple old strings with no pairwise common prefix.
    	gen2 := NewReplacer(
    		"roses", "red",
    		"violets", "blue",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 22:53:05 UTC 2017
    - 14.1K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/net/InternetDomainNameTest.java

              ALMOST_TOO_LONG + ".c");
    
      private static final ImmutableSet<String> RS =
          ImmutableSet.of(
              "com",
              "co.uk",
              "foo.bd",
              "xxxxxx.bd",
              "org.mK",
              "us",
              "co.uk.", // Trailing dot
              "co\uFF61uk", // Alternate dot character
              "\u7f51\u7edc.Cn", // "网络.Cn"
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 05 13:16:00 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  9. src/runtime/map_test.go

    	testMapLookups(t, map[string]string{
    		"x":                      "x1val",
    		"xx":                     "x2val",
    		"foo":                    "fooval",
    		"xxxx":                   "x4val",
    		"xxxxx":                  "x5val",
    		"xxxxxx":                 "x6val",
    		strings.Repeat("x", 128): "longval",
    	})
    }
    
    func testMapLookups(t *testing.T, m map[string]string) {
    	for k, v := range m {
    		if m[k] != v {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  10. cmd/batch-rotate.go

    //     kmskey: "key-id" # match objects with KMS key-id (applicable only for sse-kms)
    //   notify:
    //     endpoint: "https://notify.endpoint" # notification endpoint to receive job status events
    //     token: "Bearer xxxxx" # optional authentication token for the notification endpoint
    
    //   retry:
    //     attempts: 10 # number of retries for the job before giving up
    //     delay: "500ms" # least amount of delay between each retry
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top