Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,284 for controllee (0.15 sec)

  1. pkg/controller/volume/ephemeral/controller.go

    	"k8s.io/client-go/util/workqueue"
    	"k8s.io/component-helpers/storage/ephemeral"
    	"k8s.io/kubernetes/pkg/controller/volume/common"
    	ephemeralvolumemetrics "k8s.io/kubernetes/pkg/controller/volume/ephemeral/metrics"
    	"k8s.io/kubernetes/pkg/controller/volume/events"
    )
    
    // Controller creates PVCs for ephemeral inline volumes in a pod spec.
    type Controller interface {
    	Run(ctx context.Context, workers int)
    }
    
    type ephemeralController struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/aggregate/controller.go

    	"istio.io/istio/pkg/util/sets"
    )
    
    // The aggregate controller does not implement serviceregistry.Instance since it may be comprised of various
    // providers and clusters.
    var (
    	_ model.ServiceDiscovery    = &Controller{}
    	_ model.AggregateController = &Controller{}
    )
    
    // Controller aggregates data across different registries and monitors for changes
    type Controller struct {
    	meshHolder mesh.Holder
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceentry/controller.go

    func (s *Controller) AppendWorkloadHandler(h func(*model.WorkloadInstance, model.Event)) {
    	s.workloadHandlers = append(s.workloadHandlers, h)
    }
    
    // Run is used by some controllers to execute background jobs after init is done.
    func (s *Controller) Run(stopCh <-chan struct{}) {
    	s.edsQueue.Run(stopCh)
    }
    
    // HasSynced always returns true for SE
    func (s *Controller) HasSynced() bool {
    	return true
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapiv3/controller.go

    	listers "k8s.io/apiextensions-apiserver/pkg/client/listers/apiextensions/v1"
    	"k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder"
    )
    
    // Controller watches CustomResourceDefinitions and publishes OpenAPI v3
    type Controller struct {
    	crdLister  listers.CustomResourceDefinitionLister
    	crdsSynced cache.InformerSynced
    
    	// To allow injection for testing.
    	syncFn func(string) error
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. pkg/controller/validatingadmissionpolicystatus/controller.go

    )
    
    // ControllerName has "Status" in it to differentiate this controller with the other that runs in API server.
    const ControllerName = "validatingadmissionpolicy-status"
    
    // Controller is the ValidatingAdmissionPolicy Status controller that reconciles the Status field of each policy object.
    // This controller runs type checks against referred types for each policy definition.
    type Controller struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. pilot/pkg/model/controller.go

    )
    
    type ServiceHandler func(*Service, *Service, Event)
    
    // Controller defines an event controller loop.  Proxy agent registers itself
    // with the controller loop and receives notifications on changes to the
    // service topology or changes to the configuration artifacts.
    //
    // The controller guarantees the following consistency requirement: registry
    // view in the controller is as AT LEAST as fresh as the moment notification
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 25 06:54:32 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/ops/gen/common/controller.cc

    namespace tensorflow {
    namespace generator {
    
    Controller::Controller(PathConfig path_config, Env* env)
        : env_(env), path_config_(path_config) {
      // Load the Op and API definitions
      InitializeOpApi();
    
      // Convert the Op and API definitions to the internal data model
      BuildModel();
    }
    Controller::~Controller() { delete api_def_map_; }
    
    const void Controller::WriteFile(const string& file_path,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 09:51:28 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. pkg/config/analysis/incluster/controller.go

    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/util/concurrent"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // Controller manages repeatedly running analyzers in istiod, and reporting results
    // via istio status fields.
    type Controller struct {
    	analyzer  *local.IstiodAnalyzer
    	statusctl *status.Controller
    }
    
    func NewController(stop <-chan struct{}, rwConfigStore model.ConfigStoreController,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. pkg/controlplane/controller/kubernetesservice/controller.go

    	"k8s.io/kubernetes/pkg/controlplane/reconcilers"
    )
    
    const (
    	kubernetesServiceName = "kubernetes"
    )
    
    // Controller is the controller manager for the core bootstrap Kubernetes
    // controller loops, which manage creating the "kubernetes" service and
    // provide the IP repair check on service IPs
    type Controller struct {
    	Config
    
    	client        kubernetes.Interface
    	serviceLister v1listers.ServiceLister
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 16:33:01 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/controller.go

    // Controller defines the controller for the gateway-api. The controller acts a bit different from most.
    // Rather than watching the CRs directly, we depend on the existing model.ConfigStoreController which
    // already watches all CRs. When there are updates, a new PushContext will be computed, which will eventually
    // call Controller.Reconcile(). Once this happens, we will inspect the current state of the world, and transform
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top