Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 140 for projectFor (0.24 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/initialization/Settings.java

         *   include 'baz'
         *   project(':baz').projectDir = file('foo/baz')
         *
         *   // include many projects whose project dirs do not match the logical project paths
         *   file('subprojects').eachDir { dir ->
         *     include dir.name
         *     project(":${dir.name}").projectDir = dir
         *   }
         * </pre>
         *
         * @param projectPaths the projects to add.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/types/KtFe10NewCapturedType.kt

    ) : KaCapturedType(), KaFe10Type {
        override val nullability: KaTypeNullability
            get() = withValidityAssertion { fe10Type.ktNullability }
    
        override val projection: KaTypeProjection
            get() = withValidityAssertion { fe10Type.constructor.projection.toKtTypeProjection(analysisContext) }
    
        override val abbreviatedType: KaUsualClassType?
            get() = withValidityAssertion { null }
    
        override fun toString(): String {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheKey.kt

                // the relative directory information must be part of the key.
                val projectDir = startParameter.projectDirectory
                if (projectDir != null) {
                    relativePathOf(
                        projectDir,
                        startParameter.rootDirectory
                    ).let { relativeProjectDir ->
                        putString(relativeProjectDir)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. platforms/extensibility/unit-test-fixtures/src/test/groovy/org/gradle/testfixtures/ProjectBuilderTest.groovy

            when:
            def project = ProjectBuilder.builder().build()
    
            then:
            project instanceof DefaultProject
            project.name == 'test'
            project.path == ':'
            project.projectDir.parentFile != null
            project.buildFile == project.file("build.gradle")
            project.gradle != null
            project.gradle.rootProject == project
            project.gradle.gradleHomeDir == project.file('gradleHome')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/types/KtFirCapturedType.kt

        override val nullability: KaTypeNullability get() = withValidityAssertion { coneType.nullability.asKtNullability() }
    
        override val projection: KaTypeProjection
            get() = withValidityAssertion { builder.typeBuilder.buildTypeProjection(coneType.constructor.projection) }
    
        override val annotations: KaAnnotationList by cached {
            KaFirAnnotationListForType.create(coneType, builder)
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

         *
         * @param projectDir The project directory. May be null.
         */
        public void setProjectDir(@Nullable File projectDir) {
            if (projectDir == null) {
                setCurrentDir(null);
                this.projectDir = null;
            } else {
                File canonicalFile = FileUtils.canonicalize(projectDir);
                currentDir = canonicalFile;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  7. build-logic-settings/build-environment/src/main/kotlin/gradlebuild/basics/BuildEnvironmentService.kt

        @Suppress("UnstableApiUsage")
        private
        fun git(vararg args: String): Provider<String> {
            val projectDir = parameters.rootProjectDir.asFile.get()
            val execOutput = providers.exec {
                workingDir = projectDir
                isIgnoreExitValue = true
                commandLine = listOf("git", *args)
                if (OperatingSystem.current().isWindows) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 05:01:36 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r50/ToolingApiIdeaModelCrossVersionSpec.groovy

    @TargetGradleVersion(">=5.0")
    class ToolingApiIdeaModelCrossVersionSpec extends ToolingApiSpecification {
    
        def "provides source dir information"() {
    
            buildFile.text = "apply plugin: 'java'"
    
            projectDir.create {
                src {
                    main {
                        java {}
                        resources {}
                    }
                    test {
                        java {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiClientJdkCompatibilityTest.groovy

                        System.out.println("action = " + action);
                        System.out.println("projectDir = " + projectDir);
                        System.out.println("gradleVersion = " + gradleVersion);
                        System.out.println("javaHome = " + javaHome);
                        System.out.println("gradleUserHome = " + gradleUserHome);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  10. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BuildScanPluginSmokeTest.groovy

                    public static boolean isTrue() { return true; }
                }
            """
    
            createTest(projectDir, "MyTest")
            projectDir
        }
    
        void createTest(TestFile projectDir, String testName) {
            projectDir.file("src/test/java/${testName}.java") << """
                import org.junit.*;
    
                public class ${testName} {
                   @Test
                   public void test() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top