Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,666 for info2 (0.07 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. 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)
  5. 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)
  6. 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)
  7. src/os/dir_unix.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)
    		}
    	}
    
    	if n > 0 && len(names)+len(dirents)+len(infos) == 0 {
    		return nil, nil, nil, io.EOF
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 20:11:45 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. src/os/dir_plan9.go

    				dirents = append(dirents, dirEntry{f})
    			} else {
    				infos = append(infos, f)
    			}
    		}
    		d.bufp += m
    		n--
    	}
    
    	if n > 0 && len(names)+len(dirents)+len(infos) == 0 {
    		return nil, nil, nil, io.EOF
    	}
    	return names, dirents, infos, nil
    }
    
    type dirEntry struct {
    	fs *fileStat
    }
    
    func (de dirEntry) Name() string            { return de.fs.Name() }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. src/io/ioutil/ioutil.go

    // If you must continue obtaining a list of [fs.FileInfo], you still can:
    //
    //	entries, err := os.ReadDir(dirname)
    //	if err != nil { ... }
    //	infos := make([]fs.FileInfo, 0, len(entries))
    //	for _, entry := range entries {
    //		info, err := entry.Info()
    //		if err != nil { ... }
    //		infos = append(infos, info)
    //	}
    func ReadDir(dirname string) ([]fs.FileInfo, error) {
    	f, err := os.Open(dirname)
    	if err != nil {
    		return nil, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. plugin/pkg/auth/authorizer/node/node_authorizer.go

    	switch attrs.GetVerb() {
    	case "update", "patch":
    		// ok
    	default:
    		klog.V(2).Infof("NODE DENY: '%s' %#v", nodeName, attrs)
    		return authorizer.DecisionNoOpinion, "can only get/update/patch this type", nil
    	}
    
    	if attrs.GetSubresource() != "status" {
    		klog.V(2).Infof("NODE DENY: '%s' %#v", nodeName, attrs)
    		return authorizer.DecisionNoOpinion, "can only update status subresource", nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top