Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 182 for Readable (0.07 sec)

  1. src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsWebConfigBhv.java

    import org.codelibs.fess.opensearch.config.cbean.WebConfigCB;
    import org.codelibs.fess.opensearch.config.exentity.WebConfig;
    import org.dbflute.Entity;
    import org.dbflute.bhv.readable.CBCall;
    import org.dbflute.bhv.readable.EntityRowHandler;
    import org.dbflute.cbean.ConditionBean;
    import org.dbflute.cbean.result.ListResultBean;
    import org.dbflute.cbean.result.PagingResultBean;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderResult.java

         *
         * @return the children of this result, can be empty but never {@code null}
         */
        @Nonnull
        List<? extends ModelBuilderResult> getChildren();
    
        /**
         * Creates a human-readable representation of these errors.
         */
        @Override
        String toString();
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/util/MemoryUtil.java

                    + byteCountToDisplaySize(maxBytes) + "}";
        }
    
        /**
         * Converts byte count to human-readable size format.
         *
         * @param size the size in bytes
         * @return formatted size string
         */
        public static String byteCountToDisplaySize(final long size) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  4. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/DerAdapter.kt

      /**
       * Returns a value from this adapter.
       *
       * This must always return a value, though it doesn't necessarily need to consume data from
       * [reader]. For example, if the reader's peeked tag isn't readable by this adapter, it may return
       * a default value.
       *
       * If this does read a value, it starts with the tag and length, and reads an entire value,
       * including any potential composed values.
       *
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

                return StringUtil.EMPTY;
            }
            return date.format(DateTimeFormatter.ofPattern(format, Locale.ROOT));
        }
    
        /**
         * Formats a duration in milliseconds to a human-readable string.
         *
         * @param durationMillis the duration in milliseconds
         * @return formatted duration string (e.g., "2 days 14:30:25.123" or "14:30:25.123")
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 25.3K bytes
    - Viewed (0)
  6. src/main/resources/CLMessages.properties

    ECL0099=Field({1}) of class({0}) is not a static field.
    ECL0100=Method({1}) of class({0}) is not a static method.
    ECL0101=File({0}) is not exist or not readable.
    ECL0102=File({0}) is not exist or not writable.
    ECL0103=Type({0}) is an interface not a class.
    ECL0104=Argument({0}) is not an array.
    ECL0105=Rethrew {0} as a runtime exception.
    ECL0106=IOException occurred, because {0}
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Mar 07 01:58:02 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/netbios/NbtException.java

        /** The NetBIOS error class */
        public int errorClass;
        /** The NetBIOS error code */
        public int errorCode;
    
        /**
         * Converts NetBIOS error class and code to a human-readable string.
         *
         * @param errorClass the error class
         * @param errorCode the error code
         * @return a descriptive error string
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5K bytes
    - Viewed (0)
  8. src/test/java/jcifs/smb/SmbFileIntegrationTest.java

            // Test basic attributes
            assertFalse(file.isDirectory(), "Should not be a directory");
            assertTrue(file.isFile(), "Should be a file");
            assertTrue(file.canRead(), "Should be readable");
            assertTrue(file.canWrite(), "Should be writable");
    
            // Test timestamps
            long createTime = file.createTime();
            long lastModified = file.lastModified();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 56K bytes
    - Viewed (0)
  9. src/main/java/jcifs/util/Hexdump.java

     */
    
    package jcifs.util;
    
    /**
     * Utility class for hexadecimal dumping of binary data.
     * This class provides methods for converting binary data to readable hex format.
     */
    
    public class Hexdump {
    
        /**
         * Default constructor.
         */
        public Hexdump() {
            // Utility class - no instance variables to initialize
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/witness/WitnessRpcMessage.java

         */
        public boolean isSuccess() {
            return returnCode == ERROR_SUCCESS;
        }
    
        /**
         * Gets the error message for the current return code.
         *
         * @return a human-readable error message
         */
        public String getErrorMessage() {
            switch (returnCode) {
            case ERROR_SUCCESS:
                return "Success";
            case ERROR_INVALID_PARAMETER:
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 5.5K bytes
    - Viewed (0)
Back to top