Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 92 for combinations (0.32 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFlowScopeIntegrationTest.groovy

            where:
            [target, parameter, injectionStyle] << [
                ScriptTarget.values(),
                ParameterKind.values(),
                InjectionStyle.values()
            ].combinations()
        }
    
        def '#target #injectionStyle with #parameter can react to configuration failure'() {
            given:
            withLavaLampPluginFor target, parameter, injectionStyle
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/properties/annotations/DefaultTypeMetadataStoreTest.groovy

            collectProblems(childMetadata).empty
    
            where:
            [parentAnnotation, childAnnotation] << [PROCESSED_PROPERTY_TYPE_ANNOTATIONS, PROCESSED_PROPERTY_TYPE_ANNOTATIONS].combinations()*.flatten()
        }
    
        def "can override @#processedAnnotation.simpleName property type with @#unprocessedAnnotation.simpleName"() {
            def parentTask = groovyClassLoader.parseClass """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/io/src/test/groovy/org/gradle/internal/io/StreamByteBufferTest.groovy

            where:
            // make sure that multi-byte unicode characters get split in different chunks
            [chunkSize, preUseBuffer] << [(1..(TEST_STRING_BYTES.length * 3)).toList() + [100, 1000], [false, true]].combinations()
        }
    
        def "empty buffer to String returns empty String"() {
            given:
            def byteBuffer = new StreamByteBuffer()
    
            expect:
            byteBuffer.readAsString() == ''
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 13:06:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/AbstractLineEndingSensitivityIntegrationSpec.groovy

            cleanWorkspace()
            execute("taskWithInputs")
    
            then:
            executedAndNotSkipped(":taskWithInputs")
    
            where:
            [api, pathsensitivity] << [Api.values(), PathSensitivity.values()].combinations()
        }
    
        def "input files properties can ignore line endings when specified (#api, #pathsensitivity)"() {
            createTaskWithNormalization(InputFiles, LineEndingSensitivity.NORMALIZE_LINE_ENDINGS, pathsensitivity, api)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyGraphBuilder.java

            if (selectedNodes.size() < 2) {
                return;
            }
            Set<Set<NodeState>> combinations = Sets.combinations(selectedNodes, 2);
            Set<NodeState> incompatibleNodes = new HashSet<>();
            for (Set<NodeState> combination : combinations) {
                Iterator<NodeState> it = combination.iterator();
                NodeState first = it.next();
                NodeState second = it.next();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/SystemPropertiesCompositeBuildFixture.groovy

        }
    
        static List<Spec> specs() {
            [
                definitions(),
                SystemPropertyAccess.values()
            ]
                .combinations()
                .findAll { List<BuildWithSystemPropertyDefined> definitions, SystemPropertyAccess access ->
                    access.isApplicableToBuild(definitions)
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  9. apache-maven/src/main/appended-resources/licenses/EPL-2.0.txt

      if any, in Source Code or other form. This patent license shall
      apply to the combination of the Contribution and the Program if, at
      the time the Contribution is added by the Contributor, such addition
      of the Contribution causes such combination to be covered by the
      Licensed Patents. The patent license shall not apply to any other
      combinations which include the Contribution. No hardware per se is
      licensed hereunder.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/MissingScriptFixture.groovy

                    new MissingBuildInBuildSrc(),
                    new MissingSettingsInBuildSrc(),
                    new MissingBuildInIncluded(),
                    new MissingSettingsInIncluded()
                ]
            ].combinations().collect { ScriptLanguage scriptLanguage, Scenario scenario ->
                new Spec(scriptLanguage, scenario)
            }
        }
    
        private static List<Spec> singleLanguageSpecs() {
            [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top