Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,436 for chain (0.04 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. okhttp/src/main/kotlin/okhttp3/internal/http/RealInterceptorChain.kt

    import okhttp3.internal.connection.Exchange
    import okhttp3.internal.connection.RealCall
    
    /**
     * A concrete interceptor chain that carries the entire interceptor chain: all application
     * interceptors, the OkHttp core, all network interceptors, and finally the network caller.
     *
     * If the chain is for an application interceptor then [exchange] must be null. Otherwise it is for
     * a network interceptor and [exchange] must be non-null.
     */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pilot/pkg/features/xds.go

    	// Pilot injects this outbound filter if the service port name is `mysql`.
    	EnableMysqlFilter = env.Register(
    		"PILOT_ENABLE_MYSQL_FILTER",
    		false,
    		"EnableMysqlFilter enables injection of `envoy.filters.network.mysql_proxy` in the filter chain.",
    	).Get()
    
    	// EnableRedisFilter enables injection of `envoy.filters.network.redis_proxy` in the filter chain.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 24 06:18:36 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/query/parser/QueryParser.java

        protected void createFilterChain() {
            FilterChain chain = createDefaultFilterChain();
            for (final Filter element : filterList) {
                chain = appendFilterChain(element, chain);
            }
            filterChain = chain;
        }
    
        protected FilterChain appendFilterChain(final Filter filter, final FilterChain chain) {
            return query -> filter.parse(query, chain);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParserTest.java

        }
    
        protected ReadingConverter createDefaultReadingConverter() throws IOException {
            ReadingConverterChain chain = new ReadingConverterChain();
            // chain.addConverter(new KatakanaConverter());
            chain.addConverter(new KatakanaToAlphabetConverter());
            chain.init();
            return chain;
        }
    
        protected Normalizer createDefaultNormalizer() {
            // TODO
            return new NormalizerChain();
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/GccCompatibleToolChain.java

        /**
         * 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();
    
        /**
         * Append an entry or entries to the tool chain path.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top