Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 171 for typeSet (0.21 sec)

  1. tensorflow/cc/framework/ops.h

        // START_SKIP_DOXYGEN
        template <typename T, bool = std::is_convertible<T, std::string>::value>
        struct RealType {
          typedef tstring type;
        };
    
        template <typename T>
        struct RealType<T, false> {
          typedef T type;
        };
        // END_SKIP_DOXYGEN
    
        TensorProto AsTensorProto() {
          TensorProto tensor_proto;
          if (tensor.NumElements() > 1) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/dispatcher.go

    				var p runtime.Object = param
    				if p != nil && p.GetObjectKind().GroupVersionKind().Empty() {
    					// Make sure param has TypeMeta populated
    					// This is a simple hack to make sure typeMeta is
    					// available to CEL without making copies of objects, etc.
    					p = &wrappedParam{
    						TypeMeta: metav1.TypeMeta{
    							APIVersion: definition.Spec.ParamKind.APIVersion,
    							Kind:       definition.Spec.ParamKind.Kind,
    						},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/addons/dns/dns_test.go

    		},
    	}, metav1.CreateOptions{})
    	if err != nil {
    		t.Fatalf("error creating ConfigMap: %v", err)
    	}
    	_, err = client.AppsV1().Deployments(metav1.NamespaceSystem).Create(context.TODO(), &apps.Deployment{
    		TypeMeta: metav1.TypeMeta{
    			Kind:       "Deployment",
    			APIVersion: "apps/v1",
    		},
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      kubeadmconstants.CoreDNSConfigMap,
    			Namespace: metav1.NamespaceSystem,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1/zz_generated.deepcopy.go

    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *MutatingWebhookConfiguration) DeepCopyInto(out *MutatingWebhookConfiguration) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	if in.Webhooks != nil {
    		in, out := &in.Webhooks, &out.Webhooks
    		*out = make([]MutatingWebhook, len(*in))
    		for i := range *in {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

    // ParamGeneratorInterface<T>. It wraps ParamIteratorInterface<T>
    // and implements the const forward iterator concept.
    template <typename T>
    class ParamIterator {
     public:
      typedef T value_type;
      typedef const T& reference;
      typedef ptrdiff_t difference_type;
    
      // ParamIterator assumes ownership of the impl_ pointer.
      ParamIterator(const ParamIterator& other) : impl_(other.impl_->Clone()) {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/rbac/v1/types.go

    // +k8s:prerelease-lifecycle-gen:introduced=1.8
    
    // Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding.
    type Role struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard object's metadata.
    	// +optional
    	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    	// Rules holds all the PolicyRules for this Role
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest_test.go

    					if err != nil {
    						t.Fatalf("failed to unmarshal converted object: %v", err)
    					}
    
    					// Clear TypeMeta because we expect it to be different between the original and converted type
    					got.TypeMeta = metav1.TypeMeta{}
    					patch.TypeMeta = metav1.TypeMeta{}
    
    					// clear fields that we know belong in PatchOptions only
    					patch.Force = nil
    
    					if !reflect.DeepEqual(*patch, *got) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/provision_test.go

    var storageClasses = []*storage.StorageClass{
    	{
    		TypeMeta: metav1.TypeMeta{
    			Kind: "StorageClass",
    		},
    
    		ObjectMeta: metav1.ObjectMeta{
    			Name: "gold",
    		},
    
    		Provisioner:       mockPluginName,
    		Parameters:        class1Parameters,
    		ReclaimPolicy:     &deleteReclaimPolicy,
    		VolumeBindingMode: &modeImmediate,
    	},
    	{
    		TypeMeta: metav1.TypeMeta{
    			Kind: "StorageClass",
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

      // length of Types.
      static bool Register(const char* prefix, const char* case_name,
                           const char* test_names, int index) {
        typedef typename Types::Head Type;
        typedef Fixture<Type> FixtureClass;
        typedef typename GTEST_BIND_(TestSel, Type) TestClass;
    
        // First, registers the first type-parameterized test in the type
        // list.
        MakeAndRegisterTestInfo(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/zz_generated.deepcopy.go

    )
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *AdmissionConfiguration) DeepCopyInto(out *AdmissionConfiguration) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	if in.Plugins != nil {
    		in, out := &in.Plugins, &out.Plugins
    		*out = make([]AdmissionPluginConfiguration, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 16.2K bytes
    - Viewed (0)
Back to top