Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 167 for averages (0.1 sec)

  1. guava/src/com/google/common/math/Quantiles.java

     * you would expect.
     *
     * <p>If required to do a weighted average between an infinity and a finite value, or between an
     * infinite value and itself, the infinite value is returned. If required to do a weighted average
     * between {@link Double#NEGATIVE_INFINITY NEGATIVE_INFINITY} and {@link Double#POSITIVE_INFINITY
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  2. src/runtime/stack.go

    	// https://docs.google.com/document/d/1YDlGIdVTPnmUiTAavlZxBI1d9pwGQgZT7IKFKlIXohQ/edit?usp=sharing
    	// The basic algorithm is to track the average size of stacks
    	// and start goroutines with stack equal to that average size.
    	// Starting at the average size uses at most 2x the space that
    	// an ideal algorithm would have used.
    	// This is just a heuristic to avoid excessive stack growth work
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/maven/ApiMavenResolver.groovy

    import org.eclipse.aether.transfer.TransferResource
    import org.gradle.integtests.fixtures.RepoScriptBlockUtil
    
    /**
     * Performs resolution of dependencies against Maven repositories.
     *
     * <p>This resolver leverages Maven's stable public API for dependency resolution and does
     * not run a full Maven build.</p>
     */
    class ApiMavenResolver {
    
        /**
         * The local repository used for caching resolved artifacts.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/VariantResolvingArtifactSet.java

         *
         * <p>This emulates the normal variant selection process where graph variants are first
         * considered, then artifact variants. We first consider graph variants, which leverages the
         * same algorithm used during graph variant selection. This considers requested and declared
         * capabilities.</p>
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. cmd/metrics-v2.go

    		Name:      avgLinkLatency,
    		Help:      "Average replication link latency in milliseconds",
    		Type:      gaugeMetric,
    	}
    }
    
    func getClusterReplAvgQueuedOperationsMD() MetricDescription {
    	return MetricDescription{
    		Namespace: nodeMetricNamespace,
    		Subsystem: replicationSubsystem,
    		Name:      avgInQueueCount,
    		Help:      "Average number of objects queued for replication since server uptime",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/TestPageGenerator.java

                th().colspan("3").end();
                final String colspanForField = String.valueOf(testHistory.getScenarioCount() * getColumnsForSamples());
                th().colspan(colspanForField).text("Average build time").end();
                th().colspan("8").text("Details").end();
                end();
                tr();
                th().text("Date").end();
                th().text("Branch").end();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14K bytes
    - Viewed (0)
  7. src/sync/pool_test.go

    	}
    
    	// Get pause time stats.
    	slices.Sort(pauses)
    	var total uint64
    	for _, ns := range pauses {
    		total += ns
    	}
    	// ns/op for this benchmark is average STW time.
    	b.ReportMetric(float64(total)/float64(b.N), "ns/op")
    	b.ReportMetric(float64(pauses[len(pauses)*95/100]), "p95-ns/STW")
    	b.ReportMetric(float64(pauses[len(pauses)*50/100]), "p50-ns/STW")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/teamcity.adoc

    JetBrains offers several licensing options that allow you to scale TeamCity to your needs.
    In this setup, we'll use TeamCity Professional, a free fully functional edition suitable for average projects.
    In the course of this section, you'll learn how to set up TeamCity, create a build configuration to pull the source code from GitHub and run the Gradle build.
    
    === Install and start TeamCity
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. pkg/controller/podautoscaler/horizontal.go

    	}
    
    	if target.AverageUtilization == nil {
    		errMsg := "invalid resource metric source: neither an average utilization target nor an average value (usage) target was set"
    		return 0, nil, time.Time{}, "", condition, fmt.Errorf(errMsg)
    	}
    
    	targetUtilization := *target.AverageUtilization
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/cache/CacheStats.java

       */
      @SuppressWarnings("GoodTime") // should return a java.time.Duration
      public long totalLoadTime() {
        return totalLoadTime;
      }
    
      /**
       * Returns the average time spent loading new values. This is defined as {@code totalLoadTime /
       * (loadSuccessCount + loadExceptionCount)}.
       *
       * <p><b>Note:</b> the values of the metrics are undefined in case of overflow (though it is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Aug 07 02:38:22 UTC 2022
    - 12.6K bytes
    - Viewed (0)
Back to top