Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for withPanels (0.19 sec)

  1. pkg/kube/krt/collection.go

    				if !f {
    					h.log.WithLabels("oKey", oKey).Errorf("invalid event, deletion of non-existent object")
    					continue
    				}
    				e := Event[O]{
    					Event: controllers.EventDelete,
    					Old:   &oldRes,
    				}
    				events = append(events, e)
    				delete(h.collectionState.outputs, oKey)
    				if h.log.DebugEnabled() {
    					h.log.WithLabels("res", oKey).Debugf("handled delete")
    				}
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. pkg/istio-agent/xds_proxy_delta.go

    	return p.handleDeltaUpstream(ctx, con, xds)
    }
    
    func (p *XdsProxy) handleDeltaUpstream(ctx context.Context, con *ProxyConnection, xds discovery.AggregatedDiscoveryServiceClient) error {
    	log := proxyLog.WithLabels("id", con.conID)
    	deltaUpstream, err := xds.DeltaAggregatedResources(ctx,
    		grpc.MaxCallRecvMsgSize(defaultClientMaxReceiveMessageSize))
    	if err != nil {
    		// Envoy logs errors again, so no need to log beyond debug level
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. pkg/webhooks/validation/controller/controller.go

    	return c
    }
    
    func (c *Controller) Reconcile(key types.NamespacedName) error {
    	name := key.Name
    	whc := c.webhooks.Get(name, "")
    	scope := scope.WithLabels("webhook", name)
    	// Stop early if webhook is not present, rather than attempting (and failing) to reconcile permanently
    	// If the webhook is later added a new reconciliation request will trigger it to update
    	if whc == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 16:52:19 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. 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)
  5. cni/pkg/plugin/plugin.go

    	setupLogging(conf)
    
    	var loggedPrevResult any
    	if conf.PrevResult == nil {
    		loggedPrevResult = "none"
    	} else {
    		loggedPrevResult = conf.PrevResult
    	}
    	log.WithLabels("if", args.IfName).Debugf("istio-cni CmdAdd config: %+v", conf)
    	log.Debugf("istio-cni CmdAdd previous result: %+v", loggedPrevResult)
    
    	// Determine if running under k8s by checking the CNI args
    	k8sArgs := K8sArgs{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1/validatingadmissionpolicy.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 06 00:00:21 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. cni/pkg/repair/repaircontroller.go

    // Additionally, we need to jump through hoops to find the network namespace.
    func (c *Controller) repairPod(pod *corev1.Pod) error {
    	m := podsRepaired.With(typeLabel.Value(repairType))
    	log := repairLog.WithLabels("pod", pod.Namespace+"/"+pod.Name)
    	key := types.NamespacedName{Name: pod.Name, Namespace: pod.Namespace}
    	// We will get an event every time the pod changes. The repair is not instantaneous, though -- it will only recover
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 10 00:31:55 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1/validatingadmissionpolicybinding.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 06 00:00:21 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. security/pkg/nodeagent/cache/secretcache.go

    			}
    			cacheLog.WithLabels("ttl", time.Until(c.ExpireTime)).Info("returned workload trust anchor from cache")
    
    		} else {
    			ns = &security.SecretItem{
    				ResourceName:     resourceName,
    				CertificateChain: c.CertificateChain,
    				PrivateKey:       c.PrivateKey,
    				ExpireTime:       c.ExpireTime,
    				CreatedTime:      c.CreatedTime,
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 08:29:46 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  10. pkg/dns/client/dns.go

    func (h *LocalDNSServer) ServeDNS(proxy *dnsProxy, w dns.ResponseWriter, req *dns.Msg) {
    	requests.Increment()
    	var response *dns.Msg
    	log := log.WithLabels("protocol", proxy.protocol, "edns", req.IsEdns0() != nil)
    	if log.DebugEnabled() {
    		id := uuid.New()
    		log = log.WithLabels("id", id)
    	}
    	log.Debugf("request %v", req)
    
    	if len(req.Question) == 0 {
    		response = new(dns.Msg)
    		response.SetReply(req)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 23.9K bytes
    - Viewed (0)
Back to top