- Sort Score
- Result 10 results
- Languages All
Results 221 - 230 of 1,773 for param2 (0.06 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/impl/MimeTypeHelperImpl.java
final Map<String, String> params = new HashMap<>(); params.put(ExtractData.RESOURCE_NAME_KEY, filename); return getContentType(is, params); } @Override public String getContentType(final InputStream is, final Map<String, String> params) { final String filename = params.get(ExtractData.RESOURCE_NAME_KEY);
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 4.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/Maps.java
* </pre> * * @author koichik * @param <K> * {@literal Map}のキーの型 * @param <V> * {@literal Map}の値の型 */ public class Maps<K, V> { /** 作成対象の<code>Map</code> */ protected Map<K, V> map; /** * 指定されたキーと値を持つ{@link Map}を構築するための{@literal Maps}を返します。 * * @param <KEY> * <code>Map</code>のキーの型 * @param <VALUE> * <code>Map</code>の値ーの型
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 8K bytes - Viewed (0) -
src/main/java/jcifs/NameServiceClient.java
/** * Retrieve all addresses of a host by it's name. * * @param host * hostname to lookup all addresses for * @param type * the hexcode of the name * @param scope * the scope of the name * @param svr * server to query * * @return the resolved addresses
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 7.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/CommonServerMessageBlock.java
/** * Decode message data from the given byte array * * @param buffer * @param bufferIndex * @return message length * @throws SMBProtocolDecodingException */ int decode ( byte[] buffer, int bufferIndex ) throws SMBProtocolDecodingException; /** * @param dst * @param dstIndex * @return message length */ int encode ( byte[] dst, int dstIndex );
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/script/groovy/GroovyEngineTest.java
public void test_evaluate() { final Map<String, Object> params = new HashMap<>(); assertNull(groovyEngine.evaluate("", params)); assertEquals("", groovyEngine.evaluate("return ''", params)); assertEquals(1, groovyEngine.evaluate("return 1", params)); params.put("test", "123"); assertEquals("123", groovyEngine.evaluate("return test", params)); } public void test_getName() {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 17 12:10:08 UTC 2024 - 1.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/Lookup.java
* * @param type The component type. * @return The component. * @param <T> The component type. * @throws LookupException if no such component or there is some provisioning related issue. */ @Nonnull <T> T lookup(Class<T> type); /** * Performs a lookup for given typed component. * * @param type The component type.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Jan 10 12:55:54 UTC 2024 - 3.3K bytes - Viewed (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/merge/MavenSettingsMerger.java
/** * @deprecated since 4.0.0, use {@link org.apache.maven.settings.v4.SettingsMerger} instead */ @Deprecated(since = "4.0.0") public class MavenSettingsMerger { /** * @param dominant * @param recessive * @param recessiveSourceLevel */ public void merge(Settings dominant, Settings recessive, String recessiveSourceLevel) { if (dominant == null || recessive == null) { return;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComWriteAndX.java
/** * * @param config */ public SmbComWriteAndX ( Configuration config ) { super(config, SMB_COM_WRITE_ANDX, null); } /** * * @param config * @param fid * @param offset * @param remaining * @param b * @param off * @param len * @param andx */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.1K bytes - Viewed (0) -
src/main/java/jcifs/SmbRandomAccess.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.5K bytes - Viewed (0) -
src/main/java/jcifs/DfsResolver.java
*/ SmbTransport getDc ( CIFSContext tf, String domain ) throws CIFSException; /** * Resolve the location of a DFS path * * @param domain * @param root * @param path * @param tf * @return the final referral for the given DFS path * @throws CIFSException * @throws jcifs.smb.SmbAuthException */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2K bytes - Viewed (0)