Search Options

Results per page
Sort
Preferred Languages
Advance

Results 361 - 370 of 546 for formos (0.03 sec)

  1. docs/bucket/replication/README.md

    Replication configuration applied successfully to myminio/srcbucket.
    ```
    
    The replication configuration generated has the following format and can be exported with `mc replicate export` command:
    
    ```json
    {
      "Role" :"",
      "Rules": [
        {
          "Status": "Enabled",
          "Priority": 1,
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 18.3K bytes
    - Viewed (0)
  2. docs/es/docs/advanced/behind-a-proxy.md

    ## Sobre proxies con un prefijo de path eliminado
    
    Ten en cuenta que un proxy con prefijo de path eliminado es solo una de las formas de configurarlo.
    
    Probablemente en muchos casos, el valor predeterminado será que el proxy no tenga un prefijo de path eliminado.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. docs/es/docs/advanced/custom-response.md

    Ahora en lugar de devolver:
    
    ```json
    {"message": "Hello World"}
    ```
    
    ...este response devolverá:
    
    ```json
    {
      "message": "Hello World"
    }
    ```
    
    Por supuesto, probablemente encontrarás formas mucho mejores de aprovechar esto que formatear JSON. 😉
    
    ## Clase de response predeterminada
    
    Al crear una instance de la clase **FastAPI** o un `APIRouter`, puedes especificar qué clase de response usar por defecto.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/smb2/Smb2EncryptionContextTest.java

            context2.close();
        }
    
        private String bytesToHex(byte[] bytes) {
            StringBuilder result = new StringBuilder();
            for (byte b : bytes) {
                result.append(String.format("%02x", b));
            }
            return result.toString();
        }
    
        private boolean isAllZeros(byte[] array) {
            for (byte b : array) {
                if (b != 0) {
                    return false;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 44.1K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.5.md

    ## Changelog since v1.5.5
    
    ### Other notable changes
    
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/timer/MonitorTargetTest.java

            StringBuilder buf = new StringBuilder();
            Supplier<Object> supplier = () -> "テスト 测试 테스트 🎉";
    
            monitorTarget.append(buf, "unicodeKey", supplier);
            // Unicode characters are escaped in JSON format
            assertEquals("\"unicodeKey\":\"\\u30C6\\u30B9\\u30C8 \\u6D4B\\u8BD5 \\uD14C\\uC2A4\\uD2B8 \\uD83C\\uDF89\"", buf.toString());
        }
    
        // Test append returns the same buffer instance
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11K bytes
    - Viewed (0)
  7. okhttp-tls/src/main/kotlin/okhttp3/tls/HandshakeCertificates.kt

         * environments and only to carry test data.
         *
         * The server’s TLS certificate **does not need to be signed** by a trusted certificate
         * authority. Instead, it will trust any well-formed certificate, even if it is self-signed.
         * This is necessary for testing against localhost or in development environments where a
         * certificate authority is not possible.
         *
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat May 10 11:15:14 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/NtlmPasswordAuthentication.java

         * is used internally be jCIFS when parsing SMB URLs.
         *
         * @param tc the CIFS context to use
         * @param userInfo the user information string in the format "domain;user:pass"
         */
        public NtlmPasswordAuthentication(final CIFSContext tc, final String userInfo) {
            super(userInfo, tc.getConfig().getDefaultDomain(),
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb2/rdma/RdmaStatistics.java

        /**
         * Record a write operation error
         */
        public void recordWriteError() {
            recordError();
        }
    
        @Override
        public String toString() {
            return String.format(
                    "RdmaStatistics[reads=%d, writes=%d, sends=%d, receives=%d, "
                            + "bytes=%d, errors=%d, errorRate=%.3f, activeConnections=%d, activeMemRegions=%d]",
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  10. docs/de/docs/advanced/path-operation-advanced-configuration.md

    In diesem Beispiel haben wir kein Pydantic-Modell deklariert. Tatsächlich wird der Requestbody nicht einmal als JSON <abbr title="von einem einfachen Format, wie Bytes, in Python-Objekte konvertieren">geparst</abbr>, sondern direkt als `bytes` gelesen und die Funktion `magic_data_reader ()` wäre dafür verantwortlich, ihn in irgendeiner Weise zu parsen.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top