Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 898 for locations (0.38 sec)

  1. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/DefaultInternalProblemContextDetails.java

            this.details = details;
            this.locations = locations;
            this.solutions = solutions;
            this.failure = failure;
            this.contextualLabel = contextualLabel;
        }
    
        @Override
        public InternalAdditionalData getAdditionalData() {
            return additionalData;
        }
    
        @Nullable
        @Override
        public InternalDetails getDetails() {
            return details;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 09:50:20 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. platforms/ide/problems-api/src/test/groovy/org/gradle/api/problems/internal/DefaultProblemTest.groovy

            newProblem.additionalData == problem.additionalData
            newProblem.details == problem.details
            newProblem.exception == problem.exception
            newProblem.locations == problem.locations
    
            newProblem == problem
    
            where:
            severity << [Severity.WARNING, Severity.ERROR]
        }
    
        def "unbound builder result with modified #changedAspect is not equal"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 08:30:15 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/file/ProjectLayout.java

         * Creates a {@link RegularFile} provider whose location is calculated from the given {@link Provider}.
         * <p>
         * File system locations based on relative paths will be
         * resolved against this layout's reference location, as defined by {@link #getProjectDirectory()}.
         */
        Provider<RegularFile> file(Provider<File> file);
    
        /**
         * Creates a {@link Directory} provider whose location is calculated from the given {@link Provider}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/impl/AbstractVirtualFileSystem.java

            }
        }
    
        @Override
        public void invalidate(Iterable<String> locations) {
            LOGGER.debug("Invalidating VFS paths: {}", locations);
            updateRootUnderLock(root -> {
                SnapshotHierarchy result = root;
                VersionHierarchyRoot newVersionHierarchyRoot = versionHierarchyRoot;
                for (String location : locations) {
                    SnapshotHierarchy currentRoot = result;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/user-feature/settings.gradle

    // == 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('../domain-model')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 579 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/groovy/customizedLayout/groovy/build.gradle

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

        testImplementation("junit:junit:4.13")
    }
    
    // tag::custom-source-locations[]
    sourceSets {
        main {
            groovy {
                setSrcDirs(listOf("src/groovy"))
            }
        }
    
        test {
            groovy {
                setSrcDirs(listOf("test/groovy"))
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 440 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/android-app/settings.gradle

    // == 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/server-application/settings.gradle.kts

    // == Define locations for build logic ==
    pluginManagement {
        repositories {
            gradlePluginPortal()
        }
        includeBuild("../build-logic")
    }
    
    // == Define locations for components ==
    dependencyResolutionManagement {
        repositories {
            mavenCentral()
        }
    }
    includeBuild("../platforms")
    includeBuild("../user-feature")
    includeBuild("../admin-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
    - 503 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/kotlin/state/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
    - 511 bytes
    - Viewed (0)
Back to top