Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 705 for Implementation (0.35 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ValidateStep.java

                @Override
                public void visitImplementation(Class<?> implementation) {
                    workClass.set(GeneratedSubclasses.unpack(implementation));
                }
    
                @Override
                public void visitImplementation(ImplementationSnapshot implementation) {
                }
            });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/InstrumentingClassLoader.java

         * @param classfileBuffer the buffer that contains class implementation bytes in class file format - must not be modified
         * @return new class implementation bytes in class file format or {@code null} to continue loading the original implementation
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransformRegistrationFactory.java

        @Override
        public TransformRegistration create(ImmutableAttributes from, ImmutableAttributes to, Class<? extends TransformAction<?>> implementation, @Nullable TransformParameters parameterObject) {
            TypeMetadata actionMetadata = actionMetadataStore.getTypeMetadata(implementation);
            boolean cacheable = implementation.isAnnotationPresent(CacheableTransform.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 11:18:50 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/CrossBuildInMemoryCacheFactory.java

    import javax.annotation.concurrent.ThreadSafe;
    import java.util.function.Predicate;
    
    /**
     * A factory for {@link CrossBuildInMemoryCache} instances.
     *
     * Note that this implementation should only be used to create global scoped services.
     * Note that this implementation currently retains strong references to keys and values during the whole lifetime of a build session.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/model/ObjectFactory.java

         *     <li>Must provide a zero-args constructor that is not private.</li>
         *     <li>Must not define or inherit any instance fields.</li>
         *     <li>Should not provide an implementation for {@link Named#getName()} and should define this method as abstract. Any implementation will be overridden.</li>
         *     <li>Must not define or inherit any other abstract methods.</li>
         * </ul>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactory.java

    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.List;
    import java.util.function.Function;
    
    /**
     * Constructs the application and implementation classpaths for a test process,
     * while also optionally loading test framework implementation dependencies from
     * the distribution.
     *
     * @see ForkedTestClasspath
     */
    public class ForkedTestClasspathFactory {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/internal/DefaultToolchainSpec.java

            private final JvmVendorSpec vendor;
            private final JvmImplementation implementation;
    
            public Key(@Nullable JavaLanguageVersion languageVersion, @Nullable JvmVendorSpec vendor, @Nullable JvmImplementation implementation) {
                this.languageVersion = languageVersion;
                this.vendor = vendor;
                this.implementation = implementation;
            }
    
            @Override
            public boolean equals(Object o) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 18:07:00 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/ServiceScopeValidator.java

            return String.format(
                "The service implementation '%s' is registered in the '%s' scope but does not declare it explicitly.\n" +
                    "The implementation appears to serve %s.\n" +
                    "Try the following:\n" +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:17 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/Language.java

     * This extensible enum has two defined values, {@link #NONE} and {@link #JAVA_FAMILY},
     * but can be extended by registering a {@code org.apache.maven.api.spi.LanguageProvider}.
     * <p>
     * Implementation must have {@code equals()} and {@code hashCode()} implemented, so implementations of this interface
     * can be used as keys.
     *
     * @since 4.0.0
     */
    @Experimental
    @Immutable
    @SuppressWarnings("checkstyle:InterfaceIsType")
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 05 09:42:51 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/testing/ArbitraryInstances.java

              .build();
    
      /**
       * type → implementation. Inherently mutable interfaces and abstract classes are mapped to their
       * default implementations and are "new"d upon get().
       */
      private static final ConcurrentMap<Class<?>, Class<?>> implementations = Maps.newConcurrentMap();
    
      private static <T> void setImplementation(Class<T> type, Class<? extends T> implementation) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 20.5K bytes
    - Viewed (0)
Back to top