Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 9,037 for implementMe (0.31 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. 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)
  7. platforms/core-execution/workers/src/main/java/org/gradle/workers/WorkAction.java

     *         System.out.println(greeting);
     *     }
     * }
     * </pre>
     *
     * Implementations of WorkAction 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>Constructors must be annotated with {@link Inject}.</li>
     * </ul>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/provider/ValueSource.java

     * also allowed.
     * </p>
     *
     * Implementations of ValueSource are subject to the following constraint:
     * <ul>
     *     <li>Do not implement {@link #getParameters()} in your class, the method will be implemented by Gradle.</li>
     * </ul>
     *
     * @param <T> The type of value obtained from this source.
     * @param <P> The source specific parameter type.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 13:02:13 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. src/crypto/elliptic/elliptic.go

    	initP521()
    }
    
    // P224 returns a [Curve] which implements NIST P-224 (FIPS 186-3, section D.2.2),
    // also known as secp224r1. The CurveParams.Name of this [Curve] is "P-224".
    //
    // Multiple invocations of this function will return the same value, so it can
    // be used for equality checks and switch statements.
    //
    // The cryptographic operations are implemented using constant-time algorithms.
    func P224() Curve {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 9K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/typeregistration/BaseInstanceFactoryTest.groovy

        static interface ThingSpecInternal extends ThingSpec {}
        static abstract class BaseThingSpec implements ThingSpecInternal {}
        static class DefaultThingSpec extends BaseThingSpec {}
        static class DefaultOtherThingSpec extends DefaultThingSpec implements OtherThingSpec {}
        static abstract class AbstractThingSpec implements ThingSpec {}
    
        static class NoDefaultConstructorThingSpec extends BaseThingSpec {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 15.7K bytes
    - Viewed (0)
Back to top