Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for 1000Mi (0.22 sec)

  1. cluster/gce/gci/configure-helper.sh

        iptables -w -t nat -A IP-MASQ -d 169.254.0.0/16 -m comment --comment "ip-masq: local traffic is not subject to MASQUERADE" -j RETURN
        iptables -w -t nat -A IP-MASQ -d 10.0.0.0/8 -m comment --comment "ip-masq: RFC 1918 reserved range is not subject to MASQUERADE" -j RETURN
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/podtopologyspread/filtering_test.go

    				Obj(),
    			existingPodsNum:  10000,
    			allNodesNum:      1000,
    			filteredNodesNum: 500,
    		},
    		{
    			name: "1000nodes/single-constraint-node",
    			pod: st.MakePod().Name("p").Label("foo", "").
    				SpreadConstraint(1, v1.LabelHostname, v1.DoNotSchedule, fooSelector, nil, nil, nil, nil).
    				Obj(),
    			existingPodsNum:  10000,
    			allNodesNum:      1000,
    			filteredNodesNum: 500,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 143.1K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods_test.go

    				{Type: v1.NodeInternalIP, Address: "10.0.0.1"},
    			},
    			podIPs: []v1.PodIP{
    				{IP: "10.0.0.1"},
    			},
    		},
    		{
    			name: "InternalIP is preferred over ExternalIP",
    			nodeAddresses: []v1.NodeAddress{
    				{Type: v1.NodeExternalIP, Address: "192.168.0.1"},
    				{Type: v1.NodeInternalIP, Address: "10.0.0.1"},
    			},
    			podIPs: []v1.PodIP{
    				{IP: "10.0.0.1"},
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  4. pkg/proxy/ipvs/proxier_test.go

    		// Created by kube-proxy.
    		"ipvs0": {
    			Address:   netutils.ParseIPSloppy("1000::1"),
    			Protocol:  string(v1.ProtocolUDP),
    			Port:      53,
    			Scheduler: "rr",
    			Flags:     utilipvs.FlagHashed,
    		},
    		// Created by kube-proxy.
    		"ipvs1": {
    			Address:   netutils.ParseIPSloppy("1000::2"),
    			Protocol:  string(v1.ProtocolUDP),
    			Port:      54,
    			Scheduler: "rr",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  5. src/reflect/all_test.go

    	verifyGCBits(t, TypeOf([10000]Xscalarptr{}), rep(10000, lit(0, 1)))
    	verifyGCBits(t, ArrayOf(10000, Tscalarptr), rep(10000, lit(0, 1)))
    	verifyGCBits(t, TypeOf([2]Xptrscalar{}), lit(1, 0, 1))
    	verifyGCBits(t, ArrayOf(2, Tptrscalar), lit(1, 0, 1))
    	verifyGCBits(t, TypeOf([10000]Xptrscalar{}), rep(10000, lit(1, 0)))
    	verifyGCBits(t, ArrayOf(10000, Tptrscalar), rep(10000, lit(1, 0)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  6. doc/go1.17_spec.html

    1e10                uint64      10000000000 is in the set of unsigned 64-bit integers
    2.718281828459045   float32     2.718281828459045 rounds to 2.7182817 which is in the set of float32 values
    -1e-1000            float64     -1e-1000 rounds to IEEE -0.0 which is further simplified to 0.0
    0i                  int         0 is an integer value
    (42 + 0i)           float32     42.0 (with zero imaginary part) is in the set of float32 values
    </pre>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top