- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 163 for formados (0.26 sec)
-
src/main/java/org/codelibs/core/convert/DateConversionUtil.java
* <table border="1"> * <caption>Conversion Patterns</caption> * <tr> * <th>Category</th> * <th>Pattern</th> * <th>Example for {@link Locale#JAPANESE}</th> * </tr> * <tr> * <td rowspan="4">Standard formats of {@link DateFormat}</td> * <td>{@link DateFormat#SHORT} format</td> * <td>{@literal yy/MM/dd}</td> * </tr> * <tr> * <td>{@link DateFormat#MEDIUM} format</td> * <td>{@literal yyyy/MM/dd}</td> * </tr>
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 19.6K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/HandlerTest.java
assertEquals(445, url3.getPort()); assertEquals("/share", url3.getPath()); assertEquals("user:pass", url3.getUserInfo()); } @Test @DisplayName("URL handles SMB-specific URL formats") void testSmbSpecificUrlFormats() throws Exception { // Test empty SMB URL URL emptyUrl = new URL(null, "smb://", handler); assertEquals("smb", emptyUrl.getProtocol());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 5.4K bytes - Viewed (0) -
android/guava/src/com/google/common/net/HostSpecifier.java
* known to be valid. If the {@code specifier} might be invalid, use {@link #from(String)} * instead. * * <p>The specifier must be in one of these formats: * * <ul> * <li>A domain name, like {@code google.com} * <li>A IPv4 address string, like {@code 127.0.0.1} * <li>An IPv6 address string with or without brackets, like {@code [2001:db8::1]} or {@code
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 6K bytes - Viewed (0) -
cmd/background-heal-ops.go
"fmt" "runtime" "strconv" "time" "github.com/minio/madmin-go/v3" "github.com/minio/pkg/v3/env" ) // healTask represents what to heal along with options // // path: '/' => Heal disk formats along with metadata // path: 'bucket/' or '/bucket/' => Heal bucket // path: 'bucket/object' => Heal object type healTask struct { bucket string object string versionID string opts madmin.HealOpts
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue May 27 15:19:03 UTC 2025 - 4.6K bytes - Viewed (0) -
docs/es/docs/tutorial/request-forms.md
## Definir parámetros de `Form` Crea parámetros de formulario de la misma manera que lo harías para `Body` o `Query`: {* ../../docs_src/request_forms/tutorial001_an_py39.py hl[9] *} Por ejemplo, en una de las formas en las que se puede usar la especificación OAuth2 (llamada "password flow") se requiere enviar un `username` y `password` como campos de formulario.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 2.9K bytes - Viewed (0) -
src/test/java/org/codelibs/curl/CurlTest.java
assertEquals(Method.CONNECT, Curl.connect("http://test.com").method()); } @Test public void test_FactoryMethodsWithDifferentUrls() { // ## Test factory methods with various URL formats ## // ## Act & Assert ## assertNotNull(Curl.get("https://secure.example.com/path?param=value")); assertNotNull(Curl.post("http://api.example.com/v1/resource"));
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Thu Jul 31 01:01:12 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/backup/ApiAdminBackupAction.java
return asJson(new ApiBackupFilesResponse().files(list).total(list.size()).status(ApiResult.Status.OK).result()); } /** * Downloads a specific backup file by ID. * Supports various backup formats including system properties, bulk data, and NDJSON logs. * * @param id the backup file ID to download * @return stream response containing the backup file data */ // GET /api/admin/backup/file/{id}
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0) -
src/test/java/jcifs/http/NetworkExplorerTest.java
verify(response).addHeader("WWW-Authenticate", "Basic realm=\"TestRealm\""); verify(response).setStatus(HttpServletResponse.SC_UNAUTHORIZED); } /** * Test handling of various path formats * This test verifies path parsing without actual network operations */ @Test void testPathHandling() throws Exception { // Create a test-specific NetworkExplorer that doesn't make network calls
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 21.2K bytes - Viewed (0) -
android/guava/src/com/google/common/base/CaseFormat.java
import com.google.common.annotations.J2ktIncompatible; import java.io.Serializable; import org.jspecify.annotations.Nullable; /** * Utility class for converting between various ASCII case formats. Behavior is undefined for * non-ASCII input. * * @author Mike Bostock * @since 1.0 */ @GwtCompatible public enum CaseFormat { /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Apr 15 22:14:00 UTC 2025 - 6.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/serializer/DataSerializer.java
/** * A serializer class for handling object serialization and deserialization. * <p> * This class provides serialization capabilities using different serializers, * currently supporting Kryo and JavaBin serialization formats. The serializer * type is determined by the crawler data serializer configuration. * </p> * <p> * The class is thread-safe and uses ThreadLocal to maintain Kryo instances * per thread to avoid synchronization overhead.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.1K bytes - Viewed (0)