Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 94 for lobster (0.13 sec)

  1. pkg/volume/csi/csi_block_test.go

    	}
    
    	// after the driver is created, create the plugin. newTestPlugin waits for the informer to sync,
    	// such that csiMapper.SetUpDevice below sees the VolumeAttachment object in the lister.
    
    	plug, tmpDir := newTestPlugin(t, fakeClient)
    	defer os.RemoveAll(tmpDir)
    
    	csiMapper, _, _, err := prepareBlockMapperTest(plug, "test-pv", t)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  2. plugin/pkg/admission/noderestriction/admission.go

    }
    
    // SetExternalKubeInformerFactory registers an informer factory into Plugin
    func (p *Plugin) SetExternalKubeInformerFactory(f informers.SharedInformerFactory) {
    	p.podsGetter = f.Core().V1().Pods().Lister()
    	p.nodesGetter = f.Core().V1().Nodes().Lister()
    }
    
    // ValidateInitialization validates the Plugin was initialized properly
    func (p *Plugin) ValidateInitialization() error {
    	if p.nodeIdentifier == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionResult.java

    import java.util.List;
    import java.util.Optional;
    import java.util.Set;
    import java.util.TreeSet;
    import java.util.regex.Pattern;
    
    public class OutputScrapingExecutionResult implements ExecutionResult {
        // This monster is to find lines in our logs that look like stack traces
        // We want to match lines that contain just packages and classes:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_node_status.go

    	if timeout {
    		klog.ErrorS(nil, "Node not becoming ready in time after startup")
    		return true
    	}
    
    	originalNode, err := kl.GetNode()
    	if err != nil {
    		klog.ErrorS(err, "Error getting the current node from lister")
    		return false
    	}
    
    	readyIdx, originalNodeReady := nodeutil.GetNodeCondition(&originalNode.Status, v1.NodeReady)
    	if readyIdx == -1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  5. pkg/registry/flowcontrol/ensurer/strategy.go

    	Delete(ctx context.Context, name string, opts metav1.DeleteOptions) error
    }
    
    // cache is the needed fragment of the typed generated access ("lister") to an informer's local cache
    type cache[ObjectType configurationObject] interface {
    	List(labels.Selector) ([]ObjectType, error)
    	Get(name string) (ObjectType, error)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 14K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/volumebinding/volume_binding.go

    			})
    		}
    		scorer = buildScorerFunction(shape)
    	}
    	return &VolumeBinding{
    		Binder:    binder,
    		PVCLister: pvcInformer.Lister(),
    		scorer:    scorer,
    		fts:       fts,
    	}, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  7. pkg/controller/volume/persistentvolume/framework_test.go

    				continue
    			}
    			ctrl.volumes.store.Add(volume)
    		}
    		reactor.AddClaims(test.initialClaims)
    		reactor.AddVolumes(test.initialVolumes)
    
    		// Inject classes into controller via a custom lister.
    		indexer := cache.NewIndexer(cache.MetaNamespaceKeyFunc, cache.Indexers{})
    		for _, class := range storageClasses {
    			indexer.Add(class)
    		}
    		ctrl.classLister = storagelisters.NewStorageClassLister(indexer)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 09:54:00 UTC 2023
    - 38.3K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/cache/CacheBuilderTest.java

      }
    
      public void testInitialCapacity_large() {
        CacheBuilder.newBuilder().initialCapacity(Integer.MAX_VALUE);
        // that the builder didn't blow up is enough;
        // don't actually create this monster!
      }
    
      public void testConcurrencyLevel_zero() {
        CacheBuilder<Object, Object> builder = CacheBuilder.newBuilder();
        try {
          builder.concurrencyLevel(0);
          fail();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 03 20:10:02 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  9. pkg/controller/replicaset/replica_set.go

    			if controllerRef == nil {
    				return []string{}, nil
    			}
    			return []string{string(controllerRef.UID)}, nil
    		},
    	})
    	rsc.rsIndexer = rsInformer.Informer().GetIndexer()
    	rsc.rsLister = rsInformer.Lister()
    	rsc.rsListerSynced = rsInformer.Informer().HasSynced
    
    	podInformer.Informer().AddEventHandler(cache.ResourceEventHandlerFuncs{
    		AddFunc: func(obj interface{}) {
    			rsc.addPod(logger, obj)
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  10. pkg/controller/nodeipam/ipam/range_allocator.go

    			return nil, err
    		}
    		cidrSets[idx] = cidrSet
    	}
    
    	ra := &rangeAllocator{
    		client:       client,
    		clusterCIDRs: allocatorParams.ClusterCIDRs,
    		cidrSets:     cidrSets,
    		nodeLister:   nodeInformer.Lister(),
    		nodesSynced:  nodeInformer.Informer().HasSynced,
    		broadcaster:  eventBroadcaster,
    		recorder:     recorder,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 10:06:15 UTC 2024
    - 16.2K bytes
    - Viewed (0)
Back to top