Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,076 for unassigned (0.22 sec)

  1. pkg/controller/controller_utils.go

    func (s ActivePods) Len() int      { return len(s) }
    func (s ActivePods) Swap(i, j int) { s[i], s[j] = s[j], s[i] }
    
    func (s ActivePods) Less(i, j int) bool {
    	// 1. Unassigned < assigned
    	// If only one of the pods is unassigned, the unassigned one is smaller
    	if s[i].Spec.NodeName != s[j].Spec.NodeName && (len(s[i].Spec.NodeName) == 0 || len(s[j].Spec.NodeName) == 0) {
    		return len(s[i].Spec.NodeName) == 0
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 12 15:34:44 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  2. pkg/registry/core/pod/storage/storage.go

    			return nil, fmt.Errorf("unexpected object: %#v", obj)
    		}
    		if pod.DeletionTimestamp != nil {
    			return nil, fmt.Errorf("pod %s is being deleted, cannot be assigned to a host", pod.Name)
    		}
    		if pod.Spec.NodeName != "" {
    			return nil, fmt.Errorf("pod %v is already assigned to node %q", pod.Name, pod.Spec.NodeName)
    		}
    		// Reject binding to a scheduling un-ready Pod.
    		if len(pod.Spec.SchedulingGates) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/schedule.go

    	// check that depends on the i-th store gets store number 3*i+1.
    	// Other values that depends on the i-th store gets store number 3*i+2.
    	// Special case: 0 -- unassigned, 1 or 2 -- the latest store it depends
    	// is in the previous block (or no store at all, e.g. value is Const).
    	// First we assign the number to all stores by walking back the store chain,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. operator/README.md

    # Istio Operator
    
    The istio/operator repo is part of istio/istio from 1.5 onwards.
    You can [contribute](../CONTRIBUTING.md) by picking an
    [unassigned open issue](https://github.com/istio/istio/issues?q=is%3Aissue+is%3Aopen+label%3Aarea%2Fenvironments%2Foperator+no%3Aassignee),
    creating a [bug or feature request](../BUGS-AND-FEATURE-REQUESTS.md),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Sep 17 08:27:52 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/config.go

    				return fmt.Errorf("failed configuring port %s: instance port already used %d", p.Name, p.WorkloadPort)
    			}
    			portGen.Instance.SetUsed(p.WorkloadPort)
    		}
    	}
    
    	// Second pass: try to make unassigned instance ports match service port.
    	for i, p := range c.Ports {
    		if p.WorkloadPort == 0 && p.ServicePort > 0 && !portGen.Instance.IsUsed(p.ServicePort) {
    			c.Ports[i].WorkloadPort = p.ServicePort
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/cpumanager/policy_static.go

    func (p *staticPolicy) GetAllocatableCPUs(s state.State) cpuset.CPUSet {
    	return p.topology.CPUDetails.CPUs().Difference(p.reservedCPUs)
    }
    
    // GetAvailableCPUs returns the set of unassigned CPUs minus the reserved set.
    func (p *staticPolicy) GetAvailableCPUs(s state.State) cpuset.CPUSet {
    	return s.GetDefaultCPUSet().Difference(p.reservedCPUs)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 13:16:15 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  7. src/net/http/h2_bundle.go

    	http2cipher_TLS_DH_anon_WITH_CAMELLIA_256_CBC_SHA256 uint16 = 0x00C5
    	// Unassigned uint16 =  0x00C6-FE
    	http2cipher_TLS_EMPTY_RENEGOTIATION_INFO_SCSV uint16 = 0x00FF
    	// Unassigned uint16 =  0x01-55,*
    	http2cipher_TLS_FALLBACK_SCSV uint16 = 0x5600
    	// Unassigned                                   uint16 = 0x5601 - 0xC000
    	http2cipher_TLS_ECDH_ECDSA_WITH_NULL_SHA                 uint16 = 0xC001
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  8. src/internal/runtime/atomic/unaligned.go

    // Copyright 2020 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package atomic
    
    func panicUnaligned() {
    	panic("unaligned 64-bit atomic operation")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 246 bytes
    - Viewed (0)
  9. src/net/netip/netip_test.go

    			ip:            unicast6,
    			globalUnicast: true,
    		},
    		{
    			name:          "unicast v6AddrZone",
    			ip:            unicastZone6,
    			globalUnicast: true,
    		},
    		{
    			name:          "unicast v6Addr unassigned",
    			ip:            unicast6Unassigned,
    			globalUnicast: true,
    		},
    		{
    			name:               "multicast v4Addr",
    			ip:                 multicast4,
    			linkLocalMulticast: true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  10. cmd/streaming-v4-unsigned.go

    // The s3ChunkedReader returns io.EOF when the final 0-length chunk is read.
    func newUnsignedV4ChunkedReader(req *http.Request, trailer bool) (io.ReadCloser, APIErrorCode) {
    	if trailer {
    		// Discard anything unsigned.
    		req.Trailer = make(http.Header)
    		trailers := req.Header.Values(awsTrailerHeader)
    		for _, key := range trailers {
    			req.Trailer.Add(key, "")
    		}
    	} else {
    		req.Trailer = nil
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 06 02:53:12 UTC 2023
    - 6.1K bytes
    - Viewed (0)
Back to top