Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for 5300m (0.35 sec)

  1. plugin/pkg/admission/limitranger/admission_test.go

    		},
    		{
    			pod:        validPod("ctr-max-cpu-request-limit", 1, getResourceRequirements(getComputeResourceList("500m", ""), getComputeResourceList("1", ""))),
    			limitRange: createLimitRange(api.LimitTypeContainer, api.ResourceList{}, getComputeResourceList("2", ""), api.ResourceList{}, api.ResourceList{}, api.ResourceList{}),
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    		{decQuantity(1001*1024*1024*1024, 0, BinarySI), "1001Gi", "1025024Mi"},
    		{decQuantity(1024*1024*1024*1024, 0, BinarySI), "1Ti", "1024Gi"},
    		{decQuantity(5, 0, BinarySI), "5", "5000m"},
    		{decQuantity(500, -3, BinarySI), "500m", "0.5"},
    		{decQuantity(1, 9, DecimalSI), "1G", "1000M"},
    		{decQuantity(1000, 6, DecimalSI), "1G", "0.001T"},
    		{decQuantity(1000000, 3, DecimalSI), "1G", ""},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/cache/cache_test.go

    	// Test data
    	cpuHalf := resource.MustParse("500m")
    	mem50m := resource.MustParse("50m")
    	resourceList1 := map[v1.ResourceName]string{
    		v1.ResourceCPU:                     "1000m",
    		v1.ResourceMemory:                  "100m",
    		v1.ResourceName("example.com/foo"): "1",
    	}
    	resourceList2 := map[v1.ResourceName]string{
    		v1.ResourceCPU:                     "500m",
    		v1.ResourceMemory:                  "50m",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
  4. tests/integration/pilot/testdata/upgrade/1.6.11-install.yaml.tar

     name: discovery ports: - containerPort: 8080 - containerPort: 15010 - containerPort: 15017 - containerPort: 15053 readinessProbe: httpGet: path: /ready port: 8080 initialDelaySeconds: 1 periodSeconds: 3 timeoutSeconds: 5 resources: requests: cpu: 500m memory: 2048Mi securityContext: capabilities: drop: - ALL runAsGroup: 1337 runAsNonRoot: true runAsUser: 1337 volumeMounts: - mountPath: /etc/istio/config name: config-volume - mountPath: /var/run/secrets/tokens name: istio-token readOnly: true - mountPath:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 16:06:08 UTC 2021
    - 50K bytes
    - Viewed (0)
  5. tests/integration/pilot/testdata/upgrade/1.7.6-install.yaml.tar

     name: discovery ports: - containerPort: 8080 - containerPort: 15010 - containerPort: 15017 - containerPort: 15053 readinessProbe: httpGet: path: /ready port: 8080 initialDelaySeconds: 1 periodSeconds: 3 timeoutSeconds: 5 resources: requests: cpu: 500m memory: 2048Mi securityContext: capabilities: drop: - ALL runAsGroup: 1337 runAsNonRoot: true runAsUser: 1337 volumeMounts: - mountPath: /etc/istio/config name: config-volume - mountPath: /var/run/secrets/tokens name: istio-token readOnly: true - mountPath:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 16:06:08 UTC 2021
    - 60K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    	mediumRes = map[v1.ResourceName]string{
    		v1.ResourceCPU:    "200m",
    		v1.ResourceMemory: "200",
    	}
    	largeRes = map[v1.ResourceName]string{
    		v1.ResourceCPU:    "300m",
    		v1.ResourceMemory: "300",
    	}
    	veryLargeRes = map[v1.ResourceName]string{
    		v1.ResourceCPU:    "500m",
    		v1.ResourceMemory: "500",
    	}
    
    	epochTime  = metav1.NewTime(time.Unix(0, 0))
    	epochTime1 = metav1.NewTime(time.Unix(0, 1))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    				},
    			},
    		},
    		Status: corev1.NodeStatus{
    			Allocatable: map[corev1.ResourceName]resource.Quantity{
    				"cpu": {
    					Format: "500m",
    				},
    			},
    			Capacity: map[corev1.ResourceName]resource.Quantity{
    				"cpu": {
    					Format: "500m",
    				},
    			},
    			Images: []corev1.ContainerImage{
    				{
    					Names: []string{"test"},
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  8. tests/integration/pilot/testdata/upgrade/1.9.5-install.yaml.tar

    _SNIFFING_FOR_INBOUND value: "true" - name: ISTIOD_ADDR value: istiod-1-9-5.istio-system.svc:15012 - name: PILOT_ENABLE_ANALYSIS value: "false" - name: CLUSTER_ID value: "Kubernetes" - name: EXTERNAL_ISTIOD value: "false" resources: requests: cpu: 500m memory: 2048Mi securityContext: runAsUser: 1337 runAsGroup: 1337 runAsNonRoot: true capabilities: drop: - ALL volumeMounts: - name: config-volume mountPath: /etc/istio/config - name: istio-token mountPath: /var/run/secrets/tokens readOnly: true - name:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 01 19:57:24 UTC 2021
    - 80K bytes
    - Viewed (0)
  9. tests/integration/pilot/testdata/upgrade/1.8.6-install.yaml.tar

    TCP - containerPort: 15010 protocol: TCP - containerPort: 15017 protocol: TCP - containerPort: 15053 protocol: TCP readinessProbe: httpGet: path: /ready port: 8080 initialDelaySeconds: 1 periodSeconds: 3 timeoutSeconds: 5 resources: requests: cpu: 500m memory: 2048Mi securityContext: capabilities: drop: - ALL runAsGroup: 1337 runAsNonRoot: true runAsUser: 1337 volumeMounts: - mountPath: /etc/istio/config name: config-volume - mountPath: /var/run/secrets/tokens name: istio-token readOnly: true - mountPath:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 01 19:57:24 UTC 2021
    - 70K bytes
    - Viewed (0)
  10. tests/migrate_test.go

    	events := make([]*Event, 0)
    	DB.Table("events").Find(&events)
    
    	AssertEqual(t, 3, len(events))
    	for _, v := range events {
    		AssertEqual(t, v.ID, v.UID)
    	}
    }
    
    // https://github.com/go-gorm/gorm/issues/5300
    func TestMigrateWithSpecialName(t *testing.T) {
    	var err error
    	err = DB.AutoMigrate(&Coupon{})
    	if err != nil {
    		t.Fatalf("AutoMigrate err:%v", err)
    	}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
Back to top