Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,961 for measure (0.15 sec)

  1. 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)
  2. 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)
  3. .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)
  4. 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)
  5. 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)
  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. 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)
  8. 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)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/AbstractBuildExperimentRunner.java

     */
    
    package org.gradle.performance.fixture;
    
    import groovy.transform.CompileStatic;
    import joptsimple.OptionParser;
    import org.apache.commons.io.FileUtils;
    import org.gradle.performance.measure.Duration;
    import org.gradle.performance.measure.MeasuredOperation;
    import org.gradle.performance.results.GradleProfilerReporter;
    import org.gradle.performance.results.MeasuredOperationList;
    import org.gradle.performance.results.OutputDirSelector;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceReportScenarioHistoryExecution.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.performance.results
    
    import org.gradle.performance.measure.DataSeries
    
    import java.time.Instant
    
    /**
     * Each instance represents a performance execution, i.e. a row in performance execution database
     */
    class PerformanceReportScenarioHistoryExecution {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top