Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,002 for chain (0.32 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/responsewriter/wrapper_test.go

    			return
    		}
    		conn.Close()
    	}))
    	handler = chain(handler)
    	handler = chain(handler)
    
    	server := newServer(t, handler, false)
    	defer server.Close()
    
    	sendRequest(t, server)
    }
    
    func TestWithHTTP2(t *testing.T) {
    	var originalWant http.ResponseWriter
    	counterGot := &counter{}
    	chain := func(h http.Handler) http.Handler {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 17 12:58:53 UTC 2021
    - 8.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/runtime/vdso_linux.go

    		return true
    	}
    
    	if !info.isGNUHash {
    		// Old-style DT_HASH table.
    		for _, k := range vdsoSymbolKeys {
    			if len(info.bucket) > 0 {
    				for chain := info.bucket[k.symHash%uint32(len(info.bucket))]; chain != 0; chain = info.chain[chain] {
    					if apply(chain, k) {
    						break
    					}
    				}
    			}
    		}
    		return
    	}
    
    	// New-style DT_GNU_HASH table.
    	for _, k := range vdsoSymbolKeys {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 19:32:35 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  9. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/InsecureAndroidTrustManager.kt

      fun checkServerTrusted(
        chain: Array<out X509Certificate>,
        authType: String,
        host: String,
      ): List<Certificate> {
        if (host in insecureHosts) return listOf()
        try {
          val method =
            checkServerTrustedMethod
              ?: throw CertificateException("Failed to call checkServerTrusted")
          return method.invoke(delegate, chain, authType, host) as List<Certificate>
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.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