Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for dwinfo (0.12 sec)

  1. 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)
  2. 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)
  3. src/cmd/internal/obj/sym.go

    			fn(fsym, filesym)
    		}
    	}
    	for _, call := range pc.InlTree.nodes {
    		if call.Func != nil {
    			fn(fsym, call.Func)
    		}
    	}
    
    	auxsyms := []*LSym{fninfo.dwarfRangesSym, fninfo.dwarfLocSym, fninfo.dwarfDebugLinesSym, fninfo.dwarfInfoSym, fninfo.WasmImportSym, fninfo.sehUnwindInfoSym}
    	for _, s := range auxsyms {
    		if s == nil || s.Size == 0 {
    			continue
    		}
    		fn(fsym, s)
    		if flag&traverseRefs != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. src/os/file_plan9.go

    // can overwrite this data, which could cause the finalizer
    // to close the wrong file descriptor.
    type file struct {
    	fdmu       poll.FDMutex
    	fd         int
    	name       string
    	dirinfo    atomic.Pointer[dirInfo] // nil unless directory being read
    	appendMode bool                    // whether file is opened for appending
    }
    
    // Fd returns the integer Plan 9 file descriptor referencing the open file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:35:30 UTC 2024
    - 16K bytes
    - Viewed (0)
  5. pkg/kubelet/stats/helper.go

    // from the container and filesystem info.
    func cadvisorInfoToContainerStats(name string, info *cadvisorapiv2.ContainerInfo, rootFs, imageFs *cadvisorapiv2.FsInfo) *statsapi.ContainerStats {
    	result := &statsapi.ContainerStats{
    		StartTime: metav1.NewTime(info.Spec.CreationTime),
    		Name:      name,
    	}
    	cstat, found := latestContainerStats(info)
    	if !found {
    		return result
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 23:40:02 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  6. istioctl/pkg/multixds/gather.go

    }
    
    // CpInfo returns the Istio control plane info from JSON-encoded XDS ControlPlane Identifier
    func CpInfo(xdsResponse *discovery.DiscoveryResponse) pilotxds.IstioControlPlaneInstance {
    	if xdsResponse.ControlPlane == nil {
    		return pilotxds.IstioControlPlaneInstance{
    			Component: "MISSING",
    			ID:        "MISSING",
    			Info: istioversion.BuildInfo{
    				Version: "MISSING CP ID",
    			},
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 08 08:38:19 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  7. pkg/kubelet/stats/cri_stats_provider.go

    	resp, err := p.imageService.ImageFsInfo(ctx)
    	if err != nil {
    		return "", err
    	}
    	for _, fs := range resp.GetImageFilesystems() {
    		fsInfo, err := p.getFsInfo(fs.GetFsId())
    		if err != nil {
    			return "", fmt.Errorf("get filesystem info: %w", err)
    		}
    		if fsInfo != nil {
    			return fsInfo.Device, nil
    		}
    	}
    	return "", errors.New("imagefs device is not found")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  8. src/os/file_windows.go

    // It returns the new offset and an error, if any.
    func (f *File) seek(offset int64, whence int) (ret int64, err error) {
    	if info := f.dirinfo.Swap(nil); info != nil {
    		// Free cached dirinfo, so we allocate a new one if we
    		// access this file as a directory again. See #35767 and #37161.
    		info.close()
    	}
    	ret, err = f.pfd.Seek(offset, whence)
    	runtime.KeepAlive(f)
    	return ret, err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:38:38 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultVersionResolver.java

                ArtifactRepository repository) {
            VersionInfo info = infos.get(key);
            if (info == null) {
                info = new VersionInfo(timestamp, version, repository);
                infos.put(key, info);
            } else if (info.isOutdated(timestamp)) {
                info.version = version;
                info.repository = repository;
                info.timestamp = timestamp;
            }
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  10. src/os/file_unix.go

    // It returns the new offset and an error, if any.
    func (f *File) seek(offset int64, whence int) (ret int64, err error) {
    	if info := f.dirinfo.Swap(nil); info != nil {
    		// Free cached dirinfo, so we allocate a new one if we
    		// access this file as a directory again. See #35767 and #37161.
    		info.close()
    	}
    	ret, err = f.pfd.Seek(offset, whence)
    	runtime.KeepAlive(f)
    	return ret, err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top