Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for implementMe (0.22 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorTest.java

        }
    
        public static abstract class AbstractClassWithConcreteTypeParameter implements InterfaceWithTypeParameter<Number> {
            public String doSomething() {
                Number thing = getThing();
                return String.valueOf(thing);
            }
        }
    
        public static abstract class AbstractClassWithParameterizedTypeParameter implements InterfaceWithTypeParameter<List<Number>> {
            public String doSomething() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 74.6K bytes
    - Viewed (0)
  2. src/database/sql/driver/driver.go

    }
    
    // Execer is an optional interface that may be implemented by a [Conn].
    //
    // If a [Conn] implements neither [ExecerContext] nor [Execer],
    // the [database/sql.DB.Exec] will first prepare a query, execute the statement,
    // and then close the statement.
    //
    // Exec may return [ErrSkip].
    //
    // Deprecated: Drivers should implement [ExecerContext] instead.
    type Execer interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 09:04:12 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/cache/AbstractLoadingCache.java

     * effort required to implement this interface.
     *
     * <p>To implement a cache, the programmer needs only to extend this class and provide an
     * implementation for the {@link #get(Object)} and {@link #getIfPresent} methods. {@link
     * #getUnchecked}, {@link #get(Object, Callable)}, and {@link #getAll} are implemented in terms of
     * {@code get}; {@link #getAllPresent} is implemented in terms of {@code getIfPresent}; {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Aug 06 17:12:03 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/AbstractLoadingCache.java

     * effort required to implement this interface.
     *
     * <p>To implement a cache, the programmer needs only to extend this class and provide an
     * implementation for the {@link #get(Object)} and {@link #getIfPresent} methods. {@link
     * #getUnchecked}, {@link #get(Object, Callable)}, and {@link #getAll} are implemented in terms of
     * {@code get}; {@link #getAllPresent} is implemented in terms of {@code getIfPresent}; {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Aug 06 17:12:03 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/responsewriter/wrapper.go

    // object and potentially wraps the user-provided decorator with a new http.ResponseWriter
    // object that implements http.CloseNotifier, http.Flusher, and/or http.Hijacker by
    // delegating to the user-provided decorator (if it implements the relevant method) or
    // the inner http.ResponseWriter (otherwise), so that the returned http.ResponseWriter
    // object implements the same subset of those interfaces as the inner http.ResponseWriter.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 7K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/transform/TransformAction.java

     *     }
     * }
     * </pre>
     *
     * Implementations of TransformAction are subject to the following constraints:
     * <ul>
     *     <li>Do not implement {@link #getParameters()} in your class, the method will be implemented by Gradle.</li>
     *     <li>Implementations may only have a default constructor.</li>
     * </ul>
     *
     *  Implementations can receive parameters by using annotated abstract getter methods.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 05 15:49:03 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/file/EmptyFileVisitor.java

     */
    package org.gradle.api.file;
    
    /**
     * The EmptyFileVisitor can be extends by implementations that only require to implement one of the 2 visit methods
     * (dir or file). This is just to limit the amount of code clutter when not both visit methods need to be implemented.
     */
    public class EmptyFileVisitor implements FileVisitor {
    
        @Override
        public void visitDir(FileVisitDetails dirDetails) { }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  8. doc/next/9-todo.md

    CL 543335 - x/exp CL that backported a change to behavior in slices package (accepted proposal https://go.dev/issue/63393) to x/exp/slices; doesn't need a Go 1.23 release note
    CL 556820 - x/tools CL implemented accepted proposal https://go.dev/issue/64548 for x/tools/go/analysis
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/hash/Funnel.java

     * serialization of funnels. When possible, it is recommended that funnels be implemented as a
     * single-element enum to maintain serialization guarantees. See Effective Java (2nd Edition), Item
     * 3: "Enforce the singleton property with a private constructor or an enum type". For example:
     *
     * <pre>{@code
     * public enum PersonFunnel implements Funnel<Person> {
     *   INSTANCE;
     *   public void funnel(Person person, PrimitiveSink into) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/cache/AbstractCache.java

     * effort required to implement this interface.
     *
     * <p>To implement a cache, the programmer needs only to extend this class and provide an
     * implementation for the {@link #put} and {@link #getIfPresent} methods. {@link #getAllPresent} is
     * implemented in terms of {@link #getIfPresent}; {@link #putAll} is implemented in terms of {@link
     * #put}, {@link #invalidateAll(Iterable)} is implemented in terms of {@link #invalidate}. The
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 9.1K bytes
    - Viewed (0)
Back to top