Search Options

Results per page
Sort
Preferred Languages
Advance

Results 241 - 250 of 490 for logo (0.12 sec)

  1. src/test/java/jcifs/smb/NtlmPasswordAuthenticatorTest.java

        }
    
        /**
         * Test that getPassword() is deprecated and logs warning
         */
        @Test
        @DisplayName("Test deprecated getPassword() method warning")
        public void testDeprecatedGetPasswordWarning() {
            NtlmPasswordAuthenticator auth = new NtlmPasswordAuthenticator("user", "TestPass123!");
    
            // This should log a warning about using deprecated method
            String password = auth.getPassword();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 23.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SpnegoContext.java

            final byte[] ml = encodeMechs(lm);
            final byte[] mechanismListMIC = this.mechContext.calculateMIC(ml);
            if (log.isDebugEnabled()) {
                log.debug("Out Mech list " + Arrays.toString(lm));
                log.debug("Out Mech list encoded " + Hexdump.toHexString(ml));
                log.debug("Out Mech list MIC " + Hexdump.toHexString(mechanismListMIC));
            }
            return mechanismListMIC;
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbFileDirectoryLeasingExtension.java

                // This will be implemented when the session integration is complete
                log.debug("Directory lease manager integration not yet complete");
                return null;
            } catch (Exception e) {
                log.debug("Failed to get directory lease manager", e);
                return null;
            }
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/context/SingletonContext.java

         */
        public static synchronized final SingletonContext getInstance() {
            if (INSTANCE == null) {
                try {
                    log.debug("Initializing singleton context");
                    init(null);
                } catch (final CIFSException e) {
                    log.error("Failed to create singleton JCIFS context", e);
                }
            }
            return INSTANCE;
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

            assertEquals("logs", logFile.getName());
            assertEquals("target", logFile.getParentFile().getName());
            try {
                System.setProperty("fess.log.path", "logpath");
                assertEquals("logpath", systemHelper.getLogFilePath());
            } finally {
                System.clearProperty("fess.log.path");
            }
        }
    
        public void test_getForumLink() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/util/SimpleCircuitBreaker.java

     * - Lock-free atomic operations
     * - Configurable thresholds and timeouts
     * - No complex dependencies
     */
    public class SimpleCircuitBreaker {
    
        private static final Logger log = LoggerFactory.getLogger(SimpleCircuitBreaker.class);
    
        /**
         * Circuit breaker states
         */
        public enum State {
            CLOSED, // Normal operation
            OPEN, // Failing, requests blocked
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/audit/SecurityAuditLogger.java

            this.includeStackTrace = enable;
        }
    
        /**
         * Set minimum log level
         *
         * @param level minimum severity level to log
         */
        public void setMinLogLevel(Severity level) {
            this.minLogLevel = level;
            log.info("Minimum log level set to {}", level);
        }
    
        /**
         * Enable or disable asynchronous logging
         *
         * @param enable true to enable async logging
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/ImmediateFuture.java

          executor.execute(listener);
        } catch (Exception e) { // sneaky checked exception
          // ListenableFuture's contract is that it will not throw unchecked exceptions, so log the bad
          // runnable and/or executor and swallow it.
          log.get()
              .log(
                  Level.SEVERE,
                  "RuntimeException while executing runnable "
                      + listener
                      + " with executor "
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/FileEntryAdapterIterator.java

                        log.error("Failed to create child URL", e);
                        continue;
                    }
                }
    
                try (SmbResource r = adapt(fe)) {
                    if (this.filter.accept(r)) {
                        return r;
                    }
                } catch (final MalformedURLException e) {
                    log.error("Failed to create child URL", e);
                    continue;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbFile.java

                    if (!parent.exists()) {
                        if (log.isDebugEnabled()) {
                            log.debug("Parent does not exist " + p);
                        }
                        parent.mkdirs();
                    }
                } catch (final SmbException e) {
                    if (log.isDebugEnabled()) {
                        log.debug("Failed to ensure parent exists " + p, e);
                    }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
Back to top