Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 106 for danger (0.09 sec)

  1. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/performanceReport.js

            refreshCards(selectedTags)
        })
    }
    
    function failedScenarioButtonClicked() {
        $('[data-toggle="popover"]').popover('hide')
        $('#failed-scenarios').removeClass('btn-outline-danger').addClass('btn-danger')
        $('#all-scenarios').addClass('btn-outline-primary').removeClass('btn-primary')
        refreshCards(['FAILED', 'REGRESSED', 'UNKNOWN'])
    }
    
    function allScenarioButtonClicked() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/Tag.java

            FAILED("FAILED", "badge badge-danger", "Regression confidence > 99.9% despite retries."),
            NEARLY_FAILED("NEARLY-FAILED", "badge badge-warning", "Regression confidence > 90%, we're going to fail soon."),
            REGRESSED("REGRESSED", "badge badge-danger", "Regression confidence > 99.9% despite retries."),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/AbstractTablePageGenerator.java

                                td().classAttr("text-muted").text("se: " + baseVersion.getStandardError().format()).end();
                                td().classAttr(baseVersion.getMedian().compareTo(currentVersion.getMedian()) >= 0 ? "text-success" : "text-danger").text(currentVersion.getMedian().format()).end();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonFactory.java

                    // is never called) the cancellation handler will not stop daemons on a cancellation (as there is no danger of
                    // leaving one in an unsafe state).
                    workerDaemonClientCancellationHandler.start();
                    
                    // wrap in build operation for logging startup failures
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 13:20:59 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. src/runtime/debug/stack.go

    	if f != nil {
    		// The runtime will write to this file descriptor from
    		// low-level routines during a panic, possibly without
    		// a G, so we must call f.Fd() eagerly. This creates a
    		// danger that that the file descriptor is no longer
    		// valid at the time of the write, because the caller
    		// (incorrectly) called f.Close() and the kernel
    		// reissued the fd in a later call to open(2), leading
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. docs/em/docs/how-to/custom-request-and-route.md

    # ๐Ÿ›ƒ ๐Ÿ“จ & APIRoute ๐ŸŽ“
    
    ๐Ÿ’ผ, ๐Ÿ‘† 5๏ธโƒฃ๐Ÿ“† ๐Ÿ’š ๐Ÿ” โš› โš™๏ธ `Request` & `APIRoute` ๐ŸŽ“.
    
    ๐ŸŽฏ, ๐Ÿ‘‰ 5๏ธโƒฃ๐Ÿ“† ๐Ÿ‘ ๐ŸŽ› โš› ๐Ÿ› ๏ธ.
    
    ๐Ÿ–ผ, ๐Ÿšฅ ๐Ÿ‘† ๐Ÿ’š โœ โš–๏ธ ๐Ÿ”ฌ ๐Ÿ“จ ๐Ÿ’ช โญ โšซ๏ธ ๐Ÿ› ๏ธ ๐Ÿ‘† ๐Ÿˆธ.
    
    !!! danger
        ๐Ÿ‘‰ "๐Ÿง" โš’.
    
        ๐Ÿšฅ ๐Ÿ‘† โ–ถ๏ธ โฎ๏ธ **FastAPI** ๐Ÿ‘† ๐Ÿ’ช ๐Ÿ’š ๐Ÿšถ ๐Ÿ‘‰ ๐Ÿ“„.
    
    ## โš™๏ธ ๐Ÿ’ผ
    
    โš™๏ธ ๐Ÿ’ผ ๐Ÿ”Œ:
    
    * ๐Ÿญ ๐Ÿšซ-๐ŸŽป ๐Ÿ“จ ๐Ÿ’ช ๐ŸŽป (โœ… <a href="https://msgpack.org/index.html" class="external-link" target="_blank">`msgpack`</a>).
    * ๐Ÿ—œ ๐Ÿ—œ-๐Ÿ—œ ๐Ÿ“จ ๐Ÿ’ช.
    * ๐Ÿ” ๐Ÿšจ ๐ŸŒ ๐Ÿ“จ ๐Ÿ’ช.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/IndexPageGenerator.java

                    if (scenario.isUnknown()) {
                        return "alert-dark";
                    } else if (!scenario.isSuccessful()) {
                        return failsBuild(scenario) ? "alert-danger" : "alert-warning";
                    } else if (scenario.isAboutToRegress()) {
                        return "alert-warning";
                    } else if (scenario.isImproved()) {
                        return "alert-success";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. docs/de/docs/how-to/custom-request-and-route.md

    Das kann insbesondere eine gute Alternative zur Logik in einer Middleware sein.
    
    Wenn Sie beispielsweise den Requestbody lesen oder manipulieren mรถchten, bevor er von Ihrer Anwendung verarbeitet wird.
    
    !!! danger "Gefahr"
        Dies ist eine โ€žfortgeschritteneโ€œ Funktion.
    
        Wenn Sie gerade erst mit **FastAPI** beginnen, mรถchten Sie diesen Abschnitt vielleicht รผberspringen.
    
    ## Anwendungsfรคlle
    
    Einige Anwendungsfรคlle sind:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:18:23 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. docs/en/docs/how-to/custom-request-and-route.md

    In particular, this may be a good alternative to logic in a middleware.
    
    For example, if you want to read or manipulate the request body before it is processed by your application.
    
    !!! danger
        This is an "advanced" feature.
    
        If you are just starting with **FastAPI** you might want to skip this section.
    
    ## Use cases
    
    Some use cases include:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. docs/em/docs/tutorial/extra-models.md

    # โž• ๐Ÿท
    
    โ–ถ๏ธ โฎ๏ธ โฎ๏ธ ๐Ÿ–ผ, โšซ๏ธ ๐Ÿ”œ โš  โœ”๏ธ ๐ŸŒ… ๐ŸŒ˜ 1๏ธโƒฃ ๐Ÿ”— ๐Ÿท.
    
    ๐Ÿ‘‰ โœด๏ธ ๐Ÿ’ผ ๐Ÿ‘ฉโ€๐Ÿ’ป ๐Ÿท, โ†ฉ๏ธ:
    
    *  **๐Ÿ”ข ๐Ÿท** ๐Ÿ’ช ๐Ÿ’ช โœ”๏ธ ๐Ÿ”.
    *  **๐Ÿ”ข ๐Ÿท** ๐Ÿ”œ ๐Ÿšซ โœ”๏ธ ๐Ÿ”.
    *  **๐Ÿ’ฝ ๐Ÿท** ๐Ÿ”œ ๐ŸŽฒ ๐Ÿ’ช โœ”๏ธ #๏ธโƒฃ ๐Ÿ”.
    
    !!! danger
        ๐Ÿ™… ๐Ÿช ๐Ÿ‘ฉโ€๐Ÿ’ป ๐Ÿ”ข ๐Ÿ”. ๐Ÿ•ง ๐Ÿช "๐Ÿ” #๏ธโƒฃ" ๐Ÿ‘ˆ ๐Ÿ‘† ๐Ÿ’ช โคด๏ธ โœ”.
    
        ๐Ÿšฅ ๐Ÿ‘† ๐Ÿšซ ๐Ÿ’ญ, ๐Ÿ‘† ๐Ÿ”œ ๐Ÿ’ก โšซ๏ธโ” "๐Ÿ”#๏ธโƒฃ" [๐Ÿ’‚โ€โ™‚ ๐Ÿ“ƒ](security/simple-oauth2.md#_4){.internal-link target=_blank}.
    
    ## ๐Ÿ’— ๐Ÿท
    
    ๐Ÿ“ฅ ๐Ÿข ๐Ÿ’ญ โ” ๐Ÿท ๐Ÿ’ช ๐Ÿ‘€ ๐Ÿ’– โฎ๏ธ ๐Ÿ‘ซ ๐Ÿ” ๐Ÿ‘ &amp; ๐Ÿฅ‰ ๐ŸŒโ” ๐Ÿ‘ซ โš™๏ธ:
    
    === "๐Ÿ 3๏ธโƒฃ.6๏ธโƒฃ &amp; ๐Ÿ”›"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top