Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 738 for impl_2 (0.41 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/ManagedCollectionProxyClassGeneratorTest.groovy

            impl1 != impl2
            SpecializedType.isAssignableFrom(impl1)
            SpecializedType2.isAssignableFrom(impl2)
        }
    
        SomeType newInstance(Class<? extends SomeType> implType, Class<? extends SomeType> publicType, SomeType target) {
            def generated = generate(implType, publicType)
            return generated.newInstance(target)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. src/text/template/testdata/tmpl2.tmpl

    Russ Cox <******@****.***> 1410149331 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 50 bytes
    - Viewed (0)
  3. src/html/template/testdata/tmpl2.tmpl

    Russ Cox <******@****.***> 1594052821 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 14 16:54:25 UTC 2020
    - 50 bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/runtime/impl.go

    package runtime
    
    import (
    	"context"
    	"time"
    
    	criapi "k8s.io/cri-api/pkg/apis"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	criclient "k8s.io/cri-client/pkg"
    )
    
    type defaultImpl struct{}
    
    type impl interface {
    	NewRemoteRuntimeService(endpoint string, connectionTimeout time.Duration) (criapi.RuntimeService, error)
    	NewRemoteImageService(endpoint string, connectionTimeout time.Duration) (criapi.ImageManagerService, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractCrossTaskConstantChangesIncrementalCompilationIntegrationTest.groovy

            source api: ["class A { final static int x = 1; }", "class B extends A {}"], impl: ["class ImplA extends A {}", "class ImplB extends B {}"]
            impl.snapshot { run language.compileTaskName }
    
            when:
            source api: ["class B { /* change */ }"]
            run "impl:${language.compileTaskName}"
    
            then:
            impl.recompiledClasses('ImplB')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  6. src/image/internal/imageutil/impl.go

    Mark Rushakoff <******@****.***> 1520661463 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 10 17:50:11 UTC 2018
    - 7.4K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/reference-policy-service.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: backend-not-allowed
      namespace: istio-system
    spec:
      parentRefs:
      - name: gateway
        namespace: istio-system
      hostnames: ["simple2.domain.example"]
      rules:
      - backendRefs:
        - name: my-svc
          namespace: service
          port: 80
          weight: 1
        - name: httpbin
          namespace: default
          port: 80
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. tensorflow/cc/client/client_session.h

      /// session.
      /// NOTE: This API is still experimental and may change.
      Status ReleaseCallable(CallableHandle handle);
    
     private:
      class Impl;
      std::unique_ptr<Impl> impl_;
      Impl* impl() { return impl_.get(); }
      const Impl* impl() const { return impl_.get(); }
    };
    
    /// @}
    
    }  // end namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 20 08:11:46 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/loader/CachingToolingImplementationLoaderTest.groovy

            def connection = Mock(ConsumerConnection)
    
            when:
            def impl = loader.create(distribution, loggerFactory, progressListener, params, cancellationToken)
            def impl2 = loader.create(distribution, loggerFactory, progressListener, params, cancellationToken)
    
            then:
            impl == connection
            impl2 == connection
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 09:39:07 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. src/internal/types/testdata/fixedbugs/issue61879.go

    type InterfaceA[T comparable] interface {
    	setData(string) InterfaceA[T]
    }
    
    type ImplA[T comparable] struct {
    	data string
    	args []any
    }
    
    func NewInterfaceA[T comparable](args ...any) InterfaceA[T] {
    	return &ImplA[T]{
    		data: fmt.Sprintf("%v", args...),
    		args: args,
    	}
    }
    
    func (k *ImplA[T]) setData(data string) InterfaceA[T] {
    	k.data = data
    	return k
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 19:42:56 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top