Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 346 for 99$ (0.03 sec)

  1. src/math/rand/normal.go

    func (r *Rand) NormFloat64() float64 {
    	for {
    		j := int32(r.Uint32()) // Possibly negative
    		i := j & 0x7F
    		x := float64(j) * float64(wn[i])
    		if absInt32(j) < kn[i] {
    			// This case should be hit better than 99% of the time.
    			return x
    		}
    
    		if i == 0 {
    			// This extra work is only required for the base strip.
    			for {
    				x = -math.Log(r.Float64()) * (1.0 / rn)
    				y := -math.Log(r.Float64())
    				if y+y >= x*x {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/RequestTest.kt

        assertThat(requestC.tag(String::class.java)).isSameAs("c")
      }
    
      @Test
      fun requestToStringRedactsSensitiveHeaders() {
        val headers =
          Headers.Builder()
            .add("content-length", "99")
            .add("authorization", "peanutbutter")
            .add("proxy-authorization", "chocolate")
            .add("cookie", "drink=coffee")
            .add("set-cookie", "accessory=sugar")
            .add("user-agent", "OkHttp")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. src/crypto/tls/testdata/Server-TLSv13-ClientAuthRequestedAndECDSAGiven

    00000100  4d ea 15 fa 94 e0 7f 70  c1 c8 9c 55 f0 96 38 42  |M......p...U..8B|
    00000110  76 d4 26 6d a7 73 11 59  43 19 2f 49 70 a9 18 1c  |v.&m.s.YC./Ip...|
    00000120  12 9e ee d3 eb ca 1c c0  3b e1 99 e3 c2 25 de 39  |........;....%.9|
    00000130  1a 15 e0 d7 20 9d 1b 95  74 8c ee 96 7b 5e de 13  |.... ...t...{^..|
    00000140  99 56 54 a2 31 7b e9 96  02 9e 86 7b 15 9d c6 3e  |.VT.1{.....{...>|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go

    	SYS_LCHOWN                  = 94
    	SYS_UMASK                   = 95
    	SYS_GETTIMEOFDAY            = 96
    	SYS_GETRLIMIT               = 97
    	SYS_GETRUSAGE               = 98
    	SYS_SYSINFO                 = 99
    	SYS_TIMES                   = 100
    	SYS_PTRACE                  = 101
    	SYS_GETUID                  = 102
    	SYS_SYSLOG                  = 103
    	SYS_GETGID                  = 104
    	SYS_SETUID                  = 105
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  5. pkg/controller/ttl/ttl_controller_test.go

    		expectedTTL  int
    	}{
    		{
    			addNode:      true,
    			nodeCount:    0,
    			desiredTTL:   0,
    			boundaryStep: 0,
    			expectedTTL:  0,
    		},
    		{
    			addNode:      true,
    			nodeCount:    99,
    			desiredTTL:   0,
    			boundaryStep: 0,
    			expectedTTL:  0,
    		},
    		{
    			addNode:      true,
    			nodeCount:    100,
    			desiredTTL:   0,
    			boundaryStep: 0,
    			expectedTTL:  15,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go

    	SYS_TRUNCATE                = 92
    	SYS_FTRUNCATE               = 93
    	SYS_FCHMOD                  = 94
    	SYS_GETPRIORITY             = 96
    	SYS_SETPRIORITY             = 97
    	SYS_STATFS                  = 99
    	SYS_FSTATFS                 = 100
    	SYS_SOCKETCALL              = 102
    	SYS_SYSLOG                  = 103
    	SYS_SETITIMER               = 104
    	SYS_GETITIMER               = 105
    	SYS_STAT                    = 106
    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. .github/workflows/build.yml

            run: |
              echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
              sudo udevadm control --reload-rules
              sudo udevadm trigger --name-match=kvm
    
          - name: Setup Gradle
            uses: gradle/actions/setup-gradle@v3
    
          - name: Gradle cache
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 01:51:50 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go

    	SYS_SELECT                  = 93
    	SYS_FSYNC                   = 95
    	SYS_SETPRIORITY             = 96
    	SYS_SOCKET                  = 97
    	SYS_CONNECT                 = 98
    	SYS_ACCEPT                  = 99
    	SYS_GETPRIORITY             = 100
    	SYS_RT_SIGRETURN            = 101
    	SYS_RT_SIGACTION            = 102
    	SYS_RT_SIGPROCMASK          = 103
    	SYS_RT_SIGPENDING           = 104
    	SYS_RT_SIGTIMEDWAIT         = 105
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  9. src/crypto/tls/testdata/Client-TLSv13-ClientCert-ECDSA-RSA

    000000f0  bb 29 07 30 ff f6 84 af  c4 cf c2 ed 90 99 5f 58  |.).0.........._X|
    00000100  cb 3b 74                                          |.;t|
    >>> Flow 2 (server to client)
    00000000  16 03 03 00 7a 02 00 00  76 03 03 ea 8b 99 cb 5b  |....z...v......[|
    00000010  d8 fb e9 14 7f 17 20 9c  b8 41 01 dd ce 8a 90 4e  |...... ..A.....N|
    00000020  a9 f0 fb eb 71 37 24 02  d2 ee 96 20 00 00 00 00  |....q7$.... ....|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. test/codegen/README

    This means, for example, that the "MULQ" regexp is equivalent to
    "^MULQ" (^ representing the start of the line), and it will NOT match
    the following assembly line:
    
      IMULQ	$99, AX
    
    To force a match at any point of the line, ".*MULQ" should be used.
    
    For the same reason, a negative regexp like -"memmove" is not enough
    to make sure that no memmove call is included in the assembly. A
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 18 19:55:29 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top