- Sort Score
- Result 10 results
- Languages All
Results 271 - 280 of 3,171 for final (0.02 sec)
-
mockwebserver/api/mockwebserver3.api
public final fun getCode ()I public final fun getDoNotReadRequestBody ()Z public final fun getFailHandshake ()Z public final fun getHeaders ()Lokhttp3/Headers; public final fun getHeadersDelayNanos ()J public final fun getInTunnel ()Z public final fun getInformationalResponses ()Ljava/util/List; public final fun getMessage ()Ljava/lang/String; public final fun getOnRequestBody ()Lmockwebserver3/SocketEffect;
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Jun 20 11:46:46 UTC 2025 - 11.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/synonym/SynonymCreator.java
* @return A new {@link SynonymFile} associated with the dictionary manager. */ @Override protected DictionaryFile<? extends DictionaryItem> newDictionaryFile(final String id, final String path, final Date timestamp) { return new SynonymFile(id, path, timestamp).manager(dictionaryManager); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/Constants.java
/** Boolean constant representing true value. */ public static final Boolean T = true; /** Boolean constant representing false value. */ public static final Boolean F = false; /** Constant for score field identifier. */ public static final String SCORE = "score"; /** Constant for searcher identifier. */ public static final String SEARCHER = "searcher";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 34.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/plugin/ApiAdminPluginAction.java
* @return JSON response indicating success or failure */ // POST /api/admin/plugin @Execute public JsonResponse<ApiResult> post$index(final InstallBody body) { validateApi(body, messages -> {}); final Artifact artifact = ComponentUtil.getPluginHelper().getArtifact(body.name, body.version); if (artifact == null) { return asJson(
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/allcommon/EsAbstractBehavior.java
} @Override protected int delegateUpdate(final Entity entity, final UpdateOption<? extends ConditionBean> option) { final EsAbstractEntity esEntity = (EsAbstractEntity) entity; final IndexRequestBuilder builder = createUpdateRequest(esEntity); final IndexResponse response = builder.execute().actionGet(indexTimeout); final long seqNo = response.getSeqNo();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 21 04:02:44 UTC 2025 - 26.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2FindFirst2.java
private final int searchAttributes; private final int flags; private final int informationLevel; private final int searchStorageType = 0; private final String wildcard; // information levels static final int SMB_INFO_STANDARD = 1; static final int SMB_INFO_QUERY_EA_SIZE = 2; static final int SMB_INFO_QUERY_EAS_FROM_LIST = 3; static final int SMB_FIND_FILE_DIRECTORY_INFO = 0x101;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/allcommon/EsAbstractBehavior.java
} @Override protected int delegateUpdate(final Entity entity, final UpdateOption<? extends ConditionBean> option) { final EsAbstractEntity esEntity = (EsAbstractEntity) entity; final IndexRequestBuilder builder = createUpdateRequest(esEntity); final IndexResponse response = builder.execute().actionGet(indexTimeout); final long seqNo = response.getSeqNo();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 21 04:02:44 UTC 2025 - 26.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/DataConfig.java
} return credentials; } private AuthScope getAuthScope(final String webAuthName, final String scheme, final Map<String, String> paramMap) { final String hostname = paramMap.get(CRAWLER_WEB_AUTH + "." + webAuthName + ".host"); final String port = paramMap.get(CRAWLER_WEB_AUTH + "." + webAuthName + ".port"); final String realm = paramMap.get(CRAWLER_WEB_AUTH + "." + webAuthName + ".realm");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.6K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/ArtifactDoesNotExistException.java
/** * ArtifactDoesNotExistException */ @Deprecated public class ArtifactDoesNotExistException extends Exception { public ArtifactDoesNotExistException(final String message) { super(message); } public ArtifactDoesNotExistException(final String message, final Throwable cause) { super(message, cause); }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.2K bytes - Viewed (0) -
src/test/java/org/codelibs/core/beans/util/BeanUtilTest.java
final BeanMap src = new BeanMap(); src.put("aaa", "aaa"); final MyBean dest = BeanUtil.copyMapToNewBean(src, MyBean.class); assertThat(dest.aaa, is("aaa")); } /** * @throws Exception */ @Test public void testCopy_mapToNewMap() throws Exception { final BeanMap src = new BeanMap(); src.put("aaa", "aaa");
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Fri Jun 20 13:40:57 UTC 2025 - 34.5K bytes - Viewed (0)