Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,184 for chain (0.3 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/VariantDefinition.java

    /**
     * Defines a variant that is the result of applying a transform chain to produce a variant with the given attributes.
     */
    public interface VariantDefinition {
        /**
         * @return This variant's attributes after all chain transforms are applied.
         */
        ImmutableAttributes getTargetAttributes();
    
        /**
         * @return The transform chain which transforms the root variant to this variant.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/filterchain_options.go

    type FilterChainMatchOptions struct {
    	// Application protocols of the filter chain match
    	ApplicationProtocols []string
    	// Transport protocol of the filter chain match. "tls" or empty
    	TransportProtocol string
    	// Filter chain protocol. HTTP for HTTP proxy and TCP for TCP proxy
    	Protocol networking.ListenerProtocol
    	// Whether this chain should terminate TLS or not
    	TLS bool
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/tests/remove_device_attribute.mlir

    // RUN: tf-tfrt-opt -tfrt-remove-device-attribute %s | FileCheck %s
    
    func.func @test(%arg0: !tfrt.chain, %arg1: !corert.tensorhandle) -> (!tfrt.chain, !corert.tensorhandle) {
      %0 = corert.get_op_handler %arg0 "cpu"
      // CHECK: %[[RESULT:.*]] = corert.executeop(%[[ARG_0:.*]]) "tf.MatMul"(%[[ARG_1:.*]], %[[ARG_1]]) {T = f32, transpose_a = false, transpose_b = false} : 1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 10:58:25 UTC 2022
    - 560 bytes
    - Viewed (0)
  4. security/pkg/pki/testdata/multilevelpki/certs.sh

    
    
    cat root-cert.pem > int-cert-chain.pem
    cat int-cert.pem >> int-cert-chain.pem
    cp int-cert-chain.pem int2-cert-chain.pem
    cat int2-cert.pem >> int2-cert-chain.pem
    
    rm ./*csr
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 14 20:15:07 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  5. src/go/parser/testdata/resolution/resolution.src

    			shadowed /* @shadowed2 */ = 2
    		}
    	}
    }
    
    func (r /* =@r */ c /* @cdecl */) m(_ r) c /* @cdecl */ { return r /* @r */ }
    
    var cycle /* =@cycle */ = cycle /* @cycle */ + 1
    
    type chain /* =@chain */ struct {
    	next /* =@next */ *chain /* @chain */
    }
    
    func recursive /* =@recursive */() {
    	recursive /* @recursive */ ()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 16 21:19:23 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/Swiftc.java

    import java.io.File;
    import java.util.List;
    
    /**
     * The <a href="https://swift.org/">Swift Compiler</a> tool chain.
     *
     * @since 4.1
     */
    @Incubating
    public interface Swiftc extends NativeToolChain {
        /**
         * The paths setting required for executing the tool chain.
         * These are used to locate tools for this tool chain, and are prepended to the system PATH when executing these tools.
         */
        List<File> getPath();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. pilot/pkg/model/listener.go

    	VirtualOutboundCatchAllTCPFilterChainName = "virtualOutbound-catchall-tcp"
    
    	// VirtualOutboundBlackholeFilterChainName is the name of the filter chain to blackhole undesired traffic
    	VirtualOutboundBlackholeFilterChainName = "virtualOutbound-blackhole"
    	// VirtualInboundBlackholeFilterChainName is the name of the filter chain to blackhole undesired traffic
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 10 17:24:55 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/stackcheck.go

    		*chain = (*chain)[:len(*chain)-1]
    	}
    	sc.graph[sym] = edges
    
    	// If we've reached the end of a chain and it went over the
    	// stack limit or was a cycle that would eventually go over,
    	// print the whole chain.
    	//
    	// We should either be in morestack (which has no out-edges)
    	// or the sentinel 0 Sym "called" from a leaf function (which
    	// has no out-edges), or we came back around a cycle (possibly
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 16:49:08 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/ComparisonChain.java

       * already been determined.
       */
      public abstract <T extends @Nullable Object> ComparisonChain compare(
          @ParametricNullness T left, @ParametricNullness T right, Comparator<T> comparator);
    
      /**
       * Compares two {@code int} values as specified by {@link Ints#compare}, <i>if</i> the result of
       * this comparison chain has not already been determined.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 24 17:47:51 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  10. samples/certs/README.md

    - `ca-[cert-alt-2|key-alt-2].pem`: alternative intermediate certificate and corresponding private key signed by `root-cert-alt.pem`.
    - `cert-chain.pem`: certificate trust chain.
    - `cert-chain-alt.pem`: alternative certificate chain.
    - `cert-chain-alt-2.pem`: alternative certificate chain signed by `root-cert-alt.pem`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 16:44:37 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top