Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,192 for slog (0.04 sec)

  1. pkg/kubelet/cm/memorymanager/fake_memory_manager.go

    	klog.InfoS("Add container", "pod", klog.KObj(pod), "containerName", container.Name, "containerID", containerID)
    }
    
    func (m *fakeManager) GetMemoryNUMANodes(pod *v1.Pod, container *v1.Container) sets.Set[int] {
    	klog.InfoS("Get MemoryNUMANodes", "pod", klog.KObj(pod), "containerName", container.Name)
    	return nil
    }
    
    func (m *fakeManager) RemoveContainer(containerID string) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. pkg/proxy/winkernel/proxier.go

    	if queriedEndpoints == nil {
    		klog.V(4).InfoS("No existing endpoints found in HNS")
    		queriedEndpoints = make(map[string]*(endpointInfo))
    	}
    	queriedLoadBalancers, err := hns.getAllLoadBalancers()
    	if queriedLoadBalancers == nil {
    		klog.V(4).InfoS("No existing load balancers found in HNS")
    		queriedLoadBalancers = make(map[loadBalancerIdentifier]*(loadBalancerInfo))
    	}
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/devicemanager/plugin/v1beta1/stub.go

    		case err := <-m.kubeletRestartWatcher.Errors:
    			klog.ErrorS(err, "inotify error")
    		}
    	}
    }
    
    // GetInfo is the RPC which return pluginInfo
    func (m *Stub) GetInfo(ctx context.Context, req *watcherapi.InfoRequest) (*watcherapi.PluginInfo, error) {
    	klog.InfoS("GetInfo")
    	return &watcherapi.PluginInfo{
    		Type:              watcherapi.DevicePlugin,
    		Name:              m.resourceName,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 11:19:10 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/cache/cache.go

    		logger.Error(nil, "Pod updated on a different node than previously added to", "podKey", key, "pod", klog.KObj(oldPod))
    		logger.Error(nil, "scheduler cache is corrupted and can badly affect scheduling decisions")
    		klog.FlushAndExit(klog.ExitFlushTimeout, 1)
    	}
    	return cache.updatePod(logger, oldPod, newPod)
    }
    
    func (cache *cacheImpl) RemovePod(logger klog.Logger, pod *v1.Pod) error {
    	key, err := framework.GetPodKey(pod)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 09:56:48 UTC 2023
    - 24.9K bytes
    - Viewed (0)
  5. pkg/kubelet/pluginmanager/pluginwatcher/plugin_watcher.go

    				klog.ErrorS(err, "Error when handling create", "event", event)
    			}
    		} else {
    			klog.V(5).InfoS("Ignoring file", "path", path, "mode", mode)
    		}
    
    		return nil
    	})
    }
    
    // Handle filesystem notify event.
    // Files names:
    // - MUST NOT start with a '.'
    func (w *Watcher) handleCreateEvent(event fsnotify.Event) error {
    	klog.V(6).InfoS("Handling create event", "event", event)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 01 00:26:37 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/etcd3/logger.go

    	if klogV := klog.V(5); klogV.Enabled() {
    		klogV.InfoSDepth(klogWrapperDepth, fmt.Sprintln(args...))
    	}
    }
    
    func (klogWrapper) Infof(format string, args ...interface{}) {
    	if klogV := klog.V(5); klogV.Enabled() {
    		klog.V(5).InfoSDepth(klogWrapperDepth, fmt.Sprintf(format, args...))
    	}
    }
    
    func (klogWrapper) Warning(args ...interface{}) {
    	klog.WarningDepth(klogWrapperDepth, args...)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 24 10:13:50 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/phases/reset/cleanupnode.go

    	}
    	certsDir := r.CertificatesDir()
    
    	// Try to stop the kubelet service
    	klog.V(1).Infoln("[reset] Getting init system")
    	initSystem, err := initsystem.GetInitSystem()
    	if err != nil {
    		klog.Warningln("[reset] The kubelet service could not be stopped by kubeadm. Unable to detect a supported init system!")
    		klog.Warningln("[reset] Please ensure kubelet is stopped manually")
    	} else {
    		if !r.DryRun() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. plugin/pkg/auth/authorizer/node/graph_populator.go

    	pod, ok := obj.(*corev1.Pod)
    	if !ok {
    		klog.Infof("unexpected type %T", obj)
    		return
    	}
    	if len(pod.Spec.NodeName) == 0 {
    		klog.V(5).Infof("deletePod %s/%s, no node", pod.Namespace, pod.Name)
    		return
    	}
    
    	klog.V(4).Infof("deletePod %s/%s for node %s", pod.Namespace, pod.Name, pod.Spec.NodeName)
    	startTime := time.Now()
    	g.graph.DeletePod(pod.Name, pod.Namespace)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/cache/interface.go

    	// After expiration, its information would be subtracted.
    	AssumePod(logger klog.Logger, pod *v1.Pod) error
    
    	// FinishBinding signals that cache for assumed pod can be expired
    	FinishBinding(logger klog.Logger, pod *v1.Pod) error
    
    	// ForgetPod removes an assumed pod from cache.
    	ForgetPod(logger klog.Logger, pod *v1.Pod) error
    
    	// AddPod either confirms a pod if it's assumed, or adds it back if it's expired.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 05:26:32 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  10. releasenotes/notes/desc-to-admin-log-scope.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    releaseNotes:
      - |
        **Added** description to `admin log`
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 08 08:31:29 UTC 2022
    - 186 bytes
    - Viewed (0)
Back to top