Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 97 for corerest (0.13 sec)

  1. docs/en/docs/tutorial/body-multiple-params.md

    ```
    
    ## Recap
    
    You can add multiple body parameters to your *path operation function*, even though a request can only have a single body.
    
    But **FastAPI** will handle it, give you the correct data in your function, and validate and document the correct schema in the *path operation*.
    
    You can also declare singular values to be received as part of the body.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Jun 09 02:01:51 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSessionComponent.kt

                }
            }
    
        fun createTypeCheckerContext(errorTypePolicy: KaSubtypingErrorTypePolicy): TypeCheckerState {
            // TODO use correct session here,
            return analysisSession.firResolveSession.useSiteFirSession.typeContext.newTypeCheckerState(
                errorTypesEqualToAnything = errorTypePolicy == KaSubtypingErrorTypePolicy.LENIENT,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. src/sync/rwmutex.go

    	}
    	if race.Enabled {
    		race.Enable()
    		race.Acquire(unsafe.Pointer(&rw.readerSem))
    	}
    }
    
    // TryRLock tries to lock rw for reading and reports whether it succeeded.
    //
    // Note that while correct uses of TryRLock do exist, they are rare,
    // and use of TryRLock is often a sign of a deeper problem
    // in a particular use of mutexes.
    func (rw *RWMutex) TryRLock() bool {
    	if race.Enabled {
    		_ = rw.w.state
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Resolution.java

         * else a dependency collection request will be done.
         *
         * @return the id of the path scope
         */
        String pathScope() default "";
    
        /**
         * The request type, in case the default one is not correct.
         * Valid values are {@code collect}, {@code flatten}, or {@code resolve}.
         *
         * @return the request type
         */
        String requestType() default "";
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/BUILD

        srcs = ["mlir_graph_optimization_pass_test.cc"],
        deps = [
            ":mlir_graph_optimization_pass",
            "//tensorflow/core:core_cpu",
            "//tensorflow/core:ops",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
            "//tensorflow/core/common_runtime:optimization_registry",
            "//tensorflow/core/framework:tensor_testutil",
            "//tensorflow/core/lib/monitoring:cell_reader",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/translate/BUILD

    )
    
    tf_cc_test(
        name = "tf_mlir_translate_registration_test",
        size = "small",
        srcs = ["tf_mlir_translate_registration_test.cc"],
        deps = [
            ":translate_registration",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
            "@com_google_absl//absl/strings",
            "@llvm-project//llvm:Support",
            "@llvm-project//mlir:TranslateLib",
        ],
    )
    
    cc_library(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. cmd/storage-interface.go

    	// For that individual storage API calls will fail properly. The purpose
    	// of this function is to know if the "drive" has "format.json" or not
    	// if it has a "format.json" then is it correct "format.json" or not.
    	IsOnline() bool
    
    	// Returns the last time this disk (re)-connected
    	LastConn() time.Time
    
    	// Indicates if disk is local or not.
    	IsLocal() bool
    
    	// Returns hostname if disk is remote.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/api/v2/BUILD

            "//tensorflow/compiler/tf2xla:xla_compiler",
            "//tensorflow/compiler/tf2xla:xla_helpers",
            "//tensorflow/core:framework",
            "//tensorflow/core:lib",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
            "//tensorflow/core/lib/monitoring:cell_reader",
            "//tensorflow/core/protobuf:for_core_protos_cc",
            "//tensorflow/core/protobuf/tpu:compile_metadata_proto_cc",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheHost.kt

                projectState.createMutableModel(coreAndPluginsScope, coreAndPluginsScope)
                val project = projectState.mutableModel
                // Build dir is restored in order to use the correct workspace directory for transforms of project dependencies when the build dir has been customized
                buildDirs[project.projectPath]?.let {
                    project.layout.buildDirectory.set(it)
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheCompositeBuildsIntegrationTest.groovy

            configurationCacheRun 'run'
    
            then:
            outputContains 'Before!'
            configurationCache.assertStateStored()
    
            and: 'included build state is stored in a separate file with the correct permissions'
            def confCacheDir = file("./app/.gradle/configuration-cache")
            confCacheDir.isDirectory()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top