Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 967 for demand (0.43 sec)

  1. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/FileLockManager.java

         */
        enum LockMode {
    
            /**
             * On demand, single writer, no readers (on demand exclusive mode).
             * <br><br>
             *
             * Supports processes asking for access. Only one process can access the cache at a time.
             * <br><br>
             *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. platforms/software/signing/src/main/java/org/gradle/plugins/signing/Signature.java

         *
         * <p>The closures will be “evaluated” on demand whenever the value is needed (e.g. at generation time)</p>
         *
         * @param toSign A closure that produces a File for the object to sign (non File return values will be used as the path to the file)
         * @param classifier A closure that produces the classifier to assign to the signature artifact on demand
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 12:20:43 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  3. pkg/workloadapi/workload.proto

    // These resources cannot be looked up on-demand.
    //
    // In some cases, we do not know the IP address of a Service. These services cannot be used for matching
    // outbound traffic, as we only have L4 attributes to route based on. However,
    // they can be used for Gateways.
    // In this case, the key format will be "network/hostname".
    // These resources cannot be looked up on-demand.
    message Address {
      oneof type {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/profile/DefaultProfileActivationContext.java

        @Override
        public List<String> getActiveProfileIds() {
            return activeProfileIds;
        }
    
        /**
         * Sets the identifiers of those profiles that should be activated by explicit demand.
         *
         * @param activeProfileIds The identifiers of those profiles to activate, may be {@code null}.
         * @return This context, never {@code null}.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  5. guava-testlib/src/com/google/common/collect/testing/ListIteratorTester.java

    /**
     * A utility similar to {@link IteratorTester} for testing a {@link ListIterator} against a known
     * good reference implementation. As with {@code IteratorTester}, a concrete subclass must provide
     * target iterators on demand. It also requires three additional constructor parameters: {@code
     * elementsToInsert}, the elements to be passed to {@code set()} and {@code add()} calls; {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. platforms/core-execution/hashing/src/main/java/org/gradle/internal/hash/HashFunction.java

     */
    
    package org.gradle.internal.hash;
    
    import java.io.File;
    import java.io.IOException;
    import java.io.InputStream;
    
    /**
     * Hash function that can create new {@link Hasher}s and {@link PrimitiveHasher}s on demand.
     * Inspired by the Google Guava project – https://github.com/google/guava.
     */
    public interface HashFunction {
        /**
         * Returns the algorithm used for this hashing function.
         */
        String getAlgorithm();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:43:29 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. test/chan/powser1.go

    	d.nam = c
    	return d
    }
    
    func mkdch2() *dch2 {
    	d2 := new(dch2)
    	d2[0] = mkdch()
    	d2[1] = mkdch()
    	return d2
    }
    
    // split reads a single demand channel and replicates its
    // output onto two, which may be read at different rates.
    // A process is created at first demand for a rat and dies
    // after the rat has been sent to both outputs.
    
    // When multiple generations of split exist, the newest
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 22:22:20 UTC 2020
    - 12.7K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ArtifactCollection.java

    import org.gradle.api.provider.Provider;
    
    import java.util.Collection;
    import java.util.Set;
    
    /**
     * A collection of artifacts resolved for a configuration. The configuration is resolved on demand when
     * the collection is queried.
     *
     * @since 3.4
     */
    public interface ArtifactCollection extends Iterable<ResolvedArtifactResult> {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 17 13:05:50 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  9. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java

        /**
         * Gets the identifiers of those profiles that should be activated by explicit demand.
         *
         * @return The identifiers of those profiles to activate, never {@code null}.
         */
        List<String> getActiveProfileIds();
    
        /**
         * Sets the identifiers of those profiles that should be activated by explicit demand.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildTaskExecutionIntegrationTest.groovy

                result.assertTaskExecuted(":app:processResources")
            }
        }
    
        def "can run task from included build that also produces a plugin used from root build when configure on demand is enabled"() {
            setup:
            settingsFile << """
                includeBuild('build-logic')
                include("app")
                include("util")
            """
            def rootDir = file("build-logic")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 12.8K bytes
    - Viewed (0)
Back to top