Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 463 for customer (0.07 sec)

  1. docs/en/docs/how-to/custom-docs-ui-assets.md

    The same as when using a custom CDN, the first step is to disable the automatic docs, as those use the CDN by default.
    
    To disable them, set their URLs to `None` when creating your `FastAPI` app:
    
    {* ../../docs_src/custom_docs_ui/tutorial002.py hl[9] *}
    
    ### Include the custom docs for static files { #include-the-custom-docs-for-static-files }
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/mylasta/direction/FessEnvTest.java

                }
            };
    
            assertTrue(customEnv.is("bool.true"));
            assertFalse(customEnv.is("bool.false"));
            assertTrue(customEnv.is("bool.yes"));
            assertFalse(customEnv.is("bool.no"));
            assertTrue(customEnv.is("bool.on"));
            assertFalse(customEnv.is("bool.off"));
            assertTrue(customEnv.is("bool.1"));
            assertFalse(customEnv.is("bool.0"));
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 15.5K bytes
    - Viewed (0)
  3. docs/de/docs/advanced/custom-response.md

    Aber da Sie die `HTMLResponse` auch in der `response_class` รผbergeben haben, weiรŸ **FastAPI**, dass sie in OpenAPI und der interaktiven Dokumentation als HTML mit `text/html` zu dokumentieren ist:
    
    <img src="/img/tutorial/custom-response/image01.png">
    
    ## Verfรผgbare Responses
    
    Hier sind einige der verfรผgbaren Responses.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/mylasta/creator/PagerCreatorTest.java

                }
            };
    
            // Set the customizer
            pagerCreator.setPagerCustomizer(customizer);
    
            // Verify it can be retrieved
            assertSame(customizer, pagerCreator.getPagerCustomizer());
        }
    
        // Test multiple set operations
        public void test_setPagerCustomizer_multiple_times() {
            // Create first customizer
            ComponentCustomizer customizer1 = new ComponentCustomizer() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  5. src/test/java/jcifs/util/SmbCircuitBreakerTest.java

                // Circuit should be OPEN after 3 failures
                assertEquals(State.OPEN, customCb.getState(), "Circuit should be OPEN after regular failures");
                assertEquals(3, customCb.getFailureCount(), "Should have 3 failures");
    
                // Reset for custom predicate test
                customCb.reset();
                assertEquals(State.CLOSED, customCb.getState(), "Circuit should be CLOSED after reset");
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 23.2K bytes
    - Viewed (0)
  6. docs/em/docs/advanced/custom-response.md

    ๐Ÿ›ฌ ๐Ÿ ๐Ÿค™ `generate_html_response()`, ๐Ÿ‘† โช ๐Ÿ›ฌ `Response` ๐Ÿ‘ˆ ๐Ÿ”œ ๐Ÿ” ๐Ÿ”ข **FastAPI** ๐ŸŽญ.
    
    โœ‹๏ธ ๐Ÿ‘† ๐Ÿšถโ€โ™€๏ธ `HTMLResponse` `response_class` ๐Ÿ’โ€โ™‚๏ธ, **FastAPI** ๐Ÿ”œ ๐Ÿ’ญ โ” ๐Ÿ“„ โšซ๏ธ ๐Ÿ—„ &amp; ๐ŸŽ“ ๐Ÿฉบ ๐Ÿ•ธ โฎ๏ธ `text/html`:
    
    <img src="/img/tutorial/custom-response/image01.png">
    
    ## ๐Ÿ’ช ๐Ÿ“จ
    
    ๐Ÿ“ฅ ๐Ÿ’ช ๐Ÿ“จ.
    
    โœ”๏ธ ๐Ÿคฏ ๐Ÿ‘ˆ ๐Ÿ‘† ๐Ÿ’ช โš™๏ธ `Response` ๐Ÿ“จ ๐Ÿ•ณ ๐Ÿ™†, โš–๏ธ โœ ๐Ÿ›ƒ ๐ŸŽง-๐ŸŽ“.
    
    /// note | ๐Ÿ“ก โ„น
    
    ๐Ÿ‘† ๐Ÿ’ช โš™๏ธ `from starlette.responses import HTMLResponse`.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. docs/en/docs/css/custom.css

    Sebastiรกn Ramรญrez <******@****.***> 1721182349 -0500
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Wed Jul 17 02:12:29 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. src/test/java/jcifs/context/SingletonContextTest.java

            Properties customProps = new Properties();
            customProps.setProperty("jcifs.smb.client.nativeOs", "CustomOS");
    
            SingletonContext.init(customProps);
            CIFSContext context = SingletonContext.getInstance();
            assertNotNull(context);
            assertEquals("CustomOS", context.getConfig().getNativeOs());
        }
    
        @Test
        void testInitIOExceptionHandling(@TempDir Path tempDir) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  9. docs/config/README.md

    ARGS:
    endpoints*       (csv)       comma separated list of etcd endpoints e.g. "http://localhost:2379"
    path_prefix      (path)      namespace prefix to isolate tenants e.g. "customer1/"
    coredns_path     (path)      shared bucket DNS records, default is "/skydns"
    client_cert      (path)      client cert for mTLS authentication
    client_cert_key  (path)      client cert key for mTLS authentication
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 18.1K bytes
    - Viewed (1)
  10. src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java

        }
    
        // Test initialization with system property
        public void test_init_withSystemProperty() {
            File customDir = new File(tempDir, "custom");
            System.setProperty(Constants.FESS_THUMBNAIL_PATH, customDir.getAbsolutePath());
            try {
                ThumbnailManager manager = new ThumbnailManager() {
                    @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 18.7K bytes
    - Viewed (0)
Back to top