Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 300 for resMap (0.04 sec)

  1. docs/es/docs/tutorial/header-params.md

    ```
    X-Token: foo
    X-Token: bar
    ```
    
    El response sería como:
    
    ```JSON
    {
        "X-Token values": [
            "bar",
            "foo"
        ]
    }
    ```
    
    ## Recapitulación { #recap }
    
    Declara headers con `Header`, usando el mismo patrón común que `Query`, `Path` y `Cookie`.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 16 16:33:45 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  2. docs/pt/docs/tutorial/cookie-params.md

    ///
    
    ## Recapitulando { #recap }
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Nov 12 16:23:57 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  3. docs/de/docs/tutorial/path-operation-configuration.md

    Vergleichen Sie, wie deprecatete und nicht-deprecatete *Pfadoperationen* aussehen:
    
    <img src="/img/tutorial/path-operation-configuration/image05.png">
    
    ## Zusammenfassung { #recap }
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  4. docs/ru/docs/tutorial/path-operation-configuration.md

    Проверьте, как будут выглядеть устаревшие и не устаревшие *операции пути*:
    
    <img src="/img/tutorial/path-operation-configuration/image05.png">
    
    ## Резюме { #recap }
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  5. docs/ru/docs/tutorial/security/get-current-user.md

    И все эти тысячи *операций пути* могут состоять всего из 3 строк:
    
    {* ../../docs_src/security/tutorial002_an_py310.py hl[30:32] *}
    
    ## Резюме { #recap }
    
    Теперь вы можете получать текущего пользователя прямо в своей *функции-обработчике пути*.
    
    Мы уже на полпути.
    
    Нужно лишь добавить *операцию пути*, чтобы пользователь/клиент мог отправить `username` и `password`.
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Sep 30 11:24:39 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java

         * @see jcifs.internal.SmbNegotiationResponse#setupResponse(jcifs.util.transport.Response)
         */
        @Override
        public void setupResponse(final Response resp) {
            if (!(resp instanceof ServerMessageBlock)) {
                return;
            }
            ((ServerMessageBlock) resp).setUseUnicode(this.useUnicode);
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.SmbNegotiationResponse#isSigningEnabled()
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  7. cmd/naughty-disk_test.go

    	}
    	return d.disk.StatInfoFile(ctx, volume, path, glob)
    }
    
    func (d *naughtyDisk) ReadMultiple(ctx context.Context, req ReadMultipleReq, resp chan<- ReadMultipleResp) error {
    	if err := d.calcError(); err != nil {
    		close(resp)
    		return err
    	}
    	return d.disk.ReadMultiple(ctx, req, resp)
    }
    
    func (d *naughtyDisk) CleanAbandonedData(ctx context.Context, volume string, path string) error {
    	if err := d.calcError(); err != nil {
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Fri Apr 25 05:41:04 UTC 2025
    - 10.1K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/path-params.md

    In that case, the URL would be: `/files//home/johndoe/myfile.txt`, with a double slash (`//`) between `files` and `home`.
    
    ///
    
    ## Recap { #recap }
    
    With **FastAPI**, by using short, intuitive and standard Python type declarations, you get:
    
    * Editor support: error checks, autocompletion, etc.
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  9. cmd/xl-storage.go

    				}
    			}
    		}
    		if osErrToFileErr(err) == errFileNotFound {
    			resp = checkPartFileNotFound
    		}
    		return resp
    	}
    	if st.Mode().IsDir() {
    		resp = checkPartFileNotFound
    		return resp
    	}
    	// Check if shard is truncated.
    	if st.Size() < expectedSize {
    		resp = checkPartFileCorrupt
    		return resp
    	}
    	return checkPartSuccess
    }
    
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Sun Sep 28 20:59:21 UTC 2025
    - 91.7K bytes
    - Viewed (0)
  10. docs/es/docs/tutorial/dependencies/sub-dependencies.md

    ///
    
    ```Python hl_lines="1"
    async def needy_dependency(fresh_value: str = Depends(get_value, use_cache=False)):
        return {"fresh_value": fresh_value}
    ```
    
    ////
    
    ## Resumen { #recap }
    
    Aparte de todas las palabras rimbombantes usadas aquí, el sistema de **Inyección de Dependencias** es bastante simple.
    
    Solo son funciones que se ven igual que las *path operation functions*.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 3.9K bytes
    - Viewed (0)
Back to top