Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 165 for title_ (0.11 sec)

  1. docs/en/docs/tutorial/security/simple-oauth2.md

    For this simple example, we are going to just be completely insecure and return the same `username` as the token.
    
    !!! tip
        In the next chapter, you will see a real secure implementation, with password hashing and <abbr title="JSON Web Tokens">JWT</abbr> tokens.
    
        But for now, let's focus on the specific details we need.
    
    === "Python 3.10+"
    
        ```Python hl_lines="87"
        {!> ../../../docs_src/security/tutorial003_an_py310.py!}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. docs/ko/docs/tutorial/first-steps.md

    다음과 같이 시작하는 JSON을 확인할 수 있습니다:
    
    ```JSON
    {
        "openapi": "3.0.2",
        "info": {
            "title": "FastAPI",
            "version": "0.1.0"
        },
        "paths": {
            "/items/": {
                "get": {
                    "responses": {
                        "200": {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/javadoc/JavadocIntegrationTest.groovy

                task javadoc(type: Javadoc) {
                    destinationDir = file("build/javadoc")
                    source "src/main/java"
                    options {
                        windowTitle = "Window title"
                    }
                }
            """
    
            writeSourceFile()
    
            when:
            run "javadoc"
            then:
            executedAndNotSkipped(":javadoc")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/webui.go

    	ec.errors = append(ec.errors, strings.TrimSuffix(fmt.Sprintln(args...), "\n"))
    	ec.UI.PrintErr(args...)
    }
    
    // webArgs contains arguments passed to templates in webhtml.go.
    type webArgs struct {
    	Title       string
    	Errors      []string
    	Total       int64
    	SampleTypes []string
    	Legend      []string
    	Standalone  bool // True for command-line generation of HTML
    	Help        map[string]string
    	Nodes       []string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 14K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/validation.go

    	if v.ForbiddenGenerics.Default.Object != nil {
    		allErrs = append(allErrs, field.Forbidden(fldPath.Child("default"), "must be undefined to be structural"))
    	}
    	if len(v.ForbiddenGenerics.Title) > 0 {
    		allErrs = append(allErrs, field.Forbidden(fldPath.Child("title"), "must be empty to be structural"))
    	}
    	if len(v.ForbiddenGenerics.Description) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 18:21:31 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  6. docs/ja/docs/tutorial/first-steps.md

    次の場所で直接確認できます: <a href="http://127.0.0.1:8000/openapi.json" class="external-link" target="_blank">http://127.0.0.1:8000/openapi.json</a>.
    
    次のようなJSONが表示されます。
    
    ```JSON
    {
        "openapi": "3.0.2",
        "info": {
            "title": "FastAPI",
            "version": "0.1.0"
        },
        "paths": {
            "/items/": {
                "get": {
                    "responses": {
                        "200": {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  7. apache-maven/src/main/appended-resources/licenses/EPL-2.0.txt

      different than this Agreement, provided that such license:
         i) effectively disclaims on behalf of all other Contributors all
         warranties and conditions, express and implied, including
         warranties or conditions of title and non-infringement, and
         implied warranties or conditions of merchantability and fitness
         for a particular purpose;
    
         ii) effectively excludes on behalf of all other Contributors all
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

     *
     * <p>For testing against the returned instances from a static factory class, such as
     *
     * <pre>
     * interface Book {...}
     * public class Books {
     *   public static Book hardcover(String title) {...}
     *   public static Book paperback(String title) {...}
     * }
     * </pre>
     *
     * <p>please use {@link ClassSanityTester#forAllPublicStaticMethods}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    	g, origCount, droppedNodes, droppedEdges := rpt.newTrimmedGraph()
    	rpt.selectOutputUnit(g)
    	labels := reportLabels(rpt, g, origCount, droppedNodes, droppedEdges, true)
    
    	c := &graph.DotConfig{
    		Title:       rpt.options.Title,
    		Labels:      labels,
    		FormatValue: rpt.formatValue,
    		Total:       rpt.total,
    	}
    	return g, c
    }
    
    // printDOT prints an annotated callgraph in DOT format.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

     *
     * <p>For testing against the returned instances from a static factory class, such as
     *
     * <pre>
     * interface Book {...}
     * public class Books {
     *   public static Book hardcover(String title) {...}
     *   public static Book paperback(String title) {...}
     * }
     * </pre>
     *
     * <p>please use {@link ClassSanityTester#forAllPublicStaticMethods}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
Back to top