Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 615 for chain (0.07 sec)

  1. pilot/pkg/xds/sds_test.go

    		credentials.GenericScrtCert: readFile(filepath.Join(certDir, "default/cert-chain.pem")),
    		credentials.GenericScrtKey:  readFile(filepath.Join(certDir, "default/key.pem")),
    	})
    	genericMtlsCert = makeSecret("generic-mtls", map[string]string{
    		credentials.GenericScrtCert:   readFile(filepath.Join(certDir, "dns/cert-chain.pem")),
    		credentials.GenericScrtKey:    readFile(filepath.Join(certDir, "dns/key.pem")),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  2. src/compress/flate/deflate.go

    		for i, val := range dst {
    			di := i + index
    			hh := &d.hashHead[val&hashMask]
    			// Get previous value with the same hash.
    			// Our chain should point to the previous value.
    			d.hashPrev[di&windowMask] = *hh
    			// Set the head of the hash chain to us.
    			*hh = uint32(di + d.hashOffset)
    		}
    	}
    	// Update window information.
    	d.windowEnd = n
    	d.index = n
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  3. pkg/security/security.go

    	// i.e. mounted Secret or external plugin.
    	// If present, FileMountedCerts should be true.
    
    	// DefaultCertChainFilePath is the well-known path for an existing certificate chain file
    	DefaultCertChainFilePath = "./etc/certs/cert-chain.pem"
    
    	// DefaultKeyFilePath is the well-known path for an existing key file
    	DefaultKeyFilePath = "./etc/certs/key.pem"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/KotlinSourceModernTest.kt

      }
    
      @Test
      fun interceptor() {
        var interceptor: Interceptor = Interceptor { TODO() }
        interceptor = Interceptor { it: Interceptor.Chain -> TODO() }
      }
    
      @Test
      fun interceptorChain() {
        val chain: Interceptor.Chain = newInterceptorChain()
      }
    
      @Test
      fun handshakeCertificates() {
        val handshakeCertificates = HandshakeCertificates.Builder().build()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 01 14:21:25 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  5. okhttp-logging-interceptor/src/test/java/okhttp3/logging/HttpLoggingInterceptorTest.kt

        this.server = server
        client =
          OkHttpClient.Builder()
            .addNetworkInterceptor(
              Interceptor { chain ->
                when {
                  extraNetworkInterceptor != null -> extraNetworkInterceptor!!.intercept(chain)
                  else -> chain.proceed(chain.request())
                }
              },
            )
            .addNetworkInterceptor(networkInterceptor)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 09:14:38 UTC 2024
    - 37.6K bytes
    - Viewed (0)
  6. android-test/src/androidTest/java/okhttp/android/test/OkHttpTest.kt

        assumeNetwork()
    
        val trustManager =
          object : X509TrustManager {
            override fun checkClientTrusted(
              chain: Array<out X509Certificate>?,
              authType: String?,
            ) {}
    
            override fun checkServerTrusted(
              chain: Array<out X509Certificate>?,
              authType: String?,
            ) {}
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 27K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/peer_authentication_simulation_test.go

    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/simulation"
    	"istio.io/istio/pilot/test/xds"
    )
    
    // TestPeerAuthenticationPassthrough tests the PeerAuthentication policy applies correctly on the passthrough filter chain,
    // including both global configuration and port level configuration.
    func TestPeerAuthenticationPassthrough(t *testing.T) {
    	paStrict := `
    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/FastFallbackTest.kt

        client =
          client.newBuilder()
            .protocols(listOf(Protocol.H2_PRIOR_KNOWLEDGE))
            .socketFactory(socketFactory)
            .addNetworkInterceptor(
              Interceptor { chain ->
                try {
                  chain.proceed(chain.request())
                } finally {
                  firstConnectLatch.countDown()
                }
              },
            )
            .build()
    
        // Set up a same-connection retry.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    func (s preparedGenericAPIServer) NonBlockingRunWithContext(ctx context.Context, shutdownTimeout time.Duration) (<-chan struct{}, <-chan struct{}, error) {
    	// Use an internal stop channel to allow cleanup of the listeners on error.
    	internalStopCh := make(chan struct{})
    	var stoppedCh <-chan struct{}
    	var listenerStoppedCh <-chan struct{}
    	if s.SecureServingInfo != nil && s.Handler != nil {
    		var err error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/native/building_swift_projects.adoc

    [[sec:swift_supported_tool_chain]]
    === Supported tool chain
    
    Gradle support the https://swift.org/download/[official Swift tool chain for macOS and Linux].
    When you build a native binary, Gradle will attempt to locate a tool chain installed on your machine that can build the binary.
    Gradle select the first tool chain that can build for the target operating system, architecture and Swift language support.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.9K bytes
    - Viewed (0)
Back to top