Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 186 for divides (0.17 sec)

  1. docs/erasure/README.md

    ## How are drives used for Erasure Code?
    
    MinIO divides the drives you provide into erasure-coding sets of *2 to 16* drives.  Therefore, the number of drives you present must be a multiple of one of these numbers.  Each object is written to a single erasure-coding set.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/http2/hpack/huffman.go

    		const (
    			eosCode    = 0x3fffffff
    			eosNBits   = 30
    			eosPadByte = eosCode >> (eosNBits - 8)
    		)
    		pad := 8 - over
    		x = (x << pad) | (eosPadByte >> over)
    		n += pad // 8 now divides into n exactly
    	}
    	// n in (0, 8, 16, 24, 32)
    	switch n / 8 {
    	case 0:
    		return dst
    	case 1:
    		return append(dst, byte(x))
    	case 2:
    		y := uint16(x)
    		return append(dst, byte(y>>8), byte(y))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  3. pkg/registry/core/service/allocator/bitmap.go

    	return NewAllocationMapWithOffset(max, rangeSpec, 0)
    }
    
    // NewAllocationMapWithOffset creates an allocation bitmap using a random scan strategy that
    // allows to pass an offset that divides the allocation bitmap in two blocks.
    // The first block of values will not be used for random value assigned by the AllocateNext()
    // method until the second block of values has been exhausted.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 25 20:32:40 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  4. src/net/ipsock.go

    func (addrs addrList) first(strategy func(Addr) bool) Addr {
    	for _, addr := range addrs {
    		if strategy(addr) {
    			return addr
    		}
    	}
    	return addrs[0]
    }
    
    // partition divides an address list into two categories, using a
    // strategy function to assign a boolean label to each address.
    // The first address, and any with a matching label, are returned as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  5. docs/distributed/README.md

    - **MinIO creates erasure-coding sets of _2_ to _16_ drives per set.  The number of drives you provide in total must be a multiple of one of those numbers.**
    - **MinIO chooses the largest EC set size which divides into the total number of drives or total number of nodes given - making sure to keep the uniform distribution i.e each node participates equal number of drives per set**.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  6. src/runtime/tracetime.go

    // Trace time and clock.
    
    package runtime
    
    import (
    	"internal/goarch"
    	_ "unsafe"
    )
    
    // Timestamps in trace are produced through either nanotime or cputicks
    // and divided by traceTimeDiv. nanotime is used everywhere except on
    // platforms where osHasLowResClock is true, because the system clock
    // isn't granular enough to get useful information out of a trace in
    // many cases.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/util/MemoryUtil.java

            } else if (size.divide(ONE_GB_BI).compareTo(BigInteger.ZERO) > 0) {
                displaySize = new BigDecimal(size.divide(ONE_MB_BI)).divide(BigDecimal.valueOf(1000)) + "GB";
            } else if (size.divide(ONE_MB_BI).compareTo(BigInteger.ZERO) > 0) {
                displaySize = new BigDecimal(size.divide(ONE_KB_BI)).divide(BigDecimal.valueOf(1000)) + "MB";
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/tests/shlo_simplify.mlir

      %2 = stablehlo.divide %0, %1 : tensor<2xf32>
      return %2 : tensor<2xf32>
    }
    
    // CHECK-LABEL: foldDiv
    // CHECK: stablehlo.constant dense<5.000000e-01> : tensor<2xf32>
    
    // -----
    
    func.func @foldDivLHSSplat() -> tensor<2xf32> {
      %0 = stablehlo.constant dense<2.0> : tensor<2xf32>
      %1 = stablehlo.constant dense<[4.0, 6.0]> : tensor<2xf32>
      %2 = stablehlo.divide %0, %1 : tensor<2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 03:05:20 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/device_util.cc

      mlir::Builder builder(ctx);
    
      // Collect devices with attached metadata.
      llvm::SmallVector<mlir::NamedAttribute, 8> devices;
      devices.reserve(device_set->devices().size());
    
      // For device that do not have any metadata, or if we failed to parse metadata
      // from the DeviceSet, we add a unit attribute to the `tf.devices` attribute.
      for (Device* device : device_set->devices()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/devicemanager/endpoint_test.go

    			require.Equal(t, devices[1].Health, devs[1].Health)
    			require.Equal(t, devices[2].Health, devs[2].Health)
    		}
    
    		// Check plugin update
    		if callbackCount == 1 {
    			require.Len(t, devices, 3)
    			require.Equal(t, devices[0].ID, updated[0].ID)
    			require.Equal(t, devices[1].ID, updated[1].ID)
    			require.Equal(t, devices[2].ID, updated[2].ID)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 16:05:48 UTC 2022
    - 7.6K bytes
    - Viewed (0)
Back to top