- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 199 for URLs (0.02 sec)
-
src/main/java/org/codelibs/fess/es/config/bsbhv/BsWebConfigBhv.java
result.setUpdatedBy(DfTypeUtil.toString(source.get("updatedBy"))); result.setUpdatedTime(DfTypeUtil.toLong(source.get("updatedTime"))); result.setUrls(DfTypeUtil.toString(source.get("urls"))); result.setUserAgent(DfTypeUtil.toString(source.get("userAgent"))); result.setVirtualHosts(toStringArray(source.get("virtualHosts"))); return updateEntity(source, result);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 10.8K bytes - Viewed (0) -
docs/changelogs/changelog_2x.md
* **The DNS service is now pluggable.** In some situations this may be useful to manually prioritize specific IP addresses. * Fix: Don't throw when converting an `HttpUrl` to a `java.net.URI`. Previously URLs with special characters like `|` and `[` would break when subjected to URI’s overly-strict validation. * Fix: Don't re-encode `+` as `%20` in encoded URL query strings. OkHttp
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 26.6K bytes - Viewed (0) -
docs/em/docs/advanced/openapi-callbacks.md
```Python hl_lines="9-13 36-53" {!../../docs_src/openapi_callbacks/tutorial001.py!} ``` /// tip `callback_url` 🔢 🔢 ⚙️ Pydantic <a href="https://docs.pydantic.dev/latest/concepts/types/#urls" class="external-link" target="_blank">📛</a> 🆎. /// 🕴 🆕 👜 `callbacks=messages_callback_router.routes` ❌ *➡ 🛠️ 👨🎨*. 👥 🔜 👀 ⚫️❔ 👈 ⏭. ## 🔬 ⏲ ☑ ⏲ 📟 🔜 🪀 🙇 🔛 👆 👍 🛠️ 📱.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 6.6K bytes - Viewed (0) -
src/main/resources/fess_message_de.properties
success.upload_design_file=Hochgeladen ({0}). success.update_design_jsp_file=Aktualisiert ({0}). success.create_crawling_config_at_wizard=Crawling-Config erstellt ({0}). success.failure_url_delete_all=Fehlgeschlagene URLs gelöscht. success.delete_file=Datei {0} gelöscht. success.job_started=Aufgabe gestartet ({0}). success.job_stopped=Aufgabe beendet ({0}). success.upload_synonym_file=Synonym-Datei hochgeladen.
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Tue Oct 29 15:01:03 UTC 2019 - 11.8K bytes - Viewed (0) -
src/main/resources/fess_message_ru.properties
success.upload_design_file=Uploaded {0}. success.update_design_jsp_file=Updated {0}. success.create_crawling_config_at_wizard=Created a crawling config ({0}). success.failure_url_delete_all=Deleted failure urls. success.delete_file=Deleted {0} file. success.job_started=Started job {0}. success.job_stopped=Stopped job {0}. success.upload_synonym_file=Uploaded Synonym file. success.upload_kuromoji_file=Uploaded Kuromoji file.
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri May 20 12:12:28 UTC 2022 - 10.2K bytes - Viewed (0) -
docs/features/interceptors.md
Content-Type: text/plain Content-Length: 1759 Connection: keep-alive ``` We can see that we were redirected because `response.request().url()` is different from `request.url()`. The two log statements log two different URLs. ### Network Interceptors Registering a network interceptor is quite similar. Call `addNetworkInterceptor()` instead of `addInterceptor()`: ```java OkHttpClient client = new OkHttpClient.Builder()
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 8.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/Config.java
} catch( IOException ioe ) { } } } /** * This static method registers the SMB URL protocol handler which is * required to use SMB URLs with the <tt>java.net.URL</tt> class. If this * method is not called before attempting to create an SMB URL with the * URL class the following exception will occur: * <blockquote><pre>
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 11.3K bytes - Viewed (0) -
docs/features/https.md
* `COMPATIBLE_TLS` is a secure configuration that connects to secure–but not current–HTTPS servers. * `CLEARTEXT` is an insecure configuration that is used for `http://` URLs. These loosely follow the model set in [Google Cloud Policies](https://cloud.google.com/load-balancing/docs/ssl-policies-concepts). We [track changes](../security/tls_configuration_history.md) to this policy.
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Dec 24 00:16:30 UTC 2022 - 10.5K bytes - Viewed (0) -
docs/de/docs/advanced/settings.md
Die meisten dieser Einstellungen sind variabel (können sich ändern), wie z. B. Datenbank-URLs. Und vieles könnten schützenswerte, geheime Daten sein. Aus diesem Grund werden diese üblicherweise in Umgebungsvariablen bereitgestellt, die von der Anwendung gelesen werden. ## Umgebungsvariablen /// tip | "Tipp"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 17.7K bytes - Viewed (0) -
docs/zh/docs/advanced/openapi-callbacks.md
这部分代码很常规,您对绝大多数代码应该都比较熟悉了: ```Python hl_lines="10-14 37-54" {!../../docs_src/openapi_callbacks/tutorial001.py!} ``` /// tip | "提示" `callback_url` 查询参数使用 Pydantic 的 <a href="https://pydantic-docs.helpmanual.io/usage/types/#urls" class="external-link" target="_blank">URL</a> 类型。 /// 此处唯一比较新的内容是*路径操作装饰器*中的 `callbacks=invoices_callback_router.routes` 参数,下文介绍。 ## 存档回调 实际的回调代码高度依赖于您自己的 API 应用。 并且可能每个应用都各不相同。
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 6.6K bytes - Viewed (0)