- Sort Score
- Result 10 results
- Languages All
Results 3661 - 3670 of 7,602 for _class (0.06 sec)
-
src/main/java/org/codelibs/fess/es/config/cbean/bs/BsFailureUrlCB.java
import org.dbflute.cbean.ConditionQuery; import org.opensearch.action.search.SearchRequestBuilder; import org.opensearch.index.query.QueryBuilder; /** * @author ESFlute (using FreeGen) */ public class BsFailureUrlCB extends EsAbstractConditionBean { // =================================================================================== // Attribute
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 6.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/cbean/bs/BsLabelTypeCB.java
import org.dbflute.cbean.ConditionQuery; import org.opensearch.action.search.SearchRequestBuilder; import org.opensearch.index.query.QueryBuilder; /** * @author ESFlute (using FreeGen) */ public class BsLabelTypeCB extends EsAbstractConditionBean { // =================================================================================== // Attribute
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 7.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/cbean/bs/BsThumbnailQueueCB.java
import org.dbflute.cbean.ConditionQuery; import org.opensearch.action.search.SearchRequestBuilder; import org.opensearch.index.query.QueryBuilder; /** * @author ESFlute (using FreeGen) */ public class BsThumbnailQueueCB extends EsAbstractConditionBean { // ===================================================================================
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 6.9K bytes - Viewed (0) -
docs/ja/docs/tutorial/encoder.md
## `jsonable_encoder`の使用 JSON互換のデータのみを受信するデータベース`fase_db`があるとしましょう。 例えば、`datetime`オブジェクトはJSONと互換性がないので、このデーターベースには受け取られません。 そのため、`datetime`オブジェクトは<a href="https://en.wikipedia.org/wiki/ISO_8601" class="external-link" target="_blank">ISO形式</a>のデータを含む`str`に変換されなければなりません。 同様に、このデータベースはPydanticモデル(属性を持つオブジェクト)を受け取らず、`dict`だけを受け取ります。 そのために`jsonable_encoder`を使用することができます。 Pydanticモデルのようなオブジェクトを受け取り、JSON互換版を返します:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 1.9K bytes - Viewed (0) -
docs/zh/docs/how-to/configure-swagger-ui.md
# 配置 Swagger UI 你可以配置一些额外的 <a href="https://swagger.io/docs/open-source-tools/swagger-ui/usage/configuration/" class="external-link" target="_blank">Swagger UI 参数</a>. 如果需要配置它们,可以在创建 `FastAPI()` 应用对象时或调用 `get_swagger_ui_html()` 函数时传递 `swagger_ui_parameters` 参数。 `swagger_ui_parameters` 接受一个直接传递给 Swagger UI的字典,包含配置参数键值对。 FastAPI会将这些配置转换为 **JSON**,使其与 JavaScript 兼容,因为这是 Swagger UI 需要的。 ## 不使用语法高亮 比如,你可以禁用 Swagger UI 中的语法高亮。
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 2.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/RobotsTxt.java
import java.util.ArrayList; import java.util.LinkedHashMap; import java.util.List; import java.util.Map; import java.util.regex.Pattern; import org.codelibs.core.lang.StringUtil; public class RobotsTxt { private static final String ALL_BOTS = "*"; protected final Map<Pattern, Directive> directiveMap = new LinkedHashMap<>(); private final List<String> sitemapList = new ArrayList<>();
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 4.8K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/AbstractMojo.java
* under the License. */ package org.apache.maven.plugin; import java.util.Map; import org.apache.maven.plugin.logging.Log; import org.apache.maven.plugin.logging.SystemStreamLog; /** * Abstract class to provide most of the infrastructure required to implement a <code>Mojo</code> except for * the execute method.<br> * The implementation should have a <code>Mojo</code> annotation with the name of the goal: * <pre>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7.4K bytes - Viewed (0) -
fastapi/security/api_key.py
from starlette.exceptions import HTTPException from starlette.requests import Request from starlette.status import HTTP_403_FORBIDDEN from typing_extensions import Annotated, Doc class APIKeyBase(SecurityBase): pass class APIKeyQuery(APIKeyBase): """ API key authentication using a query parameter. This defines the name of the query parameter that should be provided in the request
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Apr 23 22:29:18 UTC 2024 - 9.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/BytesTest.java
.isEqualTo(new byte[] {(byte) 1, (byte) 0, (byte) 0}); } public void testEnsureCapacity_fail() { assertThrows(IllegalArgumentException.class, () -> Bytes.ensureCapacity(ARRAY1, -1, 1)); assertThrows(IllegalArgumentException.class, () -> Bytes.ensureCapacity(ARRAY1, 1, -1)); } public void testToArray() { // need explicit type parameter to avoid javac warning!?
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 02:56:12 UTC 2024 - 17.3K bytes - Viewed (0) -
docs_src/python_types/tutorial010.py
class Person: def __init__(self, name: str): self.name = name def get_person_name(one_person: Person):
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Jun 12 21:44:23 UTC 2020 - 144 bytes - Viewed (0)