Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 23M (0.01 sec)

  1. pkg/scheduler/framework/plugins/imagelocality/image_locality_test.go

    			// Node1
    			// Image: gcr.io/600:latest 600MB, gcr.io/900:latest 900MB
    			// Score: 100 * (600M * 2/3 + 900M * 2/3 - 23M) / (1000M * 3 - 23M) = 32
    
    			// Node2
    			// Image: gcr.io/300:latest 300MB, gcr.io/600:latest 600MB, gcr.io/900:latest 900MB
    			// Score: 100 * (300M * 1/3 + 600M * 2/3 + 900M * 2/3 - 23M) / (1000M *3 - 23M) = 36
    
    			// Node3
    			// Image:
    			// Score: 0
    			pod:          &v1.Pod{Spec: test300600900},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 06:17:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/process-services/src/test/groovy/org/gradle/process/internal/health/memory/MemoryAmountTest.groovy

            amount.toString() == notation
    
            where:
            notation | bytes
            '23'     | 23L
            '23k'    | 23L * 1024
            '23K'    | 23L * 1024
            '23m'    | 23L * 1024 * 1024
            '23M'    | 23L * 1024 * 1024
            '23g'    | 23L * 1024 * 1024 * 1024
            '23G'    | 23L * 1024 * 1024 * 1024
            '23t'    | 23L * 1024 * 1024 * 1024 * 1024
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top