Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 970 for Implementation (0.23 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/JavaToolchainRepository.java

    import org.gradle.api.artifacts.repositories.AuthenticationSupported;
    import org.gradle.api.provider.Property;
    
    /**
     * Named configuration of {@link JavaToolchainResolver} implementations,
     * identified by their implementation class.
     * <p>
     * The implementation class is the only mandatory property (it identifies
     * the {@link JavaToolchainResolver} being configured; the name is arbitrary,
     * chosen by the build author).
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 28 16:17:59 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/Parameter.java

            this.requirement = requirement;
        }
    
        public String getImplementation() {
            return implementation;
        }
    
        public void setImplementation(String implementation) {
            this.implementation = implementation;
        }
    
        public String getSince() {
            return since;
        }
    
        public void setSince(String since) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/tasks/commandLineOption-stringOption/groovy/buildSrc/src/main/java/UrlVerify.java

    import org.gradle.api.DefaultTask;
    import org.gradle.api.tasks.Input;
    import org.gradle.api.tasks.TaskAction;
    // tag::custom-task-implementation[]
    import org.gradle.api.tasks.options.Option;
    
    public class UrlVerify extends DefaultTask {
        private String url;
    
        @Option(option = "url", description = "Configures the URL to be verified.")
        public void setUrl(String url) {
            this.url = url;
        }
    
        @Input
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 665 bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/cache/AbstractLoadingCache.java

    import java.util.concurrent.ExecutionException;
    
    /**
     * This class provides a skeletal implementation of the {@code Cache} interface to minimize the
     * effort required to implement this interface.
     *
     * <p>To implement a cache, the programmer needs only to extend this class and provide an
     * implementation for the {@link #get(Object)} and {@link #getIfPresent} methods. {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Aug 06 17:12:03 UTC 2022
    - 2.7K bytes
    - Viewed (0)
Back to top