Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 1,116 for Defaults (0.51 sec)

  1. android/guava/src/com/google/common/collect/Iterables.java

      /**
       * Returns the element at the specified position in an iterable or a default value otherwise.
       *
       * <p><b>{@code Stream} equivalent:</b> {@code
       * stream.skip(position).findFirst().orElse(defaultValue)} (returns the default value if the index
       * is out of bounds)
       *
       * @param position position of the element to return
       * @param defaultValue the default value to return if {@code position} is greater than or equal to
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 43.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/dict/DictionaryItem.java

     */
    public abstract class DictionaryItem {
        /** The unique identifier for this dictionary item */
        protected long id;
    
        /**
         * Default constructor for DictionaryItem.
         * Creates a new dictionary item with default values.
         */
        public DictionaryItem() {
            // Default constructor
        }
    
        /**
         * Gets the unique identifier for this dictionary item.
         *
         * @return the ID of this dictionary item
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/Enums.java

       * constant does not exist, {@link Optional#absent} is returned. A common use case is for parsing
       * user input or falling back to a default enum constant. For example, {@code
       * Enums.getIfPresent(Country.class, countryInput).or(Country.DEFAULT);}
       *
       * @since 12.0
       */
      public static <T extends Enum<T>> Optional<T> getIfPresent(Class<T> enumClass, String value) {
        checkNotNull(enumClass);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 01 13:41:58 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/io/ResourceBundleUtil.java

            return convertMap(bundle);
        }
    
        /**
         * Returns the {@literal locale} if not {@literal null}, otherwise returns the default locale.
         *
         * @param locale the locale
         * @return the {@literal locale} if not {@literal null}, otherwise the default locale
         */
        protected static Locale getLocale(final Locale locale) {
            if (locale != null) {
                return locale;
            }
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/validation/UriTypeTest.java

        }
    
        // Test default values
        public void test_defaultValues() throws Exception {
            assertEquals("Default message should match", "{org.lastaflute.validator.constraints.UriType.message}", getDefaultMessage());
            assertEquals("Default groups should be empty", 0, getDefaultGroups().length);
            assertEquals("Default payload should be empty", 0, getDefaultPayload().length);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 21K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/badword/UploadForm.java

         */
        @Required
        public MultipartFormFile badWordFile;
    
        /**
         * Default constructor for UploadForm.
         * Creates a new instance with default values.
         */
        public UploadForm() {
            // Default constructor
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/util/OptionalUtilTest.java

            assertEquals("present", presentOptional.orElse("default"));
    
            // Test with null value
            String nullValue = null;
            OptionalEntity<String> emptyOptional = OptionalUtil.ofNullable(nullValue);
    
            assertFalse(emptyOptional.isPresent());
            assertEquals("default", emptyOptional.orElse("default"));
    
            // Test that empty optional returns null instead of throwing
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 13K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/design/FileAccessForm.java

    public class FileAccessForm {
    
        /** The name of the file to access (required) */
        @Required
        public String fileName;
    
        /**
         * Default constructor for file access form.
         * Creates a new instance with default values.
         */
        public FileAccessForm() {
            // Default constructor
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/validation/CustomSizeTest.java

            assertEquals("Default groups should be empty", 0, getDefaultGroups().length);
            assertEquals("Default payload should be empty", 0, getDefaultPayload().length);
            assertEquals("Default minKey should be empty", StringUtil.EMPTY, getDefaultMinKey());
            assertEquals("Default maxKey should be empty", StringUtil.EMPTY, getDefaultMaxKey());
        }
    
        // Test annotation on field
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/NotificationHelper.java

    /**
     * Helper class for sending notifications to various platforms.
     */
    public class NotificationHelper {
    
        /**
         * Default constructor.
         */
        public NotificationHelper() {
            // Default constructor
        }
    
        private static final Logger logger = LogManager.getLogger(NotificationHelper.class);
    
        /** Line feed character for message formatting. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.2K bytes
    - Viewed (0)
Back to top