Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 579 for chains (0.15 sec)

  1. src/vendor/golang.org/x/crypto/sha3/sha3_s390x.s

    #include "textflag.h"
    
    // func kimd(function code, chain *[200]byte, src []byte)
    TEXT ·kimd(SB), NOFRAME|NOSPLIT, $0-40
    	MOVD function+0(FP), R0
    	MOVD chain+8(FP), R1
    	LMG  src+16(FP), R2, R3 // R2=base, R3=len
    
    continue:
    	WORD $0xB93E0002 // KIMD --, R2
    	BVS  continue    // continue if interrupted
    	MOVD $0, R0      // reset R0 for pre-go1.8 compilers
    	RET
    
    // func klmd(function code, chain *[200]byte, dst, src []byte)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 16:37:53 UTC 2024
    - 957 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. 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)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformChain.java

        /**
         * @param init The initial steps of this chain, or null if this chain only contains one step.
         * @param last The last step of this chain.
         */
        public TransformChain(@Nullable TransformChain init, TransformStep last) {
            this.init = init;
            this.last = last;
        }
    
        /**
         * @return The initial steps of this chain, or null if this chain only contains one step.
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. releasenotes/notes/fix-chained-cni-helm.yaml

    jacob-delgado <******@****.***> 1687281129 -0600
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 20 17:12:09 UTC 2023
    - 257 bytes
    - Viewed (0)
  9. 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)
  10. staging/src/k8s.io/apiserver/pkg/admission/reinvocation.go

    // if needed according to re-invocation policy of the webhooks.
    func newReinvocationHandler(admissionChain Interface) Interface {
    	return &reinvoker{admissionChain}
    }
    
    type reinvoker struct {
    	admissionChain Interface
    }
    
    // Admit performs an admission control check using the wrapped admission chain, reinvoking the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 20 15:11:00 UTC 2019
    - 2.3K bytes
    - Viewed (0)
Back to top