Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for mpga (0.03 sec)

  1. pkg/volume/csi/nodeinfomanager/nodeinfomanager.go

    	if nodeInfoAnnotations == nil {
    		nodeInfoAnnotations = map[string]string{}
    	}
    
    	var oldAnnotationSet sets.Set[string]
    	mpa := nodeInfoAnnotations[v1.MigratedPluginsAnnotationKey]
    	tok := strings.Split(mpa, ",")
    	if len(mpa) == 0 {
    		oldAnnotationSet = sets.New[string]()
    	} else {
    		oldAnnotationSet = sets.New[string](tok...)
    	}
    
    	newAnnotationSet := sets.New[string]()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/volumebinding/binder.go

    	}
    
    	csiNodeAnn := csiNode.GetAnnotations()
    	if csiNodeAnn == nil {
    		return false
    	}
    
    	var mpaSet sets.Set[string]
    	mpa := csiNodeAnn[v1.MigratedPluginsAnnotationKey]
    	if len(mpa) == 0 {
    		mpaSet = sets.New[string]()
    	} else {
    		tok := strings.Split(mpa, ",")
    		mpaSet = sets.New(tok...)
    	}
    
    	return mpaSet.Has(pluginName)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top