Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,395 for implementMe (0.39 sec)

  1. 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)
  2. 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)
  3. src/cmd/compile/internal/typecheck/subr.go

    		return nil
    	}
    
    	return m
    }
    
    // Implements reports whether t implements the interface iface. t can be
    // an interface, a type parameter, or a concrete type.
    func Implements(t, iface *types.Type) bool {
    	var missing, have *types.Field
    	var ptr int
    	return implements(t, iface, &missing, &have, &ptr)
    }
    
    // ImplementsExplain reports whether t implements the interface iface. t can be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 19:45:58 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  4. src/internal/reflectlite/type.go

    func TypeOf(i any) Type {
    	return toType(abi.TypeOf(i))
    }
    
    func (t rtype) Implements(u Type) bool {
    	if u == nil {
    		panic("reflect: nil type passed to Type.Implements")
    	}
    	if u.Kind() != Interface {
    		panic("reflect: non-interface type passed to Type.Implements")
    	}
    	return implements(u.common(), t.common())
    }
    
    func (t rtype) AssignableTo(u Type) bool {
    	if u == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  5. pkg/scheduler/testing/framework/fake_listers.go

    }
    
    func (f *serviceNamespaceLister) Get(name string) (*v1.Service, error) {
    	return nil, fmt.Errorf("not implemented")
    }
    
    func (f *serviceNamespaceLister) List(selector labels.Selector) ([]*v1.Service, error) {
    	return f.services, nil
    }
    
    var _ corelisters.ReplicationControllerLister = &ControllerLister{}
    
    // ControllerLister implements ControllerLister on []v1.ReplicationController for test purposes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 20 10:14:08 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/typeregistration/BaseInstanceFactory.java

                    ModelType<?> internalView = internalViewRegistration.getInternalView();
                    // Managed internal views are allowed not to be implemented by the default implementation
                    if (isManaged(internalView)) {
                        continue;
                    }
                    if (!internalView.isAssignableFrom(implementationType)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/base/Converter.java

       * @throws UnsupportedOperationException if backward conversion is not implemented; this should be
       *     very rare. Note that if backward conversion is not only unimplemented but
       *     unimplement<i>able</i> (for example, consider a {@code Converter<Chicken, ChickenNugget>}),
       *     then this is not logically a {@code Converter} at all, and should just implement {@link
       *     Function}.
       */
      @ForOverride
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/Converter.java

       * @throws UnsupportedOperationException if backward conversion is not implemented; this should be
       *     very rare. Note that if backward conversion is not only unimplemented but
       *     unimplement<i>able</i> (for example, consider a {@code Converter<Chicken, ChickenNugget>}),
       *     then this is not logically a {@code Converter} at all, and should just implement {@link
       *     Function}.
       */
      @ForOverride
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 23K bytes
    - Viewed (0)
  9. src/io/io.go

    // Because Copy is defined to read from src until EOF, it does
    // not treat an EOF from Read as an error to be reported.
    //
    // If src implements [WriterTo],
    // the copy is implemented by calling src.WriteTo(dst).
    // Otherwise, if dst implements [ReaderFrom],
    // the copy is implemented by calling dst.ReadFrom(src).
    func Copy(dst Writer, src Reader) (written int64, err error) {
    	return copyBuffer(dst, src, nil)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:34:10 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheLambdaIntegrationTest.groovy

        def "restores task with Transformer implemented by Java lambda"() {
            given:
            file("buildSrc/src/main/java/my/LambdaPlugin.java").tap {
                parentFile.mkdirs()
                text = """
                    package my;
    
                    import org.gradle.api.*;
                    import org.gradle.api.tasks.*;
    
                    public class LambdaPlugin implements Plugin<Project> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top