Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getWatchFileSystemMode (0.58 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/StartParameterInternal.java

        public boolean isUseEmptySettings() {
            return useEmptySettings;
        }
    
        public void useEmptySettings() {
            this.useEmptySettings = true;
        }
    
        public WatchMode getWatchFileSystemMode() {
            return watchFileSystemMode;
        }
    
        public void setWatchFileSystemMode(WatchMode watchFileSystemMode) {
            this.watchFileSystemMode = watchFileSystemMode;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 29 08:08:36 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/FileSystemWatchingBuildActionRunner.java

        public Result run(BuildAction action, BuildTreeLifecycleController buildController) {
            StartParameterInternal startParameter = action.getStartParameter();
    
            WatchMode watchFileSystemMode = startParameter.getWatchFileSystemMode();
            VfsLogging verboseVfsLogging = startParameter.isVfsVerboseLogging()
                ? VfsLogging.VERBOSE
                : VfsLogging.NORMAL;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/action/BuildActionSerializer.java

                encoder.writeBoolean(startParameter.isBuildCacheEnabled());
                encoder.writeBoolean(startParameter.isBuildCacheDebugLogging());
                encoder.writeString(startParameter.getWatchFileSystemMode().name());
                encoder.writeBoolean(startParameter.isWatchFileSystemDebugLogging());
                encoder.writeBoolean(startParameter.isVfsVerboseLogging());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 30.1K bytes
    - Viewed (0)
Back to top