Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 134 for HOLDER (0.18 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. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultModelRepositoryHolder.java

        }
    
        protected DefaultModelRepositoryHolder(DefaultModelRepositoryHolder holder) {
            this.session = holder.session;
            this.repositoryMerging = holder.repositoryMerging;
            this.pomRepositories = List.copyOf(holder.pomRepositories);
            this.externalRepositories = List.copyOf(holder.externalRepositories);
            this.repositories = List.copyOf(holder.repositories);
        }
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/collect/ImmutableMultimapTest.java

        ImmutableMultimap.Builder<String, Integer> builder = new Builder<>();
        final StringHolder holder = new StringHolder();
        holder.string = "one";
        Entry<String, Integer> entry =
            new AbstractMapEntry<String, Integer>() {
              @Override
              public String getKey() {
                return holder.string;
              }
    
              @Override
              public Integer getValue() {
                return 1;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomComponentBinariesIntegrationTest.groovy

                    @Model
                    BinariesHolder holder() {
                        return new BinariesHolder()
                    }
    
                    @ComponentBinaries
                    void createBinariesForSampleLibrary(ModelMap<SampleBinary> binaries, SampleLibrary library, BinariesHolder holder) {
                        holder.binaries = binaries
                    }
    
                    @Mutate
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  5. platforms/software/security/src/testFixtures/groovy/org/gradle/security/fixtures/SigningFixtures.groovy

    class SigningFixtures {
    
        static PgpSignatory getValidSignatory() {
            Holder.VALID_KEYRING.signatory
        }
    
        static PGPPublicKey getValidPublicKey() {
            Holder.VALID_KEYRING.publicKey
        }
    
        static PGPSecretKey getValidSecretKey() {
            Holder.VALID_KEYRING.secretKey
        }
    
        static String getValidPassword() {
            Holder.VALID_KEYRING.password
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  6. licenses/github.com/antlr/antlr4/runtime/Go/antlr/v4/LICENSE

        this list of conditions and the following disclaimer in the documentation
        and/or other materials provided with the distribution.
    
        3. Neither the name of the copyright holder nor the names of its
        contributors may be used to endorse or promote products derived from this
        software without specific prior written permission.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 07 01:52:04 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/DefaultMemoryManager.java

            }
        }
    
        @Override
        public void addMemoryHolder(MemoryHolder holder) {
            synchronized (holdersLock) {
                holders.add(holder);
            }
        }
    
        @Override
        public void removeMemoryHolder(MemoryHolder holder) {
            synchronized (holdersLock) {
                holders.remove(holder);
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. src/net/sock_posix.go

    	// This function makes a network file descriptor for the
    	// following applications:
    	//
    	// - An endpoint holder that opens a passive stream
    	//   connection, known as a stream listener
    	//
    	// - An endpoint holder that opens a destination-unspecific
    	//   datagram connection, known as a datagram listener
    	//
    	// - An endpoint holder that opens an active stream or a
    	//   destination-specific datagram connection, known as a
    	//   dialer
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/locklistener/DefaultFileLockContentionHandler.java

     * Several processes might request the same lock at the same time. In such a situation, there is:
     * <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>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  10. pkg/apis/coordination/types.go

    	// spec contains the specification of the Lease.
    	// +optional
    	Spec LeaseSpec
    }
    
    // LeaseSpec is a specification of a Lease.
    type LeaseSpec struct {
    	// holderIdentity contains the identity of the holder of a current lease.
    	// +optional
    	HolderIdentity *string
    	// leaseDurationSeconds is a duration that candidates for a lease need
    	// to wait to force acquire it. This is measure against time of last
    	// observed renewTime.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 16 16:45:58 UTC 2022
    - 1.9K bytes
    - Viewed (0)
Back to top