Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,203 for Implementation (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/documentation/docs/src/snippets/publishing/javaLibrary/kotlin/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)
  5. 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)
  6. subprojects/core-api/src/main/java/org/gradle/api/plugins/jvm/PlatformDependencyModifiers.java

         *
         * @implSpec Do not implement this method. Gradle generates the implementation automatically.
         *
         * @see PlatformDependencyModifiers.PlatformDependencyModifier#modifyImplementation(ModuleDependency)
         */
        @Nested
        PlatformDependencyModifier getPlatform();
    
        /**
         * Implementation for the platform dependency modifier.
         *
         * @see #modifyImplementation(ModuleDependency)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 22 04:12:21 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  7. platforms/jvm/language-jvm/src/main/java/org/gradle/api/plugins/jvm/TestFixturesDependencyModifiers.java

         *
         * @return the dependency modifier
         * @implSpec Do not implement this method. Gradle generates the implementation automatically.
         *
         * @see TestFixturesDependencyModifier#modifyImplementation(ModuleDependency)
         */
        @Nested
        TestFixturesDependencyModifier getTestFixtures();
    
        /**
         * Implementation for the test fixtures dependency modifier.
         *
         * @since 8.0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. maven-embedder/src/main/java/org/apache/maven/cli/logging/Slf4jConfiguration.java

     * under the License.
     */
    package org.apache.maven.cli.logging;
    
    /**
     * Interface for configuration operations on loggers, which are not available in slf4j, then require per-slf4f-binding
     * implementation.
     *
     * @since 3.1.0
     */
    public interface Slf4jConfiguration {
        /**
         * Level
         */
        enum Level {
            DEBUG,
            INFO,
            ERROR
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. 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)
  10. subprojects/core-api/src/main/java/org/gradle/api/file/CopyProcessingSpec.java

        /**
         * Returns the Unix permissions to use for the target files. {@code null} means that existing
         * permissions are preserved. It is dependent on the copy action implementation whether these permissions
         * will actually be applied.
         *
         * @return The file permissions, or {@code null} if existing permissions should be preserved.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 07:53:18 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top