Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 52 for chain (0.09 sec)

  1. src/crypto/x509/verify_test.go

    	// Every returned chain should match 1 expected chain (or <2 if testing against the system)
    	for _, chain := range chains {
    		nMatched := 0
    		for _, expectedChain := range test.expectedChains {
    			if doesMatch(expectedChain, chain) {
    				nMatched++
    			}
    		}
    		// Allow additional unknown chains if systemLax is set
    		if nMatched == 0 && test.systemLax == false || nMatched > 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/proxier_test.go

    		add chain ip kube-proxy firewall-check
    		add chain ip kube-proxy mark-for-masquerade
    		add chain ip kube-proxy masquerading
    		add chain ip kube-proxy nat-output { type nat hook output priority -100 ; }
    		add chain ip kube-proxy nat-postrouting { type nat hook postrouting priority 100 ; }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/CallTest.kt

        client =
          client.newBuilder()
            .addInterceptor(
              Interceptor { chain: Interceptor.Chain ->
                try {
                  chain.proceed(chain.request())
                  throw AssertionError()
                } catch (expected: IOException) {
                  chain.proceed(chain.request())
                }
              },
            )
            .build()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

            when:
            run "resolve"
    
            then:
            executed(":lib:jar1", ":app:resolve")
    
            and:
            output.count("Transforming") == 0
        }
    
        def "applies chain of transforms to artifacts from local projects matching on some variant attributes"() {
            given:
            buildFile << """
                allprojects {
                    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/proxier_test.go

    		if !strings.HasPrefix(l, "-A ") {
    			continue
    		}
    		rule, _ := iptablestest.ParseRule(l, false)
    		if rule != nil && rule.Chain == chain {
    			rules = append(rules, rule)
    		}
    	}
    	return rules
    }
    
    // checkIptables to check expected iptables chain and rules. The got rules must have same number and order as the
    // expected rules.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            then:
            output.count("files: [${["lib1", "lib2", "lib3", "lib4-1.0"].collectMany { lib -> targetJarsFor(lib) }.sort().join(", ")}]") == 2
        }
    
        def "failure in transformation chain propagates (position in chain: #failingTransform)"() {
            given:
    
            Closure<String> possiblyFailingTransform = { index ->
                index == failingTransform ? "FailingDuplicator" : "Duplicator"
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

       *   .build();
       * ```
       */
      internal class LegacyRedirectInterceptor : Interceptor {
        override fun intercept(chain: Interceptor.Chain): Response {
          val response = chain.proceed(chain.request())
          val code = response.code
          if (code != HTTP_TEMP_REDIRECT && code != HTTP_PERM_REDIRECT) return response
          val method = response.request.method
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/CacheTest.kt

        val ifNoneMatch = AtomicReference<String?>()
        client =
          client.newBuilder()
            .addNetworkInterceptor(
              Interceptor { chain: Interceptor.Chain ->
                ifNoneMatch.compareAndSet(null, chain.request().header("If-None-Match"))
                chain.proceed(chain.request())
              },
            )
            .build()
    
        // Confirm the value is cached and intercepted.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  9. okhttp-android/src/main/baseline-prof.txt

    HSPLokhttp3/internal/http/BridgeInterceptor;-><init>(Lokhttp3/CookieJar;)V
    HSPLokhttp3/internal/http/BridgeInterceptor;->intercept(Lokhttp3/Interceptor$Chain;)Lokhttp3/Response;
    HSPLokhttp3/internal/http/CallServerInterceptor;-><init>(Z)V
    HSPLokhttp3/internal/http/CallServerInterceptor;->intercept(Lokhttp3/Interceptor$Chain;)Lokhttp3/Response;
    HSPLokhttp3/internal/http/HttpHeaders;-><clinit>()V
    HSPLokhttp3/internal/http/HttpHeaders;->promisesBody(Lokhttp3/Response;)Z
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Mar 21 11:22:00 UTC 2022
    - 127.9K bytes
    - Viewed (0)
  10. cluster/gce/gci/configure-helper.sh

      if iptables -w -L INPUT | grep "Chain INPUT (policy DROP)" > /dev/null; then
        echo "Add rules to accept all inbound TCP/UDP/ICMP packets"
        iptables -w -A INPUT -w -p TCP -j ACCEPT
        iptables -w -A INPUT -w -p UDP -j ACCEPT
        iptables -w -A INPUT -w -p ICMP -j ACCEPT
        iptables -w -A INPUT -w -p SCTP -j ACCEPT
      fi
      if iptables -w -L FORWARD | grep "Chain FORWARD (policy DROP)" > /dev/null; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
Back to top