Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 353 for chains (0.52 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/connection/RealCall.kt

              connectionPool = connectionPool,
              readTimeoutMillis = client.readTimeoutMillis,
              writeTimeoutMillis = client.writeTimeoutMillis,
              socketConnectTimeoutMillis = chain.connectTimeoutMillis,
              socketReadTimeoutMillis = chain.readTimeoutMillis,
              pingIntervalMillis = client.pingIntervalMillis,
              retryOnConnectionFailure = client.retryOnConnectionFailure,
              fastFallback = client.fastFallback,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/http/RetryAndFollowUpInterceptor.kt

     */
    class RetryAndFollowUpInterceptor(private val client: OkHttpClient) : Interceptor {
      @Throws(IOException::class)
      override fun intercept(chain: Interceptor.Chain): Response {
        val realChain = chain as RealInterceptorChain
        var request = chain.request
        val call = realChain.call
        var followUpCount = 0
        var priorResponse: Response? = null
        var newRoutePlanner = true
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:24:48 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. security/pkg/server/ca/monitoring.go

    		"citadel_server_cert_chain_expiry_timestamp",
    		"The unix timestamp, in seconds, when Citadel cert chain will expire. "+
    			"A negative time indicates the cert is expired.",
    	)
    	certChainExpirySeconds = monitoring.NewDerivedGauge(
    		"citadel_server_cert_chain_expiry_seconds",
    		"The time remaining, in seconds, before the certificate chain will expire. "+
    			"A negative value indicates the cert is expired.",
    	)
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:09 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. security/pkg/server/ca/server.go

    	// Sign generates a certificate for a workload or CA, from the given CSR and cert opts.
    	Sign(csrPEM []byte, opts ca.CertOpts) ([]byte, error)
    	// SignWithCertChain is similar to Sign but returns the leaf cert and the entire cert chain.
    	SignWithCertChain(csrPEM []byte, opts ca.CertOpts) ([]string, error)
    	// GetCAKeyCertBundle returns the KeyCertBundle used by CA.
    	GetCAKeyCertBundle() *util.KeyCertBundle
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 17:35:26 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. tests/integration/security/file_mounted_certs/main_test.go

    	ProxyMetadataJSON = `
    	{
          "FILE_MOUNTED_CERTS": "true",
          "ISTIO_META_TLS_CLIENT_CERT_CHAIN": "/client-certs/cert-chain.pem",
          "ISTIO_META_TLS_CLIENT_KEY": "/client-certs/key.pem",
          "ISTIO_META_TLS_CLIENT_ROOT_CERT": "/client-certs/root-cert.pem",
          "ISTIO_META_TLS_SERVER_CERT_CHAIN": "/server-certs/cert-chain.pem",
          "ISTIO_META_TLS_SERVER_KEY": "/server-certs/key.pem",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. releasenotes/notes/51377.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    
    issue:
      - 51377
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 201 bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/fallback.mlir

    // CHECK-LABEL: func @_tfrt_fallback_init
    // CHECK-SAME: {{.*}} !tfrt.chain
    // CHECK: tfrt_fallback_async.createop(%arg0) key(0) device("/device:CPU:0") "tf.ParseExampleV2"()
    // CHECK-SAME: Tdense = [f32, f32], dense_shapes = [#corert.shape<>, #corert.shape<>]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/github-actions.adoc

    link:https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/about-supply-chain-security[GitHub supply chain security] features will detect and alert about any dependencies that have known vulnerabilities.
    In order to do this, GitHub requires a complete dependency graph for your project.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 14:41:08 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  9. tests/integration/ambient/cacert_rotation_test.go

    				t.Errorf("failed to get initial workload secret: %v", err)
    			}
    
    			// Update CA with new intermediate cert
    			if err := cert.CreateCustomCASecret(t,
    				"ca-cert-alt-2.pem", "ca-key-alt-2.pem",
    				"cert-chain-alt-2.pem", "root-cert-alt.pem"); err != nil {
    				t.Errorf("failed to update CA secret: %v", err)
    			}
    
    			// perform one retry to handle race condition where ztunnel cert is refreshed before Istiod certificates are reloaded
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. security/pkg/nodeagent/test/mock/caserver.go

    	reject = s.rejectCSR
    	s.faultInjectLock.Unlock()
    	return reject
    }
    
    // SendEmptyCert force CA server send empty cert chain.
    func (s *CAServer) SendEmptyCert() {
    	s.faultInjectLock.Lock()
    	s.emptyCert = true
    	s.faultInjectLock.Unlock()
    	caServerLog.Info("force CA server to send empty cert chain")
    }
    
    func (s *CAServer) sendEmpty() bool {
    	var empty bool
    	s.faultInjectLock.Lock()
    	empty = s.emptyCert
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top