Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 57 for statistics (0.17 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/BuildResultLoggerIntegrationTest.groovy

                    }
                }
    
                task noActions(dependsOn: executedTask) {}
            """
        }
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "task outcome statistics are reported"() {
            when:
            run "adHocTask", "executedTask"
    
            then:
            result.assertTasksNotSkipped(":adHocTask", ":executedTask")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/integTest/groovy/org/gradle/internal/work/ProjectLockStatisticsIntegrationTest.groovy

     */
    
    package org.gradle.internal.work
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    
    class ProjectLockStatisticsIntegrationTest extends AbstractIntegrationSpec {
        def "displays project lock statistics after build finishes"() {
            createDirs("child")
            settingsFile << """
                include ':child'
            """
            buildFile << """
                apply plugin: "java"
    
                task wait {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/exec/BuildOutcomeReportingBuildActionRunner.java

     * limitations under the License.
     */
    
    package org.gradle.launcher.exec;
    
    import org.gradle.StartParameter;
    import org.gradle.api.internal.tasks.execution.statistics.TaskExecutionStatisticsEventAdapter;
    import org.gradle.api.logging.Logging;
    import org.gradle.initialization.BuildRequestMetaData;
    import org.gradle.internal.buildevents.BuildLogger;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. src/net/internal/socktest/switch.go

    	sotab Sockets
    	stats stats
    }
    
    func (sw *Switch) init() {
    	sw.fltab = make(map[FilterType]Filter)
    	sw.sotab = make(Sockets)
    	sw.stats = make(stats)
    }
    
    // Stats returns a list of per-cookie socket statistics.
    func (sw *Switch) Stats() []Stat {
    	var st []Stat
    	sw.smu.RLock()
    	for _, s := range sw.stats {
    		ns := *s
    		st = append(st, ns)
    	}
    	sw.smu.RUnlock()
    	return st
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/measure/DataSeriesTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.performance.measure
    
    import spock.lang.Specification
    
    class DataSeriesTest extends Specification {
        def "can calculate statistics for samples"() {
            def v1 = DataAmount.kbytes(10)
            def v2 = DataAmount.kbytes(20)
            def v3 = DataAmount.kbytes(30)
            def series = new DataSeries([v1, v2, v3])
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/cc/pre_calibration.h

    // Performs pre-calibration graph transformation as part of post-training
    // static-range quantization.
    
    // The resulting `ModuleOp` contains `TF::CustomAggregatorOp`s for collecting
    // quantization statistics, along with `TF::XlaCallModuleOp`s that correspond to
    // lifted quantizable functions.
    class PreCalibrationComponent : public Component {
     public:
      // Name of the post-training quantization pre-calibration step. Used for
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/cc/post_calibration.h

    // static-range quantization.
    //
    // The resulting `ModuleOp` contains quantized StableHLO ops serialized in
    // `TF::XlaCallModuleOp`s. They are quantized using the statistics collected
    // after the calibration step, corresponding to each `TF::CustomAggregatorOp`s
    // in the input module op.
    class PostCalibrationComponent : public Component {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 12:53:33 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. platforms/software/resources/src/main/java/org/gradle/internal/resource/transfer/DefaultExternalResourceConnector.java

            }
    
            @Override
            public String toString() {
                return "External resources access stats are not recorded. Run Gradle with -D" + SYSPROP_KEY + "=(count|trace) to record statistics";
            }
        }
    
        private static class CountingStats implements ExternalResourceAccessStats {
            private final AtomicInteger resourceCount = new AtomicInteger();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/op_stat_pass.cc

                                std::vector<std::string> accepted_dialects = {})
          : accepted_dialects_(accepted_dialects), os_(os), total_ops_(0) {}
    
      // Prints the resultant operation statistics pos_t iterating over the module.
      void runOnOperation() override;
    
      // Prints summary of op stats.
      void PrintSummary();
    
      // Keeps track of dtype counts per op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/FileWatcherRegistry.java

         */
        @CheckReturnValue
        SnapshotHierarchy updateVfsAfterBuildFinished(SnapshotHierarchy root);
    
        /**
         * Get statistics about the received changes.
         */
        FileWatchingStatistics getAndResetStatistics();
    
        /**
         * Configures debug logging.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top