Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 3,516 for measure (0.14 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/tasks/TaskExecutionContext.java

        /**
         * Gets and clears the context of the build operation designed to measure the time taken
         * by capturing input snapshotting and cache key calculation.
         */
        Optional<BuildOperationContext> removeSnapshotTaskInputsBuildOperationContext();
    
        /**
         * Sets the context for the build operation designed to measure the time taken
         * by capturing input snapshotting and cache key calculation.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 24 13:24:41 UTC 2022
    - 2K bytes
    - Viewed (0)
  2. pkg/monitoring/monitoring.go

    type Metric interface {
    	// Increment records a value of 1 for the current measure. For Sums,
    	// this is equivalent to adding 1 to the current value. For Gauges,
    	// this is equivalent to setting the value to 1. For Distributions,
    	// this is equivalent to making an observation of value 1.
    	Increment()
    
    	// Decrement records a value of -1 for the current measure. For Sums,
    	// this is equivalent to subtracting -1 to the current value. For Gauges,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/ResultSpecification.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.performance
    
    import org.gradle.performance.measure.Amount
    import org.gradle.performance.measure.Duration
    import org.gradle.performance.measure.MeasuredOperation
    import org.gradle.performance.results.BuildDisplayInfo
    import org.gradle.performance.results.CrossBuildPerformanceResults
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. src/internal/zstd/testdata/1890a371.gettysburg.txt-100x.zst

    work which they who fought here have thus far so nobly advanced. It is rather for us to be here dedicated to the great task remaining before us - that from these honored dead we take increased devotion to that cause for which they gave the last full measure of devotion - that we here highly resolve that these dead shall not have died in vain - that this nation, under God, shall have a new birth of freedom - and that government of the people, by the people, for the people, shall not perish from this earth....
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 14:35:13 UTC 2023
    - 826 bytes
    - Viewed (0)
  5. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/buildcache/AbstractTaskOutputCachingPerformanceTest.groovy

            context.iteration == invocationSettings.buildCount && context.phase == Phase.MEASURE
        }
    
        boolean isRunWithCache(BuildContext context) {
            context.iteration >= firstWarmupWithCache || context.phase == Phase.MEASURE
        }
    
        boolean isFirstRunWithCache(BuildContext context) {
            context.iteration == firstWarmupWithCache && context.phase == Phase.WARM_UP
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/HtmlPageGenerator.java

    import com.google.common.base.Charsets;
    import com.google.common.base.Joiner;
    import com.google.common.collect.Lists;
    import com.googlecode.jatl.Html;
    import org.gradle.performance.measure.Amount;
    import org.gradle.performance.measure.DataSeries;
    import org.gradle.performance.measure.Duration;
    import org.gradle.performance.results.MeasuredOperationList;
    import org.gradle.reporting.ReportRenderer;
    import org.gradle.util.GradleVersion;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/measure/MeasuredOperation.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 groovy.transform.CompileStatic
    import groovy.transform.ToString
    
    @ToString(includeNames = true)
    @CompileStatic
    class MeasuredOperation {
        Amount<Duration> totalTime
        Exception exception
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 858 bytes
    - Viewed (0)
  8. .github/ISSUE_TEMPLATE/12-telemetry.yml

      attributes:
        label: Summary
        description: >
          What change are you proposing to the upload configuration, and why?
          For new upload configuration, which new counters will be collected, what
          do they measure, and why is it important to collect them?
          Note that uploaded data must not carry sensitive user information.
          See [go.dev/doc/telemetry#proposals](https://go.dev/doc/telemetry#proposals)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 19:58:26 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top