Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for 84375 (0.21 sec)

  1. src/math/erf.go

    	switch {
    	case IsNaN(x):
    		return NaN()
    	case IsInf(x, 1):
    		return 1
    	case IsInf(x, -1):
    		return -1
    	}
    	sign := false
    	if x < 0 {
    		x = -x
    		sign = true
    	}
    	if x < 0.84375 { // |x| < 0.84375
    		var temp float64
    		if x < Small { // |x| < 2**-28
    			if x < VeryTiny {
    				temp = 0.125 * (8.0*x + efx8*x) // avoid underflow
    			} else {
    				temp = x + efx*x
    			}
    		} else {
    			z := x * x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 11.5K bytes
    - Viewed (0)
  2. src/crypto/tls/testdata/Client-TLSv13-Ed25519

    00000030  32 23 9b 47 fc be 74 3c  e6 1b 3f cd e8 c1 f1 4f  |2#.G..t<..?....O|
    00000040  17 03 03 00 17 1a 16 bc  fe 99 30 d8 97 c1 00 d9  |..........0.....|
    00000050  fd 1a 44 bd 84 35 dc 66  62 eb 28 3d 17 03 03 00  |..D..5.fb.(=....|
    00000060  13 b4 8a 54 df ae 97 ce  2e ae fa 38 ca 02 a1 d6  |...T.......8....|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. src/crypto/tls/testdata/Server-TLSv13-AES128-SHA256

    00000180  b0 80 c9 26 79 a3 5d 89  ef 93 10 f1 37 43 07 e2  |...&y.].....7C..|
    00000190  c3 af 1f 6c 46 d8 3b c6  54 c1 d4 72 ad 15 a1 b9  |...lF.;.T..r....|
    000001a0  4f 72 74 f0 ed 62 3b 83  75 ab 12 5c 87 df 8e b8  |Ort..b;.u..\....|
    000001b0  79 af c3 f8 e0 fb f6 b7  ab ec 67 3e ec 05 a1 69  |y.........g>...i|
    000001c0  69 d5 56 45 b2 3b 5f 24  42 b9 4f 43 ec 0d 0d 6c  |i.VE.;_$B.OC...l|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  4. src/crypto/tls/testdata/Server-TLSv13-IssueTicket

    000003b0  03 17 03 03 00 35 4b 22  e9 78 9e b1 75 a9 cd 91  |.....5K".x..u...|
    000003c0  c6 4d f1 e9 f2 a7 42 59  d5 c0 9e f3 9e 8f 7a 17  |.M....BY......z.|
    000003d0  21 ba 01 5b d3 0f 91 52  63 12 d9 4f be 84 75 2e  |!..[...Rc..O..u.|
    000003e0  a2 46 a9 45 f5 d6 a1 60  a0 17 79 17 03 03 00 8b  |.F.E...`..y.....|
    000003f0  92 fc 11 26 97 33 82 f1  e4 62 5d 2a 56 3c d8 80  |...&.3...b]*V<..|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  5. src/os/user/lookup_windows.go

    	sid, _, t, e := syscall.LookupSID("", groupname)
    	if e != nil {
    		return "", e
    	}
    	// https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-samr/7b2aeb27-92fc-41f6-8437-deb65d950921#gt_0387e636-5654-4910-9519-1f8326cf5ec0
    	// SidTypeAlias should also be treated as a group type next to SidTypeGroup
    	// and SidTypeWellKnownGroup:
    	// "alias object -> resource group: A group object..."
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  6. src/cmd/internal/moddeps/moddeps_test.go

    	t.Helper()
    	goBin := testenv.GoToolPath(t)
    
    	goroot.once.Do(func() {
    		// If the root itself is a symlink to a directory,
    		// we want to follow it (see https://go.dev/issue/64375).
    		// Add a trailing separator to force that to happen.
    		root := testenv.GOROOT(t)
    		if !os.IsPathSeparator(root[len(root)-1]) {
    			root += string(filepath.Separator)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.17.md

    - Removed Alpha feature `MountContainers` ([#84365](https://github.com/kubernetes/kubernetes/pull/84365), [@codenrhoden](https://github.com/codenrhoden))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 28 10:44:33 UTC 2021
    - 346.2K bytes
    - Viewed (1)
  8. src/cmd/compile/internal/walk/order.go

    			if i == 1 {
    				// The "ok" result is an untyped boolean according to the Go
    				// spec. We need to explicitly convert it to the LHS type in
    				// case the latter is a defined boolean type (#8475).
    				tmp = typecheck.Conv(tmp, nl.Type())
    			}
    			as.Rhs = append(as.Rhs, tmp)
    		}
    	}
    
    	do(0, n.Rhs[0].Type())
    	do(1, types.Types[types.TBOOL])
    
    	o.out = append(o.out, n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/zerrors_windows.go

    	ERROR_DS_UNABLE_TO_SURRENDER_ROLES                                        syscall.Errno = 8435
    	ERROR_DS_DRA_GENERIC                                                      syscall.Errno = 8436
    	ERROR_DS_DRA_INVALID_PARAMETER                                            syscall.Errno = 8437
    	ERROR_DS_DRA_BUSY                                                         syscall.Errno = 8438
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 923.3K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.4.md

    * rkt: Convert image name to be a valid acidentifier ([#34375](https://github.com/kubernetes/kubernetes/pull/34375), [@euank](https://github.com/euank))
    * Remove stale volumes if endpoint/svc creation fails. ([#35285](https://github.com/kubernetes/kubernetes/pull/35285), [@humblec](https://github.com/humblec))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
Back to top