Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 428 for typed (0.04 sec)

  1. tensorflow/cc/experimental/base/tests/tensor_types_test_util.h

    namespace tensorflow {
    
    // Each of the following struct types have two members: a kDType that
    // corresponds to a TF_Datatype enum value, and a typedef "type"
    // of its corresponding C++ type. These types allow us to write Dtype-agnostic
    // tests via GoogleTest's TypedTests:
    // https://github.com/google/googletest/blob/e589a337170554c48bc658cc857cf15080c9eacc/googletest/docs/advanced.md#typed-tests
    struct FloatType {
      using type = float;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 31 00:34:05 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  2. 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)
  3. staging/src/k8s.io/apimachinery/pkg/util/managedfields/typeconverter.go

    )
    
    // TypeConverter allows you to convert from runtime.Object to
    // typed.TypedValue and the other way around.
    type TypeConverter = internal.TypeConverter
    
    // NewDeducedTypeConverter creates a TypeConverter for CRDs that don't
    // have a schema. It does implement the same interface though (and
    // create the same types of objects), so that everything can still work
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. 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)
  5. pkg/kube/kclient/events.go

    package kclient
    
    import (
    	corev1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	typedcorev1 "k8s.io/client-go/kubernetes/typed/core/v1"
    	"k8s.io/client-go/tools/record"
    	"k8s.io/klog/v2"
    
    	"istio.io/istio/pkg/kube"
    )
    
    type EventRecorder struct {
    	eventRecorder    record.EventRecorder
    	eventBroadcaster record.EventBroadcaster
    }
    
    // NewEventRecorder creates a new EventRecorder.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 22:23:28 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. test/typeparam/double.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"fmt"
    	"reflect"
    )
    
    type Number interface {
    	~int | ~int8 | ~int16 | ~int32 | ~int64 | ~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~uintptr | ~float32 | ~float64
    }
    
    type MySlice []int
    type MyFloatSlice []float64
    
    type _SliceOf[E any] interface {
    	~[]E
    }
    
    func _DoubleElems[S _SliceOf[E], E Number](s S) S {
    	r := make(S, len(s))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h.pump

    struct Types {
      typedef internal::Types$n<$for i, [[T$i]]> type;
    };
    
    template <>
    struct Types<$for i, [[internal::None]]> {
      typedef internal::Types0 type;
    };
    
    $range i 1..n-1
    $for i [[
    $range j 1..i
    $range k i+1..n
    template <$for j, [[typename T$j]]>
    struct Types<$for j, [[T$j]]$for k[[, internal::None]]> {
      typedef internal::Types$i<$for j, [[T$j]]> type;
    };
    
    ]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top