Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 241 for consuming (0.21 sec)

  1. okhttp/src/main/kotlin/okhttp3/ResponseBody.kt

     *     }
     *   }
     *
     *   public void onFailure(Call call, IOException e) {
     *   ... // Handle the failure.
     *   }
     * });
     * ```
     *
     * These examples will not work if you're consuming the response body on another thread. In such
     * cases the consuming thread must call [close] when it has finished reading the response
     * body.
     *
     * ### The response body can be consumed only once.
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/execution/FilePropertyVisitor.java

     * limitations under the License.
     */
    
    package org.gradle.operations.execution;
    
    import java.io.File;
    import java.util.Set;
    
    /**
     * The consuming visitor for file properties on work.
     * <p>
     * Properties are visited depth-first lexicographical.
     * Roots are visited in semantic order (i.e. the order in which they make up the file collection)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/testing_gradle_plugins.adoc

    The standalone plugin project and the consuming project can be combined into a single unit, making it straightforward to try out or debug changes without re-publishing the binary file:
    
    ----
    .
    ├── include-plugin-build   // <1>
    │   ├── build.gradle
    │   └── settings.gradle
    └── url-verifier-plugin    // <2>
        ├── build.gradle
        ├── settings.gradle
        └── src
    ----
    <1> Consuming project that includes the plugin project
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 22:49:20 UTC 2024
    - 16K bytes
    - Viewed (0)
  4. src/crypto/rsa/boring_test.go

    	}
    }
    
    func TestBoringFinalizers(t *testing.T) {
    	if runtime.GOOS == "nacl" || runtime.GOOS == "js" {
    		// Times out on nacl and js/wasm (without BoringCrypto)
    		// but not clear why - probably consuming rand.Reader too quickly
    		// and being throttled. Also doesn't really matter.
    		t.Skipf("skipping on %s/%s", runtime.GOOS, runtime.GOARCH)
    	}
    
    	k, err := GenerateKey(rand.Reader, 2048)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 00:16:30 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/ParallelDependencyResolutionIntegrationTest.groovy

            when:
            run 'project1:resolveDependencies', 'project2:resolveDependencies'
    
            then:
            noExceptionThrown()
        }
    
        def "long running task in producing project does not block task in consuming project"() {
            blockingServer.start()
    
            createDirs("producer", "consumer")
            settingsFile << """
                include "producer"
                include "consumer"
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/LenientPlatformGraphResolveState.java

        }
    
        /**
         * @param platformId The consuming platform.
         */
        public VariantGraphResolveState getDefaultVariant(NodeState from, @Nullable ComponentIdentifier platformId) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/DefaultResolvableArtifact.java

            if (isProjectArtifact()) {
                // Use a node to eagerly calculate the file if this artifact will be used as a dependency of some other node
                // This is to avoid having to lock the producing project when a consuming task in another project runs
                this.resolvedArtifactDependency = new ResolveAction(this);
            } else {
                this.resolvedArtifactDependency = null;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/gradle_optimizations.adoc

    This is where a *build cache* is helpful.
    
    The build cache stores previous build results and restores them when needed.
    It prevents the redundant work and cost of executing time-consuming and expensive processes.
    
    When the build cache has been used to repopulate the local directory, the tasks are marked as `FROM-CACHE`:
    
    [source,text]
    ----
    $ ./gradlew compileJava --build-cache
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/LibraryBinariesIntegrationTest.groovy

            installation("build/install/main").exec().out == "CPP_C"
        }
    
        @Issue("GRADLE-2925")
        @ToBeFixedForConfigurationCache
        def "headers for source set added to library binary are available to consuming binary"() {
            def app = new CppHelloWorldApp()
            given:
            buildFile << """
    apply plugin: "cpp"
    
    model {
        components {
            main(NativeExecutableSpec) {
                sources {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolutionStrategy.java

         * <li>{@link SortOrder#CONSUMER_FIRST} : Artifacts for a consuming component should appear before artifacts for its dependencies.</li>
         * <li>{@link SortOrder#DEPENDENCY_FIRST} : Artifacts for a consuming component should appear after artifacts for its dependencies.</li>
         * </ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 17 13:05:50 UTC 2022
    - 16K bytes
    - Viewed (0)
Back to top