Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 902 for patching (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/controller/podautoscaler/metrics/client.go

    type resourceMetricsClient struct {
    	client resourceclient.PodMetricsesGetter
    }
    
    // GetResourceMetric gets the given resource metric (and an associated oldest timestamp)
    // for all pods matching the specified selector in the given namespace
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 16 20:17:52 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  9. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/EnableFileSystemWatchingIntegrationTest.groovy

        private static final String ENABLED_MESSAGE = "Watching the file system is configured to be enabled"
        private static final String ENABLED_IF_AVAILABLE_MESSAGE = "Watching the file system is configured to be enabled if available"
        private static final String DISABLED_MESSAGE = "Watching the file system is configured to be disabled"
    
        private static final String ACTIVE_MESSAGE = "File system watching is active"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/test/groovy/org/gradle/tooling/internal/provider/FileSystemWatchingBuildActionRunnerTest.groovy

            new DefaultInternalOptions([:]))
    
        def setup() {
            _ * startParameter.getSystemPropertiesArgs() >> [:]
            _ * buildAction.startParameter >> startParameter
        }
    
        def "watching virtual file system is informed about watching the file system being #watchMode.description (VFS logging: #vfsLogging, watch logging: #watchLogging)"() {
            _ * startParameter.watchFileSystemMode >> watchMode
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 7.8K bytes
    - Viewed (0)
Back to top