Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 717 for allocable (0.24 sec)

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

    // without a prior Start.
    func (m *ManagerImpl) Stop() error {
    	return m.server.Stop()
    }
    
    // Allocate is the call that you can use to allocate a set of devices
    // from the registered device plugins.
    func (m *ManagerImpl) Allocate(pod *v1.Pod, container *v1.Container) error {
    	// The pod is during the admission phase. We need to save the pod to avoid it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 43K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/cpumanager/fake_cpu_manager.go

    	klog.InfoS("Start()")
    	return nil
    }
    
    func (m *fakeManager) Policy() Policy {
    	klog.InfoS("Policy()")
    	pol, _ := NewNonePolicy(nil)
    	return pol
    }
    
    func (m *fakeManager) Allocate(pod *v1.Pod, container *v1.Container) error {
    	klog.InfoS("Allocate", "pod", klog.KObj(pod), "containerName", container.Name)
    	return nil
    }
    
    func (m *fakeManager) AddContainer(pod *v1.Pod, container *v1.Container, containerID string) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/memorymanager/policy_static_test.go

    					MemoryMap: map[v1.ResourceName]*state.MemoryTable{
    						v1.ResourceMemory: {
    							Allocatable:    1536 * mb,
    							Free:           1536 * mb,
    							Reserved:       0,
    							SystemReserved: 512 * mb,
    							TotalMemSize:   3 * gb,
    						},
    						hugepages1Gi: {
    							Allocatable:    gb,
    							Free:           gb,
    							Reserved:       0,
    							SystemReserved: 0,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 05:49:15 UTC 2023
    - 100.4K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/memorymanager/policy_static.go

    		allocatable := node.Memory - systemReserved
    		// remove memory allocated by hugepages
    		if allocatedByHugepages, ok := nodeHugepages[node.Id]; ok {
    			allocatable -= allocatedByHugepages
    		}
    		defaultMachineState[node.Id].MemoryMap[v1.ResourceMemory] = &state.MemoryTable{
    			Allocatable:    allocatable,
    			Free:           allocatable,
    			Reserved:       0,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Nov 12 07:34:55 UTC 2023
    - 34K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/devicemanager/types.go

    	// Allocate configures and assigns devices to a container in a pod. From
    	// the requested device resources, Allocate will communicate with the
    	// owning device plugin to allow setup procedures to take place, and for
    	// the device plugin to provide runtime settings to use the device
    	// (environment variables, mount points and device files).
    	Allocate(pod *v1.Pod, container *v1.Container) error
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/container_manager.go

    	GetCapacity(localStorageCapacityIsolation bool) v1.ResourceList
    
    	// GetDevicePluginResourceCapacity returns the node capacity (amount of total device plugin resources),
    	// node allocatable (amount of total healthy resources reported by device plugin),
    	// and inactive device plugin resources previously registered on the node.
    	GetDevicePluginResourceCapacity() (v1.ResourceList, v1.ResourceList, []string)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. pkg/api/v1/resource/helpers.go

    		return "", err
    	}
    	return ExtractContainerResourceValue(fs, container)
    }
    
    // ExtractResourceValueByContainerNameAndNodeAllocatable extracts the value of a resource
    // by providing container name and node allocatable
    func ExtractResourceValueByContainerNameAndNodeAllocatable(fs *v1.ResourceFieldSelector, pod *v1.Pod, containerName string, nodeAllocatable v1.ResourceList) (string, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 26 13:58:16 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/regalloc.go

    		}
    	}
    
    	// Figure out which registers we're allowed to use.
    	s.allocatable = s.f.Config.gpRegMask | s.f.Config.fpRegMask | s.f.Config.specialRegMask
    	s.allocatable &^= 1 << s.SPReg
    	s.allocatable &^= 1 << s.SBReg
    	if s.f.Config.hasGReg {
    		s.allocatable &^= 1 << s.GReg
    	}
    	if buildcfg.FramePointerEnabled && s.f.Config.FPReg >= 0 {
    		s.allocatable &^= 1 << uint(s.f.Config.FPReg)
    	}
    	if s.f.Config.LinkReg != -1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  9. pkg/controller/nodeipam/ipam/cidrset/cidr_set_test.go

    		}
    	}
    
    	// Make sure that we can allocate exactly `numAllocatable24s` elements.
    	for i := 0; i < numAllocatable24s; i++ {
    		_, err := a.AllocateNext()
    		if err != nil {
    			t.Fatalf("Expected to be able to allocate %d CIDRS, failed after %d", numAllocatable24s, i)
    		}
    	}
    
    	_, err = a.AllocateNext()
    	if err == nil {
    		t.Fatalf("Expected to be able to allocate exactly %d CIDRS, got one more", numAllocatable24s)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 11 08:53:03 UTC 2023
    - 29.5K bytes
    - Viewed (0)
  10. pkg/registry/storage/csinode/strategy_test.go

    		expected *storage.CSINode
    	}{
    		{
    			"allow empty allocatable when it's not set",
    			emptyAllocatable,
    			emptyAllocatable,
    			emptyAllocatable,
    		},
    		{
    			"allow valid allocatable when it's already set",
    			valid,
    			differentAllocatable,
    			differentAllocatable,
    		},
    		{
    			"allow valid allocatable when it's not set",
    			emptyAllocatable,
    			valid,
    			valid,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 09:24:44 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top