Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for WorkspaceScopeId (0.45 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/scopeids/id/WorkspaceScopeId.java

     *
     * This ID is persisted in the root build's project cache dir.
     * If this cache directory is destroyed, a new ID will be issued.
     */
    public final class WorkspaceScopeId extends ScopeId {
    
        public WorkspaceScopeId(UniqueId id) {
            super(id);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 26 01:28:01 UTC 2017
    - 1.3K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/impl/legacy/DefaultBuildScanScopeIds.java

    import org.gradle.internal.scopeids.id.WorkspaceScopeId;
    
    public class DefaultBuildScanScopeIds implements BuildScanScopeIds {
    
        private final BuildInvocationScopeId buildInvocationId;
        private final WorkspaceScopeId workspaceId;
        private final UserScopeId userId;
    
        public DefaultBuildScanScopeIds(BuildInvocationScopeId buildInvocationId, WorkspaceScopeId workspaceId, UserScopeId userId) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 17:58:47 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/impl/DefaultGradleEnterprisePluginBuildState.java

        private final WorkspaceScopeId workspaceId;
        private final UserScopeId userId;
        private final StartParameter startParameter;
        private final ServiceRegistry serviceRegistry;
    
        public DefaultGradleEnterprisePluginBuildState(
            Clock clock,
            BuildStartedTime buildStartedTime,
            BuildInvocationScopeId buildInvocationId,
            WorkspaceScopeId workspaceId,
            UserScopeId userId,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 16 10:59:09 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/scopeids/PersistentScopeIdLoader.java

     */
    
    package org.gradle.internal.scopeids;
    
    import org.gradle.internal.scopeids.id.UserScopeId;
    import org.gradle.internal.scopeids.id.WorkspaceScopeId;
    
    public interface PersistentScopeIdLoader {
    
        UserScopeId getUser();
    
        WorkspaceScopeId getWorkspace();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 12 00:24:17 UTC 2017
    - 878 bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/scopeids/DefaultPersistentScopeIdLoader.java

            return new UserScopeId(uniqueId);
        }
    
        @Override
        public WorkspaceScopeId getWorkspace() {
            UniqueId uniqueId = get(new ScopeParams(workspaceScopeCacheScopeMarker(), WORKSPACE_ID_FILENAME, "Workspace ID"));
            return new WorkspaceScopeId(uniqueId);
        }
    
        // This method is effectively part of a cross Gradle version contract.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 10 18:14:29 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/DevelocityPluginBuildStateIntegrationTest.groovy

    import org.gradle.internal.buildevents.BuildStartedTime
    import org.gradle.internal.scopeids.id.BuildInvocationScopeId
    import org.gradle.internal.scopeids.id.UserScopeId
    import org.gradle.internal.scopeids.id.WorkspaceScopeId
    import org.gradle.internal.time.Clock
    
    class DevelocityPluginBuildStateIntegrationTest extends AbstractIntegrationSpec {
    
        def plugin = new DevelocityPluginCheckInFixture(testDirectory, mavenRepo, createExecuter())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 10:49:16 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ScopeIdsFixture.groovy

    import org.gradle.internal.id.UniqueId
    import org.gradle.internal.scopeids.id.BuildInvocationScopeId
    import org.gradle.internal.scopeids.id.UserScopeId
    import org.gradle.internal.scopeids.id.WorkspaceScopeId
    import org.gradle.test.fixtures.file.TestDirectoryProvider
    import org.gradle.test.fixtures.file.TestFile
    
    import static org.gradle.util.internal.TextUtil.normaliseFileSeparators
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/service/scopes/CoreBuildSessionServices.java

    import org.gradle.internal.scopeids.PersistentScopeIdLoader;
    import org.gradle.internal.scopeids.ScopeIdsServices;
    import org.gradle.internal.scopeids.id.UserScopeId;
    import org.gradle.internal.scopeids.id.WorkspaceScopeId;
    import org.gradle.internal.service.Provides;
    import org.gradle.internal.service.ServiceRegistration;
    import org.gradle.internal.service.ServiceRegistrationProvider;
    import org.gradle.internal.time.Clock;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.internal.scopeids.id.WorkspaceScopeId> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (WorkspaceScopeId.java:0)
    Class <org.gradle.internal.serialization.Cached$Deferred> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (Cached.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top