- Sort Score
- Result 10 results
- Languages All
Results 2261 - 2270 of 3,920 for extenders (0.12 sec)
-
src/main/java/org/codelibs/core/exception/IllegalKeyOfBeanMapException.java
import static org.codelibs.core.collection.ArrayUtil.asArray; import java.util.Map; /** * {@literal BeanMap}に含まれていないキーを使用した場合にスローされる例外です。 * * @author koichik */ public class IllegalKeyOfBeanMapException extends ClIllegalArgumentException { private static final long serialVersionUID = 3456740832476626338L; /** * インスタンスを構築します。 * * @param key * マップのキー * @param map
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/ResourceNotFoundRuntimeException.java
package org.codelibs.core.exception; import static org.codelibs.core.collection.ArrayUtil.asArray; /** * リソースが見つからなかったときにスローされる例外です。 * * @author higa */ public class ResourceNotFoundRuntimeException extends ClRuntimeException { private static final long serialVersionUID = 9033370905740809950L; private final String path; /** * {@link ResourceNotFoundRuntimeException}を作成します。 *
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComLogoffAndX.java
* License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb1.smb1; class SmbComLogoffAndX extends AndXServerMessageBlock { SmbComLogoffAndX( ServerMessageBlock andx ) { super( andx ); command = SMB_COM_LOGOFF_ANDX; } int writeParameterWordsWireFormat( byte[] dst, int dstIndex ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 1.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComWriteResponse.java
* License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb1.smb1; class SmbComWriteResponse extends ServerMessageBlock { long count; SmbComWriteResponse() { } int writeParameterWordsWireFormat( byte[] dst, int dstIndex ) { return 0; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 1.5K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataRetrievalException.java
* under the License. */ package org.apache.maven.repository.metadata; /** * Error while retrieving repository metadata from the repository. * */ @Deprecated public class MetadataRetrievalException extends Exception { private ArtifactMetadata artifact; public MetadataRetrievalException(String message) { this(message, null, null); } public MetadataRetrievalException(Throwable cause) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/OverConstrainedVersionException.java
import org.apache.maven.artifact.resolver.ArtifactResolutionException; /** * Occurs when ranges exclude each other and no valid value remains. * */ public class OverConstrainedVersionException extends ArtifactResolutionException { public OverConstrainedVersionException(String msg, Artifact artifact) { super(msg, artifact); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.5K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/CleanAcceptedApiChanges.groovy
*/ @DisableCachingByDefault(because = "Not worth caching") abstract class CleanAcceptedApiChanges extends DefaultTask { @PathSensitive(PathSensitivity.ABSOLUTE) @InputDirectory abstract DirectoryProperty getJsonFileDirectory() @TaskAction void clean() {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Jun 05 08:27:29 UTC 2024 - 1.6K bytes - Viewed (0) -
src/test/java/org/codelibs/opensearch/extension/analysis/ProlongedSoundMarkCharFilterFactory.java
import org.opensearch.env.Environment; import org.opensearch.index.IndexSettings; import org.opensearch.index.analysis.AbstractCharFilterFactory; public class ProlongedSoundMarkCharFilterFactory extends AbstractCharFilterFactory { private char replacement; public ProlongedSoundMarkCharFilterFactory(final IndexSettings indexSettings, final Environment env, final String name, final Settings settings) {
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 1.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/FilenameExtractor.java
import org.codelibs.fess.crawler.exception.CrawlerSystemException; import org.codelibs.fess.crawler.exception.ExtractException; /** * @author shinsuke * */ public class FilenameExtractor extends AbstractExtractor { @Override public ExtractData getText(final InputStream in, final Map<String, String> params) { if (in == null) { throw new CrawlerSystemException("The inputstream is null.");
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 1.5K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/ListenableFuture.java
*/ @DoNotMock("Use the methods in Futures (like immediateFuture) or SettableFuture") @ElementTypesAreNonnullByDefault public interface ListenableFuture<V extends @Nullable Object> extends Future<V> { /** * Registers a listener to be {@linkplain Executor#execute(Runnable) run} on the given executor. * The listener will run when the {@code Future}'s computation is {@linkplain Future#isDone()
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Jun 26 21:13:41 UTC 2023 - 8K bytes - Viewed (0)