Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,015 for typeSet (0.14 sec)

  1. src/main/java/jcifs/dcerpc/msrpc/samr.idl

    	[op(0x07)]
    	int SamrOpenDomain([in] policy_handle *handle,
    			[in] uint32_t access_mask,
    			[in] sid_t *sid,
    			[out] policy_handle *domain_handle);
    
    	typedef struct {
    		uint32_t idx;
    		unicode_string name;
    	} SamrSamEntry;
    
    	typedef struct {
    		uint32_t count;
    		[size_is(count)] SamrSamEntry *entries;
    	} SamrSamArray;
    
    	[op(0x0f)]
    	int SamrEnumerateAliasesInDomain([in] policy_handle *domain_handle,
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/testing/zz_generated.deepcopy.go

    )
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *Simple) DeepCopyInto(out *Simple) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	if in.Labels != nil {
    		in, out := &in.Labels, &out.Labels
    		*out = make(map[string]string, len(*in))
    		for key, val := range *in {
    			(*out)[key] = val
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/runtime/testing/types.go

    type ExtensionA struct {
    	runtime.TypeMeta `json:",inline"`
    	TestString       string `json:"testString"`
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    type ExtensionB struct {
    	runtime.TypeMeta `json:",inline"`
    	TestString       string `json:"testString"`
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    type ExternalExtensionType struct {
    	runtime.TypeMeta `json:",inline"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 28 03:26:35 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/output/zz_generated.deepcopy.go

    )
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *AvailableUpgrade) DeepCopyInto(out *AvailableUpgrade) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	if in.Components != nil {
    		in, out := &in.Components, &out.Components
    		*out = make([]ComponentUpgradePlan, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:01:20 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/sparse_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	uncastDstObj2, err := runtime.Decode(decoder, srcObj2Bytes)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// clear typemeta
    	uncastDstObj1.(*FakeV1Obj).TypeMeta = metav1.TypeMeta{}
    	uncastDstObj2.(*FakeV2DifferentObj).TypeMeta = metav1.TypeMeta{}
    
    	if !equality.Semantic.DeepEqual(srcObj1, uncastDstObj1) {
    		t.Fatal(cmp.Diff(srcObj1, uncastDstObj1))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/rbac/v1/zz_generated.deepcopy.go

    	return out
    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *ClusterRole) DeepCopyInto(out *ClusterRole) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	if in.Rules != nil {
    		in, out := &in.Rules, &out.Rules
    		*out = make([]PolicyRule, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 10.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/dcerpc/msrpc/samr.idl

    	[op(0x07)]
    	int SamrOpenDomain([in] policy_handle *handle,
    			[in] uint32_t access_mask,
    			[in] sid_t *sid,
    			[out] policy_handle *domain_handle);
    
    	typedef struct {
    		uint32_t idx;
    		unicode_string name;
    	} SamrSamEntry;
    
    	typedef struct {
    		uint32_t count;
    		[size_is(count)] SamrSamEntry *entries;
    	} SamrSamArray;
    
    	[op(0x0f)]
    	int SamrEnumerateAliasesInDomain([in] policy_handle *domain_handle,
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/runtime/testing/zz_generated.deepcopy.go

    )
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *EmbeddedTest) DeepCopyInto(out *EmbeddedTest) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	if in.Object != nil {
    		out.Object = in.Object.DeepCopyObject()
    	}
    	if in.EmptyObject != nil {
    		out.EmptyObject = in.EmptyObject.DeepCopyObject()
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 17.8K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testgodefs/testdata/issue37479.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build ignore
    
    package main
    
    /*
    typedef struct A A;
    
    typedef struct {
    	struct A *next;
    	struct A **prev;
    } N;
    
    struct A
    {
    	N n;
    };
    
    typedef struct B
    {
    	A* a;
    } B;
    */
    import "C"
    
    type N C.N
    
    type A C.A
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 377 bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/ambient/workloads_test.go

    			inputs: []any{},
    			pod: &v1.Pod{
    				TypeMeta: metav1.TypeMeta{},
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "name",
    					Namespace: "ns",
    				},
    				Spec: v1.PodSpec{},
    				Status: v1.PodStatus{
    					Phase: v1.PodPending,
    				},
    			},
    			result: nil,
    		},
    		{
    			name:   "simple pod not running but have podIP",
    			inputs: []any{},
    			pod: &v1.Pod{
    				TypeMeta: metav1.TypeMeta{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top