Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for SharedResourceLeaseRegistry (0.37 sec)

  1. subprojects/core/src/main/java/org/gradle/api/services/internal/DefaultBuildServicesRegistry.java

            private final String name;
            private final int maxUsages;
            private final SharedResourceLeaseRegistry leaseRegistry;
    
            public ServiceBackedSharedResource(String name, int maxUsages, SharedResourceLeaseRegistry leaseRegistry) {
                this.name = name;
                this.maxUsages = maxUsages;
                this.leaseRegistry = leaseRegistry;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:45 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/service/scopes/BuildScopeServices.java

            return objectFactory.newInstance(DefaultToolchainManagement.class);
        }
    
        @Provides
        protected SharedResourceLeaseRegistry createSharedResourceLeaseRegistry(ResourceLockCoordinationService coordinationService) {
            return new SharedResourceLeaseRegistry(coordinationService);
        }
    
        @Provides
        protected DefaultBuildServicesRegistry createSharedServiceRegistry(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/services/internal/DefaultBuildServicesRegistryTest.groovy

    import org.gradle.internal.Actions
    import org.gradle.internal.Try
    import org.gradle.internal.event.DefaultListenerManager
    import org.gradle.internal.instantiation.InstantiatorFactory
    import org.gradle.internal.resources.SharedResourceLeaseRegistry
    import org.gradle.internal.service.Provides
    import org.gradle.internal.service.ServiceRegistrationProvider
    import org.gradle.internal.service.scopes.Scope
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.internal.resources.SharedResourceLeaseRegistry> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (SharedResourceLeaseRegistry.java:0)
    Class <org.gradle.internal.resources.TaskExecutionLock> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (TaskExecutionLock.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