Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Implementation (0.14 sec)

  1. pkg/scheduler/framework/runtime/framework_test.go

    func newQueueSortPlugin(_ context.Context, _ runtime.Object, _ framework.Handle) (framework.Plugin, error) {
    	return &TestQueueSortPlugin{}, nil
    }
    
    // TestQueueSortPlugin is a no-op implementation for QueueSort extension point.
    type TestQueueSortPlugin struct{}
    
    func (pl *TestQueueSortPlugin) Name() string {
    	return queueSortPlugin
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  2. pkg/volume/util/operationexecutor/operation_generator.go

    // If symbolic link isn't there, the device isn't referenced from Pods.
    // Call plugin TearDownDevice to clean-up device connection, stored data under
    // globalMapPath, these operations depend on plugin implementation.
    // Once TearDownDevice is completed, remove globalMapPath dir.
    // After globalMapPath is removed, fd lock by loopback for the device can
    // be released safely because no one can consume the device at this point.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    		if !ok {
    			// In fact, we could also apply Waiting state here, but it is less informative,
    			// and the container will be restarted soon, so we prefer the original state here.
    			// Note that with the current implementation of ShouldContainerBeRestarted the original state here
    			// could be:
    			//   * Waiting: There is no associated historical container and start failure reason record.
    			//   * Terminated: The container is terminated.
    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.go

    	klet.setNodeStatusFuncs = klet.defaultNodeStatusFuncs()
    
    	return klet, nil
    }
    
    type serviceLister interface {
    	List(labels.Selector) ([]*v1.Service, error)
    }
    
    // Kubelet is the main kubelet implementation.
    type Kubelet struct {
    	kubeletConfiguration kubeletconfiginternal.KubeletConfiguration
    
    	// hostname is the hostname the kubelet detected or was given via flag/config
    	hostname string
    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. cluster/gce/gci/configure-helper.sh

          fi
          params+=" --proxy-mode=ipvs --ipvs-sync-period=1m --ipvs-min-sync-period=10s"
          ;;
        nftables)
          # Pass --conntrack-tcp-be-liberal so we can test that this makes the
          # "proxy implementation should not be vulnerable to the invalid conntrack state bug"
          # test pass. https://issues.k8s.io/122663#issuecomment-1885024015
          params+=" --proxy-mode=nftables --conntrack-tcp-be-liberal"
          ;;
      esac
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
Back to top