Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 728 for Several (0.24 sec)

  1. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part6_gradle_caching.adoc

    - Understand caching
    - Explore remote build caching
    ****
    
    [[part6_begin]]
    == Step 0. Before you Begin
    
    1. You initialized your Java app in <<part1_gradle_init.adoc#part1_begin,part 1>>.
    2. You ran several tasks in <<part2_gradle_tasks#part2_begin,part 2>>.
    3. You learned about dependency management in <<part3_gradle_dep_man#part3_begin,part 3>>.
    4. You applied a plugin to your app in <<part4_gradle_plugins#part4_begin,part 4>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/DefaultMutableMavenModuleResolveMetadataTest.groovy

            mavenMetadataFactory.create(id, []) as AbstractMutableModuleComponentResolveMetadata
        }
    
        def "defines configurations for maven scopes and several usage buckets"() {
            def id = DefaultModuleComponentIdentifier.newId(DefaultModuleIdentifier.newId("group", "module"), "version")
            def metadata = mavenMetadataFactory.create(id, [])
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/integTest/groovy/org/gradle/cache/internal/DefaultFileLockManagerContentionIntegrationTest.groovy

        // This test simulates a long running Zinc compiler setup by running code similar to ZincScalaCompilerFactory through the worker API.
        // if many workers wait for the same exclusive lock, a worker does not time out because several others get the lock before
        def "worker not timeout"() {
            given:
            def gradleUserHome = file("home").absoluteFile
            buildFile << """
                task doWorkInWorker(type: WorkerTask) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  4. src/sync/mutex.go

    	// (1) it is the last waiter in the queue, or (2) it waited for less than 1 ms,
    	// it switches mutex back to normal operation mode.
    	//
    	// Normal mode has considerably better performance as a goroutine can acquire
    	// a mutex several times in a row even if there are blocked waiters.
    	// Starvation mode is important to prevent pathological cases of tail latency.
    	starvationThresholdNs = 1e6
    )
    
    // Lock locks m.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. pkg/kubelet/volumemanager/volume_manager.go

    	// podAttachAndMountTimeout is the maximum amount of time the
    	// WaitForAttachAndMount call will wait for all volumes in the specified pod
    	// to be attached and mounted. Even though cloud operations can take several
    	// minutes to complete, we set the timeout to 2 minutes because kubelet
    	// will retry in the next sync iteration. This frees the associated
    	// goroutine of the pod to process newer updates if needed (e.g., a delete
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/analysis.go

    // analysis of that package will be available during later analysis of P.
    // Facts are analogous to type export data in a build system:
    // just as export data enables separate compilation of several passes,
    // facts enable "separate analysis".
    //
    // Each pass (a, p) starts with the set of facts produced by the
    // same analyzer a applied to the packages directly imported by p.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/GraphVariantSelector.java

            if (matches.size() > 1) {
                // there's an ambiguity, but we may have several variants matching the requested capabilities.
                // Here we're going to check if in the candidates, there's a single one _strictly_ matching the requested capabilities.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/local/model/LocalComponentGraphResolveStateFactoryTest.groovy

            then:
            conf1State.resolveArtifacts().artifacts.size() == 3
            conf2State.resolveArtifacts().artifacts.size() == 1
        }
    
        def "can add artifact to several configurations"() {
            def artifact = artifactName()
            def file = new File("artifact.zip")
    
            given:
            def conf1 = consumable("conf1")
            def conf2 = consumable("conf2")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  9. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/variants/GradlePluginWithVariantsPublicationIntegrationTest.groovy

            The only attribute distinguishing these variants is 'color'. Add this attribute to the consumer's configuration to resolve the ambiguity:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/sharing_build_logic_between_subprojects.adoc

    [[sec:convention_plugins]]
    == Share logic using convention plugins
    
    Gradle's recommended way of organizing build logic is to use its plugin system.
    
    We can write a plugin that encapsulates the build logic common to several subprojects in a project.
    This kind of plugin is called a *convention plugin*.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 12:58:46 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top