Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 5,637 for need (0.07 sec)

  1. docs/en/docs/tutorial/encoder.md

    # JSON Compatible Encoder
    
    There are some cases where you might need to convert a data type (like a Pydantic model) to something compatible with JSON (like a `dict`, `list`, etc).
    
    For example, if you need to store it in a database.
    
    For that, **FastAPI** provides a `jsonable_encoder()` function.
    
    ## Using the `jsonable_encoder`
    
    Let's imagine that you have a database `fake_db` that only receives JSON compatible data.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. docs/en/docs/features.md

    ### Short
    
    It has sensible **defaults** for everything, with optional configurations everywhere. All the parameters can be fine-tuned to do what you need and to define the API you need.
    
    But by default, it all **"just works"**.
    
    ### Validation
    
    * Validation for most (or all?) Python **data types**, including:
        * JSON objects (`dict`).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. maven-compat/src/test/projects/project-dependencies-resolver/it0063/jdk/jre/placeholder.txt

    need it so that empty directory does not get deleted...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 15 14:24:56 UTC 2023
    - 53 bytes
    - Viewed (0)
  4. src/cmd/go/internal/modcmd/why.go

    	$ go mod why golang.org/x/text/language golang.org/x/text/encoding
    	# golang.org/x/text/language
    	rsc.io/quote
    	rsc.io/sampler
    	golang.org/x/text/language
    
    	# golang.org/x/text/encoding
    	(main module does not need package golang.org/x/text/encoding)
    	$
    
    See https://golang.org/ref/mod#go-mod-why for more about 'go mod why'.
    	`,
    }
    
    var (
    	whyM      = cmdWhy.Flag.Bool("m", false, "")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 01 21:32:23 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/HierarchicalFileWatcherUpdater.java

                if (watchedFiles.contains(watchableHierarchy)) {
                    // Need to stop watching this hierarchy
                    return !hasSnapshotsToWatch;
                } else {
                    // Need to start watching this hierarchy
                    return hasSnapshotsToWatch;
                }
            });
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/plugins/PluginInstantiator.java

    /**
     * An instantiator that uses the correct instantiation scheme depending on the plugin type.  This allows
     * us to use a decorated instantiator for types that need it (such as software type plugins) and continue
     * using the injected instantiator for types that do not need it (such as plugin types marked as final).
     */
    @NonNullApi
    public class PluginInstantiator implements Instantiator {
        private final Instantiator injectedInstantiator;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/UrlArtifactRepository.java

         * </b>
         * <p>
         * See also:
         * <a href="https://medium.com/bugbountywriteup/want-to-take-over-the-java-ecosystem-all-you-need-is-a-mitm-1fc329d898fb">Want to take over the Java ecosystem? All you need is a MITM!</a>
         */
        boolean isAllowInsecureProtocol();
    
        /**
         * Specifies whether it is acceptable to communicate with a repository over an insecure HTTP connection.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 24 17:16:12 UTC 2020
    - 2.4K bytes
    - Viewed (0)
  8. src/runtime/cgo/signal_ios_arm64.s

    // mach thread port as EXC_BAD_ACCESS. As the segfault may have happened
    // in C code, we first need to load_g then call xx_cgo_panicmem.
    //
    //	R1 - LR at moment of fault
    //	R2 - PC at moment of fault
    TEXT xx_cgo_panicmem(SB),NOSPLIT|NOFRAME,$0
    	// If in external C code, we need to load the g register.
    	BL  runtimeĀ·load_g(SB)
    	CMP $0, g
    	BNE ongothread
    
    	// On a foreign thread.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 06 22:54:58 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/test/groovy/org/gradle/docs/releasenotes/StaticReleaseNotesTest.groovy

                def href = it.attr("href")
                return href.startsWith("https://docs.gradle.org")
            }
    
            then:
            assert absoluteLinks.empty : "all links to docs.gradle.org need to be relative and not hardcode the host"
        }
    
        def "no root links to current"() {
            when:
            def links = renderedDocument.select("a")
    
            def linksToCurrent = links.grep {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. testing/precondition-tester/build.gradle.kts

            because("Smoke test preconditions are coming from here")
        }
    
        // This is a special dependency, as some of the preconditions might need a distribution.
        // E.g. see "IntegTestPreconditions.groovy"
        testImplementation(project(":distributions-core")) {
            because("Some preconditions might need a distribution to run against")
        }
    
        // ========================================================================
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 04:59:12 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top