Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 377 for Pinning (0.14 sec)

  1. cmd/kubeadm/app/apis/kubeadm/fuzzer/fuzzer.go

    	c.FuzzNoCustom(obj)
    
    	// Pinning values for fields that get defaults if fuzz value is empty string or nil (thus making the round trip test fail)
    	obj.IgnorePreflightErrors = nil
    	obj.ImagePullSerial = ptr.To(true)
    }
    
    func fuzzClusterConfiguration(obj *kubeadm.ClusterConfiguration, c fuzz.Continue) {
    	c.FuzzNoCustom(obj)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 06:41:07 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. src/sync/pool.go

    	oldPools, allPools = allPools, nil
    }
    
    var (
    	allPoolsMu Mutex
    
    	// allPools is the set of pools that have non-empty primary
    	// caches. Protected by either 1) allPoolsMu and pinning or 2)
    	// STW.
    	allPools []*Pool
    
    	// oldPools is the set of pools that may have non-empty victim
    	// caches. Protected by STW.
    	oldPools []*Pool
    )
    
    func init() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/net/HttpHeaders.java

       * The HTTP <a href="https://tools.ietf.org/html/draft-ietf-tokbind-https">{@code
       * Sec-Token-Binding}</a> header field name.
       *
       * @since 25.1
       */
      public static final String SEC_TOKEN_BINDING = "Sec-Token-Binding";
      /**
       * The HTTP <a href="https://tools.ietf.org/html/draft-ietf-tokbind-ttrp">{@code
       * Sec-Provided-Token-Binding-ID}</a> header field name.
       *
       * @since 25.1
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 01 18:44:57 UTC 2024
    - 34.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/net/HttpHeaders.java

       * The HTTP <a href="https://tools.ietf.org/html/draft-ietf-tokbind-https">{@code
       * Sec-Token-Binding}</a> header field name.
       *
       * @since 25.1
       */
      public static final String SEC_TOKEN_BINDING = "Sec-Token-Binding";
      /**
       * The HTTP <a href="https://tools.ietf.org/html/draft-ietf-tokbind-ttrp">{@code
       * Sec-Provided-Token-Binding-ID}</a> header field name.
       *
       * @since 25.1
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 01 18:44:57 UTC 2024
    - 34.3K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/connection/RealConnection.kt

        // 3. This connection's server certificate's must cover the new host.
        if (address.hostnameVerifier !== OkHostnameVerifier) return false
        if (!supportsUrl(address.url)) return false
    
        // 4. Certificate pinning must match the host.
        try {
          address.certificatePinner!!.check(address.url.host, handshake()!!.peerCertificates)
        } catch (_: SSLPeerUnverifiedException) {
          return false
        }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  6. tensorflow/c/eager/c_api.cc

        TF_Status status;
        // Let this custom device choose the device to pin this op on if it
        // implements the pinning function.
        if (device_.shall_pin_to_this_device != nullptr) {
          return device_.shall_pin_to_this_device(tensorflow::wrap(op), &status);
        }
        return errors::Unimplemented("No custom device pinning implementation.");
      }
    
     private:
      TFE_Context* context_;
      TFE_CustomDevice device_;
      void* info_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 08:11:23 UTC 2024
    - 44K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/kubeadm/v1beta3/types.go

    	ExtraArgs map[string]string `json:"extraArgs,omitempty"`
    
    	// ServerCertSANs sets extra Subject Alternative Names for the etcd server signing cert.
    	// +optional
    	ServerCertSANs []string `json:"serverCertSANs,omitempty"`
    	// PeerCertSANs sets extra Subject Alternative Names for the etcd peer signing cert.
    	// +optional
    	PeerCertSANs []string `json:"peerCertSANs,omitempty"`
    }
    
    // ExternalEtcd describes an external etcd cluster.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  8. cluster/gce/upgrade.sh

        echo "before running this script:"
        echo
        echo "# example: pin to etcd v3.0.17"
        echo "export ETCD_IMAGE=3.0.17"
        echo "export ETCD_VERSION=3.0.17"
        echo
        echo "Alternatively, if you choose to allow an etcd upgrade that doesn't support downgrade,"
        echo "you might still be able to downgrade Kubernetes by pinning to the newer etcd version."
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/kubeadm/types.go

    	// +optional
    	ExtraEnvs []EnvVar
    
    	// ServerCertSANs sets extra Subject Alternative Names for the etcd server signing cert.
    	ServerCertSANs []string
    	// PeerCertSANs sets extra Subject Alternative Names for the etcd peer signing cert.
    	PeerCertSANs []string
    }
    
    // ExternalEtcd describes an external etcd cluster
    type ExternalEtcd struct {
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	// +optional
    	ExtraEnvs []EnvVar `json:"extraEnvs,omitempty"`
    
    	// ServerCertSANs sets extra Subject Alternative Names for the etcd server signing cert.
    	// +optional
    	ServerCertSANs []string `json:"serverCertSANs,omitempty"`
    	// PeerCertSANs sets extra Subject Alternative Names for the etcd peer signing cert.
    	// +optional
    	PeerCertSANs []string `json:"peerCertSANs,omitempty"`
    }
    
    // ExternalEtcd describes an external etcd cluster.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
Back to top