Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,052 for Implementation (0.58 sec)

  1. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/package-info.java

    // CHECKSTYLE_OFF: RegexpHeader
    /**
     * Contains implementation of the {@link org.apache.maven.api.xml.XmlNode} interface and related classes.
     */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 03 15:52:23 UTC 2023
    - 185 bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/AbstractArchiveFileTreeElement.java

    import java.io.File;
    import java.util.concurrent.atomic.AtomicBoolean;
    
    /**
     * An implementation of {@link org.gradle.api.file.FileTreeElement FileTreeElement} meant
     * for use with archive files when subclassing {@link org.gradle.api.internal.file.AbstractFileTree AbstractFileTree}.
     * <p>
     * This implementation extracts the files from the archive to the supplied expansion directory.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 31 20:39:17 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/dispatch/Dispatch.java

    /**
     * A general purpose sink for a stream of messages.
     *
     * <p>Implementations are not required to be thread-safe.
     */
    public interface Dispatch<T> {
        /**
         * Dispatches the next message. Blocks until the messages has been accepted but generally does not wait for the
         * message to be processed. Delivery guarantees are implementation specific.
         *
         * @param message The message.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/java/javaGradlePlugin/groovy/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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top