Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 53 for tarea (0.05 sec)

  1. src/test/java/jcifs/internal/smb2/ioctl/SrvCopychunkTest.java

                chunk.encode(buffer, startIndex);
    
                // Then
                // Check bytes before encoded area
                for (int i = 0; i < startIndex; i++) {
                    assertEquals(testByte, buffer[i], "Byte at position " + i + " was modified");
                }
    
                // Check bytes after encoded area
                for (int i = startIndex + EXPECTED_SIZE; i < buffer.length; i++) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  2. docs/pt/docs/tutorial/middleware.md

    * Então ele retorna a **resposta**.
    
    /// note | Detalhes técnicos
    
    Se você tiver dependências com `yield`, o código de saída será executado *depois* do middleware.
    
    Se houver alguma tarefa em segundo plano (documentada posteriormente), ela será executada *depois* de todo o middleware.
    
    ///
    
    ## Criar um middleware
    
    Para criar um middleware, use o decorador `@app.middleware("http")` logo acima de uma função.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. src/main/assemblies/extension/kibana/fess_log.ndjson

    \",\"language\":\"kuery\"},\"filter\":[],\"indexRefName\":\"kibanaSavedObjectMeta.searchSourceJSON.index\"}"},"title":"average-response-time","uiStateJSON":"{}","version":1,"visState":"{\"title\":\"average-response-time\",\"type\":\"area\",\"params\":{\"type\":\"area\",\"grid\":{\"categoryLines\":false},\"categoryAxes\":[{\"id\":\"CategoryAxis-1\",\"type\":\"category\",\"position\":\"bottom\",\"show\":true,\"style\":{},\"scale\":{\"type\":\"linear\"},\"labels\":{\"show\":true,\"truncate\":100},\...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Aug 12 01:26:21 UTC 2019
    - 18.2K bytes
    - Viewed (0)
  4. docs/metrics/prometheus/grafana/minio-dashboard.json

            "h": 3,
            "w": 3,
            "x": 3,
            "y": 0
          },
          "id": 65,
          "maxDataPoints": 100,
          "options": {
            "colorMode": "value",
            "graphMode": "area",
            "justifyMode": "auto",
            "orientation": "auto",
            "reduceOptions": {
              "calcs": [
                "last"
              ],
              "fields": "",
              "values": false
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Mon Aug 04 01:46:49 UTC 2025
    - 93.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/NtStatus.java

        /** More processing is required to complete this request */
        int NT_STATUS_MORE_PROCESSING_REQUIRED = 0xC0000016;
        /** Access is denied */
        int NT_STATUS_ACCESS_DENIED = 0xC0000022;
        /** The data area passed to a system call is too small */
        int NT_STATUS_BUFFER_TOO_SMALL = 0xC0000023;
        /** The object name is invalid */
        int NT_STATUS_OBJECT_NAME_INVALID = 0xC0000033;
        /** The object was not found */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  6. src/test/java/jcifs/internal/smb2/Smb2EchoRequestTest.java

                echoRequest.writeBytesWireFormat(buffer, startIndex);
    
                // Check bytes before written area are unchanged
                for (int i = 0; i < startIndex; i++) {
                    assertEquals((byte) 0xFF, buffer[i]);
                }
    
                // Check bytes after written area are unchanged
                for (int i = startIndex + 4; i < buffer.length; i++) {
                    assertEquals((byte) 0xFF, buffer[i]);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  7. docs/es/docs/help-fastapi.md

    Las tareas principales que puedes hacer ahora son:
    
    * [Ayudar a otros con preguntas en GitHub](#help-others-with-questions-in-github){.internal-link target=_blank} (ver la sección arriba).
    * [Revisar Pull Requests](#review-pull-requests){.internal-link target=_blank} (ver la sección arriba).
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  8. okhttp/src/jvmTest/kotlin/okhttp3/URLConnectionTest.kt

                "WWW-Authenticate",
                "Basic realm=\"protected area\", charset=\"UTF-8\"",
              ),
            body = "Please authenticate with UTF-8.",
          ),
        )
        server.enqueue(
          MockResponse(
            code = 401,
            headers =
              headersOf(
                "WWW-Authenticate",
                "Basic realm=\"protected area\"",
              ),
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jun 21 20:36:35 UTC 2025
    - 133.2K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/smb2/ioctl/SrvCopychunkCopyTest.java

                copy.encode(buffer, startIndex);
    
                // Then
                // Check bytes before encoded area
                for (int i = 0; i < startIndex; i++) {
                    assertEquals(testByte, buffer[i], "Byte at position " + i + " was modified");
                }
    
                // Check bytes after encoded area
                for (int i = startIndex + expectedSize; i < buffer.length; i++) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 23.1K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/smb1/trans/nt/NtTransQuerySecurityDescTest.java

            // Check that bytes before startIndex are unchanged
            for (int i = 0; i < startIndex; i++) {
                assertEquals((byte) (i & 0xFF), dst[i]);
            }
    
            // Check that bytes after written area are unchanged
            for (int i = startIndex + bytesWritten; i < dst.length; i++) {
                assertEquals((byte) (i & 0xFF), dst[i]);
            }
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.9K bytes
    - Viewed (0)
Back to top