Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 31 for Hashing (0.21 sec)

  1. CHANGELOG/CHANGELOG-1.6.md

    * Running `kubectl taint` (alpha in 1.5) against a 1.5 server requires a kubectl version of 1.5
    * Running `kubectl create secret` no longer accepts passing multiple values to a single --from-literal flag using comma separation
      * Update command invocations to pass separate --from-literal flags for each value
    
    ### RBAC
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.22.md

    - Kube-apiserver: the alpha PodSecurity feature can be enabled by passing `--feature-gates=PodSecurity=true`, and enables controlling allowed pods using namespace labels. See https://git.k8s.io/enhancements/keps/sig-auth/2579-psp-replacement for more details. ([#103099](https://github.com/kubernetes/kubernetes/pull/103099),...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.13.md

    ### SIG Network
    
    For 1.13, the areas of focus were in IPv6, DNS improvements and some smaller items:
    CoreDNS is now the default cluster DNS passing all of the scale/resource usage tests
    Node-local DNS cache feature is available in Alpha. This feature deploys a lightweight DNS caching Daemonset that avoids the conntrack and converts queries from UDP to more reliable TCP.
    PodReady++ feature now has `kubectl` CLI support.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.21.md

    - Avoid caching the Azure VMSS instances whose network profile is nil ([#100948](https://github.com/kubernetes/kubernetes/pull/100948), [@feiskyer](https://github.com/feiskyer)) [SIG Cloud Provider]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  5. pkg/apis/core/types.go

    	FSType string
    	// Defaults to false (read/write). ReadOnly here will force
    	// the ReadOnly setting in VolumeMounts.
    	// +optional
    	ReadOnly bool
    }
    
    // AzureDataDiskCachingMode defines the caching mode for Azure data disk
    type AzureDataDiskCachingMode string
    
    // AzureDataDiskKind defines the kind of Azure data disk
    type AzureDataDiskKind string
    
    // Defines cache mode and kinds for Azure data disk
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types.go

    	// diskURI is the URI of data disk in the blob storage
    	DataDiskURI string `json:"diskURI" protobuf:"bytes,2,opt,name=diskURI"`
    	// cachingMode is the Host Caching mode: None, Read Only, Read Write.
    	// +optional
    	CachingMode *AzureDataDiskCachingMode `json:"cachingMode,omitempty" protobuf:"bytes,3,opt,name=cachingMode,casttype=AzureDataDiskCachingMode"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/generated.proto

      // diskName is the Name of the data disk in the blob storage
      optional string diskName = 1;
    
      // diskURI is the URI of data disk in the blob storage
      optional string diskURI = 2;
    
      // cachingMode is the Host Caching mode: None, Read Only, Read Write.
      // +optional
      optional string cachingMode = 3;
    
      // fsType is Filesystem type to mount.
      // Must be a filesystem type supported by the host operating system.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.18.md

    #### kube-apiserver:
    - in an `--encryption-provider-config` config file, an explicit `cacheSize: 0` parameter previously silently defaulted to caching 1000 keys. In Kubernetes 1.18, this now returns a config validation error. To disable caching, you can specify a negative cacheSize value in Kubernetes 1.18+.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 16 17:18:28 UTC 2021
    - 373.2K bytes
    - Viewed (0)
  9. pkg/proxy/iptables/proxier_test.go

    // expected, ignoring irrelevant ordering differences. By default this also checks the
    // rules for consistency (eg, no jumps to chains that aren't defined), but that can be
    // disabled by passing false for checkConsistency if you are passing a partial set of rules.
    func assertIPTablesRulesEqual(t *testing.T, line int, checkConsistency bool, expected, result string) {
    	expected = strings.TrimLeft(expected, " \t\n")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        IntegerType int32_type = rewriter.getIntegerType(32);
        APInt exponent_bits = op.getExponentBitsAttr().getValue();
        // Truncating to 32-bits is safe, since pasing any number above the dtype
        // size (which is at most 64, for float64) is equivalent to passing the
        // dtype size.
        IntegerAttr new_exponent_attr =
            IntegerAttr::get(int32_type, exponent_bits.truncSSat(32));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top