Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 92 for Keys (0.2 sec)

  1. cluster/gce/gci/configure-helper.sh

      MASTER_PD_DEVICE="/dev/disk/by-id/${relative_path}"
    }
    
    # Mounts a persistent disk (formatting if needed) to store the persistent data
    # on the master -- etcd's data, a few settings, and security certs/keys/tokens.
    # safe-format-and-mount only formats an unformatted disk, and mkdir -p will
    # leave a directory be if it already exists.
    function mount-master-pd {
      find-master-pd
      if [[ -z "${MASTER_PD_DEVICE:-}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.31.md

    - Fixes a 1.30.0 regression in openapi descriptions of imagePullSecrets and hostAliases fields to mark the fields used as keys in those lists as either defaulted or required. ([#124553](https://github.com/kubernetes/kubernetes/pull/124553), [@pmalek](https://github.com/pmalek)) [SIG API Machinery]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.28.md

    - Fixed a regression in default configurations, which enabled PodDisruptionConditions by default, 
      that prevented the control plane's pod garbage collector from deleting pods that contained duplicated field keys (env. variables with repeated keys or container ports). ([#121379](https://github.com/kubernetes/kubernetes/pull/121379), [@mimowo](https://github.com/mimowo)) [SIG Apps, Auth, Node, Scheduling and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_builder_test.go

    			subsetClusters := cb.applyDestinationRule(ec, tt.clusterMode, tt.service, tt.port, eb, destRule.GetRule(), nil)
    			if len(subsetClusters) != len(tt.expectedSubsetClusters) {
    				t.Fatalf("Unexpected subset clusters want %v, got %v. keys=%v",
    					len(tt.expectedSubsetClusters), len(subsetClusters), xdstest.MapKeys(xdstest.ExtractClusters(subsetClusters)))
    			}
    			if len(tt.expectedSubsetClusters) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.29.md

    - Fixed a regression in default configurations, which enabled `PodDisruptionConditions`
      by default, that prevented the control plane's pod garbage collector from deleting
      pods that contained duplicated field keys (environmental variables with repeated keys or
      container ports). ([#121103](https://github.com/kubernetes/kubernetes/pull/121103), [@mimowo](https://github.com/mimowo))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  6. RELEASE.md

            the environment variable `TF_DETERMINISTIC_OPS` to `"true"` or `"1"`.
    *   `tf.print`:
        *   Bug fix in `tf.print()` with `OrderedDict` where if an `OrderedDict`
            didn't have the keys sorted, the keys and values were not being printed
            in accordance with their correct mapping.
    *   `tf.train.Checkpoint`:
        *   Now accepts a `root` argument in the initialization, which generates a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.30.md

    - Fixes a 1.30.0 regression in openapi descriptions of imagePullSecrets and hostAliases fields to mark the fields used as keys in those lists as either defaulted or required. ([#124694](https://github.com/kubernetes/kubernetes/pull/124694),...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  8. cmd/object-handlers_test.go

    		data       []byte
    		dataLen    int
    		chunkSize  int64
    		// expected output.
    		expectedContent    []byte // expected response body.
    		expectedRespStatus int    // expected response status body.
    		// Access keys
    		accessKey        string
    		secretKey        string
    		shouldPass       bool
    		removeAuthHeader bool
    		fault            streamFault
    		// Custom content encoding.
    		contentEncoding string
    	}{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  9. src/cmd/go/alldocs.go

    // that the results match existing cache entries.
    //
    // GODEBUG=gocachehash=1 causes the go command to print the inputs
    // for all of the content hashes it uses to construct cache lookup keys.
    // The output is voluminous but can be useful for debugging the cache.
    //
    // GODEBUG=gocachetest=1 causes the go command to print details of its
    // decisions about whether to reuse a cached test result.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  10. src/net/http/serve_test.go

    		// Spaces between the header key and colon are not allowed.
    		// See RFC 7230, Section 3.2.4.
    		{"Foo : bar\r\n", 400},
    		{"Foo\t: bar\r\n", 400},
    
    		// Empty header keys are invalid.
    		// See RFC 7230, Section 3.2.
    		{": empty key\r\n", 400},
    
    		// Requests with invalid Content-Length headers should be rejected
    		// regardless of the presence of a Transfer-Encoding header.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top