Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 45 of 45 for NOR (0.03 sec)

  1. src/cmd/go/internal/test/test.go

    			// they are only treated as part of a module in 'go mod' subcommands and
    			// 'go get'. However, we still don't want to accidentally corrupt their
    			// testdata during fuzzing, nor do we want to fail with surprising errors
    			// if GOROOT isn't writable (as is often the case for Go toolchains
    			// installed through package managers).
    			//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  2. src/runtime/mheap.go

    	// simply blocking GC (by disabling preemption).
    	sweepArenas []arenaIdx
    
    	// markArenas is a snapshot of allArenas taken at the beginning
    	// of the mark cycle. Because allArenas is append-only, neither
    	// this slice nor its contents will change during the mark, so
    	// it can be read safely.
    	markArenas []arenaIdx
    
    	// curArena is the arena that the heap is currently growing
    	// into. This should always be physPageSize-aligned.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/api_test.go

    		{newDefined(Typ[Int]), Typ[Int], false},
    		{newDefined(new(Struct)), new(Struct), true},
    		{Typ[UntypedBool], Typ[Bool], true},
    		{Typ[UntypedString], Typ[Bool], false},
    		// Neither untyped string nor untyped numeric assignments arise during
    		// normal type checking, so the below behavior is technically undefined by
    		// the spec.
    		{Typ[UntypedString], Typ[String], true},
    		{Typ[UntypedInt], Typ[Int], true},
    	} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  4. src/cmd/link/internal/loader/loader.go

    	}
    	l.symPkg[i] = pkg
    }
    
    // SymLocalentry returns an offset in bytes of the "local entry" of a symbol.
    //
    // On PPC64, a value of 1 indicates the symbol does not use or preserve a TOC
    // pointer in R2, nor does it have a distinct local entry.
    func (l *Loader) SymLocalentry(i Sym) uint8 {
    	return l.localentry[i]
    }
    
    // SetSymLocalentry sets the "local entry" offset attribute for a symbol.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  5. src/go/types/api_test.go

    		{newDefined(Typ[Int]), Typ[Int], false},
    		{newDefined(new(Struct)), new(Struct), true},
    		{Typ[UntypedBool], Typ[Bool], true},
    		{Typ[UntypedString], Typ[Bool], false},
    		// Neither untyped string nor untyped numeric assignments arise during
    		// normal type checking, so the below behavior is technically undefined by
    		// the spec.
    		{Typ[UntypedString], Typ[String], true},
    		{Typ[UntypedInt], Typ[Int], true},
    	} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
Back to top