- Sort Score
- Result 10 results
- Languages All
Results 161 - 170 of 233 for getJdk (0.46 sec)
-
src/main/java/org/codelibs/fess/opensearch/config/exentity/PathMapping.java
protected Pattern userAgentPattern; protected Pattern regexPattern; protected BiFunction<String, Matcher, String> pathMapperFunc; public String getId() { return asDocMeta().id(); } public void setId(final String id) { asDocMeta().id(id); } public Long getVersionNo() { return asDocMeta().version(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 3.3K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/profiles/activation/SystemPropertyProfileActivator.java
boolean reverseName = false; if (name == null) { throw new ProfileActivationException( "The property name is required to activate the profile '" + profile.getId() + "'"); } if (name.startsWith("!")) { reverseName = true; name = name.substring(1); }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 3.3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/ArtifactCoordinates.java
* The default implementation returns a colon-separated list of group * identifier, artifact identifier, extension, classifier and version. * * @see Artifact#key() */ @Nonnull default String getId() { String c = getClassifier(); return getGroupId() + ':' + getArtifactId() + ':' + getExtension() + ':'
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jun 26 07:56:58 UTC 2025 - 2.8K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/inheritance/t08/ProjectInheritanceTest.java
MavenProject project1 = getProjectWithDependencies(pom1); assertEquals(pom0Basedir, project1.getParent().getBasedir()); System.out.println("Project " + project1.getId() + " " + project1); Set set = project1.getArtifacts(); assertNotNull(set, "No artifacts"); assertFalse(set.isEmpty(), "No Artifacts"); Iterator iter = set.iterator();
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 3.1K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/repository/ArtifactRepository.java
String getUrl(); void setUrl(String url); String getBasedir(); default Path getBasedirPath() { return Paths.get(getBasedir()); } String getProtocol(); String getId(); void setId(String id); ArtifactRepositoryPolicy getSnapshots(); void setSnapshotUpdatePolicy(ArtifactRepositoryPolicy policy); ArtifactRepositoryPolicy getReleases();
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 4.3K bytes - Viewed (1) -
api/maven-api-core/src/main/java/org/apache/maven/api/Artifact.java
public interface Artifact { /** * {@return a unique identifier for this artifact}. * The identifier is composed of groupId, artifactId, extension, classifier, and version. * * @see ArtifactCoordinates#getId() */ @Nonnull default String key() { String c = getClassifier(); return getGroupId() + ':' + getArtifactId() + ':'
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jun 26 07:56:58 UTC 2025 - 4.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/DfsImpl.java
return null; } } /** * * {@inheritDoc} * * @see jcifs.DfsResolver#getDc(jcifs.CIFSContext, java.lang.String) */ @Override public SmbTransport getDc(final CIFSContext tf, final String domain) throws SmbAuthException { if (tf.getConfig().isDfsDisabled()) { return null; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 29.7K bytes - Viewed (0) -
api/maven-api-model/src/main/mdo/maven.mdo
} /** * @return a Map of executions field with {@code PluginExecution#getId()} as key * @see PluginExecution#getId() */ public Map<String, PluginExecution> getExecutionsAsMap() { return getExecutions().stream().collect(Collectors.toMap(exec -> exec.getId(), exec -> exec)); } ]]> </code> </codeSegment> <codeSegment>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Aug 07 14:32:16 UTC 2025 - 132.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java
+ "\"}}\n" + hit.getSourceAsString() + "\n"; try { zos.write(data.getBytes(Constants.CHARSET_UTF_8)); } catch (final IOException e) { logger.warn("Failed to access /{}/{}.", index, hit.getId(), e); } return true; });
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/mapping/CharMappingFileTest.java
assertEquals(1L, item1.getId()); assertArrayEquals(new String[] { "a", "b" }, item1.getInputs()); assertEquals("c", item1.getOutput()); OptionalEntity<CharMappingItem> result2 = charMappingFile.get(2L); assertTrue(result2.isPresent()); CharMappingItem item2 = result2.get(); assertEquals(2L, item2.getId());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.5K bytes - Viewed (0)