Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 68 for 100M (0.06 sec)

  1. pkg/kubelet/eviction/eviction_manager_test.go

    		{name: "burstable-below-requests", priority: defaultPriority, requests: newResourceList("100m", "100Mi", ""), limits: newResourceList("200m", "1Gi", ""), memoryWorkingSet: "50Mi"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. pkg/api/pod/util_test.go

    			featureEnabled:                  false,
    			wantAllowInvalidPodDeletionCost: true,
    		},
    		{
    			name:                            "UpdateFeatureEnabledValidOldValue",
    			oldPodMeta:                      &metav1.ObjectMeta{Annotations: map[string]string{api.PodDeletionCost: "100"}},
    			featureEnabled:                  true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers_test.go

    		{"5 minutes ago", translateTimestampSince(metav1.Time{Time: time.Now().Add(-3e11)}), "5m"},
    		{"an hour ago", translateTimestampSince(metav1.Time{Time: time.Now().Add(-6e12)}), "100m"},
    		{"2 days ago", translateTimestampSince(metav1.Time{Time: time.Now().UTC().AddDate(0, 0, -2)}), "2d"},
    		{"months ago", translateTimestampSince(metav1.Time{Time: time.Now().UTC().AddDate(0, 0, -90)}), "90d"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  4. pkg/controller/daemon/daemon_controller_test.go

    	node2.Status.Allocatable = allocatableResources("100M", "200m")
    	err = manager.nodeStore.Add(node1)
    	if err != nil {
    		t.Fatal(err)
    	}
    	err = manager.nodeStore.Add(node2)
    	if err != nil {
    		t.Fatal(err)
    	}
    	err = manager.dsStore.Add(ds)
    	if err != nil {
    		t.Fatal(err)
    	}
    	expectSyncDaemonSets(t, manager, ds, podControl, 1, 0, 0)
    	// we do not expect any event for insufficient free resource
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure-helper.sh

    function setup-journald() {
      if [[ "${SET_JOURNALD_CONFIGURATION:-true}" = "true" ]]; then
      cat <<EOF > /etc/systemd/journald.conf
    [Journal]
    Storage=persistent
    SystemMaxUse=1G
    SystemMaxFileSize=100M
    RuntimeMaxUse=100M
    EOF
        systemctl restart systemd-journald.service
      fi
    }
    
    # Installs logrotate configuration files
    function setup-logrotate() {
      mkdir -p /etc/logrotate.d/
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

                    {{- end }}
                    resources:
                      limits:
                        cpu: "2"
                        memory: 1Gi
                      requests:
                        cpu: 100m
                        memory: 128Mi
                    startupProbe:
                      failureThreshold: 30
                      httpGet:
                        path: /healthz/ready
                        port: 15021
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    port: 80 targetPort: 8080 name: http2 protocol: TCP - port: 443 targetPort: 8443 name: https protocol: TCP # Scalability tuning # replicaCount: 1 rollingMaxSurge: 100% rollingMaxUnavailabl: 25% autoscaleEnabled: true autoscaleMin: 1 autoscaleMax: 5 cpu: targetAverageUtiliza: 80 memory: {} # targetAverageUtiliza: 80 resources: requests: cpu: 100m memory: 128Mi limits: cpu: 2000m memory: 1024Mi loadBalancerIP: "" loadBalancerSourceRa: [] serviceAnnotations: {} # Setup how istiod Service is configured. See...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  8. pkg/kubelet/eviction/helpers_test.go

    			expectErr:         false,
    			expectThresholds:  []evictionapi.Threshold{},
    		},
    		"disable via 100%": {
    			allocatableConfig: []string{},
    			evictionHard:      map[string]string{"memory.available": "100%"},
    			evictionSoft:      map[string]string{"memory.available": "100%"},
    			expectErr:         false,
    			expectThresholds:  []evictionapi.Threshold{},
    		},
    		"invalid-signal": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"double(5) < 10.0",
    				"double(10) == 10.0",
    				"double(15) > 10.0",
    
    				"5 < int(10.0)",
    				"10 == int(10.0)",
    				"15 > int(10.0)",
    
    				// compare integers with literal floats
    				"double(self.val1) < 10.0",
    				"double(self.val2) == 10.0",
    				"double(self.val3) > 10.0",
    
    				// Cross Type Numeric Comparisons: integers with all float types
    				"self.val1 < self.val4",
    				"self.val1 <= self.val4",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  10. manifests/addons/dashboards/istio-service-dashboard.json

            },
            "overrides": []
          },
          "gridPos": {
            "h": 4,
            "w": 6,
            "x": 18,
            "y": 8
          },
          "id": 100,
          "links": [],
          "maxDataPoints": 100,
          "options": {
            "colorMode": "none",
            "graphMode": "area",
            "justifyMode": "auto",
            "orientation": "horizontal",
            "reduceOptions": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 111.8K bytes
    - Viewed (0)
Back to top