Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 970 for Implementation (0.18 sec)

  1. platforms/documentation/docs/src/snippets/java/javaGradlePlugin/kotlin/src/main/java/org/gradle/sample/SimplePlugin.java

    package org.gradle.sample;
    
    import org.gradle.api.Plugin;
    import org.gradle.api.Project;
    
    public class SimplePlugin implements Plugin<Project> {
        public void apply(Project project) {
            // Add plugin implementation here
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 236 bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ManagedCollectionProxyClassGenerator.java

        /**
         * Generates an implementation of the given managed type.
         *
         * <p>The generated type will:</p>
         *
         * <ul>
         *     <li>extend the given implementation class</li>
         *     <li>implement the given public interface</li>
         *     <li>override each public constructor of the given implementation class</li>
         * </ul>
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/Dependencies.java

    /**
     * Universal APIs that are available for all {@code dependencies} blocks.
     *
     * @apiNote This interface is intended to be used to mix-in DSL methods for {@code dependencies} blocks.
     * @implSpec The default implementation of all methods should not be overridden.
     * @implNote Changes to this interface may require changes to the
     * {@link org.gradle.api.internal.artifacts.dsl.dependencies.DependenciesExtensionModule extension module for Groovy DSL} or
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 05:34:03 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/ImplementationHashAware.java

     * limitations under the License.
     */
    
    package org.gradle.internal.classloader;
    
    import org.gradle.internal.hash.HashCode;
    
    /**
     * Mixed into a ClassLoader implementation to allow the implementation hash of a  ClassLoader to be queried
     */
    public interface ImplementationHashAware {
        HashCode getImplementationHash();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 901 bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/FixedExclusiveModeCrossProcessCacheAccess.java

    import java.util.function.Supplier;
    
    import static org.gradle.cache.FileLockManager.LockMode.Exclusive;
    
    /**
     * A {@link CrossProcessCacheAccess} implementation used when a cache is opened with an exclusive lock that is held until the cache is closed. This implementation is simply a no-op for these methods.
     */
    public class FixedExclusiveModeCrossProcessCacheAccess extends AbstractCrossProcessCacheAccess {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 01 12:21:15 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/internal/DefaultSwiftXCTestBinary.java

            super(names, objectFactory, taskDependencyFactory, module, testable, source, configurations, implementation, targetPlatform, toolChain, platformToolProvider, identity);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/DefaultExecutionStateChangeDetector.java

                lastExecution.isSuccessful());
    
            // Capture changes to implementation
    
            // After validation, the current implementations and previous implementations can't be unknown.
            // Moreover, they need to come from an actual Class, not a lambda, since there isn't a way for a unit of work implementation to be a lambda.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/internal/tasks/JvmConstants.java

         */
        public static final String API_CONFIGURATION_NAME = "api";
    
        /**
         * The name of the implementation configuration, where dependencies that are only used internally by
         * a component should be declared.
         *
         * @since 3.4
         */
        public static final String IMPLEMENTATION_CONFIGURATION_NAME = "implementation";
    
        /**
         * The name of the configuration to define the API elements of a component.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. guava/src/com/google/common/cache/CacheLoader.java

       * CacheBuilder#refreshAfterWrite}, or through a call to {@link LoadingCache#refresh}.
       *
       * <p>This implementation synchronously delegates to {@link #load}. It is recommended that it be
       * overridden with an asynchronous implementation when using {@link
       * CacheBuilder#refreshAfterWrite}.
       *
       * <p><b>Note:</b> <i>all exceptions thrown by this method will be logged and then swallowed</i>.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 19 20:20:14 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/ImmutableMapEntry.java

    import javax.annotation.CheckForNull;
    
    /**
     * Implementation of {@code Entry} for {@link ImmutableMap} that adds extra methods to traverse hash
     * buckets for the key and the value. This allows reuse in {@link RegularImmutableMap} and {@link
     * RegularImmutableBiMap}, which don't have to recopy the entries created by their {@code Builder}
     * implementations.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top