- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for getNodes (0.05 sec)
-
impl/maven-core/src/main/java/org/apache/maven/project/MavenProject.java
if ((groupId == null) && (getModel().getParent() != null)) { groupId = getModel().getParent().getGroupId(); } return groupId; } public void setArtifactId(String artifactId) { getModel().setArtifactId(artifactId); } public String getArtifactId() { return getModel().getArtifactId(); }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Aug 29 12:47:20 UTC 2025 - 67K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java
List<ModelData> lineage, ModelBuildingRequest request, ModelProblemCollector problems) { for (int i = lineage.size() - 2; i >= 0; i--) { Model parent = lineage.get(i + 1).getModel(); Model child = lineage.get(i).getModel(); inheritanceAssembler.assembleModelInheritance(child, parent, request, problems); } } private List<Profile> getProfiles(Model model) {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun Mar 30 23:08:08 UTC 2025 - 55.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java
// project.setProjectBuildingRequest(request); // pluginArtifacts Set<Artifact> pluginArtifacts = new HashSet<>(); for (Plugin plugin : project.getModel().getDelegate().getBuild().getPlugins()) { Artifact artifact = repositorySystem.createPluginArtifact(new org.apache.maven.model.Plugin(plugin)); if (artifact != null) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 17:20:31 UTC 2025 - 51.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
} return list.stream().map(p -> { final String key = p.getFirst(); if (StringUtil.isEmpty(key) || userBean .map(user -> stream(user.getRoles()).get(stream -> stream.anyMatch(s -> (ROLE_VALUE_PREFIX + s).equals(key))) || stream(user.getGroups()).get(stream -> stream.anyMatch(s -> (GROUP_VALUE_PREFIX + s).equals(key))))Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 88.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java
} final AuthenticationErrorResponse oidcResponse = (AuthenticationErrorResponse) authResponse; throw new SsoLoginException(String.format("Request for auth code failed: %s - %s", oidcResponse.getErrorObject().getCode(), oidcResponse.getErrorObject().getDescription())); } /** * Parses the authentication response from Entra ID. * @param url The response URL.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 56.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ldap/LdapManager.java
* @param groupFilter the group filter pattern * @param lazyLoading the lazy loading consumer for roles * @return an array of role names */ public String[] getRoles(final LdapUser ldapUser, final String bindDn, final String accountFilter, final String groupFilter, final Consumer<String[]> lazyLoading) { final SystemHelper systemHelper = ComponentUtil.getSystemHelper();Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 86.3K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java
PomTestWrapper pom = buildPom("inherited-properties-interpolation/active-profile/sub"); assertEquals(1, pom.getMavenProject().getModel().getProfiles().size()); buildPom("inherited-properties-interpolation/active-profile/sub", "it-parent", "it-child"); assertEquals("CHILD", pom.getValue("properties/overridden"));
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 94.8K bytes - Viewed (0)