Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NewDOTVertex (0.1 sec)

  1. pkg/controller/garbagecollector/dump_test.go

    				types.UID("foxtrot"): foxtrotNode(),
    				types.UID("golf"):    golfNode(),
    			},
    			expectNodes: []*dotVertex{
    				NewDOTVertex(alphaNode()),
    				NewDOTVertex(bravoNode()),
    				NewDOTVertex(charlieNode()),
    				NewDOTVertex(deltaNode()),
    				NewDOTVertex(foxtrotNode()),
    				NewDOTVertex(golfNode()),
    			},
    			expectEdges: []dotEdge{
    				{F: types.UID("alpha"), T: types.UID("bravo")},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  2. pkg/controller/garbagecollector/dump.go

    		{Key: "deletingDependents", Value: fmt.Sprintf(`%v`, v.deletingDependents)},
    		{Key: "virtual", Value: fmt.Sprintf(`%v`, v.virtual)},
    	}
    }
    
    // NewDOTVertex creates a new dotVertex.
    func NewDOTVertex(node *node) *dotVertex {
    	gv, err := schema.ParseGroupVersion(node.identity.APIVersion)
    	if err != nil {
    		// this indicates a bad data serialization that should be prevented during storage of the API
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 17:12:33 UTC 2022
    - 9.5K bytes
    - Viewed (0)
Back to top