Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for haslr (0.36 sec)

  1. src/runtime/unsafepoint_test.go

    			continue
    		}
    		pc, err := strconv.ParseUint(parts[1][2:], 16, 64)
    		if err != nil {
    			t.Fatalf("can't parse pc %s: %v", parts[1], err)
    		}
    		if entry == 0 {
    			entry = pc
    		}
    		// Note that some platforms do ASLR, so the PCs in the disassembly
    		// don't match PCs in the address space. Only offsets from function
    		// entry make sense.
    		unsafe := runtime.UnsafePoint(f.Entry() + uintptr(pc-entry))
    		t.Logf("unsafe: %v\n", unsafe)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 11 20:24:56 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/main.go

    	flagMsan          = flag.Bool("msan", false, "enable MSan interface")
    	flagAsan          = flag.Bool("asan", false, "enable ASan interface")
    	flagAslr          = flag.Bool("aslr", true, "enable ASLR for buildmode=c-shared on windows")
    
    	flagFieldTrack = flag.String("k", "", "set field tracking `symbol`")
    	flagLibGCC     = flag.String("libgcc", "", "compiler support lib for internal linking; use \"none\" to disable")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. src/go/scanner/scanner.go

    	// '`' opening already consumed
    	offs := s.offset - 1
    
    	hasCR := false
    	for {
    		ch := s.ch
    		if ch < 0 {
    			s.error(offs, "raw string literal not terminated")
    			break
    		}
    		s.next()
    		if ch == '`' {
    			break
    		}
    		if ch == '\r' {
    			hasCR = true
    		}
    	}
    
    	lit := s.src[offs:s.offset]
    	if hasCR {
    		lit = stripCR(lit, false)
    	}
    
    	return string(lit)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  4. tests/integration/pilot/common/traffic.go

    	}
    	if !optsSpecified && len(c.children) == 0 {
    		t.Fatal("TrafficTestCase: must specify either opts or children")
    	}
    
    	if !c.RequiresL4 {
    		c.comboFilters = append(c.comboFilters, echotest.HasL7)
    	}
    
    	job := func(t framework.TestContext) {
    		echoT := echotest.New(t, apps).
    			SetupForServicePair(func(t framework.TestContext, src echo.Callers, dsts echo.Services) error {
    				tmplData := map[string]any{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 19:10:01 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/elf.go

    	out.Write(ELF_NOTE_NETBSD_NAME)
    	out.Write8(0)
    	out.Write32(ELF_NOTE_NETBSD_VERSION)
    
    	return int(sh.Size)
    }
    
    // The race detector can't handle ASLR (address space layout randomization).
    // ASLR is on by default for NetBSD, so we turn the ASLR off explicitly
    // using a magic elf Note when building race binaries.
    
    func elfnetbsdpax(sh *ElfShdr, startva uint64, resoff uint64) int {
    	n := int(Rnd(4, 4) + Rnd(4, 4))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/elfexec/elfexec.go

    		//       VADDR=0xffffffff80200000
    		// stextOffset=0xffffffff80200198
    		//       Start=0xffffffff83200000
    		//       Limit=0xffffffff84200000
    		//      Offset=0 (0xc000000000000000 for PowerPC64) (== Start for ASLR kernel)
    		// So the base should be:
    		if stextOffset != nil && (start%pageSize) == (*stextOffset%pageSize) {
    			// perf uses the address of _stext as start. Some tools may
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/lib.go

    		}
    	}
    
    	// Enable/disable ASLR on Windows.
    	addASLRargs := func(argv []string, val bool) []string {
    		// Old/ancient versions of GCC support "--dynamicbase" and
    		// "--high-entropy-va" but don't enable it by default. In
    		// addition, they don't accept "--disable-dynamicbase" or
    		// "--no-dynamicbase", so the only way to disable ASLR is to
    		// not pass any flags at all.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  8. src/internal/bisect/bisect.go

    func (m *Matcher) stack(w Writer) bool {
    	const maxStack = 16
    	var stk [maxStack]uintptr
    	n := runtime.Callers(2, stk[:])
    	// caller #2 is not for printing; need it to normalize PCs if ASLR.
    	if n <= 1 {
    		return false
    	}
    
    	base := stk[0]
    	// normalize PCs
    	for i := range stk[:n] {
    		stk[i] -= base
    	}
    
    	h := Hash(stk[:n])
    	if m.ShouldPrint(h) {
    		var d *dedup
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  9. RELEASE.md

    *   Fixes segfault raised by calling session-only ops in eager mode,
        ([CVE-2020-15204](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-15204))
    *   Fixes data leak and potential ASLR violation from `tf.raw_ops.StringNGrams`,
        ([CVE-2020-15205](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-15205))
    *   Fixes segfaults caused by incomplete `SavedModel` validation,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  10. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    05B0..05B9    ; valid                                  # 1.1  HEBREW POINT SHEVA..HEBREW POINT HOLAM
    05BA          ; valid                                  # 5.0  HEBREW POINT HOLAM HASER FOR VAV
    05BB..05BD    ; valid                                  # 1.1  HEBREW POINT QUBUTS..HEBREW POINT METEG
    05BE          ; valid                  ;      ; NV8    # 1.1  HEBREW PUNCTUATION MAQAF
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
Back to top