Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 197 for statistics (0.26 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/tasks/execution/statistics/TaskExecutionStatisticsEventAdapter.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.internal.tasks.execution.statistics;
    
    import org.gradle.api.internal.project.taskfactory.TaskIdentity;
    import org.gradle.api.internal.tasks.TaskStateInternal;
    import org.gradle.api.tasks.TaskState;
    import org.gradle.execution.taskgraph.TaskListenerInternal;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 27 16:17:10 UTC 2020
    - 2K 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. cmd/bucket-replication-stats.go

    			r.qCache.update()
    		}
    	}
    }
    
    // Delete deletes in-memory replication statistics for a bucket.
    func (r *ReplicationStats) Delete(bucket string) {
    	if r == nil {
    		return
    	}
    
    	r.Lock()
    	defer r.Unlock()
    	delete(r.Cache, bucket)
    }
    
    // UpdateReplicaStat updates in-memory replica statistics with new values.
    func (r *ReplicationStats) UpdateReplicaStat(bucket string, n int64) {
    	if r == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. guava/src/com/google/common/cache/package-info.java

     *
     * <p>The core interface used to represent caches is {@link Cache}. In-memory caches can be
     * configured and created using {@link CacheBuilder}, with cache entries being loaded by {@link
     * CacheLoader}. Statistics about cache performance are exposed using {@link CacheStats}.
     *
     * <p>See the Guava User Guide article on <a
     * href="https://github.com/google/guava/wiki/CachesExplained">caches</a>.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 23 19:57:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. pkg/kubelet/server/stats/resource_analyzer.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package stats
    
    import (
    	"k8s.io/client-go/tools/record"
    	"time"
    )
    
    // ResourceAnalyzer provides statistics on node resource consumption
    type ResourceAnalyzer interface {
    	Start()
    
    	fsResourceAnalyzerInterface
    	SummaryProvider
    }
    
    // resourceAnalyzer implements ResourceAnalyzer
    type resourceAnalyzer struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 09 16:16:37 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  7. cmd/bucket-stats.go

    		idx := (l.LastMin + 1) % 60
    		l.Totals[idx] = AccElem{}
    		l.LastMin++
    	}
    }
    
    // BucketStatsMap captures bucket statistics for all buckets
    type BucketStatsMap struct {
    	Stats     map[string]BucketStats
    	Timestamp time.Time
    }
    
    // BucketStats bucket statistics
    type BucketStats struct {
    	Uptime           int64                  `json:"uptime"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top