Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 283 for punt (0.02 sec)

  1. docs/it/docs/index.md

        * Swagger UI.
        * ReDoc.
    
    ---
    
    Tornando al precedente esempio, **FastAPI**:
    
    * Validerà che esiste un `item_id` nel percorso delle richieste `GET` e `PUT`.
    * Validerà che `item_id` sia di tipo `int` per le richieste `GET` e `PUT`.
        * Se non lo è, il client vedrà un errore chiaro e utile.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 19.5K bytes
    - Viewed (0)
  2. docs/id/docs/index.md

        * Swagger UI.
        * ReDoc.
    
    ---
    
    Kembali ke kode contoh sebelumnya, **FastAPI** akan:
    
    * Validasi apakah terdapat `item_id` di *path* untuk permintaan `GET` dan `PUT` requests.
    * Validasi apakah `item_id` berjenit `int` untuk permintaan `GET` dan `PUT`.
        * Jika tidak, klien akan melihat pesan kesalahan jelas.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 20.5K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/mylasta/direction/FessPropTest.java

            source.put("bbb", "a");
            assertFalse(fessConfig.validateIndexRequiredFields(source));
            source.put("aaa", " ");
            source.put("bbb", "a");
            assertFalse(fessConfig.validateIndexRequiredFields(source));
            source.put("aaa", "a");
            source.put("bbb", "a");
            assertTrue(fessConfig.validateIndexRequiredFields(source));
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/dcerpc/DcerpcBinding.java

    public class DcerpcBinding {
    
        private static HashMap INTERFACES;
    
        static {
            INTERFACES = new HashMap();
            INTERFACES.put("srvsvc", srvsvc.getSyntax());
            INTERFACES.put("lsarpc", lsarpc.getSyntax());
            INTERFACES.put("samr", samr.getSyntax());
            INTERFACES.put("netdfs", netdfs.getSyntax());
        }
    
        /**
         * Add an interface to the registry.
         *
         * @param name the interface name
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  5. docs/en/docs/advanced/response-directly.md

    Now, let's see how you could use that to return a custom response.
    
    Let's say that you want to return an <a href="https://en.wikipedia.org/wiki/XML" class="external-link" target="_blank">XML</a> response.
    
    You could put your XML content in a string, put that in a `Response`, and return it:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/rank/fusion/SearchResultTest.java

            // Test builder with adding documents
            Map<String, Object> doc1 = new HashMap<>();
            doc1.put("id", "1");
            doc1.put("title", "Document 1");
    
            Map<String, Object> doc2 = new HashMap<>();
            doc2.put("id", "2");
            doc2.put("title", "Document 2");
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  7. src/test/java/jcifs/http/NtlmHttpFilterTest.java

            Map<String, String> initParams = new HashMap<>();
            initParams.put("jcifs.smb.client.domain", "TEST_DOMAIN");
            initParams.put("jcifs.http.domainController", "dc.test.com");
            initParams.put("jcifs.http.enableBasic", "true");
            initParams.put("jcifs.http.insecureBasic", "true");
            initParams.put("jcifs.http.basicRealm", "TestRealm");
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 04:51:33 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/script/ScriptEngineTest.java

            String template = "${greeting} ${name}, you are ${age} years old";
            Map<String, Object> paramMap = new HashMap<>();
            paramMap.put("greeting", "Hello");
            paramMap.put("name", "Alice");
            paramMap.put("age", 25);
    
            Object result = scriptEngine.evaluate(template, paramMap);
            assertEquals("Hello Alice, you are 25 years old", result);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  9. src/test/java/jcifs/smb/StaticJAASConfigurationTest.java

        void customOptions_arePropagated() {
            // Arrange
            Map<String, Object> opts = new HashMap<>();
            opts.put("useKeyTab", "true");
            opts.put("storeKey", "true");
            opts.put("principal", "******@****.***");
            StaticJAASConfiguration cfg = new StaticJAASConfiguration(opts);
    
            // Act
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChangeResponseTest.java

            buffer.putInt(FileNotifyInformation.FILE_ACTION_ADDED);
            buffer.putInt(fileNameBytes1.length);
            buffer.put(fileNameBytes1);
    
            // Pad to aligned size
            while (buffer.position() < entry1AlignedSize) {
                buffer.put((byte) 0);
            }
    
            // Second notification
            buffer.putInt(entry2AlignedSize); // nextEntryOffset
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.7K bytes
    - Viewed (0)
Back to top