Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for statusMap (0.12 sec)

  1. cmd/bucket-replication-utils.go

    func (v VersionPurgeStatusType) Pending() bool {
    	return v == Pending || v == Failed
    }
    
    type replicationResyncer struct {
    	// map of bucket to their resync status
    	statusMap      map[string]BucketReplicationResyncStatus
    	workerSize     int
    	resyncCancelCh chan struct{}
    	workerCh       chan struct{}
    	sync.RWMutex
    }
    
    const (
    	replicationDir      = ".replication"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/BuildStatusRendererTest.groovy

            renderer.onOutput(event1)
            renderer.onOutput(updateNow())
    
            then:
            statusBar.display == "<-------------> 0% INITIALIZING [0ms]"
    
            when:
            currentTimeMs += 1000
            renderer.onOutput(event2)
            renderer.onOutput(updateNow())
    
            then:
            statusBar.display == "<-------------> 0% INITIALIZING [1s]"
        }
    
        def "hides timer between build phases"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  3. plugin/pkg/admission/noderestriction/admission.go

    	}
    }
    
    func resourceClaimStatusesEqual(statusA, statusB []api.PodResourceClaimStatus) bool {
    	if len(statusA) != len(statusB) {
    		return false
    	}
    	// In most cases, status entries only get added once and not modified.
    	// But this cannot be guaranteed, so for the sake of correctness in all
    	// cases this code here has to check.
    	for i := range statusA {
    		if statusA[i].Name != statusB[i].Name {
    			return false
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_solaris.go

    func (w WaitStatus) StopSignal() syscall.Signal {
    	if !w.Stopped() {
    		return -1
    	}
    	return syscall.Signal(w>>shift) & 0xFF
    }
    
    func (w WaitStatus) TrapCause() int { return -1 }
    
    //sys	wait4(pid int32, statusp *_C_int, options int, rusage *Rusage) (wpid int32, err error)
    
    func Wait4(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (int, error) {
    	var status _C_int
    	rpid, err := wait4(int32(pid), &status, options, rusage)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 31.1K bytes
    - Viewed (0)
Back to top