Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 37 for voltam (0.04 sec)

  1. docs/es/docs/help-fastapi.md

    ## Vota por FastAPI
    
    * <a href="https://www.slant.co/options/34241/~fastapi-review" class="external-link" target="_blank">Vota por **FastAPI** en Slant</a>.
    * <a href="https://alternativeto.net/software/fastapi/about/" class="external-link" target="_blank">Vota por **FastAPI** en AlternativeTo</a>.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  2. docs/pt/docs/deployment/https.md

    **solicitações HTTP descriptografadas** para o aplicativo HTTP real em execução no mesmo servidor (a aplicação **FastAPI**, neste caso), pegue a **resposta HTTP** do aplicativo, **criptografe-a** usando o **certificado HTTPS** apropriado e envie-a de volta ao cliente usando **HTTPS**. Este servidor é frequentemente chamado de **<a href="https://en.wikipedia.org/wiki/TLS_termination_proxy" class="external-link" target="_blank">Proxy de Terminação TLS</a>**.
    
    Algumas das opções que você pode usar...
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun May 11 13:37:26 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  3. docs/it/docs/index.md

    ![ReDoc](https://fastapi.tiangolo.com/img/index/index-06-redoc-02.png)
    
    ### Riepilogo
    
    Ricapitolando, è sufficiente dichiarare **una sola volta** i tipi dei parametri, del body, ecc. come parametri di funzioni.
    
    Questo con le annotazioni per i tipi standard di Python.
    
    Non c'è bisogno di imparare una nuova sintassi, metodi o classi specifici a una libreria, ecc.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 19.5K bytes
    - Viewed (0)
  4. cmd/xl-storage.go

    	_, _ = rand.Read(alignedBuf)
    }
    
    // isValidVolname verifies a volname name in accordance with object
    // layer requirements.
    func isValidVolname(volname string) bool {
    	if len(volname) < 3 {
    		return false
    	}
    
    	if runtime.GOOS == "windows" {
    		// Volname shouldn't have reserved characters in Windows.
    		return !strings.ContainsAny(volname, `\:*?\"<>|`)
    	}
    
    	return true
    }
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Jun 13 11:33:47 UTC 2025
    - 91.7K bytes
    - Viewed (0)
  5. cmd/erasure-healing.go

    	}
    
    	if err := reduceReadQuorumErrs(ctx, g.Wait(), bucketMetadataOpIgnoredErrs, readQuorum); err != nil {
    		return err
    	}
    
    	healBuckets.Range(func(volName string, volInfo VolInfo) bool {
    		if volInfo.count < readQuorum {
    			healBuckets.Delete(volName)
    		}
    		return true
    	})
    
    	return nil
    }
    
    var (
    	errLegacyXLMeta   = errors.New("legacy XL meta")
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 34.6K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/riscv64.s

    	VMSBFM		V2, V0, V3			// d7a12050
    	VMSIFM		V2, V3				// d7a12152
    	VMSIFM		V2, V0, V3			// d7a12150
    	VMSOFM		V2, V3				// d7212152
    	VMSOFM		V2, V0, V3			// d7212150
    	VIOTAM		V2, V3				// d7212852
    	VIOTAM		V2, V0, V3			// d7212850
    	VIDV		V3				// d7a10852
    	VIDV		V0, V3				// d7a10850
    
    	// 31.16.1: Integer Scalar Move Instructions
    	VMVXS		V2, X10				// 57252042
    	VMVSX		X10, V2				// 57610542
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed May 21 14:19:19 UTC 2025
    - 49.1K bytes
    - Viewed (0)
  7. docs/pt/docs/python-types.md

    /// info | Informação
    
    Se você já passou por todo o tutorial e voltou para ver mais sobre os tipos, um bom recurso é <a href = "https://mypy.readthedocs.io/en/latest/cheat_sheet_py3.html" class = "external-link "target =" _ blank "> a "cheat sheet" do `mypy` </a>.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sat Nov 09 10:32:53 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/testdata/riscv64error.s

    	VMSBFM		V2, V4, V3			// ERROR "invalid vector mask register"
    	VMSIFM		V2, V4, V3			// ERROR "invalid vector mask register"
    	VMSOFM		V2, V4, V3			// ERROR "invalid vector mask register"
    	VIOTAM		V2, V4, V3			// ERROR "invalid vector mask register"
    	VSLIDEUPVX	X10, V2, V4, V3			// ERROR "invalid vector mask register"
    	VSLIDEUPVI	$16, V2, V4, V3			// ERROR "invalid vector mask register"
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Thu May 08 08:53:43 UTC 2025
    - 24.8K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/riscv64validation.s

    	VMSBFM		X10, V3				// ERROR "expected vector register in vs2 position"
    	VMSIFM		X10, V3				// ERROR "expected vector register in vs2 position"
    	VMSOFM		X10, V3				// ERROR "expected vector register in vs2 position"
    	VIOTAM		X10, V3				// ERROR "expected vector register in vs2 position"
    	VIDV		X10				// ERROR "expected vector register in vd position"
    	VMVXS		X11, X10			// ERROR "expected vector register in vs2 position"
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed May 21 14:19:19 UTC 2025
    - 31.6K bytes
    - Viewed (0)
  10. .bazelrc

    # the problematic targets are fixed.
    build --@rules_python//python/config_settings:precompile=force_disabled
    
    # TF now has `cc_shared_library` targets, so it needs the experimental flag
    # TODO(rostam): Remove when `cc_shared_library` is enabled by default
    common --experimental_cc_shared_library
    
    # cc_shared_library ensures no library is linked statically more than once.
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Fri Aug 22 21:03:34 UTC 2025
    - 56K bytes
    - Viewed (0)
Back to top