Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 516 for eased (0.01 sec)

  1. src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java

            infoMap.put(key, value);
        }
    
        /**
         * Updates crawling information parameters for the specified session.
         * Sets the name and expiration time based on the provided parameters.
         *
         * @param sessionId the session ID to update
         * @param name the name to set for the crawling session (uses system name if blank)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 15.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/util/SmbCircuitBreaker.java

            if (responseTimeMs > 0) {
                updateResponseTimeMetrics(responseTimeMs);
            }
    
            rollingWindow.recordFailure();
    
            // Dynamic threshold adjustment based on failure patterns
            if (dynamicThresholdEnabled) {
                adjustThresholdBasedOnMetrics();
            }
    
            if (currentState == State.HALF_OPEN) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 33.4K bytes
    - Viewed (0)
  3. src/main/webapp/css/bootstrap.min.css

    lor:inherit;border-style:solid;border-width:0;border-inline-end-width:var(--bs-border-width);border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75r...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Jan 12 06:14:02 UTC 2025
    - 227.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/pac/kerberos/KerberosAuthData.java

        /**
         * Default constructor for KerberosAuthData.
         */
        protected KerberosAuthData() {
            // Default constructor
        }
    
        /**
         * Parse Kerberos authorization data based on the authorization type.
         *
         * @param authType the type of authorization data
         * @param token the authorization data token
         * @param keys the Kerberos keys for decryption
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/base/Objects.java

       * Arrays#hashCode(Object[])}. Note that array arguments to this method, with the exception of a
       * single Object array, do not get any special handling; their hash codes are based on identity
       * and not contents.
       *
       * <p>This is useful for implementing {@link Object#hashCode()}. For example, in an object that
       * has three properties, {@code x}, {@code y}, and {@code z}, one could write:
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Jul 28 22:51:26 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/service/UserService.java

        @Resource
        protected FessLoginAssist fessLoginAssist;
    
        /** Fess configuration for system settings */
        @Resource
        protected FessConfig fessConfig;
    
        /**
         * Retrieves a paginated list of users based on the provided pager criteria.
         * Updates the pager with pagination information including total count and page navigation.
         *
         * @param userPager the pager containing search criteria and pagination settings
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb2/multichannel/ChannelLoadBalancer.java

                ServerMessageBlock2Request smb2Request = (ServerMessageBlock2Request) message;
                affinityKey = smb2Request.getTreeId();
            }
    
            if (affinityKey != 0) {
                // Select channel based on affinity key
                List<ChannelInfo> list = new ArrayList<>(channels);
                int index = Math.abs((int) (affinityKey % list.size()));
                return list.get(index);
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/KeyMatchHelper.java

                }
            });
            this.keyMatchQueryMap = keyMatchQueryMap;
            return keyMatchQueryMap.size();
        }
    
        /**
         * Retrieves a list of documents based on the KeyMatch query.
         *
         * @param keyMatch The KeyMatch instance.
         * @return A list of documents.
         */
        protected List<Map<String, Object>> getDocumentList(final KeyMatch keyMatch) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/dfs/DfsReferralDataInternalTest.java

                verify(mockReferralData, times(1)).getDomain();
    
                // Test with concrete implementation
                String concreteDomain = concreteImplementation.getDomain();
                // Should be DOMAIN based on our initialization
                assertEquals("DOMAIN", concreteDomain);
            }
    
            @Test
            @DisplayName("Should get link")
            void testGetLink() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 28.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/primitives/ImmutableLongArray.java

     *
     * <p>Advantages compared to {@code long[]}:
     *
     * <ul>
     *   <li>All the many well-known advantages of immutability (read <i>Effective Java</i>, third
     *       edition, Item 17).
     *   <li>Has the value-based (not identity-based) {@link #equals}, {@link #hashCode}, and {@link
     *       #toString} behavior you expect.
     *   <li>Offers useful operations beyond just {@code get} and {@code length}, so you don't have to
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 22K bytes
    - Viewed (0)
Back to top