Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getInputFileIfExists (0.15 sec)

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

         */
        @Internal
        protected boolean getIncremental() {
            return false;
        }
    
        @SuppressWarnings("UnusedDeclaration")
        @TaskAction
        void generate() {
            File inputFile = getInputFileIfExists();
            if (inputFile != null) {
                try {
                    domainObject = generator.read(inputFile);
                } catch (RuntimeException e) {
    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

            this.installedExecutable.set(getLibDirectory().map(directory -> directory.file(executable.getAsFile().get().getName())));
            // A further work around for missing ability to skip task when input file is missing (see #getInputFileIfExists below)
            getInputs().file(executable);
            this.targetPlatform = objectFactory.property(NativePlatform.class);
            this.toolChain = objectFactory.property(NativeToolChain.class);
        }
    
        /**
    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