Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 83 for buildPath (0.17 sec)

  1. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/service/BuildCacheServicesConfiguration.java

        private final String buildPath;
        private final BuildCacheService remote;
        private final boolean remotePush;
    
        public BuildCacheServicesConfiguration(
            String buildPath,
            @Nullable LocalBuildCacheService local,
            boolean localPush,
            @Nullable BuildCacheService remote,
            boolean remotePush
        ) {
            this.buildPath = buildPath;
            this.remote = remote;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 04 08:25:00 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOperationsIntegrationTest.groovy

                assert buildPath == ':'
            }
            with(buildIdentified[1].details) {
                assert buildPath == ':unused'
            }
            def projectsIdentified = operations.progress(ProjectsIdentifiedProgressDetails)
            assert projectsIdentified.size() == 1
            with(projectsIdentified[0].details) {
                assert buildPath == ':'
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/initialization/buildsrc/BuildSrcBuildOperationsIntegrationTest.groovy

            buildSrcOps[0].details.buildPath == ':'
    
            def loadOps = ops.all(LoadBuildBuildOperationType)
            loadOps.size() == 2
            loadOps[0].displayName == "Load build"
            loadOps[0].details.buildPath == ':'
            loadOps[0].parentId == root.id
            loadOps[1].displayName == "Load build (:buildSrc)"
            loadOps[1].details.buildPath == ':buildSrc'
            loadOps[1].parentId == buildSrcOps[0].id
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/caching/internal/services/DefaultBuildCacheControllerFactory.java

        protected BuildCacheController doCreateController(
            Path buildPath,
            @Nullable DescribedBuildCacheService<DirectoryBuildCache, DirectoryBuildCacheService> localDescribedService,
            @Nullable DescribedBuildCacheService<BuildCache, BuildCacheService> remoteDescribedService
        ) {
            BuildCacheServicesConfiguration config = toConfiguration(
                buildPath,
                localDescribedService,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 17:08:26 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/configuration/project/LifecycleProjectEvaluator.java

            private final Path buildPath;
            private final File rootDir;
            private final Path projectPath;
    
            public ConfigureProjectDetails(Path projectPath, Path buildPath, File rootDir) {
                this.projectPath = projectPath;
                this.buildPath = buildPath;
                this.rootDir = rootDir;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/service/OpFiringRemoteBuildCacheServiceHandle.java

        private final String buildPath;
        private final BuildOperationRunner buildOperationRunner;
        private final BuildOperationProgressEventEmitter buildOperationProgressEventEmitter;
    
        public OpFiringRemoteBuildCacheServiceHandle(
            String buildPath,
            BuildCacheService service,
            boolean push,
            BuildCacheServiceRole role,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 16:15:24 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/configuration/project/LifecycleProjectEvaluatorIntegrationTest.groovy

                parentId == treeGraphOps[1].id
            }
    
            def configureIncludedBuild = operations.only(ConfigureProjectBuildOperationType, { it.details.buildPath == ':included-build' })
    
            with(operations.only(NotifyProjectAfterEvaluatedBuildOperationType, { it.details.buildPath == ':included-build' })) {
                displayName == 'Notify afterEvaluate listeners of :included-build'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/SourceDependencyIdentityIntegrationTest.groovy

                    assert components[0].build.buildPath == ':'
                    assert components[0].build.name == ':'
                    assert components[0].build.currentBuild
                    assert components[0].projectPath == ':'
                    assert components[0].projectName == 'buildA'
                    assert components[1].build.buildPath == ':${buildName}'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/NestedSourceDependencyIdentityIntegrationTest.groovy

                    assert components[0].build.buildPath == ':'
                    assert components[0].build.name == ':'
                    assert components[0].build.currentBuild
                    assert components[0].projectPath == ':'
                    assert components[0].projectName == 'buildA'
                    assert components[0].buildTreePath == ':'
                    assert components[1].build.buildPath == ':buildB'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/project/taskfactory/TaskIdentity.java

        public final Path buildPath; // path of the owning build
    
        /**
         * Tasks can be replaced in Gradle, meaning there can be two different tasks with the same path/type.
         * This allows identifying a precise instance.
         */
        public final long uniqueId;
    
        TaskIdentity(Class<T> type, String name, Path projectPath, Path identityPath, Path buildPath, long uniqueId) {
            this.name = name;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 24 12:01:24 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top