Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 572 for performGet (0.3 sec)

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

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.cache;
    
    /**
     * Specifies the details of cache cleanup, including the action to be performed and the frequency at which cache cleanup should occur.
     */
    public interface CacheCleanupStrategy {
        CacheCleanupStrategy NO_CLEANUP = new CacheCleanupStrategy() {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 19:10:33 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/internal/ConsumerOperationDescriptor.java

    import org.gradle.tooling.events.OperationDescriptor;
    
    import javax.annotation.Nullable;
    
    /**
     * Implementation of the {@link OperationDescriptor} interface, for those operations which are performed by the consumer.
     */
    public class ConsumerOperationDescriptor implements OperationDescriptor {
        private final String displayName;
    
        public ConsumerOperationDescriptor(String displayName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/concurrent/NamedOperation.groovy

     * limitations under the License.
     */
    
    package org.gradle.test.fixtures.concurrent
    
    import java.util.concurrent.atomic.AtomicReference
    
    /**
     * Represents some operation performed by a test. Has a start and end instant.
     */
    class NamedOperation {
        final String name
        final Instant start
        private final AtomicReference<Instant> end = new AtomicReference<>()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/result/DefaultResolvedComponentResult.java

         * graph to be traversed
         * @param moduleAction an action to be performed on each node (module) in the graph
         * @param dependencyAction an action to be performed on each edge (dependency) in the graph
         * @param visited tracks the visited nodes during the recursive traversal
         */
        public static void eachElement(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/recomp/DefaultIncrementalCompileResult.java

     */
    
    package org.gradle.api.internal.tasks.compile.incremental.recomp;
    
    import org.gradle.api.tasks.WorkResult;
    import org.gradle.workers.internal.DefaultWorkResult;
    
    /**
     * Marks compilation as beeing performed incrementally.
     */
    public class DefaultIncrementalCompileResult extends DefaultWorkResult implements IncrementalCompilationResult {
        private final PreviousCompilationData previousCompilationData;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/CacheCleanupBuildOperationType.java

            /**
             * The number of cache entries deleted during this clean up.
             */
            long getDeletedEntriesCount();
    
            /**
             * The timestamp the last cleanup was performed.
             */
            Instant getPreviousCleanupTime();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:53:17 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/exception/package-info.java

     *
     * Artifact variant selection failures are not represented by a specific exception type, as they are
     * similar to graph selection failures, and the type of failure is more important that the type of
     * resolution being performed in this hierarchy.
     */
    @org.gradle.api.NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/upgrade/plan_test.go

    Configs that have a "yes" mark in the "MANUAL UPGRADE REQUIRED" column require manual config upgrade or
    resetting to kubeadm defaults before a successful upgrade can be performed. The version to manually
    upgrade to is denoted in the "PREFERRED VERSION" column.
    
    API GROUP                 CURRENT VERSION   PREFERRED VERSION   MANUAL UPGRADE REQUIRED
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/attributes/AttributeCompatibilityRule.java

     * mark the producer value as compatible or not.
     * <p>
     * Note that the rule will never receive a {@code CompatibilityCheckDetails} that has {@code equal} consumer and producer
     * values as this check is performed before invoking the rule and assumes compatibility in that case.
     *
     * @since 4.0
     * @param <T> The attribute value type.
     * @see CompatibilityCheckDetails
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/main/java/org/gradle/language/cpp/internal/NativeDependencyCache.java

    /**
     * This is intended to be temporary, until more metadata can be published and the dependency resolution engine can deal with it. As such, it's not particularly performant or robust.
     */
    public class NativeDependencyCache implements Stoppable {
        private final PersistentCache cache;
    
        public NativeDependencyCache(GlobalScopedCacheBuilderFactory cacheBuilderFactory) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top