Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for NZ (0.02 sec)

  1. test/abi/f_ret_z_not.go

    // on stdout, and causes the expected output to not match.
    
    package main
    
    import "fmt"
    
    type Z struct {
    }
    
    type NZ struct {
    	x, y int
    }
    
    //go:noinline
    func f(x, y int) (Z, NZ, Z) {
    	var z Z
    	return z, NZ{x, y}, z
    }
    
    //go:noinline
    func g() (Z, NZ, Z) {
    	a, b, c := f(3, 4)
    	return c, b, a
    }
    
    func main() {
    	_, b, _ := g()
    	fmt.Println(b.x + b.y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 616 bytes
    - Viewed (0)
  2. src/math/fma.go

    	} else {
    		// Subtracting (pm1:pm2) - (zm1:zm2)
    		// TODO: should we special-case cancellation?
    		pm2, c = bits.Sub64(pm2, zm2, 0)
    		pm1, _ = bits.Sub64(pm1, zm1, c)
    		nz := lz(pm1, pm2)
    		pe -= nz
    		m, pm2 = shl(pm1, pm2, uint(nz-1))
    		m |= nonzero(pm2)
    	}
    
    	// Round and break ties to even
    	if pe > 1022+bias || pe == 1022+bias && (m+1<<9)>>63 == 1 {
    		// rounded value overflows exponent range
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 05 22:05:30 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. src/crypto/internal/edwards25519/edwards25519_test.go

    		if lhs.Equal(&rhs) != 1 {
    			t.Errorf("X, Y, and Z do not specify a point on the curve\nX = %v\nY = %v\nZ = %v", p.x, p.y, p.z)
    		}
    		// xy = T/Z
    		lhs.Multiply(&p.x, &p.y)
    		rhs.Multiply(&p.z, &p.t)
    		if lhs.Equal(&rhs) != 1 {
    			t.Errorf("point %d is not valid\nX = %v\nY = %v\nZ = %v", i, p.x, p.y, p.z)
    		}
    	}
    }
    
    func TestGenerator(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 18:45:00 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  4. src/regexp/syntax/prog_test.go

    package syntax
    
    import "testing"
    
    var compileTests = []struct {
    	Regexp string
    	Prog   string
    }{
    	{"a", `  0	fail
      1*	rune1 "a" -> 2
      2	match
    `},
    	{"[A-M][n-z]", `  0	fail
      1*	rune "AM" -> 2
      2	rune "nz" -> 3
      3	match
    `},
    	{"", `  0	fail
      1*	nop -> 2
      2	match
    `},
    	{"a?", `  0	fail
      1	rune1 "a" -> 3
      2*	alt -> 1, 3
      3	match
    `},
    	{"a??", `  0	fail
      1	rune1 "a" -> 3
      2*	alt -> 3, 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 04:39:42 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. tools/go-compile-verbose

    START="$(date -u +%s.%N)"
    
    # Output a message, with a timestamp matching istio log format
    function log() {
      delta=$(date +%s.%N --date="$START seconds ago")
      echo -e "$(date -u '+%Y-%m-%dT%H:%M:%S.%NZ')\t${delta}\t$*" >&2 >> /tmp/golog
    }
    
    GROOT="$(go env GOROOT)"
    GPATH="$(go env GOPATH)"
    GMODCACHE="$(go env GOMODCACHE)"
    ROOT="$PWD"
    
    $@
    ls="$(basename $1)"
    shift
    case "$ls" in
      link)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 18:18:29 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  6. src/mime/multipart/writer_test.go

    	if err != nil {
    		t.Fatalf("Unable to create part: %v", err)
    	}
    	part.Write([]byte("foo"))
    
    	w.Close()
    
    	want := "--MIMEBOUNDARY\r\nA: 2\r\nB: 5\r\nB: 7\r\nB: 6\r\nC: 4\r\nM: 3\r\nZ: 1\r\n\r\nfoo\r\n--MIMEBOUNDARY--\r\n"
    	if want != buf.String() {
    		t.Fatalf("\n got: %q\nwant: %q\n", buf.String(), want)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 17:36:47 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  7. prow/lib.sh

          gdate "$@"
          ;;
        *)
          date "$@"
          ;;
      esac
    }
    
    # Output a message, with a timestamp matching istio log format
    function log() {
      echo -e "$(date_cmd -u '+%Y-%m-%dT%H:%M:%S.%NZ')\t$*"
    }
    
    # Trace runs the provided command and records additional timing information
    # NOTE: to avoid spamming the logs, we disable xtrace and re-enable it before executing the function
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. src/crypto/tls/testdata/Server-TLSv12-ExportKeyingMaterial

    00000030  3e f9 07 a9 91 ad 0d c7  23 bd 7f 04 cf 4d a0 eb  |>.......#....M..|
    00000040  58 e0 e1 37 73 d3 cc 4b  e2 7f 6d 3a 2e 47 b5 b4  |X..7s..K..m:.G..|
    00000050  60 dd e6 9a ea 30 1e 6e  7a e7 8e 84 ca 49 38 16  |`....0.nz....I8.|
    00000060  7e 51 5c e5 15 c0 58 7d  a2 ba e2 ca 90 24 11 ea  |~Q\...X}.....$..|
    00000070  53 9c 7d cb 47 13 91 cf  f6 05 f0 2f db 57 1a 40  |S.}.G....../.W.@|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  9. src/crypto/tls/testdata/Client-TLSv13-X25519-ECDHE

    00000270  50 49 ff 47 ba 47 6d e1  bb 2d 8f 77 d5 44 a9 87  |PI.G.Gm..-.w.D..|
    00000280  2a 05 12 52 bf 2b e2 4b  64 94 9c 89 bb 2c 65 cb  |*..R.+.Kd....,e.|
    00000290  59 2a f0 1a 15 b2 e3 6e  5a cc 48 b4 44 6c 44 07  |Y*.....nZ.H.DlD.|
    000002a0  80 01 93 25 86 83 f2 8f  01 e6 ef 5e 9a 36 4e 7f  |...%.......^.6N.|
    000002b0  bc 27 0e 4d f0 67 3a de  29 b5 e9 6a 7f 4b b4 77  |.'.M.g:.)..j.K.w|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Server-TLSv13-CHACHA20-SHA256

    00000260  2b b4 c0 5a d1 07 a7 45  17 93 d6 a5 50 d0 e4 cc  |+..Z...E....P...|
    00000270  97 85 5d 06 21 62 e2 95  d7 b5 a5 a9 08 cf 34 f4  |..].!b........4.|
    00000280  ae cc 17 e4 0e 4e 5a 13  b1 73 03 45 b9 29 b5 45  |.....NZ..s.E.).E|
    00000290  77 a1 4b 2f 8f c5 72 41  dc ab f9 b7 f3 72 28 f4  |w.K/..rA.....r(.|
    000002a0  cb 08 07 0a 20 7c 8b 26  70 92 7b 7b b9 99 61 0a  |.... |.&p.{{..a.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 7.3K bytes
    - Viewed (0)
Back to top