Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,082 for patching (0.24 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractNamedDomainObjectCollectionSpec.groovy

            noExceptionThrown()
    
            when:
            container.matching({ it in container.type }).named("a").configure(method)
            then:
            noExceptionThrown()
    
            when:
            container.matching({ it in container.type }).named("a", method)
            then:
            noExceptionThrown()
    
            when:
            container.matching({ it in container.type }).named("a", getType(), method)
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 5.8K bytes
    - Viewed (0)
  8. 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)
  9. platforms/documentation/docs/src/snippets/java/toolchain-filters/kotlin/build.gradle.kts

    } 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
    - 1000 bytes
    - Viewed (0)
  10. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerFileSystemWatchingIntegrationTest.groovy

            buildFile << """
                plugins {
                    id('java')
                }
            """
            assumeTrue("File system watching is enabled by default", isCompatibleVersion("7.0"))
        }
    
        @NoDebug
        @Requires(UnitTestPreconditions.Windows)
        def "disables file system watching on Windows"() {
            when:
            def result = runAssemble()
            then:
            assertFileSystemWatchingDisabled(result)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top