Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for NZ (0.05 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/runtime/malloc_test.go

    	fields := map[string][]func(any) error{
    		"Alloc": {nz, le(1e10)}, "TotalAlloc": {nz, le(1e11)}, "Sys": {nz, le(1e10)},
    		"Lookups": {eq(uint64(0))}, "Mallocs": {nz, le(1e10)}, "Frees": {nz, le(1e10)},
    		"HeapAlloc": {nz, le(1e10)}, "HeapSys": {nz, le(1e10)}, "HeapIdle": {le(1e10)},
    		"HeapInuse": {nz, le(1e10)}, "HeapReleased": {le(1e10)}, "HeapObjects": {nz, le(1e10)},
    		"StackInuse": {nz, le(1e10)}, "StackSys": {nz, le(1e10)},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. src/image/jpeg/scan.go

    	return nil
    }
    
    // refineNonZeroes refines non-zero entries of b in zig-zag order. If nz >= 0,
    // the first nz zero entries are skipped over.
    func (d *decoder) refineNonZeroes(b *block, zig, zigEnd, nz, delta int32) (int32, error) {
    	for ; zig <= zigEnd; zig++ {
    		u := unzig[zig]
    		if b[u] == 0 {
    			if nz == 0 {
    				break
    			}
    			nz--
    			continue
    		}
    		bit, err := d.decodeBit()
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  4. lib/time/zoneinfo.zip

    Indian/Chagos Indian/Christmas Indian/Cocos Indian/Comoro Indian/Kerguelen Indian/Mahe Indian/Maldives Indian/Mauritius Indian/Mayotte Indian/Reunion Iran Israel Jamaica Japan Kwajalein Libya MET MST MST7MDT Mexico/BajaNorte Mexico/BajaSur Mexico/General NZ NZ-CHAT Navajo PRC PST8PDT Pacific/Apia Pacific/Auckland Pacific/Bougainville Pacific/Chatham Pacific/Chuuk Pacific/Easter Pacific/Efate Pacific/Enderbury Pacific/Fakaofo Pacific/Fiji Pacific/Funafuti Pacific/Galapagos Pacific/Gambier Pacific/Guadalcanal...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 18:20:41 UTC 2024
    - 392.3K bytes
    - Viewed (0)
  5. src/debug/gosym/symtab.go

    		return nil
    	})
    	if err != nil {
    		return nil, err
    	}
    
    	var t Table
    	if pcln.isGo12() {
    		t.go12line = pcln
    	}
    	fname := make(map[uint16]string)
    	t.Syms = make([]Sym, 0, n)
    	nf := 0
    	nz := 0
    	lasttyp := uint8(0)
    	err = walksymtab(symtab, func(s sym) error {
    		n := len(t.Syms)
    		t.Syms = t.Syms[0 : n+1]
    		ts := &t.Syms[n]
    		ts.Type = s.typ
    		ts.Value = s.value
    		ts.GoType = s.gotype
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  6. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    ntdll.top ntr.br ntt nu nu.ca nu.it numata.gunma.jp numata.hokkaido.jp numazu.shizuoka.jp nuoro.it nv.us nx.cn ny-1.paas.massivegrid.net ny-2.paas.massivegrid.net ny.us nyaa.am nyan.to nyc nyc.mn nyc.museum nyny.museum nysa.pl nyuzen.toyama.jp nz nz.basketball nz.eu.org návuotna.no nååmesjevuemie.no nærøy.no nøtterøy.no o.bg o.se oamishirasato.chiba.jp oarai.ibaraki.jp obama.fukui.jp obama.nagasaki.jp obanazawa.yamagata.jp obi obihiro.hokkaido.jp obira.hokkaido.jp obninsk.su observer obu.aichi.jp...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    // Absorb boolean tests into block
    (NZ (Equal         cc) yes no) => (EQ  cc yes no)
    (NZ (NotEqual      cc) yes no) => (NE  cc yes no)
    (NZ (LessThan      cc) yes no) => (LT  cc yes no)
    (NZ (LessThanU     cc) yes no) => (ULT cc yes no)
    (NZ (LessEqual     cc) yes no) => (LE  cc yes no)
    (NZ (LessEqualU    cc) yes no) => (ULE cc yes no)
    (NZ (GreaterThan   cc) yes no) => (GT  cc yes no)
    (NZ (GreaterThanU  cc) yes no) => (UGT cc yes no)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  8. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    com.nr
    
    // nu : https://en.wikipedia.org/wiki/.nu
    nu
    
    // nz : https://en.wikipedia.org/wiki/.nz
    // Submitted by registry <******@****.***.nz>
    nz
    ac.nz
    co.nz
    cri.nz
    geek.nz
    gen.nz
    govt.nz
    health.nz
    iwi.nz
    kiwi.nz
    maori.nz
    mil.nz
    māori.nz
    net.nz
    org.nz
    parliament.nz
    school.nz
    
    // om : https://en.wikipedia.org/wiki/.om
    om
    co.om
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top