Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 118 for Implementation (0.24 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/cache/DefaultCacheConfigurations.java

                }
                getRemoveUnusedEntriesOlderThan().set(providerFromSupplier(daysAgo(removeUnusedEntriesAfterDays)));
            }
        }
    
        /**
         * An implementation of {@link Property} that provides a contextualized error if the value is mutated after finalization.
         */
        private static class ContextualErrorMessageProperty<T> extends DefaultProperty<T> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 20:26:37 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/GroupingProgressLogEventGenerator.java

    import java.util.ArrayList;
    import java.util.LinkedHashMap;
    import java.util.List;
    import java.util.Map;
    import java.util.concurrent.TimeUnit;
    
    /**
     * An {@code org.gradle.logging.internal.OutputEventListener} implementation which generates output events to log the
     * progress of operations.
     *
     * <p>This listener forwards nothing unless it receives periodic {@link UpdateNowEvent} clock events.</p>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 13:28:29 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/AbstractLazyModuleComponentResolveMetadata.java

                return ImmutableList.of();
            }
            return ImmutableList.copyOf(base.getExcludes());
        }
    
        /**
         * Creates a {@link org.gradle.internal.component.model.ConfigurationMetadata} implementation for this component.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:11 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/RegularImmutableMap.java

    import java.util.AbstractMap;
    import java.util.Arrays;
    import java.util.Map.Entry;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A hash-based implementation of {@link ImmutableMap}.
     *
     * @author Louis Wasserman
     */
    @GwtCompatible(serializable = true, emulated = true)
    @ElementTypesAreNonnullByDefault
    final class RegularImmutableMap<K, V> extends ImmutableMap<K, V> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 15 22:32:14 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/MoreExecutors.java

       *
       * Other contributors include Andrew Wright, Jeffrey Hayes, Pat Fisher, Mike Judd.
       */
    
      /**
       * An implementation of {@link ExecutorService#invokeAny} for {@link ListeningExecutorService}
       * implementations.
       */
      @SuppressWarnings({
        "GoodTime", // should accept a java.time.Duration
        "CatchingUnchecked", // sneaky checked exception
      })
      @J2ktIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 39K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/service/scopes/ExecutionGlobalServices.java

                    "groovy",
                    "kotlin"
                ),
                ImmutableSet.of(
                    // Used by a nested bean with action in a task, example:
                    // `NestedInputIntegrationTest.implementation of nested closure in decorated bean is tracked`
                    ConfigureUtil.WrappedConfigureAction.class,
                    // DefaultTestTaskReports used by AbstractTestTask extends this class
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/DefaultCallSiteDecorator.java

                    default:
                        throw new IllegalArgumentException("Unexpected callStrategy " + callStrategy);
                }
            }
    
            /**
             * The default Groovy implementation replaces the entry in the call site array with what it creates based on the call kind. <p>
             *
             * For example, see this code path: <p>
             * <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/AbstractFileCollection.java

            }
    
            @Override
            public Set<FileSystemLocation> create() {
                // TODO - visit the contents of this collection instead.
                // This is just a super simple implementation for now
                Set<File> files = fileCollection.getFiles();
                ImmutableSet.Builder<FileSystemLocation> builder = ImmutableSet.builderWithExpectedSize(files.size());
                for (File file : files) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:50 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/FilteredEntryMultimap.java

    import java.util.List;
    import java.util.Map;
    import java.util.Map.Entry;
    import java.util.Set;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Implementation of {@link Multimaps#filterEntries(Multimap, Predicate)}.
     *
     * @author Jared Levy
     * @author Louis Wasserman
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/extensibility/DefaultConvention.java

            if (plugins == null) {
                plugins = new LinkedHashMap<>();
            }
            return plugins;
        }
    
        @Override
        public DynamicObject getExtensionsAsDynamicObject() {
            // This implementation of Convention doesn't log a deprecation warning
            // because it mixes both extensions and conventions.
            // Instead, the returned object logs a deprecation warning when
            // a convention is actually accessed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 13.7K bytes
    - Viewed (0)
Back to top