Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 270 for consuming (0.43 sec)

  1. src/cmd/go/testdata/script/test_fuzz_fuzztime.txt

    [!fuzz] skip
    [short] skip
    env GOCACHE=$WORK/cache
    
    # There are no seed values, so 'go test' should finish quickly.
    go test
    
    # For the fuzzing phase, we reduce GOMAXPROCS to avoid consuming too many
    # resources during the test. Ideally this would just free up resources to run
    # other parallel tests more quickly, but unfortunately it is actually necessary
    # in some 32-bit environments to prevent the fuzzing engine from running out of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 01 20:09:52 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/PreferJavaRuntimeVariant.java

     * of the published library.
     * The following disambiguation rule encodes this assumption for the case where a java library is published
     * with variants using Gradle module metadata. This will allow us to migrate to consuming the new module
     * metadata format by default without breaking a bunch of consumers that depend on this assumption,
     * declaring no preference for a particular variant.
     */
    @ServiceScope(Scope.Global.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/internal/deprecation/DeprecatableConfiguration.java

         */
        List<String> getDeclarationAlternatives();
    
        /**
         * Return the names of configurations that should be used to consume a component instead of consuming this configuration.
         *
         * <p>This property is only relevant if this configuration deprecated for resolution.</p>
         */
        List<String> getResolutionAlternatives();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 07 03:39:06 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top