Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,513 for Implementation (0.15 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/ManagedImplSchema.java

     */
    
    package org.gradle.model.internal.manage.schema;
    
    /**
     * The schema for a fully managed element. This means that we have control over all aspects of the lifecycle of the element: the actual
     * implementation of the element, plus the implementation and instantiation of views for the instance.
     */
    public interface ManagedImplSchema<T> extends ModelSchema<T> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 979 bytes
    - Viewed (0)
  2. 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)
  3. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/Invocation.java

            return pos < getArgsCount() ? getArgument(pos) : null;
        }
    
        /**
         * Forwards the call to the original Groovy implementation and returns the result.
         *
         * @return the value produced by the original Groovy implementation
         * @throws Throwable if the original Groovy implementation throws
         */
        Object callOriginal() throws Throwable;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 08 05:57:27 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  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/native/language-native/src/main/java/org/gradle/language/ComponentDependencies.java

    import org.gradle.api.Action;
    import org.gradle.api.artifacts.ExternalModuleDependency;
    
    /**
     * Allows the implementation dependencies of a component to be specified.
     *
     * @since 4.6
     */
    public interface ComponentDependencies {
        /**
         * Adds an implementation dependency to this component. An implementation dependency is not visible to consumers that are compiled against this component.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/AbstractInputExecutionState.java

        ) {
            this.implementation = implementation;
            this.additionalImplementations = additionalImplementations;
            this.inputProperties = inputProperties;
            this.inputFileProperties = inputFileProperties;
        }
    
        @Override
        public ImplementationSnapshot getImplementation() {
            return implementation;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:29 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/ForwardingSortedMap.java

     * override {@code putAll} as well, either providing your own implementation, or delegating to the
     * provided {@code standardPutAll} method.
     *
     * <p><b>{@code default} method warning:</b> This class does <i>not</i> forward calls to {@code
     * default} methods. Instead, it inherits their default implementations. When those implementations
     * invoke methods, they invoke methods on the {@code ForwardingSortedMap}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/publishing/javaLibrary/groovy/src/main/java/org/gradle/HttpClientWrapper.java

    // but say nothing about API or implementation usage
    import org.apache.commons.httpclient.*;
    import org.apache.commons.httpclient.methods.*;
    import org.apache.commons.lang3.exception.ExceptionUtils;
    import java.io.IOException;
    import java.io.UnsupportedEncodingException;
    
    public class HttpClientWrapper {
    
        private final HttpClient client; // private member: implementation details
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top