Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,174 for tuning (0.09 sec)

  1. docs/en/docs/advanced/using-request-directly.md

    # Using the Request Directly
    
    Up to now, you have been declaring the parts of the request that you need with their types.
    
    Taking data from:
    
    * The path as parameters.
    * Headers.
    * Cookies.
    * etc.
    
    And by doing so, **FastAPI** is validating that data, converting it and generating documentation for your API automatically.
    
    But there are situations where you might need to access the `Request` object directly.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 29 14:02:58 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/taskgrouping/AbstractBasicGroupedTaskLoggingFunctionalTest.groovy

            result.groupedOutput.task(':b:log').outcome == null
        }
    
        def "long running task output are flushed after delay"() {
            server.start()
    
            given:
            buildFile << """
                task log {
                    doLast {
                        logger.quiet 'Before'
                        ${callFromBuild('running')}
                        logger.quiet 'After'
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  3. src/regexp/exec2_test.go

    //go:build !race
    
    package regexp
    
    import (
    	"testing"
    )
    
    // This test is excluded when running under the race detector because
    // it is a very expensive test and takes too long.
    func TestRE2Exhaustive(t *testing.T) {
    	if testing.Short() {
    		t.Skip("skipping TestRE2Exhaustive during short test")
    	}
    	testRE2(t, "testdata/re2-exhaustive.txt.bz2")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 508 bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/externalcontrolplane-using-ip-addr.yaml

    Michael Weiner <******@****.***> 1697542898 -0500
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 11:41:38 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/java/modules-multi-project/README.adoc

    In test execution, the modules are then treated as standard Java libraries with the encapsulation deactivated.
    
    Blackbox (e.g. integration) tests, which should also follow the encapsulation rules during test execution, can be written by turning the corresponding test sources set itself into a module by adding a `module-info.java`.
    This is shown in link:sample_java_modules_multi_project_with_integration_tests.html[this extended sample].
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/apps/v1beta2/generated.proto

      // The total number of nodes that should be running the daemon
      // pod (including nodes correctly running the daemon pod).
      // More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/
      optional int32 desiredNumberScheduled = 3;
    
      // Total number of nodes that should be running the daemon pod and have one
      // or more of the daemon pod running with a Ready Condition by passing the readinessProbe.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1beta2/generated.proto

      // The total number of nodes that should be running the daemon
      // pod (including nodes correctly running the daemon pod).
      // More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/
      optional int32 desiredNumberScheduled = 3;
    
      // Total number of nodes that should be running the daemon pod and have one
      // or more of the daemon pod running with a Ready Condition by passing the readinessProbe.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 36.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr3_multi_project_builds.adoc

    tasks.register("task3"){
        println("REGISTER TASK3: This is executed during the configuration phase")
    }
    
    tasks.named("task3"){
        println("NAMED TASK3: This is executed during the configuration phase")
        doFirst {
            println("NAMED TASK3 - doFirst: This is executed during the execution phase")
        }
        doLast {
            println("NAMED TASK3 - doLast: This is executed during the execution phase")
        }
    }
    ----
    =====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 17:16:27 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. tests/integration/pilot/testdata/upgrade/1.11.0-beta.1-cni-install.yaml.tar

    metadata: name: istio-cni namespace: kube-system labels: app: istio-cni release: istio istio.io/rev: default install.operator.istio.io/owning-resource: unknown operator.istio.io/component: "Cni" --- apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole metadata: name: istio-cni labels: app: istio-cni release: istio istio.io/rev: default install.operator.istio.io/owning-resource: unknown operator.istio.io/component: "Cni" rules: - apiGroups: [""] resources: - pods - nodes verbs: - get --- apiVersion:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 29 18:43:32 UTC 2021
    - 10K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/api/plugins/jvm/internal/JvmFeatureInternal.java

        /**
         * Gets the dependency configuration for which to declare runtime-only dependencies.
         * Dependencies declared on this configuration are present only during runtime, are not
         * present during compilation, and are not exposed as part of the feature's API variant.
         *
         * @return The {@code runtimeOnly} configuration.
         */
        Configuration getRuntimeOnlyConfiguration();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top