Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,877 for measure (0.14 sec)

  1. cmd/speedtest.go

    				totalDownloadTTFB = append(totalDownloadTTFB, throughputHighestResults[i].DownloadTTFB...)
    			}
    
    			result.PUTStats.Response = totalUploadTimes.Measure()
    			result.GETStats.Response = totalDownloadTimes.Measure()
    			result.GETStats.TTFB = totalDownloadTTFB.Measure()
    
    			result.Size = opts.objectSize
    			result.Disks = globalEndpoints.NEndpoints()
    			result.Servers = len(globalNotificationSys.peerClients) + 1
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 09:45:10 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/resources/ProjectLockStatistics.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.resources;
    
    public interface ProjectLockStatistics {
        void measure(Runnable runnable);
    
        long getTotalWaitTimeMillis();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 773 bytes
    - Viewed (0)
  3. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/package-info.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Plugins which measure and enforce code quality.
     */
    @NonNullApi
    package org.gradle.api.plugins.quality;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 763 bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/measure/UnitsTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.performance.measure
    
    import spock.lang.Specification
    
    class UnitsTest extends Specification {
        def "can compare units of same quantity"() {
            def base = Units.base(Void.class, "base")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. src/testing/allocs.go

    // runs will then be measured and returned.
    //
    // AllocsPerRun sets GOMAXPROCS to 1 during its measurement and will restore
    // it before returning.
    func AllocsPerRun(runs int, f func()) (avg float64) {
    	defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(1))
    
    	// Warm up the function
    	f()
    
    	// Measure the starting statistics
    	var memstats runtime.MemStats
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 02 00:13:47 UTC 2016
    - 1.4K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise-plugin-performance/src/testFixtures/groovy/org/gradle/performance/AbstractBuildScanPluginPerformanceTest.groovy

    import org.gradle.performance.fixture.GradleInvocationSpec
    import org.gradle.performance.fixture.PerformanceTestIdProvider
    import org.gradle.performance.measure.Amount
    import org.gradle.performance.measure.MeasuredOperation
    import org.gradle.performance.results.BaselineVersion
    import org.gradle.performance.results.BuildScanResultsStore
    import org.gradle.performance.results.CrossBuildPerformanceResults
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:56 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. test/shift3.go

    // license that can be found in the LICENSE file.
    
    // Test that the compiler's noder uses the correct type
    // for RHS shift operands that are untyped. Must compile;
    // run for good measure.
    
    package main
    
    import (
    	"fmt"
    	"math"
    )
    
    func f(x, y int) {
    	if x != y {
    		panic(fmt.Sprintf("%d != %d", x, y))
    	}
    }
    
    func main() {
    	var x int = 1
    	f(x<<1, 2)
    	f(x<<1., 2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 07 17:19:55 UTC 2022
    - 834 bytes
    - Viewed (0)
  8. pkg/controller/replicaset/metrics/metrics.go

    		Name:      "sorting_deletion_age_ratio",
    		Help: "The ratio of chosen deleted pod's ages to the current youngest pod's age (at the time). Should be <2. " +
    			"The intent of this metric is to measure the rough efficacy of the LogarithmicScaleDown feature gate's effect on " +
    			"the sorting (and deletion) of pods when a replicaset scales down. This only considers Ready pods when calculating and reporting.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 15:28:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_performance.adoc

    certain size include parallel sections to utilize multiple agents. With parallel pipelines you can measure the wall-clock time it takes for a set of changes to go from having been pushed to version control to being built, verified and deployed. The build cache's effect in this case can be measured in the reduction of the time developers have to wait for feedback from CI.
    
    You can also measure the cumulative time your build agents spent building a changeset, which will give you a sense of the...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/EmptyLineTrimmerOutputNormalizer.groovy

    import java.util.regex.Pattern
    
    /**
     * Allows a blank empty line in your sample output to match a blank line with any number of spaces in the actual output.
     *
     * This exists to avoid having to measure out "prefix" whitespace indentation and match it exactly in your sample output.
     */
    class EmptyLineTrimmerOutputNormalizer implements OutputNormalizer {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top