Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for printers_jsonpath_flags (0.24 sec)

  1. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/template_flags_test.go

    )
    
    func TestPrinterSupportsExpectedTemplateFormats(t *testing.T) {
    	testObject := &v1.Pod{ObjectMeta: metav1.ObjectMeta{Name: "foo"}}
    
    	templateFile, err := os.CreateTemp("", "printers_jsonpath_flags")
    	if err != nil {
    		t.Fatalf("unexpected error: %v", err)
    	}
    	defer func(tempFile *os.File) {
    		tempFile.Close()
    		os.Remove(tempFile.Name())
    	}(templateFile)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 09:47:52 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/jsonpath_flags_test.go

    )
    
    func TestPrinterSupportsExpectedJSONPathFormats(t *testing.T) {
    	testObject := &v1.Pod{ObjectMeta: metav1.ObjectMeta{Name: "foo"}}
    
    	jsonpathFile, err := os.CreateTemp("", "printers_jsonpath_flags")
    	if err != nil {
    		t.Fatalf("unexpected error: %v", err)
    	}
    	defer func(tempFile *os.File) {
    		tempFile.Close()
    		os.Remove(tempFile.Name())
    	}(jsonpathFile)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 09:47:52 UTC 2023
    - 6.7K bytes
    - Viewed (0)
Back to top