Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for chains (0.18 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. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"central_african_republic":             "\U0001f1e8\U0001f1eb",
    	"ceuta_melilla":                        "\U0001f1ea\U0001f1e6",
    	"chad":                                 "\U0001f1f9\U0001f1e9",
    	"chains":                               "\u26d3\ufe0f",
    	"chair":                                "\U0001fa91",
    	"champagne":                            "\U0001f37e",
    	"chart":                                "\U0001f4b9",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	CertInfo     *CertInfo
    	Store        Handle
    }
    
    type CertChainContext struct {
    	Size                       uint32
    	TrustStatus                CertTrustStatus
    	ChainCount                 uint32
    	Chains                     **CertSimpleChain
    	LowerQualityChainCount     uint32
    	LowerQualityChains         **CertChainContext
    	HasRevocationFreshnessTime uint32
    	RevocationFreshnessTime    uint32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

            // A) FileSizer from artifactType=jar to artifactType=intermediate
            // B) FileSizer from artifactType=intermediate to artifactType=final
    
            // We could potentially construct the following transform chains:
            // 1) primary -> A -> B -> requested
            //  - artifactType=final
            //  - extraAttribute=preferred
            // 2) secondary -> B -> requested
            //  - artifactType=final
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    			ps.writeByte('[')
    		}
    		ps.print(b.Left)
    		if op.Name == "]=" {
    			ps.writeByte(']')
    		}
    		if isDesignatedInitializer(b.Right) {
    			// Don't add anything between designated
    			// initializer chains.
    			ps.print(b.Right)
    		} else {
    			if ps.llvmStyle {
    				ps.writeString(" = ")
    				ps.print(b.Right)
    			} else {
    				ps.writeByte('=')
    				parenthesize(ps, b.Right)
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  7. 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)
  8. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    little of the right-hand bit to try the effect:  the next moment
    she felt a violent blow underneath her chin:  it had struck her
    foot!
    
      She was a good deal frightened by this very sudden change, but
    she felt that there was no time to be lost, as she was shrinking
    rapidly; so she set to work at once to eat some of the other bit.
    Her chin was pressed so closely against her foot, that there was
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    little of the right-hand bit to try the effect:  the next moment
    she felt a violent blow underneath her chin:  it had struck her
    foot!
    
      She was a good deal frightened by this very sudden change, but
    she felt that there was no time to be lost, as she was shrinking
    rapidly; so she set to work at once to eat some of the other bit.
    Her chin was pressed so closely against her foot, that there was
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  10. 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)
Back to top