Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 668 for eased (0.02 sec)

  1. 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)
  2. 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)
  3. 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)
  4. guava/src/com/google/common/primitives/ImmutableIntArray.java

     *
     * <p>Advantages compared to {@code int[]}:
     *
     * <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
    - 21.4K bytes
    - Viewed (0)
  5. cmd/sts-handlers.go

    	// use that and validate the authentication request. If not, we assume this
    	// is an STS request for a claim based IDP (if one is present) and set
    	// roleArn = openid.DummyRoleARN.
    	//
    	// Currently, we do not support multiple claim based IDPs, as there is no
    	// defined parameter to disambiguate the intended IDP in this STS request.
    	roleArn := openid.DummyRoleARN
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 36.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/service/RoleService.java

         */
        @Resource
        protected UserBhv userBhv;
    
        /**
         * Constructor.
         */
        public RoleService() {
            super();
        }
    
        /**
         * Gets a list of roles based on the pager.
         * @param rolePager The pager for roles.
         * @return A list of roles.
         */
        public List<Role> getRoleList(final RolePager rolePager) {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb2/nego/Smb2RdmaTransformCapabilitiesContext.java

            return bufferIndex - start;
        }
    
        @Override
        public int size() {
            return 20; // Fixed size: 2 + 2 + 4 + 12 (transform structure)
        }
    
        /**
         * Check if RDMA is supported based on this context
         *
         * @return true if RDMA Transform V1 is supported
         */
        public boolean isRdmaSupported() {
            return transformCount > 0 && rdmaTransformId == 0x0001;
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  8. 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)
  9. guava/src/com/google/common/util/concurrent/FuturesGetChecked.java

        @J2ObjCIncompatible // ClassValue
        enum ClassValueValidator implements GetCheckedTypeValidator {
          INSTANCE;
    
          /*
           * Static final fields are presumed to be fastest, based on our experience with
           * UnsignedBytesBenchmark. TODO(cpovirk): benchmark this
           */
          private static final ClassValue<Boolean> isValidClass =
              new ClassValue<Boolean>() {
                @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 11.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/ntlmssp/av/AvTimestamp.java

     */
    package jcifs.ntlmssp.av;
    
    import jcifs.internal.util.SMBUtil;
    
    /**
     * NTLMSSP AV pair representing timestamp information in NTLM authentication.
     * Contains time-based data used to prevent replay attacks and ensure message freshness.
     *
     * @author mbechler
     */
    public class AvTimestamp extends AvPair {
    
        /**
         * Constructs an AvTimestamp from raw byte data
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.9K bytes
    - Viewed (0)
Back to top