Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for 1979 (1.42 sec)

  1. src/crypto/tls/testdata/Client-TLSv12-ClientCert-RSA-RSAPKCS1v15

    00000280  39 7e 17 d8 74 ae 05 a3  f5 3a 71 74 e8 b4 c9 a4  |9~..t....:qt....|
    00000290  1c 82 04 ca fe 5f 97 23  8a c1 f9 ce d1 5d 0e 81  |....._.#.....]..|
    000002a0  da 5f e1 b6 76 80 3c cf  9f 19 79 cf 33 d0 0a fe  |._..v.<...y.3...|
    000002b0  19 fc 2d 9a bb 24 cd d4  79 14 03 03 00 01 01 16  |..-..$..y.......|
    000002c0  03 03 00 28 00 00 00 00  00 00 00 00 28 78 b8 0b  |...(........(x..|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go

    	SYS___LOCALTIME_A                   = 0x7B1 // 1969
    	SYS___LOCALTIME_R_A                 = 0x7B2 // 1970
    	SYS___MKTIME_A                      = 0x7B3 // 1971
    	SYS___TZZNA                         = 0x7B4 // 1972
    	SYS_UNATEXIT                        = 0x7B5 // 1973
    	SYS___CEE3DMP_A                     = 0x7B6 // 1974
    	SYS___CDUMP_A                       = 0x7B7 // 1975
    	SYS___CSNAP_A                       = 0x7B8 // 1976
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/cover_runs.txt

    go test -short -coverpkg=strings strings regexp
    ! stdout '[^0-9]0\.0%'
    stdout  'strings.*coverage:.*[1-9][0-9.]+%'
    stdout  'regexp.*coverage:.*[1-9][0-9.]+%'
    
    go test -short -cover strings math regexp
    ! stdout '[^0-9]0\.0%'
    stdout  'strings.*coverage:.*[1-9][0-9.]+%'
    stdout  'math.*coverage:.*[1-9][0-9.]+%'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 413 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/cover_cgo_xtest.txt

    [short] skip
    [!cgo] skip
    [compiler:gccgo] skip # gccgo has no cover tool
    
    # Test cgo coverage with an external test.
    
    go test -short -cover cgocover2
    stdout  'coverage:.*[1-9][0-9.]+%'
    ! stderr '[^0-9]0\.0%'
    
    -- go.mod --
    module cgocover2
    
    go 1.16
    -- p.go --
    package p
    
    /*
    void
    f(void)
    {
    }
    */
    import "C"
    
    var b bool
    
    func F() {
    	if b {
    		for {
    		}
    	}
    	C.f()
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 464 bytes
    - Viewed (0)
  5. .github/workflows/sigbuild-docker-branch.yml

      push:
        paths:
          - '.github/workflows/sigbuild-docker-branch.yml'
          - 'tensorflow/tools/tf_sig_build_dockerfiles/**'
          - '!tensorflow/tools/tf_sig_build_dockerfiles/README.md'
        branches:
          - "r[1-9].[0-9]+"
    
    permissions:
      contents: read
    
    jobs:
      docker:
        if: github.repository == 'tensorflow/tensorflow' # Don't do this in forks
        runs-on: ubuntu-latest
        strategy:
          matrix:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 18:43:43 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. docs/em/docs/how-to/extending-openapi.md

    ### 😐 **FastAPI**
    
    πŸ₯‡, ✍ 🌐 πŸ‘† **FastAPI** 🈸 πŸ›Ž:
    
    ```Python hl_lines="1  4  7-9"
    {!../../../docs_src/extending_openapi/tutorial001.py!}
    ```
    
    ### πŸ— πŸ—„ πŸ”—
    
    ‴️, βš™οΈ 🎏 πŸš™ πŸ”’ πŸ— πŸ—„ πŸ”—, πŸ”˜ `custom_openapi()` πŸ”’:
    
    ```Python hl_lines="2  15-20"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 19 19:54:04 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. docs/de/docs/how-to/extending-openapi.md

    ### Normales **FastAPI**
    
    Schreiben Sie zunΓ€chst wie gewohnt Ihre ganze **FastAPI**-Anwendung:
    
    ```Python hl_lines="1  4  7-9"
    {!../../../docs_src/extending_openapi/tutorial001.py!}
    ```
    
    ### Das OpenAPI-Schema generieren
    
    Verwenden Sie dann dieselbe Hilfsfunktion, um das OpenAPI-Schema innerhalb einer `custom_openapi()`-Funktion zu generieren:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Mar 14 16:44:05 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. docs/en/docs/how-to/extending-openapi.md

    ### Normal **FastAPI**
    
    First, write all your **FastAPI** application as normally:
    
    ```Python hl_lines="1  4  7-9"
    {!../../../docs_src/extending_openapi/tutorial001.py!}
    ```
    
    ### Generate the OpenAPI schema
    
    Then, use the same utility function to generate the OpenAPI schema, inside a `custom_openapi()` function:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 19 19:54:04 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/x86/x86asm/tables.go

    	/*1968*/ uint16(xSetOp), uint16(CVTTSD2SI),
    	/*1970*/ uint16(xReadSlashR),
    	/*1971*/ uint16(xArgR32),
    	/*1972*/ uint16(xArgXmmM64),
    	/*1973*/ uint16(xMatch),
    	/*1974*/ uint16(xSetOp), uint16(CVTTSD2SI),
    	/*1976*/ uint16(xReadSlashR),
    	/*1977*/ uint16(xArgR32),
    	/*1978*/ uint16(xArgXmmM64),
    	/*1979*/ uint16(xMatch),
    	/*1980*/ uint16(xCondDataSize), 1984, 1990, 0,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 266.8K bytes
    - Viewed (0)
  10. src/go/doc/testdata/examples/issue43658.go

    			5:  linksTo(1, 3, 4, 8, 10, 12),
    			6:  nil,
    			7:  linksTo(1, 12),
    			8:  linksTo(5, 9, 11),
    			9:  linksTo(1, 8, 12),
    			10: linksTo(3, 4, 5),
    			11: linksTo(2, 8),
    			12: linksTo(1, 5, 7, 9),
    		},
    
    		// yellow cells
    		complicated: []intset{
    			0:  linksTo(2, 4),
    			1:  linksTo(4, 8),
    			2:  linksTo(0, 3, 4, 5, 8, 9),
    			3:  linksTo(2, 8, 11),
    			4:  linksTo(0, 1, 2, 8),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 23:13:45 UTC 2022
    - 6.6K bytes
    - Viewed (0)
Back to top