Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 1,511 for Implementation (0.15 sec)

  1. maven-slf4j-provider/src/main/java/org/apache/maven/slf4j/MavenFailOnSeverityLogger.java

        MavenFailOnSeverityLogger(String name, LogLevelRecorder logLevelRecorder) {
            super(name);
            this.logLevelRecorder = logLevelRecorder;
        }
    
        /**
         * A simple implementation which always logs messages of level WARN
         * according to the format outlined above.
         */
        @Override
        public void warn(String msg) {
            super.warn(msg);
            logLevelRecorder.record(Level.WARN);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 06:36:58 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/validation/DefaultTypeAwareProblemBuilder.java

            if (!problemId.getGroup().equals(GradleCoreProblemGroup.validation().property())) {
                return false;
            } else {
                List<String> candidates = Arrays.asList("unknown-implementation", "unknown-implementation-nested", "implicit-dependency");
                return candidates.contains(problemId.getName());
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/CrossBuildInMemoryCache.java

     */
    @ThreadSafe
    public interface CrossBuildInMemoryCache<K, V> extends Cache<K, V> {
        /**
         * Locates the given entry, using the supplied factory when the entry is not present or has been discarded, to recreate the entry in the cache.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ConfigurationContainer.java

     * in order to get hold of all dependencies (e.g. jars, but only)
     * <pre class='autoTested'>
     *   plugins {
     *       id 'java' //so that I can use 'implementation', 'compileClasspath' configuration
     *   }
     *
     *   dependencies {
     *       implementation 'org.slf4j:slf4j-api:1.7.26'
     *   }
     *
     *   //copying all dependencies attached to 'compileClasspath' into a specific folder
     *   task copyAllDependencies(type: Copy) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/hash/Fingerprint2011.java

    /**
     * Implementation of Geoff Pike's fingerprint2011 hash function. See {@link Hashing#fingerprint2011}
     * for information on the behaviour of the algorithm.
     *
     * <p>On Intel Core2 2.66, on 1000 bytes, fingerprint2011 takes 0.9 microseconds compared to
     * fingerprint at 4.0 microseconds and md5 at 4.5 microseconds.
     *
     * <p>Note to maintainers: This implementation relies on signed arithmetic being bit-wise equivalent
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Dec 28 17:50:25 UTC 2021
    - 6.5K bytes
    - Viewed (0)
  6. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/registry/ComponentTypeModelRuleExtractor.java

            validateInternalViewsAreInterfaces(builder);
    
            Class<?> implementation = builder.getDefaultImplementation();
            if (implementation == null) {
                return null;
            }
    
            return ModelType.of(implementation);
        }
    
        private void validateInternalViewsAreInterfaces(TypeBuilderInternal<?> builder) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/process/internal/worker/DefaultWorkerProblemProtocol.java

    import org.gradle.internal.operations.OperationIdentifier;
    import org.gradle.process.internal.worker.problem.WorkerProblemProtocol;
    
    /**
     * Default daemon-side implementation of {@link WorkerProblemProtocol}.
     * <p>
     * This implementation will take care of reporting problems received from the worker.
     */
    @NonNullApi
    public class DefaultWorkerProblemProtocol implements WorkerProblemProtocol {
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:26:04 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. android/guava-testlib/src/com/google/common/collect/testing/IteratorTester.java

    import java.util.Collections;
    import java.util.Iterator;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A utility for testing an Iterator implementation by comparing its behavior to that of a "known
     * good" reference implementation. In order to accomplish this, it's important to test a great
     * variety of sequences of the {@link Iterator#next}, {@link Iterator#hasNext} and {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/SortedMultisets.java

     *
     * @author Louis Wasserman
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    final class SortedMultisets {
      private SortedMultisets() {}
    
      /** A skeleton implementation for {@link SortedMultiset#elementSet}. */
      @SuppressWarnings("JdkObsolete") // TODO(b/6160855): Switch GWT emulations to NavigableSet.
      static class ElementSet<E extends @Nullable Object> extends Multisets.ElementSet<E>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 01 17:18:04 UTC 2021
    - 5.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/FuturesGetChecked.java

      static <V extends @Nullable Object, X extends Exception> V getChecked(
          Future<V> future, Class<X> exceptionClass) throws X {
        return getChecked(bestGetCheckedTypeValidator(), future, exceptionClass);
      }
    
      /** Implementation of {@link Futures#getChecked(Future, Class)}. */
      @CanIgnoreReturnValue
      @VisibleForTesting
      @ParametricNullness
      static <V extends @Nullable Object, X extends Exception> V getChecked(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top