Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 970 for Implementation (0.31 sec)

  1. guava/src/com/google/common/base/PatternCompiler.java

       */
      @RestrictedApi(
          explanation = "PatternCompiler is an implementation detail of com.google.common.base",
          allowedOnPath = ".*/com/google/common/base/.*")
      CommonPattern compile(String pattern);
    
      /**
       * Returns {@code true} if the regex implementation behaves like Perl -- notably, by supporting
       * possessive quantifiers but also being susceptible to catastrophic backtracking.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Platform.java

    final class Platform {
      /** Returns the platform preferred implementation of a map based on a hash table. */
      static <K extends @Nullable Object, V extends @Nullable Object>
          Map<K, V> newHashMapWithExpectedSize(int expectedSize) {
        return CompactHashMap.createWithExpectedSize(expectedSize);
      }
    
      /**
       * Returns the platform preferred implementation of an insertion ordered map based on a hash
       * table.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/root/RootLocator.java

     * One notable exception is the computation of the early {@code session.rootDirectory}
     * property which happens very early.  The implementation used in this case
     * will be discovered using the JDK service mechanism.
     *
     * The default implementation will look for a {@code .mvn} child directory
     * or a {@code pom.xml} containing the {@code root="true"} attribute.
     *
     * @see DefaultRootLocator
     */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 20 10:58:12 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/HashMultiset.java

    import com.google.common.annotations.GwtIncompatible;
    import com.google.common.annotations.J2ktIncompatible;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Multiset implementation that uses hashing for key and entry access.
     *
     * @author Kevin Bourrillion
     * @author Jared Levy
     * @since 2.0
     */
    @GwtCompatible(serializable = true, emulated = true)
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/IvyLoggingAdaper.java

            log(msg, level);
        }
    
        /**
         * Overrides the default implementation, which doesn't delegate to {@link #log(String, int)}.
         */
        @Override
        public void warn(String msg) {
            logger.warn(msg);
        }
    
        /**
         * Overrides the default implementation, which doesn't delegate to {@link #log(String, int)}.
         */
        @Override
        public void error(String msg) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/internal/metaobject/DynamicObject.java

     *
     * The semantics of each method is completely up to the implementation. For example, {@link BeanDynamicObject}
     * provides a dynamic view of the functionality of an object and does not provide any decoration or extra functionality.
     * The {@link org.gradle.internal.extensibility.ExtensibleDynamicObject} implementation on the other hand does provide extra functionality.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 11:50:19 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/ComponentSpecIdentifier.java

        /**
         * The base name of this component.
         */
        String getName();
    
        /**
         * A path that uniquely identifies this component within its project.
         *
         * Implementation should attempt to produce human consumable identifiers.
         */
        Path getPath();
    
        /**
         * Returns a child of this component, with the given name.
         */
        ComponentSpecIdentifier child(String name);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/ForwardingMapEntry.java

     * should override {@code equals} as well, either providing your own implementation, or delegating
     * to the provided {@code standardEquals} method.
     *
     * <p>Each of the {@code standard} methods, where appropriate, use {@link Objects#equal} to test
     * equality for both keys and values. This may not be the desired behavior for map implementations
     * that use non-standard notions of key equality, such as the entry of a {@code SortedMap} whose
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 19 19:28:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/ApplicationClassesInSystemClassLoaderWorkerImplementationFactory.java

     *                    (shared packages)
     *                             |
     *                             |
     *                       implementation
     *          (SystemApplicationClassLoaderWorker, logging)
     *     (ActionExecutionWorker + worker action implementation)
     * </pre>
     */
    public class ApplicationClassesInSystemClassLoaderWorkerImplementationFactory {
        private final ClassPathRegistry classPathRegistry;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 10:09:51 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/IndexedCache.java

         * A shared or exclusive file lock is held while fetching the value, depending on implementation.
         *
         * @return The value, or null if no value associated with the key.
         */
        @Override
        @Nullable
        V getIfPresent(K key);
    
        /**
         * Returns the value mapped to the given key, producing the value if not present.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top