Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 97 for 1315 (0.03 sec)

  1. src/archive/zip/struct.go

    	return time.Date(
    		// date bits 0-4: day of month; 5-8: month; 9-15: years since 1980
    		int(dosDate>>9+1980),
    		time.Month(dosDate>>5&0xf),
    		int(dosDate&0x1f),
    
    		// time bits 0-4: second/2; 5-10: minute; 11-15: hour
    		int(dosTime>>11),
    		int(dosTime>>5&0x3f),
    		int(dosTime&0x1f*2),
    		0, // nanoseconds
    
    		time.UTC,
    	)
    }
    
    // timeToMsDosTime converts a time.Time to an MS-DOS date and time.
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue May 28 21:41:09 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. docs/de/docs/tutorial/handling-errors.md

    ```JSON
    {
      "title": "towel",
      "size": "XL"
    }
    ```
    
    Sie erhalten eine Response, die Ihnen sagt, dass die Daten ungültig sind, und welche den empfangenen Body enthält.
    
    ```JSON hl_lines="12-15"
    {
      "detail": [
        {
          "loc": [
            "body",
            "size"
          ],
          "msg": "value is not a valid integer",
          "type": "type_error.integer"
        }
      ],
      "body": {
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/handling-errors.md

    ```JSON
    {
      "title": "towel",
      "size": "XL"
    }
    ```
    
    You will receive a response telling you that the data is invalid containing the received body:
    
    ```JSON hl_lines="12-15"
    {
      "detail": [
        {
          "loc": [
            "body",
            "size"
          ],
          "msg": "value is not a valid integer",
          "type": "type_error.integer"
        }
      ],
      "body": {
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. docs/zh/docs/tutorial/handling-errors.md

    {!../../docs_src/handling_errors/tutorial005.py!}
    
    ```
    
    现在试着发送一个无效的 `item`,例如:
    
    ```JSON
    {
      "title": "towel",
      "size": "XL"
    }
    
    ```
    
    收到的响应包含 `body` 信息,并说明数据是无效的:
    
    ```JSON hl_lines="12-15"
    {
      "detail": [
        {
          "loc": [
            "body",
            "size"
          ],
          "msg": "value is not a valid integer",
          "type": "type_error.integer"
        }
      ],
      "body": {
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. docs/ko/docs/tutorial/request-files.md

    ///
    
    ## 다중 파일 업로드
    
    여러 파일을 동시에 업로드 할 수 있습니다.
    
    그들은 "폼 데이터"를 사용하여 전송된 동일한 "폼 필드"에 연결됩니다.
    
    이 기능을 사용하기 위해 , `bytes` 의 `List` 또는 `UploadFile` 를 선언하기 바랍니다:
    
    ```Python hl_lines="10  15"
    {!../../docs_src/request_files/tutorial002.py!}
    ```
    
    선언한대로, `bytes` 의 `list` 또는 `UploadFile` 들을 전송받을 것입니다.
    
    /// note | "참고"
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/dependencies/dependencies-with-yield.md

    ```
    
    ////
    
    //// tab | Python 3.8+
    
    ```Python hl_lines="14-15"
    {!> ../../docs_src/dependencies/tutorial008c_an.py!}
    ```
    
    ////
    
    //// tab | Python 3.8+ non-Annotated
    
    /// tip
    
    Prefer to use the `Annotated` version if possible.
    
    ///
    
    ```Python hl_lines="13-14"
    {!> ../../docs_src/dependencies/tutorial008c.py!}
    ```
    
    ////
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 14K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/avx512enc/avx512_vbmi2.s

    	VPSHLDQ $13, Z0, Z27, K7, Z23                      // 62e3a54771f80d
    	VPSHLDQ $13, -17(BP)(SI*2), Z27, K7, Z23           // 62e3a54771bc75efffffff0d
    	VPSHLDQ $13, 7(AX)(CX*2), Z27, K7, Z23             // 62e3a54771bc48070000000d
    	VPSHLDQ $13, Z3, Z14, K7, Z23                      // 62e38d4f71fb0d
    	VPSHLDQ $13, Z0, Z14, K7, Z23                      // 62e38d4f71f80d
    	VPSHLDQ $13, -17(BP)(SI*2), Z14, K7, Z23           // 62e38d4f71bc75efffffff0d
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue May 22 14:57:15 UTC 2018
    - 97.1K bytes
    - Viewed (0)
  8. docs/pt/docs/tutorial/dependencies/dependencies-with-yield.md

    ```
    
    ////
    
    //// tab | Python 3.8+
    
    ```Python hl_lines="14-15"
    {!> ../../docs_src/dependencies/tutorial008c_an.py!}
    ```
    
    ////
    
    //// tab | Python 3.8+ non-annotated
    
    /// tip | "dica"
    
    utilize a versão com `Annotated` se possível.
    
    ///
    
    ```Python hl_lines="13-14"
    {!> ../../docs_src/dependencies/tutorial008c.py!}
    ```
    
    ////
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  9. api/go1.4.txt

    # CL 86160044 os: Implement symlink support for Windows, Michael Fraenkel <******@****.***>
    pkg syscall (windows-386), const ERROR_PRIVILEGE_NOT_HELD = 1314
    pkg syscall (windows-386), const ERROR_PRIVILEGE_NOT_HELD Errno
    pkg syscall (windows-amd64), const ERROR_PRIVILEGE_NOT_HELD = 1314
    pkg syscall (windows-amd64), const ERROR_PRIVILEGE_NOT_HELD Errno
    
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Dec 12 03:01:01 UTC 2014
    - 34K bytes
    - Viewed (0)
  10. .teamcity/performance-test-durations.json

        "testProject" : "bigNative",
        "linux" : 499
      }, {
        "testProject" : "mediumNative",
        "linux" : 178
      }, {
        "testProject" : "multiNative",
        "linux" : 1135
      }, {
        "testProject" : "smallNative",
        "linux" : 131
      } ]
    }, {
      "scenario" : "org.gradle.performance.experiment.nativeplatform.NativePreCompiledHeaderPerformanceTest.clean assemble with precompiled headers",
      "durations" : [ {
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Thu Sep 12 14:38:24 UTC 2024
    - 27.9K bytes
    - Viewed (0)
Back to top