Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 84 for statistics (0.33 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/dropped_requests_tracker.go

    	s.currentCount.Store(1)
    
    	// We only consider updating retryAfter when bumping the current second.
    	// However, given that we didn't report anything for the current second,
    	// we recompute it based on statistics from the previous one.
    	s.updateRetryAfterIfNeededLocked(unixTime)
    }
    
    func (s *droppedRequestsStats) updateHistory(unixTime int64, count int64) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 26 13:50:25 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  2. build-logic/profiling/src/main/kotlin/gradlebuild.buildscan.gradle.kts

                        buildScan.value("watchFsStateInvalidatedAtStart", result.isStateInvalidatedAtStartOfBuild.toString())
                        result.statistics?.let {
                            buildScan.value("watchFsEventsReceivedDuringBuild", it.numberOfReceivedEvents.toString())
                            buildScan.value("watchFsRetainedDirectories", it.retainedDirectories.toString())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:29:44 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/hash/LongAdder.java

     * total combined across the variables maintaining the sum.
     *
     * <p>This class is usually preferable to {@link AtomicLong} when multiple threads update a common
     * sum that is used for purposes such as collecting statistics, not for fine-grained synchronization
     * control. Under low update contention, the two classes have similar characteristics. But under
     * high contention, expected throughput of this class is significantly higher, at the expense of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/hash/LongAdder.java

     * total combined across the variables maintaining the sum.
     *
     * <p>This class is usually preferable to {@link AtomicLong} when multiple threads update a common
     * sum that is used for purposes such as collecting statistics, not for fine-grained synchronization
     * control. Under low update contention, the two classes have similar characteristics. But under
     * high contention, expected throughput of this class is significantly higher, at the expense of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/model/FunctionalTestBucketGenerator.kt

                }
                foundTestCoverage?.let {
                    buildProjectClassTimes[it.asId(MASTER_CHECK_CONFIGURATION)]
                }?.also {
                    println("No test statistics found for ${testCoverage.asName()} (${testCoverage.uuid}), re-using the data from ${foundTestCoverage.asName()} (${foundTestCoverage.uuid})")
                }
            }
        }
    }
    
    fun onlyNativeSubprojectsForIntelMacs(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 17:04:41 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_image.go

    	if err != nil {
    		klog.ErrorS(err, "Failed to remove image", "image", image.Image)
    		return err
    	}
    
    	return nil
    }
    
    // ImageStats returns the statistics of the image.
    // Notice that current logic doesn't really work for images which share layers (e.g. docker image),
    // this is a known issue, and we'll address this by getting imagefs stats directly from CRI.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 00:30:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/cache/LongAdder.java

     * total combined across the variables maintaining the sum.
     *
     * <p>This class is usually preferable to {@link AtomicLong} when multiple threads update a common
     * sum that is used for purposes such as collecting statistics, not for fine-grained synchronization
     * control. Under low update contention, the two classes have similar characteristics. But under
     * high contention, expected throughput of this class is significantly higher, at the expense of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  8. src/cmd/cover/testdata/test.go

    // license that can be found in the LICENSE file.
    
    // This program is processed by the cover command, and then testAll is called.
    // The test driver in main.go can then compare the coverage statistics with expectation.
    
    // The word LINE is replaced by the line number in this file. When the file is executed,
    // the coverage processing has changed the line numbers, so we can't use runtime.Caller.
    
    package main
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 4.9K bytes
    - Viewed (0)
  9. guava/src/com/google/common/cache/LongAdder.java

     * total combined across the variables maintaining the sum.
     *
     * <p>This class is usually preferable to {@link AtomicLong} when multiple threads update a common
     * sum that is used for purposes such as collecting statistics, not for fine-grained synchronization
     * control. Under low update contention, the two classes have similar characteristics. But under
     * high contention, expected throughput of this class is significantly higher, at the expense of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  10. src/internal/syscall/windows/registry/key.go

    }
    
    // DeleteKey deletes the subkey path of key k and its values.
    func DeleteKey(k Key, path string) error {
    	return regDeleteKey(syscall.Handle(k), syscall.StringToUTF16Ptr(path))
    }
    
    // A KeyInfo describes the statistics of a key. It is returned by Stat.
    type KeyInfo struct {
    	SubKeyCount     uint32
    	MaxSubKeyLen    uint32 // size of the key's subkey with the longest name, in Unicode characters, not including the terminating zero byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top