Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 121 for Implementation (0.2 sec)

  1. pkg/kubelet/util/manager/watch_based_manager.go

    	return store
    }
    
    func (c *objectCache) newStore() *cacheStore {
    	// TODO: We may consider created a dedicated store keeping just a single
    	// item, instead of using a generic store implementation for this purpose.
    	// However, simple benchmarks show that memory overhead in that case is
    	// decrease from ~600B to ~300B per object. So we are not optimizing it
    	// until we will see a good reason for that.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. pkg/proxy/util/nfacct/nfacct_linux_test.go

    */
    
    package nfacct
    
    import (
    	"syscall"
    	"testing"
    
    	"github.com/stretchr/testify/assert"
    	"github.com/vishvananda/netlink/nl"
    	"golang.org/x/sys/unix"
    )
    
    // fakeHandler is a mock implementation of the handler interface, designed for testing.
    type fakeHandler struct {
    	// requests stores instances of fakeRequest, capturing new requests.
    	requests []*fakeRequest
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/generated.proto

      // but should apply for any default implementation. If set, it is assumed that a load balancer
      // implementation is watching for Services with a matching class. Any default load balancer
      // implementation (e.g. cloud providers) should ignore Services that set this field.
      // This field can only be set when creating or updating a Service to type 'LoadBalancer'.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/interfaces.go

    	// current version of the object to avoid read operation from storage to get it.
    	// However, the implementations have to retry in case suggestion is stale.
    	//
    	// Example:
    	//
    	// s := /* implementation of Interface */
    	// err := s.GuaranteedUpdate(
    	//     "myKey", &MyType{}, true, preconditions,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:53:48 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. pkg/apis/core/types.go

    	// but should apply for any default implementation. If set, it is assumed that a load balancer
    	// implementation is watching for Services with a matching class. Any default load balancer
    	// implementation (e.g. cloud providers) should ignore Services that set this field.
    	// This field can only be set when creating or updating a Service to type 'LoadBalancer'.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  7. pkg/volume/util/operationexecutor/operation_executor.go

    type VolumeLogger interface {
    	// Creates a detailed msg that can be used in logs
    	// The msg format follows the pattern "<prefixMsg> <volume details> <suffixMsg>",
    	// where each implementation provides the volume details
    	GenerateMsgDetailed(prefixMsg, suffixMsg string) (detailedMsg string)
    
    	// Creates a detailed error that can be used in logs.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  8. pkg/features/kube_features.go

    	// kep: https://kep.k8s.io/2364
    	// alpha: v1.23
    	//
    	// Configures the Kubelet to use the CRI to populate pod and container stats, instead of supplimenting with stats from cAdvisor.
    	// Requires the CRI implementation supports supplying the required stats.
    	PodAndContainerStatsFromCRI featuregate.Feature = "PodAndContainerStatsFromCRI"
    
    	// owner: @ahg-g
    	// alpha: v1.21
    	// beta: v1.22
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  9. pkg/scheduler/scheduler_test.go

    				}
    			}
    		})
    	}
    }
    
    var _ framework.QueueSortPlugin = &fakeQueueSortPlugin{}
    
    // fakeQueueSortPlugin is a no-op implementation for QueueSort extension point.
    type fakeQueueSortPlugin struct{}
    
    func (pl *fakeQueueSortPlugin) Name() string {
    	return queueSort
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 42K bytes
    - Viewed (0)
  10. pkg/volume/hostpath/host_path.go

    func (c *hostPathUnmounter) TearDownAt(dir string) error {
    	return fmt.Errorf("TearDownAt() does not make sense for host paths")
    }
    
    // hostPathProvisioner implements a Provisioner for the HostPath plugin
    // This implementation is meant for testing only and only works in a single node cluster.
    type hostPathProvisioner struct {
    	host     volume.VolumeHost
    	options  volume.VolumeOptions
    	plugin   *hostPathPlugin
    	basePath string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top