Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 477 for typed (0.08 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/RuntimeExec3InstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

                // Spread calls
                [fromString(), "Runtime.getRuntime().exec(*[command, new String[] {'FOOBAR=foobar'}, file('$pwd')])", pwd, "foobar"],
                // Typed nulls
                [fromString(), "Runtime.getRuntime().exec(command, null, null as File)", "", ""],
                // type-wrapped arguments
                [fromGroovyString(), "Runtime.getRuntime().exec(command as String, null, null)", "", ""],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. istioctl/pkg/cli/context.go

    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/ptr"
    )
    
    type Context interface {
    	// CLIClient returns a client for the default revision
    	CLIClient() (kube.CLIClient, error)
    	// CLIClientWithRevision returns a client for the given revision
    	CLIClientWithRevision(rev string) (kube.CLIClient, error)
    	// InferPodInfoFromTypedResource returns the pod name and namespace for the given typed resource
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/services/internal/BuildServiceRegistryInternal.java

        BuildServiceRegistration<?, ?> findByName(String name);
    
        @Nullable
        BuildServiceRegistration<?, ?> findByType(Class<?> type);
    
        @Nullable
        BuildServiceRegistration<?, ?> findRegistration(Class<?> type, String name);
    
        Set<BuildServiceRegistration<?, ?>> findRegistrations(Class<?> type, String name);
    
        List<ResourceLock> getSharedResources(Set<Provider<? extends BuildService<?>>> services);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. src/reflect/makefunc.go

    // a typed function in terms of Values.
    //
    // The Examples section of the documentation includes an illustration
    // of how to use MakeFunc to build a swap function for different types.
    func MakeFunc(typ Type, fn func(args []Value) (results []Value)) Value {
    	if typ.Kind() != Func {
    		panic("reflect: call of MakeFunc with non-Func type")
    	}
    
    	t := typ.common()
    	ftyp := (*funcType)(unsafe.Pointer(t))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:20:05 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. maven-di/src/test/java/org/apache/maven/di/impl/InjectorImplTest.java

            assertNotNull(mojo);
            assertNotNull(mojo.service);
        }
    
        @SuppressWarnings("unused")
        static class TypedTest {
    
            interface MyService {}
    
            @Named
            @Typed
            static class MyServiceImpl implements MyService {}
    
            @Named
            static class MyMojo {
                @Inject
                MyService service;
            }
        }
    
        @Test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/ProjectSchemaAccessorsIntegrationTest.kt

                build("-q").output,
                containsString("build.Java11Plugin${'$'}Java11Extension")
            )
        }
    
        @Test
        fun `accessors to kotlin internal task types are typed with the first kotlin public parent type`() {
    
            withDefaultSettings()
            withKotlinBuildSrc()
            withFile(
                "buildSrc/src/main/kotlin/my/CustomTasks.kt",
                """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/authorization/authorizerfactory/delegating.go

    	"k8s.io/apiserver/plugin/pkg/authorizer/webhook"
    	authorizationclient "k8s.io/client-go/kubernetes/typed/authorization/v1"
    )
    
    // DelegatingAuthorizerConfig is the minimal configuration needed to create an authorizer
    // built to delegate authorization to a kube API server
    type DelegatingAuthorizerConfig struct {
    	SubjectAccessReviewClient authorizationclient.AuthorizationV1Interface
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 22:41:27 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/Execute3InstanceInstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

                // Typed nulls
                [fromString(), "command.execute((String[]) null, null)", "", ""],
                [fromString(), "command.execute(null, (File) null)", "", ""],
                [fromString(), "command.execute((String[]) null, (File) null)", "", ""],
                // type-wrapped arguments
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/passes.h

    std::unique_ptr<Pass> createOptimizePass();
    
    // Creates a pass that finds quantization patterns and compose them to uniform
    // quantized types.
    std::unique_ptr<OperationPass<ModuleOp>>
    CreateComposeUniformQuantizedTypePass();
    
    // Creates a pass that finds stablehlo ops that accept or produce uniform
    // quantized typed tensors and converts them to equivalent ops in the TFLite
    // dialect.
    std::unique_ptr<OperationPass<func::FuncOp>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 21:59:06 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. pkg/proxy/kubemark/hollow_proxy.go

    	"k8s.io/apimachinery/pkg/types"
    	clientset "k8s.io/client-go/kubernetes"
    	v1core "k8s.io/client-go/kubernetes/typed/core/v1"
    	"k8s.io/client-go/tools/events"
    	proxyapp "k8s.io/kubernetes/cmd/kube-proxy/app"
    	proxyconfigapi "k8s.io/kubernetes/pkg/proxy/apis/config"
    	proxyconfig "k8s.io/kubernetes/pkg/proxy/config"
    	"k8s.io/utils/ptr"
    )
    
    type HollowProxy struct {
    	ProxyServer *proxyapp.ProxyServer
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top