Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,254 for parameters (0.05 sec)

  1. src/test/java/org/codelibs/fess/score/QueryRescorerTest.java

            };
    
            // Test with nested parameters
            Map<String, Object> nestedParams = new HashMap<>();
            Map<String, Object> innerMap = new HashMap<>();
            innerMap.put("innerKey", "innerValue");
            nestedParams.put("nested", innerMap);
    
            assertNotNull(queryRescorer.evaluate(nestedParams));
    
            // Test without nested parameters
            Map<String, Object> flatParams = new HashMap<>();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb1/trans2/Trans2FindNext2Test.java

            // Should still write the parameters correctly
            assertEquals(TEST_SID, SMBUtil.readInt2(buffer, 0));
            assertEquals(TEST_BATCH_COUNT, SMBUtil.readInt2(buffer, 2));
            assertEquals(TEST_RESUME_KEY, SMBUtil.readInt4(buffer, 6));
    
            // Empty filename should result in minimal bytes written
            assertTrue(written >= 12); // At least the fixed parameters
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.2K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/interval/impl/HostIntervalController.java

        /**
         * Constructs a new HostIntervalController with default parameters.
         */
        public HostIntervalController() {
        }
    
        /**
         * Constructs a new HostIntervalController with the specified parameters.
         *
         * @param params the parameters to configure the interval controller
         */
        public HostIntervalController(final Map<String, Long> params) {
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/AbstractCrawlerClient.java

            }
        }
    
        /**
         * Retrieves an initialization parameter, converting it to the specified class type.
         * @param <T> The type of the parameter.
         * @param key The key of the parameter.
         * @param defaultValue The default value if the parameter is not found.
         * @param clazz The class type to convert the parameter to.
         * @return The parameter value, or the default value if not found.
         */
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Sep 06 04:15:37 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  5. docs/en/docs/advanced/advanced-dependencies.md

    In this case, this `__call__` is what **FastAPI** will use to check for additional parameters and sub-dependencies, and this is what will be called to pass a value to the parameter in your *path operation function* later.
    
    ## Parameterize the instance { #parameterize-the-instance }
    
    And now, we can use `__init__` to declare the parameters of the instance that we can use to "parameterize" the dependency:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  6. okcurl/src/main/kotlin/okhttp3/curl/Main.kt

    import com.github.ajalt.clikt.parameters.arguments.argument
    import com.github.ajalt.clikt.parameters.arguments.help
    import com.github.ajalt.clikt.parameters.options.default
    import com.github.ajalt.clikt.parameters.options.flag
    import com.github.ajalt.clikt.parameters.options.help
    import com.github.ajalt.clikt.parameters.options.multiple
    import com.github.ajalt.clikt.parameters.options.option
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java

        }
    
        /**
         * Builds parameter maps for search initialization, creating both query strings
         * and form inputs for the given parameters.
         *
         * @param paramMap the parameter map to process
         * @param queryKey the key for storing query string parameters
         * @param formKey the key for storing form input parameters
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/path-operation-configuration.md

    # Path Operation Configuration { #path-operation-configuration }
    
    There are several parameters that you can pass to your *path operation decorator* to configure it.
    
    /// warning
    
    Notice that these parameters are passed directly to the *path operation decorator*, not to your *path operation function*.
    
    ///
    
    ## Response Status Code { #response-status-code }
    
    You can define the (HTTP) `status_code` to be used in the response of your *path operation*.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/witness/WitnessRpcMessage.java

            default:
                return "Unknown error: 0x" + Integer.toHexString(returnCode);
            }
        }
    
        /**
         * Encodes the witness RPC message parameters to NDR format.
         * Subclasses must implement this method to encode their specific parameters.
         *
         * @param buf the NDR buffer to encode into
         * @throws NdrException if encoding fails
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/request-forms-and-files.md

    ```
    
    ///
    
    ## Import `File` and `Form` { #import-file-and-form }
    
    {* ../../docs_src/request_forms_and_files/tutorial001_an_py39.py hl[3] *}
    
    ## Define `File` and `Form` parameters { #define-file-and-form-parameters }
    
    Create file and form parameters the same way you would for `Body` or `Query`:
    
    {* ../../docs_src/request_forms_and_files/tutorial001_an_py39.py hl[10:12] *}
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 1.5K bytes
    - Viewed (0)
Back to top