- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for intoCache (0.37 sec)
-
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelCacheTag.java
@Override public ModelData intoCache(ModelData data) { Model model = (data.getModel() != null) ? data.getModel().clone() : null; return new ModelData(data.getSource(), model, data.getGroupId(), data.getArtifactId(), data.getVersion()); } @Override public ModelData fromCache(ModelData data) { return intoCache(data); } }; /**Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 3.9K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java
ModelCache modelCache, String groupId, String artifactId, String version, ModelCacheTag<T> tag, T data) { if (modelCache != null) { modelCache.put(groupId, artifactId, version, tag.getName(), tag.intoCache(data)); } } private <T> T getCache( ModelCache modelCache, String groupId, String artifactId, String version, ModelCacheTag<T> tag) { if (modelCache != null) {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun Mar 30 23:08:08 UTC 2025 - 55.3K bytes - Viewed (0)