Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for veduta (0.45 sec)

  1. src/cmd/link/internal/ld/dwarf.go

    			newattr(unit.DWInfo, dwarf.DW_AT_comp_dir, dwarf.DW_CLS_STRING, int64(len(compDir)), compDir)
    
    			var peData []byte
    			if producerExtra := d.ldr.Lookup(dwarf.CUInfoPrefix+"producer."+unit.Lib.Pkg, 0); producerExtra != 0 {
    				peData = d.ldr.Data(producerExtra)
    			}
    			producer := "Go cmd/compile " + buildcfg.Version
    			if len(peData) > 0 {
    				// We put a semicolon before the flags to clearly
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  2. src/debug/elf/file_test.go

    			{"main", 18, 0, 8, 134513912, 46, "", ""},
    			{"_init_tls", 18, 0, 0, 0, 5, "", ""},
    			{"_fini", 18, 0, 9, 134513996, 0, "", ""},
    			{"atexit", 18, 0, 0, 0, 43, "", ""},
    			{"_edata", 16, 0, 65521, 134518484, 0, "", ""},
    			{"_GLOBAL_OFFSET_TABLE_", 17, 0, 65521, 134518456, 0, "", ""},
    			{"_end", 16, 0, 65521, 134518516, 0, "", ""},
    			{"exit", 18, 0, 0, 0, 68, "", ""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  3. src/runtime/mgcmark.go

    		return int(divRoundUp(bytes, rootBlockBytes))
    	}
    
    	work.nDataRoots = 0
    	work.nBSSRoots = 0
    
    	// Scan globals.
    	for _, datap := range activeModules() {
    		nDataRoots := nBlocks(datap.edata - datap.data)
    		if nDataRoots > work.nDataRoots {
    			work.nDataRoots = nDataRoots
    		}
    
    		nBSSRoots := nBlocks(datap.ebss - datap.bss)
    		if nBSSRoots > work.nBSSRoots {
    			work.nBSSRoots = nBSSRoots
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  4. src/cmd/go/go_test.go

    			// Test that only one symbol is exported (#40795).
    			// PIE binaries don´t require .edata section but unfortunately
    			// binutils doesn´t generate a .reloc section unless there is
    			// at least one symbol exported.
    			// See https://sourceware.org/bugzilla/show_bug.cgi?id=19011
    			section := f.Section(".edata")
    			if section == nil {
    				t.Skip(".edata section is not present")
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  5. src/runtime/mbitmap.go

    		return
    	}
    	s := spanOf(dst)
    	if s == nil {
    		// If dst is a global, use the data or BSS bitmaps to
    		// execute write barriers.
    		for _, datap := range activeModules() {
    			if datap.data <= dst && dst < datap.edata {
    				bulkBarrierBitmap(dst, src, size, dst-datap.data, datap.gcdatamask.bytedata)
    				return
    			}
    		}
    		for _, datap := range activeModules() {
    			if datap.bss <= dst && dst < datap.ebss {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  6. src/runtime/mgc.go

    		return "stack"
    	}
    	if base, _, _ := findObject(p2, 0, 0); base != 0 {
    		return "heap"
    	}
    	for _, datap := range activeModules() {
    		if datap.data <= p2 && p2 < datap.edata || datap.noptrdata <= p2 && p2 < datap.enoptrdata {
    			return "data"
    		}
    		if datap.bss <= p2 && p2 < datap.ebss || datap.noptrbss <= p2 && p2 <= datap.enoptrbss {
    			return "bss"
    		}
    	}
    	KeepAlive(p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  7. guava/src/com/google/thirdparty/publicsuffix/PublicSuffixPatterns.java

       * in a name which is a key in this map, it is a public suffix.
       */
      public static final ImmutableMap<String, PublicSuffixType> UNDER =
          TrieParser.parseTrie(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 21 21:04:43 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/thirdparty/publicsuffix/PublicSuffixPatterns.java

       * in a name which is a key in this map, it is a public suffix.
       */
      public static final ImmutableMap<String, PublicSuffixType> UNDER =
          TrieParser.parseTrie(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 21 21:04:43 UTC 2024
    - 72.4K bytes
    - Viewed (1)
Back to top