Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 111 - 120 of 1,817 for _parameters (1.54 seconds)

  1. samples/guide/src/main/java/okhttp3/recipes/kt/WiresharkExample.kt

              val message = record.message
              val parameters = record.parameters
    
              if (parameters != null && !message.startsWith("Raw") && !message.startsWith("Plaintext")) {
                if (verbose) {
                  println(record.message)
                  println(record.parameters[0])
                }
    
                // JSSE logs additional messages as parameters that are not referenced in the log message.
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Jan 27 09:00:39 GMT 2026
    - 10.9K bytes
    - Click Count (0)
  2. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleExecutionPlanCalculator.java

            if (mojoDescriptor.getParameters() != null) {
                for (Parameter parameter : mojoDescriptor.getParameters()) {
                    XmlNode parameterConfiguration = executionConfiguration.child(parameter.getName());
    
                    if (parameterConfiguration == null) {
                        parameterConfiguration = executionConfiguration.child(parameter.getAlias());
                    }
    
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Mar 25 09:45:07 GMT 2025
    - 26.7K bytes
    - Click Count (0)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/DecorateReleaseNotes.java

                Map<String, Object> parameters = new HashMap<>();
                // NOTE: These parameter names _must_ match the setter names in ReleaseNotesTransformer
                parameters.put("baseCss", getBaseCssFile().get().getAsFile());
                parameters.put("releaseNotesCss", getReleaseNotesCssFile().get().getAsFile());
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Jan 22 12:08:23 GMT 2026
    - 3.8K bytes
    - Click Count (0)
  4. docs/tr/docs/python-types.md

    * `items_s` değişkeni bir `set`'tir ve her bir öğesi `bytes` tipindedir.
    
    #### Dict { #dict }
    
    Bir `dict` tanımlamak için, virgülle ayrılmış 2 type parameter verirsiniz.
    
    İlk type parameter, `dict`'in key'leri içindir.
    
    İkinci type parameter, `dict`'in value'ları içindir:
    
    {* ../../docs_src/python_types/tutorial008_py310.py hl[1] *}
    
    Bu şu anlama gelir:
    
    * `prices` değişkeni bir `dict`'tir:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 11.9K bytes
    - Click Count (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/config/WebAuthenticationConfig.java

         *
         * @param formParameters the form parameters
         */
        public void setFormParameters(final Map<String, String> formParameters) {
            this.formParameters = formParameters;
        }
    
        /**
         * NTLM-specific parameters (e.g., jcifs.* properties).
         * Used when authSchemeType is NTLM to configure the JCIFS engine.
         *
         * <p>Supported parameters include:</p>
    Created: Sun Apr 12 03:50:13 GMT 2026
    - Last Modified: Fri Jan 09 23:46:52 GMT 2026
    - 6.9K bytes
    - Click Count (0)
  6. api/maven-api-plugin/src/main/mdo/plugin.mdo

            </field>
          </fields>
        </class>
    
        <class xdoc.anchorName="parameter">
          <name>Parameter</name>
          <version>1.0.0+</version>
          <description>A parameter description.</description>
          <!-- see o.a.m.plugin.descriptor.Parameter -->
          <fields>
            <field>
              <name>name</name>
              <version>1.0.0+</version>
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Feb 25 08:28:41 GMT 2025
    - 24.8K bytes
    - Click Count (0)
  7. docs/sts/custom-token-identity.md

    ## API Request
    
    To make an STS API request with this method, send a POST request to the MinIO endpoint with following query parameters:
    
    | Parameter       | Type    | Required |                                                                      |
    |-----------------|---------|----------|----------------------------------------------------------------------|
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri May 27 00:58:09 GMT 2022
    - 3K bytes
    - Click Count (0)
  8. docs/fr/docs/tutorial/response-model.md

    ## Paramètres d'encodage du modèle de réponse { #response-model-encoding-parameters }
    
    Votre modèle de réponse peut avoir des valeurs par défaut, par exemple :
    
    {* ../../docs_src/response_model/tutorial004_py310.py hl[9,11:12] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 18.1K bytes
    - Click Count (0)
  9. docs/zh/docs/tutorial/query-params.md

    或其它任意大小写形式(大写、首字母大写等),函数接收的 `short` 参数都是布尔值 `True`。否则为 `False`。
    
    
    ## 多个路径和查询参数 { #multiple-path-and-query-parameters }
    
    **FastAPI** 可以识别同时声明的多个路径参数和查询参数。
    
    而且声明查询参数的顺序并不重要。
    
    FastAPI 通过参数名进行检测:
    
    {* ../../docs_src/query_params/tutorial004_py310.py hl[6,8] *}
    
    ## 必选查询参数 { #required-query-parameters }
    
    为不是路径参数的参数声明默认值(至此,仅有查询参数),该参数就不是必选的了。
    
    如果只想把参数设为可选,但又不想指定参数的值,则要把默认值设为 `None`。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 4.2K bytes
    - Click Count (0)
  10. 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
         */
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 24 00:12:28 GMT 2025
    - 5.5K bytes
    - Click Count (0)
Back to Top