Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 130 for _sin (1.81 sec)

  1. src/main/resources/fess_indices/fess/es/stopwords.txt

    que
    el
    en
    y
    a
    los
    del
    se
    las
    por
    un
    para
    con
    no
    una
    su
    al
    lo
    como
    más
    pero
    sus
    le
    ya
    o
    este
    sí
    porque
    esta
    entre
    cuando
    muy
    sin
    sobre
    también
    me
    hasta
    hay
    donde
    quien
    desde
    todo
    nos
    durante
    todos
    uno
    les
    ni
    contra
    otros
    ese
    eso
    ante
    ellos
    e
    esto
    mí
    antes
    algunos
    qué
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. src/math/cmplx/exp.go

    // Complex exponential function
    //
    // DESCRIPTION:
    //
    // Returns the complex exponential of the complex argument z.
    //
    // If
    //     z = x + iy,
    //     r = exp(x),
    // then
    //     w = r cos y + i r sin y.
    //
    // ACCURACY:
    //
    //                      Relative error:
    // arithmetic   domain     # trials      peak         rms
    //    DEC       -10,+10      8700       3.7e-17     1.1e-17
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  3. src/math/tanh.go

    // license that can be found in the LICENSE file.
    
    package math
    
    // The original C code, the long comment, and the constants
    // below were from http://netlib.sandia.gov/cephes/cmath/sin.c,
    // available from http://www.netlib.org/cephes/cmath.tgz.
    // The go code is a simplified version of the original C.
    //      tanh.c
    //
    //      Hyperbolic tangent
    //
    // SYNOPSIS:
    //
    // double x, y, tanh();
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  4. src/crypto/md5/gen.go

    	b:      "b",
    	c:      "c",
    	d:      "d",
    	Shift1: []int{7, 12, 17, 22},
    	Shift2: []int{5, 9, 14, 20},
    	Shift3: []int{4, 11, 16, 23},
    	Shift4: []int{6, 10, 15, 21},
    
    	// table[i] = int((1<<32) * abs(sin(i+1 radians))).
    	Table1: []uint32{
    		// round 1
    		0xd76aa478,
    		0xe8c7b756,
    		0x242070db,
    		0xc1bdceee,
    		0xf57c0faf,
    		0x4787c62a,
    		0xa8304613,
    		0xfd469501,
    		0x698098d8,
    		0x8b44f7af,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

                  x,
                  min=ops.convert_to_tensor(self._min[0]),
                  max=ops.convert_to_tensor(self._max[0]),
                  num_bits=8,
                  narrow_range=False,
              )
              y = array_ops.fake_quant_with_min_max_vars(
                  y,
                  min=ops.convert_to_tensor(self._min[1]),
                  max=ops.convert_to_tensor(self._max[1]),
                  num_bits=8,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/region-control-flow-to-functional.mlir

      %0 = "tf.IfRegion"(%arg0) ({
        // Outer Then
        %cond = "tf.LogicalNot"(%arg0) : (tensor<i1>) -> tensor<i1>
        %asin = "tf.Asin"(%arg1) : (tensor<*xf32>) -> tensor<*xf32>
    
        // nested IfRegion
        %1 = "tf.IfRegion"(%cond) ({
            %2 = "tf.Abs"(%asin) : (tensor<*xf32>) -> tensor<*xf32>
            "tf.Yield"(%2) : (tensor<*xf32>) -> ()
          }, {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 02 11:15:34 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  7. src/main/resources/fess_indices/fess/doc.json

              "match": "*_ru",
              "mapping": {
                "type": "text",
                "analyzer": "russian_analyzer"
              }
            }
          },
          {
            "lang_si": {
              "match": "*_si",
              "mapping": {
                "type": "text",
                "analyzer": "empty_analyzer"
              }
            }
          },
          {
            "lang_sq": {
              "match": "*_sq",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Aug 15 11:50:35 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  8. docs/es/docs/advanced/response-directly.md

    Como **FastAPI** no realiza ningún cambio en la `Response` que devuelves, debes asegurarte de que el contenido está listo.
    
    Por ejemplo, no puedes poner un modelo Pydantic en una `JSONResponse` sin primero convertirlo a un `dict` con todos los tipos de datos (como `datetime`, `UUID`, etc) convertidos a tipos compatibles con JSON.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jan 13 11:57:27 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. src/math/trig_reduce.go

    // is set by y*C being representable as a float64 without error
    // where y is given by y = floor(x * (4 / Pi)) and C is the leading partial
    // terms of 4/Pi. Since the leading terms (PI4A and PI4B in sin.go) have 30
    // and 32 trailing zero bits, y should have less than 30 significant bits.
    //
    //	y < 1<<30  -> floor(x*4/Pi) < 1<<30 -> x < (1<<30 - 1) * Pi/4
    //
    // So, conservatively we can take x < 1<<29.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  10. src/main/resources/fess_indices/_aws/fess/doc.json

              "match": "*_ru",
              "mapping": {
                "type": "text",
                "analyzer": "russian_analyzer"
              }
            }
          },
          {
            "lang_si": {
              "match": "*_si",
              "mapping": {
                "type": "text",
                "analyzer": "empty_analyzer"
              }
            }
          },
          {
            "lang_sq": {
              "match": "*_sq",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Aug 15 11:50:35 UTC 2023
    - 11.7K bytes
    - Viewed (0)
Back to top