Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 282 for 1000ms (0.15 sec)

  1. .github/workflows/mint/nginx-1-node.conf

            server_name  localhost;
    
            # To allow special characters in headers
            ignore_invalid_headers off;
            # Allow any size file to be uploaded.
            # Set to a value such as 1000m; to restrict file size to a specific value
            client_max_body_size 0;
            # To disable buffering
            proxy_buffering off;
            proxy_request_buffering off;
    
            location / {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 31 21:38:10 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. .github/workflows/mint/nginx.conf

            server_name  localhost;
    
            # To allow special characters in headers
            ignore_invalid_headers off;
            # Allow any size file to be uploaded.
            # Set to a value such as 1000m; to restrict file size to a specific value
            client_max_body_size 0;
            # To disable buffering
            proxy_buffering off;
            proxy_request_buffering off;
    
            location / {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 16:52:29 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. pkg/kube/inject/testdata/inject/resource_annotations.yaml

    metadata:
      name: resource
    spec:
      replicas: 7
      selector:
        matchLabels:
          app: resource
      template:
        metadata:
          annotations:
            sidecar.istio.io/proxyCPU: "100m"
            sidecar.istio.io/proxyCPULimit: "1000m"
            sidecar.istio.io/proxyMemory: "1Gi"
            sidecar.istio.io/proxyMemoryLimit: "2Gi"
          labels:
            app: resource
        spec:
          containers:
          - name: resource
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 18 21:43:45 UTC 2020
    - 578 bytes
    - Viewed (0)
  4. operator/pkg/translate/translate_value_test.go

        resources:
          requests:
            cpu: 1000m
            memory: 1G
        enabled: true
    `,
    			want: `
    hub: docker.io/istio
    tag: 1.2.3
    components:
      pilot:
        enabled: true
      ingressGateways:
      - name: istio-ingressgateway
        enabled: true
        k8s:
          resources:
            requests:
              cpu: 1000m
              memory: 1G
          strategy:
            rollingUpdate:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 06 02:56:54 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/memorymanager/policy_static_test.go

    	requirementsGuaranteed = &v1.ResourceRequirements{
    		Limits: v1.ResourceList{
    			v1.ResourceCPU:    resource.MustParse("1000Mi"),
    			v1.ResourceMemory: resource.MustParse("1Gi"),
    			hugepages1Gi:      resource.MustParse("1Gi"),
    		},
    		Requests: v1.ResourceList{
    			v1.ResourceCPU:    resource.MustParse("1000Mi"),
    			v1.ResourceMemory: resource.MustParse("1Gi"),
    			hugepages1Gi:      resource.MustParse("1Gi"),
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 05:49:15 UTC 2023
    - 100.4K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/imagelocality/image_locality_test.go

    			// Node1
    			// Image: gcr.io/40:latest 40MB, gcr.io/300:latest 300MB, gcr.io/2000:latest 2000MB
    			// Score: 100 * (300M * 1/2 - 23M) / (1000M * 2 - 23M) = 6
    
    			// Node2
    			// Image: gcr.io/20:latest 20MB, gcr.io/30:latest 30MB, gcr.io/40:latest 40MB
    			// Score: 100 * (30M * 1/2  - 23M) / (1000M * 2 - 23M) = 0
    			pod:          &v1.Pod{Spec: test30Init300},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 06:17:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. .github/workflows/multipart/nginx-site1.conf

            server_name  localhost;
    
            # To allow special characters in headers
            ignore_invalid_headers off;
            # Allow any size file to be uploaded.
            # Set to a value such as 1000m; to restrict file size to a specific value
            client_max_body_size 0;
            # To disable buffering
            proxy_buffering off;
            proxy_request_buffering off;
    
            location / {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Sep 30 10:13:56 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. .github/workflows/multipart/nginx-site2.conf

            server_name  localhost;
    
            # To allow special characters in headers
            ignore_invalid_headers off;
            # Allow any size file to be uploaded.
            # Set to a value such as 1000m; to restrict file size to a specific value
            client_max_body_size 0;
            # To disable buffering
            proxy_buffering off;
            proxy_request_buffering off;
    
            location / {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Sep 30 10:13:56 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/noderesources/most_allocated_test.go

    				Req(map[v1.ResourceName]string{"cpu": "1000", "memory": "2000"}).
    				Req(map[v1.ResourceName]string{"cpu": "2000", "memory": "3000"}).
    				Obj(),
    			nodes: []*v1.Node{
    				st.MakeNode().Name("node1").Capacity(map[v1.ResourceName]string{"cpu": "4000", "memory": "10000"}).Obj(),
    				st.MakeNode().Name("node2").Capacity(map[v1.ResourceName]string{"cpu": "6000", "memory": "10000"}).Obj(),
    			},
    			existingPods:   nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 16K bytes
    - Viewed (0)
  10. internal/etag/etag_test.go

    	{ETag: "7b976cc68452e003eec7cb0eb631a19a-10000", AWSETag: "7b976cc68452e003eec7cb0eb631a19a-10000"},                                                     // 3
    	{ETag: "20000f00db2d90a7b40782d4cff2b41a7799fc1e7ead25972db65150118dfbe2ba76a3c002da28f85c840cd2001a28a9", AWSETag: "ba76a3c002da28f85c840cd2001a28a9"}, // 4
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 18 17:00:54 UTC 2023
    - 12.6K bytes
    - Viewed (0)
Back to top