Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 371 for typeSet (0.26 sec)

  1. pkg/apis/resource/zz_generated.deepcopy.go

    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *PodSchedulingContext) DeepCopyInto(out *PodSchedulingContext) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	in.Spec.DeepCopyInto(&out.Spec)
    	in.Status.DeepCopyInto(&out.Status)
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 33.8K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

    template <typename T>
    class FooTest : public testing::Test {
     public:
      ...
      typedef std::list<T> List;
      static T shared_;
      T value_;
    };
    
    // Next, associate a list of types with the test case, which will be
    // repeated for each type in the list.  The typedef is necessary for
    // the macro to parse correctly.
    typedef testing::Types<char, int, unsigned int> MyTypes;
    TYPED_TEST_CASE(FooTest, MyTypes);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/output/v1alpha3/types.go

    type BootstrapToken struct {
    	metav1.TypeMeta `json:",inline"`
    
    	bootstraptokenv1.BootstrapToken
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // Images represents information for the output produced by 'kubeadm config images list'
    type Images struct {
    	metav1.TypeMeta `json:",inline"`
    
    	Images []string `json:"images"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/json/json_test.go

    			expectedObject: &testDecodable{TypeMeta: metav1.TypeMeta{APIVersion: "other/blah", Kind: "Test"}},
    			expectedGVK:    &schema.GroupVersionKind{Kind: "Test", Group: "other", Version: "blah"},
    		},
    		//gvk defaulting if kind not provided in data and defaultGVK use into's kind
    		{
    			data:           []byte(`{"apiVersion":"b1/c1"}`),
    			into:           &testDecodable{TypeMeta: metav1.TypeMeta{Kind: "a3", APIVersion: "b1/c1"}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:55:02 UTC 2024
    - 40K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/config/upgradeconfiguration_test.go

    		cfg         kubeadmapiv1.UpgradeConfiguration
    		expectedCfg kubeadmapi.UpgradeConfiguration
    	}{
    		{
    			name: "default config is set correctly",
    			cfg: kubeadmapiv1.UpgradeConfiguration{
    				TypeMeta: metav1.TypeMeta{
    					APIVersion: kubeadmapiv1.SchemeGroupVersion.String(),
    					Kind:       constants.UpgradeConfigurationKind,
    				},
    			},
    			expectedCfg: kubeadmapi.UpgradeConfiguration{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. src/runtime/cgo/libcgo.h

    #include <stdio.h>
    
    #undef nil
    #define nil ((void*)0)
    #define nelem(x) (sizeof(x)/sizeof((x)[0]))
    
    typedef uint32_t uint32;
    typedef uint64_t uint64;
    typedef uintptr_t uintptr;
    
    /*
     * The beginning of the per-goroutine structure,
     * as defined in ../pkg/runtime/runtime.h.
     * Just enough to edit these two fields.
     */
    typedef struct G G;
    struct G
    {
    	uintptr stacklo;
    	uintptr stackhi;
    };
    
    /*
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 20:50:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/dom_test.go

    			Valu("mem", OpInitMem, types.TypeMem, 0, nil),
    			Exit("mem")))
    
    	doms := map[string]string{}
    
    	CheckFunc(fun.f)
    	verifyDominators(t, fun, dominators, doms)
    	verifyDominators(t, fun, dominatorsSimple, doms)
    
    }
    
    func TestDominatorsSimple(t *testing.T) {
    	c := testConfig(t)
    	fun := c.Fun("entry",
    		Bloc("entry",
    			Valu("mem", OpInitMem, types.TypeMem, 0, nil),
    			Goto("a")),
    		Bloc("a",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/apidiscovery/v2/fuzzer_test.go

    	require.NoError(t, err)
    
    	fuzzer := fuzz.NewWithSeed(2374375)
    
    	// v2 -> v2beta1 -> v2
    	for i := 0; i < 100; i++ {
    		expected := &v2.APIGroupDiscoveryList{}
    		fuzzer.Fuzz(expected)
    		expected.TypeMeta = metav1.TypeMeta{
    			Kind:       "APIGroupDiscoveryList",
    			APIVersion: "apidiscovery.k8s.io/v2",
    		}
    		o, err := scheme.ConvertToVersion(expected, v2beta1.SchemeGroupVersion)
    		require.NoError(t, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 00:29:39 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. pkg/kube/inject/inject.go

    // FromRawToObject is used to convert from raw to the runtime object
    func FromRawToObject(raw []byte) (runtime.Object, error) {
    	var typeMeta metav1.TypeMeta
    	if err := yaml.Unmarshal(raw, &typeMeta); err != nil {
    		return nil, err
    	}
    
    	gvk := schema.FromAPIVersionAndKind(typeMeta.APIVersion, typeMeta.Kind)
    	obj, err := injectScheme.New(gvk)
    	if err != nil {
    		return nil, err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (1)
  10. staging/src/k8s.io/api/resource/v1alpha2/zz_generated.deepcopy.go

    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *PodSchedulingContext) DeepCopyInto(out *PodSchedulingContext) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	in.Spec.DeepCopyInto(&out.Spec)
    	in.Status.DeepCopyInto(&out.Status)
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 33.5K bytes
    - Viewed (0)
Back to top