Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getPr (0.01 seconds)

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/ChangelogEntry.java

            try {
                return yamlMapper.readValue(file, ChangelogEntry.class);
            } catch (IOException e) {
                throw new UncheckedIOException(e);
            }
        }
    
        public Integer getPr() {
            return pr;
        }
    
        public void setPr(Integer pr) {
            this.pr = pr;
        }
    
        public List<Integer> getIssues() {
            return issues;
        }
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 01 06:25:29 GMT 2021
    - 9.3K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/ValidateChangelogEntryTask.java

            changelogs.forEach((path, entry) -> {
                final String type = entry.getType();
    
                if (type.equals("known-issue") == false && type.equals("security") == false) {
                    if (entry.getPr() == null) {
                        throw new GradleException(
                            "[" + path + "] must provide a [pr] number (only 'known-issue' and " + "'security' entries can omit this"
                        );
                    }
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 01 14:45:41 GMT 2021
    - 3.3K bytes
    - Click Count (0)
Back to Top