Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 708 for dwinfo (1.02 sec)

  1. src/internal/xcoff/file_test.go

    			{".bss", 0x20001284, 0x0000021c, STYP_BSS, 0, 0},
    			{".loader", 0x00000000, 0x000004b3, STYP_LOADER, 0, 0},
    			{".dwline", 0x00000000, 0x000000df, STYP_DWARF | SSUBTYP_DWLINE, 0x7eb0, 0x7},
    			{".dwinfo", 0x00000000, 0x00000314, STYP_DWARF | SSUBTYP_DWINFO, 0x7ef6, 0xa},
    			{".dwabrev", 0x00000000, 0x000000d6, STYP_DWARF | SSUBTYP_DWABREV, 0, 0},
    			{".dwarnge", 0x00000000, 0x00000020, STYP_DWARF | SSUBTYP_DWARNGE, 0x7f5a, 0x2},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 10 18:52:31 UTC 2018
    - 3K bytes
    - Viewed (0)
  2. src/cmd/link/internal/sym/compilation_unit.go

    type CompilationUnit struct {
    	Lib       *Library      // Our library
    	PclnIndex int           // Index of this CU in pclntab
    	PCs       []dwarf.Range // PC ranges, relative to Textp[0]
    	DWInfo    *dwarf.DWDie  // CU root DIE
    	FileTable []string      // The file table used in this compilation unit.
    
    	Consts    LoaderSym   // Package constants DIEs
    	FuncDIEs  []LoaderSym // Function DIE subtrees
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 20:39:56 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/dwarf.go

    			if len(unit.Textp) == 0 {
    				cuabrv = dwarf.DW_ABRV_COMPUNIT_TEXTLESS
    			}
    			unit.DWInfo = d.newdie(&dwroot, cuabrv, unit.Lib.Pkg)
    			newattr(unit.DWInfo, dwarf.DW_AT_language, dwarf.DW_CLS_CONSTANT, int64(dwarf.DW_LANG_Go), 0)
    			// OS X linker requires compilation dir or absolute path in comp unit name to output debug info.
    			compDir := getCompilationDir()
    			// TODO: Make this be the actual compilation directory, not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/xcoff.go

    	switch str {
    	default:
    		Exitf("unknown DWARF section name for XCOFF: %s", str)
    	case ".debug_abbrev":
    		return ".dwabrev", SSUBTYP_DWABREV
    	case ".debug_info":
    		return ".dwinfo", SSUBTYP_DWINFO
    	case ".debug_frame":
    		return ".dwframe", SSUBTYP_DWFRAME
    	case ".debug_line":
    		return ".dwline", SSUBTYP_DWLINE
    	case ".debug_loc":
    		return ".dwloc", SSUBTYP_DWLOC
    	case ".debug_pubnames":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  5. pkg/proxy/winkernel/proxier_test.go

    	ep = proxier.endpointsMap[svcPortName1][0]
    	epInfo, ok = ep.(*endpointInfo)
    	if !ok {
    		t.Errorf("Failed to cast endpointInfo %q", svcPortName1.String())
    
    	} else {
    		if epInfo.hnsID != endpointGuid1 {
    			t.Errorf("%v does not match %v", epInfo.hnsID, endpointGuid1)
    		}
    	}
    
    	if *epInfo.refCount != 1 {
    		t.Errorf("Incorrect Refcount. Current value: %v", *epInfo.refCount)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 28 14:30:51 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  6. src/runtime/stack.go

    	// stack because gentraceback uses them.
    	adjustctxt(gp, &adjinfo)
    	adjustdefers(gp, &adjinfo)
    	adjustpanics(gp, &adjinfo)
    	if adjinfo.sghi != 0 {
    		adjinfo.sghi += adjinfo.delta
    	}
    
    	// Swap out old stack for new one
    	gp.stack = new
    	gp.stackguard0 = new.lo + stackGuard // NOTE: might clobber a preempt request
    	gp.sched.sp = new.hi - used
    	gp.stktopsp += adjinfo.delta
    
    	// Adjust pointers in the new stack.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  7. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/CppMultiProjectGeneratorTask.groovy

        CppMultiProjectGeneratorTask() {
            maxWorkers = 6
        }
    
        @Override
        void generateProjectSource(File projectDir, TestProject testProject, Map args) {
            def projectNumber = testProject.subprojectNumber == null ? -1 : testProject.subprojectNumber
            def projectArgs = [projectType: isLastLayer(depInfo.layerSizes, projectNumber) ? 'exe' : 'lib',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  8. src/net/http/httptrace/example_test.go

    	trace := &httptrace.ClientTrace{
    		GotConn: func(connInfo httptrace.GotConnInfo) {
    			fmt.Printf("Got Conn: %+v\n", connInfo)
    		},
    		DNSDone: func(dnsInfo httptrace.DNSDoneInfo) {
    			fmt.Printf("DNS Info: %+v\n", dnsInfo)
    		},
    	}
    	req = req.WithContext(httptrace.WithClientTrace(req.Context(), trace))
    	_, err := http.DefaultTransport.RoundTrip(req)
    	if err != nil {
    		log.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 05:11:45 UTC 2016
    - 712 bytes
    - Viewed (0)
  9. src/io/fs/readdir.go

    	})
    	return list, err
    }
    
    // dirInfo is a DirEntry based on a FileInfo.
    type dirInfo struct {
    	fileInfo FileInfo
    }
    
    func (di dirInfo) IsDir() bool {
    	return di.fileInfo.IsDir()
    }
    
    func (di dirInfo) Type() FileMode {
    	return di.fileInfo.Mode().Type()
    }
    
    func (di dirInfo) Info() (FileInfo, error) {
    	return di.fileInfo, nil
    }
    
    func (di dirInfo) Name() string {
    	return di.fileInfo.Name()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. pkg/kubelet/cadvisor/testing/cadvisor_fake.go

    func (c *Fake) ImagesFsInfo() (cadvisorapiv2.FsInfo, error) {
    	return cadvisorapiv2.FsInfo{}, nil
    }
    
    // RootFsInfo is a fake implementation of Interface.RootFsInfo.
    func (c *Fake) RootFsInfo() (cadvisorapiv2.FsInfo, error) {
    	return cadvisorapiv2.FsInfo{}, nil
    }
    
    // ContainerFsInfo is a fake implementation of Interface.ContainerFsInfo.
    func (c *Fake) ContainerFsInfo() (cadvisorapiv2.FsInfo, error) {
    	return cadvisorapiv2.FsInfo{}, nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 22:07:20 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top