Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 898 for locations (0.13 sec)

  1. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/LinuxInstallationSupplierTest.groovy

            then:
            directories.size() == 2
            directories*.location.toSorted() == [
                candidates.file("11.0.6.hs-adpt"),
                candidates.file("14")
            ]
            directories*.source.unique() == ["Common Linux Locations"]
        }
    
        def "supplies installations for multiple locations"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/testFixtures/groovy/org/gradle/language/fixtures/ResourceGeneratingProcessorFixture.groovy

            this
        }
    
        ResourceGeneratingProcessorFixture withOutputLocations(String... locations) {
            outputLocations = Arrays.asList(locations)
            this
        }
    
        ResourceGeneratingProcessorFixture withOutputLocations(List<String> locations) {
            outputLocations = locations
            this
        }
    
        String getGeneratorCode() {
            def outputs = outputLocations.collect { """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/file/BuildLayoutIntegrationTest.groovy

        }
    
        def "locations are as expected for non-standard settings locations available for scripts"() {
            def customSettingsPath = "custom-subdir/custom-settings.gradle"
            def customSettingsFile = testDirectory.file(customSettingsPath)
            def customSettingsDir = customSettingsFile.parentFile
            // setting a custom settings location is deprecated
            executer.noDeprecationChecks()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 18:31:24 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemsServiceIntegTest.groovy

                definition.severity == Severity.WARNING
                definition.documentationLink != null
                locations.size() == 2
                locations[0].path == "build file 'build.gradle'"
                locations[0].line == 2
                locations[1].path == "build file '${buildFile.absolutePath}'"
                locations[1].line == 2
            }
    
            when:
            configurationCacheRunLenient '-Pdummy=true', 'run'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/scala/customizedLayout/groovy/build.gradle

        testImplementation 'junit:junit:4.13'
    }
    
    // tag::custom-source-locations[]
    sourceSets {
        main {
            scala {
                srcDirs = ['src/scala']
            }
        }
        test {
            scala {
                srcDirs = ['test/scala']
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 442 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/scala/customizedLayout/kotlin/build.gradle.kts

        testImplementation("junit:junit:4.13")
    }
    
    // tag::custom-source-locations[]
    sourceSets {
        main {
            scala {
                setSrcDirs(listOf("src/scala"))
            }
        }
        test {
            scala {
                setSrcDirs(listOf("test/scala"))
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 455 bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/DefaultExcludesFixture.groovy

            Spec(List<DefaultExcludesLocation> locations, ScriptLanguage scriptLanguage) {
                this.locations = locations
                this.scriptLanguage = scriptLanguage
            }
    
            void setup(AbstractIntegrationSpec spec) {
                configureCopyTask(spec)
    
                locations.forEach {
                    it.applyDefaultExcludes(spec, scriptLanguage)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/kotlin/android-app/settings.gradle.kts

    // == Define locations for build logic ==
    pluginManagement {
        repositories {
            gradlePluginPortal()
            google()
        }
        includeBuild("../build-logic")
    }
    
    // == Define locations for components ==
    dependencyResolutionManagement {
        repositories {
            mavenCentral()
            google()
        }
    }
    includeBuild("../platforms")
    includeBuild("../user-feature")
    
    // == Define the inner structure of this component ==
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 475 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/kotlin/aggregation/settings.gradle.kts

    // == Define locations for build logic ==
    pluginManagement {
        repositories {
            gradlePluginPortal() // if pluginManagement.repositories looks like this, it can be omitted as this is the default
        }
        includeBuild("../build-logic")
    }
    
    // == Define locations for components ==
    dependencyResolutionManagement {
        repositories {
            mavenCentral()
        }
    }
    includeBuild("../platforms")
    includeBuild("../admin-feature")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 580 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/kotlin/domain-model/settings.gradle.kts

    // == Define locations for build logic ==
    pluginManagement {
        repositories {
            gradlePluginPortal() // if pluginManagement.repositories looks like this, it can be omitted as this is the default
        }
        includeBuild("../build-logic")
    }
    
    // == Define locations for components ==
    dependencyResolutionManagement {
        repositories {
            mavenCentral()
        }
    }
    includeBuild("../platforms")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 607 bytes
    - Viewed (0)
Back to top