Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for substituteVariables (0.2 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomReader.java

            }
            return pomProperties;
        }
    
        private String replaceProps(String val) {
            if (val == null) {
                return null;
            } else {
                return IvyPatternHelper.substituteVariables(val, effectiveProperties).trim();
            }
        }
    
        /**
         * Checks if the given value contains variable substitutions.
         *
         * @param value value to check
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 15:53:23 UTC 2024
    - 30K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                return value != null ? value : defaultValue;
            }
    
            private String substitute(String value) {
                return IvyPatternHelper.substituteVariables(value, properties);
            }
    
            private Map<String, String> getExtraAttributes(Attributes attributes, String[] ignoredAttributeNames) {
                Map<String, String> ret = new HashMap<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
Back to top