Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 271 - 280 of 536 for token5 (0.04 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. docs/tr/docs/advanced/testing-dependencies.md

    ### Kullanım Senaryoları: Harici Servis { #use-cases-external-service }
    
    Örneğin, çağırmanız gereken harici bir authentication provider'ınız olabilir.
    
    Ona bir token gönderirsiniz ve o da authenticated bir user döndürür.
    
    Bu provider request başına ücret alıyor olabilir ve onu çağırmak, testlerde sabit bir mock user kullanmaya kıyasla daha fazla zaman alabilir.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Feb 13 12:41:38 GMT 2026
    - 2.7K bytes
    - Click Count (0)
  2. docs/de/docs/_llm-test.md

    * <abbr title="Getting Things Done – Dinge erledigt bekommen">GTD</abbr>
    * <abbr title="less than – kleiner als"><code>lt</code></abbr>
    * <abbr title="XML Web Token">XWT</abbr>
    * <abbr title="Paralleles Server-Gateway-Interface">PSGI</abbr>
    
    ### Das abbr gibt eine vollständige Phrase und eine Erklärung { #the-abbr-gives-a-full-phrase-and-an-explanation }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 12.3K bytes
    - Click Count (0)
  3. docs/zh-hant/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md

    /// tip
    
    有些編輯器會檢查未使用的函式參數,並將其標示為錯誤。
    
    把這些依賴放在路徑操作裝飾器中,可以確保它們被執行,同時避免編輯器/工具報錯。
    
    這也有助於避免讓新加入的開發者看到未使用的參數時,以為它是不必要的而感到困惑。
    
    ///
    
    /// info
    
    在這個範例中我們使用了自訂的(虛構的)標頭 `X-Key` 與 `X-Token`。
    
    但在實際情況下,當你實作安全機制時,使用整合的 [Security utilities(下一章)](../security/index.md) 會獲得更多好處。
    
    ///
    
    ## 依賴的錯誤與回傳值 { #dependencies-errors-and-return-values }
    
    你可以使用與平常相同的依賴函式。
    
    ### 依賴的需求 { #dependency-requirements }
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 2.7K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/exception/SsoProcessExceptionTest.java

        }
    
        @Test
        public void test_constructor_withMessageAndCause() {
            // Test constructor with message and Exception cause
            String message = "SSO token validation error";
            Exception cause = new RuntimeException("Invalid token format");
            SsoProcessException exception = new SsoProcessException(message, cause);
    
            assertEquals(message, exception.getMessage());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 13.8K bytes
    - Click Count (0)
  5. cmd/api-errors.go

    	},
    	ErrInvalidToken: {
    		Code:           "InvalidTokenId",
    		Description:    "The security token included in the request is invalid",
    		HTTPStatusCode: http.StatusForbidden,
    	},
    	ErrNoTokenRevokeType: {
    		Code:           "InvalidArgument",
    		Description:    "No token revoke type specified and one could not be inferred from the request",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Wed Apr 16 07:34:24 GMT 2025
    - 93K bytes
    - Click Count (3)
  6. docs/uk/docs/project-generation.md

      - 🦇 Підтримка темного режиму.
    - 🐋 [Docker Compose](https://www.docker.com) для розробки та продакшену.
    - 🔒 Безпечне хешування паролів за замовчуванням.
    - 🔑 Автентифікація JWT (JSON Web Token).
    - 📫 Відновлення пароля на основі електронної пошти.
    - ✅ Тести з [Pytest](https://pytest.org).
    - 📞 [Traefik](https://traefik.io) як зворотний представник / балансувальник навантаження.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 2.9K bytes
    - Click Count (0)
  7. cmd/bucket-lifecycle.go

    	case "true", `"true"`: // true without double quotes is deprecated in Feb 2022
    		if len(tokens) == 1 {
    			return ongoingRestoreObj(), nil
    		}
    	case "false", `"false"`: // false without double quotes is deprecated in Feb 2022
    		if len(tokens) != 2 {
    			return restoreObjStatus{}, errRestoreHDRMalformed
    		}
    		expiryTokens := strings.SplitN(tokens[1], "=", 2)
    		if len(expiryTokens) != 2 {
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 33.7K bytes
    - Click Count (0)
  8. internal/config/constants.go

    	EnvEndpoints  = "MINIO_ENDPOINTS"   // legacy
    	EnvWorm       = "MINIO_WORM"        // legacy
    	EnvRegion     = "MINIO_REGION"      // legacy
    	EnvRegionName = "MINIO_REGION_NAME" // legacy
    
    )
    
    // Expiration Token durations
    // These values are used to validate the expiration time range from
    // either the exp claim or MINI_STS_DURATION value
    const (
    	MinExpiration = 900
    	MaxExpiration = 31536000
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sat Sep 21 01:18:54 GMT 2024
    - 3.4K bytes
    - Click Count (1)
  9. docs/en/docs/advanced/testing-dependencies.md

    ### Use cases: external service { #use-cases-external-service }
    
    An example could be that you have an external authentication provider that you need to call.
    
    You send it a token and it returns an authenticated user.
    
    This provider might be charging you per request, and calling it might take some extra time than if you had a fixed mock user for tests.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Aug 31 09:15:41 GMT 2025
    - 2.4K bytes
    - Click Count (0)
  10. docs/es/docs/advanced/testing-dependencies.md

    ### Casos de uso: servicio externo { #use-cases-external-service }
    
    Un ejemplo podría ser que tienes un proveedor de autenticación externo al que necesitas llamar.
    
    Le envías un token y te devuelve un usuario autenticado.
    
    Este proveedor podría estar cobrándote por cada request, y llamarlo podría tomar más tiempo adicional que si tuvieras un usuario mock fijo para los tests.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Feb 13 13:41:41 GMT 2026
    - 2.6K bytes
    - Click Count (0)
Back to Top