Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,788 for patching (0.27 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. testing/integ-test/src/integTest/groovy/org/gradle/integtests/configuration/ExecuteDomainObjectCollectionCallbackBuildOperationTypeIntegrationTest.groovy

            "matching{true}.all" | 'pmd reports'             | ['java-library', 'pmd']        | 'pmdMain.reports'                        | ''
            "matching{true}.all" | 'codenarc reports'        | ['groovy', 'codenarc']         | 'codenarcMain.reports'                   | ''
            "matching{true}.all" | 'html dependency reports' | ['project-report']             | 'htmlDependencyReport.reports'           | ''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  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. 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)
  10. platforms/documentation/docs/src/snippets/java/toolchain-filters/groovy/build.gradle

    } else if (testToolchain == "matchingVendor") {
    // tag::toolchain-matching-vendor[]
    java {
        toolchain {
            languageVersion = JavaLanguageVersion.of(11)
            vendor = JvmVendorSpec.matching("customString")
        }
    }
    // end::toolchain-matching-vendor[]
    
    } else if (testToolchain == "matchingImplementation") {
    // tag::toolchain-matching-implementation[]
    java {
        toolchain {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1004 bytes
    - Viewed (0)
Back to top