- Sort Score
- Result 10 results
- Languages All
Results 211 - 220 of 1,553 for checkID (0.05 sec)
-
android/guava-tests/test/com/google/common/io/MultiInputStreamTest.java
public void close() throws IOException { super.close(); counter[0]--; } }; } }; byte[] result = ByteSource.concat(checker, checker, checker).read(); assertEquals(150, result.length); } private void joinHelper(Integer... spans) throws Exception { List<ByteSource> sources = new ArrayList<>(); int start = 0;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 4.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/JobHelper.java
} catch (final Exception e) { throw new ScheduledJobException("Failed to delete Job: " + scheduledJob, e); } } /** * Checks if a job with the specified ID is available. * * @param id the job ID to check * @return true if the job is available, false otherwise */ public boolean isAvailable(final String id) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerThread.java
synchronized (crawlerContext.activeThreadCountLock) { crawlerContext.activeThreadCount--; } } /** * Checks if the crawling process should continue. * @param tcCount The thread check count. * @return true if the crawling should continue, false otherwise. */ protected boolean isContinue(final int tcCount) { if (!crawlerContainer.available()) {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 20.4K bytes - Viewed (0) -
src/main/webapp/css/admin/adminlte.min.css
right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;padding-left:...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 26 01:49:09 UTC 2024 - 1.3M bytes - Viewed (0) -
cmd/endpoint.go
endpoints[i].Hostname()), endpoints[i].Hostname(), logger.ErrorKind) } continue } // return err if not Docker or Kubernetes // We use IsDocker() to check for Docker environment // We use IsKubernetes() to check for Kubernetes environment isLocal, err := isLocalHost(endpoints[i].Hostname(), endpoints[i].Port(), globalMinioPort, ) if err != nil && !orchestrated {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Mar 30 00:56:02 UTC 2025 - 34.4K bytes - Viewed (0) -
guava-testlib/README.md
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Apr 14 18:38:35 UTC 2025 - 1.7K bytes - Viewed (0) -
internal/lru/lru.go
c.mu.Lock() defer c.mu.Unlock() var ent *Entry[K, V] if ent, ok = c.items[key]; ok { // Expired item check if time.Now().After(ent.ExpiresAt) { return value, false } c.evictList.MoveToFront(ent) return ent.Value, true } return } // Contains checks if a key is in the cache, without updating the recent-ness // or deleting it for being stale.
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Fri Apr 25 08:22:26 UTC 2025 - 12.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessClient.java
boolean addressMatch = java.util.Objects.equals(resourceName, serverAddress); return shareMatch || addressMatch; } /** * Checks for expired registrations based on heartbeat timeouts. */ private void checkHeartbeats() { long timeout = context.getConfig().getWitnessHeartbeatTimeout();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 20.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java
// Validate that security buffer doesn't exceed available data if (hdrStart + securityBufferOffset < hdrStart || // Check for integer overflow hdrStart + securityBufferOffset + securityBufferLength < 0 || // Check for integer overflow hdrStart + securityBufferOffset + securityBufferLength > buffer.length) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 24K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lease/DirectoryChangeNotifier.java
* @return the directory file */ public SmbFile getDirectoryFile() { return directoryFile; } /** * Checks if directory change monitoring is currently active * @return true if watching is active */ public boolean isActive() { return active; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 13.7K bytes - Viewed (0)