Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 167 for averages (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/DisambiguateArtifactTransformIntegrationTest.groovy

            when:
            succeeds "resolve"
    
            then:
            output.count("Minifying") == 1
            output.count('minified=true')
            output.count('Sizing') == 0
        }
    
        def "disambiguation leverages schema rules before doing it size based"() {
            given:
            createDirs("child")
            settingsFile << """
    include('child')
    """
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:39 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  5. 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)
  6. 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 (1)
  7. src/os/exec/exec.go

    func (w *prefixSuffixSaver) Write(p []byte) (n int, err error) {
    	lenp := len(p)
    	p = w.fill(&w.prefix, p)
    
    	// Only keep the last w.N bytes of suffix data.
    	if overage := len(p) - w.N; overage > 0 {
    		p = p[overage:]
    		w.skipped += int64(overage)
    	}
    	p = w.fill(&w.suffix, p)
    
    	// w.suffix is full now if p is non-empty. Overwrite it in a circle.
    	for len(p) > 0 { // 0, 1, or 2 iterations.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  8. tests/query_test.go

    	}
    
    	DB.Create(&users)
    
    	var userAges []int
    	err := DB.Model(&User{}).Where("name like ?", "pluck_with_select%").Select("age + 1 as user_age").Pluck("user_age", &userAges).Error
    	if err != nil {
    		t.Fatalf("got error when pluck user_age: %v", err)
    	}
    
    	sort.Ints(userAges)
    
    	AssertEqual(t, userAges, []int{26, 27})
    }
    
    func TestSelectWithVariables(t *testing.T) {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 49.8K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/stream_executor/stream_executor.h

      // the device's own memory, not for transfers between the host and device.)
      // Negative values are treated as "unset".
      int64_t (*get_memory_bandwidth)(const SP_Device* device);
    
      // [Optional]
      // Estimate of average number of floating point operations per second for
      // this device * 10e-9.
      // Negative values are treated as "unset".
      double (*get_gflops)(const SP_Device* device);
    } SP_DeviceFns;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 24 08:40:35 UTC 2022
    - 21.6K 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