Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,731 for Dlog (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. pkg/kubelet/volumemanager/reconciler/reconciler_common.go

    	}
    	if err == nil {
    		if remountingLogStr == "" {
    			klog.V(1).InfoS(volumeToMount.GenerateMsgDetailed("operationExecutor.MountVolume started", remountingLogStr), "pod", klog.KObj(volumeToMount.Pod))
    		} else {
    			klog.V(5).InfoS(volumeToMount.GenerateMsgDetailed("operationExecutor.MountVolume started", remountingLogStr), "pod", klog.KObj(volumeToMount.Pod))
    		}
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  8. src/log/slog/example_logvaluer_secret_test.go

    // license that can be found in the LICENSE file.
    
    package slog_test
    
    import (
    	"log/slog"
    	"log/slog/internal/slogtest"
    	"os"
    )
    
    // A token is a secret value that grants permissions.
    type Token string
    
    // LogValue implements slog.LogValuer.
    // It avoids revealing the token.
    func (Token) LogValue() slog.Value {
    	return slog.StringValue("REDACTED_TOKEN")
    }
    
    // This example demonstrates a Value that replaces itself
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 18:32:54 UTC 2023
    - 906 bytes
    - Viewed (0)
  9. cluster/images/etcd/migrate/migrate.go

    )
    
    func main() {
    	registerFlags(migrateCmd.Flags(), &opts)
    	err := migrateCmd.Execute()
    	if err != nil {
    		klog.Errorf("Failed to execute migratecmd: %s", err)
    	}
    }
    
    // runMigrate starts the migration.
    func runMigrate() {
    	if err := opts.validateAndDefault(); err != nil {
    		klog.Fatalf("%v", err)
    	}
    	copyBinaries()
    
    	target := &EtcdVersionPair{
    		version:        MustParseEtcdVersion(opts.targetVersion),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 16 23:10:54 UTC 2020
    - 3.8K bytes
    - Viewed (0)
  10. pkg/volume/iscsi/disk_manager.go

    	if err != nil {
    		klog.Errorf("Failed to bind mount: source:%s, target:%s, err:%v", globalPDPath, volPath, err)
    		noMnt, mntErr := b.mounter.IsLikelyNotMountPoint(volPath)
    		if mntErr != nil {
    			klog.Errorf("IsLikelyNotMountPoint check failed: %v", mntErr)
    			return err
    		}
    		if !noMnt {
    			if mntErr = b.mounter.Unmount(volPath); mntErr != nil {
    				klog.Errorf("Failed to unmount: %v", mntErr)
    				return err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 19:34:37 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top