Home / Function/ createHistory() — spring-boot Function Reference

createHistory() — spring-boot Function Reference

Architecture documentation for the createHistory() function in ImageArchive.java from the spring-boot codebase.

Entity Profile

Dependency Diagram

graph TD
  151920e7_33fd_6034_96fd_2c6aa2645ddf["createHistory()"]
  8fd71db8_f92c_c709_bed4_e2d2c18d9b24["createConfig()"]
  8fd71db8_f92c_c709_bed4_e2d2c18d9b24 -->|calls| 151920e7_33fd_6034_96fd_2c6aa2645ddf
  2436cdd6_dab0_417f_e110_a3223e8ab556["size()"]
  151920e7_33fd_6034_96fd_2c6aa2645ddf -->|calls| 2436cdd6_dab0_417f_e110_a3223e8ab556
  style 151920e7_33fd_6034_96fd_2c6aa2645ddf 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/ImageArchive.java lines 189–196

	private JsonNode createHistory(List<LayerId> writtenLayers) {
		ArrayNode history = this.jsonMapper.createArrayNode();
		int size = this.existingLayers.size() + writtenLayers.size();
		for (int i = 0; i < size; i++) {
			history.addObject();
		}
		return history;
	}

Subdomains

Calls

Called By

Frequently Asked Questions

What does createHistory() do?
createHistory() is a function in the spring-boot codebase.
What does createHistory() call?
createHistory() calls 1 function(s): size.
What calls createHistory()?
createHistory() is called by 1 function(s): createConfig.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free