Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 3,877 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. releasenotes/notes/agent-startup.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: networking
    issue: []
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 14 23:14:49 UTC 2020
    - 183 bytes
    - Viewed (0)
  3. 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)
  4. android/guava-tests/benchmark/com/google/common/collect/MapsMemoryBenchmark.java

      /**
       * A map of contents pre-created before experiment starts to only measure map creation cost. The
       * implementation for the creation of contents is independent and could be different from that of
       * the map under test.
       */
      Map<Element, Element> contents;
    
      /** Map pre-created before experiment starts to only measure iteration cost during experiment. */
      Map<Element, Element> map;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 20 15:07:46 UTC 2019
    - 3.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. .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)
Back to top