Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 115 for 49 (0.14 sec)

  1. cmd/apierrorcode_string.go

    	_ = x[ErrRemoteTargetNotFoundError-45]
    	_ = x[ErrReplicationRemoteConnectionError-46]
    	_ = x[ErrReplicationBandwidthLimitError-47]
    	_ = x[ErrBucketRemoteIdenticalToSource-48]
    	_ = x[ErrBucketRemoteAlreadyExists-49]
    	_ = x[ErrBucketRemoteLabelInUse-50]
    	_ = x[ErrBucketRemoteArnTypeInvalid-51]
    	_ = x[ErrBucketRemoteArnInvalid-52]
    	_ = x[ErrBucketRemoteRemoveDisallowed-53]
    	_ = x[ErrRemoteTargetNotVersionedError-54]
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sat Apr 06 06:44:30 GMT 2024
    - 21.1K bytes
    - Viewed (0)
  2. docs/en/docs/img/deployment/https/https06.drawio

                                <mxPoint x="-40" y="290"/>
                            </Array>
                        </mxGeometry>
                    </mxCell>
                    <mxCell id="49" value="" style="rounded=0;whiteSpace=wrap;html=1;fontStyle=1;strokeWidth=4;fillColor=#fff2cc;strokeColor=#d6b656;" parent="1" vertex="1">
                        <mxGeometry x="510" y="400" width="310" height="320" as="geometry"/>
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Thu May 12 00:06:16 GMT 2022
    - 17.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/math/IntMath.java

      @VisibleForTesting
      static int[] biggestBinomials = {
        Integer.MAX_VALUE,
        Integer.MAX_VALUE,
        65536,
        2345,
        477,
        193,
        110,
        75,
        58,
        49,
        43,
        39,
        37,
        35,
        34,
        34,
        33
      };
    
      /**
       * Returns the arithmetic mean of {@code x} and {@code y}, rounded towards negative infinity. This
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Feb 07 17:50:39 GMT 2024
    - 23.5K bytes
    - Viewed (0)
  4. api/go1.7.txt

    pkg debug/elf, const R_390_TLS_IE32 = 47
    pkg debug/elf, const R_390_TLS_IE32 R_390
    pkg debug/elf, const R_390_TLS_IE64 = 48
    pkg debug/elf, const R_390_TLS_IE64 R_390
    pkg debug/elf, const R_390_TLS_IEENT = 49
    pkg debug/elf, const R_390_TLS_IEENT R_390
    pkg debug/elf, const R_390_TLS_LDCALL = 39
    pkg debug/elf, const R_390_TLS_LDCALL R_390
    pkg debug/elf, const R_390_TLS_LDM32 = 45
    pkg debug/elf, const R_390_TLS_LDM32 R_390
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Jun 28 15:08:11 GMT 2016
    - 13.6K bytes
    - Viewed (0)
  5. api/go1.6.txt

    pkg debug/elf, const R_MIPS_TLS_TPREL32 = 47
    pkg debug/elf, const R_MIPS_TLS_TPREL32 R_MIPS
    pkg debug/elf, const R_MIPS_TLS_TPREL64 = 48
    pkg debug/elf, const R_MIPS_TLS_TPREL64 R_MIPS
    pkg debug/elf, const R_MIPS_TLS_TPREL_HI16 = 49
    pkg debug/elf, const R_MIPS_TLS_TPREL_HI16 R_MIPS
    pkg debug/elf, const R_MIPS_TLS_TPREL_LO16 = 50
    pkg debug/elf, const R_MIPS_TLS_TPREL_LO16 R_MIPS
    pkg debug/elf, const SHF_COMPRESSED = 2048
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Jan 13 23:40:13 GMT 2016
    - 12.9K bytes
    - Viewed (0)
  6. docs/en/docs/img/deployment/https/https04.drawio

                                <mxPoint x="-40" y="290"/>
                            </Array>
                        </mxGeometry>
                    </mxCell>
                    <mxCell id="49" value="" style="rounded=0;whiteSpace=wrap;html=1;fontStyle=1;strokeWidth=4;fillColor=#fff2cc;strokeColor=#d6b656;" parent="1" vertex="1">
                        <mxGeometry x="510" y="400" width="310" height="320" as="geometry"/>
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Thu May 12 00:06:16 GMT 2022
    - 14K bytes
    - Viewed (0)
  7. docs/zh-hant/docs/index.md

    ![ReDoc](https://fastapi.tiangolo.com/img/index/index-02-redoc-simple.png)
    
    ## 範例升級
    
    現在繼續修改 `main.py` 檔案,來接收一個帶有 body 的 `PUT` 請求。
    
    我們使用 Pydantic 來使用標準的 Python 型別聲明請求。
    
    ```Python hl_lines="4  9-12  25-27"
    from typing import Union
    
    from fastapi import FastAPI
    from pydantic import BaseModel
    
    app = FastAPI()
    
    
    class Item(BaseModel):
        name: str
        price: float
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 23:58:47 GMT 2024
    - 18.8K bytes
    - Viewed (0)
  8. docs/pt/docs/index.md

    ## Evoluindo o Exemplo
    
    Agora modifique o arquivo `main.py` para receber um corpo para uma requisição `PUT`.
    
    Declare o corpo utilizando tipos padrão Python, graças ao Pydantic.
    
    ```Python hl_lines="4  9-12  25-27"
    from typing import Union
    
    from fastapi import FastAPI
    from pydantic import BaseModel
    
    app = FastAPI()
    
    
    class Item(BaseModel):
        name: str
        price: float
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 23:58:47 GMT 2024
    - 18.7K bytes
    - Viewed (0)
  9. docs/en/data/people.yml

      url: https://github.com/JavierSanchezCastro
    - login: n8sty
      count: 52
      avatarUrl: https://avatars.githubusercontent.com/u/2964996?v=4
      url: https://github.com/n8sty
    - login: sm-Fifteen
      count: 49
      avatarUrl: https://avatars.githubusercontent.com/u/516999?u=437c0c5038558c67e887ccd863c1ba0f846c03da&v=4
      url: https://github.com/sm-Fifteen
    - login: yinziyan1206
      count: 48
    Others
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Mon Apr 01 23:12:23 GMT 2024
    - 56.9K bytes
    - Viewed (0)
  10. docs/sts/web-identity.md

    ```
    $ go run web-identity.go -cid 204367807228-ok7601k6gj1pgge7m09h7d79co8p35xx.apps.googleusercontent.com -csec XsT_PgPdT1nO9DD45rMLJw7G
    2018/12/26 17:49:36 listening on http://localhost:8080/
    ```
    
    > NOTE: for a reasonable test outcome, make sure the assumed user has at least permission/policy to list all buckets. That policy would look like below:
    
    ```
    {
    Plain Text
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 19.2K bytes
    - Viewed (1)
Back to top