- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 144 for necessary (0.24 sec)
-
docs/features/connections.md
4. If it's a new route, it connects by building either a direct socket connection, a TLS tunnel (for HTTPS over an HTTP proxy), or a direct TLS connection. It does TLS handshakes as necessary. This step may be retried for tunnel challenges and TLS handshake failures. 5. It sends the HTTP request and reads the response.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Feb 21 03:33:59 UTC 2022 - 5.4K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/-CacheControlCommon.kt
val directive = value.substring(tokenStart, pos).trim() val parameter: String? if (pos == value.length || value[pos] == ',' || value[pos] == ';') { pos++ // Consume ',' or ';' (if necessary). parameter = null } else { pos++ // Consume '='. pos = value.indexOfNonWhitespace(pos) if (pos < value.length && value[pos] == '\"') { // Quoted string.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 7.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/keymatch/EditBody.java
import org.codelibs.fess.app.web.admin.keymatch.EditForm; /** * Request body class for key match edit operations in the admin REST API. * This class extends EditForm to inherit the necessary form validation and binding capabilities * for key match management operations. */ public class EditBody extends EditForm { /** * Default constructor. */ public EditBody() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/pathmap/EditBody.java
import org.codelibs.fess.app.web.admin.pathmap.EditForm; /** * Request body class for path mapping edit operations in the admin REST API. * This class extends EditForm to inherit the necessary form validation and binding capabilities * for path mapping management operations. */ public class EditBody extends EditForm { /** * Default constructor. */ public EditBody() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/badword/EditBody.java
import org.codelibs.fess.app.web.admin.badword.EditForm; /** * Request body class for bad word edit operations in the admin REST API. * This class extends EditForm to inherit the necessary form validation and binding capabilities * for bad word management operations. */ public class EditBody extends EditForm { /** * Default constructor. */ public EditBody() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/boostdoc/EditBody.java
import org.codelibs.fess.app.web.admin.boostdoc.EditForm; /** * Request body class for boost document edit operations in the admin REST API. * This class extends EditForm to inherit the necessary form validation and binding capabilities * for boost document management operations. */ public class EditBody extends EditForm { /** * Default constructor. */ public EditBody() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/EditForm.java
import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; /** * Form class for editing protected words dictionary entries in the admin interface. * This form extends CreateForm to include fields necessary for updating existing protected words entries. * Protected words are terms that should not be stemmed or modified during text analysis. * */ public class EditForm extends CreateForm { /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/elevateword/EditForm.java
import jakarta.validation.constraints.Size; /** * Form class for editing elevate word configurations in the admin interface. * This form extends CreateForm to include fields necessary for updating existing elevate word entries, * including tracking information for optimistic locking and audit trails. * Elevate words are used to boost specific documents in search results when certain keywords are matched. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/reqheader/EditForm.java
import jakarta.validation.constraints.Size; /** * Form class for editing request header configurations in the admin interface. * This form extends CreateForm to include fields necessary for updating existing request header entries, * including tracking information for optimistic locking and audit trails. * Request headers are used to customize HTTP requests sent during web crawling operations. * */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.4K bytes - Viewed (0) -
android/guava/src/com/google/common/escape/Escapers.java
return new Builder(); } /** * A builder for simple, fast escapers. * * <p>Typically an escaper needs to deal with the escaping of high valued characters or code * points. In these cases it is necessary to extend either {@link ArrayBasedCharEscaper} or {@link * ArrayBasedUnicodeEscaper} to provide the desired behavior. However this builder is suitable for * creating escapers that replace a relative small set of characters.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 6.9K bytes - Viewed (0)