Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 231 for hardlink (0.21 seconds)

  1. src/archive/tar/testdata/hardlink.tar

    Vincent Batts <******@****.***> 1425490156 -0500
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Fri Jun 26 15:51:06 GMT 2015
    - 2.5K bytes
    - Click Count (0)
  2. docs/en/docs/tutorial/handling-errors.md

    # Handling Errors { #handling-errors }
    
    There are many situations in which you need to notify an error to a client that is using your API.
    
    This client could be a browser with a frontend, a code from someone else, an IoT device, etc.
    
    You could need to tell the client that:
    
    * The client doesn't have enough privileges for that operation.
    * The client doesn't have access to that resource.
    * The item the client was trying to access doesn't exist.
    * etc.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 8.9K bytes
    - Click Count (0)
  3. docs/es/docs/tutorial/handling-errors.md

    # Manejo de Errores { #handling-errors }
    
    Existen muchas situaciones en las que necesitas notificar un error a un cliente que está usando tu API.
    
    Este cliente podría ser un navegador con un frontend, un código de otra persona, un dispositivo IoT, etc.
    
    Podrías necesitar decirle al cliente que:
    
    * El cliente no tiene suficientes privilegios para esa operación.
    * El cliente no tiene acceso a ese recurso.
    * El ítem al que el cliente intentaba acceder no existe.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 9.6K bytes
    - Click Count (0)
  4. docs/tr/docs/tutorial/handling-errors.md

    # Hataları Yönetme { #handling-errors }
    
    API’nizi kullanan bir client’a hata bildirmek zorunda olduğunuz pek çok durum vardır.
    
    Bu client; frontend’i olan bir tarayıcı, başka birinin yazdığı bir kod, bir IoT cihazı vb. olabilir.
    
    Client’a şunları söylemeniz gerekebilir:
    
    * Client’ın bu işlem için yeterli yetkisi yok.
    * Client’ın bu kaynağa erişimi yok.
    * Client’ın erişmeye çalıştığı öğe mevcut değil.
    * vb.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 9.7K bytes
    - Click Count (0)
  5. docs/zh/docs/tutorial/handling-errors.md

    # 处理错误 { #handling-errors }
    
    某些情况下,需要向使用你的 API 的客户端返回错误提示。
    
    这里所谓的客户端包括前端浏览器、他人的代码、物联网设备等。
    
    你可能需要告诉客户端:
    
    - 客户端没有执行该操作的权限
    - 客户端没有访问该资源的权限
    - 客户端要访问的项目不存在
    - 等等
    
    遇到这些情况时,通常要返回 **4XX**(400 至 499)**HTTP 状态码**。
    
    这与表示请求成功的 **2XX**(200 至 299)HTTP 状态码类似。那些“200”状态码表示某种程度上的“成功”。
    
    而 **4XX** 状态码表示客户端发生了错误。
    
    大家都知道**「404 Not Found」**错误,还有调侃这个错误的笑话吧?
    
    ## 使用 `HTTPException` { #use-httpexception }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 8.2K bytes
    - Click Count (0)
  6. docs/zh-hant/docs/tutorial/handling-errors.md

    # 錯誤處理 { #handling-errors }
    
    在許多情況下,你需要通知使用你 API 的用戶端發生錯誤。
    
    這個用戶端可能是帶有前端的瀏覽器、他人的程式碼、IoT 裝置等。
    
    你可能需要告訴用戶端:
    
    * 用戶端沒有足夠權限執行該操作。
    * 用戶端沒有權限存取該資源。
    * 用戶端嘗試存取的項目不存在。
    * 等等。
    
    在這些情況下,通常會回傳範圍為 400(400 到 499)的 HTTP 狀態碼。
    
    這類似於 200 範圍的 HTTP 狀態碼(200 到 299)。那些「200」狀態碼表示請求在某種程度上是「成功」的。
    
    400 範圍的狀態碼表示用戶端錯誤。
    
    還記得那些「404 Not Found」錯誤(和梗)嗎?
    
    ## 使用 `HTTPException` { #use-httpexception }
    
    要向用戶端回傳帶有錯誤的 HTTP 回應,使用 `HTTPException`。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 8.3K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/core/io/PropertiesUtil.java

     *
     * @author higa
     */
    public abstract class PropertiesUtil {
    
        /**
         * Do not instantiate.
         */
        protected PropertiesUtil() {
        }
    
        /**
         * Wraps exception handling for {@link Properties#load(InputStream)}.
         * <p>
         * The input stream is not closed.
         * </p>
         *
         * @param props the property set (must not be {@literal null})
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Thu Jul 31 08:16:49 GMT 2025
    - 7.9K bytes
    - Click Count (0)
  8. fastapi/exceptions.py

        This is for client errors, invalid authentication, invalid data, etc. Not for server
        errors in your code.
    
        Read more about it in the
        [FastAPI docs for Handling Errors](https://fastapi.tiangolo.com/tutorial/handling-errors/).
    
        ## Example
    
        ```python
        from fastapi import FastAPI, HTTPException
    
        app = FastAPI()
    
        items = {"foo": "The Foo Wrestlers"}
    
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Feb 11 18:41:21 GMT 2026
    - 7.3K bytes
    - Click Count (0)
  9. docs/en/docs/how-to/custom-request-and-route.md

    * Converting non-JSON request bodies to JSON (e.g. [`msgpack`](https://msgpack.org/index.html)).
    * Decompressing gzip-compressed request bodies.
    * Automatically logging all request bodies.
    
    ## Handling custom request body encodings { #handling-custom-request-body-encodings }
    
    Let's see how to make use of a custom `Request` subclass to decompress gzip requests.
    
    And an `APIRoute` subclass to use that custom request class.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 4.4K bytes
    - Click Count (0)
  10. .github/ISSUE_TEMPLATE/11-language-change.yml

        validations:
          required: true
    
      - type: textarea
        id: error-handling-proposal
        attributes:
          label: Does this affect error handling?
          description: If so, how does this differ from previous error handling proposals?
          placeholder: |
           Yes or No
    
           If yes, 
            1.how does this differ from previous error handling proposals?
    
        validations:
          required: true
    
      - type: textarea
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Thu Aug 08 19:02:29 GMT 2024
    - 4.7K bytes
    - Click Count (0)
Back to Top