Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for toRelease (0.34 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. 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)
  4. 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)
  5. 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)
  6. pkg/generated/openapi/zz_generated.openapi.go

    						},
    					},
    					"nodeLeaseDurationSeconds": {
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top