deleteVolumes() — spring-boot Function Reference
Architecture documentation for the deleteVolumes() function in BootBuildImageIntegrationTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 1faefd32_8516_9471_4a48_c635a6455550["deleteVolumes()"] e2076a17_e73a_3a1c_3604_352c76a256fb["buildsImageWithVolumeCaches()"] e2076a17_e73a_3a1c_3604_352c76a256fb -->|calls| 1faefd32_8516_9471_4a48_c635a6455550 41f5c9ca_7a61_90cb_4750_c29c1a092e1c["DockerApi()"] 1faefd32_8516_9471_4a48_c635a6455550 -->|calls| 41f5c9ca_7a61_90cb_4750_c29c1a092e1c 48b35501_4dce_9439_5fe1_b191f15ebde4["volume()"] 1faefd32_8516_9471_4a48_c635a6455550 -->|calls| 48b35501_4dce_9439_5fe1_b191f15ebde4 56c6a94a_906f_bea5_18c0_207cf050ae68["of()"] 1faefd32_8516_9471_4a48_c635a6455550 -->|calls| 56c6a94a_906f_bea5_18c0_207cf050ae68 style 1faefd32_8516_9471_4a48_c635a6455550 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
build-plugin/spring-boot-gradle-plugin/src/dockerTest/java/org/springframework/boot/gradle/tasks/bundling/BootBuildImageIntegrationTests.java lines 720–725
private void deleteVolumes(String... names) throws IOException {
VolumeApi volumeApi = new DockerApi().volume();
for (String name : names) {
volumeApi.delete(VolumeName.of(name), false);
}
}
Domain
Subdomains
Calls
Called By
Source
Frequently Asked Questions
What does deleteVolumes() do?
deleteVolumes() is a function in the spring-boot codebase.
What does deleteVolumes() call?
deleteVolumes() calls 3 function(s): DockerApi, of, volume.
What calls deleteVolumes()?
deleteVolumes() is called by 1 function(s): buildsImageWithVolumeCaches.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free