Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 94 for buildIdentifier (0.28 sec)

  1. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/ProviderCodecs.kt

                    buildServiceRegistryOf(buildIdentifier).registerIfAbsent(name, implementationType, parameters, maxUsages)
                } else {
                    buildServiceRegistryOf(buildIdentifier).consume(name, implementationType)
                }
            }
    
        private
        fun buildServiceRegistryOf(buildIdentifier: BuildIdentifier) =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. subprojects/composite-builds/src/test/groovy/org/gradle/composite/internal/DefaultIncludedBuildTaskGraphTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.composite.internal
    
    import org.gradle.api.artifacts.component.BuildIdentifier
    import org.gradle.api.internal.artifacts.DefaultBuildIdentifier
    import org.gradle.execution.plan.PlanExecutor
    import org.gradle.internal.build.BuildWorkGraph
    import org.gradle.internal.build.BuildWorkGraphController
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:04:24 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/gradle/DefaultBuildIdentifier.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.internal.gradle;
    
    import org.gradle.tooling.model.BuildIdentifier;
    
    import java.io.File;
    import java.io.Serializable;
    
    public class DefaultBuildIdentifier implements Serializable, GradleBuildIdentity, BuildIdentifier {
        private final File rootDir;
    
        public DefaultBuildIdentifier(File rootDir) {
            this.rootDir = rootDir.getAbsoluteFile();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/services/internal/DefaultBuildServicesRegistry.java

    import static org.gradle.internal.Cast.uncheckedNonnullCast;
    
    public class DefaultBuildServicesRegistry implements BuildServiceRegistryInternal, HoldsProjectState {
    
        private final BuildIdentifier buildIdentifier;
        private final Lock registrationsLock = new ReentrantLock();
        private NamedDomainObjectSet<BuildServiceRegistration<?, ?>> registrations;
        private final DomainObjectCollectionFactory collectionFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:45 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/local/model/DefaultProjectComponentSelectorTest.groovy

            def selector = new DefaultProjectComponentSelector(Stub(BuildIdentifier), Path.path(":id:path"), Path.path(":project:path"), "projectName", ImmutableAttributes.EMPTY, [])
            def sameIdPath = new DefaultProjectComponentIdentifier(Stub(BuildIdentifier), Path.path(":id:path"), Path.path(":project:path"), "projectName")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/execution/plan/TaskInAnotherBuild.java

        private final String taskPath;
        private final BuildIdentifier targetBuild;
    
        protected TaskInAnotherBuild(Path taskIdentityPath, String taskPath, BuildIdentifier targetBuild) {
            this.taskIdentityPath = taskIdentityPath;
            this.taskPath = taskPath;
            this.targetBuild = targetBuild;
        }
    
        public BuildIdentifier getTargetBuild() {
            return targetBuild;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 06 15:09:14 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  7. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultIncludedBuildFactory.java

            }
        }
    
        @Override
        public IncludedBuildState createBuild(BuildIdentifier buildIdentifier, BuildDefinition buildDefinition, boolean isImplicit, BuildState owner) {
            validateBuildDirectory(buildDefinition.getBuildRootDir());
            return new DefaultIncludedBuild(
                buildIdentifier,
                buildDefinition,
                isImplicit,
                owner,
                buildTree,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 23 10:37:35 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. subprojects/composite-builds/src/test/groovy/org/gradle/composite/internal/DefaultIncludedBuildTest.groovy

            def buildId = Stub(BuildIdentifier) {
                buildPath >> Path.path(":a:b:c")
            }
            build = new DefaultIncludedBuild(buildId, buildDefinition, false, owningBuild, buildTree, Mock(Instantiator))
        }
    
        def "creates a foreign id for projects"() {
            def projectId = new DefaultProjectComponentIdentifier(Stub(BuildIdentifier), Path.path("id"), Path.path("project"), "name")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 22 14:22:44 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/project/ProjectStateRegistry.java

         */
        BuildProjectRegistry projectsFor(BuildIdentifier buildIdentifier) throws IllegalArgumentException;
    
        /**
         * Locates the state objects for all projects of the given build, or {@code null} if these are not available yet.
         */
        @Nullable
        BuildProjectRegistry findProjectsFor(BuildIdentifier buildIdentifier);
    
        /**
         * Registers the projects of a build.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/build/DefaultBuildWorkGraphController.java

    public class DefaultBuildWorkGraphController implements BuildWorkGraphController {
        private final TaskNodeFactory taskNodeFactory;
        private final BuildLifecycleController controller;
        private final BuildIdentifier buildIdentifier;
        private final WorkerLeaseService workerLeaseService;
        private final Map<String, DefaultExportedTaskNode> nodesByPath = new ConcurrentHashMap<>();
        private final Object lock = new Object();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 31 05:15:28 UTC 2023
    - 11.3K bytes
    - Viewed (0)
Back to top