Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for badwidth (0.34 sec)

  1. src/go/printer/printer_test.go

    	// filter exports if necessary
    	if mode&export != 0 {
    		ast.FileExports(f) // ignore result
    		f.Comments = nil   // don't print comments that are not in AST
    	}
    
    	// determine printer configuration
    	cfg := Config{Tabwidth: tabwidth}
    	if mode&rawFormat != 0 {
    		cfg.Mode |= RawFormat
    	}
    	if mode&normNumber != 0 {
    		cfg.Mode |= normalizeNumbers
    	}
    
    	// print AST
    	var buf bytes.Buffer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  2. cmd/server-main.go

    		globalBucketMetadataSys = NewBucketMetadataSys()
    	} else {
    		// Reinitialize safely when testing.
    		globalBucketMetadataSys.Reset()
    	}
    
    	// Create the bucket bandwidth monitor
    	globalBucketMonitor = bandwidth.NewMonitor(ctx, uint64(totalNodeCount()))
    
    	// Create a new config system.
    	globalConfigSys = NewConfigSys()
    
    	// Create new IAM system.
    	globalIAMSys = NewIAMSys()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (3)
  3. cmd/bucket-replication.go

    			Host:       globalLocalNodeName,
    		})
    		return
    	}
    
    	var headerSize int
    	for k, v := range putOpts.Header() {
    		headerSize += len(k) + len(v)
    	}
    
    	opts := &bandwidth.MonitorReaderOptions{
    		BucketOptions: bandwidth.BucketOptions{
    			Name:           ri.Bucket,
    			ReplicationARN: tgt.ARN,
    		},
    		HeaderSize: headerSize,
    	}
    	newCtx := ctx
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

    //===----------------------------------------------------------------------===//
    
    // Slices input attribute of rank two and returns the specified column.
    //
    // Always returns 64 bit integer attribute regardless of bitwidth of the input
    // attribute.
    static DenseIntElementsAttr SliceDenseIntElementsAttrColumn2D(
        ElementsAttr input, int column) {
      auto int_attr = mlir::cast<DenseIntElementsAttr>(input);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  5. 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 (1)
  6. 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)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      }];
    
      let arguments = (
        ins TFL_FpTensor:$input,
        // The expected [min, max] range of values.
        F32Attr:$min,
        F32Attr:$max,
    
        // The bitwidth of the quantization; between 2 and 16, inclusive.
        ConfinedAttr<I32Attr, [IntMinValue<2>, IntMaxValue<16>]>:$num_bits,
        // Quantization range starts from 0 or 1; starts from 1 if true.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    `[0; 2^num_bits - 1]` when `narrow_range` is false and `[1; 2^num_bits - 1]`
    when it is true) and then de-quantized and output as floats in `[min; max]`
    interval.
    *   `num_bits` is the bitwidth of the quantization; between 2 and 16, inclusive.
    
    Before quantization, `min` and `max` values are adjusted with the following
    logic.
    It is suggested to have `min <= 0 <= max`. If `0` is not in the range of values,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  9. pkg/generated/openapi/zz_generated.openapi.go

    							Description: "DisableCompression allows client to opt-out of response compression for all requests to the server. This is useful to speed up requests (specifically lists) when client-server network bandwidth is ample, by saving time on compression (server-side) and decompression (client-side): https://github.com/kubernetes/kubernetes/issues/112296.",
    							Type:        []string{"boolean"},
    							Format:      "",
    						},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top