Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,504 for m_param (0.05 sec)

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

                            .filter(StringUtil::isNotBlank)
                            .orElse("-"));
            log(valueMap);
        }
    
        /**
         * Log the access activity.
         * @param user The user.
         * @param path The path.
         * @param execute The execute.
         */
        public void access(final OptionalThing<FessUserBean> user, final String path, final String execute) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/lang/GenericsUtil.java

        }
    
        /**
         * Returns the generic type of the specified type for the given index, or the default class if not found.
         *
         * @param type the type to analyze
         * @param index the index of the generic type
         * @param defaultClass the default class to return if not found
         * @return the generic type class, or the default class
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 23.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/lang/ModifierUtil.java

         *
         * @param modifier
         *            the modifier to check
         * @return true if public, static, and final, false otherwise
         */
        public static boolean isPublicStaticFinal(final int modifier) {
            return isPublic(modifier) && isStatic(modifier) && isFinal(modifier);
        }
    
        /**
         * Checks if the specified modifier is public.
         *
         * @param modifier
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/DfsImpl.java

        }
    
        /**
         * Get a DFS referral for the specified target
         *
         * @param tf the CIFS context
         * @param trans the SMB transport
         * @param target the target path
         * @param targetDomain the target domain
         * @param targetHost the target host
         * @param root the DFS root
         * @param path the DFS path
         * @return the DFS referral data or null if not found
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 29.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/misc/Tuple4.java

         *
         * @param <T1>
         *            The type of the first value
         * @param <T2>
         *            The type of the second value
         * @param <T3>
         *            The type of the third value
         * @param <T4>
         *            The type of the fourth value
         * @param value1
         *            The first value
         * @param value2
         *            The second value
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/CommonServerMessageBlock.java

        /**
         * Encodes this message into a byte array.
         *
         * @param dst the destination byte array
         * @param dstIndex the starting index in the destination array
         * @return message length
         */
        int encode(byte[] dst, int dstIndex);
    
        /**
         * Sets the signing digest for this message.
         *
         * @param digest the signing digest to set
         */
        void setDigest(SMBSigningDigest digest);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/io/TraversalUtil.java

         * <p>
         * Returns <code>null</code> if the protocol of the URL is unknown.
         * </p>
         *
         * @param url
         *            The URL of the resource.
         * @param rootPackage
         *            The root package.
         * @param rootDir
         *            The root directory.
         * @return A {@link Traverser} for handling the specified URL.
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 18.6K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/AtomicDoubleArray.java

       *
       * @param i the index
       * @param newValue the new value
       */
      public final void lazySet(int i, double newValue) {
        long next = doubleToRawLongBits(newValue);
        longs.lazySet(i, next);
      }
    
      /**
       * Atomically sets the element at position {@code i} to the given value and returns the old value.
       *
       * @param i the index
       * @param newValue the new value
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java

            return p24;
        }
    
        /**
         * Creates the LMv2 response for the supplied information.
         *
         * @param domain The domain in which the username exists.
         * @param user The username.
         * @param password The user's password.
         * @param challenge The server challenge.
         * @param clientChallenge The client challenge (nonce).
         * @return the LMv2 response bytes
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 26.7K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/util/SMBUtil.java

         */
        private SMBUtil() {
        }
    
        /**
         * Writes a 16-bit integer value to a byte array in little-endian format
         * @param val the value to write
         * @param dst the destination byte array
         * @param dstIndex the starting index in the destination array
         */
        public static void writeInt2(final long val, final byte[] dst, int dstIndex) {
            dst[dstIndex] = (byte) val;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8K bytes
    - Viewed (0)
Back to top