- Sort Score
- Result 10 results
- Languages All
Results 241 - 250 of 409 for getCwd (0.06 sec)
-
src/main/java/org/codelibs/fess/suggest/entity/SuggestItem.java
*/ public static SuggestItem merge(final SuggestItem item1, final SuggestItem item2) { if (!item1.getId().equals(item2.getId())) { throw new IllegalArgumentException("Item id is mismatch."); } final SuggestItem mergedItem = new SuggestItem(); mergedItem.id = item1.getId(); mergedItem.text = item1.getText();Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 25.1K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/activation/PropertyProfileActivator.java
if (name == null || name.length() <= 0) { problems.add(new ModelProblemCollectorRequest(Severity.ERROR, Version.BASE) .setMessage("The property name is required to activate the profile " + profile.getId()) .setLocation(property.getLocation(""))); return false; } String sysValue = context.getUserProperties().get(name); if (sysValue == null) {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 3.8K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/ArtifactDescriptorUtils.java
} public static RemoteRepository toRemoteRepository(Repository repository) { RemoteRepository.Builder builder = new RemoteRepository.Builder(repository.getId(), repository.getLayout(), repository.getUrl()); builder.setSnapshotPolicy(toRepositoryPolicy(repository.getSnapshots())); builder.setReleasePolicy(toRepositoryPolicy(repository.getReleases()));Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Oct 16 06:12:36 UTC 2025 - 4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/Lifecycle.java
private String id; private List<String> phases; private Map<String, LifecyclePhase> defaultPhases; private org.apache.maven.api.Lifecycle lifecycle; public String getId() { return id; } public org.apache.maven.api.Lifecycle getDelegate() { return lifecycle; } public List<String> getPhases() { return phases; }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Dec 13 23:04:37 UTC 2024 - 3.7K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java
} /** {@inheritDoc} */ @Override public String getRoleHint() { return getId(); } /** * @return the id of the mojo, based on the goal name */ public String getId() { return getPluginDescriptor().getId() + ":" + getGoal(); } /** * @return the full goal name * @see PluginDescriptor#getGoalPrefix()Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 21.7K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java
parentIds.add(currentData.getId()); // Reset - only needed for 'getId'. currentData.setGroupId(null); currentData.setArtifactId(null); currentData.setVersion(null); currentData = parentData; } else if (!parentIds.add(parentData.getId())) {
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/ProjectSorter.java
// groupId:artifactId -> (version -> vertex) Map<String, Map<String, Vertex>> vertexMap = new HashMap<>(projects.size() * 2); for (MavenProject project : projects) { String projectId = getId(project); MavenProject conflictingProject = projectMap.put(projectId, project); if (conflictingProject != null) { throw new DuplicateProjectException(Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 10.3K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/pool/CrawlerPooledObjectFactoryTest.java
TestComponent component = factory.create(); assertNotNull(component); assertEquals(1, component.getId()); TestComponent component2 = factory.create(); assertNotNull(component2); assertEquals(2, component2.getId()); // Different instances for prototype assertNotSame(component, component2); } /**
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 20 13:07:01 UTC 2025 - 36.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeImpl.java
* @return the session this tree is connected in */ public SmbSessionImpl getSession() { return this.session.acquire(); } /** * @return the tid */ public int getTid() { return this.tid; } /** * @return the tree_num (monotonically increasing counter to track reconnects) */ public long getTreeNum() { return this.treeNum; }Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 30K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/DelegatingSSLSession.kt
import javax.security.cert.X509Certificate /** An [SSLSession] that delegates all calls. */ abstract class DelegatingSSLSession( protected val delegate: SSLSession?, ) : SSLSession { override fun getId(): ByteArray = delegate!!.id override fun getSessionContext(): SSLSessionContext = delegate!!.sessionContext override fun getCreationTime(): Long = delegate!!.creationTime
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 2.6K bytes - Viewed (0)