- Sort Score
- Result 10 results
- Languages All
Results 761 - 770 of 2,387 for param2 (0.03 sec)
-
src/main/java/jcifs/smb1/dcerpc/UUID.java
*/ public class UUID extends rpc.uuid_t { /** * Convert hexadecimal characters to binary integer * * @param arr the character array containing hex digits * @param offset the starting position in the array * @param length the number of hex digits to convert * @return the integer value of the hex digits */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/ClassIterator.java
} /** * Constructs an instance. * * @param clazz * the class (must not be {@literal null}) */ public ClassIterator(final Class<?> clazz) { this(clazz, true); } /** * Constructs an instance. * * @param clazz the class (must not be {@literal null}) * @param includeObject if {@literal true}, includes the {@link Object} class in the iteration
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 3.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java
return null; } } /** * Retrieves an integer value from system properties with a default fallback. * * @param key the property key to look up * @param defaultValue the default value if the property is not found or invalid * @return the integer value or default value */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/validation/FessActionValidator.java
* * @param <MESSAGES> the type of user messages used by this validator */ public class FessActionValidator<MESSAGES extends UserMessages> extends ActionValidator<MESSAGES> { /** * Constructs a new FessActionValidator with the specified components. * * @param requestManager the request manager for handling HTTP requests * @param messagesCreator the creator for user messages
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/DirFileEntryAdapterIterator.java
class DirFileEntryAdapterIterator extends FileEntryAdapterIterator { /** * @param parent * @param delegate * @param filter */ public DirFileEntryAdapterIterator(final SmbResource parent, final CloseableIterator<FileEntry> delegate, final ResourceFilter filter) { super(parent, delegate, filter); } /** * @param fe * @return * @throws MalformedURLException */ @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/request/RequestBuilder.java
* * @param <Req> the type of the request * @param <Res> the type of the response */ public abstract class RequestBuilder<Req extends Request<Res>, Res extends Response> { /** The OpenSearch client. */ protected Client client; /** The request being built. */ protected Req request; /** * Constructor for RequestBuilder. * @param client The OpenSearch client.
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RelatedQueryService.java
* This method configures wildcard searches for term and queries fields, and sets up ordering. * * @param cb the condition bean for building the query * @param relatedQueryPager the pager containing search parameters */ protected void setupListCondition(final RelatedQueryCB cb, final RelatedQueryPager relatedQueryPager) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/FuzzyQueryCommand.java
} /** * Executes the fuzzy query command to convert a Lucene FuzzyQuery into an OpenSearch QueryBuilder. * * @param context the query context containing search configuration * @param query the Lucene query to convert (must be a FuzzyQuery) * @param boost the boost factor to apply to the query * @return OpenSearch QueryBuilder for fuzzy matching
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 5.7K bytes - Viewed (0) -
cmd/storage-rest-server.go
func (s *storageRESTServer) ReadVersionHandlerWS(params *grid.MSS) (*FileInfo, *grid.RemoteErr) { if !s.checkID(params.Get(storageRESTDiskID)) { return nil, grid.NewRemoteErr(errDiskNotFound) } origvolume := params.Get(storageRESTOrigVolume) volume := params.Get(storageRESTVolume) filePath := params.Get(storageRESTFilePath) versionID := params.Get(storageRESTVersionID)
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue May 27 15:19:03 UTC 2025 - 45.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/BoostDocumentRuleService.java
* Gets a boost document rule by its ID. * @param id The boost document rule ID. * @return Optional entity containing the boost document rule if found. */ public OptionalEntity<BoostDocumentRule> getBoostDocumentRule(final String id) { return boostDocumentRuleBhv.selectByPK(id); } /** * Stores (inserts or updates) a boost document rule. * @param boostDocumentRule The boost document rule to store.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.5K bytes - Viewed (0)