- Sort Score
- Result 10 results
- Languages All
Results 1311 - 1320 of 1,638 for params2 (0.06 sec)
-
src/main/java/org/codelibs/core/net/MimeTypeUtil.java
import org.codelibs.core.io.ResourceUtil; /** * Mimeタイプ用のユーティリティクラスです。 * * @author shot */ public abstract class MimeTypeUtil { /** * コンテントタイプを予想します。 * * @param path * パス。{@literal null}や空文字列であってはいけません * @return コンテントタイプ */ public static String guessContentType(final String path) { assertArgumentNotEmpty("path", path);
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/allcommon/EsPagingResultBean.java
import org.apache.lucene.search.TotalHits; import org.dbflute.cbean.result.PagingResultBean; import org.opensearch.action.search.SearchRequestBuilder; import org.opensearch.search.aggregations.Aggregations; /** * @param <ENTITY> The type of entity. * @author ESFlute (using FreeGen) */ public class EsPagingResultBean<ENTITY> extends PagingResultBean<ENTITY> { private static final long serialVersionUID = 1L;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.5K bytes - Viewed (0) -
android/guava/src/com/google/common/io/CountingOutputStream.java
@ElementTypesAreNonnullByDefault public final class CountingOutputStream extends FilterOutputStream { private long count; /** * Wraps another output stream, counting the number of bytes written. * * @param out the output stream to be wrapped */ public CountingOutputStream(OutputStream out) { super(checkNotNull(out)); } /** Returns the number of bytes written. */ public long getCount() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Feb 28 20:13:02 UTC 2023 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/converter/DateConverter.java
* * @author higa */ public class DateConverter implements Converter { /** * 日付のパターンです。 */ protected String pattern; /** * インスタンスを構築します。 * * @param pattern * 日付のパターン */ public DateConverter(final String pattern) { assertArgumentNotEmpty("pattern", pattern); this.pattern = pattern; } @Override
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/converter/TimeConverter.java
* * @author higa */ public class TimeConverter implements Converter { /** * 時間のパターンです。 */ protected String pattern; /** * インスタンスを構築します。 * * @param pattern * 時間のパターン */ public TimeConverter(final String pattern) { assertArgumentNotEmpty("pattern", pattern); this.pattern = pattern; } @Override
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.1K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/manager/WagonManager.java
/** * this method is only here for backward compat (project-info-reports:dependencies) * the default implementation will return an empty AuthenticationInfo * * @param id an id * @return corresponding authentication info */ AuthenticationInfo getAuthenticationInfo(String id); ProxyInfo getProxy(String protocol);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.1K bytes - Viewed (0) -
android/guava/src/com/google/common/io/LineProcessor.java
*/ @J2ktIncompatible @GwtIncompatible @ElementTypesAreNonnullByDefault public interface LineProcessor<T extends @Nullable Object> { /** * This method will be called once for each line. * * @param line the line read from the input, without delimiter * @return true to continue processing, false to stop */ @CanIgnoreReturnValue // some uses know that their processor never returns false
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed May 17 14:35:11 UTC 2023 - 1.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/io/Smb2FlushResponse.java
import jcifs.internal.util.SMBUtil; /** * @author mbechler * */ public class Smb2FlushResponse extends ServerMessageBlock2Response { /** * @param config */ public Smb2FlushResponse ( Configuration config ) { super(config); } /** * {@inheritDoc} *
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/session/Smb2LogoffResponse.java
import jcifs.internal.util.SMBUtil; /** * @author mbechler * */ public class Smb2LogoffResponse extends ServerMessageBlock2Response { /** * @param config */ public Smb2LogoffResponse ( Configuration config ) { super(config); } /** * {@inheritDoc} *
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/TypeRegistry.java
/** * Obtain the {@link Type} from the specified {@code id}. * If no type is known for {@code id}, the registry will * create a custom {@code Type} for it. * * @param id the id of the type to retrieve * @return the type */ @Nonnull @Override default Type require(@Nonnull String id) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Apr 12 10:50:18 UTC 2024 - 1.6K bytes - Viewed (0)