Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for inputFileIfExists (0.34 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/api/GeneratorTask.java

         * does not exist, this task uses some default initial configuration.
         *
         * @return The input file.
         */
        @Internal("Covered by inputFileIfExists")
        public File getInputFile() {
            return inputFile != null ? inputFile : getOutputFile();
        }
    
        // Workaround for when the task is given an input file that doesn't exist
        @Nullable  @Optional
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/InstallExecutable.java

            return installDirectory;
        }
    
        /**
         * The executable file to install.
         *
         * @since 4.7
         *
         */
        @Internal("Covered by inputFileIfExists")
        public RegularFileProperty getExecutableFile() {
            return executable;
        }
    
        /**
         * The location of the installed executable file.
         *
         * @since 4.7
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top