Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for getDevice (0.17 sec)

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

    	resp := m.allDevices.Filter(m.healthyDevices)
    	klog.V(4).InfoS("GetAllocatableDevices", "known", len(m.allDevices), "allocatable", len(resp))
    	return resp
    }
    
    // GetDevices returns the devices used by the specified container
    func (m *ManagerImpl) GetDevices(podUID, containerName string) ResourceDeviceInstances {
    	return m.podDevices.getContainerDevices(podUID, containerName)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 43K bytes
    - Viewed (0)
  2. pilot/pkg/model/service.go

    // nolint: lll
    type ServiceDiscovery interface {
    	NetworkGatewaysWatcher
    
    	// Services list declarations of all services in the system
    	Services() []*Service
    
    	// GetService retrieves a service by host name if it exists
    	GetService(hostname host.Name) *Service
    
    	// GetProxyServiceTargets returns the service targets that co-located with a given Proxy
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tpu_space_to_depth_pass.cc

                                    tf_device::ReplicateOp replicate,
                                    int32_t block_size) {
      // We need to know the devices to copy to.
      if (!replicate.getDevices()) return false;
    
      MutableArrayRef<OpOperand> inputs =
          replicate.GetOperandsForBlockArgument(block_arg);
      for (auto& input : inputs) {
        auto input_op = input.get().getDefiningOp();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  4. pilot/pkg/model/sidecar.go

    	if _, f := sidecarScopedKnownConfigTypes[config.Kind]; !f {
    		return true
    	}
    
    	return sc.configDependencies.Contains(config.HashCode())
    }
    
    func (sc *SidecarScope) GetService(hostname host.Name) *Service {
    	if sc == nil {
    		return nil
    	}
    	return sc.servicesByHostname[hostname]
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
Back to top