Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for mirror_pad (0.32 sec)

  1. pkg/kubelet/status/status_manager.go

    				klog.InfoS("Got unexpected podIsFinished=false, while podIsFinished=true in status cache, programmer error.", "pod", klog.KObj(pod))
    				podIsFinished = true
    			}
    		}
    	} else if mirrorPod, ok := m.podManager.GetMirrorPodByPod(pod); ok {
    		oldStatus = mirrorPod.Status
    	} else {
    		oldStatus = pod.Status
    	}
    
    	// Check for illegal state transition in containers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_test.go

    	// Mirror pod has an outdated spec.
    	mirrorPod := podWithUIDNameNsSpec("11111111", "foo", "ns", v1.PodSpec{
    		Containers: []v1.Container{
    			{Name: "1234", Image: "bar"},
    		},
    	})
    	mirrorPod.Annotations[kubetypes.ConfigSourceAnnotationKey] = "api"
    	mirrorPod.Annotations[kubetypes.ConfigMirrorAnnotationKey] = "mirror"
    
    	pods := []*v1.Pod{pod, mirrorPod}
    	kl.podManager.SetPods(pods)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    			continue
    		}
    		kl.podWorkers.UpdatePod(UpdatePodOptions{
    			UpdateType: kubetypes.SyncPodCreate,
    			Pod:        pod,
    			MirrorPod:  mirrorPod,
    		})
    
    		// the desired pod is now known as well
    		workingPods[desiredPod.UID] = PodWorkerSync{State: SyncPod, HasConfig: true, Static: isStatic}
    		if isStatic {
    			// restartable static pods are the normal case
    			restartCountStatic++
    		} else {
    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/kubelet/kubelet_pods_test.go

    				pod := staticPod()
    
    				w.UpdatePod(UpdatePodOptions{
    					UpdateType: kubetypes.SyncPodCreate,
    					StartTime:  time.Unix(1, 0).UTC(),
    					Pod:        pod,
    					MirrorPod:  mirrorPod(pod, "node-1", "node-uid-1"),
    				})
    				drainAllWorkers(w)
    
    				// expect we get a pod sync record for kill that should have the default grace period
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  5. pkg/kubelet/metrics/metrics.go

    	RunningContainersKey               = "running_containers"
    	DesiredPodCountKey                 = "desired_pods"
    	ActivePodCountKey                  = "active_pods"
    	MirrorPodCountKey                  = "mirror_pods"
    	WorkingPodCountKey                 = "working_pods"
    	OrphanedRuntimePodTotalKey         = "orphaned_runtime_pods_total"
    	RestartedPodTotalKey               = "restarted_pods_total"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/schema/schema_generated.h

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
  7. RELEASE.md

        *   Added int16x8 support for the built-in op `exp`
        *   Added int16x8 support for the built-in op `mirror_pad`
        *   Added int16x8 support for the built-in ops `space_to_batch_nd` and `batch_to_space_nd`
        *   Added 16-bit int type support for built-in op `less`, `greater_than`, `equal`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/mark_for_compilation_pass.cc

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      let summary = [{
    Gradient op for `MirrorPad` op. This op folds a mirror-padded tensor.
      }];
    
      let description = [{
    This operation folds the padded areas of `input` by `MirrorPad` according to the
    `paddings` you specify. `paddings` must be the same as `paddings` argument
    given to the corresponding `MirrorPad` op.
    
    The folded size of each dimension D of the output is:
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top