Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 807 for info2 (0.08 sec)

  1. pkg/controller/endpointslice/endpointslice_controller.go

    	c.eventBroadcaster.StartLogging(klog.Infof)
    	c.eventBroadcaster.StartRecordingToSink(&v1core.EventSinkImpl{Interface: c.client.CoreV1().Events("")})
    	defer c.eventBroadcaster.Shutdown()
    
    	defer c.serviceQueue.ShutDown()
    	defer c.topologyQueue.ShutDown()
    
    	logger := klog.FromContext(ctx)
    	logger.Info("Starting endpoint slice controller")
    	defer logger.Info("Shutting down endpoint slice controller")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  2. src/go/token/position.go

    	f.mutex.Lock()
    	filename = f.name
    	if i := searchInts(f.lines, offset); i >= 0 {
    		line, column = i+1, offset-f.lines[i]+1
    	}
    	if adjusted && len(f.infos) > 0 {
    		// few files have extra line infos
    		if i := searchLineInfos(f.infos, offset); i >= 0 {
    			alt := &f.infos[i]
    			filename = alt.Filename
    			if i := searchInts(f.lines, alt.Offset); i >= 0 {
    				// i+1 is the line at which the alternative position was recorded
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  3. pkg/volume/util/atomic_writer.go

    			shouldWrite = false
    			oldTsDir = ""
    		} else {
    			klog.V(4).Infof("%s: write required for target directory %v", w.logContext, w.targetDir)
    		}
    	}
    
    	if shouldWrite {
    		// (5)
    		tsDir, err := w.newTimestampDir()
    		if err != nil {
    			klog.V(4).Infof("%s: error creating new ts data directory: %v", w.logContext, err)
    			return err
    		}
    		tsDirName := filepath.Base(tsDir)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. pkg/test/framework/components/istio/kube.go

    	return i.values
    }
    
    func newKube(ctx resource.Context, cfg Config) (Instance, error) {
    	cfg.fillDefaults(ctx)
    
    	scopes.Framework.Infof("=== Istio Component Config ===")
    	scopes.Framework.Infof("\n%s", cfg.String())
    	scopes.Framework.Infof("================================")
    
    	// Top-level work dir for Istio deployment.
    	workDir, err := ctx.CreateTmpDirectory("istio-deployment")
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  5. pkg/istio-agent/agent.go

    	// If proxy is using file mounted certs, we do not have to connect to CA.
    	if a.secOpts.FileMountedCerts {
    		log.Info("Workload is using file mounted certificates. Skipping connecting to CA")
    		return cache.NewSecretManagerClient(nil, a.secOpts)
    	}
    	log.Infof("CA Endpoint %s, provider %s", a.secOpts.CAEndpoint, a.secOpts.CAProviderName)
    
    	caClient, err := createCAClient(a.secOpts, a)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/x86/seh.go

    	// it will be updated later with a R_PEIMAGEOFF relocation to the
    	// exception handler.
    	buf.write32(0)
    
    	// The list of unwind infos in a PE binary have very low cardinality
    	// as each info only contains frame pointer operations,
    	// which are very similar across functions.
    	// Dedup them when possible.
    	hash := base64.StdEncoding.EncodeToString(buf.data)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. pkg/volume/local/local.go

    			// source and can be used in reconstructed volume.
    			path, _, err = mount.GetDeviceNameFromMount(mounter, ref)
    			if err != nil {
    				return volume.ReconstructedVolume{}, err
    			}
    			klog.V(4).Infof("local: reconstructing volume %q (pod volume mount: %q) with device %q", volumeName, mountPath, path)
    			break
    		}
    	}
    	localVolume := &v1.PersistentVolume{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: volumeName,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  8. pkg/kubelet/server/server.go

    	goruntime "runtime"
    	"strconv"
    	"strings"
    	"time"
    
    	"github.com/emicklei/go-restful/v3"
    	cadvisormetrics "github.com/google/cadvisor/container"
    	cadvisorapi "github.com/google/cadvisor/info/v1"
    	cadvisorv2 "github.com/google/cadvisor/info/v2"
    	"github.com/google/cadvisor/metrics"
    	"go.opentelemetry.io/contrib/instrumentation/github.com/emicklei/go-restful/otelrestful"
    	oteltrace "go.opentelemetry.io/otel/trace"
    	"google.golang.org/grpc"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  9. pkg/xds/server.go

    			}
    			if err := ctx.Initialize(req.Node); err != nil {
    				con.errorChan <- err
    				return
    			}
    			defer ctx.Close()
    			log.Infof("ADS: new connection for node:%s", con.conID)
    		}
    
    		select {
    		case con.reqChan <- req:
    		case <-con.stream.Context().Done():
    			log.Infof("ADS: %q %s terminated with stream closed", con.peerAddr, con.conID)
    			return
    		}
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  10. pilot/cmd/pilot-agent/status/server.go

    	var envoyCancel, appCancel context.CancelFunc
    	defer func() {
    		if envoy != nil {
    			err = envoy.Close()
    			if err != nil {
    				log.Infof("envoy connection is not closed: %v", err)
    			}
    		}
    		if application != nil {
    			err = application.Close()
    			if err != nil {
    				log.Infof("app connection is not closed: %v", err)
    			}
    		}
    		if envoyCancel != nil {
    			envoyCancel()
    		}
    		if appCancel != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (1)
Back to top