- Sort Score
- Result 10 results
- Languages All
Results 751 - 760 of 1,637 for params2 (0.08 sec)
-
android/guava/src/com/google/common/collect/Multiset.java
* current count is not {@code oldCount}, no change is made. * * @param element the element to conditionally set the count of; may be null only if explicitly * allowed by the implementation * @param oldCount the expected present count of the element in this multiset * @param newCount the desired count of the element in this multiset
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Jun 17 14:40:53 UTC 2023 - 19.7K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/plugin/ReportConfigurationExpander.java
* * @param model The model whose report plugin configuration should be expanded, must not be <code>null</code>. * @param request The model building request that holds further settings, must not be {@code null}. * @param problems The container used to collect problems that were encountered, must not be {@code null}. */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.8K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/Callables.java
} /** * Wraps the given callable such that for the duration of {@link Callable#call} the thread that is * running will have the given name. * * @param callable The callable to wrap * @param nameSupplier The supplier of thread names, {@link Supplier#get get} will be called once * for each invocation of the wrapped callable. */ @J2ktIncompatible @GwtIncompatible // threads
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri May 12 18:32:03 UTC 2023 - 4.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/dfs/DfsReferralDataImpl.java
&& Objects.equals(getPath(), other.getPath()) && Objects.equals(getPathConsumed(), other.getPathConsumed()); } /** * @param ref * @param reqPath * @param expire * @param consumed * @return referral data */ public static DfsReferralDataImpl fromReferral ( Referral ref, String reqPath, long expire, int consumed ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Nov 13 15:13:49 UTC 2021 - 11K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/exentity/CrawlingConfig.java
final String proxyPort = fessConfig.getHttpProxyPort(); if (StringUtil.isNotBlank(proxyHost) && StringUtil.isNotBlank(proxyPort)) { paramMap.put(Param.Client.PROXY_HOST, proxyHost); paramMap.put(Param.Client.PROXY_PORT, proxyPort); final String proxyUsername = fessConfig.getHttpProxyUsername(); final String proxyPassword = fessConfig.getHttpProxyPassword();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 13:01:38 UTC 2024 - 5.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/ConstructorUtil.java
* @author higa */ public abstract class ConstructorUtil { /** * 指定された初期化パラメータで、コンストラクタの宣言クラスの新しいインスタンスを作成および初期化します。 * * @param <T> * コンストラクタの宣言クラス * @param constructor * コンストラクタ。{@literal null}であってはいけません * @param args * コンストラクタ呼び出しに引数として渡すオブジェクトの配列 * @return コンストラクタを呼び出すことで作成される新規オブジェクト * @throws InstantiationRuntimeException
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 3.6K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/XmlFactory.java
import org.apache.maven.api.Service; import org.apache.maven.api.annotations.Experimental; import org.apache.maven.api.annotations.Nonnull; /** * Generic interface to read/write objects to/from XML. * * @param <T> the object type to read/write * @since 4.0.0 */ @Experimental public interface XmlFactory<T> extends Service { @Nonnull default T read(@Nonnull Path path) throws XmlReaderException {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Nov 17 15:52:15 UTC 2023 - 3.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComRename.java
public class SmbComRename extends ServerMessageBlock { private int searchAttributes; private String oldFileName; private String newFileName; /** * * @param config * @param oldFileName * @param newFileName */ public SmbComRename ( Configuration config, String oldFileName, String newFileName ) { super(config, SMB_COM_RENAME); this.oldFileName = oldFileName;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/SQLRuntimeException.java
* {@link SQLRuntimeException}を作成します。 * * @param cause * 原因となった例外 */ public SQLRuntimeException(final SQLException cause) { super("ECL0072", asArray(getSql(cause), getRealMessage(cause), Integer.toString(cause.getErrorCode()), cause.getSQLState()), cause); } /** * <code>SQL</code>を返します。 * * @param cause * 原因となった例外 * @return <code>SQL</code>
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/ConstructorNotFoundRuntimeException.java
private final Object[] methodArgs; private final Class<?>[] paramTypes; /** * {@link ConstructorNotFoundRuntimeException}を作成します。 * * @param targetClass * ターゲットクラス * @param methodArgs * 引数の並び */ public ConstructorNotFoundRuntimeException(final Class<?> targetClass, final Object[] methodArgs) {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 3.7K bytes - Viewed (0)