Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 188 for holder (0.11 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/DefaultRootComponentMetadataBuilder.java

            LocalComponentGraphResolveState state = holder.tryCached(componentIdentifier);
            if (state == null) {
                state = createComponentState(module, componentIdentifier);
                holder.cache(state, shouldCacheResolutionState());
            }
            return state;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/locklistener/DefaultFileLockContentionHandler.java

     * <ul>
     *     <li>One Lock Holder</li>
     *     <li>One or more Lock Requester</li>
     * </ul>
     * The general strategy is that the Lock Holder keeps locks open as long as there is no Lock Requester. This is,
     * because each lock open/close action requires File I/O which is expensive.
     * <p>
     * The Lock Owner will inform this contention handler that it holds the lock via {@link #start(long, Consumer)}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/integTest/groovy/org/gradle/cache/internal/DefaultFileLockManagerContentionIntegrationTest.groovy

                    }
                }
    
                tasks.register("lock", FileLocker)
            """
        }
    
        def cleanup() {
            socketReceiverThread?.terminate = true
        }
    
        def "the lock holder is not hammered with ping requests for the shared lock"() {
            given:
            setupLockOwner()
            def pingRequestCount = 0
            //do not handle requests: this simulates the situation were pings do not arrive
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/CollectSpliterators.java

          @CheckForNull T holder = null;
    
          @Override
          public void accept(@ParametricNullness T t) {
            this.holder = t;
          }
    
          @Override
          public boolean tryAdvance(Consumer<? super T> action) {
            while (fromSpliterator.tryAdvance(this)) {
              try {
                // The cast is safe because tryAdvance puts a T into `holder`.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 18:19:31 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbClient.java

            final SmbAuthenticationHolder holder = new SmbAuthenticationHolder();
            final SmbAuthentication[] smbAuthentications =
                    getInitParameter(SMB_AUTHENTICATIONS_PROPERTY, new SmbAuthentication[0], SmbAuthentication[].class);
            if (smbAuthentications != null) {
                for (final SmbAuthentication smbAuthentication : smbAuthentications) {
                    holder.add(smbAuthentication);
                }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 23 01:54:10 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/ingress/controller.go

    // -
    
    var schemas = collection.SchemasFor(
    	collections.VirtualService,
    	collections.Gateway)
    
    // Control needs RBAC permissions to write to Pods.
    
    type controller struct {
    	meshWatcher  mesh.Holder
    	domainSuffix string
    
    	queue                  controllers.Queue
    	virtualServiceHandlers []model.EventHandler
    	gatewayHandlers        []model.EventHandler
    
    	mutex sync.RWMutex
    	// processed ingresses
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/aggregate/controller.go

    	_ model.ServiceDiscovery    = &Controller{}
    	_ model.AggregateController = &Controller{}
    )
    
    // Controller aggregates data across different registries and monitors for changes
    type Controller struct {
    	meshHolder mesh.Holder
    
    	// The lock is used to protect the registries and controller's running status.
    	storeLock  sync.RWMutex
    	registries []*registryEntry
    	// indicates whether the controller has run.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultValueSourceProviderFactory.java

            public final Class<P> parametersType;
    
            @Nullable
            public final P parameters;
    
            private final CalculatedValue<@org.jetbrains.annotations.Nullable T> value;
            // A temporary holder for the source used to obtain the value.
            // This is sent to observers alongside the actual value by a single thread.
            // The thread then clears the reference to save memory.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:25 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

    modification follow.
    
    TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
    
    0. This License applies to any program or other work which contains a
    notice placed by the copyright holder saying it may be distributed under
    the terms of this General Public License. The "Program", below, refers
    to any such program or work, and a "work based on the Program" means
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/cache/Striped64.java

       * contention. See above for explanation. This method suffers the usual non-modularity problems of
       * optimistic retry code, relying on rechecked sets of reads.
       *
       * @param x the value
       * @param hc the hash code holder
       * @param wasUncontended false if CAS failed before call
       */
      final void retryUpdate(long x, @CheckForNull int[] hc, boolean wasUncontended) {
        int h;
        if (hc == null) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top