Search Options

Results per page
Sort
Preferred Languages
Advance

Results 251 - 260 of 995 for specifiers (0.11 sec)

  1. src/main/java/jcifs/smb/SmbException.java

        }
    
        /**
         * Constructs an SmbException with the specified detail message
         *
         * @param msg the detail message
         */
        public SmbException(final String msg) {
            super(msg);
            this.status = NT_STATUS_UNSUCCESSFUL;
        }
    
        /**
         * Constructs an SmbException with the specified detail message and root cause
         *
         * @param msg the detail message
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/net/URLUtil.java

                return new URL(spec);
            } catch (final IOException e) {
                throw new IORuntimeException(e);
            }
        }
    
        /**
         * Creates a <code>URL</code> by parsing the specified spec within the specified context.
         *
         * @param context
         *            The context in which to parse the spec. Must not be {@literal null}.
         * @param spec
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  3. src/test/java/jcifs/CIFSUnsupportedCryptoExceptionTest.java

            assertTrue(exception instanceof RuntimeException, "Should be a RuntimeException");
        }
    
        @Test
        @DisplayName("Message constructor should create exception with specified message")
        void testMessageConstructor() {
            // Given & When
            CIFSUnsupportedCryptoException exception = new CIFSUnsupportedCryptoException(CRYPTO_ERROR_MESSAGE);
    
            // Then
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  4. cmd/batch-handlers.go

    			// skip all objects that are created before the specified time.
    			return true
    		}
    
    		if !r.Flags.Filter.CreatedBefore.IsZero() && r.Flags.Filter.CreatedBefore.Before(oi.ModTime) {
    			// skip all objects that are created after the specified time.
    			return true
    		}
    
    		if hasTags {
    			// Only parse object tags if tags filter is specified.
    			tagMap := map[string]string{}
    			tagStr := oi.UserTags
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 63.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/pac/PacDataInputStream.java

            return this.dis.available();
        }
    
        /**
         * Reads bytes into the specified array.
         * @param b the byte array to read into
         * @throws IOException if an I/O error occurs
         */
        public void readFully(final byte[] b) throws IOException {
            this.dis.readFully(b);
        }
    
        /**
         * Reads bytes into the specified array at the given offset.
         * @param b the byte array to read into
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  6. api/maven-api-spi/src/main/java/org/apache/maven/api/spi/ModelParser.java

     *
     * @since 4.0.0
     */
    @Experimental
    @Consumer
    @Named
    public interface ModelParser extends SpiService {
    
        /**
         * Option that can be specified in the options map.  The value should be a Boolean.
         */
        String STRICT = "strict";
    
        /**
         * Locates the pom in the given directory.
         *
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Tue Sep 10 17:18:47 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/convert/NumberConversionUtil.java

            }
            return o;
        }
    
        /**
         * Converts to the wrapper type corresponding to the specified primitive type.
         *
         * @param type
         *            Primitive type
         * @param o
         *            Source object
         * @return Object converted to the wrapper type corresponding to the specified primitive type
         */
        public static Object convertPrimitiveWrapper(final Class<?> type, final Object o) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/io/ResourceBundleUtil.java

                return null;
            }
        }
    
        /**
         * Returns the string for the specified key from the resource bundle.
         *
         * @param bundle the resource bundle (must not be {@literal null} or empty)
         * @param key the key
         * @return the string for the specified key (must not be {@literal null} or empty)
         * @see ResourceBundle#getString(String)
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  9. src/main/resources/fess_message.properties

    errors.invalid_query_unknown = The specified query has an unknown condition.
    errors.invalid_query_parse_error = The given query is invalid.
    errors.invalid_query_sort_value = The specified sort {0} is invalid.
    errors.invalid_query_unsupported_sort_field = The specified sort {0} is unsupported.
    errors.invalid_query_unsupported_sort_order = The specified sort order {0} is unsupported.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  10. src/main/resources/fess_message_en.properties

    errors.invalid_query_unknown = The specified query has an unknown condition.
    errors.invalid_query_parse_error = The given query is invalid.
    errors.invalid_query_sort_value = The specified sort {0} is invalid.
    errors.invalid_query_unsupported_sort_field = The specified sort {0} is unsupported.
    errors.invalid_query_unsupported_sort_order = The specified sort order {0} is unsupported.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.5K bytes
    - Viewed (0)
Back to top