Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for lobster (0.17 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/compile/internal/types2/api_test.go

    				// Verify the invariant that re-instantiating the corresponding generic
    				// type with TypeArgs results in an identical instance.
    				ptype := useMap[inst.Name].Type()
    				lister, _ := ptype.(interface{ TypeParams() *TypeParamList })
    				if lister == nil || lister.TypeParams().Len() == 0 {
    					t.Fatalf("info.Types[%v] = %v, want parameterized type", inst.Name, ptype)
    				}
    				inst2, err := Instantiate(nil, ptype, targs, true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  9. src/go/types/api_test.go

    				// Verify the invariant that re-instantiating the corresponding generic
    				// type with TypeArgs results in an identical instance.
    				ptype := useMap[inst.Ident].Type()
    				lister, _ := ptype.(interface{ TypeParams() *TypeParamList })
    				if lister == nil || lister.TypeParams().Len() == 0 {
    					t.Fatalf("info.Types[%v] = %v, want parameterized type", inst.Ident, ptype)
    				}
    				inst2, err := Instantiate(nil, ptype, targs, true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  10. pkg/controller/job/job_controller.go

    		},
    		DeleteFunc: func(obj interface{}) {
    			jm.deleteJob(logger, obj)
    		},
    	}); err != nil {
    		return nil, fmt.Errorf("adding Job event handler: %w", err)
    	}
    	jm.jobLister = jobInformer.Lister()
    	jm.jobStoreSynced = jobInformer.Informer().HasSynced
    
    	if _, err := podInformer.Informer().AddEventHandler(cache.ResourceEventHandlerFuncs{
    		AddFunc: func(obj interface{}) {
    			jm.addPod(logger, obj)
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
Back to top