- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 17 for getNodes (0.07 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/repository/MetadataGraph.java
} /** * getter */ public MetadataGraphNode getEntry() { return entry; } /** * getter */ public Collection<MetadataGraphNode> getNodes() { return nodes; }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverResult.java
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Mar 05 14:29:21 UTC 2025 - 6.3K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/toolchain/DefaultToolchain.java
if (!Objects.equals(type, other.type)) { return false; } Properties thisProvides = this.getModel().getProvides(); Properties otherProvides = other.getModel().getProvides(); return Objects.equals(thisProvides, otherProvides); } else { return false; } } @Override
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Feb 12 13:13:28 UTC 2025 - 4.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/exentity/User.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 3.8K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/toolchain/ToolchainManagerFactory.java
public String findTool(String toolName) { return delegate.findTool(toolName); } @Override public org.apache.maven.api.toolchain.ToolchainModel getModel() { return delegate.getModel().getDelegate(); } @Override public boolean matchesRequirements(Map<String, String> requirements) { return delegate.matchesRequirements(requirements);
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sat May 31 07:20:31 UTC 2025 - 9.4K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/toolchain/ToolchainPrivate.java
*/ boolean matchesRequirements(Map<String, String> requirements); /** * * @return the original model wrapped by this interface */ ToolchainModel getModel();
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Feb 12 13:13:28 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessUserBean.java
// ======== public String[] getPermissions() { return user.getPermissions(); } public String[] getRoles() { return user.getRoleNames(); } public String[] getGroups() { return user.getGroupNames(); } public boolean isEditable() { return user.isEditable(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/jcifs/util/Crypto.java
* * @param key * 7 or 8 byte DES key * @return DES cipher in encryption mode */ public static Cipher getDES(final byte[] key) { if (key.length == 7) { return getDES(des7to8(key)); } try { final Cipher c = Cipher.getInstance("DES/ECB/NoPadding");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Plugin.java
/** * Represents a maven plugin runtime * * @since 4.0.0 */ @Experimental public interface Plugin { @Nonnull org.apache.maven.api.model.Plugin getModel(); @Nonnull PluginDescriptor getDescriptor(); @Nonnull List<Lifecycle> getLifecycles(); @Nonnull ClassLoader getClassLoader(); @Nonnull Artifact getArtifact();
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Feb 28 23:54:53 UTC 2024 - 1.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/MojoExecution.java
* expressions. * * @since 4.0.0 */ @Experimental public interface MojoExecution { @Nonnull Plugin getPlugin(); @Nonnull PluginExecution getModel(); @Nonnull MojoDescriptor getDescriptor(); @Nonnull String getExecutionId(); @Nonnull String getGoal(); @Nonnull String getLifecyclePhase();
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Feb 28 23:54:53 UTC 2024 - 1.8K bytes - Viewed (0)