Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 270 for consuming (0.17 sec)

  1. docs/en/docs/tutorial/request-files.md

        * A file stored in memory up to a maximum size limit, and after passing this limit it will be stored in disk.
    * This means that it will work well for large files like images, videos, large binaries, etc. without consuming all the memory.
    * You can get metadata from the uploaded file.
    * It has a <a href="https://docs.python.org/3/glossary.html#term-file-like-object" class="external-link" target="_blank">file-like</a> `async` interface.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:02:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. docs/en/docs/deployment/concepts.md

    And multiple processes normally **don't share any memory**. This means that each running process has its own things, variables, and memory. And if you are consuming a large amount of memory in your code, **each process** will consume an equivalent amount of memory.
    
    ### Server Memory
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
  3. pkg/istio-agent/xds_proxy_delta.go

    // Every time envoy makes a fresh connection to the agent, we reestablish a new connection to the upstream xds
    // This ensures that a new connection between istiod and agent doesn't end up consuming pending messages from envoy
    // as the new connection may not go to the same istiod. Vice versa case also applies.
    func (p *XdsProxy) DeltaAggregatedResources(downstream DeltaDiscoveryStream) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/Combinators.kt

     * ```
     * ok
     * (ok)
     * ((ok))
     * (((ok)))
     * ```
     *
     * **WARNING** care must be taken to avoid infinite recursion, the delegate parser should always have
     * an input consuming parser at its front (e.g., in `p = paren(p) + p`, the `p` at the right would
     * cause an infinite recursion).
     */
    internal
    fun <T> reference(): ParserRef<T> = ParserRef()
    
    
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

    To specify custom plugin repositories, use the `repositories{}` block inside `pluginManagement{}`:
    
    ====
    include::sample[dir="snippets/plugins/consuming/kotlin", files="settings.gradle.kts[tags=custom-plugin-repositories]"]
    include::sample[dir="snippets/plugins/consuming/groovy", files="settings.gradle[tags=custom-plugin-repositories]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/stackcheck.go

    		addEdge(sc.callSize, sc.morestack)
    		return maxHeight, edges
    	}
    
    	// This function is nosplit, so it adjusts SP without a split
    	// check.
    	//
    	// Walk through SP adjustments in function, consuming relocs
    	// and following calls.
    	maxLocalHeight := 0
    	relocs, ri := ldr.Relocs(sym), 0
    	pcsp := obj.NewPCIter(uint32(ctxt.Arch.MinLC))
    	for pcsp.Init(ldr.Data(ldr.Pcsp(sym))); !pcsp.Done; pcsp.Next() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 16:49:08 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dynamic_versions.adoc

    [[sub:declaring_dependency_with_dynamic_version]]
    == Declaring a dynamic version
    
    Projects might adopt a more aggressive approach for consuming dependencies to modules.
    For example you might want to always integrate the latest version of a dependency to consume cutting edge features at any given time.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultFinalizedExecutionPlan.java

                for (Node consumer : producingNodeMutations.getNodesYetToConsumeOutput()) {
                    if (doesConsumerDependOnDestroyer(consumer, destroyer)) {
                        // If there's an explicit dependency from consuming node to destroyer,
                        // then we accept that as the will of the user
                        continue;
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 28 21:49:39 UTC 2022
    - 28.1K bytes
    - Viewed (0)
  9. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildConfigurationAttributesResolveIntegrationTest.groovy

            'OtherThing' | 'new OtherThing(name: "free")' | 'new OtherThing(name: "paid")'
        }
    
        def "compatibility and disambiguation rules can be defined by consuming build"() {
            given:
            createDirs("a", "b", "includedBuild")
            file('settings.gradle') << """
                include 'a', 'b'
                includeBuild 'includedBuild'
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 14:30:36 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  10. src/crypto/x509/verify.go

    	// needed to check a certificate exceeds the limit set by
    	// VerifyOptions.MaxConstraintComparisions. This limit exists to
    	// prevent pathological certificates can consuming excessive amounts of
    	// CPU time to verify.
    	TooManyConstraints
    	// CANotAuthorizedForExtKeyUsage results when an intermediate or root
    	// certificate does not permit a requested extended key usage.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
Back to top