Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for constructDevices (0.19 sec)

  1. pkg/kubelet/cm/devicemanager/manager_test.go

    	testManager.podDevices.insert("pod1", "con2", resourceName1,
    		constructDevices([]string{"dev3"}),
    		newContainerAllocateResponse(
    			withDevices(map[string]string{"/dev/r1dev3": "/dev/r1dev3"}),
    			withMounts(map[string]string{"/home/r1lib1": "/usr/r1lib1"}),
    		),
    	)
    	testManager.podDevices.insert("pod2", "con1", resourceName1,
    		constructDevices([]string{"dev4"}),
    		newContainerAllocateResponse(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/devicemanager/topology_hints_test.go

    			}
    		}
    
    		for p := range tc.allocatedDevices {
    			for c := range tc.allocatedDevices[p] {
    				for r, devices := range tc.allocatedDevices[p][c] {
    					m.podDevices.insert(p, c, r, constructDevices(devices), nil)
    
    					m.allocatedDevices[r] = sets.New[string]()
    					for _, d := range devices {
    						m.allocatedDevices[r].Insert(d)
    					}
    				}
    			}
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 47.5K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    			Waypoint:              a.getWaypointAddress(targetWaypoint),
    			Node:                  p.Spec.NodeName,
    			ApplicationTunnel:     appTunnel,
    			Services:              constructServices(p, services),
    			AuthorizationPolicies: policies,
    			Status:                status,
    			TrustDomain:           pickTrustDomain(meshCfg),
    			Locality:              getPodLocality(ctx, Nodes, p),
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
Back to top