Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 166 for avevate (0.33 sec)

  1. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/teamcity.adoc

    JetBrains offers several licensing options that allow you to scale TeamCity to your needs.
    In this setup, we'll use TeamCity Professional, a free fully functional edition suitable for average projects.
    In the course of this section, you'll learn how to set up TeamCity, create a build configuration to pull the source code from GitHub and run the Gradle build.
    
    === Install and start TeamCity
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. pkg/controller/podautoscaler/horizontal.go

    	}
    
    	if target.AverageUtilization == nil {
    		errMsg := "invalid resource metric source: neither an average utilization target nor an average value (usage) target was set"
    		return 0, nil, time.Time{}, "", condition, fmt.Errorf(errMsg)
    	}
    
    	targetUtilization := *target.AverageUtilization
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/cache/CacheStats.java

       */
      @SuppressWarnings("GoodTime") // should return a java.time.Duration
      public long totalLoadTime() {
        return totalLoadTime;
      }
    
      /**
       * Returns the average time spent loading new values. This is defined as {@code totalLoadTime /
       * (loadSuccessCount + loadExceptionCount)}.
       *
       * <p><b>Note:</b> the values of the metrics are undefined in case of overflow (though it is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Aug 07 02:38:22 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/CacheStats.java

       */
      @SuppressWarnings("GoodTime") // should return a java.time.Duration
      public long totalLoadTime() {
        return totalLoadTime;
      }
    
      /**
       * Returns the average time spent loading new values. This is defined as {@code totalLoadTime /
       * (loadSuccessCount + loadExceptionCount)}.
       *
       * <p><b>Note:</b> the values of the metrics are undefined in case of overflow (though it is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Aug 07 02:38:22 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.proto

      // Next ID: 7
      enum CalibrationMethod {
        CALIBRATION_METHOD_UNSPECIFIED = 0;
        // Use the min, max values of all sample datasets.
        CALIBRATION_METHOD_MIN_MAX = 1;
        // Use the average of min, max values in each sample dataset.
        CALIBRATION_METHOD_AVERAGE_MIN_MAX = 2;
        // Use the min/max percentile value of histogram.
        CALIBRATION_METHOD_HISTOGRAM_PERCENTILE = 3;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. src/encoding/json/bench_test.go

    							cachedTypeFields(t)
    						}
    						wg.Done()
    					}(j)
    				}
    				wg.Wait()
    			}
    		})
    	}
    
    	// HitTypes tests the performance of repeated cache hits.
    	// This measures the average time of each cache lookup.
    	for nt := 1; nt <= maxTypes; nt *= 10 {
    		// Pre-warm a cache of size nt.
    		clearCache()
    		for _, t := range types[:nt] {
    			cachedTypeFields(t)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:00:17 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  7. src/math/big/prime.go

    			return len(n) == 1 && n[0] == p+2
    		}
    		if p == 40 {
    			// We'll never find (d/n) = -1 if n is a square.
    			// If n is a non-square we expect to find a d in just a few attempts on average.
    			// After 40 attempts, take a moment to check if n is indeed a square.
    			t1 = t1.sqrt(n)
    			t1 = t1.sqr(t1)
    			if t1.cmp(n) == 0 {
    				return false
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 02 14:43:52 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    	stats.highWatermark = obs.Max
    	if obs.Duration <= 0 {
    		return
    	}
    	if math.IsNaN(obs.Deviation) {
    		obs.Deviation = 0
    	}
    	stats.avg = obs.Average
    	stats.stdDev = obs.Deviation
    	envelope := obs.Average + obs.Deviation
    	stats.smoothed = math.Max(envelope, seatDemandSmoothingCoefficient*stats.smoothed+(1-seatDemandSmoothingCoefficient)*envelope)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    						},
    					},
    					"currentCPUUtilizationPercentage": {
    						SchemaProps: spec.SchemaProps{
    							Description: "currentCPUUtilizationPercentage is the current average CPU utilization over all pods, represented as a percentage of requested CPU, e.g. 70 means that an average pod is using now 70% of its requested CPU.",
    							Type:        []string{"integer"},
    							Format:      "int32",
    						},
    					},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
  10. cmd/storage-datatypes.go

    	Rotational bool
    	Metrics    DiskMetrics
    	Error      string // carries the error over the network
    }
    
    // DiskMetrics has the information about XL Storage APIs
    // the number of calls of each API and the moving average of
    // the duration of each API.
    type DiskMetrics struct {
    	LastMinute              map[string]AccElem `json:"apiLatencies,omitempty"`
    	APICalls                map[string]uint64  `json:"apiCalls,omitempty"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top