Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for __zdebug_ (0.13 sec)

  1. src/debug/macho/file.go

    func (f *File) DWARF() (*dwarf.Data, error) {
    	dwarfSuffix := func(s *Section) string {
    		switch {
    		case strings.HasPrefix(s.Name, "__debug_"):
    			return s.Name[8:]
    		case strings.HasPrefix(s.Name, "__zdebug_"):
    			return s.Name[9:]
    		default:
    			return ""
    		}
    
    	}
    	sectionData := func(s *Section) ([]byte, error) {
    		b, err := s.Data()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/native/swift_application_plugin.adoc

    The Swift Application Plugin understands the following dimensions.
    Read the <<building_swift_projects.adoc#sec:introducing_build_variants-swift,introduction to build variants>> for more information.
    
    Build types - always either _debug_ or _release_::
    The build type controls the debuggability as well as the optimization of the generated binaries.
    - `debug` - Generate debug symbols and don’t optimized the binary
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/native/cpp_application_plugin.adoc

    The {cpp} Application Plugin understands the following dimensions.
    Read the <<building_cpp_projects.adoc#sec:introducing_build_variants-cpp,introduction to build variants>> for more information.
    
    Build types - always either _debug_ or _release_::
    The build type controls the debuggability as well as the optimization of the generated binaries.
    - `debug` - Generate debug symbols and don’t optimized the binary
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/ant.adoc

    By default, these are mapped as follows:
    
    [cols="a,a", options="header"]
    |===
    | Ant Message Priority
    | Gradle Log Level
    
    | _VERBOSE_
    | `DEBUG`
    
    | _DEBUG_
    | `DEBUG`
    
    | _INFO_
    | `INFO`
    
    | _WARN_
    | `WARN`
    
    | _ERROR_
    | `ERROR`
    |===
    
    [[sec:fine_tuning_ant_logging]]
    === Fine-tuning Ant logging
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 15:23:52 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. src/debug/pe/file.go

    }
    
    func (f *File) DWARF() (*dwarf.Data, error) {
    	dwarfSuffix := func(s *Section) string {
    		switch {
    		case strings.HasPrefix(s.Name, ".debug_"):
    			return s.Name[7:]
    		case strings.HasPrefix(s.Name, ".zdebug_"):
    			return s.Name[8:]
    		default:
    			return ""
    		}
    
    	}
    
    	// sectionData gets the data for s and checks its size.
    	sectionData := func(s *Section) ([]byte, error) {
    		b, err := s.Data()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/native/swift_library_plugin.adoc

    The Swift Library Plugin understands the following dimensions.
    Read the <<building_swift_projects.adoc#sec:introducing_build_variants-swift,introduction to build variants>> for more information.
    
    Build types - always set to _debug_ and _release_::
    The build type controls the debuggability as well as the optimization of the generated binaries.
    - `debug` - Generate debug symbols and don’t optimized the binary
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/native/cpp_library_plugin.adoc

    The {cpp} Library Plugin understands the following dimensions.
    Read the <<building_cpp_projects.adoc#sec:introducing_build_variants-cpp,introduction to build variants>> for more information.
    
    Build types - always set to _debug_ and _release_::
    The build type controls the debuggability as well as the optimization of the generated binaries.
    - `debug` - Generate debug symbols and don’t optimized the binary
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  8. src/debug/elf/file.go

    }
    
    func (f *File) DWARF() (*dwarf.Data, error) {
    	dwarfSuffix := func(s *Section) string {
    		switch {
    		case strings.HasPrefix(s.Name, ".debug_"):
    			return s.Name[7:]
    		case strings.HasPrefix(s.Name, ".zdebug_"):
    			return s.Name[8:]
    		default:
    			return ""
    		}
    
    	}
    	// sectionData gets the data for s, checks its size, and
    	// applies any applicable relations.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/dwarf.go

    			Segdwarf.Sections = append(Segdwarf.Sections, ldr.SymSect(s))
    		} else {
    			var compressedSegName string
    			if ctxt.IsELF {
    				compressedSegName = ldr.SymSect(s).Name
    			} else {
    				compressedSegName = ".zdebug_" + ldr.SymSect(s).Name[len(".debug_"):]
    			}
    			sect := addsection(ctxt.loader, ctxt.Arch, &Segdwarf, compressedSegName, 04)
    			sect.Align = int32(ctxt.Arch.Alignment)
    			sect.Length = uint64(len(z.compressed))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top