getNameWithDefaultPath() — spring-boot Function Reference
Architecture documentation for the getNameWithDefaultPath() function in ImageName.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 10cebd18_f92b_93f7_9f93_fb1433a01e79["getNameWithDefaultPath()"] 2005a9e6_c261_9d5b_8cfe_33943b6d522a["ImageName()"] 2005a9e6_c261_9d5b_8cfe_33943b6d522a -->|calls| 10cebd18_f92b_93f7_9f93_fb1433a01e79 53a1057f_c4bb_dc6e_f36b_89632e46d0db["equals()"] 10cebd18_f92b_93f7_9f93_fb1433a01e79 -->|calls| 53a1057f_c4bb_dc6e_f36b_89632e46d0db style 10cebd18_f92b_93f7_9f93_fb1433a01e79 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
buildpack/spring-boot-buildpack-platform/src/main/java/org/springframework/boot/buildpack/platform/docker/type/ImageName.java lines 112–117
private String getNameWithDefaultPath(String domain, String name) {
if (DEFAULT_DOMAIN.equals(domain) && !name.contains("/")) {
return OFFICIAL_REPOSITORY_NAME + "/" + name;
}
return name;
}
Domain
Subdomains
Calls
Called By
Source
Frequently Asked Questions
What does getNameWithDefaultPath() do?
getNameWithDefaultPath() is a function in the spring-boot codebase.
What does getNameWithDefaultPath() call?
getNameWithDefaultPath() calls 1 function(s): equals.
What calls getNameWithDefaultPath()?
getNameWithDefaultPath() is called by 1 function(s): ImageName.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free