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

fromTarArchive() — spring-boot Function Reference

Architecture documentation for the fromTarArchive() function in Layer.java from the spring-boot codebase.

Entity Profile

Dependency Diagram

graph TD
  a57a8084_43f9_2805_9924_ecdd0d8514ef["fromTarArchive()"]
  d644bb3a_75cd_f440_d2e5_1711b897e317["of()"]
  d644bb3a_75cd_f440_d2e5_1711b897e317 -->|calls| a57a8084_43f9_2805_9924_ecdd0d8514ef
  1ed02a34_7e65_ca96_0551_0c81871791b4["Layer()"]
  a57a8084_43f9_2805_9924_ecdd0d8514ef -->|calls| 1ed02a34_7e65_ca96_0551_0c81871791b4
  style a57a8084_43f9_2805_9924_ecdd0d8514ef 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/Layer.java lines 84–92

	public static Layer fromTarArchive(TarArchive tarArchive) throws IOException {
		Assert.notNull(tarArchive, "'tarArchive' must not be null");
		try {
			return new Layer(tarArchive);
		}
		catch (NoSuchAlgorithmException ex) {
			throw new IllegalStateException(ex);
		}
	}

Subdomains

Calls

Called By

Frequently Asked Questions

What does fromTarArchive() do?
fromTarArchive() is a function in the spring-boot codebase.
What does fromTarArchive() call?
fromTarArchive() calls 1 function(s): Layer.
What calls fromTarArchive()?
fromTarArchive() is called by 1 function(s): of.

Analyze Your Own Codebase

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

Try Supermodel Free