Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for reAssemble (0.12 sec)

  1. docs/fr/docs/tutorial/first-steps.md

    #### Allez voir `openapi.json`
    
    Si vous êtes curieux d'à quoi ressemble le schéma brut **OpenAPI**, **FastAPI** génère automatiquement un (schéma) JSON avec les descriptions de toute votre API.
    
    Vous pouvez le voir directement à cette adresse : <a href="http://127.0.0.1:8000/openapi.json" class="external-link" target="_blank">http://127.0.0.1:8000/openapi.json</a>.
    
    Le schéma devrait ressembler à ceci :
    
    
    ```JSON
    {
        "openapi": "3.0.2",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Sep 27 20:52:31 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/core-plugins/jacoco_plugin.adoc

    The attributes will resemble the following.  User-configurable attributes are highlighted below the sample.
    
    .outgoingVariants task output
    [source,text]
    ----
    --------------------------------------------------
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  3. docs/fr/docs/contributing.md

    Si vous allez sur votre navigateur, vous verrez que maintenant les documents montrent votre nouvelle section. 🎉
    
    Vous pouvez maintenant tout traduire et voir à quoi cela ressemble au fur et à mesure que vous enregistrez le fichier.
    
    #### Nouvelle langue
    
    Disons que vous voulez ajouter des traductions pour une langue qui n'est pas encore traduite, pas même quelques pages.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 27 18:51:07 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/jvm_test_suite_plugin.adoc

    The attributes will resemble the following.  User-configurable attributes are highlighted below the sample.
    
    .outgoingVariants task output
    [source,text]
    ----
    --------------------------------------------------
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 14:47:11 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  5. src/testing/benchmark.go

    // used to give some meaningful results in case func Benchmark is used in
    // combination with Run.
    func (b *B) add(other BenchmarkResult) {
    	r := &b.result
    	// The aggregated BenchmarkResults resemble running all subbenchmarks as
    	// in sequence in a single benchmark.
    	r.N = 1
    	r.T += time.Duration(other.NsPerOp())
    	if other.Bytes == 0 {
    		// Summing Bytes is meaningless in aggregate if not all subbenchmarks
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/script/engine.go

    // and stderr output of a prior command, tracked in a [State] that commands can
    // inspect and modify.
    //
    // The default commands configured by [NewEngine] resemble a simplified Unix
    // shell.
    //
    // # Script Language
    //
    // Each line of a script is parsed into a sequence of space-separated command
    // words, with environment variable expansion within each word and # marking an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  7. docs/fr/docs/alternatives.md

    ```Python
    response = requests.get("http://example.com/some/url")
    ```
    
    En contrepartie l'API _des opérations de chemin_ de FastAPI pourrait ressembler à ceci :
    
    ```Python hl_lines="1"
    @app.get("/some/url")
    def read_url():
        return {"message": "Hello World"}
    ```
    
    Notez les similitudes entre `requests.get(...)` et `@app.get(...)`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  8. src/net/url/url.go

    		return true
    	}
    	if port[0] != ':' {
    		return false
    	}
    	for _, b := range port[1:] {
    		if b < '0' || b > '9' {
    			return false
    		}
    	}
    	return true
    }
    
    // String reassembles the [URL] into a valid URL string.
    // The general form of the result is one of:
    //
    //	scheme:opaque?query#fragment
    //	scheme://userinfo@host/path?query#fragment
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
Back to top