Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 4,885 for info2 (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugins.go

    				validationPlugins = append(validationPlugins, pluginName)
    			}
    		}
    	}
    	if len(mutationPlugins) != 0 {
    		klog.Infof("Loaded %d mutating admission controller(s) successfully in the following order: %s.", len(mutationPlugins), strings.Join(mutationPlugins, ","))
    	}
    	if len(validationPlugins) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 6K bytes
    - Viewed (0)
  7. pkg/proxy/serviceport.go

    		if ingFamily := proxyutil.GetIPFamilyFromIP(ip); ingFamily == ipFamily {
    			info.loadBalancerVIPs = append(info.loadBalancerVIPs, ip)
    		} else {
    			invalidIPs = append(invalidIPs, ip)
    		}
    	}
    	if len(invalidIPs) > 0 {
    		klog.V(4).InfoS("Service change tracker ignored the following load balancer ingress IPs for given Service as they don't match the IP Family",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 09 08:17:56 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. pkg/kubelet/winstats/winstats.go

    // WinContainerInfos returns a map of container infos. The map contains node and
    // pod level stats. Analogous to cadvisor GetContainerInfoV2 method.
    func (c *StatsClient) WinContainerInfos() (map[string]cadvisorapiv2.ContainerInfo, error) {
    	infos := make(map[string]cadvisorapiv2.ContainerInfo)
    	rootContainerInfo, err := c.createRootContainerInfo()
    	if err != nil {
    		return nil, err
    	}
    
    	infos["/"] = *rootContainerInfo
    
    	return infos, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 5.2K bytes
    - Viewed (0)
  9. pkg/volume/csi/csi_mounter.go

    		dataFile := filepath.Join(volPath, volDataFileName)
    		klog.V(4).Info(log("also deleting volume info data file [%s]", dataFile))
    		if err := os.Remove(dataFile); err != nil && !os.IsNotExist(err) {
    			return errors.New(log("failed to delete volume data file [%s]: %v", dataFile, err))
    		}
    		// remove volume path
    		klog.V(4).Info(log("deleting volume path [%s]", volPath))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 30 10:47:59 UTC 2024
    - 21K bytes
    - Viewed (1)
  10. pkg/test/echo/server/endpoint/hbone.go

    			NextProtos:   []string{"h2"},
    			GetConfigForClient: func(info *tls.ClientHelloInfo) (*tls.Config, error) {
    				// There isn't a way to pass through all ALPNs presented by the client down to the
    				// HTTP server to return in the response. However, for debugging, we can at least log
    				// them at this level.
    				epLog.Infof("TLS connection with alpn: %v", info.SupportedProtos)
    				return nil, nil
    			},
    			MinVersion: tls.VersionTLS12,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 14 20:23:34 UTC 2022
    - 2.7K bytes
    - Viewed (0)
Back to top