- Sort Score
- Num 10 results
- Language All
Results 301 - 310 of 363 for getpid (0.06 seconds)
-
compat/maven-artifact/src/main/java/org/apache/maven/artifact/DefaultArtifact.java
} // ---------------------------------------------------------------------- // // ---------------------------------------------------------------------- @Override public String getId() { return getDependencyConflictId() + ":" + getBaseVersion(); } @Override public String getDependencyConflictId() { StringBuilder sb = new StringBuilder(128);Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jul 23 17:27:08 GMT 2025 - 14.6K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultPackagingRegistry.java
} } private static String getExecutionId(Plugin plugin, String goal) { Set<String> existingIds = plugin != null ? plugin.getExecutions().stream().map(PluginExecution::getId).collect(Collectors.toSet()) : Set.of(); String base = "default-" + goal; String id = base; for (int index = 1; existingIds.contains(id); index++) {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jan 24 17:29:44 GMT 2025 - 7.8K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java
this.flags &= ~flag; } /** * @return the mid */ @Override public final long getMid() { return this.mid; } /** * @param mid * the mid to set */ @Override public final void setMid(final long mid) { this.mid = mid; } /**
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 24K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 19.5K bytes - Click Count (1) -
src/main/java/org/codelibs/fess/app/service/CharMappingService.java
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 6.1K bytes - Click Count (0) -
src/main/java/jcifs/smb/SmbPipeHandleImpl.java
return (T) this; } throw new ClassCastException(); } /** * {@inheritDoc} * * @see jcifs.SmbPipeHandle#getPipe() */ @Override public SmbNamedPipe getPipe() { return this.pipe; } @Override public SmbTreeHandleImpl ensureTreeConnected() throws CIFSException { if (this.treeHandle == null) {
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 10.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/CrawlJob.java
logger.debug("Scheduled job is running: id={}", scheduledJob.getId()); } counter.incrementAndGet(); } else if (logger.isDebugEnabled()) { logger.debug("Scheduled job is not running: id={}", scheduledJob.getId()); } } }); return counter.get(); } /**
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 19.6K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/Ordering.java
if (leftCode != rightCode) { return leftCode < rightCode ? -1 : 1; } // identityHashCode collision (rare, but not as rare as you'd think) int result = getUid(left).compareTo(getUid(right)); if (result == 0) { throw new AssertionError(); // extremely, extremely unlikely. } return result; } @Override public String toString() {
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue Sep 23 17:50:58 GMT 2025 - 39.5K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/plugin/DefaultReportingConverter.java
private Xpp3Dom convert(ReportSet reportSet) { Xpp3Dom dom = new Xpp3Dom("reportSet", reportSet.getLocation("")); InputLocation idLocation = reportSet.getLocation("id"); addDom(dom, "id", reportSet.getId(), idLocation == null ? location : idLocation); Xpp3Dom configuration = (Xpp3Dom) reportSet.getConfiguration(); if (configuration != null) { configuration = new Xpp3Dom(configuration);
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jan 10 07:09:12 GMT 2025 - 9.4K bytes - Click Count (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/resolver/AbstractArtifactResolutionException.java
for (Iterator<ArtifactRepository> i = remoteRepositories.iterator(); i.hasNext(); ) { ArtifactRepository remoteRepository = i.next(); sb.append(remoteRepository.getId()); sb.append(" ("); sb.append(remoteRepository.getUrl()); ArtifactRepositoryPolicy releases = remoteRepository.getReleases();Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Apr 01 21:22:14 GMT 2025 - 10.1K bytes - Click Count (0)