Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 209 for MainKt (0.2 sec)

  1. pkg/kubemark/hollow_kubelet.go

    	NodeName            string
    	KubeletPort         int
    	KubeletReadOnlyPort int
    	MaxPods             int
    	PodsPerCore         int
    	NodeLabels          map[string]string
    	RegisterWithTaints  []v1.Taint
    }
    
    // Builds a KubeletConfiguration for the HollowKubelet, ensuring that the
    // usual defaults are applied for fields we do not override.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:10:54 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/staticinit/sched.go

    		list[1].Op() != ir.OGOTO ||
    		list[1].(*ir.BranchStmt).Label != label {
    		return false
    	}
    	as2body := list[0].(*ir.AssignListStmt)
    	if dcl == nil {
    		ainit := as2body.Init()
    		if len(ainit) != 1 || ainit[0].Op() != ir.ODCL {
    			return false
    		}
    		dcl = ainit[0].(*ir.Decl)
    	}
    	if len(as2body.Lhs) != 1 || as2body.Lhs[0] != dcl.X {
    		return false
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/BuildProfile.java

            return "Started on: " + dateFormat.format(valueOrBuildStartedTimeIfNotInitialized(buildStarted));
        }
    
        /*
         * When loading from configuration cache, the fields that are set on configuration time ain't initialized.
         * After configuration cache hit it's fair to use build start time value for them.
         * */
        private long valueOrBuildStartedTimeIfNotInitialized(long time) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:39 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  4. src/time/zoneinfo_abbrs_windows.go

    	"Mountain Standard Time (Mexico)": {"MST", "MST"},     // America/Mazatlan
    	"Central Standard Time (Mexico)":  {"CST", "CST"},     // America/Mexico_City
    	"Saint Pierre Standard Time":      {"-03", "-02"},     // America/Miquelon
    	"Montevideo Standard Time":        {"-03", "-03"},     // America/Montevideo
    	"Eastern Standard Time":           {"EST", "EDT"},     // America/New_York
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 20:01:59 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/config/cluster_test.go

    					Name: nodeName,
    					Annotations: map[string]string{
    						kubeadmconstants.AnnotationKubeadmCRISocket: "myCRIsocket",
    					},
    				},
    				Spec: v1.NodeSpec{
    					Taints: []v1.Taint{kubeadmconstants.ControlPlaneTaint},
    				},
    			},
    		},
    		{
    			name:          "invalid - no node",
    			fileContents:  kubeletConfFiles["configWithEmbeddedCert"],
    			expectedError: true,
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/apis/kubeadm/types.go

    	// it will be defaulted with a control-plane taint for control-plane nodes. If you don't want to taint your control-plane
    	// node, set this field to an empty slice, i.e. `taints: []` in the YAML file. This field is solely used for Node registration.
    	Taints []v1.Taint
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  7. pkg/kubelet/eviction/eviction_manager.go

    		}
    
    		// When node has memory pressure, check BestEffort Pod's toleration:
    		// admit it if tolerates memory pressure taint, fail for other tolerations, e.g. DiskPressure.
    		if corev1helpers.TolerationsTolerateTaint(attrs.Pod.Spec.Tolerations, &v1.Taint{
    			Key:    v1.TaintNodeMemoryPressure,
    			Effect: v1.TaintEffectNoSchedule,
    		}) {
    			return lifecycle.PodAdmitResult{Admit: true}
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 18:55:56 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  8. pkg/apis/core/types.go

    	Preference NodeSelectorTerm
    }
    
    // Taint represents taint that can be applied to the node.
    // The node this Taint is attached to has the "effect" on
    // any pod that does not tolerate the Taint.
    type Taint struct {
    	// Required. The taint key to be applied to a node.
    	Key string
    	// Required. The taint value corresponding to the taint key.
    	// +optional
    	Value string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  9. pkg/apis/core/v1/helper/helpers.go

    	spec.Tolerations = newTolerations
    	return true
    }
    
    // GetMatchingTolerations returns true and list of Tolerations matching all Taints if all are tolerated, or false otherwise.
    func GetMatchingTolerations(taints []v1.Taint, tolerations []v1.Toleration) (bool, []v1.Toleration) {
    	if len(taints) == 0 {
    		return true, []v1.Toleration{}
    	}
    	if len(tolerations) == 0 && len(taints) > 0 {
    		return false, []v1.Toleration{}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 23:03:54 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	// it will be defaulted with a control-plane taint for control-plane nodes. If you don't want to taint your control-plane
    	// node, set this field to an empty slice, i.e. `taints: []` in the YAML file. This field is solely used for Node registration.
    	Taints []corev1.Taint `json:"taints"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
Back to top