Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for ResourceLock (0.15 sec)

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

    import org.gradle.api.services.BuildServiceParameters;
    import org.gradle.api.services.BuildServiceRegistration;
    import org.gradle.api.services.BuildServiceRegistry;
    import org.gradle.internal.resources.ResourceLock;
    import org.gradle.internal.resources.SharedResource;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    import javax.annotation.Nullable;
    import java.util.List;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/resources/ResourceLockRegistry.java

    package org.gradle.internal.resources;
    
    import java.util.Collection;
    
    public interface ResourceLockRegistry {
        /**
         * Get all of the resource locks held by the current thread.
         */
        Collection<? extends ResourceLock> getResourceLocksByCurrentThread();
    
        /**
         * Returns true if the registry has any locks that are being held by a thread.
         *
         * @return true if any locks in the registry are currently held.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/resources/ProjectLockRegistry.java

            allProjectsLocks = new LockCache<Path, AllProjectsLock>(coordinationService, this);
        }
    
        public boolean getAllowsParallelExecution() {
            return parallelEnabled;
        }
    
        public ResourceLock getAllProjectsLock(final Path buildIdentityPath) {
            return allProjectsLocks.getOrRegisterResourceLock(buildIdentityPath, new ResourceLockProducer<Path, AllProjectsLock>() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/resources/SharedResource.java

     */
    
    package org.gradle.internal.resources;
    
    public interface SharedResource {
        /**
         * @return The maximum usage, or -1 when there is no limit.
         */
        int getMaxUsages();
    
        ResourceLock getResourceLock();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 834 bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/resources/AbstractTrackedResourceLock.java

     * limitations under the License.
     */
    
    package org.gradle.internal.resources;
    
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    public abstract class AbstractTrackedResourceLock implements ResourceLock {
        private static final Logger LOGGER = LoggerFactory.getLogger(AbstractTrackedResourceLock.class);
    
        private final String displayName;
    
        private final ResourceLockCoordinationService coordinationService;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. staging/publishing/import-restrictions.yaml

    - baseImportPath: "./staging/src/k8s.io/client-go/tools"
      excludeTests: true
      ignoredSubTrees:
      - "./staging/src/k8s.io/client-go/tools/cache/testing"
      - "./staging/src/k8s.io/client-go/tools/leaderelection/resourcelock"
      - "./staging/src/k8s.io/client-go/tools/portforward"
      - "./staging/src/k8s.io/client-go/tools/record"
      - "./staging/src/k8s.io/client-go/tools/events"
      - "./staging/src/k8s.io/client-go/tools/reference"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 13:13:22 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top