Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,256 for chain (0.2 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/attributes/DisambiguationRuleChain.java

    import java.util.Comparator;
    
    /**
     * <p>A chain of disambiguation rules. By default the chain is empty and will not do any disambiguation.</p>
     *
     * <p>For a given set of rules, the execution is done <i>in order</i>, and interrupts as soon as a rule
     * selected at least one candidate (through {@link MultipleCandidatesDetails#closestMatch(Object)}).
     * </p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_combine.cc

    // This optimizes the following scenario:
    // %tft0, %c2 = "tfd.move_dht_to_tft"(%dht0, %c1)
    //     : (!dht.host_tensor, !tfrt.chain) -> (!tfd.tf_tensor, !tfrt.chain)
    // %dht1, %c3 = "tfd.convert_tft_to_dht"(%tft0, %c2)
    //     : (!tfd.tf_tensor, !tfrt.chain) -> (!dht.host_tensor, !tfrt.chain)
    // some_op %dht1, %c3
    //
    // becomes
    // some_op %dht0, %c1
    
    struct SimplifyDoubleConversion
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 09 12:09:19 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  3. tests/testdata/certs/generate.sh

    # revoke one of the server certificates for CRL testing purpose
    openssl ca -config "${WD}/crl.conf" -revoke "${WD}/dns/cert-chain.pem"
    openssl ca -gencrl -out "${WD}/ca.crl" -config "${WD}/crl.conf"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 19:49:21 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. test/chan/sieve1.go

    // removing those divisible by 'prime'.
    func Filter(in <-chan int, out chan<- int, prime int) {
    	for i := range in { // Loop over values received from 'in'.
    		if i%prime != 0 {
    			out <- i // Send 'i' to channel 'out'.
    		}
    	}
    }
    
    // The prime sieve: Daisy-chain Filter processes together.
    func Sieve(primes chan<- int) {
    	ch := make(chan int) // Create a new channel.
    	go Generate(ch)      // Start Generate() as a subprocess.
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 06:44:02 UTC 2012
    - 1.5K bytes
    - Viewed (0)
  7. 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)
  8. security/pkg/pki/ra/k8s_ra_test.go

    	}{
    		{
    			name:                  "Root cert from mesh config and cert chain does not match",
    			rootCertForMeshConfig: path.Join(env.IstioSrc, "samples/certs", "root-cert.pem"),
    			certChain:             mismatchCertChainFile,
    			expectedFail:          true,
    		},
    		{
    			name:                  "Root cert is specified in mesh config and Root cert from cert chain is empty(only one leaf cert)",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 27 00:44:54 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/testFixtures/groovy/org/gradle/language/AbstractNativeLanguageComponentIntegrationTest.groovy

                        }
                    }
                }
            """
    
            expect:
            succeeds "verifyBinariesPlatformType"
        }
    
        def "binaries have the right tool chain type"() {
            given:
            makeSingleProject()
            buildFile << """
                task verifyBinariesToolChainType {
                    doLast {
                        ${componentUnderTestDsl}.binaries.get().each {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/suggest/normalizer/AnalyzerNormalizer.java

                normalizer = new LangAnalyzerNormalizer(null);
            } else {
                final NormalizerChain chain = new NormalizerChain();
                for (final String lang : langs) {
                    chain.add(new LangAnalyzerNormalizer(lang));
                }
                normalizer = chain;
            }
            return normalizer.normalize(text, field);
        }
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top