Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 53 for 2500m (0.12 sec)

  1. pkg/istio-agent/agent_test.go

    			a.ProxyConfig.StatusPort = 25020
    			a.ProxyConfig.ProxyAdminPort = 25000
    			a.AgentConfig.EnvoyPrometheusPort = 25090
    			a.AgentConfig.EnvoyStatusPort = 25021
    			a.AgentConfig.ProxyXDSDebugViaAgent = false // uses a fixed port
    			return a
    		}).Check(t, security.WorkloadKeyCertResourceName, security.RootCertReqResourceName)
    		envoyReady(t, "second agent", 25000)
    	})
    	t.Run("gRPC XDS bootstrap", func(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  2. test/inline_big.go

    	a[236] = 0
    	a[237] = 0
    	a[238] = 0
    	a[239] = 0
    	a[240] = 0
    	a[241] = 0
    	a[242] = 0
    	a[243] = 0
    	a[244] = 0
    	a[245] = 0
    	a[246] = 0
    	a[247] = 0
    	a[248] = 0
    	a[249] = 0
    	a[250] = 0
    	a[251] = 0
    	a[252] = 0
    	a[253] = 0
    	a[254] = 0
    	a[255] = 0
    	a[256] = 0
    	a[257] = 0
    	a[258] = 0
    	a[259] = 0
    	a[260] = 0
    	a[261] = 0
    	a[262] = 0
    	a[263] = 0
    	a[264] = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 18 11:58:37 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  3. 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(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/staticpod/utils_test.go

    	kubeadmconstants "k8s.io/kubernetes/cmd/kubeadm/app/constants"
    	testutil "k8s.io/kubernetes/cmd/kubeadm/test"
    )
    
    func TestComponentResources(t *testing.T) {
    	a := ComponentResources("250m")
    	if a.Requests == nil {
    		t.Errorf(
    			"failed componentResources, return value was nil",
    		)
    	}
    }
    
    func TestGetAPIServerProbeAddress(t *testing.T) {
    	tests := []struct {
    		desc     string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 12 15:44:44 UTC 2023
    - 22.6K bytes
    - Viewed (0)
  5. pkg/kubelet/apis/config/types.go

    	KernelMemcgNotification bool
    
    	/* the following fields are meant for Node Allocatable */
    
    	// A set of ResourceName=ResourceQuantity (e.g. cpu=200m,memory=150G,ephemeral-storage=1G,pid=100) pairs
    	// that describe resources reserved for non-kubernetes components.
    	// Currently only cpu, memory and local ephemeral storage for root file system are supported.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  6. operator/README.md

    ```yaml
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      components:
        pilot:
          k8s:
            resources:
              requests:
                cpu: 1000m # override from default 500m
                memory: 4096Mi # ... default 2048Mi
            hpaSpec:
              maxReplicas: 10 # ... default 5
              minReplicas: 2  # ... default 1
            nodeSelector: # ... default empty
              master: "true"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Sep 17 08:27:52 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  7. pkg/volume/util/util_test.go

    	}
    }
    
    func TestCalculateTimeoutForVolume(t *testing.T) {
    	pv := &v1.PersistentVolume{
    		Spec: v1.PersistentVolumeSpec{
    			Capacity: v1.ResourceList{
    				v1.ResourceName(v1.ResourceStorage): resource.MustParse("500M"),
    			},
    		},
    	}
    
    	timeout := CalculateTimeoutForVolume(50, 30, pv)
    	if timeout != 50 {
    		t.Errorf("Expected 50 for timeout but got %v", timeout)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  8. pkg/kubelet/container/helpers_test.go

    			assert.Equal(t, result, testCase.expectedResult)
    		})
    	}
    }
    
    func TestHashContainerWithoutResources(t *testing.T) {
    	cpu100m := resource.MustParse("100m")
    	cpu200m := resource.MustParse("200m")
    	mem100M := resource.MustParse("100Mi")
    	mem200M := resource.MustParse("200Mi")
    	cpuPolicyRestartNotRequired := v1.ContainerResizePolicy{ResourceName: v1.ResourceCPU, RestartPolicy: v1.NotRequired}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 01:55:46 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/util/concurrent/UninterruptiblesTest.java

    public class UninterruptiblesTest extends TestCase {
      private static final String EXPECTED_TAKE = "expectedTake";
    
      /** Timeout to use when we don't expect the timeout to expire. */
      private static final long LONG_DELAY_MS = 2500;
    
      private static final long SLEEP_SLACK = 2;
    
      private final TearDownStack tearDownStack = new TearDownStack();
    
      // NOTE: All durations in these tests are expressed in milliseconds
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 16:06:39 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/UninterruptiblesTest.java

    public class UninterruptiblesTest extends TestCase {
      private static final String EXPECTED_TAKE = "expectedTake";
    
      /** Timeout to use when we don't expect the timeout to expire. */
      private static final long LONG_DELAY_MS = 2500;
    
      private static final long SLEEP_SLACK = 2;
    
      private final TearDownStack tearDownStack = new TearDownStack();
    
      // NOTE: All durations in these tests are expressed in milliseconds
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 09 22:57:07 UTC 2022
    - 30.9K bytes
    - Viewed (0)
Back to top