Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 2,184 for chain (0.14 sec)

  1. subprojects/core/src/test/groovy/org/gradle/caching/internal/controller/DefaultBuildCacheControllerFactoryTest.groovy

            @Override
            BuildCacheService createBuildCacheService(TestRemoteBuildCache configuration, Describer describer) {
                def chain = describer.type("remote")
                if (configuration.value != null) {
                    chain.config("value", configuration.value)
                }
                new TestRemoteBuildCacheService()
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:46:34 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. security/pkg/pki/ra/k8s_ra_test.go

    	}{
    		{
    			name:                  "Root cert from mesh config and cert chain does not match",
    			rootCertForMeshConfig: path.Join(env.IstioSrc, "samples/certs", "root-cert.pem"),
    			certChain:             mismatchCertChainFile,
    			expectedFail:          true,
    		},
    		{
    			name:                  "Root cert is specified in mesh config and Root cert from cert chain is empty(only one leaf cert)",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 27 00:44:54 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  3. test/chan/sieve1.go

    // removing those divisible by 'prime'.
    func Filter(in <-chan int, out chan<- int, prime int) {
    	for i := range in { // Loop over values received from 'in'.
    		if i%prime != 0 {
    			out <- i // Send 'i' to channel 'out'.
    		}
    	}
    }
    
    // The prime sieve: Daisy-chain Filter processes together.
    func Sieve(primes chan<- int) {
    	ch := make(chan int) // Create a new channel.
    	go Generate(ch)      // Start Generate() as a subprocess.
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 06:44:02 UTC 2012
    - 1.5K bytes
    - Viewed (0)
  4. tools/istio-iptables/pkg/capture/run.go

    		if cfg.cfg.InboundInterceptionMode == constants.TPROXY {
    			// When using TPROXY, create a new chain for routing all inbound traffic to
    			// Envoy. Any packet entering this chain gets marked with the ${INBOUND_TPROXY_MARK} mark,
    			// so that they get routed to the loopback interface in order to get redirected to Envoy.
    			// In the ISTIOINBOUND chain, '-j ISTIODIVERT' reroutes to the loopback
    			// interface.
    			// Mark all inbound packets.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  5. src/crypto/tls/ticket.go

    	b.AddUint24LengthPrefixed(func(b *cryptobyte.Builder) {
    		for _, chain := range s.verifiedChains {
    			b.AddUint24LengthPrefixed(func(b *cryptobyte.Builder) {
    				// We elide the first certificate because it's always the leaf.
    				if len(chain) == 0 {
    					b.SetError(errors.New("tls: internal error: empty verified chain"))
    					return
    				}
    				for _, cert := range chain[1:] {
    					b.AddUint24LengthPrefixed(func(b *cryptobyte.Builder) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/testFixtures/groovy/org/gradle/language/AbstractNativeLanguageComponentIntegrationTest.groovy

                        }
                    }
                }
            """
    
            expect:
            succeeds "verifyBinariesPlatformType"
        }
    
        def "binaries have the right tool chain type"() {
            given:
            makeSingleProject()
            buildFile << """
                task verifyBinariesToolChainType {
                    doLast {
                        ${componentUnderTestDsl}.binaries.get().each {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/cache/CacheInterceptor.kt

      @Throws(IOException::class)
      override fun intercept(chain: Interceptor.Chain): Response {
        val call = chain.call()
        val cacheCandidate = cache?.get(chain.request().requestForCache())
    
        val now = System.currentTimeMillis()
    
        val strategy = CacheStrategy.Factory(now, chain.request(), cacheCandidate).compute()
        val networkRequest = strategy.networkRequest
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Mar 22 07:09:21 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftMissingToolchainIntegrationTest.groovy

            fails("assemble")
    
            then:
            failure.assertHasDescription("Execution failed for task ':compileDebugSwift'.")
            failure.assertHasCause("""No tool chain is available to build Swift for host operating system '${osName}' architecture '${archName}':
      - Tool chain 'swiftc' (Swift Compiler):
          - Could not find Swift compiler 'swiftc'. Searched in:
              - ${file('swift-bin')}""")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. samples/certs/generate-workload.sh

        cp "$DIR"/root-cert.pem "$FINAL_DIR"
        cp "$DIR"/ca-cert.pem "$FINAL_DIR"
        cp "$DIR"/ca-key.pem "$FINAL_DIR"
        cp "$DIR"/cert-chain.pem "$FINAL_DIR"
    
        cp "$DIR"/root-cert-alt.pem "$FINAL_DIR"
        cp "$DIR"/ca-cert-alt.pem "$FINAL_DIR"
        cp "$DIR"/ca-key-alt.pem "$FINAL_DIR"
        cp "$DIR"/cert-chain-alt.pem "$FINAL_DIR"
    
      else
        echo "tmp argument is not a directory: $tmp"
        exit 1
      fi
    fi
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 07 23:57:35 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/http/BridgeInterceptor.kt

     * response.
     */
    class BridgeInterceptor(private val cookieJar: CookieJar) : Interceptor {
      @Throws(IOException::class)
      override fun intercept(chain: Interceptor.Chain): Response {
        val userRequest = chain.request()
        val requestBuilder = userRequest.newBuilder()
    
        val body = userRequest.body
        if (body != null) {
          val contentType = body.contentType()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top