Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 873 for NodeName (0.12 sec)

  1. pkg/ctrlz/assets/static/js/popper-1.12.9.min.js

    ull);return t?o[t]:o}function o(e){return'HTML'===e.nodeName?e:e.parentNode||e.host}function n(e){if(!e)return document.body;switch(e.nodeName){case'HTML':case'BODY':return e.ownerDocument.body;case'#document':return e.body;}var i=t(e),r=i.overflow,p=i.overflowX,s=i.overflowY;return /(auto|scroll)/.test(r+s+p)?e:n(o(e))}function r(e){var o=e&&e.offsetParent,i=o&&o.nodeName;return i&&'BODY'!==i&&'HTML'!==i?-1!==['TD','TABLE'].indexOf(o.nodeName)&&'static'===t(o,'position')?r(o):o:e?e.ownerDocumen...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  2. pilot/pkg/xds/workload_test.go

    		s := xds.NewFakeDiscoveryServer(t, xds.FakeOptions{
    			KubernetesObjects: []runtime.Object{mkPod("pod", "sa", "127.0.0.1", "not-node")},
    		})
    		ads := s.ConnectDeltaADS().WithType(v3.AddressType).WithMetadata(model.NodeMetadata{NodeName: "node"})
    		ads.Request(&discovery.DeltaDiscoveryRequest{
    			ResourceNamesSubscribe:   []string{"*"},
    			ResourceNamesUnsubscribe: []string{"*"},
    		})
    		ads.ExpectEmptyResponse()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/etcd/local_test.go

    	var tests = []struct {
    		name             string
    		advertiseAddress string
    		nodeName         string
    		extraArgs        []kubeadmapi.Arg
    		initialCluster   []etcdutil.Member
    		expected         []string
    	}{
    		{
    			name:             "Default args - with empty etcd initial cluster",
    			advertiseAddress: "1.2.3.4",
    			nodeName:         "foo",
    			expected: []string{
    				"etcd",
    				"--name=foo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  4. pkg/scheduler/extender.go

    		nodeResult = make([]*framework.NodeInfo, len(*result.NodeNames))
    		for i, nodeName := range *result.NodeNames {
    			if n, ok := fromNodeName[nodeName]; ok {
    				nodeResult[i] = n
    			} else {
    				return nil, nil, nil, fmt.Errorf(
    					"extender %q claims a filtered node %q which is not found in the input node list",
    					h.extenderURL, nodeName)
    			}
    		}
    	} else if result.Nodes != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. pkg/serviceaccount/claims.go

    		}
    		podName = podref.Name
    		podUID = podref.UID
    	}
    
    	var nodeName, nodeUID string
    	if noderef != nil {
    		switch {
    		case podref != nil:
    			if utilfeature.DefaultFeatureGate.Enabled(features.ServiceAccountTokenPodNodeInfo) {
    				// for pod-bound tokens, just extract the node claims
    				nodeName = noderef.Name
    				nodeUID = noderef.UID
    			}
    		case podref == nil:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 21:15:10 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  6. plugin/pkg/auth/authorizer/node/graph_test.go

    	addPod := func(podNumber, nodeNumber int) {
    		t.Helper()
    		nodeName := fmt.Sprintf("node%d", nodeNumber)
    		podName := fmt.Sprintf("pod%d", podNumber)
    		pod := &corev1.Pod{
    			ObjectMeta: metav1.ObjectMeta{Name: podName, Namespace: "ns", UID: types.UID(fmt.Sprintf("pod%duid1", podNumber))},
    			Spec: corev1.PodSpec{
    				NodeName:                 nodeName,
    				ServiceAccountName:       "sa1",
    				DeprecatedServiceAccount: "sa1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 23:14:19 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/interface.go

    	// internal error. In either case the pod is not going to be bound.
    	RunPreBindPlugins(ctx context.Context, state *CycleState, pod *v1.Pod, nodeName string) *Status
    
    	// RunPostBindPlugins runs the set of configured PostBind plugins.
    	RunPostBindPlugins(ctx context.Context, state *CycleState, pod *v1.Pod, nodeName string)
    
    	// RunReservePluginsReserve runs the Reserve method of the set of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  8. pkg/kubelet/cadvisor/testing/cadvisor_fake.go

    import (
    	cadvisorapi "github.com/google/cadvisor/info/v1"
    	cadvisorapiv2 "github.com/google/cadvisor/info/v2"
    	"k8s.io/kubernetes/pkg/kubelet/cadvisor"
    )
    
    // Fake cadvisor.Interface implementation.
    type Fake struct {
    	NodeName string
    }
    
    const (
    	// FakeKernelVersion is a fake kernel version for testing.
    	FakeKernelVersion = "3.16.0-0.bpo.4-amd64"
    	// FakeContainerOSVersion is a fake OS version for testing.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 22:07:20 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/types.go

    	// NodeName is a request to schedule this carp onto a specific node. If it is non-empty,
    	// the scheduler simply schedules this carp onto that node, assuming that it fits resource
    	// requirements.
    	// +optional
    	NodeName string `json:"nodeName,omitempty" protobuf:"bytes,10,opt,name=nodeName"`
    	// Host networking requested for this carp. Use the host's network namespace.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/interpodaffinity/filtering_test.go

    )
    
    var (
    	defaultNamespace = ""
    )
    
    func createPodWithAffinityTerms(namespace, nodeName string, labels map[string]string, affinity, antiAffinity []v1.PodAffinityTerm) *v1.Pod {
    	return &v1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Labels:    labels,
    			Namespace: namespace,
    		},
    		Spec: v1.PodSpec{
    			NodeName: nodeName,
    			Affinity: &v1.Affinity{
    				PodAffinity: &v1.PodAffinity{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 58.2K bytes
    - Viewed (0)
Back to top