Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 5,571 for info1 (0.52 sec)

  1. pkg/kubelet/winstats/winstats_test.go

    	assert.Equal(t, len(actualRootInfos["/"].Stats), len(infos["/"].Stats))
    	assert.Equal(t, actualRootInfos["/"].Stats[0].Cpu, infos["/"].Stats[0].Cpu)
    	assert.Equal(t, actualRootInfos["/"].Stats[0].CpuInst, infos["/"].Stats[0].CpuInst)
    	assert.Equal(t, actualRootInfos["/"].Stats[0].Memory, infos["/"].Stats[0].Memory)
    }
    
    func TestWinMachineInfo(t *testing.T) {
    	c := getClient(t)
    
    	machineInfo, err := c.WinMachineInfo()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 12:08:15 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. pkg/envoy/agent.go

    					break graceful_loop
    				}
    				log.Infof("There are still %d active connections", ac)
    				// reset retry count
    				retryCount = 0
    			}
    		}
    	} else {
    		log.Infof("Graceful termination period is %v, starting...", a.terminationDrainDuration)
    		select {
    		case status := <-a.statusCh:
    			log.Infof("Envoy exited with status %v", status.err)
    			log.Infof("Graceful termination logic ended prematurely, envoy process terminated early")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 16:04:22 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/imports/scan.go

    	infos, err := fsys.ReadDir(dir)
    	if err != nil {
    		return nil, nil, err
    	}
    	var files []string
    	for _, info := range infos {
    		name := info.Name()
    
    		// If the directory entry is a symlink, stat it to obtain the info for the
    		// link target instead of the link itself.
    		if info.Mode()&fs.ModeSymlink != 0 {
    			info, err = fsys.Stat(filepath.Join(dir, name))
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 23 19:36:38 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  4. src/os/dir_windows.go

    			if d.class == windows.FileIdBothDirectoryInfo {
    				info := (*windows.FILE_ID_BOTH_DIR_INFO)(entry)
    				nextEntryOffset = info.NextEntryOffset
    				nameslice = unsafe.Slice(&info.FileName[0], info.FileNameLength/2)
    			} else {
    				info := (*windows.FILE_FULL_DIR_INFO)(entry)
    				nextEntryOffset = info.NextEntryOffset
    				nameslice = unsafe.Slice(&info.FileName[0], info.FileNameLength/2)
    			}
    			d.bufp += int(nextEntryOffset)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. pkg/proxy/servicechangetracker.go

    func (sm *ServicePortMap) merge(other ServicePortMap) {
    	for svcPortName, info := range other {
    		_, exists := (*sm)[svcPortName]
    		if !exists {
    			klog.V(4).InfoS("Adding new service port", "portName", svcPortName, "servicePort", info)
    		} else {
    			klog.V(4).InfoS("Updating existing service port", "portName", svcPortName, "servicePort", info)
    		}
    		(*sm)[svcPortName] = info
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  6. pkg/test/csrctrl/controllers/csr_controller.go

    	switch {
    	case !csr.DeletionTimestamp.IsZero():
    		log.Info("CSR has been deleted. Ignoring.")
    	case csr.Spec.SignerName == "":
    		log.Info("CSR does not have a signer name. Ignoring.")
    	case !exist:
    		log.Infof("CSR signer name does not match. Ignoring. signer-name: %s, have %v", csr.Spec.SignerName, strings.Join(maps.Keys(s.signers), ","))
    	case csr.Status.Certificate != nil:
    		log.Info("CSR has already been signed. Ignoring.")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 17:36:41 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. src/os/dir_darwin.go

    			}
    			dirents = append(dirents, de)
    		} else {
    			info, err := lstat(f.name + "/" + string(name))
    			if IsNotExist(err) {
    				// File disappeared between readdir + stat.
    				// Treat as if it didn't exist.
    				continue
    			}
    			if err != nil {
    				return nil, nil, infos, err
    			}
    			infos = append(infos, info)
    		}
    		runtime.KeepAlive(f)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. src/go/token/position_test.go

    		t.Run(test.name, func(t *testing.T) {
    			fs := NewFileSet()
    			f := fs.AddFile(filename, -1, filesize)
    			for _, info := range test.infos {
    				f.AddLineColumnInfo(info.Offset, info.Filename, info.Line, info.Column)
    			}
    			if !reflect.DeepEqual(f.infos, test.want) {
    				t.Errorf("\ngot %+v, \nwant %+v", f.infos, test.want)
    			}
    		})
    	}
    }
    
    func TestIssue57490(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 20:26:14 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  9. src/log/slog/example_wrap_test.go

    	"path/filepath"
    	"runtime"
    	"time"
    )
    
    // Infof is an example of a user-defined logging function that wraps slog.
    // The log record contains the source position of the caller of Infof.
    func Infof(logger *slog.Logger, format string, args ...any) {
    	if !logger.Enabled(context.Background(), slog.LevelInfo) {
    		return
    	}
    	var pcs [1]uintptr
    	runtime.Callers(2, pcs[:]) // skip [Callers, Infof]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 18:32:54 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. security/pkg/pki/ca/selfsignedcarootcertrotator.go

    		select {
    		case <-time.After(rotator.backOffTime):
    			rootCertRotatorLog.Infof("Jitter complete, start rotator.")
    		case <-stopCh:
    			rootCertRotatorLog.Info("Received stop signal, so stop the root cert rotator.")
    			return
    		}
    	}
    	ticker := time.NewTicker(rotator.config.CheckInterval)
    	for {
    		select {
    		case <-ticker.C:
    			rootCertRotatorLog.Info("Check and rotate root cert.")
    			rotator.checkAndRotateRootCert()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 10.4K bytes
    - Viewed (0)
Back to top