- Sort Score
- Num 10 results
- Language All
Results 61 - 70 of 338 for getMd (0.02 seconds)
-
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Lifecycle.java
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.7K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/layout/FlatRepositoryLayout.java
public class FlatRepositoryLayout implements ArtifactRepositoryLayout { private static final char ARTIFACT_SEPARATOR = '-'; private static final char GROUP_SEPARATOR = '.'; @Override public String getId() { return "flat"; } @Override public String pathOf(Artifact artifact) { ArtifactHandler artifactHandler = artifact.getArtifactHandler();Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 2.7K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/mapping/Lifecycle.java
/** * Field id */ private String id; /** * Field phases */ private Map<String, LifecyclePhase> lifecyclePhases; /** * Method getId */ public String getId() { return this.id; } /** * Method getLifecyclePhases */ public Map<String, LifecyclePhase> getLifecyclePhases() { return this.lifecyclePhases; }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.6K bytes - Click Count (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Phase.java
/** * Get the ID of this phase, e.g., * <code>generate-sources</code>. * * @return String */ public String getId() { return this.id; } // -- String getId() /** * Method removeExecution. * * @param execution a execution object. */ public void removeExecution(Execution execution) {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 3.4K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/project/artifact/AttachedArtifact.java
classifier, artifactHandler, parent.isOptional()); setDependencyTrail(Collections.singletonList(parent.getId())); this.parent = parent; if (getId().equals(parent.getId())) { throw new InvalidArtifactRTException( parent.getGroupId(), parent.getArtifactId(), parent.getVersion(),Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 6.4K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/LegacyLocalRepositoryManager.java
} @Override public String getProtocol() { return repository.getProtocol(); } @Override public String getId() { return repository.getId(); } @Override public void setId(String id) {} @Override public ArtifactRepositoryPolicy getSnapshots() { return null;Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 13.1K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/PlexusContainerCapsuleFactory.java
failures.add(new IllegalStateException( "Injection failure in " + extension.coreExtension().getId(), e)); } } }, new SessionScopeModule(container.lookup(SessionScope.class)),
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Jul 03 14:18:26 GMT 2025 - 14.3K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/prefix/internal/DefaultPluginPrefixResolver.java
if (logger.isDebugEnabled()) { logger.warn("Failed to retrieve plugin descriptor for {}: {}", plugin.getId(), e.getMessage(), e); } else { logger.warn("Failed to retrieve plugin descriptor for {}: {}", plugin.getId(), e.getMessage()); } } } return null; }
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 17 13:14:10 GMT 2025 - 11.9K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java
if (!minProfileIds.add(profile.getId())) { addViolation( problems, Severity.WARNING, Version.BASE, "profiles.profile.id", null, "Duplicate activation for profile " + profile.getId(), profile);
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Sep 03 15:06:05 GMT 2025 - 66.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/stopwords/StopwordsFile.java
* @throws DictionaryException if the file was updated concurrently. */ public StopwordsItem write(final StopwordsItem oldItem) { try { if (item == null || item.getId() != oldItem.getId() || !item.isUpdated()) { writer.write(oldItem.toLineString()); writer.write(Constants.LINE_SEPARATOR); return oldItem; }Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Nov 20 07:09:00 GMT 2025 - 13K bytes - Click Count (0)