Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 872 for incremented (0.26 sec)

  1. plugin/pkg/admission/resourcequota/admission_test.go

    		t.Errorf("Expected actions:\n%v\n but got:\n%v\nDifference:\n%v", expectedActionSet, actionSet, expectedActionSet.Difference(actionSet))
    	}
    
    	// verify usage decremented the loadbalancer, and incremented the nodeport, but kept the service the same.
    	decimatedActions := removeListWatch(kubeClient.Actions())
    	lastActionIndex := len(decimatedActions) - 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  2. src/cmd/go/script_test.go

    	counters := readCounters(t, telemetryDir)
    	if _, ok := scriptGoInvoked.Load(testing.TB(t)); ok {
    		if !disabledOnPlatform && len(counters) == 0 {
    			t.Fatal("go was invoked but no counters were incremented")
    		}
    	}
    }
    
    // Copied from https://go.googlesource.com/telemetry/+/5f08a0cbff3f/internal/telemetry/mode.go#122
    // TODO(go.dev/issues/66205): replace this with the public API once it becomes available.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. pkg/kubelet/metrics/metrics.go

    			StabilityLevel: metrics.ALPHA,
    		},
    		[]string{"lifecycle", "config", "static"},
    	)
    	// OrphanedRuntimePodTotal is incremented every time a pod is detected in the runtime without being known to the pod worker first
    	OrphanedRuntimePodTotal = metrics.NewCounter(
    		&metrics.CounterOpts{
    			Subsystem:      KubeletSubsystem,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  4. src/runtime/mstats.go

    // function.
    //
    //go:nosplit
    func (m *consistentHeapStats) acquire() *heapStatsDelta {
    	if pp := getg().m.p.ptr(); pp != nil {
    		seq := pp.statsSeq.Add(1)
    		if seq%2 == 0 {
    			// Should have been incremented to odd.
    			print("runtime: seq=", seq, "\n")
    			throw("bad sequence number")
    		}
    	} else {
    		lock(&m.noPLock)
    	}
    	gen := m.gen.Load() % 3
    	return &m.stats[gen]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  5. src/index/suffixarray/sais2.go

    	// then the high bit of the inversion will be set,
    	// making it clearly not a valid length (it would be a negative one).
    	//
    	// cx holds the pre-inverted encoding (the packed incremented bytes).
    	cx := uint64(0) // byte-only
    
    	// This stanza (until the blank line) is the "LMS-substring iterator",
    	// described in placeLMS_8_64 above, with one line added to maintain cx.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  6. src/runtime/sema.go

    //
    // It must be kept in sync with the sync package.
    type notifyList struct {
    	// wait is the ticket number of the next waiter. It is atomically
    	// incremented outside the lock.
    	wait atomic.Uint32
    
    	// notify is the ticket number of the next waiter to be notified. It can
    	// be read outside the lock, but is only written to with lock held.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    )
    
    // A file is a counter file.
    type file struct {
    	// Linked list of all known counters.
    	// (Linked list insertion is easy to make lock-free,
    	// and we don't want the initial counters incremented
    	// by a program to cause significant contention.)
    	counters atomic.Pointer[Counter] // head of list
    	end      Counter                 // list ends at &end instead of nil
    
    	mu         sync.Mutex
    	namePrefix string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. src/runtime/netpoll.go

    	// PollDesc objects must be type-stable,
    	// because we can get ready notification from epoll/kqueue
    	// after the descriptor is closed/reused.
    	// Stale notifications are detected using seq variable,
    	// seq is incremented when deadlines are changed or descriptor is reused.
    }
    
    var (
    	netpollInitLock mutex
    	netpollInited   atomic.Uint32
    
    	pollcache      pollCache
    	netpollWaiters atomic.Uint32
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  9. src/runtime/extern.go

    	Currently, it is:
    		gc # @#s #%: #+#+# ms clock, #+#/#/#+# ms cpu, #->#-># MB, # MB goal, # MB stacks, #MB globals, # P
    	where the fields are as follows:
    		gc #         the GC number, incremented at each GC
    		@#s          time in seconds since program start
    		#%           percentage of time spent in GC since program start
    		#+...+#      wall-clock/CPU times for the phases of the GC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  10. src/runtime/runtime2.go

    	locksHeld    [10]heldLockInfo
    }
    
    type p struct {
    	id          int32
    	status      uint32 // one of pidle/prunning/...
    	link        puintptr
    	schedtick   uint32     // incremented on every scheduler call
    	syscalltick uint32     // incremented on every system call
    	sysmontick  sysmontick // last tick observed by sysmon
    	m           muintptr   // back-link to associated m (nil if idle)
    	mcache      *mcache
    	pcache      pageCache
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
Back to top