- Sort Score
- Result 10 results
- Languages All
Results 251 - 260 of 1,566 for failed (0.06 sec)
-
src/main/java/org/codelibs/fess/helper/PluginHelper.java
} /** * Uninstalls an artifact by deleting its JAR file. * * @param fileName the name of the file to delete * @param jarPath the path to the JAR file * @throws PluginException if deletion fails */ protected void uninstall(final String fileName, final Path jarPath) { try { Files.delete(jarPath); } catch (final IOException e) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 24.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lock/Smb2LockResponseTest.java
// Then assertEquals(4, bytesRead, "Failed at iteration " + i); } // When - perform multiple write operations for (int i = 0; i < 100; i++) { int bytesWritten = response.writeBytesWireFormat(buffer, 0); // Then assertEquals(0, bytesWritten, "Failed at iteration " + i); } } }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/synonym/SynonymFile.java
* from its source file. */ public class SynonymFile extends DictionaryFile<SynonymItem> { private static final String SYNONYM = "synonym"; /** The list of synonym items loaded from the dictionary file. */ List<SynonymItem> synonymItemList; /** * Constructs a new synonym file. * * @param id The unique identifier for this dictionary file.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15.5K bytes - Viewed (0) -
src/main/java/jcifs/util/transport/Transport.java
return this.state == 4 || this.state == 5 || this.state == 6 || this.state == 0; } /** * Checks if the transport is in a failed state. * * @return whether the transport is marked failed */ public boolean isFailed() { return this.state == 5 || this.state == 6; } /** * Send a request message and recieve response *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 27.8K bytes - Viewed (0) -
tests/transaction_test.go
t.Fatalf("Failed to save point, got error %v", err) } user1 := *GetUser("transaction-save-point-1", Config{}) tx.Create(&user1) if err := tx.First(&User{}, "name = ?", user1.Name).Error; err != nil { t.Fatalf("Should find saved record") } if err := tx.RollbackTo("save_point1").Error; err != nil { t.Fatalf("Failed to save point, got error %v", err) }
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Sun May 25 07:40:40 UTC 2025 - 13.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportPoolImpl.java
Integer fail1 = SmbTransportPoolImpl.this.failCounts.get(o1.getHostAddress()); Integer fail2 = SmbTransportPoolImpl.this.failCounts.get(o2.getHostAddress()); if (fail1 == null) { fail1 = 0; } if (fail2 == null) { fail2 = 0; } return Integer.compare(fail1, fail2); });
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 33.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/converter/ReadingConverterTest.java
if (throwExceptionOnInit) { throw new IOException("Init failed"); } } @Override public List<String> convert(String text, String field, String... langs) throws IOException { if (throwExceptionOnConvert) { throw new IOException("Convert failed"); } return Collections.emptyList(); } }
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 13.5K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTransportPoolImplTest.java
SmbTransportImpl trans2 = mock(SmbTransportImpl.class); // trans2 fails first (lower fail count, tried first), trans1 succeeds when(trans2.unwrap(SmbTransportImpl.class)).thenReturn(trans2); when(trans2.ensureConnected()).thenThrow(new IOException("Connection failed")); doNothing().when(trans2).close(); when(trans1.unwrap(SmbTransportImpl.class)).thenReturn(trans1);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 19.2K bytes - Viewed (0) -
cmd/erasure-coding.go
panic(err) } enc = e }) return enc } return } // EncodeData encodes the given data and returns the erasure-coded data. // It returns an error if the erasure coding failed. func (e *Erasure) EncodeData(ctx context.Context, data []byte) ([][]byte, error) { if len(data) == 0 { return make([][]byte, e.dataBlocks+e.parityBlocks), nil } encoded, err := e.encoder().Split(data)
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 8.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/witness/WitnessRegistrationTest.java
assertEquals(WitnessRegistrationState.UNREGISTERING, registration.getState()); registration.setState(WitnessRegistrationState.FAILED); assertEquals(WitnessRegistrationState.FAILED, registration.getState()); registration.setState(WitnessRegistrationState.EXPIRED); assertEquals(WitnessRegistrationState.EXPIRED, registration.getState()); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 09:06:40 UTC 2025 - 5.1K bytes - Viewed (0)