Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,511 for Implementation (0.2 sec)

  1. android/guava/src/com/google/common/collect/Multiset.java

       * any {@code Entry} instances already retrieved from the entry set (this is
       * implementation-dependent). Furthermore, implementations are not required to support
       * modifications to the entry set at all, and the {@code Entry} instances themselves don't even
       * have methods for modification. See the specific implementation class for more details on how
       * its entry set handles modifications.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/configuration/ScriptPluginFactorySelector.java

     * on its file name. Build script file names ending in ".gradle" are supported by the
     * {@link DefaultScriptPluginFactory}. Other files are delegated to the first available
     * matching implementation of the {@link ScriptingLanguage} SPI. If no provider
     * implementations matches for a given file name, handling falls back to the
     * {@link DefaultScriptPluginFactory}. This approach allows users to name build scripts
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 07:44:44 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/typeregistration/InstanceFactory.java

        Set<ModelType<? extends T>> getSupportedTypes();
    
        /**
         * Return information about the implementation of an unmanaged type.
         */
        @Nullable
        <S extends T> ImplementationInfo getImplementationInfo(ModelType<S> publicType);
    
        /**
         * Return information about the implementation of a managed type with an unmanaged super-type.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/TestFramework.java

         * also included in the implementation classpath.
         *
         * @see #getUseDistributionDependencies()
         */
        @Internal
        default List<TestFrameworkDistributionModule> getWorkerApplicationModulepathModules() {
            return Collections.emptyList();
        }
    
        /**
         * Returns a list of distribution modules that the test worker requires on implementation the classpath.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/DefaultTypeValidationContext.java

            }
            problems.add(problem);
        }
    
        public ImmutableList<Problem> getProblems() {
            return problems.build();
        }
    
        public static void throwOnProblemsOf(Class<?> implementation, ImmutableList<Problem> validationMessages) {
            if (!validationMessages.isEmpty()) {
                String formatString = validationMessages.size() == 1
                    ? "A problem was found with the configuration of %s."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/bean/DefaultPropertyWalker.java

                        ImplementationValue implementation = implementationResolver.resolveImplementation(value);
                        visitor.visitInputProperty(qualifiedName, new ImplementationPropertyValue(implementation), false);
                    } else if (!propertyMetadata.isAnnotationPresent(Optional.class)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/tasks/util/internal/PatternSpecFactory.java

    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    
    /**
     * The basic implementation for converting {@link PatternSet}s to {@link Spec}s.
     * This implementation only caches the default exclude patterns, as these are always
     * used, no matter which other includes and excludes a {@link PatternSet} has. For an
     * implementation that caches all other patterns as well, see {@link CachingPatternSpecFactory}.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top