Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 99 for skip1 (0.07 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/gcs/GcsClientTest.java

            GcsClient client = new GcsClient() {
                @Override
                protected ResponseData processRequest(final String uri, final boolean includeContent) {
                    // Skip init() and directly test timeout handling
                    org.codelibs.fess.crawler.client.AccessTimeoutTarget accessTimeoutTarget = null;
                    org.codelibs.core.timer.TimeoutTask accessTimeoutTask = null;
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 08:38:29 UTC 2025
    - 19.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbFileInputStream.java

            }
        }
    
        /**
         * Skip n bytes of data on this stream. This operation will not result
         * in any IO with the server. Unlink <code>InputStream</code> value less than
         * the one provided will not be returned if it exceeds the end of the file
         * (if this is a problem let us know).
         */
        @Override
        public long skip(final long n) throws IOException {
            if (n > 0) {
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb/NetServerEnumIteratorTest.java

            });
    
            // When: Create iterator with throwing filter
            NetServerEnumIterator iterator = new NetServerEnumIterator(parent, treeHandle, "*", 0, nameFilter);
    
            // Then: Iterator should skip the entry (log error and continue)
            assertFalse(iterator.hasNext());
    
            // Cleanup
            iterator.close();
        }
    
        @Test
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/multichannel/NetworkInterfaceInfo.java

            int next = bb.getInt();
    
            // InterfaceIndex (4 bytes)
            int ifIndex = bb.getInt();
    
            // Capability (4 bytes)
            int capability = bb.getInt();
    
            // Reserved (4 bytes) - skip
            bb.getInt();
    
            // LinkSpeed (8 bytes) - in bits per second
            long linkSpeedBps = bb.getLong();
    
            // Parse sockaddr structure (starts at offset + 24)
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  5. 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);
    
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/storage/S3StorageClient.java

                    }
                }
    
                // Process objects (files)
                for (final S3Object s3Object : response.contents()) {
                    final String objectKey = s3Object.key();
                    // Skip directory markers (objects ending with /)
                    if (!objectKey.endsWith("/")) {
                        final String fileName = getName(objectKey);
                        final ZonedDateTime lastModified =
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CsvExtractor.java

                if (c == '"') {
                    if (inQuotes && i + 1 < line.length() && line.charAt(i + 1) == '"') {
                        // Escaped quote
                        currentField.append('"');
                        i++; // Skip next quote
                    } else {
                        // Toggle quote state
                        inQuotes = !inQuotes;
                    }
                } else if (c == delimiter && !inQuotes) {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 08:38:29 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb2/ServerMessageBlock2ResponseTest.java

                boolean result = response.verifySignature(buffer, 0, 100);
    
                assertFalse(result);
                assertTrue(response.isVerifyFailed());
            }
    
            @Test
            @DisplayName("Should skip verification for async responses")
            void testVerifySignatureAsyncSkip() {
                byte[] buffer = new byte[100];
                response.setDigest(mockDigest);
                response.setAsync(true);
    
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 19.3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/netbios/Lmhosts.java

                                    continue;
                                }
    
                                /*
                                 * An include was loaded successfully. We can skip
                                 * all other includes up to the #END_ALTERNATE tag.
                                 */
    
                                while ((line = br.readLine()) != null) {
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbFileInputStream.java

            return 0;
        }
    
        /**
         * Skip n bytes of data on this stream. This operation will not result
         * in any IO with the server. Unlink <code>InputStream</code> value less than
         * the one provided will not be returned if it exceeds the end of the file
         * (if this is a problem let us know).
         */
        @Override
        public long skip(final long n) throws IOException {
            if (n > 0) {
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 15.6K bytes
    - Viewed (0)
Back to top