Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,891 for chain (0.53 sec)

  1. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/DefaultNativeToolChainRegistryTest.groovy

            then:
            GradleException e = thrown()
            e.message == toPlatformLineSeparators("""No tool chain is available to build for platform 'platform':
      - Tool chain 'test': nope
      - Tool chain 'test2': not me
      - Tool chain 'test3': not me either""")
        }
    
        def "provides unavailable tool chain when no tool chain available for requested source language and target platform"() {
            unavailableToolChain("test", "nope")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  2. pkg/util/iptables/testing/parse_test.go

    				COMMIT
    				`),
    			output: &IPTablesDump{
    				Tables: []Table{{
    					Name: iptables.TableFilter,
    					Chains: []Chain{{
    						Name: iptables.Chain("KUBE-SERVICES"),
    					}, {
    						Name: iptables.Chain("KUBE-EXTERNAL-SERVICES"),
    					}, {
    						Name: iptables.Chain("KUBE-FORWARD"),
    						Rules: []*Rule{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 26K bytes
    - Viewed (0)
  3. pkg/util/iptables/testing/fake_test.go

    	}
    	existed, err = fake.EnsureChain(iptables.TableNAT, iptables.Chain("KUBE-TEST"))
    	if err != nil {
    		t.Errorf("unexpected error creating chain: %v", err)
    	} else if !existed {
    		t.Errorf("wrong return value from EnsureChain with existing chain")
    	}
    
    	// ChainExists
    	exists, err := fake.ChainExists(iptables.TableNAT, iptables.Chain("KUBE-TEST"))
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  4. tools/istio-iptables/pkg/builder/iptables_builder_test.go

    				builder.AppendRuleV6(iptableslog.UndefinedCommand, "chain", "table", "-f", "fu", "-b", "bar")
    				builder.AppendRuleV6(iptableslog.UndefinedCommand, "chain", "table", "-f", "foo", "-b", "baz")
    			},
    			true,
    		},
    		{
    			"insert-multi-v4",
    			true,
    			false,
    			func(builder *IptablesRuleBuilder) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/fallback_inline.mlir

    // RUN: tf-tfrt-opt %s -inline | FileCheck %s
    
    func.func @_tfrt_fallback_init(%arg0: !tfrt.chain) -> !tfrt.chain {
      %0 = tfrt_fallback_async.createop(%arg0) key(0) device("/device:CPU:0") "tf.Less"() {T = i32} num_args(2)
      tfrt.return %0 : !tfrt.chain
    }
    
    func.func @callee(%ch: !tfrt.chain, %arg: !tfrt_fallback.tf_tensor) -> (!tfrt.chain, !tfrt_fallback.tf_tensor) {
      %const = tfrt_fallback_async.const_dense_tensor dense<9> : tensor<i32> {_tfrt_cost = 1 : i64}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 10:51:48 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  6. pkg/proxy/iptables/proxier.go

    )
    
    const (
    	// the services chain
    	kubeServicesChain utiliptables.Chain = "KUBE-SERVICES"
    
    	// the external services chain
    	kubeExternalServicesChain utiliptables.Chain = "KUBE-EXTERNAL-SERVICES"
    
    	// the nodeports chain
    	kubeNodePortsChain utiliptables.Chain = "KUBE-NODEPORTS"
    
    	// the kubernetes postrouting chain
    	kubePostroutingChain utiliptables.Chain = "KUBE-POSTROUTING"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/PlatformNativeComponentReportIntegrationTest.groovy

            tool chain: Tool chain 'clang' (Clang)
            shared library file: build/libs/someLib/shared/libsomeLib.dylib
        Static library 'someLib:staticLibrary'
            build using task: :someLibStaticLibrary
            build type: build type 'debug'
            flavor: flavor 'default'
            target platform: platform '$currentNative'
            tool chain: Tool chain 'clang' (Clang)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener.go

    		}
    		if !fullWildcardFound {
    			chain.sniHosts = append([]string{}, chain.sniHosts...)
    			sort.Stable(sort.StringSlice(chain.sniHosts))
    			match.ServerNames = chain.sniHosts
    		}
    	}
    	if len(chain.destinationCIDRs) > 0 {
    		chain.destinationCIDRs = append([]string{}, chain.destinationCIDRs...)
    		sort.Stable(sort.StringSlice(chain.destinationCIDRs))
    		for _, d := range chain.destinationCIDRs {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/auth/AuthenticationManager.java

        public void addChain(final AuthenticationChain chain) {
            chains = ArrayUtils.addAll(chains, chain);
        }
    
        protected StreamOf<AuthenticationChain> chains() {
            return stream(chains);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformedVariant.java

     * to a root producer variant.
     */
    public class TransformedVariant implements HasAttributes {
        private final ResolvedVariant root;
        private final VariantDefinition chain;
    
        public TransformedVariant(ResolvedVariant root, VariantDefinition chain) {
            this.root = root;
            this.chain = chain;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top