- Sort Score
- Result 10 results
- Languages All
Results 211 - 220 of 414 for concern (0.39 sec)
-
docs/de/docs/tutorial/security/index.md
Heutzutage ist es nicht sehr populär und wird kaum verwendet. OAuth2 spezifiziert nicht, wie die Kommunikation verschlüsselt werden soll, sondern erwartet, dass Ihre Anwendung mit HTTPS bereitgestellt wird. /// tip | Tipp Im Abschnitt über **Deployment** erfahren Sie, wie Sie HTTPS mithilfe von Traefik und Let's Encrypt kostenlos einrichten. ///
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 5.1K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbExceptionTest.java
assertDoesNotThrow(() -> { SmbException exception = new SmbException((String) null); assertNotNull(exception); }); } @Test @DisplayName("Should convert to string properly") void testToString() { // Given String message = "Test error message"; SmbException exception = new SmbException(message); // When
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.9K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/publicsuffix/PublicSuffixDatabase.kt
* @param domain A canonicalized domain. An International Domain Name (IDN) should be punycode * encoded. */ fun getEffectiveTldPlusOne(domain: String): String? { // We use UTF-8 in the list so we need to convert to Unicode. val unicodeDomain = IDN.toUnicode(domain) val domainLabels = splitDomain(unicodeDomain) val rule = findMatchingRule(domainLabels)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 28 07:33:49 UTC 2025 - 8.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/KeyMatchHelper.java
return true; }); } return Collections.emptyList(); } /** * Converts a string to lowercase. * * @param term The string to convert. * @return The lowercase string. */ private String toLowerCase(final String term) { return term != null ? term.toLowerCase(Locale.ROOT) : term; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableList.java
* ImmutableSortedSet.copyOf(elements)}; if you want a {@code List} you can use its {@code * asList()} view. * * <p><b>Java 8+ users:</b> If you want to convert a {@link java.util.stream.Stream} to a sorted * {@code ImmutableList}, use {@code stream.sorted().collect(toImmutableList())}. * * @throws NullPointerException if any element in the input is null * @since 21.0
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 27.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/StringUtil.java
* Appends the hexadecimal string representation of a number to the given StringBuilder. * * @param buf * the StringBuilder to append to * @param i * the number to convert */ public static void appendHex(final StringBuilder buf, final byte i) { buf.append(Character.forDigit((i & 0xf0) >> 4, 16)); buf.append(Character.forDigit(i & 0x0f, 16)); }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 21.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/fileconfig/ApiAdminFileconfigAction.java
* Creates an edit body from a file configuration entity for API responses. * Processes permissions and virtual hosts for proper display formatting. * * @param entity the file configuration entity to convert * @return edit body containing the entity data */ protected EditBody createEditBody(final FileConfig entity) { final EditBody body = new EditBody(); copyBeanToBean(entity, body, copyOp -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.2K bytes - Viewed (0) -
docs/en/docs/tutorial/first-steps.md
...the path would be: ``` /items/foo ``` /// info A "path" is also commonly called an "endpoint" or a "route". /// While building an API, the "path" is the main way to separate "concerns" and "resources". #### Operation { #operation } "Operation" here refers to one of the HTTP "methods". One of: * `POST` * `GET` * `PUT` * `DELETE` ...and the more exotic ones:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 11K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/stemmeroverride/ApiAdminDictStemmeroverrideAction.java
return null; }); } /** * Creates an EditBody from a StemmerOverrideItem entity for API responses. * * @param entity the StemmerOverrideItem entity to convert * @param dictId the dictionary ID * @return the converted EditBody object */ protected EditBody createEditBody(final StemmerOverrideItem entity, final String dictId) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerAction.java
} /** * Creates an EditBody from a ScheduledJob entity. * * @param entity the scheduled job entity to convert * @return the converted EditBody */ protected EditBody createEditBody(final ScheduledJob entity) { final EditBody body = new EditBody();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10K bytes - Viewed (0)