Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,511 for Implementation (0.16 sec)

  1. platforms/software/resources/src/main/java/org/gradle/internal/resource/TextResource.java

         *
         * <p>Note that this method may be expensive when {@link #isContentCached()} returns false, depending on the implementation.
         *
         * @return true if this resource exists.
         * @throws ResourceException On failure to check whether resource exists.
         */
        boolean getExists() throws ResourceException;
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/tasks/commandLineOption-optionValues/groovy/buildSrc/src/main/java/UrlProcess.java

    import java.util.ArrayList;
    import java.util.Arrays;
    
    import org.gradle.api.DefaultTask;
    import org.gradle.api.provider.Property;
    import org.gradle.api.tasks.Input;
    import org.gradle.api.tasks.TaskAction;
    // tag::custom-task-implementation[]
    import org.gradle.api.tasks.options.Option;
    import org.gradle.api.tasks.options.OptionValues;
    
    public abstract class UrlProcess extends DefaultTask {
        private String url;
        private OutputType outputType;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/java-library/quickstart/groovy/src/main/java/org/gradle/HttpClientWrapper.java

    // tag::sample[]
    // The following types can appear anywhere in the code
    // but say nothing about API or implementation usage
    import org.apache.commons.lang3.exception.ExceptionUtils;
    import org.apache.http.HttpEntity;
    import org.apache.http.HttpResponse;
    import org.apache.http.HttpStatus;
    import org.apache.http.client.HttpClient;
    import org.apache.http.client.methods.HttpGet;
    
    import java.io.ByteArrayOutputStream;
    import java.io.IOException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/ConnectionVersion4.java

    /**
     * <p>Represents a connection to a Gradle implementation.
     *
     * <p>The following constraints apply to implementations:
     * <ul>
     * <li>Implementations must be thread-safe.
     * <li>Implementations should implement {@link InternalInvalidatableVirtualFileSystemConnection}. This is used by all consumer versions from 6.1.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/ClassLoaderFactory.java

         */
        ClassLoader getIsolatedSystemClassLoader();
    
        /**
         * Creates a ClassLoader implementation which has only the classes from the specified URIs and the Java API visible.
         */
        ClassLoader createIsolatedClassLoader(String name, ClassPath classPath);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. platforms/core-execution/workers/src/main/java/org/gradle/workers/WorkAction.java

     */
    
    package org.gradle.workers;
    
    import javax.inject.Inject;
    
    /**
     * Represents the implementation of a unit of work to be used when submitting work to the
     * {@link WorkerExecutor}.
     *
     * <p>
     *     A work action implementation is an abstract class implementing the {@link #execute()} method.
     *     A minimal implementation may look like this:
     * </p>
     *
     * <pre class='autoTested'>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/SimpleBuildCacheKey.java

        public String getHashCode() {
            return hashCode.toString();
        }
    
        // TODO Provide default implementation
        // TODO Deprecate and move this to BuildCacheKeyInternal
        @Override
        public byte[] toByteArray() {
            return hashCode.toByteArray();
        }
    
        // TODO Provide default implementation
        @Override
        @Deprecated
        @SuppressWarnings("InlineMeSuggester")
        public String getDisplayName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:58 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. 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
    - 21K bytes
    - Viewed (0)
  9. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/MessageSerializer.java

        /**
         * Creates a decoder that reads from the given input stream. Note that the implementation may perform buffering, and may consume any or all of the
         * content from the given input stream.
         */
        Decoder newDecoder(InputStream inputStream);
    
        /**
         * Creates an encoder that writes the given output stream. Note that the implementation may perform buffering.
         */
        FlushableEncoder newEncoder(OutputStream outputStream);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/jvm/internal/DefaultJvmFeature.java

            configurations.getByName(mainSourceSet.getRuntimeClasspathConfigurationName()).extendsFrom(implementation, runtimeOnly);
            // Update the default test suite's source set to extend our "extension" feature's dependency scopes.
            configurations.getByName(JvmConstants.TEST_COMPILE_CLASSPATH_CONFIGURATION_NAME).extendsFrom(implementation);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 21K bytes
    - Viewed (0)
Back to top