Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 63 for bandwidth (0.37 sec)

  1. cmd/api-errors.go

    		HTTPStatusCode: http.StatusServiceUnavailable,
    	},
    	ErrReplicationBandwidthLimitError: {
    		Code:           "XMinioAdminReplicationBandwidthLimitError",
    		Description:    "Bandwidth limit for remote target must be at least 100MBps",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrReplicationNoExistingObjects: {
    		Code:           "XMinioReplicationNoExistingObjects",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.26.md

    - A new `pod_status_sync_duration_seconds` histogram is reported at alpha metrics...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 16:24:51 UTC 2024
    - 425.7K bytes
    - Viewed (0)
  3. prow/config/calico.yaml

              }
            },
            {
              "type": "portmap",
              "snat": true,
              "capabilities": {"portMappings": true}
            },
            {
              "type": "bandwidth",
              "capabilities": {"bandwidth": true}
            }
          ]
        }
    ---
    # Source: calico/templates/kdd-crds.yaml
    apiVersion: apiextensions.k8s.io/v1
    kind: CustomResourceDefinition
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/calibration_parameters_test.cc

                                          const float max_value,
                                          const float bin_width) {
      const float lower_bound = CalculateLowerBound(min_value, bin_width);
      return std::ceil((max_value - lower_bound) / bin_width);
    }
    
    TEST(CalibrationParametersTest, CalculateBinWidthSmallerThanOne) {
      float bin_width = CalculateBinWidth(/*min_value=*/0.0, /*max_value=*/25.0,
                                          /*num_bins=*/256);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 05 09:09:34 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/calibration_parameters.h

    // `N * bin_width`.
    inline float CalculateLowerBound(const float min_value, const float bin_width) {
      return std::floor(min_value / bin_width) * bin_width;
    }
    
    // Calculates the bin index of the current value.
    inline int32_t CalculateBinIndex(const float value, const float lower_bound,
                                     const float bin_width) {
      return std::floor((value - lower_bound) / bin_width);
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics.proto

      message HistogramStatistics {
        // width of bin
        float bin_width = 1;
    
        // lower_bound is the first bin's min value.
        // lower_bound and bin_width can be used to restore the histogram.
        float lower_bound = 2;
    
        // hist_freq[i] saves frequency of range [bins[i], bins[i + 1]).
        // bins[i]     = lower_bound + bin_width * i
        // bins[i + 1] = lower_bound + bin_width * (i + 1)
        repeated float hist_freq = 3;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 16 04:33:52 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_collector_test.cc

      EXPECT_TRUE(statistics.has_value());
      EXPECT_EQ(statistics.value().histogram_statistics().lower_bound(), 0.f);
      EXPECT_EQ(statistics.value().histogram_statistics().bin_width(), 2.f);
      // Trailing zeros should be removed.
      EXPECT_THAT(statistics.value().histogram_statistics().hist_freq(),
                  ElementsAre(1, 0, 3, 5, 7, 6, 5));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 16 04:33:52 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  8. src/net/http/h2_bundle.go

    			remain = remain[allowed:]
    			sentEnd = sawEOF && len(remain) == 0 && !hasTrailers
    			err = cc.fr.WriteData(cs.ID, sentEnd, data)
    			if err == nil {
    				// TODO(bradfitz): this flush is for latency, not bandwidth.
    				// Most requests won't need this. Make this opt-in or
    				// opt-out?  Use some heuristic on the body type? Nagel-like
    				// timers?  Based on 'n'? Only last chunk of this for loop,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_collector_histogram.cc

                              const float bin_width, const float lower_bound,
                              const float range_start, const float range_end) {
      float freq_sum = 0.f;
      for (float range = std::max(range_start, lower_bound); range < range_end;
           range += bin_width) {
        const int32_t idx = CalculateBinIndex(range, lower_bound, bin_width);
        if (idx >= histogram.size()) break;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 05 09:09:34 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. test/fixedbugs/issue4359.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 4359: wrong handling of broken struct fields
    // causes "internal compiler error: lookdot badwidth".
    
    package main
    
    type T struct {
    	x T1 // ERROR "undefined"
    }
    
    func f() {
    	var t *T
    	_ = t.x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 377 bytes
    - Viewed (0)
Back to top