Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,006 for chains (0.27 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. istioctl/pkg/writer/envoy/configdump/listener.go

    	})
    
    	fmt.Fprintln(w, "LISTENER\tCHAIN\tMATCH\tDESTINATION")
    	for _, l := range listeners {
    		chains := getFilterChains(l)
    		lname := "envoy://" + l.GetName()
    		// Avoid duplicating the listener and filter name
    		if l.GetInternalListener() != nil && len(chains) == 1 && chains[0].GetName() == lname {
    			lname = "internal"
    		}
    		for _, fc := range chains {
    
    			name := fc.GetName()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 12:37:14 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/basic.mlir

      // CHECK-NEXT: [[out_ch:%.*]] = tfrt.merge.chains [[ch]], [[ch1]] : !tfrt.chain, !tfrt.chain
      // CHECK-NEXT: tfrt.return [[out_ch]], [[r2]] : !tfrt.chain, !tfrt_fallback.tf_tensor
      func.return %6#0 : tensor<3x3xf32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/schedule_test.go

    		t.Logf("Func: %s", fun.f)
    		t.Errorf("store order is wrong: got %v, want v2 v3 v4 after v5", order)
    	}
    }
    
    func TestCarryChainOrder(t *testing.T) {
    	// In the function below, there are two carry chains that have no dependencies on each other,
    	// one is A1 -> A1carry -> A1Carryvalue, the other is A2 -> A2carry -> A2Carryvalue. If they
    	// are not scheduled properly, the carry will be clobbered, causing the carry to be regenerated.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 08 01:46:00 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  5. pkg/proxy/nftables/README.md

        "input path".)
    
      - `LoadBalancerSourceRanges` firewalling has to happen before service DNAT, so we do
        that on `prerouting` and `output` as well, with a lower (i.e. more urgent) priority
        than the DNAT chains.
    
      - The `drop` and `reject` rules for services with no endpoints don't need to happen
        explicitly before or after any other rules (since they match packets that wouldn't be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 21 14:37:56 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. src/internal/types/testdata/check/cycles4.go

    // all methods of T).
    
    type T interface {
    	m() interface {T}
    	E
    }
    
    var _ int = T.m(nil).m().e()
    
    type E interface {
    	e() int
    }
    
    // Check that unresolved forward chains are followed
    // (see also comment in resolver.go, checker.typeDecl).
    
    var _ int = C.m(nil).m().e()
    
    type A B
    
    type B interface {
    	m() interface{C}
    	E
    }
    
    type C A
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppMissingToolchainIntegrationTest.groovy

      - Tool chain 'clang' (Clang):
          - Could not find C++ compiler 'clang++'. Searched in:
              - ${file('clang-bin')}""")
            } else {
                failure.assertHasCause("""No tool chain is available to build C++ for host operating system '${osName}' architecture '${archName}':
      - Tool chain 'visualCpp' (Visual Studio):
          - Visual Studio is not available on this operating system.
      - Tool chain 'gcc' (GNU GCC):
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/utils/visitor.h

    #include "mlir/IR/Visitors.h"  // from @llvm-project
    #include "mlir/Support/LogicalResult.h"  // from @llvm-project
    
    namespace mlir {
    namespace TF {
    
    // Walks the function by following function call chains and calling the callback
    // for each reachable function (including `func`). Each function is visited only
    // once even if it's called from multiple places and/or recursively.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 03:46:51 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. src/crypto/x509/root_unix.go

    	// It is a colon separated list of directories.
    	// See https://www.openssl.org/docs/man1.0.2/man1/c_rehash.html.
    	certDirEnv = "SSL_CERT_DIR"
    )
    
    func (c *Certificate) systemVerify(opts *VerifyOptions) (chains [][]*Certificate, err error) {
    	return nil, nil
    }
    
    func loadSystemRoots() (*CertPool, error) {
    	roots := NewCertPool()
    
    	files := certFiles
    	if f := os.Getenv(certFileEnv); f != "" {
    		files = []string{f}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:54:07 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. pkg/proxy/iptables/proxier_test.go

    	if chain != nil {
    		sort.SliceStable(chain.Rules, func(i, j int) bool {
    			return orderByCommentServiceName(chain.Rules[i], chain.Rules[j])
    		})
    	}
    	chain, _ = dump.GetChain(utiliptables.TableNAT, kubeNodePortsChain)
    	if chain != nil {
    		sort.SliceStable(chain.Rules, func(i, j int) bool {
    			return orderByCommentServiceName(chain.Rules[i], chain.Rules[j])
    		})
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
Back to top