Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,352 for Pinning (0.15 sec)

  1. 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)
  2. hack/update-vendor.sh

      fi
      exit ${ret}
    }
    trap finish EXIT
    
    # ensure_require_replace_directives_for_all_dependencies:
    # - ensures all existing 'require' directives have an associated 'replace' directive pinning a version
    # - adds explicit 'require' directives for all transitive dependencies
    # - adds explicit 'replace' directives for all require directives (existing 'replace' directives take precedence)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:08 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. docs/changelogs/changelog_3x.md

    OkHttp 3.x Change Log
    =====================
    
    ## Version 3.14.9
    
    _2020-05-17_
    
     *  Fix: Don't crash when running as a plugin in Android Studio Canary 4.1. To enable
        platform-specific TLS features OkHttp must detect whether it's running in a JVM or in Android.
        The upcoming Android Studio runs in a JVM but has classes from Android and that confused OkHttp!
    
    
    ## Version 3.14.8
    
    _2020-04-28_
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/join.go

    		used to temporarily authenticate with the Kubernetes Control Plane to submit a
    		certificate signing request (CSR) for a locally created key pair. By
    		default, kubeadm will set up the Kubernetes Control Plane to automatically
    		approve these signing requests. This token is passed in with the
    		--tls-bootstrap-token abcdef.1234567890abcdef flag.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 15:33:38 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. okhttp/src/test/java/okhttp3/CallTest.kt

        // Fails on 11.0.1 https://github.com/square/okhttp/issues/4703
        enableTls()
        server.enqueue(MockResponse())
        server.enqueue(MockResponse())
    
        // Make a first request without certificate pinning. Use it to collect certificates to pin.
        val request1 = Request.Builder().url(server.url("/")).build()
        val response1 = client.newCall(request1).execute()
        val certificatePinnerBuilder = CertificatePinner.Builder()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
Back to top