Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 41 - 50 of 189 for Federation (0.49 seconds)

  1. internal/config/batch/batch.go

    		return cfg, err
    	}
    	if kduration < 0 {
    		return cfg, config.ErrInvalidBatchKeyRotationWorkersWait(nil)
    	}
    
    	eduration, err := time.ParseDuration(env.Get(EnvKeyExpirationWorkersWait, kvs.GetWithDefault(ExpirationWorkersWait, DefaultKVS)))
    	if err != nil {
    		return cfg, err
    	}
    	if eduration < 0 {
    		return cfg, config.ErrInvalidBatchExpirationWorkersWait(nil)
    	}
    
    	if rduration > 0 {
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri May 24 23:05:23 GMT 2024
    - 4.7K bytes
    - Click Count (0)
  2. scripts/tests/test_translation_fixer/test_markdown_links/data/translated_doc.md

    ## Заголовок 2 { #header-2 }
    
    Две ссылки здесь: [How to](https://fastapi.tiangolo.com/how-to/) и [Project Generators](project-generation.md){.internal-link target=_blank}.
    
    ### Заголовок 3 { #header-3 }
    
    Ещё ссылка: [**FastAPI** Генераторы Проектов](project-generation.md "Тайтл"){.internal-link target=_blank} с тайтлом.
    
    # Заголовок 4 { #header-4 }
    
    Ссылка на якорь: [Заголовок 2](#header-2)
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Jan 10 21:48:08 GMT 2026
    - 746 bytes
    - Click Count (0)
  3. scripts/tests/test_translation_fixer/test_html_links/data/translated_doc_number_gt.md

    ## Заголовок 2 { #header-2 }
    
    Две ссылки здесь: <a href="https://fastapi.tiangolo.com/how-to/">How to</a> и <a href="project-generation.md" class="internal-link" target="_blank">Project Generators</a>.
    
    ### Заголовок 3 { #header-3 }
    
    Ещё ссылка: <a href="project-generation.md" class="internal-link" target="_blank" title="Тайтл">**FastAPI** Генераторы Проектов</a> с тайтлом.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Jan 10 21:48:08 GMT 2026
    - 914 bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java

         */
        protected static class Options {
            /**
             * Session ID for filtering thumbnail generation.
             */
            @Option(name = "-s", aliases = "--sessionId", metaVar = "sessionId", usage = "Session ID")
            protected String sessionId;
    
            /**
             * Name identifier for the thumbnail generation task.
             */
            @Option(name = "-n", aliases = "--name", metaVar = "name", usage = "Name")
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 10.4K bytes
    - Click Count (0)
  5. src/test/resources/thumbnail/test_generate_thumbnail.sh

        # Test: PNG thumbnail generation
        if [[ -f "${TEST_DIR}/400x400.png" ]]; then
            run_file_test "PNG thumbnail" "${OUTPUT_DIR}/png_thumb.png" \
                "${GENERATE_THUMBNAIL}" "image" "file:${TEST_DIR}/400x400.png" "${OUTPUT_DIR}/png_thumb.png" "image/png"
        fi
    
        # Test: JPEG thumbnail generation
        if [[ -f "${TEST_DIR}/400x400.jpg" ]]; then
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Dec 04 08:02:36 GMT 2025
    - 7.9K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/exception/UserRoleLoginException.java

            return actionClass;
        }
    
        /**
         * Overrides fillInStackTrace to return null for performance optimization.
         * This prevents stack trace generation for this exception type.
         *
         * @return null to skip stack trace generation
         */
        @Override
        public synchronized Throwable fillInStackTrace() {
            return null;
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Nov 19 08:04:23 GMT 2025
    - 2K bytes
    - Click Count (0)
  7. scripts/tests/test_translation_fixer/test_html_links/data/en_doc.md

    ## Header 2 { #header-2 }
    
    Two links here: <a href="https://fastapi.tiangolo.com/how-to/">How to</a> and <a href="project-generation.md" class="internal-link" target="_blank">Project Generators</a>.
    
    ### Header 3 { #header-3 }
    
    Another link: <a href="project-generation.md" class="internal-link" target="_blank" title="Link title">**FastAPI** Project Generators</a> with title.
    
    # Header 4 { #header-4 }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Jan 10 21:48:08 GMT 2026
    - 644 bytes
    - Click Count (0)
  8. scripts/tests/test_translation_fixer/test_complex_doc/data/translated_doc_expected.md

    # Ссылки { #links }
    
    ## Ссылки в стиле Markdown { #markdown-style-links }
    
    Это [Markdown-ссылка](https://example.com) на внешний сайт.
    
    Это ссылка с атрибутами: [**FastAPI** генераторы проектов](project-generation.md){.internal-link target=_blank}
    
    Это ссылка на основной сайт FastAPI: [FastAPI](https://fastapi.tiangolo.com/lang) — инструмент должен добавить код языка в URL.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 17 08:08:04 GMT 2026
    - 10.9K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java

     */
    public class CommandGenerator extends BaseThumbnailGenerator {
        private static final Logger logger = LogManager.getLogger(CommandGenerator.class);
    
        /** List of command strings to execute for thumbnail generation. */
        protected List<String> commandList;
    
        /** Timeout for command execution in milliseconds. */
        protected long commandTimeout = 30 * 1000L;// 30sec
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jan 01 12:47:47 GMT 2026
    - 16.6K bytes
    - Click Count (0)
  10. compat/maven-embedder/src/test/java/org/apache/maven/cli/CLIManagerDocumentationTest.java

    import org.junit.jupiter.api.Test;
    
    import static java.util.Objects.nonNull;
    
    /**
     * Pseudo test to generate documentation fragment about supported CLI options. TODO such documentation generation code
     * should not be necessary as unit test but should be run during site generation (Velocity? Doxia macro?)
     */
    @Deprecated
    class CLIManagerDocumentationTest {
        private static final String LS = System.lineSeparator();
    
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 4.1K bytes
    - Click Count (0)
Back to Top