Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setWatchFileSystemMode (0.41 sec)

  1. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/EnableFileSystemWatchingIntegrationTest.groovy

            buildFile << """
                apply plugin: "java"
            """
    
            def initScript = file("init.gradle") << """
                gradle.startParameter.setWatchFileSystemMode(${WatchMode.name}.${watchMode.name()})
            """
    
            when:
            run("assemble", "--info", "--init-script", initScript.absolutePath)
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/StartParameterInternal.java

        public void useEmptySettings() {
            this.useEmptySettings = true;
        }
    
        public WatchMode getWatchFileSystemMode() {
            return watchFileSystemMode;
        }
    
        public void setWatchFileSystemMode(WatchMode watchFileSystemMode) {
            this.watchFileSystemMode = watchFileSystemMode;
        }
    
        public boolean isWatchFileSystemDebugLogging() {
            return watchFileSystemDebugLogging;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 29 08:08:36 UTC 2023
    - 8.1K bytes
    - Viewed (0)
Back to top