Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 370 for biglen (0.21 sec)

  1. staging/src/k8s.io/apimachinery/pkg/api/resource/amount.go

    	amount := big.NewInt(0).Set(mantissa)
    	// move all factors of 10 into the exponent for easy reasoning
    	amount, times := removeBigIntFactors(amount, bigTen)
    	exponent += times
    
    	// make sure exponent is a multiple of 3
    	for exponent%3 != 0 {
    		amount.Mul(amount, bigTen)
    		exponent--
    	}
    
    	return append(out, amount.String()...), exponent
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 13 19:42:28 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  2. docs/ko/docs/tutorial/dependencies/global-dependencies.md

    ## *경로 작동* 모음에 대한 의존성
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Feb 14 15:05:47 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. docs/de/docs/advanced/index.md

    Und es zeigt deren wahres Engagement für FastAPI und seine **Gemeinschaft** (Sie), da diese Ihnen nicht nur eine **gute Lernerfahrung** bieten möchten, sondern auch sicherstellen möchten, dass Sie über ein **gutes und gesundes Framework verfügen **, FastAPI. 🙇
    
    Vielleicht möchten Sie ihre Kurse ausprobieren:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:19:44 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. docs/de/docs/deployment/cloud.md

    Und es zeigt deren wahres Engagement für FastAPI und seine **Community** (Sie), da diese Ihnen nicht nur einen **guten Service** bieten möchten, sondern auch sicherstellen möchten, dass Sie über ein **gutes und gesundes Framework** verfügen, FastAPI. 🙇
    
    Vielleicht möchten Sie deren Dienste ausprobieren und deren Anleitungen folgen:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:30:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. src/math/big/natconv.go

    	if base < 2 || base > MaxBase {
    		panic("invalid base")
    	}
    
    	// x == 0
    	if len(x) == 0 {
    		return []byte("0")
    	}
    	// len(x) > 0
    
    	// allocate buffer for conversion
    	i := int(float64(x.bitLen())/math.Log2(float64(base))) + 1 // off by 1 at most
    	if neg {
    		i++
    	}
    	s := make([]byte, i)
    
    	// convert power of two and non power of two bases separately
    	if b := Word(base); b == b&-b {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 14.6K bytes
    - Viewed (0)
  6. internal/ringbuffer/README.md

    Regular Reads will block until data is available, but not wait for a full buffer. 
    Writes will block until there is space available and writes bigger than the buffer will wait for reads to make space.
    
    `TryRead` and `TryWrite` are still available for non-blocking reads and writes.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 00:11:04 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_device_ops.cc

      const Tensor& value = context->input(1);
      // Note: every resource-variable-manipulating op assumes copy-on-write
      // semantics, and creates a copy of the variable's Tensor if its refcount is
      // bigger than 1 when we try to modify it. This means we never need to copy
      // the original tensor for AssignVariableOp; even if there are other live
      // users of it we know none can modify it so this is always safe (even in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. docs/em/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md

    ```Python hl_lines="9  14"
    {!../../../docs_src/dependencies/tutorial006.py!}
    ```
    
    ## 🔗 👪 *➡ 🛠️*
    
    ⏪, 🕐❔ 👂 🔃 ❔ 📊 🦏 🈸 ([🦏 🈸 - 💗 📁](../../tutorial/bigger-applications.md){.internal-link target=_blank}), 🎲 ⏮️ 💗 📁, 👆 🔜 💡 ❔ 📣 👁 `dependencies` 🔢 👪 *➡ 🛠️*.
    
    ## 🌐 🔗
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Apr 01 09:26:04 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/api/resource/scale_int_test.go

    		// always round up
    		{big.NewInt(999), 3, 0, 1},
    		{big.NewInt(500), 3, 0, 1},
    		{big.NewInt(499), 3, 0, 1},
    		{big.NewInt(1), 3, 0, 1},
    		// large scaled value does not lose precision
    		{big.NewInt(0).Sub(maxInt64, bigOne), 1, 0, (math.MaxInt64-1)/10 + 1},
    		// large intermediate result.
    		{big.NewInt(1).Exp(big.NewInt(10), big.NewInt(100), nil), 100, 0, 1},
    
    		// scale up
    		{big.NewInt(0), 0, 3, 0},
    		{big.NewInt(1), 0, 3, 1000},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 11 03:04:14 UTC 2018
    - 2.1K bytes
    - Viewed (0)
  10. src/compress/flate/example_test.go

    // by taking advantage of previously allocated memory.
    func Example_reset() {
    	proverbs := []string{
    		"Don't communicate by sharing memory, share memory by communicating.\n",
    		"Concurrency is not parallelism.\n",
    		"The bigger the interface, the weaker the abstraction.\n",
    		"Documentation is for users.\n",
    	}
    
    	var r strings.Reader
    	var b bytes.Buffer
    	buf := make([]byte, 32<<10)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 12 18:42:35 UTC 2016
    - 6.5K bytes
    - Viewed (0)
Back to top