Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 164 for combinations (0.18 sec)

  1. src/internal/types/testdata/fixedbugs/issue62157.go

    	f(A, B /* ERROR "type namedB of B does not match inferred type namedA for T" */)
    	f(B, A /* ERROR "type namedA of A does not match inferred type namedB for T" */)
    
    	// Ensure that all combinations of directional and
    	// bidirectional channels with a named directional
    	// channel lead to the correct (named) directional
    	// channel.
    	B = f(a, b)
    	B = f(a, B)
    	B = f(b, a)
    	B = f(B, a)
    
    	B = f(a, b, B)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 23:22:35 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorParametersKotlinIntegrationTest.groovy

            outputContains ':runWork FROM-CACHE'
    
            and:
            outputDoesNotContain expectedOutput
    
            where:
            [isolationMode, primitiveType] << [isolationModes(), primitiveTypes()].combinations()
            expectedOutput = expectedOutputFor(primitiveType)
        }
    
        @Issue('https://github.com/gradle/gradle/issues/26596')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 20:22:02 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/ConfigurationRolesSpec.groovy

            false       | false         | true              || ConfigurationRoles.DEPENDENCY_SCOPE
        }
    
        def "can not find unknown usage combinations consumable=#consumable, resolvable=#resolvable, declarable=#declarable"() {
            expect:
            !ConfigurationRoles.byUsage(consumable, resolvable, declarable).isPresent()
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/ContinuousBuildCancellationIntegrationTest.groovy

            ConcurrentTestUtil.poll(buildTimeout, 0.5) {
                assert !gradle.isRunning()
            }
    
            where:
            [inputBefore, flushBefore] << [['', ' ', 'a', 'some input', 'a' * 8192], [true, false]].combinations()
        }
    
        def "does not cancel continuous build when other than ctrl+d is entered"() {
            given:
            setupJavaProject()
    
            when:
            succeeds("build")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractKotlinPluginAndroidSmokeTest.groovy

            [kotlinPluginVersion, androidPluginVersion, parallel] << [
                    TestedVersions.kotlin.versions,
                    TestedVersions.androidGradle.versions,
                    [true, false]
            ].combinations()
    
            dsl = getDSL().name()
        }
    
        @Override
        protected int maxConfigurationCacheProblems() {
            return hasConfigurationCacheWarnings(kotlinPluginVersion) ? 2 : 0
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 04:59:12 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. src/crypto/internal/boring/build-boring.sh

    export CGO_ENABLED=0
    
    # Modify the support code crypto/mem.c (outside the FIPS module)
    # to not try to use weak symbols, because they don't work with some
    # Go toolchain / clang toolchain combinations.
    perl -p -i -e 's/defined.*ELF.*defined.*GNUC.*/$0 \&\& !defined(GOBORING)/' boringssl/crypto/mem.c
    
    # Verbatim instructions from BoringCrypto build docs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 21:28:09 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/ast/inspector/inspector.go

    //  4 stack
    // Rather than offer all of them in the API,
    // only a few combinations are exposed:
    // - Preorder is the fastest and has fewest features,
    //   but is the most commonly needed traversal.
    // - Nodes and WithStack both provide pruning and postorder calls,
    //   even though few clients need it, because supporting two versions
    //   is not justified.
    // More combinations could be supported by expressing them as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  8. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/KotlinPluginSmokeTest.groovy

            assert result.output.contains("Hello world!")
    
            where:
            [version, parallelTasksInProject] << [
                TestedVersions.kotlin.versions,
                [true, false]
            ].combinations()
        }
    
        def 'kotlin jvm and test suites (kotlin=#version)'() {
    
            assumeFalse(version.startsWith("1.6."))
            assumeFalse(version.startsWith("1.7."))
            setupForKotlinVersion(version)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFileTreeIntegrationTest.groovy

            outputDoesNotContain '*foo.fail*'
    
            and:
            configurationCache.assertStateLoaded()
    
            where:
            [pattern, fileTree] << [fileTreeOperators(), fileTrees()].combinations()
            isZip = fileTree.toString().startsWith('zip')
        }
    
        private List<String> fileTrees() {
            [
                "fileTree(dir: 'src', include: '**/*.*')",
                "zipTree('src.zip')",
            ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/AllowFollowForMutatingMethodRedirectStrategyTest.groovy

            redirectRequest.method.toUpperCase() == expectedMethod
    
            where:
            [httpMethod, redirect] << [HTTP_METHODS, REDIRECTS].combinations()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top