Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 171 - 180 of 265 for temporary (0.2 seconds)

  1. okhttp/src/jvmTest/kotlin/okhttp3/URLConnectionTest.kt

        assertThat(responseString).isEqualTo("This page has moved!")
      }
    
      private fun testRedirect(
        temporary: Boolean,
        method: String,
      ) {
        val response1 =
          MockResponse
            .Builder()
            .code(
              if (temporary) HTTP_TEMP_REDIRECT else HTTP_PERM_REDIRECT,
            ).addHeader("Location: /page2")
        if (method != "HEAD") {
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Jan 27 09:00:39 GMT 2026
    - 133.3K bytes
    - Click Count (0)
  2. docs/tr/docs/advanced/custom-response.md

    Bu, en iyi performansı elde etmenin ideal yoludur.
    
    ///
    
    ### `RedirectResponse` { #redirectresponse }
    
    HTTP redirect döndürür. Varsayılan olarak 307 status code (Temporary Redirect) kullanır.
    
    `RedirectResponse`’u doğrudan döndürebilirsiniz:
    
    {* ../../docs_src/custom_response/tutorial006_py310.py hl[2,9] *}
    
    ---
    
    Veya `response_class` parametresi içinde kullanabilirsiniz:
    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)
  3. src/test/java/jcifs/smb/SmbFileIntegrationTest.java

        @Container
        static GenericContainer<?> sambaContainer;
    
        static {
            // Check if Docker is available
            if (isDockerAvailable()) {
                try {
                    // Create temporary directory structure for SMB shares
                    Path tempDir = Files.createTempDirectory("smbtest");
    
                    // Create directory structure
                    Files.createDirectories(tempDir.resolve("public"));
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 56K bytes
    - Click Count (0)
  4. docs/fr/docs/advanced/custom-response.md

    C'est la manière idéale d'obtenir la meilleure performance.
    
    ///
    
    ### `RedirectResponse` { #redirectresponse }
    
    Renvoie une redirection HTTP. Utilise par défaut un code d'état 307 (Temporary Redirect).
    
    Vous pouvez renvoyer directement une `RedirectResponse` :
    
    {* ../../docs_src/custom_response/tutorial006_py310.py hl[2,9] *}
    
    ---
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 12.3K bytes
    - Click Count (0)
  5. docs/ru/docs/advanced/custom-response.md

    Это идеальный способ получить наилучшую производительность.
    
    ///
    
    ### `RedirectResponse` { #redirectresponse }
    
    Возвращает HTTP-редирект. По умолчанию использует статус-код 307 (Temporary Redirect — временное перенаправление).
    
    Вы можете вернуть `RedirectResponse` напрямую:
    
    {* ../../docs_src/custom_response/tutorial006_py310.py hl[2,9] *}
    
    ---
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 17.6K bytes
    - Click Count (0)
  6. docs/uk/docs/advanced/custom-response.md

    Це ідеальний спосіб отримати найкращу продуктивність.
    
    ///
    
    ### `RedirectResponse` { #redirectresponse }
    
    Повертає HTTP-перенаправлення. Типово використовує код статусу 307 (Temporary Redirect).
    
    Ви можете повернути `RedirectResponse` безпосередньо:
    
    {* ../../docs_src/custom_response/tutorial006_py310.py hl[2,9] *}
    
    ---
    
    Або ви можете використати його в параметрі `response_class`:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 17K bytes
    - Click Count (0)
  7. cmd/site-replication.go

    				// policy. The session token will contain info about policy to
    				// be applied.
    				if !errors.Is(err, errNoSuchUser) {
    					replLogOnceIf(ctx,
    						fmt.Errorf("Unable to heal temporary credentials from peer site %s -> %s : %w", latestPeerName, peerName, err),
    						fmt.Sprintf("heal-user-%s", user))
    					continue
    				}
    			} else {
    				parentPolicy = u.PolicyName
    			}
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 184.8K bytes
    - Click Count (1)
  8. src/cmd/cgo/doc.go

    instead of needing to refer to a dynamic library. The specific choice
    can be overridden using a command line flag: cmd/link -linkmode=internal or
    cmd/link -linkmode=external.
    
    In an external link, cmd/link will create a temporary directory, write any
    host object files found in package archives to that directory (renamed
    to avoid conflicts), write the go.o file to that directory, and invoke
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Mon Dec 08 22:37:14 GMT 2025
    - 43.9K bytes
    - Click Count (0)
  9. src/main/resources/fess_config.properties

    processors=0
    # Path to Java command.
    java.command.path=java
    # Path to Python command.
    python.command.path=python
    # Encoding for file paths.
    path.encoding=UTF-8
    # Whether to use a dedicated temporary directory.
    use.own.tmp.dir=true
    # Maximum length of log output.
    max.log.output.length=4000
    # Adaptive load control value.
    adaptive.load.control=50
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 59.3K bytes
    - Click Count (0)
  10. docs/ja/docs/advanced/custom-response.md

    これが最適なパフォーマンスを得る理想的な方法です。
    
    ///
    
    ### `RedirectResponse` { #redirectresponse }
    
    HTTPリダイレクトを返します。デフォルトでは307ステータスコード(Temporary Redirect)を使用します。
    
    `RedirectResponse` を直接返せます:
    
    {* ../../docs_src/custom_response/tutorial006_py310.py hl[2,9] *}
    
    ---
    
    または、`response_class` パラメータで使用できます:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 13.5K bytes
    - Click Count (0)
Back to Top