Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 171 for typeSet (0.16 sec)

  1. src/cmd/cgo/internal/test/test.go

    struct _jobject;
    
    typedef struct _jobject *jobject;
    typedef jobject jclass;
    typedef jobject jthrowable;
    typedef jobject jstring;
    typedef jobject jarray;
    typedef jarray jbooleanArray;
    typedef jarray jbyteArray;
    typedef jarray jcharArray;
    typedef jarray jshortArray;
    typedef jarray jintArray;
    typedef jarray jlongArray;
    typedef jarray jfloatArray;
    typedef jarray jdoubleArray;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api_experimental.h

    TF_CAPI_EXPORT extern uint64_t TFE_GetContextId(TFE_Context* ctx);
    
    // -----------------------------------------------------------------------------
    // Cancellation APIs.
    
    typedef struct TFE_CancellationManager TFE_CancellationManager;
    typedef int64_t TFE_CancellationToken;
    typedef struct TFE_CancelCallback {
      void (*callback)(void* context);
      void* context;
    } TFE_CancelCallback;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 22:37:46 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  3. pkg/kube/util_test.go

    func TestCronJobMetadata(t *testing.T) {
    	tests := []struct {
    		name             string
    		jobName          string
    		wantTypeMetadata metav1.TypeMeta
    		wantName         types.NamespacedName
    	}{
    		{
    			name:    "cron-job-name-sec",
    			jobName: "sec-1234567890",
    			wantTypeMetadata: metav1.TypeMeta{
    				Kind:       "CronJob",
    				APIVersion: "batch/v1",
    			},
    			wantName: types.NamespacedName{
    				Name: "sec",
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 04:16:49 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  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