Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for mage (0.36 sec)

  1. cluster/gce/util.sh

    #   NODE_IMAGE_PROJECT
    function set-linux-node-image() {
      if [[ "${NODE_OS_DISTRIBUTION}" == "gci" ]]; then
        DEFAULT_GCI_PROJECT=google-containers
        if [[ "${GCI_VERSION}" == "cos"* ]] || [[ "${NODE_IMAGE_FAMILY}" == "cos"* ]]; then
          DEFAULT_GCI_PROJECT=cos-cloud
        fi
    
        # If the node image is not set, we use the latest image based on image
        # family.
        # Otherwise, we respect whatever is set by the user.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  2. pkg/printers/internalversion/printers_test.go

    				Spec: api.PodSpec{
    					InitContainers: []api.Container{
    						{Name: "init1", Image: "initimage"},
    						{Name: "sidecar1", Image: "sidecarimage", RestartPolicy: ptr.To(api.ContainerRestartPolicyAlways)},
    					},
    					Containers: []api.Container{{Name: "container1", Image: "containerimage"}},
    				},
    				Status: api.PodStatus{
    					Phase: "Running",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods_test.go

    				{
    					Name:    testContainerName,
    					Image:   "img",
    					ImageID: "img1234",
    					State:   v1.ContainerState{Running: &v1.ContainerStateRunning{}},
    				},
    			},
    			Expected: []v1.ContainerStatus{
    				{
    					Name:               testContainerName,
    					ContainerID:        testContainerID.String(),
    					Image:              "img",
    					ImageID:            "img1234",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    	// stub the image GC manager
    	if kl.kubeletConfiguration.ImageGCHighThresholdPercent == 100 &&
    		(!utilfeature.DefaultFeatureGate.Enabled(features.ImageMaximumGCAge) || kl.kubeletConfiguration.ImageMaximumGCAge.Duration == 0) {
    		klog.V(2).InfoS("ImageGCHighThresholdPercent is set 100 and ImageMaximumGCAge is 0, Disable image GC")
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods.go

    	serviceEnv, err := kl.getServiceEnvVarMap(pod.Namespace, *pod.Spec.EnableServiceLinks)
    	if err != nil {
    		return result, err
    	}
    
    	var (
    		configMaps = make(map[string]*v1.ConfigMap)
    		secrets    = make(map[string]*v1.Secret)
    		tmpEnv     = make(map[string]string)
    	)
    
    	// Env will override EnvFrom variables.
    	// Process EnvFrom first then allow Env to replace existing values.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_test.go

    	// the channel close
    	kubelet.resyncInterval = time.Second * 30
    
    	ch := make(chan kubetypes.PodUpdate)
    	close(ch)
    
    	// sanity check (also prevent this test from hanging in the next step)
    	ok := kubelet.syncLoopIteration(ctx, ch, kubelet, make(chan time.Time), make(chan time.Time), make(chan *pleg.PodLifecycleEvent, 1))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  7. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	return nil
    }
    
    // makeEmptyQueueingHintMapPerProfile initializes an empty QueueingHintMapPerProfile for "" profile name.
    func makeEmptyQueueingHintMapPerProfile() QueueingHintMapPerProfile {
    	m := make(QueueingHintMapPerProfile)
    	m[""] = make(QueueingHintMap)
    	return m
    }
    
    func TestPriorityQueue_Add(t *testing.T) {
    	objs := []runtime.Object{medPriorityPodInfo.Pod, unschedulablePodInfo.Pod, highPriorityPodInfo.Pod}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  8. cluster/gce/gci/configure-helper.sh

          echo "${CUSTOM_INGRESS_YAML}" > "${dest_manifest}"
        else
          cp "${src_manifest}" "${dest_manifest}"
        fi
    
        # Override the glbc image if GCE_GLBC_IMAGE is specified.
        if [[ -n "${GCE_GLBC_IMAGE:-}" ]]; then
          sed -i "s|image:.*|image: ${GCE_GLBC_IMAGE}|" "${dest_manifest}"
        fi
      fi
    }
    
    # Setup working directory for kubelet.
    function setup-kubelet-dir {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  9. src/cmd/go/alldocs.go

    // dependencies.
    //
    // The -fuzzcache flag causes clean to remove files stored in the Go build
    // cache for fuzz testing. The fuzzing engine caches files that expand
    // code coverage, so removing them may make fuzzing less effective until
    // new inputs are found that provide the same coverage. These files are
    // distinct from those stored in testdata directory; clean does not remove
    // those files.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/data.go

    	//
    	// NB: ideally we would do a separate writeBlocks call for each
    	// section, but this would run the risk of undoing any file offset
    	// adjustments made during layout.
    	n := 0
    	for i := range dwarfp {
    		n += len(dwarfp[i].syms)
    	}
    	syms := make([]loader.Sym, 0, n)
    	for i := range dwarfp {
    		syms = append(syms, dwarfp[i].syms...)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top