Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 239 for chains (0.28 sec)

  1. pilot/pkg/model/gateway.go

    // one or more hosts but have different TLS certificates. In this case, we end up having separate filter chain
    // for each server, with the filter chain match matching on the server specific TLS certs and SNI headers.
    // We have two options here: either have all filter chains use the same RDS route name (e.g. "443") and expose
    // all virtual hosts on that port to every filter chain uniformly or expose only the set of virtual hosts
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectConfigurationReportingGradle.kt

        private val projectConfigurator: CrossProjectConfigurator
    ) : GradleInternal {
    
        private
        val delegate: GradleInternal = when (gradle) {
            // 'unwrapping' ensures that there are no chains of delegation
            is CrossProjectConfigurationReportingGradle -> gradle.delegate
            else -> gradle
        }
    
        override fun getParent(): GradleInternal? =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_server.go

    			Intermediates: x509.NewCertPool(),
    			KeyUsages:     []x509.ExtKeyUsage{x509.ExtKeyUsageClientAuth},
    		}
    
    		for _, cert := range certs[1:] {
    			opts.Intermediates.AddCert(cert)
    		}
    
    		chains, err := certs[0].Verify(opts)
    		if err != nil {
    			var errCertificateInvalid x509.CertificateInvalidError
    			if errors.As(err, &x509.UnknownAuthorityError{}) {
    				c.sendAlert(alertUnknownCA)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/fused_kernel_matcher.cc

    // function.
    // i.e., this class also supports the following fusion:
    //   <Contraction> + BiasAdd -> <FusedContraction>
    //
    // TODO(b/158266331): Support fusing activation chains of arbitrary length.
    template <typename SrcOpT, typename FusedOpT>
    class FuseContractionWithBiasAdd : public OpRewritePattern<SrcOpT> {
     public:
      using OpRewritePattern<SrcOpT>::OpRewritePattern;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/dsl/dsl.xml

                </tr>
            </table>
        </section>
    
        <section>
            <title>Native tool chains model types</title>
            <para>Used to configure tool chains for building C++ and Swift components.</para>
            <table>
                <title>Native tool chain types</title>
                <tr>
                    <td>org.gradle.nativeplatform.toolchain.Gcc</td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/tls.go

    				})
    
    				// If at this point there is a filter chain generated with the same CIDR match as the
    				// one that may be generated for the service as the default route, do not generate it.
    				// Otherwise, Envoy will complain about having filter chains with identical matches
    				// and will reject the config.
    				sort.Strings(virtualServiceDestinationSubnets)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ProviderInternal.java

         * The provider returned by this method may or not be the same instance as this provider. Generally, it is better to simplify any provider chains to replace calculations with fixed values and to remove
         * intermediate steps.
         */
        ExecutionTimeValue<? extends T> calculateExecutionTimeValue();
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. src/runtime/alg.go

    	if eq == nil {
    		panic(errorString("comparing uncomparable type " + toRType(t).string()))
    	}
    	if isDirectIface(t) {
    		// Direct interface types are ptr, chan, map, func, and single-element structs/arrays thereof.
    		// Maps and funcs are not comparable, so they can't reach here.
    		// Ptrs, chans, and single-element items can be compared directly using ==.
    		return x == y
    	}
    	return eq(x, y)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/sccp.go

    	uses         []*Value            // re-visiting set
    	visited      map[Edge]bool       // visited edges
    	latticeCells map[*Value]lattice  // constant lattices
    	defUse       map[*Value][]*Value // def-use chains for some values
    	defBlock     map[*Value][]*Block // use blocks of def
    	visitedBlock []bool              // visited block
    }
    
    // sccp stands for sparse conditional constant propagation, it propagates constants
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/schedule.go

    				continue
    			}
    			for _, a := range v.Args {
    				if a.Block == b {
    					edges = append(edges, edge{a, v})
    				}
    			}
    		}
    
    		// Find store chain for block.
    		// Store chains for different blocks overwrite each other, so
    		// the calculated store chain is good only for this block.
    		for _, v := range b.Values {
    			if v.Op != OpPhi && v.Op != OpInitMem && v.Type.IsMemory() {
    				nextMem[v.MemoryArg().ID] = v
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top