Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getSuggestedPaths (0.14 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/report/unbound/UnboundRulesReporter.java

                    writer.write("scope: ");
                    writer.println(input.getScope());
                }
                if (input.getSuggestedPaths().size() > 0) {
                    writer.write(indent(4));
                    writer.write("suggestions: ");
                    writer.println(Joiner.on(", ").join(input.getSuggestedPaths()));
                }
            }
        }
    
        private void heading(String heading) {
            writer.print(indent(1));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/report/unbound/UnboundRuleInput.java

            return path;
        }
    
        public String getType() {
            return type;
        }
    
        public boolean isBound() {
            return bound;
        }
    
        public ImmutableList<? extends String> getSuggestedPaths() {
            return suggestedPaths;
        }
    
        public String getDescription() {
            return description;
        }
    
        public String getScope() {
            return scope;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top