Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for lobster (0.12 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

        Operation* op) {
      RegionResourceHoister hoister(op);
      if (failed(hoister.Analyze())) return failure();
    
      // If there are no resource region captures, then nothing to do.
      if (!hoister.NeedsLifting()) return success();
    
      // Start the transformation. For each region, replace the resource read with
      // the value read before the op.
      hoister.GenerateHoistedReads();
      hoister.ReplaceResourceLoads(/*read_only=*/false);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    	informerFactory := informers.NewSharedInformerFactory(fakeKubeClient, controller.NoResyncPeriodFunc())
    	nsu := statusupdater.NewNodeStatusUpdater(
    		fakeKubeClient, informerFactory.Core().V1().Nodes().Lister(), asw)
    	nodeLister := informerFactory.Core().V1().Nodes().Lister()
    	reconciler := NewReconciler(
    		reconcilerLoopPeriod, maxWaitForUnmountDuration, syncLoopPeriod, false, false, dsw, asw, ad, nsu, nodeLister, fakeRecorder)
    
    	// Act
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    	}
    
    	// what verbs are supported by the storage, used to know what verbs we support per path
    	creater, isCreater := storage.(rest.Creater)
    	namedCreater, isNamedCreater := storage.(rest.NamedCreater)
    	lister, isLister := storage.(rest.Lister)
    	getter, isGetter := storage.(rest.Getter)
    	getterWithOptions, isGetterWithOptions := storage.(rest.GetterWithOptions)
    	gracefulDeleter, isGracefulDeleter := storage.(rest.GracefulDeleter)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    		classLister:                fh.SharedInformerFactory().Resource().V1alpha2().ResourceClasses().Lister(),
    		podSchedulingContextLister: fh.SharedInformerFactory().Resource().V1alpha2().PodSchedulingContexts().Lister(),
    		claimParametersLister:      fh.SharedInformerFactory().Resource().V1alpha2().ResourceClaimParameters().Lister(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  5. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    		for _, obj := range objs {
    			pod, ok := obj.(*v1.Pod)
    			if !ok {
    				continue
    			}
    			pods = append(pods, pod)
    		}
    		return pods, nil
    	}
    	nc.podLister = podInformer.Lister()
    	nc.nodeLister = nodeInformer.Lister()
    
    	if !utilfeature.DefaultFeatureGate.Enabled(features.SeparateTaintEvictionController) {
    		logger.Info("Running TaintEvictionController as part of NodeLifecyleController")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  6. pkg/controller/daemon/daemon_controller.go

    			dsc.updateDaemonset(logger, oldObj, newObj)
    		},
    		DeleteFunc: func(obj interface{}) {
    			dsc.deleteDaemonset(logger, obj)
    		},
    	})
    	dsc.dsLister = daemonSetInformer.Lister()
    	dsc.dsStoreSynced = daemonSetInformer.Informer().HasSynced
    
    	historyInformer.Informer().AddEventHandler(cache.ResourceEventHandlerFuncs{
    		AddFunc: func(obj interface{}) {
    			dsc.addHistory(logger, obj)
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  7. common/scripts/metallb-native.yaml

    ---
    apiVersion: rbac.authorization.k8s.io/v1
    kind: RoleBinding
    metadata:
      labels:
        app: metallb
      name: pod-lister
      namespace: metallb-system
    roleRef:
      apiGroup: rbac.authorization.k8s.io
      kind: Role
      name: pod-lister
    subjects:
    - kind: ServiceAccount
      name: speaker
      namespace: metallb-system
    ---
    apiVersion: rbac.authorization.k8s.io/v1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  8. pkg/scheduler/internal/queue/scheduling_queue.go

    func WithPodMaxBackoffDuration(duration time.Duration) Option {
    	return func(o *priorityQueueOptions) {
    		o.podMaxBackoffDuration = duration
    	}
    }
    
    // WithPodLister sets pod lister for PriorityQueue.
    func WithPodLister(pl listersv1.PodLister) Option {
    	return func(o *priorityQueueOptions) {
    		o.podLister = pl
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

            .testEquals();
      }
    
      private interface Loser<E extends Throwable> {
        void lose() throws E;
      }
    
      public <T extends Loser<AssertionError>> void testMethod_exceptionTypes()
          throws NoSuchMethodException {
        Method failMethod = Loser.class.getMethod("lose");
        Invokable<T, ?> invokable = new TypeToken<T>(getClass()) {}.method(failMethod);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  10. pkg/controller/podautoscaler/horizontal.go

    			UpdateFunc: hpaController.updateHPA,
    			DeleteFunc: hpaController.deleteHPA,
    		},
    		resyncPeriod,
    	)
    	hpaController.hpaLister = hpaInformer.Lister()
    	hpaController.hpaListerSynced = hpaInformer.Informer().HasSynced
    
    	hpaController.podLister = podInformer.Lister()
    	hpaController.podListerSynced = podInformer.Informer().HasSynced
    
    	replicaCalc := NewReplicaCalculator(
    		metricsClient,
    		hpaController.podLister,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
Back to top