Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for mpga (0.2 sec)

  1. pkg/scheduler/framework/plugins/nodevolumelimits/utils.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)
    }
    
    // volumeLimits returns volume limits associated with the node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/fess/hu/stopwords.txt

    ilyenkor
    ison
    ismét
    itt
    jó
    jól
    jobban
    kell
    kellett
    keresztül
    keressünk
    ki
    kívül
    között
    közül
    legalább
    lehet
    lehetett
    legyen
    lenne
    lenni
    lesz
    lett
    maga
    magát
    majd
    majd
    már
    más
    másik
    meg
    még
    mellett
    mert
    mely
    melyek
    mi
    mit
    míg
    miért
    milyen
    mikor
    minden
    mindent
    mindenki
    mindig
    mint
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/process-services/src/test/groovy/org/gradle/process/internal/health/memory/MemoryAmountTest.groovy

        }
    
        def "parse invalid string notation"() {
            when:
            MemoryAmount.parseNotation('invalid')
    
            then:
            thrown IllegalArgumentException
        }
    
        def "of kilo mega giga tera bytes"() {
            expect:
            MemoryAmount.ofKiloBytes(23) == MemoryAmount.of('23k')
            MemoryAmount.ofMegaBytes(23) == MemoryAmount.of('23m')
            MemoryAmount.ofGigaBytes(23) == MemoryAmount.of('23g')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/api/resource/amount.go

    func (s Scale) infScale() inf.Scale {
    	return inf.Scale(-s) // inf.Scale is upside-down
    }
    
    const (
    	Nano  Scale = -9
    	Micro Scale = -6
    	Milli Scale = -3
    	Kilo  Scale = 3
    	Mega  Scale = 6
    	Giga  Scale = 9
    	Tera  Scale = 12
    	Peta  Scale = 15
    	Exa   Scale = 18
    )
    
    var (
    	Zero = int64Amount{}
    
    	// Used by quantity strings - treat as read only
    	zeroBytes = []byte("0")
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 13 19:42:28 UTC 2023
    - 9.3K bytes
    - Viewed (0)
Back to top