Search Options

Results per page
Sort
Preferred Languages
Advance

Results 261 - 270 of 1,949 for DeVault (0.07 sec)

  1. src/main/java/org/codelibs/fess/job/PingSearchEngineJob.java

    import org.lastaflute.core.mail.Postbox;
    
    /**
     * Job for pinging search engine.
     */
    public class PingSearchEngineJob {
    
        /**
         * Default constructor.
         */
        public PingSearchEngineJob() {
            // Default constructor
        }
    
        private static final Logger logger = LogManager.getLogger(PingSearchEngineJob.class);
    
        /**
         * Executes the ping job.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/convert/LongConversionUtil.java

            case String s -> toLong(s);
            case java.util.Date d -> pattern != null ? Long.valueOf(new SimpleDateFormat(pattern).format(d)) : d.getTime();
            case Boolean b -> b ? 1L : 0L;
            default -> toLong(o.toString());
            };
        }
    
        private static Long toLong(final String s) {
            if (StringUtil.isEmpty(s)) {
                return null;
            }
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/CIFSContext.java

        URLStreamHandler getUrlHandler();
    
        /**
         * Check if default credentials are configured
         *
         * @return whether default credentials are available
         */
        boolean hasDefaultCredentials();
    
        /**
         * Create a child context with default credentials
         *
         * @return a child context using the configured default credentials
         */
        CIFSContext withDefaultCredentials();
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/util/transport/Response.java

     * Represents a response that can be received through the SMB1 transport layer.
     */
    public abstract class Response {
    
        /**
         * Default constructor for Response.
         */
        public Response() {
            // Default constructor
        }
    
        /**
         * The expiration time for this response in milliseconds.
         */
        public long expiration;
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 557 bytes
    - Viewed (0)
  5. src/test/java/jcifs/smb1/smb1/NtlmPasswordAuthenticationTest.java

        @BeforeAll
        static void setUpClass() {
            // Save original property
            originalLmCompatibility = System.getProperty("jcifs.smb1.smb.lmCompatibility");
            // Set default for tests
            jcifs.smb1.Config.setProperty("jcifs.smb1.smb.lmCompatibility", "3");
        }
    
        @AfterAll
        static void tearDownClass() {
            // Restore original property
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/general/MailForm.java

    import jakarta.validation.constraints.Size;
    
    /**
     * The mail form for General settings.
     */
    public class MailForm {
    
        /**
         * Default constructor.
         */
        public MailForm() {
            // Default constructor
        }
    
        /** The incremental crawling setting. */
        public String incrementalCrawling;
    
        /** The day for cleanup setting. */
        public String dayForCleanup;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/validation/UriTypeValidator.java

     * This validator checks URI strings against specified protocol types.
     */
    public class UriTypeValidator implements ConstraintValidator<UriType, String> {
    
        /**
         * Default constructor for UriTypeValidator.
         */
        public UriTypeValidator() {
            // Default constructor
        }
    
        private String[] protocols;
    
        @Override
        public void initialize(final UriType uriType) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Execute.java

         * @return the phase
         */
        @Nonnull
        String phase() default "";
    
        /**
         * Goal to fork. Note that specifying a phase overrides specifying a goal. The specified <code>goal</code> must be
         * another goal of the same plugin.
         * @return the goal
         */
        @Nonnull
        String goal() default "";
    
        /**
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

         * Create an NtlmPasswordAuthenticator from user info with defaults.
         *
         * @param userInfo the user information string
         * @param defDomain the default domain if not specified
         * @param defUser the default username if not specified
         * @param defPassword the default password if not specified
         */
        protected NtlmPasswordAuthenticator(String userInfo, String defDomain, String defUser, String defPassword) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 30.3K bytes
    - Viewed (0)
  10. 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)
Back to top