Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for Dlog (0.05 sec)

  1. pkg/volume/util/operationexecutor/operation_generator.go

    		simpleMsg, detailedMsg := volumeToMount.GenerateMsg("MapVolume.MapPodDevice succeeded", fmt.Sprintf("globalMapPath %q", globalMapPath))
    		verbosity := klog.Level(4)
    		og.recorder.Eventf(volumeToMount.Pod, v1.EventTypeNormal, kevents.SuccessfulMountVolume, simpleMsg)
    		klog.V(verbosity).InfoS(detailedMsg, "pod", klog.KObj(volumeToMount.Pod))
    
    		// Device mapping for pod device map path succeeded
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet.go

    	pod := runningPod.ToAPIPod()
    	klog.V(4).InfoS("SyncTerminatingRuntimePod enter", "pod", klog.KObj(pod), "podUID", pod.UID)
    	defer klog.V(4).InfoS("SyncTerminatingRuntimePod exit", "pod", klog.KObj(pod), "podUID", pod.UID)
    
    	// we kill the pod directly since we have lost all other information about the pod.
    	klog.V(4).InfoS("Orphaned running pod terminating without grace period", "pod", klog.KObj(pod), "podUID", pod.UID)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    			klog.V(4).InfoS("Status manager phase was terminal, updating phase to match", "pod", klog.KObj(pod), "phase", oldPodStatus.Phase)
    			s.Phase = oldPodStatus.Phase
    		case pod.Status.Phase == v1.PodFailed || pod.Status.Phase == v1.PodSucceeded:
    			klog.V(4).InfoS("API phase was terminal, updating phase to match", "pod", klog.KObj(pod), "phase", pod.Status.Phase)
    			s.Phase = pod.Status.Phase
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/queue/scheduling_queue_test.go

    type operation func(t *testing.T, logger klog.Logger, queue *PriorityQueue, pInfo *framework.QueuedPodInfo)
    
    var (
    	add = func(t *testing.T, logger klog.Logger, queue *PriorityQueue, pInfo *framework.QueuedPodInfo) {
    		if err := queue.Add(logger, pInfo.Pod); err != nil {
    			t.Fatalf("Unexpected error during Add: %v", err)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  5. go.sum

    k8s.io/klog v0.0.0-20181102134211-b9b56d5dfc92/go.mod h1:Gq+BEi5rUBO/HRz0bTSXDUcqjScdoY3a9IHpCEIOOfk=
    k8s.io/klog v0.3.0/go.mod h1:Gq+BEi5rUBO/HRz0bTSXDUcqjScdoY3a9IHpCEIOOfk=
    k8s.io/klog v1.0.0/go.mod h1:4Bi6QPql/J/LkTDqv7R/cd3hPo4k2DG6Ptcz060Ez5I=
    k8s.io/klog/v2 v2.0.0/go.mod h1:PBfzABfn139FHAV07az/IF9Wp1bkk3vpT2XSJ76fSDE=
    k8s.io/klog/v2 v2.120.1 h1:QXU6cPEOIslTGvZaXvFWiP9VKyeet3sawzTOvdXb4Vw=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          if (PruneForReverseReachability(graph_.get(), prune_start)) {
            VLOG(1) << "Pruned unused nodes in graphdef";
          } else {
            VLOG(1) << "No unused nodes in graphdef to prune";
          }
        } else {
          VLOG(1) << "No output nodes specified, skipping pruning";
        }
      } else {
        VLOG(1) << "Pruning unused nodes in graphdef is disabled";
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    		klog.V(5).Infof("request: %+v", *r)
    		switch r.URL.Path {
    		case "/.testing/keys":
    			w.Header().Set("Content-Type", "application/json")
    			keyBytes, err := json.Marshal(keys)
    			if err != nil {
    				t.Fatalf("unexpected error while marshaling keys: %v", err)
    			}
    			klog.V(5).Infof("%v: returning: %+v", r.URL, string(keyBytes))
    			w.Write(keyBytes)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  8. src/net/http/server.go

    }
    
    func (c *loggingConn) Write(p []byte) (n int, err error) {
    	log.Printf("%s.Write(%d) = ....", c.name, len(p))
    	n, err = c.Conn.Write(p)
    	log.Printf("%s.Write(%d) = %d, %v", c.name, len(p), n, err)
    	return
    }
    
    func (c *loggingConn) Read(p []byte) (n int, err error) {
    	log.Printf("%s.Read(%d) = ....", c.name, len(p))
    	n, err = c.Conn.Read(p)
    	log.Printf("%s.Read(%d) = %d, %v", c.name, len(p), n, err)
    	return
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  9. pkg/controller/job/job_controller_test.go

    	"k8s.io/client-go/tools/cache"
    	"k8s.io/client-go/util/workqueue"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	metricstestutil "k8s.io/component-base/metrics/testutil"
    	"k8s.io/klog/v2"
    	"k8s.io/klog/v2/ktesting"
    	_ "k8s.io/kubernetes/pkg/apis/core/install"
    	"k8s.io/kubernetes/pkg/controller"
    	"k8s.io/kubernetes/pkg/controller/job/metrics"
    	"k8s.io/kubernetes/pkg/controller/testutil"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/ppc64/asm9.go

    	case 7: /* mov r, soreg ==> stw o(r) */
    		r := int(p.To.Reg)
    		v := c.regoff(&p.To)
    		if int32(int16(v)) != v {
    			log.Fatalf("mishandled instruction %v", p)
    		}
    		// Offsets in DS form stores must be a multiple of 4
    		inst := c.opstore(p.As)
    		if c.opform(inst) == DS_FORM && v&0x3 != 0 {
    			log.Fatalf("invalid offset for DS form load/store %v", p)
    		}
    		o1 = AOP_IRR(inst, uint32(p.From.Reg), uint32(r), uint32(v))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
Back to top