Search Options

Results per page
Sort
Preferred Languages
Advance

Results 231 - 240 of 349 for occupy (0.16 sec)

  1. src/test/java/jcifs/SmbWatchHandleTest.java

            ExecutorService executor = Executors.newSingleThreadExecutor();
            try {
                Future<List<FileNotifyInformation>> future = executor.submit(() -> blockingHandle.watch());
    
                // Verify timeout occurs
                assertThrows(TimeoutException.class, () -> {
                    future.get(100, TimeUnit.MILLISECONDS);
                });
    
                // Cancel the future
                future.cancel(true);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/PluginHelper.java

         * @param version the snapshot version
         * @return the actual version string with timestamp and build number, or null if not found
         * @throws SAXException if XML parsing fails
         * @throws IOException if I/O error occurs
         */
        protected String getSnapshotActualVersion(final DocumentBuilder builder, final String pluginUrl, final String version)
                throws SAXException, IOException {
            String timestamp = null;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/job/ExecJob.java

         *
         * @param cmdList the command list (used as comment in properties file)
         * @param propFile the file to store properties to
         * @throws IORuntimeException if an I/O error occurs
         */
        protected void createSystemProperties(final List<String> cmdList, final File propFile) {
            try (FileOutputStream out = new FileOutputStream(propFile)) {
                final Properties prop = new Properties();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiFile.java

            return new File(path).getName();
        }
    
        /**
         * Updates the dictionary file with the given input stream.
         *
         * @param in The input stream.
         * @throws IOException If an I/O error occurs.
         */
        public synchronized void update(final InputStream in) throws IOException {
            try (KuromojiUpdater updater = new KuromojiUpdater(null)) {
                reload(updater, in);
            }
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  5. lib/fips140/v1.0.0.zip

    K9.B16, K10.B16] VMOV K10.B16, KLAST.B16 BLT startSingles // There are at least 8 blocks to encrypt TBZ $4, NR, octetsLoop // For AES-192 round keys occupy: K0 .. K7, K10, K11, K8, K9, KLAST VMOV K8.B16, K10.B16 VMOV K9.B16, K11.B16 VMOV KLAST.B16, K8.B16 VLD1.P 16(H0), [K9.B16] VLD1.P 16(H0), [KLAST.B16] TBZ $3, NR, octetsLoop // For AES-256 round keys occupy: K0 .. K7, K10, K11, mem, mem, K8, K9, KLAST VMOV KLAST.B16, K8.B16 VLD1.P 16(H0), [K9.B16] VLD1.P 16(H0), [KLAST.B16] ADD $10*16, ks, H0 MOVD H0,...
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Jan 29 15:10:35 UTC 2025
    - 635K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGenerator.java

         * @param outputFile the file where the processed thumbnail will be saved
         * @return the result of the image processing operation
         * @throws IOException if an error occurs during image reading or writing operations
         */
        protected Result saveImage(final ImageInputStream input, final File outputFile) throws IOException {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  7. src/test/java/jcifs/netbios/NodeStatusRequestTest.java

            // Act & Assert
            assertThrows(RuntimeException.class, () -> {
                spyRequest.writeBodyWireFormat(dst, 0);
            });
    
            // Verify hexCode is NOT restored when exception occurs (current implementation behavior)
            assertEquals(0x00, mockName.hexCode);
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.9K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb2/io/Smb2FlushResponseTest.java

                });
    
                thread1.start();
                thread2.start();
                thread1.join();
                thread2.join();
    
                // Then - no exceptions should occur
                assertTrue(true);
            }
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/dict/protwords/ProtwordsFile.java

        }
    
        /**
         * Updates the dictionary file with content from the input stream.
         * @param in the input stream containing the new content
         * @throws IOException if an I/O error occurs
         */
        public synchronized void update(final InputStream in) throws IOException {
            try (ProtwordsUpdater updater = new ProtwordsUpdater(null)) {
                reload(updater, in);
            }
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  10. src/test/java/jcifs/http/NtlmServletTest.java

            // Further assertions can be added here to check the internal state of the servlet if fields were protected/public
        }
    
        /**
         * Test the init method when CIFSException occurs.
         * Verifies that configuration properties are properly validated during initialization.
         */
        @Test
        void testInitWithCIFSException() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 04:51:33 UTC 2025
    - 11.5K bytes
    - Viewed (0)
Back to top