Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 161 for 300M (0.04 sec)

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

    			name:         "two images spread on two nodes, prefer the larger image one",
    		},
    		{
    			// Pod: gcr.io/40 gcr.io/300
    
    			// Node1
    			// Image: gcr.io/40:latest 40MB, gcr.io/300:latest 300MB
    			// Score: 100 * ((40M + 300M)/2 - 23M)/(1000M * 2 - 23M) = 7
    
    			// Node2
    			// Image: not present
    			// Score: 0
    			pod:          &v1.Pod{Spec: test40300},
    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. pkg/kubelet/preemption/preemption_test.go

    			Requests: v1.ResourceList{
    				v1.ResourceCPU:    resource.MustParse("300m"),
    				v1.ResourceMemory: resource.MustParse("300Mi"),
    			},
    		}),
    		highRequestGuaranteed: getPodWithResources(highRequestGuaranteed, v1.ResourceRequirements{
    			Requests: v1.ResourceList{
    				v1.ResourceCPU:    resource.MustParse("300m"),
    				v1.ResourceMemory: resource.MustParse("300Mi"),
    			},
    			Limits: v1.ResourceList{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jul 24 10:04:08 UTC 2022
    - 19.2K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-with-revision-canary.yaml

            - MUTUAL_TLS
            {{- else }}
            - --controlPlaneAuthPolicy
            - NONE
            {{- end }}
            - --dnsRefreshRate
            - {{ valueOrDefault .Values.global.proxy.dnsRefreshRate "300s" }}
          {{- if (ne (annotation .ObjectMeta "status.sidecar.istio.io/port" .Values.global.proxy.statusPort) "0") }}
            - --statusPort
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  4. pkg/api/pod/util_test.go

    						Resources: &api.ResourceRequirements{
    							Requests: api.ResourceList{api.ResourceCPU: resource.MustParse("200m")},
    							Limits:   api.ResourceList{api.ResourceCPU: resource.MustParse("300m")},
    						},
    					},
    				},
    			},
    		}
    	}
    	podWithoutInPlaceVerticalScaling := func() *api.Pod {
    		return &api.Pod{
    			Spec: api.PodSpec{
    				Containers: []api.Container{
    					{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-absolute-override.yaml

            - MUTUAL_TLS
            {{- else }}
            - --controlPlaneAuthPolicy
            - NONE
            {{- end }}
            - --dnsRefreshRate
            - {{ valueOrDefault .Values.global.proxy.dnsRefreshRate "300s" }}
          {{- if (ne (annotation .ObjectMeta "status.sidecar.istio.io/port" .Values.global.proxy.statusPort) "0") }}
            - --statusPort
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-configmap.yaml

            - MUTUAL_TLS
            {{- else }}
            - --controlPlaneAuthPolicy
            - NONE
            {{- end }}
            - --dnsRefreshRate
            - {{ valueOrDefault .Values.global.proxy.dnsRefreshRate "300s" }}
          {{- if (ne (annotation .ObjectMeta "status.sidecar.istio.io/port" .Values.global.proxy.statusPort) "0") }}
            - --statusPort
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-enabled-nsbydefault.yaml

            - MUTUAL_TLS
            {{- else }}
            - --controlPlaneAuthPolicy
            - NONE
            {{- end }}
            - --dnsRefreshRate
            - {{ valueOrDefault .Values.global.proxy.dnsRefreshRate "300s" }}
          {{- if (ne (annotation .ObjectMeta "status.sidecar.istio.io/port" .Values.global.proxy.statusPort) "0") }}
            - --statusPort
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  8. plugin/pkg/auth/authorizer/node/node_authorizer_test.go

    	}
    }
    
    func BenchmarkPopulationRetention(b *testing.B) {
    
    	// Run with:
    	// go test ./plugin/pkg/auth/authorizer/node -benchmem -bench . -run None -v -o node.test -timeout 300m
    
    	// Evaluate retained memory with:
    	// go tool pprof --inuse_space node.test plugin/pkg/auth/authorizer/node/BenchmarkPopulationRetention.profile
    	// list populate
    
    	opts := &sampleDataOpts{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    		{decQuantity(1080, -3, DecimalSI), "1080m", "1.08"},
    		{decQuantity(108, -2, DecimalSI), "1080m", "1080000000n"},
    		{decQuantity(10800, -4, DecimalSI), "1080m", ""},
    		{decQuantity(300, 6, DecimalSI), "300M", ""},
    		{decQuantity(1, 12, DecimalSI), "1T", ""},
    		{decQuantity(1234567, 6, DecimalSI), "1234567M", ""},
    		{decQuantity(1234567, -3, BinarySI), "1234567m", ""},
    		{decQuantity(3, 3, DecimalSI), "3k", ""},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  10. tensorflow/cc/saved_model/testdata/chunked_saved_model/chunked_model/saved_model.pbtxt

    373\240b\245\252\373\350?\310\302\017\353\035\203\307?\010\337\332\345\302\211\260?\317\0375\247\354\273\346?\300O\272Y\177\013\207?F,\364\023l|\353?\333K*5(T\347?\006\033\300\223Ky\320?\366\307.\350\302\252\345?T$\335\272wP\305?\364\031\007\325\2560\306?\024\207}\272\216\266\350?hI\214\r|\322\300?\\\"\367\334@\273\346?X\253\246\337\345,\347?\310\325d\357Pz\331?X\227\255t\353V\314?\300s\213\212j*\323?<\361\230\310u\007\324?\241sU+\231\377\350?\020B\254\214\270\327\320?\320\247h\303}\016\316?\010...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 21:43:11 UTC 2023
    - 531.2K bytes
    - Viewed (0)
Back to top