- Sort Score
- Result 10 results
- Languages All
Results 751 - 760 of 7,650 for aclass (0.09 sec)
-
docs/en/docs/tutorial/body-fields.md
Actually, `Query`, `Path` and others you'll see next create objects of subclasses of a common `Param` class, which is itself a subclass of Pydantic's `FieldInfo` class. And Pydantic's `Field` returns an instance of `FieldInfo` as well. `Body` also returns objects of a subclass of `FieldInfo` directly. And there are others you will see later that are subclasses of the `Body` class.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 27 17:01:18 UTC 2024 - 2.2K bytes - Viewed (0) -
mockwebserver/src/main/kotlin/mockwebserver3/MockWebServer.kt
receivedByteCount += byteCount } @Throws(IOException::class) override fun flush() { } override fun timeout(): Timeout = Timeout.NONE @Throws(IOException::class) override fun close() { } } /** Processes HTTP requests layered over HTTP/2. */ private inner class Http2SocketHandler constructor( private val socket: Socket,
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Mar 31 17:16:15 UTC 2024 - 37.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsbhv/BsDataConfigBhv.java
} @Override protected Class<? extends DataConfig> typeOfSelectedEntity() { return DataConfig.class; } @Override protected Class<DataConfig> typeOfHandlingEntity() { return DataConfig.class; } @Override protected Class<DataConfigCB> typeOfHandlingConditionBean() { return DataConfigCB.class; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 10.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsbhv/BsLabelTypeBhv.java
} @Override protected Class<? extends LabelType> typeOfSelectedEntity() { return LabelType.class; } @Override protected Class<LabelType> typeOfHandlingEntity() { return LabelType.class; } @Override protected Class<LabelTypeCB> typeOfHandlingConditionBean() { return LabelTypeCB.class; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.9K bytes - Viewed (0) -
docs/de/docs/deployment/docker.md
* <a href="https://hub.docker.com/_/postgres" class="external-link" target="_blank">PostgreSQL</a> * <a href="https://hub.docker.com/_/mysql" class="external-link" target="_blank">MySQL</a> * <a href="https://hub.docker.com/_/mongo" class="external-link" target="_blank">MongoDB</a> * <a href="https://hub.docker.com/_/redis" class="external-link" target="_blank">Redis</a>, usw.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Aug 12 21:47:53 UTC 2024 - 39K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/sso/SsoAction.java
import org.lastaflute.web.response.ActionResponse; public class SsoAction extends FessLoginAction { // =================================================================================== // Constant // private static final Logger logger = LogManager.getLogger(SsoAction.class);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 5.1K bytes - Viewed (0) -
src/main/resources/fess_sso++.xml
<components> <component name="aadAuthenticator" class="org.codelibs.fess.sso.aad.AzureAdAuthenticator"> </component> <component name="oicAuthenticator" class="org.codelibs.fess.sso.oic.OpenIdConnectAuthenticator"> </component> <component name="samlAuthenticator" class="org.codelibs.fess.sso.saml.SamlAuthenticator"> </component> <component name="spnegoAuthenticator" class="org.codelibs.fess.sso.spnego.SpnegoAuthenticator"> </component>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Jul 04 00:28:21 UTC 2020 - 604 bytes - Viewed (0) -
src/main/resources/fess_label_en.properties
labels.search=Search labels.similar_doc_result_status=Similar results are displayed. labels.search_result_status=Results <b>{2}</b><span class="hidden-phone"> -</span> <b>{3}</b> of <b>{1}</b> for <b>{0}</b> labels.search_result_status_over=Results <b>{2}</b><span class="hidden-phone"> -</span> <b>{3}</b> of about <b>{1}</b> for <b>{0}</b> labels.search_result_time=({0} sec) labels.prev_page=Prev labels.next_page=Next
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Mar 22 11:58:34 UTC 2024 - 40.7K bytes - Viewed (0) -
docs/en/docs/contributing.md
There is a script that you can run that will format and clean all your code: <div class="termy"> ```console $ bash scripts/format.sh ``` </div> It will also auto-sort all your imports. ## Tests There is a script that you can run locally to test all the code and generate coverage reports in HTML: <div class="termy"> ```console $ bash scripts/test-cov-html.sh ``` </div>
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Aug 25 02:44:06 UTC 2024 - 12.7K bytes - Viewed (0) -
docs/de/docs/how-to/separate-openapi-schemas.md
### Eingabemodell in der Dokumentation Sie können überprüfen, dass das Feld `description` in der Dokumentation kein **rotes Sternchen** enthält, es ist nicht als erforderlich markiert: <div class="screenshot"> <img src="/img/tutorial/separate-openapi-schemas/image01.png"> </div> ### Modell für die Ausgabe Wenn Sie jedoch dasselbe Modell als Ausgabe verwenden, wie hier: //// tab | Python 3.10+
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 7K bytes - Viewed (0)