createEntry() — spring-boot Function Reference
Architecture documentation for the createEntry() function in TarLayoutWriter.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 257553c9_d1a7_8ac9_61a2_fd3dcacbaaf8["createEntry()"] 366db6e2_b30e_b795_e15d_7930b28268c4["createDirectoryEntry()"] 366db6e2_b30e_b795_e15d_7930b28268c4 -->|calls| 257553c9_d1a7_8ac9_61a2_fd3dcacbaaf8 bd954e9d_a956_d0fa_0c91_500a157c2a4a["createFileEntry()"] bd954e9d_a956_d0fa_0c91_500a157c2a4a -->|calls| 257553c9_d1a7_8ac9_61a2_fd3dcacbaaf8 style 257553c9_d1a7_8ac9_61a2_fd3dcacbaaf8 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
buildpack/spring-boot-buildpack-platform/src/main/java/org/springframework/boot/buildpack/platform/io/TarLayoutWriter.java lines 67–75
private TarArchiveEntry createEntry(String name, Owner owner, byte linkFlag, int mode, int size) {
TarArchiveEntry entry = new TarArchiveEntry(name, linkFlag, true);
entry.setUserId(owner.getUid());
entry.setGroupId(owner.getGid());
entry.setMode(mode);
entry.setModTime(NORMALIZED_MOD_TIME);
entry.setSize(size);
return entry;
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does createEntry() do?
createEntry() is a function in the spring-boot codebase.
What calls createEntry()?
createEntry() is called by 2 function(s): createDirectoryEntry, createFileEntry.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free