Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 370 for chains (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/runtime/mklockrank.go

    # Tracing without a P uses a global trace buffer.
    scavenge
    # Above TRACEGLOBAL can emit a trace event without a P.
    < TRACEGLOBAL
    # Below TRACEGLOBAL manages the global tracing buffer.
    # Note that traceBuf eventually chains to MALLOC, but we never get that far
    # in the situation where there's no P.
    < traceBuf;
    # Starting/stopping tracing traces strings.
    traceBuf < traceStrings;
    
    # Malloc
    allg,
      allocmR,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

                  // this has 2 benefits
                  // 1. for long chains of futures strung together with setFuture we consume less stack
                  // 2. we avoid allocating Cancellation objects at every level of the cancellation
                  //    chain
                  // We can only do this for TrustedFuture, because TrustedFuture.cancel is final and
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/AbstractFuture.java

                  // this has 2 benefits
                  // 1. for long chains of futures strung together with setFuture we consume less stack
                  // 2. we avoid allocating Cancellation objects at every level of the cancellation
                  //    chain
                  // We can only do this for TrustedFuture, because TrustedFuture.cancel is final and
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  10. src/crypto/tls/common.go

    		x509Cert := c.Leaf
    		// Parse the certificate if this isn't the leaf node, or if
    		// chain.Leaf was nil.
    		if j != 0 || x509Cert == nil {
    			var err error
    			if x509Cert, err = x509.ParseCertificate(cert); err != nil {
    				return fmt.Errorf("failed to parse certificate #%d in the chain: %w", j, err)
    			}
    		}
    
    		for _, ca := range cri.AcceptableCAs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
Back to top