Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for getOutputMarker (0.07 seconds)

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/ForbiddenPatternsTask.java

            }
    
            File outputMarker = getOutputMarker();
            outputMarker.getParentFile().mkdirs();
            Files.write(outputMarker.toPath(), "done".getBytes(StandardCharsets.UTF_8));
        }
    
        @OutputFile
        public File getOutputMarker() {
            return new File(projectLayout.getBuildDirectory().getAsFile().get(), "markers/" + getName());
        }
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 6.8K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/FilePermissionsTask.java

            }
    
            outputMarker.getParentFile().mkdirs();
            Files.write(outputMarker.toPath(), "done".getBytes("UTF-8"));
        }
    
        @OutputFile
        public File getOutputMarker() {
            return outputMarker;
        }
    
        @Internal
        public abstract ListProperty<FileTree> getSources();
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 3.9K bytes
    - Click Count (0)
  3. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/DependencyLicensesTask.java

        // The check logic is exception driven so a failed tasks will not be defined
        // by this output but when successful we can safely mark the task as up-to-date.
        @OutputDirectory
        public File getOutputMarker() {
            return new File(getProject().getBuildDir(), "dependencyLicense");
        }
    
        private void failIfAnyMissing(String item, Boolean exists, String type) {
            if (exists == false) {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Jul 26 12:16:14 GMT 2021
    - 14.3K bytes
    - Click Count (0)
Back to Top