Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 167 for averages (0.19 sec)

  1. cmd/metrics-resource.go

    		cpuNice:           "CPU nice time",
    		cpuLoad1:          "CPU load average 1min",
    		cpuLoad5:          "CPU load average 5min",
    		cpuLoad15:         "CPU load average 15min",
    		cpuLoad1Perc:      "CPU load average 1min (perentage)",
    		cpuLoad5Perc:      "CPU load average 5min (percentage)",
    		cpuLoad15Perc:     "CPU load average 15min (percentage)",
    	}
    	resourceMetricsGroups = []*MetricsGroupV2{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 17 15:15:13 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/tests/insert_custom_aggregation_ops.mlir

    // AVERAGE-MIN-MAX-CHECK-NEXT:  "tf.AddV2"
    // AVERAGE-MIN-MAX-CHECK-NEXT:  return
    
    // AVERAGE-MIN-MAX-CHECK: func @composite_conv2d_with_relu6_fn
    // AVERAGE-MIN-MAX-CHECK-NEXT:  "tf.Conv2D"
    // AVERAGE-MIN-MAX-CHECK-NEXT:  "tf.Relu6"
    // AVERAGE-MIN-MAX-CHECK-NEXT:  return
    
    // CalibrationOptions(
    //   calibration_method=CALIBRATION_METHOD_HISTOGRAM_PERCENTILE,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 32.1K bytes
    - Viewed (0)
  3. src/image/jpeg/writer_test.go

    	}
    	if _, ok := m1.(*image.Gray); !ok {
    		t.Errorf("got %T, want *image.Gray", m1)
    	}
    	// Compare the average delta to the tolerance level.
    	want := int64(2 << 8)
    	if got := averageDelta(m0, m1); got > want {
    		t.Errorf("average delta too high; got %d, want <= %d", got, want)
    	}
    }
    
    // averageDelta returns the average delta in RGB space. The two images must
    // have the same bounds.
    func averageDelta(m0, m1 image.Image) int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:49:30 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/topologymanager/numa_info.go

    	m2Distance := n.NUMADistances.CalculateAverageFor(m2)
    	// If average distance is the same, take bitmask with more lower-number bits set.
    	if m1Distance == m2Distance {
    		if m1.IsLessThan(m2) {
    			return m1
    		}
    		return m2
    	}
    
    	// Otherwise, return the bitmask with the shortest average distance between NUMA nodes.
    	if m1Distance < m2Distance {
    		return m1
    	}
    
    	return m2
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 16:52:14 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  5. cmd/last-minute.go

    	case sizeLessThan1GiB:
    		return "LESS_THAN_1_GiB"
    	case sizeGreaterThan1GiB:
    		return "GREATER_THAN_1_GiB"
    	default:
    		return "unknown"
    	}
    }
    
    // AccElem holds information for calculating an average value
    type AccElem struct {
    	Total int64
    	Size  int64
    	N     int64
    }
    
    // Add a duration to a single element.
    func (a *AccElem) add(dur time.Duration) {
    	if dur < 0 {
    		dur = 0
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jul 05 17:40:45 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. src/main/assemblies/extension/kibana/fess_log.ndjson

    {"attributes":{"description":"","kibanaSavedObjectMeta":{"searchSourceJSON":"{\"query\":{\"query\":\"\",\"language\":\"kuery\"},\"filter\":[],\"indexRefName\":\"kibanaSavedObjectMeta.searchSourceJSON.index\"}"},"title":"average-response-time","uiStateJSON":"{}","version":1,"visState":"{\"title\":\"average-response-time\",\"type\":\"area\",\"params\":{\"type\":\"area\",\"grid\":{\"categoryLines\":false},\"categoryAxes\":[{\"id\":\"CategoryAxis-1\",\"type\":\"category\",\"position\":\"bottom\",\"show\":true,\"...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Aug 12 01:26:21 UTC 2019
    - 18.2K bytes
    - Viewed (0)
  7. cmd/metrics-v3-system-drive.go

    		allDriveLabels...)
    	driveWaitingIOMD = NewGaugeMD(driveWaitingIO,
    		"Total waiting I/O operations on a drive", allDriveLabels...)
    	driveAPILatencyMD = NewGaugeMD(driveAPILatencyMicros,
    		"Average last minute latency in µs for drive API storage operations",
    		append(allDriveLabels, apiL)...)
    	driveHealthMD = NewGaugeMD(driveHealth,
    		"Drive health (0 = offline, 1 = healthy, 2 = healing)", allDriveLabels...)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun May 12 17:23:50 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. src/math/rand/example_test.go

    	show("Float32", r.Float32(), r.Float32(), r.Float32())
    	show("Float64", r.Float64(), r.Float64(), r.Float64())
    
    	// ExpFloat64 values have an average of 1 but decay exponentially.
    	show("ExpFloat64", r.ExpFloat64(), r.ExpFloat64(), r.ExpFloat64())
    
    	// NormFloat64 values have an average of 0 and a standard deviation of 1.
    	show("NormFloat64", r.NormFloat64(), r.NormFloat64(), r.NormFloat64())
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 16:24:57 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  9. src/math/rand/v2/example_test.go

    	show("Float32", r.Float32(), r.Float32(), r.Float32())
    	show("Float64", r.Float64(), r.Float64(), r.Float64())
    
    	// ExpFloat64 values have an average of 1 but decay exponentially.
    	show("ExpFloat64", r.ExpFloat64(), r.ExpFloat64(), r.ExpFloat64())
    
    	// NormFloat64 values have an average of 0 and a standard deviation of 1.
    	show("NormFloat64", r.NormFloat64(), r.NormFloat64(), r.NormFloat64())
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 17:09:26 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_avg_pool_patterns.td

    class CreateStringAttr<string values> : NativeCodeCall<
      "$_builder.getStringAttr("# values #")">;
    
    // Get dense attr for a matrix that corrects the over counting of dividends when casting an average pool with ceil mode on in terms of average pool with it off.
    def GetCorrectionMatrix: NativeCodeCall<"GetCorrectionMatrix($_builder, (*$0.begin()).getDefiningOp<mhlo::CompositeOp>())">;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:16:05 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top