Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 130 for _sin (0.05 sec)

  1. docs/es/docs/tutorial/query-params.md

    ```
    
    Aquí el parámetro de query `needy` es un parámetro de query requerido, del tipo `str`.
    
    Si abres tu navegador en una URL como:
    
    ```
    http://127.0.0.1:8000/items/foo-item
    ```
    
    ...sin añadir el parámetro `needy` requerido, verás un error como:
    
    ```JSON
    {
        "detail": [
            {
                "loc": [
                    "query",
                    "needy"
                ],
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. src/cmd/cgo/doc.go

    particular foo.cgo2.o. To do so, it uses the cgo_import_dynamic and
    cgo_dynamic_linker directives to learn that the otherwise undefined
    reference to sin in foo.cgo2.o should be rewritten to refer to the
    symbol sin with version GLIBC_2.2.5 from the dynamic library
    "libm.so.6", and the binary should request "/lib/ld-linux.so.2" as its
    runtime dynamic linker.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  3. docs/es/docs/async.md

    Se llama "asíncrono" porque el sistema / programa no tiene que estar "sincronizado" con la tarea lenta, esperando el momento exacto en que finaliza la tarea, sin hacer nada, para poder recoger el resultado de la tarea y continuar el trabajo.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  4. docs/tr/docs/alternatives.md

    !!! check "**FastAPI**'a nasıl ilham oldu?"
        Hug, APIStar'ın çeşitli kısımlarında esin kaynağı oldu ve APIStar'la birlikte en umut verici bulduğum araçlardan biriydi.
    
        **FastAPI**, Python tip belirteçlerini kullanarak parametre belirlemede ve API'ı otomatık tanımlayan bir şema üretmede de Hug'a esinlendi.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/x86/x86asm/intel.go

    			op = "int3"
    		}
    
    	case LCALL, LJMP:
    		if len(args) == 2 {
    			args[0], args[1] = args[1], args[0]
    		}
    
    	case FCHS, FABS, FTST, FLDPI, FLDL2E, FLDLG2, F2XM1, FXAM, FLD1, FLDL2T, FSQRT, FRNDINT, FCOS, FSIN:
    		if len(args) == 0 {
    			args = append(args, "st0")
    		}
    
    	case FPTAN, FSINCOS, FUCOMPP, FCOMPP, FYL2X, FPATAN, FXTRACT, FPREM1, FPREM, FYL2XP1, FSCALE:
    		if len(args) == 0 {
    			args = []string{"st0", "st1"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 11.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/gen_quantized_function_library.py

    flags.mark_flags_as_required(['output_file', 'src'])
    
    
    def _substitute_for_loop_template(module: str) -> str:
      """Substitutes the for loop templates in the given module."""
      compiled_regex = re.compile(
          r'^\s*for\s(.*?)\sin\s(\[.*?\])\s\{(.*?)\}\s//\send\sfor\n',
          re.MULTILINE | re.DOTALL)
      while True:
        func_match = re.search(compiled_regex, module)
        if func_match is None:
          break
    
        try:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 20 01:38:06 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/x86/anames.go

    	"FMOVXP",
    	"FMULD",
    	"FMULDP",
    	"FMULF",
    	"FMULL",
    	"FMULW",
    	"FNOP",
    	"FPATAN",
    	"FPREM",
    	"FPREM1",
    	"FPTAN",
    	"FRNDINT",
    	"FRSTOR",
    	"FSAVE",
    	"FSCALE",
    	"FSIN",
    	"FSINCOS",
    	"FSQRT",
    	"FSTCW",
    	"FSTENV",
    	"FSTSW",
    	"FSUBD",
    	"FSUBDP",
    	"FSUBF",
    	"FSUBL",
    	"FSUBRD",
    	"FSUBRDP",
    	"FSUBRF",
    	"FSUBRL",
    	"FSUBRW",
    	"FSUBW",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  8. docs/fr/docs/index.md

    ---
    
    "_Si vous cherchez à apprendre un **framework moderne** pour créer des APIs REST, regardez **FastAPI** [...] C'est rapide, facile à utiliser et à apprendre [...]_"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 22K bytes
    - Viewed (0)
  9. docs/es/docs/python-types.md

    ```
    
    Esto significa: la variable `items` es una `list` y cada uno de los ítems en esta lista es un `str`.
    
    Con esta declaración tu editor puede proveerte soporte inclusive mientras está procesando ítems de la lista.
    
    Sin tipos el auto-completado en este tipo de estructura es casi imposible de lograr:
    
    <img src="https://fastapi.tiangolo.com/img/python-types/image05.png">
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. docs/es/docs/tutorial/path-params.md

    ### Soporte de OpenAPI
    
    OpenAPI no soporta una manera de declarar un *parámetro de path* que contenga un path, dado que esto podría llevar a escenarios que son difíciles de probar y definir.
    
    Sin embargo, lo puedes hacer en **FastAPI** usando una de las herramientas internas de Starlette.
    
    La documentación seguirá funcionando, aunque no añadirá ninguna información diciendo que el parámetro debería contener un path.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top