- Sort Score
- Num 10 results
- Language All
Results 231 - 240 of 303 for isSynchronized (0.11 seconds)
-
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDependencyResolver.java
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 15.6K bytes - Click Count (0) -
src/test/java/jcifs/SmbWatchHandleTest.java
private final Object lock = new Object(); private int watchCount = 0; @Override public List<FileNotifyInformation> watch() throws CIFSException { synchronized (lock) { watchCount++; try { // Simulate some processing time Thread.sleep(10);
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 13.2K bytes - Click Count (1) -
src/main/java/jcifs/smb/SmbFileOutputStream.java
/** * Ensures that the file handle is open and returns it. * * @return the open file handle * @throws CIFSException if an error occurs opening the file */ protected synchronized SmbFileHandleImpl ensureOpen() throws CIFSException { if (!isOpen()) { // one extra acquire to keep this open till the stream is releasedCreated: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 12.8K bytes - Click Count (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/Http2ConnectionTest.kt
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Thu Jul 31 04:18:40 GMT 2025 - 75.5K bytes - Click Count (0) -
cmd/erasure-healing-common_test.go
t.Errorf("Unexpected error: %v", dataErrsPerDisk[diskIndex]) } if disk == nil { t.Errorf("Drive erroneously filtered, driveIndex: %d", diskIndex) } } // Test 2: Not synchronized modtime erasureDisks = s.getDisks() partsMetadataBackup := partsMetadata[0] partsMetadata[0].ModTime = partsMetadata[0].ModTime.Add(-1 * time.Hour) errs = make([]error, len(erasureDisks))
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 22.4K bytes - Click Count (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptor.java
public org.apache.maven.api.plugin.descriptor.PluginDescriptor getPluginDescriptorV4() { if (pluginDescriptorV4 == null) { synchronized (this) { if (pluginDescriptorV4 == null) { pluginDescriptorV4 = org.apache.maven.api.plugin.descriptor.PluginDescriptor.newBuilder() .namespaceUri(null)Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 16.2K bytes - Click Count (0) -
docs/smb3-features/06-witness-protocol-design.md
private final int batchSize = 10; private final long batchTimeout = 100; // 100ms public void addNotification(WitnessNotification notification) { synchronized (pendingNotifications) { pendingNotifications.offer(notification); if (pendingNotifications.size() >= batchSize) { processBatch(); }Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 02:53:50 GMT 2025 - 42K bytes - Click Count (0) -
src/main/java/jcifs/smb/SmbFileInputStream.java
try (SmbFileHandleImpl fh = ensureOpen()) {} } /** * @param file * @param openFlags * @return * @throws SmbException */ synchronized SmbFileHandleImpl ensureOpen() throws CIFSException { if (this.handle == null || !this.handle.isValid()) { // one extra acquire to keep this open till the stream is released
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 15.6K bytes - Click Count (0) -
fess-crawler-opensearch/src/test/java/org/codelibs/fess/crawler/service/impl/OpenSearchUrlQueueServiceTest.java
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Thu Nov 20 08:40:57 GMT 2025 - 14.3K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/FileTransformer.java
resultData.setTransformerName(getName()); initBaseDir(); final String url = responseData.getUrl(); final String path = getFilePath(url); synchronized (this) { final File file = createFile(path); try (final InputStream is = responseData.getResponseBody(); final OutputStream os = new FileOutputStream(file);) {
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Thu Aug 07 02:55:08 GMT 2025 - 11.7K bytes - Click Count (0)