Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 115 for consuming (2.09 sec)

  1. platforms/documentation/docs/src/docs/userguide/native/building_swift_projects.adoc

    If you’d like to dive into the details, check out the <<core_dependency_management.adoc#dependency_management_in_gradle,introduction to dependency management>>.
    
    Gradle provides support for consuming pre-built binaries from Maven repositories published by Gradle footnote:[Unfortunately, Cocoapods repositories aren’t yet supported as core features].
    
    We will cover how to add dependencies between projects within a multi-build project.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  2. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestFileHelper.groovy

            return execute(args, null)
        }
    
        ExecOutput execute(List args, List env) {
            def process = ([file.absolutePath] + args).execute(env, null)
    
            // Prevent process from hanging by consuming the output as we go.
            def output = new ByteArrayOutputStream()
            def error = new ByteArrayOutputStream()
    
            Thread outputThread = Thread.start { ByteStreams.copy(process.in, output) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/native/building_cpp_projects.adoc

    If you’d like to dive into the details, check out the <<core_dependency_management.adoc#dependency_management_in_gradle,introduction to dependency management>>.
    
    Gradle provides support for consuming pre-built binaries from Maven repositories published by Gradle footnote:[Unfortunately, Conan and Nuget repositories aren’t yet supported as core features].
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentAttributesRulesIntegrationTest.groovy

                }
            }
        }
    
        /**
         * This test simulates what should be the new, better way of doing latest.release.
         * Here, we set a value on the consuming configuration, which mandates a release status.
         * This means that we will evict versions which are "integration", even during dynamic
         * version selection. The nice thing is that it uses attribute matching now, and we prove
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/UntrackedTaskIntegrationTest.groovy

            failureHasCause("java.io.IOException: Cannot snapshot ${namedPipe}: not a regular file")
        }
    
        @Requires(UnitTestPreconditions.FilePermissions)
        def "tracked task consuming unreadable content fails"() {
            def rootDir = file("build/root")
            def unreadableDir = rootDir.file("unreadable")
            assert unreadableDir.mkdirs()
            assert unreadableDir.setReadable(false)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 23 08:05:53 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_types.cc

          // its use by the new UQ op. This is because such CastOp is already legal,
          // it will not go through any conversion pattern later. Without this, that
          // CastOp will still be consuming the original UQ op and cause errors.
          op->getResult(i).replaceUsesWithIf(
              new_op->getResult(i), [](OpOperand &operand) {
                return IsQintToIntCast(operand.getOwner());
              });
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top