Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 961 for patching (0.38 sec)

  1. platforms/documentation/docs/src/docs/dsl/org.gradle.caching.http.HttpBuildCache.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/dsl/org.gradle.caching.local.DirectoryBuildCache.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/TaskContainerIntegrationTest.groovy

            "matching { it.group == \"help\" }" | "all {}"            | true                  | true
            "matching { it.group == \"help\" }" | "forEach {}"        | true                  | false
            "matching { it.group == \"help\" }" | "configureEach {}"  | false                 | false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 07:46:00 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/file_system_watching.adoc

    // limitations under the License.
    
    [[sec:daemon_watch_fs]]
    = File System Watching
    
    Gradle maintains a Virtual File System (VFS) to calculate what needs to be rebuilt on repeat builds of a project.
    By watching the file system, Gradle keeps the VFS current between builds.
    
    == Enable
    
    Gradle enables file system watching by default for supported operating systems since Gradle 7.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 26 16:37:56 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/CompositeFileTreeTest.groovy

            when:
            FileTree filtered = tree.matching(closure)
            def sourceCollections = (filtered as CompositeFileTree).sourceCollections
    
            then:
            sourceCollections == [filtered1, filtered2]
    
            and:
            1 * patternSetFactory.create() >> patterns
            1 * source1.matching(patterns) >> filtered1
            1 * source2.matching(patterns) >> filtered2
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/api/meta/priority.go

    	for _, pattern := range priorities {
    		var matching []*RESTMapping
    		for _, m := range remaining {
    			if kindMatches(pattern, m.GroupVersionKind) {
    				matching = append(matching, m)
    			}
    		}
    
    		switch len(matching) {
    		case 0:
    			// if you have no matches, then nothing matched this pattern just move to the next
    			continue
    		case 1:
    			// one match, return
    			return matching[0], originalErr
    		default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 23:44:02 UTC 2021
    - 7.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/collections/ImmutableFilteredListTest.groovy

            def list = ImmutableFilteredList.allOf([1, 2, 3, 4, 5, 6])
    
            expect:
            list.matching(x -> x > 2) == [3, 4, 5, 6]
            list.matching(x -> x < 2) == [1]
            list.matching(x -> x > 2).matching(x -> x < 5) == [3, 4]
            list.matching(x -> x != 5).matching(x -> x != 3) == [1, 2, 4, 6]
            list.matching(x -> x != 1).matching(x -> x != 6) == [2, 3, 4, 5]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/HierarchicalFileWatcherUpdater.java

     * Build root directories are always watchable hierarchies.
     * Watching the build root directories is better since they are less likely to be deleted and
     * nearly no changes to the watched directories are necessary when running builds on the same project.
     *
     * To allow deleting the build root directories, we need to stop watching a build root directory if there are no more snapshots in the VFS inside,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/tasks/Sync.java

     * // destination directory. Files matching the preserve
     * // filter will not be deleted.
     * task sync(type: Sync) {
     *     from 'source'
     *     into 'dest'
     *     preserve {
     *         include 'extraDir/**'
     *         include 'dir1/**'
     *         exclude 'dir1/extra.txt'
     *     }
     * }
     * </pre>
     */
    @DisableCachingByDefault(because = "Not worth caching")
    public abstract class Sync extends AbstractCopyTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  10. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/JvmVendorSpec.java

         */
        public static final JvmVendorSpec ADOPTIUM = matching(KnownJvmVendor.ADOPTIUM);
    
        public static final JvmVendorSpec ADOPTOPENJDK = matching(KnownJvmVendor.ADOPTOPENJDK);
    
        public static final JvmVendorSpec AMAZON = matching(KnownJvmVendor.AMAZON);
    
        public static final JvmVendorSpec APPLE = matching(KnownJvmVendor.APPLE);
    
        public static final JvmVendorSpec AZUL = matching(KnownJvmVendor.AZUL);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top