- Sort Score
- Result 10 results
- Languages All
Results 541 - 550 of 817 for groupIds (0.04 sec)
-
compat/maven-model/src/main/java/org/apache/maven/model/merge/ModelMerger.java
String src = source.getGroupId(); if (src != null) { if (sourceDominant || target.getGroupId() == null) { target.setGroupId(src); target.setLocation("groupId", source.getLocation("groupId")); } } } protected void mergeModel_ArtifactId( Model target, Model source, boolean sourceDominant, Map<Object, Object> context) {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Apr 03 11:21:39 UTC 2025 - 99.2K bytes - Viewed (0) -
docs/site-replication/README.md
- Creation and deletion of buckets and objects - Creation and deletion of all IAM users, groups, policies and their mappings to users or groups - Creation of STS credentials - Creation and deletion of service accounts (except those owned by the root user) - Changes to Bucket features such as: - Bucket Policies - Bucket Tags
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 3.4K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableMultimap.java
* * <p><a id="iteration"></a> * * <p><b>Key-grouped iteration.</b> All view collections follow the same iteration order. In all * current implementations, the iteration order always keeps multiple entries with the same key * together. Any creation method that would customarily respect insertion order (such as {@link * #copyOf(Multimap)}) instead preserves key-grouped order by inserting entries for an existing key
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Dec 09 15:58:48 UTC 2025 - 28.1K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java
} return ""; } static String getGroupId(Model model) { String groupId = model.getGroupId(); if (groupId == null && model.getParent() != null) { groupId = model.getParent().getGroupId(); } return groupId; } static String getVersion(Model model) { String version = model.getVersion();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 17:20:31 UTC 2025 - 51.8K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/resolution/ModelResolver.java
*/ @Deprecated(since = "4.0.0") public interface ModelResolver { /** * Tries to resolve the POM for the specified coordinates. * * @param groupId The group identifier of the POM, must not be {@code null}. * @param artifactId The artifact identifier of the POM, must not be {@code null}. * @param version The version of the POM, must not be {@code null}.Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Apr 05 11:52:05 UTC 2025 - 5.8K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/DefaultUpdateCheckManagerTest.java
} @Test void testArtifactTouchFileName() throws Exception { ArtifactRepository localRepository = localRepository(); Artifact a = artifactFactory.createArtifactWithClassifier("groupId", "a", "0.0.1-SNAPSHOT", "jar", null); File file = new File(localRepository.getBasedir(), localRepository.pathOf(a)); a.setFile(file); assertEquals(Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Dec 16 13:41:14 UTC 2025 - 9K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/metadata/AbstractArtifactMetadata.java
StringBuilder buffer = new StringBuilder(256); buffer.append(LS).append("Artifact Metadata").append(LS).append("--------------------------"); buffer.append(LS).append("GroupId: ").append(getGroupId()); buffer.append(LS).append("ArtifactId: ").append(getArtifactId()); buffer.append(LS).append("Metadata Type: ").append(getClass().getName()); return buffer.toString(); }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 2K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/internal/extension/model/io/xpp3/CoreExtensionsXpp3Writer.java
serializer.startTag(NAMESPACE, tagName); if (coreExtension.getGroupId() != null) { serializer .startTag(NAMESPACE, "groupId") .text(coreExtension.getGroupId()) .endTag(NAMESPACE, "groupId"); } if (coreExtension.getArtifactId() != null) { serializer .startTag(NAMESPACE, "artifactId")
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Oct 27 13:24:03 UTC 2025 - 6.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/group/SearchForm.java
/** * The search form for Group. */ public class SearchForm { /** * Default constructor for SearchForm. */ public SearchForm() { } /** * The ID field for searching groups. */ public String id;Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 908 bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/user/admin_user_edit.jsp
<label for="groups" class="col-sm-3 text-sm-right col-form-label"><la:message key="labels.groups"/></label> <div class="col-sm-9"> <la:errors property="groups"/> <la:select styleId="groups" property="groups" multiple="true"Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 13 05:54:52 UTC 2025 - 31.4K bytes - Viewed (0)