Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for unstructuredObj (0.11 sec)

  1. cmd/kubeadm/app/util/apiclient/clientbacked_dryrun.go

    	unstructuredObj, err := clg.dynamicClient.Resource(action.GetResource()).Namespace(action.GetNamespace()).Get(context.TODO(), action.GetName(), metav1.GetOptions{})
    	if err != nil {
    		// Inform the user that the requested object wasn't found.
    		printIfNotExists(err)
    		return true, nil, err
    	}
    	newObj, err := decodeUnstructuredIntoAPIObject(action, unstructuredObj)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 16 10:29:45 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/scheme_test.go

    			TestString: "foo",
    		}
    
    		unstructuredObj := &runtimetesting.Unstructured{}
    		err := scheme.Convert(simple, unstructuredObj, nil)
    		if err == nil || !strings.Contains(err.Error(), "to Unstructured without providing a preferred version to convert to") {
    			t.Fatalf("Unexpected non-error: %v", err)
    		}
    		if err := scheme.Convert(simple, unstructuredObj, externalGV); err != nil {
    			t.Fatalf("Unexpected error: %v", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 38.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/test/apis_meta_v1_unstructed_unstructure_test.go

    		t.Fatalf("unexpected error: %v", err)
    	}
    
    	// Round-trip with unstructured codec
    	unstructuredObj, err := runtime.Decode(unstructured.UnstructuredJSONScheme, originalJSON)
    	if err != nil {
    		t.Fatalf("unexpected error: %v", err)
    	}
    	roundtripJSON, err := runtime.Encode(unstructured.UnstructuredJSONScheme, unstructuredObj)
    	if err != nil {
    		t.Fatalf("unexpected error: %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 20:12:50 UTC 2022
    - 17.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/basic_test.go

    	if err != nil {
    		t.Fatalf("unexpected error: %v", err)
    	}
    
    	// Check if int is preserved.
    	unstructuredObj := gottenNoxuInstance.(*unstructured.Unstructured).Object
    	num := unstructuredObj["num"].(map[string]interface{})
    	num1 := num["num1"].(int64)
    	num2 := num["num2"].(int64)
    	if num1 != 9223372036854775807 || num2 != 1000000 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 11:35:33 UTC 2024
    - 33.4K bytes
    - Viewed (0)
Back to top