- Sort Score
- Num 10 results
- Language All
Results 231 - 240 of 659 for skip1 (0.03 seconds)
-
src/test/java/org/codelibs/fess/timer/LogNotificationTargetTest.java
ComponentUtil.getLogNotificationHelper() .offer(new LogNotificationEvent(System.currentTimeMillis(), "ERROR", "org.test", "should remain", null)); // expired() should skip when disabled logNotificationTarget.expired(); // Buffer should still contain the event since disabled check should return early
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 4.7K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Http2Reader.kt
TYPE_PING -> readPing(handler, length, flags, streamId) TYPE_GOAWAY -> readGoAway(handler, length, flags, streamId) TYPE_WINDOW_UPDATE -> readWindowUpdate(handler, length, flags, streamId) else -> source.skip(length.toLong()) // Implementations MUST discard frames of unknown types. } return true } @Throws(IOException::class) private fun readHeaders( handler: Handler, length: Int,
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Sun Mar 15 09:02:18 GMT 2026 - 19.7K bytes - Click Count (0) -
cmd/batch-handlers_gen.go
z.Expire = new(BatchJobExpire) } err = z.Expire.DecodeMsg(dc) if err != nil { err = msgp.WrapError(err, "Expire") return } } default: err = dc.Skip() if err != nil { err = msgp.WrapError(err) return } } } return } // EncodeMsg implements msgp.Encodable func (z *BatchJobRequest) EncodeMsg(en *msgp.Writer) (err error) {
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 20.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/ThemeHelperTest.java
} } @Test public void test_install_zipWithSkippedEntries() throws IOException { // Create a zip with entries that should be skipped Path jarPath = tempDir.resolve("skip-entries.jar"); createMockThemeZipWithSkippedEntries(jarPath); ThemeHelper mockThemeHelper = new ThemeHelper() { @Override protected Path getJarFile(Artifact artifact) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 14.7K bytes - Click Count (0) -
docs/en/docs/tutorial/schema-extra-example.md
<img src="/img/tutorial/body-fields/image02.png"> ## Technical Details { #technical-details } /// tip If you are already using **FastAPI** version **0.99.0 or above**, you can probably **skip** these details. They are more relevant for older versions, before OpenAPI 3.1.0 was available. You can consider this a brief OpenAPI and JSON Schema **history lesson**. 🤓 /// /// warning
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 8.7K bytes - Click Count (0) -
guava-gwt/pom.xml
</plugin> <!-- Disable "normal" testing, which doesn't work for GWT tests. --> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> <plugin> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>unpack-failureaccess-sources</id>Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Jan 12 15:19:17 GMT 2026 - 18.2K bytes - Click Count (0) -
src/test/java/jcifs/netbios/SessionRequestPacketTest.java
// Read from buffer ByteArrayInputStream bais = new ByteArrayInputStream(buffer); SessionRequestPacket readPacket = new SessionRequestPacket(mockConfig); // Skip header (already read by parent class) bais.skip(4); readPacket.type = buffer[0] & 0xFF; readPacket.length = ((buffer[1] & 0x01) << 16) + ((buffer[2] & 0xFF) << 8) + (buffer[3] & 0xFF);Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 11.5K bytes - Click Count (0) -
internal/config/dns/etcd_dns.go
return nil, err } // Make sure we have record.Key is empty // this can only happen when record.Key // has bucket entry with exact prefix // match any record.Key which do not // match the prefixes we skip them. for _, record := range records { if record.Key != "" { continue } srvRecords = append(srvRecords, record) } } if len(srvRecords) == 0 { return nil, ErrNoEntriesFound }Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Tue Feb 18 16:25:55 GMT 2025 - 8K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/Smb2EchoResponseTest.java
assertFalse(result); assertTrue(echoResponse.isVerifyFailed()); } @Test @DisplayName("Should skip verification when digest is null") void testVerifySignatureNoDigest() { byte[] buffer = new byte[1024]; echoResponse.setDigest(null);Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 15.1K bytes - Click Count (0) -
compat/maven-model/src/test/java/org/apache/maven/model/pom/PomMemoryAnalyzer.java
return; } Class<?> clazz = node.getClass(); while (clazz != null && !clazz.equals(Object.class)) { for (Field field : clazz.getDeclaredFields()) { // Skip static fields and synthetic fields if (Modifier.isStatic(field.getModifiers()) || field.isSynthetic()) { continue; } try {Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Mar 21 04:56:21 GMT 2025 - 13.4K bytes - Click Count (0)