Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for Xlogue (0.13 sec)

  1. tensorflow/c/experimental/ops/math_ops.cc

      int num_retvals = 1;
      return op_ptr->Execute(absl::MakeSpan(z, 1), &num_retvals);
    }
    
    // Op: Log1p()
    // Summary: Computes natural logarithm of (1 + x) element-wise.
    //
    // Description:
    //   I.e., \\(y = \log_e (1 + x)\\).
    //
    //   Example:
    //
    //   ```python
    //   x = tf.constant([0, 0.5, 1, 5])
    //   tf.math.log1p(x) ==> [0., 0.4054651, 0.6931472, 1.7917595]
    //   ```
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 10 19:11:36 UTC 2022
    - 12.2K bytes
    - Viewed (0)
  2. src/runtime/malloc.go

    	// The probability distribution function is mean*exp(-mean*x), so the CDF is
    	// p = 1 - exp(-mean*x), so
    	// q = 1 - p == exp(-mean*x)
    	// log_e(q) = -mean*x
    	// -log_e(q)/mean = x
    	// x = -log_e(q) * mean
    	// x = log_2(q) * (-log_e(2)) * mean    ; Using log_2 for efficiency
    	const randomBitCount = 26
    	q := cheaprandn(1<<randomBitCount) + 1
    	qlog := fastlog2(float64(q)) - randomBitCount
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. pkg/controller/cronjob/utils_test.go

    			expectedEarliestTime:  *deltaTimeAfterTopOfTheHour(1 * time.Minute),
    			expectedTooManyMissed: manyMissed,
    		},
    		{
    			name: "rogue cronjob",
    			cj: &batchv1.CronJob{
    				ObjectMeta: metav1.ObjectMeta{
    					CreationTimestamp: metav1.NewTime(*deltaTimeAfterTopOfTheHour(10 * time.Second)),
    				},
    				Spec: batchv1.CronJobSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  4. docs/fr/docs/async.md

    ---
    
    Dans ce scénario de burgers parallèles, vous êtes un ordinateur / programme 🤖 avec deux processeurs (vous et votre crush 😍) attendant 🕙 à deux et dédiant votre attention 🕙 à "attendre devant le comptoir" pour une longue durée.
    
    Le fast-food a 8 processeurs (serveurs/cuisiniers) 👨‍🍳👨‍🍳👨‍🍳👨‍🍳👨‍🍳👨‍🍳👨‍🍳👨‍🍳. Alors que le fast-food de burgers concurrents en avait 2 (un serveur et un cuisinier).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. src/math/all_test.go

    	for i := 0; i < len(vf); i++ {
    		a := Abs(vf[i])
    		if f := Log2(a); !veryclose(log2[i], f) {
    			t.Errorf("Log2(%g) = %g, want %g", a, f, log2[i])
    		}
    	}
    	if f := Log2(E); f != Log2E {
    		t.Errorf("Log2(%g) = %g, want %g", E, f, Log2E)
    	}
    	for i := 0; i < len(vflogSC); i++ {
    		if f := Log2(vflogSC[i]); !alike(logSC[i], f) {
    			t.Errorf("Log2(%g) = %g, want %g", vflogSC[i], f, logSC[i])
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
  6. pkg/controller/volume/persistentvolume/pv_controller.go

    // directionality is complicated to manage in a transactionless system, but
    // without it we can't ensure sane behavior in the face of different forms of
    // trouble. For example, a rogue HA controller instance could end up racing
    // and making multiple bindings that are indistinguishable, resulting in
    // potential data loss.
    //
    // This controller is designed to work in active-passive high availability
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  7. docs/en/docs/release-notes.md

    ## 0.88.0
    
    ### Upgrades
    
    * ⬆ Bump Starlette to version `0.22.0` to fix bad encoding for query parameters in new `TestClient`. PR [#5659](https://github.com/tiangolo/fastapi/pull/5659) by [@azogue](https://github.com/azogue).
    
    ### Docs
    
    * ✏️ Fix typo in docs for `docs/en/docs/advanced/middleware.md`. PR [#5376](https://github.com/tiangolo/fastapi/pull/5376) by [@rifatrakib](https://github.com/rifatrakib).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.23.md

    - Fix pod name of NonIndexed Jobs to not include rogue `-1` substring ([#105676](https://github.com/kubernetes/kubernetes/pull/105676), [@alculquicondor](https://github.com/alculquicondor))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    }
    
    def TF_LogOp : TF_Op<"Log", [Pure, TF_SameOperandsAndResultTypeResolveRef]> {
      let summary = "Computes natural logarithm of x element-wise.";
    
      let description = [{
    I.e., \\(y = \log_e x\\).
    
    Example:
    
    ```python
    x = tf.constant([0, 0.5, 1, 5])
    tf.math.log(x) ==> [-inf, -0.6931472,  0. ,  1.609438]
    ```
      }];
    
      let arguments = (ins
        TF_FpOrComplexTensor:$x
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Lgamma", Func, 0},
    		{"Ln10", Const, 0},
    		{"Ln2", Const, 0},
    		{"Log", Func, 0},
    		{"Log10", Func, 0},
    		{"Log10E", Const, 0},
    		{"Log1p", Func, 0},
    		{"Log2", Func, 0},
    		{"Log2E", Const, 0},
    		{"Logb", Func, 0},
    		{"Max", Func, 0},
    		{"MaxFloat32", Const, 0},
    		{"MaxFloat64", Const, 0},
    		{"MaxInt", Const, 17},
    		{"MaxInt16", Const, 0},
    		{"MaxInt32", Const, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top