Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,433 for chain (0.09 sec)

  1. pkg/proxy/ipvs/proxier.go

    	kubePostroutingChain utiliptables.Chain = "KUBE-POSTROUTING"
    
    	// kubeMarkMasqChain is the mark-for-masquerade chain
    	kubeMarkMasqChain utiliptables.Chain = "KUBE-MARK-MASQ"
    
    	// kubeNodePortChain is the kubernetes node port chain
    	kubeNodePortChain utiliptables.Chain = "KUBE-NODE-PORT"
    
    	// kubeForwardChain is the kubernetes forward chain
    	kubeForwardChain utiliptables.Chain = "KUBE-FORWARD"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/filter/WebApiFilter.java

                throws IOException, ServletException {
            final WebApiManagerFactory webApiManagerFactory = ComponentUtil.getWebApiManagerFactory();
            final WebApiManager webApiManager = webApiManagerFactory.get((HttpServletRequest) request);
            if (webApiManager == null) {
                chain.doFilter(request, response);
            } else {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/query/QueryProcessorTest.java

                @Override
                public QueryBuilder execute(QueryContext context, Query query, float boost, FilterChain chain) {
                    calledFirst.set(true);
                    assertFalse(called.get());
                    QueryBuilder builder = chain.execute(context, query, boost);
                    assertTrue(called.get());
                    return builder;
                }
            });
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. src/crypto/x509/hybrid_pool_test.go

    	_, err = googChain[0].Verify(opts)
    	if err != nil {
    		t.Fatalf("verification failed for google.com chain (system only pool): %s", err)
    	}
    
    	pool.AddCert(root)
    
    	_, err = googChain[0].Verify(opts)
    	if err != nil {
    		t.Fatalf("verification failed for google.com chain (hybrid pool): %s", err)
    	}
    
    	certTmpl := &x509.Certificate{
    		SerialNumber: big.NewInt(1),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:48:11 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/tf_to_corert_pipeline.mlir

    // CHECK-LABEL: func @__forward_call_369
    // CHECK-SAME: ([[in_chain:%.*]]: !tfrt.chain
    // CHECK-SAME: [[arg1:%.*]]: !tfrt_fallback.tf_tensor {tf._user_specified_name = "inputs"},
    // CHECK-SAME: [[arg2:%.*]]: !tfrt_fallback.tf_tensor, [[arg3:%.*]]: !tfrt_fallback.tf_tensor, [[arg4:%.*]]: !tfrt_fallback.tf_tensor, [[arg5:%.*]]: !tfrt_fallback.tf_tensor)
    // CHECK-SAME: -> (!tfrt.chain
    // CHECK: [[o1:%.*]] = tfrt_fallback_async.const_dense_tensor
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. security/pkg/pki/util/keycertbundle_test.go

    			}
    
    			chain = bundle.GetCertChainPem()
    			if len(chain) != 0 {
    				t.Errorf("%s: certChainBytes should be empty", id)
    			}
    
    			root = bundle.GetRootCertPem()
    			if len(root) == 0 {
    				t.Errorf("%s: rootCertBytes should not be empty", id)
    			}
    
    			x509Cert, privKey, chain, root := bundle.GetAll()
    			if x509Cert != nil {
    				t.Errorf("%s: cert should be nil", id)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jan 21 06:07:50 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/plugins/ClangCompilerPluginTest.groovy

            expect:
            project.plugins.hasPlugin(pluginClass)
        }
    
        def "makes a Clang tool chain available"() {
            when:
            register()
    
            then:
            toolchain instanceof ClangToolChain
            toolchain.displayName == "Tool chain 'clang' (Clang)"
        }
    
        def "registers default Clang tool chain"() {
            when:
            addDefaultToolchain()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/plugins/GccCompilerPluginTest.groovy

            expect:
            project.plugins.hasPlugin(pluginClass)
        }
    
        def "makes a Gcc tool chain available"() {
            when:
            register()
    
            then:
            toolchain instanceof GccToolChain
            toolchain.displayName == "Tool chain 'gcc' (GNU GCC)"
        }
    
        def "registers default Gcc tool chain"() {
            when:
            addDefaultToolchain()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. pilot/pkg/xds/lds_test.go

    				chain = fc
    			}
    		}
    		if chain == nil {
    			t.Fatalf("Failed to find http_connection_manager")
    		}
    		if len(chain.Filters) != 1 {
    			t.Fatalf("Expected 1 filter in first filter chain, got %d", len(l.FilterChains))
    		}
    		filter := chain.Filters[0]
    		if filter.Name != wellknown.HTTPConnectionManager {
    			t.Fatalf("Expected HTTP connection, found %v", chain.Filters[0].Name)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/caching/internal/controller/DefaultBuildCacheControllerFactoryTest.groovy

            @Override
            BuildCacheService createBuildCacheService(TestRemoteBuildCache configuration, Describer describer) {
                def chain = describer.type("remote")
                if (configuration.value != null) {
                    chain.config("value", configuration.value)
                }
                new TestRemoteBuildCacheService()
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:46:34 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top