Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 123 for withPanels (0.16 sec)

  1. pilot/pkg/server/instance.go

    			t0 := time.Now()
    			if err := next.task(stop); err != nil {
    				// Startup error: terminate and return the error.
    				shutdown()
    				return err
    			}
    			runtime := time.Since(t0)
    			log := log.WithLabels("name", next.name, "runtime", runtime)
    			log.Debugf("started task")
    			if runtime > time.Second {
    				log.Warnf("slow startup task")
    			}
    		default:
    			// We've drained all of the initial tasks.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  2. cni/pkg/nodeagent/server.go

    		// don't return error here, as this is purely informational.
    	}
    	return retErr
    }
    
    func (s *meshDataplane) RemovePodFromMesh(ctx context.Context, pod *corev1.Pod) error {
    	log := log.WithLabels("ns", pod.Namespace, "name", pod.Name)
    	err := s.netServer.RemovePodFromMesh(ctx, pod)
    	if err != nil {
    		log.Errorf("failed to remove pod from mesh: %v", err)
    		return err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. src/runtime/pprof/runtime.go

    // The augmented label map will be set for the duration of the call to f
    // and restored once f returns.
    func Do(ctx context.Context, labels LabelSet, f func(context.Context)) {
    	defer SetGoroutineLabels(ctx)
    	ctx = WithLabels(ctx, labels)
    	SetGoroutineLabels(ctx)
    	f(ctx)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 16:59:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. pilot/pkg/networking/apigen/apigen.go

    	for _, c := range cfg {
    		// Right now model.Config is not a proto - until we change it, mcp.Resource.
    		// This also helps migrating MCP users.
    
    		b, err := config.PilotConfigToResource(&c)
    		if err != nil {
    			log.WithLabels("resource", c.NamespacedName()).Warnf("resource error: %v", err)
    			continue
    		}
    		resp = append(resp, &discovery.Resource{
    			Name:     c.Namespace + "/" + c.Name,
    			Resource: protoconv.MessageToAny(b),
    		})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 05 19:01:38 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. pkg/structured/structured.go

    		lbls = append(lbls, "action", e.Action)
    	}
    	if e.LikelyCause != "" {
    		lbls = append(lbls, "likelyCause", e.LikelyCause)
    	}
    	if e.Err != nil {
    		lbls = append(lbls, "err", e.Err.Error())
    	}
    	return s.WithLabels(lbls...)
    }
    
    func (e *Error) Error() string {
    	if e == nil {
    		return ""
    	}
    	return fmt.Sprintf("\tmoreInfo=%s impact=%s action=%s likelyCause=%s err=%v",
    		e.MoreInfo, e.Impact, e.Action, e.LikelyCause, e.Err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jul 15 23:58:50 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/log/nflog.go

    			if err == nil {
    				inDev = ii.Name
    			}
    		}
    		if attrs.OutDev != nil {
    			ii, err := net.InterfaceByIndex(int(*attrs.OutDev))
    			if err == nil {
    				outDev = ii.Name
    			}
    		}
    		iptablesTrace.WithLabels(
    			"command", prefix,
    			"uid", uid,
    			"gid", gid,
    			"inDev", inDev,
    			"outDev", outDev,
    			"src", src,
    			"dst", dst,
    		).Infof(comment)
    		return 0
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:40 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/client-go/applyconfigurations/batch/v1beta1/jobtemplatespec.go

    	b.ensureObjectMetaApplyConfigurationExists()
    	b.DeletionGracePeriodSeconds = &value
    	return b
    }
    
    // WithLabels puts the entries into the Labels field in the declarative configuration
    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 8.9K bytes
    - Viewed (0)
  8. pkg/kube/krt/fetch.go

    	} else {
    		// Otherwise get everything
    		list = c.List()
    	}
    	list = slices.FilterInPlace(list, func(i T) bool {
    		o := c.augment(i)
    		return d.filter.Matches(o, true)
    	})
    	if log.DebugEnabled() {
    		log.WithLabels(
    			"parent", h.name(),
    			"fetch", c.name(),
    			"filter", d.filter,
    			"size", len(list),
    		).Debugf("Fetch")
    	}
    	return list
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. pkg/istio-agent/xds_proxy.go

    func upstreamErr(con *ProxyConnection, err error) {
    	if istiogrpc.IsExpectedGRPCError(err) {
    		proxyLog.WithLabels("id", con.conID).Debugf("upstream terminated with status %v", err)
    		metrics.IstiodConnectionCancellations.Increment()
    	} else {
    		proxyLog.WithLabels("id", con.conID).Warnf("upstream terminated with unexpected error %v", err)
    		metrics.IstiodConnectionErrors.Increment()
    	}
    	select {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/client-go/applyconfigurations/core/v1/podtemplatespec.go

    	b.ensureObjectMetaApplyConfigurationExists()
    	b.DeletionGracePeriodSeconds = &value
    	return b
    }
    
    // WithLabels puts the entries into the Labels field in the declarative configuration
    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 8.8K bytes
    - Viewed (0)
Back to top