- Sort Score
- Result 10 results
- Languages All
Results 241 - 250 of 736 for PARAMETERS (0.04 sec)
-
src/main/java/org/codelibs/fess/app/service/DataConfigService.java
*/ @Resource protected DataConfigBhv dataConfigBhv; /** * Fess configuration containing application settings. * Used to retrieve paging and other configuration parameters. */ @Resource protected FessConfig fessConfig; /** * Creates a new instance of DataConfigService. * This constructor initializes the service for managing data configuration operations
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/ForwardingWrapperTester.java
import org.jspecify.annotations.NullMarked; import org.jspecify.annotations.Nullable; /** * Tester to ensure forwarding wrapper works by delegating calls to the corresponding method with * the same parameters forwarded and return value forwarded back or exception propagated as is. * * <p>For example: * * {@snippet : * new ForwardingWrapperTester().testForwarding(Foo.class, new Function<Foo, Foo>() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 9.1K bytes - Viewed (0) -
native-image-tests/src/test/kotlin/okhttp3/nativeimage/WithArgumentSourceTest.kt
fun passingTest(value: Int) { assertThat(value).isGreaterThan(0) } } internal class FakeArgumentsProvider : ArgumentsProvider { override fun provideArguments( parameters: ParameterDeclarations?, context: ExtensionContext?, ): Stream<out Arguments> = listOf(Arguments.of(1), Arguments.of(2)).stream()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue Jul 22 20:31:49 UTC 2025 - 1.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/io/Smb2ReadRequestTest.java
} @Nested @DisplayName("Constructor Tests") class ConstructorTests { @Test @DisplayName("Should create request with all parameters") void testConstructor() { byte[] buffer = new byte[1024]; Smb2ReadRequest readRequest = new Smb2ReadRequest(mockConfig, testFileId, buffer, 100); assertNotNull(readRequest);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.8K bytes - Viewed (0) -
docs/bigdata/README.md
 Navigate to **Custom core-site** to configure MinIO parameters for `_s3a_` connector  ``` sudo pip install yq
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 14.7K bytes - Viewed (0) -
docs/nl/docs/python-types.md
**FastAPI** maakt gebruik van type hints om verschillende dingen te doen. Met **FastAPI** declareer je parameters met type hints en krijg je: * **Editor ondersteuning**. * **Type checks**. ...en **FastAPI** gebruikt dezelfde declaraties om: * **Vereisten te definïeren **: van request pad parameters, query parameters, headers, bodies, dependencies, enz. * **Data te converteren**: van de request naar het vereiste type.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 18.1K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableSortedMultiset.java
* Comparable} element.</b> Proper calls will resolve to the version in {@code * ImmutableSortedMultiset}, not this dummy version. * * @throws UnsupportedOperationException always * @deprecated <b>Pass the parameters of type {@code Comparable} to use {@link * ImmutableSortedMultiset#of(Comparable, Comparable)}.</b> */ @DoNotCall("Elements must be Comparable. (Or, pass a Comparator to orderedBy or copyOf.)") @Deprecated
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 29.5K bytes - Viewed (0) -
README.md
===== A simple cURL-like Java HTTP client. ## Features - Fluent API for building HTTP requests (GET, POST, PUT, DELETE, HEAD, OPTIONS, CONNECT, TRACE) - Support for query parameters, headers, body (String or stream), compression, SSL configuration, proxies, and timeouts - Automatic in-memory or on-disk caching of request/response bodies - Synchronous and asynchronous (callback) execution
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Sat Jul 05 01:11:14 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/error/ErrorBadrequrestAction.java
/** * Action class for handling HTTP 400 Bad Request error pages. * This action displays error pages when a client request contains * invalid syntax or cannot be fulfilled due to malformed request parameters. */ public class ErrorBadrequrestAction extends FessSearchAction { /** * Default constructor for ErrorBadrequrestAction. */ public ErrorBadrequrestAction() { super(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ViewHelper.java
break; } return url; } /** * Appends query parameters to URLs based on document type. * Adds search highlighting for HTML and PDF documents. * * @param document the document data map * @param url the base URL * @return the URL with appended query parameters */ protected String appendQueryParameter(final Map<String, Object> document, final String url) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 52.4K bytes - Viewed (0)