Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 248 for reachable (0.05 sec)

  1. schema/schema.go

    		if field.DBName != "" {
    			// nonexistence or shortest path or first appear prioritized if has permission
    			if v, ok := schema.FieldsByDBName[field.DBName]; !ok || ((field.Creatable || field.Updatable || field.Readable) && len(field.BindNames) < len(v.BindNames)) {
    				if _, ok := schema.FieldsByDBName[field.DBName]; !ok {
    					schema.DBNames = append(schema.DBNames, field.DBName)
    				}
    				schema.FieldsByDBName[field.DBName] = field
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Tue Aug 19 06:35:49 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  2. 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)
  3. src/main/java/jcifs/smb1/smb1/DosError.java

        /* These aren't really used by jCIFS -- the map above is used
         * to immediately map to NTSTATUS codes.
         */
        /**
         * Human-readable error messages corresponding to DOS error codes.
         * Array of descriptive strings for each DOS error condition.
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/Source.java

         * @throws IOException if the stream cannot be created or opened
         */
        @Nonnull
        InputStream openStream() throws IOException;
    
        /**
         * Returns a human-readable description of where this source came from,
         * used primarily for error messages and debugging.
         * <p>
         * Examples of locations:
         * <ul>
         *   <li>Absolute file path: {@code /path/to/pom.xml}</li>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Jan 29 09:46:53 UTC 2025
    - 4K 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/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)
  7. 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)
  8. src/main/java/jcifs/internal/smb2/nego/CompressionNegotiateContext.java

                    || algorithm == COMPRESSION_LZNT1 || algorithm == COMPRESSION_PATTERN_V1;
        }
    
        /**
         * Gets a human-readable name for the compression algorithm.
         *
         * @param algorithm the algorithm constant
         * @return the algorithm name
         */
        public static String getAlgorithmName(int algorithm) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/exception/SsoProcessExceptionTest.java

        public void test_exceptionChaining() {
            // Test exception chaining with multiple levels
            Exception rootCause = new Exception("Network timeout");
            Exception middleCause = new Exception("SSO provider unreachable", rootCause);
            SsoProcessException topException = new SsoProcessException("SSO authentication failed", middleCause);
    
            assertEquals("SSO authentication failed", topException.getMessage());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/io/CharSource.java

    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.List;
    import java.util.function.Consumer;
    import java.util.stream.Stream;
    import org.jspecify.annotations.Nullable;
    
    /**
     * A readable source of characters, such as a text file. Unlike a {@link Reader}, a {@code
     * CharSource} is not an open, stateful stream of characters that can be read and closed. Instead,
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 17:42:14 UTC 2025
    - 25.7K bytes
    - Viewed (0)
Back to top