Search Options

Results per page
Sort
Preferred Languages
Advance

Results 231 - 240 of 481 for getLogger (0.05 sec)

  1. src/main/java/jcifs/internal/smb2/create/Smb2CloseResponse.java

     *
     * @author mbechler
     *
     */
    public class Smb2CloseResponse extends ServerMessageBlock2Response implements SmbBasicFileInfo {
    
        private static final Logger log = LoggerFactory.getLogger(Smb2CloseResponse.class);
    
        /**
         * Flag to query attributes after close
         */
        public static final int SMB2_CLOSE_FLAG_POSTQUERY_ATTIB = 0x1;
    
        private final byte[] fileId;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

    import jakarta.annotation.PostConstruct;
    
    /**
     * Helper class for managing search logs.
     */
    public class SearchLogHelper {
        private static final Logger logger = LogManager.getLogger(SearchLogHelper.class);
    
        /**
         * Default constructor for SearchLogHelper.
         */
        public SearchLogHelper() {
            // Default constructor
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 26.3K bytes
    - Viewed (0)
  3. samples/guide/src/main/java/okhttp3/recipes/kt/WiresharkExample.kt

        fun register() {
          // Enable JUL logging for SSL events, must be activated early or via -D option.
          System.setProperty("javax.net.debug", "")
          logger =
            Logger
              .getLogger("javax.net.ssl")
              .apply {
                level = Level.FINEST
                useParentHandlers = false
              }
        }
      }
    }
    
    @SuppressSignatureCheck
    class WiresharkExample(
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat May 10 11:15:14 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/util/TextUtil.java

     * }</pre>
     *
     * <p>Note: This class is not intended to be instantiated.
     *
     * @see TextNormalizeContext
     */
    public final class TextUtil {
        private static final Logger logger = LogManager.getLogger(TextUtil.class);
    
        private TextUtil() {
        }
    
        /**
         * This class provides a context for normalizing text.
         */
        public static class TextNormalizeContext {
    
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 12K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/api/admin/keymatch/ApiAdminKeymatchAction.java

    /**
     * API action for admin key match management.
     *
     */
    public class ApiAdminKeymatchAction extends FessApiAdminAction {
    
        /** The logger for this class. */
        private static final Logger logger = LogManager.getLogger(ApiAdminKeymatchAction.class);
    
        // ===================================================================================
        //                                                                         Constructor
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/keymatch/AdminKeymatchAction.java

        }
    
        /** The role name for key match administration. */
        public static final String ROLE = "admin-keymatch";
    
        /** Logger for this class. */
        private static final Logger logger = LogManager.getLogger(AdminKeymatchAction.class);
    
        // ===================================================================================
        //                                                                           Attribute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 16.7K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/util/concurrent/ExecutionSequencerTest.java

            return object.toString();
          }
        };
      }
    
      public void testCancellationDuringReentrancy() throws Exception {
        TestLogHandler logHandler = new TestLogHandler();
        Logger.getLogger(AbstractFuture.class.getName()).addHandler(logHandler);
    
        List<Future<?>> results = new ArrayList<>();
        Runnable[] manualExecutorTask = new Runnable[1];
        Executor manualExecutor =
            new Executor() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 20:58:01 UTC 2025
    - 16.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java

     * security mode, and supported protocol version.
     */
    public class SmbComNegotiateResponse extends ServerMessageBlock implements SmbNegotiationResponse {
    
        private static final Logger log = LoggerFactory.getLogger(SmbComNegotiateResponse.class);
    
        private int dialectIndex;
    
        /* Negotiated values */
        private final ServerData server;
        private int negotiatedFlags2;
        private int maxMpxCount;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/util/ResourceManager.java

     * - Resource usage monitoring
     * - Periodic cleanup of abandoned resources
     * - Detailed resource tracking and reporting
     */
    public class ResourceManager {
    
        private static final Logger log = LoggerFactory.getLogger(ResourceManager.class);
        private static final ResourceManager INSTANCE = new ResourceManager();
    
        private final Map<String, ResourceHolder> activeResources = new ConcurrentHashMap<>();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.2K bytes
    - Viewed (0)
  10. src/main/java/jcifs/util/AuthenticationRateLimiter.java

     * - Account lockout after threshold
     * - Automatic cleanup of old entries
     */
    public class AuthenticationRateLimiter implements AutoCloseable {
    
        private static final Logger log = LoggerFactory.getLogger(AuthenticationRateLimiter.class);
    
        // Rate limiting configuration
        private final int maxAttemptsPerAccount;
        private final int maxAttemptsPerIp;
        private final int maxGlobalAttemptsPerMinute;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 15.1K bytes
    - Viewed (0)
Back to top