Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,731 for Dlog (0.06 sec)

  1. pkg/volume/portworx/portworx_util.go

    		if _, present := spec.VolumeLabels[k]; present {
    			klog.Warningf("not saving annotation: %s=%s in spec labels due to an existing key", k, v)
    			continue
    		}
    		spec.VolumeLabels[k] = v
    	}
    
    	volumeID, err := driver.Create(locator, source, spec)
    	if err != nil {
    		klog.Errorf("Error creating Portworx Volume : %v", err)
    		return "", 0, nil, err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 12.2K bytes
    - Viewed (0)
  2. pkg/volume/util/atomic_writer.go

    			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)
    
    		// (6)
    		if err = w.writePayloadToDir(cleanPayload, tsDir); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/runtime/framework.go

    	}()
    	logger := klog.FromContext(ctx)
    	verboseLogs := logger.V(4).Enabled()
    	if verboseLogs {
    		logger = klog.LoggerWithName(logger, "PreBind")
    		logger = klog.LoggerWithValues(logger, "node", klog.ObjectRef{Name: nodeName})
    	}
    	for _, pl := range f.preBindPlugins {
    		ctx := ctx
    		if verboseLogs {
    			logger := klog.LoggerWithName(logger, pl.Name())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/topologymanager/scope_pod.go

    	bestHint, admit := s.calculateAffinity(pod)
    	klog.InfoS("Best TopologyHint", "bestHint", bestHint, "pod", klog.KObj(pod))
    	if !admit {
    		metrics.TopologyManagerAdmissionErrorsTotal.Inc()
    		return admission.GetPodAdmitResult(&TopologyAffinityError{})
    	}
    
    	for _, container := range append(pod.Spec.InitContainers, pod.Spec.Containers...) {
    		klog.InfoS("Topology Affinity", "bestHint", bestHint, "pod", klog.KObj(pod), "containerName", container.Name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 14:44:24 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. pkg/volume/csi/csi_mounter.go

    func removeMountDir(plug *csiPlugin, mountPath string) error {
    	klog.V(4).Info(log("removing mount path [%s]", mountPath))
    
    	mnt, err := isDirMounted(plug, mountPath)
    	if err != nil {
    		return err
    	}
    	if !mnt {
    		klog.V(4).Info(log("dir not mounted, deleting it [%s]", mountPath))
    		if err := os.Remove(mountPath); err != nil && !os.IsNotExist(err) {
    			return errors.New(log("failed to remove dir [%s]: %v", mountPath, err))
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 30 10:47:59 UTC 2024
    - 21K bytes
    - Viewed (1)
  6. pkg/controller/daemon/daemon_controller.go

    				podsToDelete = append(podsToDelete, oldestOldPod.Name)
    			case podutil.IsPodAvailable(oldestNewPod, ds.Spec.MinReadySeconds, metav1.Time{Time: dsc.failedPodsBackoff.Clock.Now()}):
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/cpumanager/state/state_mem.go

    */
    
    package state
    
    import (
    	"sync"
    
    	"k8s.io/klog/v2"
    	"k8s.io/utils/cpuset"
    )
    
    type stateMemory struct {
    	sync.RWMutex
    	assignments   ContainerCPUAssignments
    	defaultCPUSet cpuset.CPUSet
    }
    
    var _ State = &stateMemory{}
    
    // NewMemoryState creates new State for keeping track of cpu/pod assignment
    func NewMemoryState() State {
    	klog.InfoS("Initialized new in-memory state store")
    	return &stateMemory{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. pkg/kubelet/config/apiserver.go

    	// the node sync with the apiserver has completed.
    	klog.InfoS("Waiting for node sync before watching apiserver pods")
    	go func() {
    		for {
    			if nodeHasSynced() {
    				klog.V(4).InfoS("node sync completed")
    				break
    			}
    			time.Sleep(WaitForAPIServerSyncPeriod)
    			klog.V(4).InfoS("node sync has not completed yet")
    		}
    		klog.InfoS("Watching apiserver")
    		newSourceApiserverFromLW(lw, updates)
    	}()
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 21 19:46:27 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/pjrt_device_compiler_client.cc

        const XlaCompiler::Options& options,
        const XlaCompiler::CompilationResult& result) {
      VLOG(2) << "Compiling to xla::PjRtLoadedExecutable.";
    
      TF_ASSIGN_OR_RETURN(auto executable,
                          client_->Compile(*result.computation,
                                           GetPjRtCompileOptions(options, result)));
    
      VLOG(2) << "Compiled PJRT executable " << executable->name()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. pkg/util/oom/oom_linux.go

    	value := strconv.Itoa(oomScoreAdj)
    	klog.V(4).Infof("attempting to set %q to %q", oomScoreAdjPath, value)
    	var err error
    	for i := 0; i < maxTries; i++ {
    		err = os.WriteFile(oomScoreAdjPath, []byte(value), 0700)
    		if err != nil {
    			if os.IsNotExist(err) {
    				klog.V(2).Infof("%q does not exist", oomScoreAdjPath)
    				return os.ErrNotExist
    			}
    
    			klog.V(3).Info(err)
    			time.Sleep(100 * time.Millisecond)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 07:13:28 UTC 2022
    - 4K bytes
    - Viewed (0)
Back to top