Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for dwinfo (0.26 sec)

  1. 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)
  2. 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)
  3. cmd/xl-storage.go

    			dcinfo.Total = di.Total
    			dcinfo.Free = di.Free
    			dcinfo.Used = di.Used
    			dcinfo.UsedInodes = di.Files - di.Ffree
    			dcinfo.FreeInodes = di.Ffree
    			dcinfo.FSType = di.FSType
    			diskID, err := s.GetDiskID()
    			// Healing is 'true' when
    			// - if we found an unformatted disk (no 'format.json')
    			// - if we found healing tracker 'healing.bin'
    			dcinfo.Healing = errors.Is(err, errUnformattedDisk) || (s.Healing() != nil)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  4. pkg/proxy/winkernel/proxier.go

    func (info *endpointInfo) String() string {
    	return net.JoinHostPort(info.ip, strconv.Itoa(int(info.port)))
    }
    
    // IsLocal is part of proxy.Endpoint interface.
    func (info *endpointInfo) IsLocal() bool {
    	return info.isLocal
    }
    
    // IsReady returns true if an endpoint is ready and not terminating.
    func (info *endpointInfo) IsReady() bool {
    	return info.ready
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/regalloc.go

    			}
    		}
    
    		// Allocate space to record the desired registers for each value.
    		if l := len(oldSched); cap(dinfo) < l {
    			dinfo = make([]dentry, l)
    		} else {
    			dinfo = dinfo[:l]
    			for i := range dinfo {
    				dinfo[i] = dentry{}
    			}
    		}
    
    		// Load static desired register info at the end of the block.
    		desired.copy(&s.desired[b.ID])
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  6. pkg/proxy/nftables/proxier.go

    			ipX = "ip6"
    		}
    
    		for _, ep := range endpoints {
    			epInfo, ok := ep.(*endpointInfo)
    			if !ok {
    				continue
    			}
    
    			tx.Add(&knftables.Rule{
    				Chain: svcChain,
    				Rule: knftables.Concat(
    					ipX, "saddr", "@", epInfo.affinitySetName,
    					"goto", epInfo.chainName,
    				),
    			})
    		}
    	}
    
    	// Now write loadbalancing rule
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  7. pkg/proxy/iptables/proxier.go

    		for _, ep := range endpoints {
    			epInfo, ok := ep.(*endpointInfo)
    			if !ok {
    				continue
    			}
    			comment := fmt.Sprintf(`"%s -> %s"`, svcPortNameString, epInfo.String())
    
    			args = append(args[:0],
    				"-A", string(svcChain),
    			)
    			args = proxier.appendServiceCommentLocked(args, comment)
    			args = append(args,
    				"-m", "recent", "--name", string(epInfo.ChainName),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  8. cmd/bucket-handlers.go

    			// All deletes on directory objects was with `nullVersionID`.
    			// Remove it from response.
    			if isDirObject(deleteResult.delInfo.ObjectName) && deleteResult.delInfo.VersionID == nullVersionID {
    				deleteResult.delInfo.VersionID = ""
    			}
    			deletedObjects = append(deletedObjects, deleteResult.delInfo)
    		}
    	}
    
    	response := generateMultiDeleteResponse(deleteObjectsReq.Quiet, deletedObjects, deleteErrors)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  9. pkg/kubelet/stats/cri_stats_provider_test.go

    	mockCadvisor.EXPECT().RootFsInfo().Return(rootFsInfo, nil)
    	mockCadvisor.EXPECT().GetDirFsInfo(imageFsMountpoint).Return(imageFsInfo, nil)
    	mockCadvisor.EXPECT().GetDirFsInfo(unknownMountpoint).Return(cadvisorapiv2.FsInfo{}, cadvisorfs.ErrNoSuchDevice)
    
    	fakeRuntimeService.SetFakeSandboxes([]*critest.FakePodSandbox{
    		sandbox0, sandbox1, sandbox2, sandbox3, sandbox4, sandbox5,
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    		}
    		return str
    	}
    	var buffer struct {
    		header W_Mnth
    		fsinfo [64]W_Mntent
    	}
    	fs_count, err := W_Getmntent_A((*byte)(unsafe.Pointer(&buffer)), int(unsafe.Sizeof(buffer)))
    	if err == nil {
    		err = EINVAL
    		for i := 0; i < fs_count; i++ {
    			if b2s(buffer.fsinfo[i].Mountpoint[:]) == name {
    				err = unmount_LE(b2s(buffer.fsinfo[i].Fsname[:]), mtm)
    				break
    			}
    		}
    	} else if fs_count == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
Back to top