Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 31 for lgamma (0.18 sec)

  1. docs/es/docs/async.md

    El c贸digo as铆ncrono s贸lo significa que el lenguaje 馃挰 tiene una manera de decirle al sistema / programa 馃 que, en alg煤n momento del c贸digo, 馃 tendr谩 que esperar a que *algo m谩s* termine en otro sitio. Digamos que ese *algo m谩s* se llama, por ejemplo, "archivo lento" 馃摑.
    
    Durante ese tiempo, el sistema puede hacer otras cosas, mientras "archivo lento" 馃摑 termina.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  2. RELEASE.md

            `tf.math.cos`, `tf.math.cosh`, `tf.math.digamma`, `tf.math.equal`,
            `tf.math.erfc`, `tf.math.exp`, `tf.math.expm1`, `tf.math.floor`,
            `tf.math.greater`, `tf.math.greater_equal`, `tf.math.igamma`,
            `tf.math.igammac`, `tf.math.invert_permutation`, `tf.math.less`,
            `tf.math.less_equal`, `tf.math.lgamma`, `tf.math.log`, `tf.math.log1p`,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  3. src/strings/builder_test.go

    }
    
    func TestBuilderString(t *testing.T) {
    	var b Builder
    	b.WriteString("alpha")
    	check(t, &b, "alpha")
    	s1 := b.String()
    	b.WriteString("beta")
    	check(t, &b, "alphabeta")
    	s2 := b.String()
    	b.WriteString("gamma")
    	check(t, &b, "alphabetagamma")
    	s3 := b.String()
    
    	// Check that subsequent operations didn't change the returned strings.
    	if want := "alpha"; s1 != want {
    		t.Errorf("first String result is now %q; want %q", s1, want)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 19:51:15 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. src/mdo/reader-stax.vm

            entities.put("fnof", "\u0192");
            entities.put("Alpha", "\u0391");
            entities.put("Beta", "\u0392");
            entities.put("Gamma", "\u0393");
            entities.put("Delta", "\u0394");
            entities.put("Epsilon", "\u0395");
            entities.put("Zeta", "\u0396");
            entities.put("Eta", "\u0397");
            entities.put("Theta", "\u0398");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  5. src/crypto/internal/mlkem768/mlkem768.go

    }
    
    // nttElement is an NTT representation, an element of T_q, represented as an
    // array according to FIPS 203 (DRAFT), Section 2.4.
    type nttElement [n]fieldElement
    
    // gammas are the values 味^2BitRev7(i)+1 mod q for each index i.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  6. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    213C          ; mapped                 ; 03C0          # 4.1  DOUBLE-STRUCK SMALL PI
    213D..213E    ; mapped                 ; 03B3          # 3.2  DOUBLE-STRUCK SMALL GAMMA..DOUBLE-STRUCK CAPITAL GAMMA
    213F          ; mapped                 ; 03C0          # 3.2  DOUBLE-STRUCK CAPITAL PI
    2140          ; mapped                 ; 2211          # 3.2  DOUBLE-STRUCK N-ARY SUMMATION
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/optimize.cc

                                    PatternRewriter &rewriter) const override {
        // Mul. Required 1-D rhs for batch normalization.
        DenseElementsAttr gamma_cst;
        Value gamma = mul_op.getRhs();
        if (!matchPattern(gamma, m_Constant(&gamma_cst))) return failure();
        if (gamma_cst.getType().getRank() != 1) return failure();
    
        // Affine op
        Operation *mul_op_lhs = mul_op.getLhs().getDefiningOp();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/TestProgressCrossVersionSpec.groovy

                         Thread.sleep(100);
                         org.junit.Assert.assertEquals(1, 1);
                    }
                    @org.junit.Test public void gamma() throws Exception {
                         Thread.sleep(100);
                         org.junit.Assert.assertEquals(1, 1);
                    }
                    @org.junit.Test public void delta() throws Exception {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Float64frombits", Func, 0},
    		{"Floor", Func, 0},
    		{"Frexp", Func, 0},
    		{"Gamma", Func, 0},
    		{"Hypot", Func, 0},
    		{"Ilogb", Func, 0},
    		{"Inf", Func, 0},
    		{"IsInf", Func, 0},
    		{"IsNaN", Func, 0},
    		{"J0", Func, 0},
    		{"J1", Func, 0},
    		{"Jn", Func, 0},
    		{"Ldexp", Func, 0},
    		{"Lgamma", Func, 0},
    		{"Ln10", Const, 0},
    		{"Ln2", Const, 0},
    		{"Log", Func, 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)
  10. docs/es/docs/tutorial/first-steps.md

    * el path `/`
    * usando una <abbr title="an HTTP GET method">operaci贸n <code>get</code></abbr>
    
    !!! info "Informaci贸n sobre `@decorator`"
        Esa sintaxis `@algo` se llama un "decorador" en Python.
    
        Lo pones encima de una funci贸n. Es como un lindo sombrero decorado (creo que de ah铆 sali贸 el concepto).
    
        Un "decorador" toma la funci贸n que tiene debajo y hace algo con ella.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top