Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for 100M (0.31 sec)

  1. manifests/charts/gateway/values.yaml

        ipFamilyPolicy: ""
        ipFamilies: []
        ## Whether to automatically allocate NodePorts (only for LoadBalancers).
        # allocateLoadBalancerNodePorts: false
    
      resources:
        requests:
          cpu: 100m
          memory: 128Mi
        limits:
          cpu: 2000m
          memory: 1024Mi
    
      autoscaling:
        enabled: true
        minReplicas: 1
        maxReplicas: 5
        targetCPUUtilizationPercentage: 80
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 16:51:35 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	fakeRuntime, _, m, err := createTestRuntimeManager()
    	m.machineInfo.MemoryCapacity = 17179860387 // 16GB
    	assert.NoError(t, err)
    
    	cpu100m := resource.MustParse("100m")
    	cpu200m := resource.MustParse("200m")
    	mem100M := resource.MustParse("100Mi")
    	mem200M := resource.MustParse("200Mi")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	pod2 := makePod(map[string]string{"foo": "true"}, "1002")
    	pod3 := makePod(map[string]string{}, "1003")
    	pod4 := makePod(map[string]string{}, "1004")
    	pod1DeletedAt2 := pod1.DeepCopyObject().(*examplev1.Pod)
    	pod1DeletedAt2.ResourceVersion = "1002"
    	pod2DeletedAt3 := pod2.DeepCopyObject().(*examplev1.Pod)
    	pod2DeletedAt3.ResourceVersion = "1003"
    
    	allEvents := []watch.Event{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/UninterruptiblesTest.java

        assertFalse(signaledBeforeTimeout);
        assertAtLeastTimePassed(stopwatch, 1000);
        assertInterrupted();
      }
    
      public void testConditionAwaitInterruptedTimeoutNotExceeded() {
        Stopwatch stopwatch = Stopwatch.createStarted();
        Condition condition = TestCondition.createAndSignalAfter(1000, MILLISECONDS);
        requestInterruptIn(500);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 16:06:39 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  7. maven-embedder/src/test/java/org/apache/maven/cli/transfer/FileSizeFormatTest.java

            assertEquals("1000 MB", format.format(_1000_megabytes, ScaleUnit.MEGABYTE));
            assertEquals("1.0 GB", format.format(_1000_megabytes, ScaleUnit.GIGABYTE));
        }
    
        @Test
        void testNegativeProgressedSize() {
            FileSizeFormat format = new FileSizeFormat();
    
            long negativeProgressedSize = -100L;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 21:48:41 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. src/math/big/floatexample_test.go

    package big_test
    
    import (
    	"fmt"
    	"math"
    	"math/big"
    )
    
    func ExampleFloat_Add() {
    	// Operate on numbers of different precision.
    	var x, y, z big.Float
    	x.SetInt64(1000)          // x is automatically set to 64bit precision
    	y.SetFloat64(2.718281828) // y is automatically set to 53bit precision
    	z.SetPrec(32)
    	z.Add(&x, &y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/change_test.go

    	"k8s.io/client-go/dynamic"
    )
    
    func TestChangeCRD(t *testing.T) {
    	tearDown, config, _, err := fixtures.StartDefaultServer(t)
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer tearDown()
    	config.QPS = 1000
    	config.Burst = 1000
    	apiExtensionsClient, err := clientset.NewForConfig(config)
    	if err != nil {
    		t.Fatal(err)
    	}
    	dynamicClient, err := dynamic.NewForConfig(config)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:59:03 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. samples/bookinfo/src/productpage/Dockerfile

    ENV FLOOD_FACTOR ${flood_factor:-0}
    
    EXPOSE 9080
    WORKDIR /opt/microservices
    RUN python -m unittest discover
    
    CMD ["gunicorn", "-b", "[::]:9080", "productpage:app", "-w", "8", "--keep-alive", "2", "-k", "gevent"]
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top