Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 901 - 910 of 1,221 for Parametre (0.07 seconds)

  1. docs/sts/README.md

        "SignerType": 1
      }
    }
    ```
    
    > NOTE: You can use the `-cscopes` parameter to restrict the requested scopes, for example to `"openid,policy_role_attribute"`, being `policy_role_attribute` a client_scope / client_mapper that maps a role attribute called policy to a `policy` claim returned by Keycloak.
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue Aug 12 18:20:36 GMT 2025
    - 7.8K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/collect/Queues.java

       * @param numElements the number of elements to be waited for
       * @param timeout how long to wait before giving up, in units of {@code unit}
       * @param unit a {@code TimeUnit} determining how to interpret the timeout parameter
       * @return the number of elements transferred
       * @throws InterruptedException if interrupted while waiting
       */
      @CanIgnoreReturnValue
      @J2ktIncompatible
      @GwtIncompatible // BlockingQueue
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 19:19:10 GMT 2026
    - 18.2K bytes
    - Click Count (0)
  3. src/test/java/jcifs/internal/TreeConnectResponseTest.java

                response.setTid(0xFFFF);
                assertFalse(response.isValidTid(), "TID 0xFFFF should be invalid");
            }
    
            @Test
            @DisplayName("Should decode parameter words correctly")
            void testReadParameterWordsWireFormat() throws Exception {
                // Given - Buffer with flags
                byte[] buffer = new byte[2];
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 24.9K bytes
    - Click Count (0)
  4. scripts/general-llm-prompt.md

    ```
    
    Existing wrong translation (German) - notice the wrongly translated anchor fragment:
    
    ```
    [Body - Mehrere Parameter: Einfache Werte im Body](body-multiple-params.md#einzelne-werte-im-body){.internal-link target=_blank}.
    ```
    
    Result (German) - you fix the anchor fragment:
    
    ```
    [Body - Mehrere Parameter: Einfache Werte im Body](body-multiple-params.md#singular-values-in-body){.internal-link target=_blank}.
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Mar 18 10:55:36 GMT 2026
    - 14.6K bytes
    - Click Count (0)
  5. android/guava-testlib/src/com/google/common/collect/testing/MapInterfaceTest.java

     * @param <V> the type of mapped values used the maps under test
     * @author George van den Driessche
     */
    // TODO: Descriptive assertion messages, with hints as to probable fixes.
    // TODO: Add another constructor parameter indicating whether the class under test is ordered, and
    // check the order if so.
    // TODO: Refactor to share code with SetTestBuilder etc.
    @GwtCompatible
    @NullMarked
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Aug 11 19:31:30 GMT 2025
    - 43.9K bytes
    - Click Count (0)
  6. src/test/java/jcifs/smb/NtlmUtilTest.java

        void testGetNTHash_null() {
            NullPointerException ex = assertThrows(NullPointerException.class, () -> NtlmUtil.getNTHash((String) null));
            assertEquals("Password parameter is required", ex.getMessage());
        }
    
        @ParameterizedTest
        @ValueSource(strings = { "", "password", "pässwörd", "1234567890abcdef" })
        @DisplayName("nTOWFv1 equals getNTHash across inputs")
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 12K bytes
    - Click Count (1)
  7. docs/zh-hant/docs/tutorial/body.md

        "tax": 3.5
    }
    ```
    
    ...由於 `description` 與 `tax` 是選填(預設為 `None`),以下這個 JSON「`object`」也有效:
    
    ```JSON
    {
        "name": "Foo",
        "price": 45.2
    }
    ```
    
    ## 將它宣告為參數 { #declare-it-as-a-parameter }
    
    要把它加到你的*路徑操作(path operation)*中,宣告方式與路徑與查詢參數相同:
    
    {* ../../docs_src/body/tutorial001_py310.py hl[16] *}
    
    ...並將其型別宣告為你建立的模型 `Item`。
    
    ## 效果 { #results }
    
    只靠這樣的 Python 型別宣告,**FastAPI** 會:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 6K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

        @Size(max = 1000)
        public String entraidAuthority;
    
        /** Entra ID OAuth2 reply URL. */
        @Size(max = 1000)
        public String entraidReplyUrl;
    
        /** Entra ID state parameter TTL in seconds. */
        @Size(max = 100)
        public String entraidStateTtl;
    
        /** Entra ID default groups. */
        @Size(max = 1000)
        public String entraidDefaultGroups;
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 15.8K bytes
    - Click Count (0)
  9. docs/ko/docs/tutorial/path-params.md

    /// tip | 팁
    
    혹시 궁금하다면, "AlexNet", "ResNet", 그리고 "LeNet"은 그저 머신 러닝 <dfn title="기술적으로는 딥 러닝 모델 아키텍처">모델</dfn>들의 이름입니다.
    
    ///
    
    ### *경로 매개변수* 선언 { #declare-a-path-parameter }
    
    생성한 열거형 클래스(`ModelName`)를 사용하는 타입 어노테이션으로 *경로 매개변수를* 만듭니다:
    
    {* ../../docs_src/path_params/tutorial005_py310.py hl[16] *}
    
    ### 문서 확인 { #check-the-docs }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 9.9K bytes
    - Click Count (0)
  10. src/test/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionResponseTest.java

            setupCountField.setAccessible(true);
            assertEquals(5, setupCountField.get(response));
        }
    
        @ParameterizedTest
        @DisplayName("Test readParameterWordsWireFormat with various parameter values")
        @CsvSource({ "0, 0, 0, 0, 0, 0, 0, 0, 0", "100, 200, 10, 64, 0, 20, 128, 0, 1", "65535, 65535, 1024, 256, 512, 2048, 512, 1024, 10",
                "1, 1, 1, 1, 0, 1, 1, 0, 255" })
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 16.3K bytes
    - Click Count (0)
Back to Top