Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 976 for m_param (0.04 sec)

  1. android/guava/src/com/google/common/util/concurrent/TimeLimiter.java

       *     return DEFAULT_VALUE;
       *   }
       * </pre>
       *
       * @param target the object to proxy
       * @param interfaceType the interface you wish the returned proxy to implement
       * @param timeoutDuration with timeoutUnit, the maximum length of time that callers are willing to
       *     wait on each method call to the proxy
       * @param timeoutUnit with timeoutDuration, the maximum length of time that callers are willing to
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Jan 18 02:54:30 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Queues.java

       *
       * @param q the blocking queue to be drained
       * @param buffer where to add the transferred elements
       * @param numElements the number of elements to be waited for
       * @param timeout how long to wait before giving up, in units of {@code unit}
       * @param unit a {@code TimeUnit} determining how to interpret the timeout parameter
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 18.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/text/Tokenizer.java

        /**
         * Creates a {@link Tokenizer}.
         *
         * @param str
         *            The string. Must not be {@literal null}.
         */
        public Tokenizer(final String str) {
            this(str, defaultCtype);
        }
    
        /**
         * Creates a {@link Tokenizer}.
         *
         * @param str
         *            The string. Must not be {@literal null}.
         * @param ctype
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/dataconfig/AdminDataconfigAction.java

        //                                                                        ============
        /**
         * Get a data config entity from a form.
         * @param form The create form.
         * @param username The username.
         * @param currentTime The current time.
         * @return An optional entity of a data config.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 19.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/PluginHelper.java

        }
    
        /**
         * Gets the actual version string for a SNAPSHOT artifact by parsing the snapshot metadata.
         *
         * @param builder the document builder to use for parsing XML
         * @param pluginUrl the URL of the plugin
         * @param version the snapshot version
         * @return the actual version string with timestamp and build number, or null if not found
         * @throws SAXException if XML parsing fails
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/joblog/AdminJoblogAction.java

         *
         * @param form the search form
         * @return HTML response for the list page
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse index(final SearchForm form) {
            saveToken();
            return asListHtml();
        }
    
        /**
         * Displays the job log list with pagination.
         *
         * @param pageNumber the page number
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java

            }
            return null;
        }
    
        /**
         * Checks whether the arguments are suitable for the parameter types.
         *
         * @param paramTypes
         *            array of parameter types
         * @param args
         *            array of arguments
         * @param adjustNumber
         *            if {@literal true}, converts arguments to match number types if necessary
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 25.8K bytes
    - Viewed (1)
  8. src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/AdminDictSynonymAction.java

        //                                               -------
        /**
         * Displays the details view for a specific synonym item.
         *
         * @param dictId the dictionary ID
         * @param crudMode the CRUD operation mode
         * @param id the synonym item ID
         * @return HTML response for the synonym item details
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 23.7K bytes
    - Viewed (1)
  9. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java

        }
    
        /**
         * Processes member-of information from Microsoft Graph API.
         * @param user The Azure AD user.
         * @param groupList The list to add group names to.
         * @param roleList The list to add role names to.
         * @param url The Microsoft Graph API URL.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 28 09:13:08 UTC 2025
    - 37.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/labeltype/AdminLabeltypeAction.java

        /**
         * Gets a label type entity based on the form and current user info.
         *
         * @param form the create form
         * @param username the current username
         * @param currentTime the current time
         * @return optional label type entity
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18.5K bytes
    - Viewed (0)
Back to top