Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 296 for Implementation (0.2 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/text/TreeFormatter.java

        }
    
        public void blankLine() {
            node("");
        }
    
        /**
         * Starts a new node with the given type name.
         */
        public TreeFormatter node(Class<?> type) {
            // Implementation is currently dumb, can be made smarter
            if (type.isInterface()) {
                node("Interface ");
            } else {
                node("Class ");
            }
            appendType(type);
            return this;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/reflect/Types.java

       * to custom TypeVariable implementations. As a result, we need to make sure our TypeVariable
       * implementation respects symmetry. Moreover, we don't want to reconstruct a native type variable
       * {@code <A>} using our implementation unless some of its bounds have changed in resolution. This
       * avoids creating unequal TypeVariable implementation unnecessarily. When the bounds do change,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

    /**
     * The concurrent hash map implementation built by {@link MapMaker}.
     *
     * <p>This implementation is heavily derived from revision 1.96 of <a
     * href="http://tinyurl.com/ConcurrentHashMap">ConcurrentHashMap.java</a>.
     *
     * @param <K> the type of the keys in the map
     * @param <V> the type of the values in the map
     * @param <E> the type of the {@link InternalEntry} entry implementation used internally
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/api/services/model/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.
     */
    public interface RootLocator {
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/problem/WorkerProblemEmitter.java

    import org.gradle.api.problems.internal.Problem;
    import org.gradle.api.problems.internal.ProblemEmitter;
    import org.gradle.internal.operations.OperationIdentifier;
    
    import javax.annotation.Nullable;
    
    /**
     * Worker-side implementation of {@link ProblemEmitter}.
     * <p>
     * This emitter will use the {@link WorkerProblemProtocol} to communicate problems to the daemon.
     */
    @NonNullApi
    public class WorkerProblemEmitter implements ProblemEmitter {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/ListenerService.java

    import java.lang.annotation.Inherited;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Attached to a service implementation to indicate that the instance should be registered as a listener.
     *
     * <p>Generally, it is better to use {@link StatefulListener}, which is lazy and applies some validation to ensure no events are missed.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/ImmutableSet.java

       * ImmutableEnumSet/ImmutableSortedSet, regardless of implementation type. It
       * captures their "logical contents" and they are reconstructed using public
       * static factories. This is necessary to ensure that the existence of a
       * particular implementation type is an implementation detail.
       */
      @J2ktIncompatible // serialization
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/initialization/ClassLoaderRegistry.java

         */
        ClassLoader getGradleApiClassLoader();
    
        /**
         * Returns the implementation class loader for the Gradle core.
         */
        ClassLoader getRuntimeClassLoader();
    
        /**
         * Returns the implementation class loader for the built-in plugins.
         */
        ClassLoader getPluginsClassLoader();
    
        /**
         * Just the Gradle core API, no core plugins.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top