Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,046 for Implementation (0.41 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. guava/src/com/google/common/collect/Platform.java

    final class Platform {
    
      /** Returns the platform preferred implementation of a map based on a hash table. */
      static <K extends @Nullable Object, V extends @Nullable Object>
          Map<K, V> newHashMapWithExpectedSize(int expectedSize) {
        return Maps.newHashMapWithExpectedSize(expectedSize);
      }
    
      /**
       * Returns the platform preferred implementation of an insertion ordered map based on a hash
       * table.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/Serializer.java

     * limitations under the License.
     */
    package org.gradle.internal.serialize;
    
    import java.io.EOFException;
    
    public interface Serializer<T> {
        /**
         * Reads the next object from the given stream. The implementation must not perform any buffering, so that it reads only those bytes from the input stream that are
         * required to deserialize the next object.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/java-library/quickstart/kotlin/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)
  8. platforms/jvm/plugins-application/src/main/java/org/gradle/api/tasks/application/CreateStartScripts.java

     *   void generateScript(JavaAppStartScriptGenerationDetails details, Writer destination) {
     *     // implementation
     *   }
     * }
     *
     * class CustomWindowsStartScriptGenerator implements ScriptGenerator {
     *   void generateScript(JavaAppStartScriptGenerationDetails details, Writer destination) {
     *     // implementation
     *   }
     * }
     * </pre>
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/DefaultValueSnapshotter.java

            @Override
            public ValueSnapshot implementationValue(String implementationClassIdentifier, Object implementation) {
                return ImplementationSnapshot.of(
                    implementationClassIdentifier,
                    implementation,
                    classLoaderHasher.getClassLoaderHash(implementation.getClass().getClassLoader()));
            }
    
            @Override
            public ValueSnapshot fileValue(File value) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 20:22:01 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ForwardingSortedMultiset.java

        return delegate().descendingMultiset();
      }
    
      /**
       * A skeleton implementation of a descending multiset view. Normally, {@link
       * #descendingMultiset()} will not reflect any changes you make to the behavior of methods such as
       * {@link #add(Object)} or {@link #pollFirstEntry}. This skeleton implementation correctly
       * delegates each of its operations to the appropriate methods of this {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 23 18:43:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top