Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,731 for Dlog (0.03 sec)

  1. pkg/kubelet/pleg/evented.go

    		if err != nil {
    			// nolint:logcheck // Not using the result of klog.V inside the
    			// if branch is okay, we just use it to determine whether the
    			// additional "podStatus" key and its value should be added.
    			if klog.V(6).Enabled() {
    				klog.ErrorS(err, "Evented PLEG: error generating pod status from the received event", "podUID", podID, "podStatus", status)
    			} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 10:46:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. pkg/registry/rbac/rest/storage_rbac.go

    				return err
    			}
    			switch {
    			case result.Protected && result.Operation != reconciliation.ReconcileNone:
    				klog.Warningf("skipped reconcile-protected clusterrole.%s/%s with missing permissions: %v", rbac.GroupName, clusterRole.Name, result.MissingRules)
    			case result.Operation == reconciliation.ReconcileUpdate:
    				klog.V(2).Infof("updated clusterrole.%s/%s with additional permissions: %v", rbac.GroupName, clusterRole.Name, result.MissingRules)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 14 03:25:19 UTC 2022
    - 18.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/device_compiler.h

        ExecutableType** out_executable) {
      DCHECK_NE(out_executable, nullptr);
      VLOG(2) << "DeviceCompiler::Compile " << DebugString();
    
      if (VLOG_IS_ON(2)) {
        VLOG(2) << "num_inputs=" << args.size();
        for (int i = 0, end = args.size(); i < end; i++) {
          VLOG(3) << i << ": " << args[i].HumanString();
        }
      }
      TF_ASSIGN_OR_RETURN(auto signature,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  4. pkg/log/default_test.go

    			wantExit: true,
    		},
    
    		{
    			f:      func() { Debug("Hello") },
    			pat:    timePattern + "\tdebug\tlog/default_test.go:.*\tHello",
    			caller: true,
    		},
    
    		{
    			f: func() { Debug("Hello") },
    			pat: "{\"level\":\"debug\",\"time\":\"" + timePattern + "\",\"caller\":\"log/default_test.go:.*\",\"msg\":\"Hello\"," +
    				"\"stack\":\".*\"}",
    			json:       true,
    			caller:     true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. pkg/volume/fc/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
    - 3K bytes
    - Viewed (0)
  6. cluster/images/etcd/migrate/migrator.go

    	// Start current version of etcd.
    	runner := m.newServer()
    	klog.Infof("Starting etcd version %s to capture rollback snapshot.", current.version)
    	err = runner.Start(current.version)
    	if err != nil {
    		klog.Fatalf("Unable to automatically downgrade etcd: starting etcd version %s to capture rollback snapshot failed: %v", current.version, err)
    		return nil, err
    	}
    
    	klog.Infof("Snapshotting etcd %s to %s", current.version, snapshotFilename)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 28 07:33:23 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  7. pkg/volume/downwardapi/downwardapi.go

    	klog.V(3).Infof("Setting up a downwardAPI volume %v for pod %v/%v at %v", b.volName, b.pod.Namespace, b.pod.Name, dir)
    	// Wrap EmptyDir. Here we rely on the idempotency of the wrapped plugin to avoid repeatedly mounting
    	wrapped, err := b.plugin.host.NewWrapperMounter(b.volName, wrappedVolumeSpec(), b.pod, *b.opts)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. pkg/kubelet/status/state/state_mem.go

    package state
    
    import (
    	"sync"
    
    	"k8s.io/api/core/v1"
    	"k8s.io/klog/v2"
    )
    
    type stateMemory struct {
    	sync.RWMutex
    	podAllocation   PodResourceAllocation
    	podResizeStatus PodResizeStatus
    }
    
    var _ State = &stateMemory{}
    
    // NewStateMemory creates new State to track resources allocated to pods
    func NewStateMemory() State {
    	klog.V(2).InfoS("Initialized new in-memory state store for pod resource allocation tracking")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 18:21:21 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. pkg/controller/volume/attachdetach/cache/actual_state_of_world.go

    	// ResetDetachRequestTime resets the detachRequestTime to 0 which indicates there is no detach
    	// request any more for the volume
    	ResetDetachRequestTime(logger klog.Logger, volumeName v1.UniqueVolumeName, nodeName types.NodeName)
    
    	// SetDetachRequestTime sets the detachRequestedTime to current time if this is no
    	// previous request (the previous detachRequestedTime is zero) and return the time elapsed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 07:35:17 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  10. pkg/kubelet/lifecycle/predicate.go

    		case *PredicateFailureError:
    			reason = re.PredicateName
    			message = re.Error()
    			klog.V(2).InfoS("Predicate failed on Pod", "pod", klog.KObj(admitPod), "err", message)
    		case *InsufficientResourceError:
    			reason = fmt.Sprintf("OutOf%s", re.ResourceName)
    			message = re.Error()
    			klog.V(2).InfoS("Predicate failed on Pod", "pod", klog.KObj(admitPod), "err", message)
    		default:
    			reason = "UnexpectedPredicateFailureType"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 00:47:50 UTC 2023
    - 10.9K bytes
    - Viewed (0)
Back to top