Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for toRelease (0.23 sec)

  1. pkg/registry/core/service/storage/alloc.go

    		return nil, nil
    	}
    
    	toRelease := make(map[api.IPFamily]string)
    	for _, ip := range service.Spec.ClusterIPs {
    		if netutils.IsIPv6String(ip) {
    			toRelease[api.IPv6Protocol] = ip
    		} else {
    			toRelease[api.IPv4Protocol] = ip
    		}
    	}
    	return al.releaseIPs(toRelease)
    }
    
    func (al *Allocators) Destroy() {
    	al.serviceNodePorts.Destroy()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 37.3K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/cpumanager/policy_static.go

    	cpusInUse := getAssignedCPUsOfSiblings(s, podUID, containerName)
    	if toRelease, ok := s.GetCPUSet(podUID, containerName); ok {
    		s.Delete(podUID, containerName)
    		// Mutate the shared pool, adding released cpus.
    		toRelease = toRelease.Difference(cpusInUse)
    		s.SetDefaultCPUSet(s.GetDefaultCPUSet().Union(toRelease))
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 13:16:15 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  3. pkg/kubelet/util/nodelease.go

    Navid Shaikh <******@****.***> 1614926718 +0530
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 07 15:47:46 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/ExpectMaxNConcurrentRequests.java

                    released.add(resourceHandler);
                    resourceHandler.released();
                }
                doRelease(count);
            } finally {
                lock.unlock();
            }
        }
    
        private void doRelease(int count) {
            waitingFor = Math.min(notReceived.size(), waitingFor + count);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  5. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	nodeStartupGracePeriod time.Duration
    
    	// Controller will not proactively sync node health, but will monitor node
    	// health signal updated from kubelet. There are 2 kinds of node healthiness
    	// signals: NodeStatus and NodeLease. If it doesn't receive update for this amount
    	// of time, it will start posting "NodeReady==ConditionUnknown". The amount of
    	// time before which Controller start evicting pods is controlled via flag
    	// 'pod-eviction-timeout'.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/init.go

    		if gpdir == "" {
    			continue
    		}
    		if rel := search.InDir(dir, filepath.Join(gpdir, "src")); rel != "" && rel != "." {
    			path := filepath.ToSlash(rel)
    			// gorelease will alert users publishing their modules to fix their paths.
    			if err := module.CheckImportPath(path); err != nil {
    				badPathErr = err
    				break
    			}
    			return path, nil
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.17.md

    - Promote NodeLease feature to GA.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 28 10:44:33 UTC 2021
    - 346.2K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.12.md

    - kubelet: Users can now enable the alpha NodeLease feature gate to have the Kubelet create and periodically renew a Lease in the kube-node-lease namespace. The lease duration defaults to 40s, and can be configured via the kubelet.config.k8s.io/v1beta1.KubeletConfiguration's NodeLeaseDurationSeconds...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 293.8K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.16.md

    ### Node
    
    - Remove PIDs cgroup controller requirement when related feature gates are disabled
      ([#79073](https://github.com/kubernetes/kubernetes/pull/79073), [@rafatio](https://github.com/rafatio))
    - Fix kubelet NodeLease potential performance issues. Kubelet now will try to update lease using cached one instead of get from API Server every time. ([#81174](https://github.com/kubernetes/kubernetes/pull/81174), [@answer1991](https://github.com/answer1991))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 11 10:00:57 UTC 2021
    - 345.2K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.23.md

    - Remove `NodeLease` feature gate that was graduated and locked to stable in 1.17 release. ([#105222](https://github.com/kubernetes/kubernetes/pull/105222), [@cyclinder](https://github.com/cyclinder))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
Back to top