- Sort Score
- Result 10 results
- Languages All
Results 211 - 220 of 995 for specifiers (0.04 sec)
-
src/main/java/org/codelibs/fess/entity/DataStoreParams.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.8K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/SortedSetMultimap.java
* * <p>Because a {@code SortedSetMultimap} has unique sorted values for a given key, this method * returns a {@link SortedSet}, instead of the {@link java.util.Collection} specified in the * {@link Multimap} interface. */ @Override SortedSet<V> get(@ParametricNullness K key); /** * Removes all values associated with a given key. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 5.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/JobProcess.java
/** * Constructs a new JobProcess with the specified process. * Uses the default buffer size and no output callback. * * @param process the system process to wrap */ public JobProcess(final Process process) { this(process, InputStreamThread.MAX_BUFFER_SIZE, null); } /** * Constructs a new JobProcess with the specified process, buffer size, and output callback. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/VersionRange.java
* @since 4.0.0 */ @Experimental public interface VersionRange { /** * Determines whether the specified version is contained within this range. * * @param version the version to test, must not be {@code null} * @return {@code true} if this range contains the specified version, {@code false} otherwise */ boolean contains(@Nonnull Version version); /**
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/validation/UriTypeValidator.java
import jakarta.validation.ConstraintValidator; import jakarta.validation.ConstraintValidatorContext; /** * Validator implementation for URI type constraints. * This validator checks URI strings against specified protocol types. */ public class UriTypeValidator implements ConstraintValidator<UriType, String> { /** * Default constructor for UriTypeValidator. */ public UriTypeValidator() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Execute.java
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Apr 12 10:50:18 UTC 2024 - 2.2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainsBuilder.java
* * @since 4.0.0 */ @Experimental public interface ToolchainsBuilder extends Service { /** * Builds the effective toolchains for the specified toolchains files. * * @param request the toolchains building request that holds the parameters, must not be {@code null} * @return the result of the toolchains building, never {@code null}
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Aug 22 14:47:43 UTC 2024 - 2.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcException.java
this.error = error; } /** * Constructs a DcerpcException with the specified message * * @param msg the error message */ public DcerpcException(final String msg) { super(msg); } /** * Constructs a DcerpcException with the specified message and root cause * * @param msg the error message
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/xml/SAXParserUtil.java
*/ public abstract class SAXParserUtil { /** * Do not instantiate. */ protected SAXParserUtil() { } /** * Parses the content of the specified {@link InputSource} as XML using the specified {@link DefaultHandler}. * * @param parser * The {@link SAXParser} to use. Must not be {@literal null}. * @param inputSource
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/NtlmMessage.java
/** * Returns the status of the specified flag. * * @param flag * The flag to test (i.e., <code>NTLMSSP_NEGOTIATE_OEM</code>). * @return A <code>boolean</code> indicating whether the flag is set. */ public boolean getFlag(final int flag) { return (getFlags() & flag) != 0; } /** * Sets or clears the specified flag. * * @param flag
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.4K bytes - Viewed (0)