- Sort Score
- Result 10 results
- Languages All
Results 171 - 180 of 211 for getSession (0.06 sec)
-
impl/maven-core/src/main/java/org/apache/maven/lifecycle/Lifecycle.java
.forEach(goal -> goals.computeIfAbsent(phase.name(), n -> new ArrayList<>()) .add(plugin.getGroupId() + ":" + plugin.getArtifactId() + ":" + plugin.getVersion() + ":" + goal))))); return goals.entrySet().stream() .collect(Collectors.toMap(Map.Entry::getKey, e -> new LifecyclePhase(String.join(",", e.getValue())))); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.9K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/VersionsMetadata.java
return artifact.getGroupId(); } @Override public String getArtifactId() { return artifact.getArtifactId(); } @Override public String getVersion() { return ""; } @Override public Nature getNature() { return artifact.isSnapshot() ? Nature.RELEASE_OR_SNAPSHOT : Nature.RELEASE; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Toolchain.java
* </ul> * * <p>Example usage:</p> * <pre> * Toolchain toolchain = ...; // Obtain a Toolchain instance * String type = toolchain.getType(); // Get the type of the toolchain * String version = toolchain.getVersion(); // Get the version of the toolchain * </pre> * * * @since 4.0.0 * @see JavaToolchain * @see org.apache.maven.api.services.ToolchainManager */ @Experimental public interface Toolchain { /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Aug 27 21:13:34 UTC 2024 - 3.2K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/RemoteSnapshotMetadataGenerator.java
} } return snapshots.values(); } @Override public Artifact transformArtifact(Artifact artifact) { if (artifact.isSnapshot() && artifact.getVersion().equals(artifact.getBaseVersion())) { Object key = RemoteSnapshotMetadata.getKey(artifact); RemoteSnapshotMetadata snapshotMetadata = snapshots.get(key); if (snapshotMetadata != null) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.4K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/MetadataBridge.java
return emptify(metadata.getGroupId()); } public String getArtifactId() { return metadata.storedInGroupDirectory() ? "" : emptify(metadata.getArtifactId()); } public String getVersion() { return metadata.storedInArtifactVersionDirectory() ? emptify(metadata.getBaseVersion()) : ""; } public String getType() { return metadata.getRemoteFilename(); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractBehavior.java
final RESULT entity = createEntity(source, entityType); final DocMeta docMeta = ((EsAbstractEntity) entity).asDocMeta(); docMeta.id(hit.getId()); docMeta.version(hit.getVersion()); docMeta.seqNo(hit.getSeqNo()); docMeta.primaryTerm(hit.getPrimaryTerm()); list.add(entity); }); list.setPageSize(size);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 26.4K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelData.java
} /** * Gets the effective version of the model. * * @return The effective version of the model or an empty string if unknown, never {@code null}. */ public String getVersion() { return (version != null) ? version : ""; } /** * Gets unique identifier of the model * * @return The effective identifier of the model, never {@code null}. */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.8K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/resolution/UnresolvableModelException.java
} /** * Gets the version of the unresolvable model. * * @return The version of the unresolvable model, can be empty but never {@code null}. */ public String getVersion() { return version; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultPackagingRegistry.java
Plugin existing = plugins.get(key); if (existing != null) { if (version == null) { version = existing.getVersion(); } execs.addAll(existing.getExecutions()); deps.addAll(existing.getDependencies()); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7.8K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/profiles/ProfilesConversionUtils.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.8K bytes - Viewed (0)