Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for printFlowSchema (0.28 sec)

  1. pkg/printers/internalversion/printers.go

    		{Name: "MissingPL", Type: "string", Description: "references a broken or non-existent PriorityLevelConfiguration"},
    	}
    	_ = h.TableHandler(flowSchemaColumnDefinitions, printFlowSchema)
    	_ = h.TableHandler(flowSchemaColumnDefinitions, printFlowSchemaList)
    
    	priorityLevelColumnDefinitions := []metav1.TableColumnDefinition{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  2. pkg/printers/internalversion/printers_test.go

    			expected: []metav1.TableRow{{Cells: []interface{}{"exempt", "allee", int64(0), "<none>", "5m", "?"}}},
    		},
    	}
    
    	for i, test := range tests {
    		rows, err := printFlowSchema(&test.fs, printers.GenerateOptions{})
    		if err != nil {
    			t.Fatal(err)
    		}
    		for i := range rows {
    			rows[i].Object.Object = nil
    		}
    		if !reflect.DeepEqual(test.expected, rows) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
Back to top