Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 88 for None (0.28 sec)

  1. api/go1.3.txt

    pkg syscall (netbsd-386), const MAP_INHERIT_DONATE_COPY = 3
    pkg syscall (netbsd-386), const MAP_INHERIT_DONATE_COPY ideal-int
    pkg syscall (netbsd-386), const MAP_INHERIT_NONE = 2
    pkg syscall (netbsd-386), const MAP_INHERIT_NONE ideal-int
    pkg syscall (netbsd-386), const MAP_INHERIT_SHARE = 0
    pkg syscall (netbsd-386), const MAP_INHERIT_SHARE ideal-int
    pkg syscall (netbsd-386), const MAP_NORESERVE = 64
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Mon Jun 02 02:45:00 GMT 2014
    - 117K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/expr_test.go

    				t.Errorf("#%d: %q: expected error %q; got none", i, test.input, test.error)
    			}
    			continue
    		}
    		if !strings.Contains(err.Error(), test.error) {
    			t.Errorf("#%d: expected error %q; got %q", i, test.error, err)
    			continue
    		}
    	}
    }
    
    func runBadTest(i int, test badExprTest, t *testing.T) (err error) {
    	p := NewParser(nil, nil, nil) // Expression evaluation uses none of these fields of the parser.
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 29 07:48:38 GMT 2023
    - 3.2K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/arch/arm.go

    }
    
    // IsARMCMP reports whether the op (as defined by an arm.A* constant) is
    // one of the comparison instructions that require special handling.
    func IsARMCMP(op obj.As) bool {
    	switch op {
    	case arm.ACMN, arm.ACMP, arm.ATEQ, arm.ATST:
    		return true
    	}
    	return false
    }
    
    // IsARMSTREX reports whether the op (as defined by an arm.A* constant) is
    // one of the STREX-like instructions that require special handling.
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Nov 18 17:59:44 GMT 2022
    - 6.1K bytes
    - Viewed (0)
  4. src/bytes/boundary_test.go

    	if err != nil {
    		t.Fatalf("mmap failed %s", err)
    	}
    	err = syscall.Mprotect(b[:pagesize], syscall.PROT_NONE)
    	if err != nil {
    		t.Fatalf("mprotect low failed %s\n", err)
    	}
    	err = syscall.Mprotect(b[2*pagesize:], syscall.PROT_NONE)
    	if err != nil {
    		t.Fatalf("mprotect high failed %s\n", err)
    	}
    	return b[pagesize : 2*pagesize]
    }
    
    func TestEqualNearPageBoundary(t *testing.T) {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 30 20:05:58 GMT 2023
    - 2.8K bytes
    - Viewed (0)
  5. api/go1.5.txt

    pkg debug/elf, const R_PPC64_GOT_TPREL16_LO_DS R_PPC64
    pkg debug/elf, const R_PPC64_JMP_SLOT = 21
    pkg debug/elf, const R_PPC64_JMP_SLOT R_PPC64
    pkg debug/elf, const R_PPC64_NONE = 0
    pkg debug/elf, const R_PPC64_NONE R_PPC64
    pkg debug/elf, const R_PPC64_REL14 = 11
    pkg debug/elf, const R_PPC64_REL14 R_PPC64
    pkg debug/elf, const R_PPC64_REL14_BRNTAKEN = 13
    pkg debug/elf, const R_PPC64_REL14_BRNTAKEN R_PPC64
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Jul 30 21:14:09 GMT 2015
    - 46.6K bytes
    - Viewed (0)
  6. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const IPPROTO_CARP = 112
    pkg syscall (netbsd-arm64-cgo), const IPPROTO_CARP ideal-int
    pkg syscall (netbsd-arm64-cgo), const IPPROTO_DONE = 257
    pkg syscall (netbsd-arm64-cgo), const IPPROTO_DONE ideal-int
    pkg syscall (netbsd-arm64-cgo), const IPPROTO_DSTOPTS = 60
    pkg syscall (netbsd-arm64-cgo), const IPPROTO_DSTOPTS ideal-int
    pkg syscall (netbsd-arm64-cgo), const IPPROTO_EGP = 8
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  7. src/archive/zip/reader_test.go

    	// test simultaneous reads
    	n := 0
    	done := make(chan bool)
    	for i := 0; i < 5; i++ {
    		for j, ft := range zt.File {
    			go func(j int, ft ZipTestFile) {
    				readTestFile(t, zt, ft, z.File[j], raw)
    				done <- true
    			}(j, ft)
    			n++
    		}
    	}
    	for ; n > 0; n-- {
    		<-done
    	}
    }
    
    func equalTimeAndZone(t1, t2 time.Time) bool {
    	name1, offset1 := t1.Zone()
    	name2, offset2 := t2.Zone()
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Mar 27 18:23:49 GMT 2024
    - 55.3K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/line_test.go

    		parser := NewParser(ctxt, arch, tokenizer)
    
    		err := tryParse(t, func() {
    			parser.Parse()
    		})
    
    		switch {
    		case err == nil:
    			t.Errorf("#%d: %q: want error %q; have none", i, test.input, test.error)
    		case !strings.Contains(err.Error(), test.error):
    			t.Errorf("#%d: %q: want error %q; have %q", i, test.input, test.error, err)
    		}
    	}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 29 07:48:38 GMT 2023
    - 1.9K bytes
    - Viewed (0)
  9. api/go1.6.txt

    pkg debug/elf, const R_MIPS_LITERAL = 8
    pkg debug/elf, const R_MIPS_LITERAL R_MIPS
    pkg debug/elf, const R_MIPS_LO16 = 6
    pkg debug/elf, const R_MIPS_LO16 R_MIPS
    pkg debug/elf, const R_MIPS_NONE = 0
    pkg debug/elf, const R_MIPS_NONE R_MIPS
    pkg debug/elf, const R_MIPS_PC16 = 10
    pkg debug/elf, const R_MIPS_PC16 R_MIPS
    pkg debug/elf, const R_MIPS_PJUMP = 35
    pkg debug/elf, const R_MIPS_PJUMP R_MIPS
    pkg debug/elf, const R_MIPS_REL16 = 33
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Jan 13 23:40:13 GMT 2016
    - 12.9K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/flags/flags.go

    )
    
    var DebugFlags struct {
    	MayMoreStack string `help:"call named function before all stack growth checks"`
    	PCTab        string `help:"print named pc-value table\nOne of: pctospadj, pctofile, pctoline, pctoinline, pctopcdata"`
    }
    
    var (
    	D        MultiFlag
    	I        MultiFlag
    	PrintOut int
    	DebugV   bool
    )
    
    func init() {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 22 19:18:23 GMT 2023
    - 2.8K bytes
    - Viewed (0)
Back to top