Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 493 for 500m (0.07 sec)

  1. operator/cmd/mesh/testdata/manifest-generate/output/install_package_path.golden.yaml

              httpGet:
                path: /ready
                port: 8080
              initialDelaySeconds: 1
              periodSeconds: 3
              timeoutSeconds: 5
            resources:
              requests:
                cpu: 500m
                memory: 2048Mi
            securityContext:
              allowPrivilegeEscalation: false
              capabilities:
                drop:
                - ALL
              readOnlyRootFilesystem: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/manifest-generate/output/pilot_k8s_settings.golden.yaml

                path: /ready
                port: 8080
              initialDelaySeconds: 555
              periodSeconds: 3
              timeoutSeconds: 5
            resources:
              requests:
                cpu: 500m
                memory: 999Mi
            securityContext:
              allowPrivilegeEscalation: false
              capabilities:
                drop:
                - ALL
              readOnlyRootFilesystem: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 06 02:56:54 UTC 2023
    - 5K bytes
    - Viewed (0)
  3. docs/site-replication/run-ssec-object-replication.sh

    echo -n "Preparing test data ..."
    mkdir -p /tmp/data
    echo "Hello world" >/tmp/data/plainfile
    echo "Hello from encrypted world" >/tmp/data/encrypted
    touch /tmp/data/defpartsize
    shred -s 500M /tmp/data/defpartsize
    touch /tmp/data/custpartsize
    shred -s 500M /tmp/data/custpartsize
    echo "done"
    
    # Add replication site
    ./mc admin replicate add minio1 minio2 --insecure
    # sleep for replication to complete
    sleep 30
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_container_linux_test.go

    			v1.ResourceList{v1.ResourceCPU: resource.MustParse("200m"), v1.ResourceMemory: resource.MustParse("500Mi")},
    			v1.ResourceList{v1.ResourceCPU: resource.MustParse("200m"), v1.ResourceMemory: resource.MustParse("500Mi")},
    			[]v1.ContainerStatus{
    				{
    					Name:               "c1",
    					AllocatedResources: v1.ResourceList{v1.ResourceCPU: resource.MustParse("200m"), v1.ResourceMemory: resource.MustParse("500Mi")},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41K bytes
    - Viewed (0)
  5. docs/site-replication/run-replication-with-checksum-header.sh

    ./mc ready minio1 --insecure
    ./mc ready minio2 --insecure
    
    # Prepare data for tests
    echo -n "Preparing test data ..."
    mkdir -p /tmp/data
    echo "Hello World" >/tmp/data/obj
    touch /tmp/data/mpartobj
    shred -s 500M /tmp/data/mpartobj
    echo "done"
    
    # Add replication site
    ./mc admin replicate add minio1 minio2 --insecure
    # sleep for replication to complete
    sleep 30
    
    # Create bucket in source cluster
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 08 16:24:15 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. tests/testdata/config/none.yaml

              - -t
              - "0"
              - -c
              - "32"
              - -qps
              - "500"
              - http://fortio:8080/echo?size=5000
            env:
            - name: HTTP_PROXY
              value: 127.0.0.1:15002
            resources:
              requests:
                cpu: 500m
                memory: "1G"
              limits:
                cpu: 1000m
                memory: "1G"
    
    ---
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 22 21:13:54 UTC 2020
    - 8.8K bytes
    - Viewed (0)
  7. pkg/controller/resourcequota/resource_quota_controller_test.go

    			Spec: v1.PodSpec{
    				Volumes:           []v1.Volume{{Name: "vol"}},
    				Containers:        []v1.Container{{Name: "ctr", Image: "image", Resources: getResourceRequirements(getResourceList("500m", "50Gi"), getResourceList("", ""))}},
    				PriorityClassName: "high",
    			},
    		},
    		&v1.Pod{
    			ObjectMeta: metav1.ObjectMeta{Name: "pod-running-2", Namespace: "testing"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 16:29:33 UTC 2023
    - 42.6K bytes
    - Viewed (0)
  8. plugin/pkg/admission/podtolerationrestriction/admission_test.go

    )
    
    // TestPodAdmission verifies various scenarios involving pod/namespace tolerations
    func TestPodAdmission(t *testing.T) {
    
    	CPU1000m := resource.MustParse("1000m")
    	CPU500m := resource.MustParse("500m")
    
    	burstablePod := &api.Pod{
    		ObjectMeta: metav1.ObjectMeta{Name: "testPod", Namespace: "testNamespace"},
    		Spec: api.PodSpec{
    			Containers: []api.Container{
    				{
    					Name: "test",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 16K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/cache/cache_test.go

    	now := time.Now()
    	ttl := 10 * time.Second
    
    	assumedPod := makeBasePod(t, "assumed-node-1", "test-1", "100m", "500", "", []v1.ContainerPort{{HostPort: 80}})
    	addedPod := makeBasePod(t, "actual-node", "test-1", "100m", "500", "", []v1.ContainerPort{{HostPort: 80}})
    	updatedPod := makeBasePod(t, "actual-node", "test-1", "200m", "500", "", []v1.ContainerPort{{HostPort: 90}})
    
    	test := struct {
    		podsToAssume []*v1.Pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/preemption/preemption_test.go

    	tf "k8s.io/kubernetes/pkg/scheduler/testing/framework"
    )
    
    var (
    	midPriority, highPriority = int32(100), int32(1000)
    
    	veryLargeRes = map[v1.ResourceName]string{
    		v1.ResourceCPU:    "500m",
    		v1.ResourceMemory: "500",
    	}
    )
    
    type FakePostFilterPlugin struct {
    	numViolatingVictim int
    }
    
    func (pl *FakePostFilterPlugin) SelectVictimsOnNode(
    	ctx context.Context, state *framework.CycleState, pod *v1.Pod,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 18.7K bytes
    - Viewed (0)
Back to top