Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for deselect (0.08 sec)

  1. pkg/kubelet/status/status_manager_test.go

    	if numUpdates != expectedUpdates {
    		t.Errorf("unexpected number of updates %d, expected %d", numUpdates, expectedUpdates)
    	}
    }
    
    func (m *manager) consumeUpdates() int {
    	updates := 0
    	for {
    		select {
    		case <-m.podStatusChannel:
    			updates += m.syncBatch(false)
    		default:
    			return updates
    		}
    	}
    }
    
    func TestNewStatus(t *testing.T) {
    	syncer := newTestManager(&fake.Clientset{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/conversion.go

    const NamespaceNameLabel = "kubernetes.io/metadata.name"
    
    // toNamespaceSet converts a set of namespace labels to a Set that can be used to select against.
    func toNamespaceSet(name string, labels map[string]string) klabels.Set {
    	// If namespace label is not set, implicitly insert it to support older Kubernetes versions
    	if labels[NamespaceNameLabel] == name {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  3. cmd/erasure-object.go

    			}
    			if ok {
    				continue
    			}
    		} // in all other cases metadata is corrupt, do not read from it.
    
    		onlineMeta[i] = FileInfo{}
    		onlineDisks[i] = nil
    	}
    
    	select {
    	case mrfCheck <- fi.ShallowCopy():
    	case <-ctx.Done():
    		return fi, onlineMeta, onlineDisks, toObjectErr(ctx.Err(), bucket, object)
    	}
    
    	return fi, onlineMeta, onlineDisks, nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go

    	runtime.ExitSyscall()
    	if int64(r0) == -1 {
    		err = errnoErr2(e1, e2)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Select(nmsgsfds int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (ret int, err error) {
    	runtime.EnterSyscall()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 88.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/regalloc.go

    				}
    				if phiRegs[i] != noRegister {
    					continue
    				}
    				m := s.compatRegs(v.Type) &^ phiUsed &^ s.used
    				// If one of the other inputs of v is in a register, and the register is available,
    				// select this register, which can save some unnecessary copies.
    				for i, pe := range b.Preds {
    					if i == idx {
    						continue
    					}
    					ri := noRegister
    					for _, er := range s.endRegs[pe.b.ID] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
Back to top