Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 145 for Implementation (0.18 sec)

  1. cmd/kubeadm/app/util/apiclient/dryrunclient.go

    				logDryRunAction(action, opts.Writer, opts.MarshalFunc)
    
    				return false, nil, nil
    			},
    		},
    		// Let the DryRunGetter implementation take care of all GET requests.
    		// The DryRunGetter implementation may call a real API Server behind the scenes or just fake everything
    		&core.SimpleReactor{
    			Verb:     "get",
    			Resource: "*",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 21 09:49:59 UTC 2022
    - 10.3K bytes
    - Viewed (0)
  2. pkg/volume/util/hostutil/hostutil_linux.go

    		return fmt.Errorf("failed to make %s rshared: %v", path, err)
    	}
    
    	return nil
    }
    
    // selinux.SELinuxEnabled implementation for unit tests
    type seLinuxEnabledFunc func() bool
    
    // GetSELinux is common implementation of GetSELinuxSupport on Linux.
    func GetSELinux(path string, mountInfoFilename string, selinuxEnabled seLinuxEnabledFunc) (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 23 08:36:44 UTC 2023
    - 10K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/runtime/runtime.go

    	if r := recover(); r != nil {
    		handleCrash(ctx, r, additionalHandlers...)
    	}
    }
    
    // handleCrash is the common implementation of HandleCrash and HandleCrash.
    // Having those call a common implementation ensures that the stack depth
    // is the same regardless through which path the handlers get invoked.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. pkg/kubelet/pluginmanager/reconciler/reconciler_test.go

    type DummyImpl struct{}
    
    func NewDummyImpl() *DummyImpl {
    	return &DummyImpl{}
    }
    
    // ValidatePlugin is a dummy implementation
    func (d *DummyImpl) ValidatePlugin(pluginName string, endpoint string, versions []string) error {
    	return nil
    }
    
    // RegisterPlugin is a dummy implementation
    func (d *DummyImpl) RegisterPlugin(pluginName string, endpoint string, versions []string, pluginClientTimeout *time.Duration) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:21:15 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. pkg/kubelet/stats/cri_stats_provider.go

    		}
    		s, ok := status.FromError(err)
    		// Legitimate failure, rather than the CRI implementation does not support ListPodSandboxStats.
    		if !ok || s.Code() != codes.Unimplemented {
    			return nil, err
    		}
    		// CRI implementation doesn't support ListPodSandboxStats, warn and fallback.
    		klog.V(5).ErrorS(err,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/etcd3/watcher_test.go

    	storagetesting.RunWatchSemanticInitialEventsExtended(ctx, t, store)
    }
    
    // =======================================================================
    // Implementation-specific tests are following.
    // The following tests are exercising the details of the implementation
    // not the actual user-facing contract of storage interface.
    // As such, they may focus e.g. on non-functional aspects like performance
    // impact.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  7. pkg/controller/volume/expand/expand_controller.go

    	return nil, fmt.Errorf("NewWrapperMounter not supported by expand controller's VolumeHost implementation")
    }
    
    func (expc *expandController) NewWrapperUnmounter(volName string, spec volume.Spec, podUID types.UID) (volume.Unmounter, error) {
    	return nil, fmt.Errorf("NewWrapperUnmounter not supported by expand controller's VolumeHost implementation")
    }
    
    func (expc *expandController) GetMounter(pluginName string) mount.Interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. pkg/scheduler/testing/framework/fake_listers.go

    		namespace: namespace,
    	}
    }
    
    // List returns v1.ServiceList, the list of all services.
    func (f ServiceLister) List(labels.Selector) ([]*v1.Service, error) {
    	return f, nil
    }
    
    // serviceNamespaceLister is implementation of ServiceNamespaceLister returned by Services() above.
    type serviceNamespaceLister struct {
    	services  []*v1.Service
    	namespace string
    }
    
    func (f *serviceNamespaceLister) Get(name string) (*v1.Service, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 20 10:14:08 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  9. pkg/volume/util/subpath/subpath_linux.go

    	// There is no action when the container starts. Bind-mount will be cleaned
    	// when container stops by CleanSubPaths.
    	cleanupAction = nil
    	return newHostPath, cleanupAction, err
    }
    
    // This implementation is shared between Linux and NsEnter
    func safeOpenSubPath(mounter mount.Interface, subpath Subpath) (int, error) {
    	if !mount.PathWithinBase(subpath.Path, subpath.VolumePath) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 12 14:09:11 UTC 2022
    - 21.4K bytes
    - Viewed (0)
  10. pkg/controller/nodeipam/ipam/range_allocator_test.go

    			t.Errorf("%v: failed to create CIDRRangeAllocator with error %v", tc.description, err)
    			return
    		}
    		rangeAllocator, ok := allocator.(*rangeAllocator)
    		if !ok {
    			t.Logf("%v: found non-default implementation of CIDRAllocator, skipping white-box test...", tc.description)
    			return
    		}
    		rangeAllocator.nodesSynced = test.AlwaysReady
    		rangeAllocator.recorder = testutil.NewFakeRecorder()
    		go allocator.Run(tCtx)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 10:06:15 UTC 2024
    - 25.2K bytes
    - Viewed (0)
Back to top