Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 819 for combinations (0.36 sec)

  1. 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)
  2. 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)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/AbstractDirectorySensitivityIntegrationSpec.groovy

            then:
            executedAndNotSkipped(":taskWithInputs")
    
            where:
            [api, pathSensitivity] << [Api.values(), [PathSensitivity.RELATIVE, PathSensitivity.ABSOLUTE, PathSensitivity.NAME_ONLY]].combinations()
        }
    
        def "input directories ignore empty directories by default (#api)"() {
            buildFile """
                @CacheableTask
                abstract class TaskWithInputs extends DefaultTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. android/guava-tests/test/com/google/common/math/PairedStatsAccumulatorTest.java

            .isWithin(ALLOWED_ERROR)
            .of(MANY_VALUES_SUM_OF_PRODUCTS_OF_DELTAS / MANY_VALUES_COUNT);
        // For datasets of many double values, we test many combinations of finite and non-finite
        // x-values:
        for (ManyValues values : ALL_MANY_VALUES) {
          PairedStatsAccumulator accumulator =
              createFilledPairedStatsAccumulator(values.asIterable(), OTHER_MANY_VALUES);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 23.4K 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/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/JavaLibraryInitIntegrationTest.groovy

            [scriptDsl, testFramework] << [
                    ScriptDslFixture.SCRIPT_DSLS,
                    [ BuildInitTestFramework.JUNIT, BuildInitTestFramework.TESTNG, BuildInitTestFramework.JUNIT_JUPITER ]
            ].combinations()
        }
    
        def "creates sample source with package and #testFramework and #scriptDsl build scripts with --incubating"() {
            def dslFixture = dslFixtureFor(scriptDsl)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 11.8K bytes
    - Viewed (1)
  10. 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)
Back to top