- Sort Score
- Result 10 results
- Languages All
Results 881 - 890 of 1,012 for Updates (0.03 sec)
-
cmd/encryption-v1_test.go
// to the end of the // corresponding DARE package lbPkgEndOffset := min(lbPartOffset-(lbPartOffset%pkgSz)+pkgSz, v) bytesToDrop := v - lbPkgEndOffset // Last segment to update `l` l += getEncSize(currentPartDareBytes - bytesToDrop) break } } cumulativeSum += v cumulativeEncSum += getEncSize(v) } return }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 19.9K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache/CacheStrategy.kt
// As recommended by the HTTP RFC and implemented in Firefox, the max age of a document // should be defaulted to 10% of the document's age at the time it was served. Default // expiration dates aren't used for URIs containing a query. val servedMillis = servedDate?.time ?: sentRequestMillis val delta = servedMillis - lastModified!!.time return if (delta > 0L) delta / 10 else 0L }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 12K bytes - Viewed (0) -
src/test/java/jcifs/smb1/util/HexdumpTest.java
// Test with all F's char[] dst2 = new char[8]; Hexdump.toHexChars(0xFFFFFFFF, dst2, 0, 8); assertEquals("FFFFFFFF", new String(dst2)); // Test partial buffer update char[] dst3 = new char[6]; java.util.Arrays.fill(dst3, 'Z'); Hexdump.toHexChars(0xAB, dst3, 1, 2); assertEquals("ZABZZZ", new String(dst3)); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.4K bytes - Viewed (0) -
docs/en/docs/tutorial/first-steps.md
--- When building APIs, you normally use these specific HTTP methods to perform a specific action. Normally you use: * `POST`: to create data. * `GET`: to read data. * `PUT`: to update data. * `DELETE`: to delete data. So, in OpenAPI, each of the HTTP methods is called an "operation". We are going to call them "**operations**" too.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 11K bytes - Viewed (0) -
README.md
# Build specific module mvn clean install -pl fess-crawler # Generate test coverage report mvn jacoco:report ``` ### Code Quality ```bash # Format code mvn formatter:format # Update license headers mvn license:format # Run static analysis mvn spotbugs:check ``` ### Running Tests ```bash # Run all tests mvn test # Run specific test class
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Aug 31 05:32:52 UTC 2025 - 15.3K bytes - Viewed (0) -
guava-tests/test/com/google/common/util/concurrent/AtomicDoubleArrayTest.java
} } } if (done) { break; } } } } /** * Multiple threads using same array of counters successfully update a number of times equal to * total count */ public void testCountingInMultipleThreads() throws InterruptedException { AtomicDoubleArray aa = new AtomicDoubleArray(SIZE); for (int i = 0; i < SIZE; i++) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 14.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ioctl/SrvCopyChunkCopyResponseTest.java
assertEquals(1, response.getChunksWritten()); assertEquals(1024, response.getChunkBytesWritten()); assertEquals(1024, response.getTotalBytesWritten()); // Second decode - should update values byte[] buffer2 = createValidCopyChunkResponse(5, 8192, 40960); response.decode(buffer2, 0, buffer2.length); assertEquals(5, response.getChunksWritten());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.8K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/AbstractTransformerTest.java
// Direct field access (simulating subclass behavior) transformer.name = "directFieldAccess"; assertEquals("directFieldAccess", transformer.getName()); // Setter should update the field transformer.setName("setterAccess"); assertEquals("setterAccess", transformer.name); // Field modification should be reflected in getter transformer.name = "modifiedField";
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 20.8K bytes - Viewed (0) -
src/main/resources/fess_label_nl.properties
labels.do_you_want_to_logout=Wilt u uitloggen? labels.logout_button=Uitloggen labels.profile=Wachtwoord wijzigen labels.administration=Beheer labels.profile_button=Instellingen labels.profile.title= Instellingen labels.profile.update= Bijwerken labels.profile.back= Terug labels.profile.placeholder_old_password= Huidig wachtwoord labels.profile.placeholder_new_password= Nieuw wachtwoord
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 42.8K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java
if (searchEngineClient.copyDocIndex(fromIndex, toIndex, replaceAliases) && replaceAliases && !searchEngineClient.updateAlias(toIndex)) { logger.warn("Failed to update aliases for {} and {}", fromIndex, toIndex); } }, e -> logger.warn("Failed to reindex from {} to {}", fromIndex, toIndex, e))); return true; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18K bytes - Viewed (0)