Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for tyto (0.01 sec)

  1. src/main/java/org/codelibs/core/crypto/CachedCipher.java

         * Encrypts the given data.
         *
         * @param data
         *            the data to encrypt
         * @return the encrypted data
         * @deprecated Use {@link #encrypt(byte[])} instead. This method name contains a typo.
         */
        @Deprecated
        public byte[] encrypto(final byte[] data) {
            return encrypt(data);
        }
    
        /**
         * Encrypts the given data with the specified key.
         *
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat Nov 22 11:21:59 UTC 2025
    - 15.9K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/lock/Smb2OplockBreakNotificationTest.java

                fileIdField.setAccessible(true);
                fileIdField.set(notification, fileId);
    
                String result = notification.toString();
    
                // Note: There's a typo in the original code - "Opblock" instead of "Oplock"
                assertTrue(result.startsWith("Smb2OpblockBreakNotification["));
                assertTrue(result.contains("oplockLevel=" + oplockLevel));
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/suggest/converter/KatakanaToAlphabetConverter.java

            map.put("シェ", new String[] { "sye", "she" });
    
            map.put("チャ", new String[] { "tya", "cha" });
            map.put("チュ", new String[] { "tyu", "chu" });
            map.put("チョ", new String[] { "tyo", "cho" });
            map.put("チェ", new String[] { "tye", "che" });
    
            map.put("ニャ", new String[] { "nya" });
            map.put("ニュ", new String[] { "nyu" });
            map.put("ニョ", new String[] { "nyo" });
    
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 17 14:28:21 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  4. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/ftp/FtpClientTest.java

                assertTrue(e.getCause() instanceof InterruptedException);
            }
        }
    
        public void test_directory_child_urls() throws Exception {
            // Test that childUri (not typo chileUri) is correctly used in directory listing
            FtpServer server = null;
            try {
                String username = "testuser";
                String password = "testpass";
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 21.5K bytes
    - Viewed (0)
Back to top