Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for 8105 (0.68 sec)

  1. docs/en/docs/advanced/security/oauth2-scopes.md

        {!> ../../../docs_src/security/tutorial005_an.py!}
        ```
    
    === "Python 3.10+ non-Annotated"
    
        !!! tip
            Prefer to use the `Annotated` version if possible.
    
        ```Python hl_lines="8  105"
        {!> ../../../docs_src/security/tutorial005_py310.py!}
        ```
    
    === "Python 3.9+ non-Annotated"
    
        !!! tip
            Prefer to use the `Annotated` version if possible.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  2. src/internal/fuzz/pcg.go

    func (r *pcgRand) bool() bool {
    	return r.uint32()&1 == 0
    }
    
    // noCopy may be embedded into structs which must not be copied
    // after the first use.
    //
    // See https://golang.org/issues/8005#issuecomment-190753527
    // for details.
    type noCopy struct{}
    
    // Lock is a no-op used by -copylocks checker from `go vet`.
    func (*noCopy) Lock()   {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:28:14 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. src/go/constant/example_test.go

    	// Output:
    	//
    	// Could not represent real part 25.3 exactly as float64
    	// literal (25.3+55i)
    	// go/constant (25.3 + 55i)
    	// complex128 (25.299999999999997+55i)
    }
    
    func ExampleBinaryOp() {
    	// 11 / 0.5
    	a := constant.MakeUint64(11)
    	b := constant.MakeFloat64(0.5)
    	c := constant.BinaryOp(a, token.QUO, b)
    	fmt.Println(c)
    
    	// Output: 22
    }
    
    func ExampleUnaryOp() {
    	vs := []constant.Value{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. src/sync/cond.go

    		uintptr(*c) != uintptr(unsafe.Pointer(c)) {
    		panic("sync.Cond is copied")
    	}
    }
    
    // noCopy may be added to structs which must not be copied
    // after the first use.
    //
    // See https://golang.org/issues/8005#issuecomment-190753527
    // for details.
    //
    // Note that it must not be embedded, due to the Lock and Unlock methods.
    type noCopy struct{}
    
    // Lock is a no-op used by -copylocks checker from `go vet`.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go

    	SYS_GETUID                  = 5100
    	SYS_SYSLOG                  = 5101
    	SYS_GETGID                  = 5102
    	SYS_SETUID                  = 5103
    	SYS_SETGID                  = 5104
    	SYS_GETEUID                 = 5105
    	SYS_GETEGID                 = 5106
    	SYS_SETPGID                 = 5107
    	SYS_GETPPID                 = 5108
    	SYS_GETPGRP                 = 5109
    	SYS_SETSID                  = 5110
    	SYS_SETREUID                = 5111
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go

    	SYS_GETUID                  = 5100
    	SYS_SYSLOG                  = 5101
    	SYS_GETGID                  = 5102
    	SYS_SETUID                  = 5103
    	SYS_SETGID                  = 5104
    	SYS_GETEUID                 = 5105
    	SYS_GETEGID                 = 5106
    	SYS_SETPGID                 = 5107
    	SYS_GETPPID                 = 5108
    	SYS_GETPGRP                 = 5109
    	SYS_SETSID                  = 5110
    	SYS_SETREUID                = 5111
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go

    	SYS_IOPERM                       = 4101
    	SYS_SOCKETCALL                   = 4102
    	SYS_SYSLOG                       = 4103
    	SYS_SETITIMER                    = 4104
    	SYS_GETITIMER                    = 4105
    	SYS_STAT                         = 4106
    	SYS_LSTAT                        = 4107
    	SYS_FSTAT                        = 4108
    	SYS_UNUSED109                    = 4109
    	SYS_IOPL                         = 4110
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go

    	SYS_IOPERM                       = 4101
    	SYS_SOCKETCALL                   = 4102
    	SYS_SYSLOG                       = 4103
    	SYS_SETITIMER                    = 4104
    	SYS_GETITIMER                    = 4105
    	SYS_STAT                         = 4106
    	SYS_LSTAT                        = 4107
    	SYS_FSTAT                        = 4108
    	SYS_UNUSED109                    = 4109
    	SYS_IOPL                         = 4110
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  9. src/crypto/tls/testdata/Client-TLSv13-ALPN

    00000240  84 57 f4 9c 3f 40 e5 27  49 9c 4c a9 98 1b 9a b3  |.W..?@.'I.L.....|
    00000250  95 83 7e 32 b7 d8 25 85  4d bf fd 14 88 c0 f7 1c  |..~2..%.M.......|
    00000260  e2 cb 46 b3 4a 39 80 fa  08 b3 c2 18 05 dd 82 e4  |..F.J9..........|
    00000270  68 5f 72 b5 53 a8 1b e7  7c 79 64 9a 3f 63 d3 50  |h_r.S...|yd.?c.P|
    00000280  df af cd 15 e7 30 2d 28  a1 24 80 ab 3e 71 83 e3  |.....0-(.$..>q..|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 7K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/upgrade/compute_test.go

    			externalEtcd:      false,
    			kubernetesVersion: "1.x.5",
    			expectedVersion:   "N/A",
    		},
    		{
    			name:              "local etcd: no supported version for 1.10.5, return the nearest version",
    			externalEtcd:      false,
    			kubernetesVersion: "1.10.5",
    			expectedVersion:   "3.3.17-0",
    		},
    		{
    			name:              "local etcd: has supported version for 1.17.0",
    			externalEtcd:      false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 08:39:51 UTC 2024
    - 34.1K bytes
    - Viewed (0)
Back to top