- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 1,741 for melhor (0.04 sec)
-
src/main/java/org/codelibs/core/exception/BeanMethodSetAccessibleFailureException.java
import java.lang.reflect.Method; /** * Signals that a method could not be made accessible. */ public class BeanMethodSetAccessibleFailureException extends ClRuntimeException { private static final long serialVersionUID = 1L; /** * The target class. */ protected final Class<?> targetClass; /** * The target method. */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 1.9K bytes - Viewed (0) -
docs/es/docs/tutorial/cors.md
El middleware responde a dos tipos particulares de request HTTP... ### Requests de preflight CORS Estos son cualquier request `OPTIONS` con headers `Origin` y `Access-Control-Request-Method`. En este caso, el middleware interceptará el request entrante y responderá con los headers CORS adecuados, y un response `200` o `400` con fines informativos. ### Requests simples
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 5.5K bytes - Viewed (0) -
docs/es/docs/tutorial/security/first-steps.md
/// info | Información Un token "bearer" no es la única opción. Pero es la mejor para nuestro caso de uso. Y podría ser la mejor para la mayoría de los casos de uso, a menos que seas un experto en OAuth2 y sepas exactamente por qué hay otra opción que se adapta mejor a tus necesidades. En ese caso, **FastAPI** también te proporciona las herramientas para construirlo. ///
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 8.8K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbComQueryInformationResponseTest.java
* Test of writeBytesWireFormat method, of class SmbComQueryInformationResponse. */ @Test public void testWriteBytesWireFormat() { byte[] dst = new byte[10]; int dstIndex = 0; // This method does nothing and should return 0. assertEquals(0, response.writeBytesWireFormat(dst, dstIndex)); } /** * Test of readParameterWordsWireFormat method, of class SmbComQueryInformationResponse.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.5K bytes - Viewed (0) -
src/test/java/jcifs/http/NtlmHttpServletRequestTest.java
ntlmRequest = new NtlmHttpServletRequest(mockRequest, mockPrincipal); } /** * Test method for {@link NtlmHttpServletRequest#getRemoteUser()}. * Verifies that the method returns the name of the principal. */ @Test void testGetRemoteUser() { // Arrange: Define the expected user name from the principal
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 2.7K bytes - Viewed (0) -
src/main/java/org/codelibs/curl/CurlRequest.java
/** * Constructs a new CurlRequest with the specified HTTP method and URL. * * @param method the HTTP method * @param url the URL */ public CurlRequest(final Method method, final String url) { this.method = method; this.url = url; } /** * Returns the proxy for the request. *
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Sat Jul 05 01:38:18 UTC 2025 - 17.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CurlHelper.java
return request(Method.DELETE, path).header("Content-Type", "application/json"); } /** * Creates a request with the specified HTTP method and path. * @param method the HTTP method * @param path the request path * @return the configured CurlRequest */ public CurlRequest request(final Method method, final String path) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/ndr/NdrObjectTest.java
// When ndrObject.encode(mockBuffer); // Then // Verify that our mock buffer had the expected method called. verify(mockBuffer).enc_ndr_long(123); } /** * Test case for the decode method. * Verifies that the decode method of a concrete implementation is called * and interacts with the NdrBuffer as expected. * @throws NdrException if decoding fails. */ @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/CurlHelperTest.java
try { java.lang.reflect.Method method = CurlHelper.class.getDeclaredMethod("request", CurlRequest.class); method.setAccessible(true); return (CurlRequest) method.invoke(curlHelper, request); } catch (Exception e) { fail("Failed to call protected request method: " + e.getMessage()); return null; } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 10.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/opensearch/client/CrawlerEngineClientTest.java
// The actual client initialization happens lazily when needed } // Test that close method exists (inherited) public void test_closeMethodExists() { // Test that close method is available (inherited from parent) try { // Just verify the method exists, don't actually call it crawlerEngineClient.getClass().getMethod("close"); assertTrue(true);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 4.7K bytes - Viewed (0)