Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,643 for z_param (0.03 sec)

  1. src/main/java/jcifs/audit/SecurityAuditLogger.java

                Thread.currentThread().interrupt();
            }
        }
    
        /**
         * Log a security event with performance optimizations
         *
         * @param type event type
         * @param severity event severity
         * @param message event message
         * @param context additional context
         */
        public void logEvent(EventType type, Severity severity, String message, Map<String, Object> context) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 26.6K 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/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)
  4. src/main/java/jcifs/smb1/smb1/SID.java

        /**
         * Resolves an array of SIDs to obtain their account and domain names.
         *
         * @param authorityServerName the server to use for SID resolution
         * @param auth the authentication credentials to use
         * @param sids the array of SIDs to resolve
         * @param offset the starting offset in the array
         * @param length the number of SIDs to resolve
         * @throws IOException if there is an error resolving the SIDs
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 31.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/witness/WitnessRegisterMessage.java

         *
         * @param ipAddress the IP address
         */
        public void setIpAddress(String ipAddress) {
            this.ipAddress = ipAddress;
        }
    
        /**
         * Sets the IP address from an InetAddress.
         *
         * @param address the InetAddress
         */
        public void setIpAddress(InetAddress address) {
            if (address != null) {
                this.ipAddress = address.getHostAddress();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 09:06:40 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/io/Files.java

       *
       * @param from the bytes to write
       * @param to the destination file
       * @throws IOException if an I/O error occurs
       */
      public static void write(byte[] from, File to) throws IOException {
        asByteSink(to).write(from);
      }
    
      /**
       * Writes a character sequence (such as a string) to a file using the given character set.
       *
       * @param from the character sequence to write
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 32.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/accesstoken/AdminAccesstokenAction.java

         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse index() {
            return asListHtml();
        }
    
        /**
         * Show the list page.
         * @param pageNumber The page number.
         * @param form The search form.
         * @return The HTML response.
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 16.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

        /**
         * Adds an elevate word to the suggest index.
         *
         * @param word        The elevate word.
         * @param reading     The reading of the word.
         * @param tags        The tags associated with the word.
         * @param permissions The permissions for the word.
         * @param boost       The boost value for the word.
         * @param apply       true to apply the changes immediately.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 22.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java

        List<CharMappingItem> mappingItemList;
    
        /**
         * Constructs a new CharMappingFile instance.
         *
         * @param id the unique identifier for this mapping file
         * @param path the file path to the character mapping dictionary
         * @param timestamp the last modification timestamp of the file
         */
        public CharMappingFile(final String id, final String path, final Date timestamp) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/beans/MethodDesc.java

         */
        Class<?> getValueClassOfMap();
    
        /**
         * Invokes the method and returns its result.
         *
         * @param <T>
         *            the return type of the method
         * @param target
         *            the target object. Must not be {@literal null}
         * @param args
         *            the method arguments
         * @return the result of the method
         */
        <T> T invoke(Object target, Object... args);
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 5.9K bytes
    - Viewed (0)
Back to top