Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 228 for 100m (0.13 sec)

  1. src/runtime/map_test.go

    	}
    }
    
    func TestIterGrowAndDelete(t *testing.T) {
    	m := make(map[int]int, 4)
    	for i := 0; i < 100; i++ {
    		m[i] = i
    	}
    	growflag := true
    	for k := range m {
    		if growflag {
    			// grow the table
    			for i := 100; i < 1000; i++ {
    				m[i] = i
    			}
    			// delete all odd keys
    			for i := 1; i < 1000; i += 2 {
    				delete(m, i)
    			}
    			growflag = false
    		} else {
    			if k&1 == 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  2. src/math/rand/v2/rand_test.go

    					// https://www.johndcook.com/Beautiful_Testing_ch10.pdf.
    					nsamples := 10 * nfact
    					if nsamples < 1000 {
    						nsamples = 1000
    					}
    					samples := make([]float64, nsamples)
    					for i := range samples {
    						// Generate some uniformly distributed values and count their occurrences.
    						const iters = 1000
    						counts := make([]int, nfact)
    						for i := 0; i < iters; i++ {
    							counts[test.fn()]++
    						}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/extension/wasmplugin_test.go

    		WasmPlugin: &extensions.WasmPlugin{
    			Priority: &wrapperspb.Int32Value{Value: 1000},
    		},
    	}
    	someNetworkFilter = &model.WasmPluginWrapper{
    		Name:         "someNetworkFilter",
    		Namespace:    "istio-system",
    		ResourceName: "istio-system.someNetworkFilter",
    		WasmPlugin: &extensions.WasmPlugin{
    			Priority: &wrapperspb.Int32Value{Value: 1000},
    			Type:     extensions.PluginType_NETWORK,
    		},
    	}
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. pkg/proxy/util/utils_test.go

    			[]net.Addr{
    				mustParseIPAddr("8.8.8.8"),
    				mustParseIPAddr("1000::"),
    				mustParseIPAddr("192.168.1.1"),
    			},
    			sets.New("192.168.1.1"),
    		},
    		{
    			"Cidr IPv6",
    			newCidrValidator("1000::/64"),
    			[]net.Addr{
    				mustParseIPAddr("8.8.8.8"),
    				mustParseIPAddr("1000::"),
    				mustParseIPAddr("192.168.1.1"),
    			},
    			sets.New("1000::"),
    		},
    	}
    
    	for _, tc := range testCases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. samples/addons/grafana.yaml

    ype\":\"special\"}],\"thresholds\":{\"mode\":\"absolute\",\"steps\":[{\"color\":\"green\",\"value\":null},{\"color\":\"red\",\"value\":80}]},\"unit\":\"Bps\"},\"overrides\":[]},\"gridPos\":{\"h\":4,\"w\":6,\"x\":18,\"y\":8},\"id\":100,\"links\":[],\"maxDataPoints\":100,\"options\":{\"colorMode\":\"none\",\"graphMode\":\"area\",\"justifyMode\":\"auto\",\"orientation\":\"horizontal\",\"reduceOptions\":{\"calcs\":[\"mean\"],\"fields\":\"\",\"values\":false},\"textMode\":\"auto\"},\"pluginVersion\":...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  8. src/internal/types/testdata/spec/range_int.go

    func issue64471() {
    	for i := range 'a' {
    		var _ *rune = &i // ensure i has type rune
    	}
    }
    
    func issue66561() {
    	for range 10.0 /* ERROR "cannot range over 10.0 (untyped float constant 10)" */ {
    	}
    	for range 1e3 /* ERROR "cannot range over 1e3 (untyped float constant 1000)" */ {
    	}
    	for range 1 /* ERROR "cannot range over 1 + 0i (untyped complex constant (1 + 0i))" */ + 0i {
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:56:00 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_sandbox_linux_test.go

    		SecurityContext: &runtimeapi.LinuxSandboxSecurityContext{
    			SelinuxOptions: &runtimeapi.SELinuxOption{
    				User: "qux",
    			},
    			RunAsUser:  &runtimeapi.Int64Value{Value: 1000},
    			RunAsGroup: &runtimeapi.Int64Value{Value: 10},
    		},
    	}
    
    	podSandboxConfig, err := m.generatePodSandboxConfig(pod, 1)
    	assert.NoError(t, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. pkg/scheduler/schedule_one_test.go

    						{
    							Image: "gcr.io/40",
    						},
    					},
    				},
    			},
    			nodes: []*v1.Node{
    				makeNode("node1", 1000, schedutil.DefaultMemoryRequest*10, imageStatus1...),
    				makeNode("node2", 1000, schedutil.DefaultMemoryRequest*10, imageStatus2...),
    				makeNode("node3", 1000, schedutil.DefaultMemoryRequest*10, imageStatus3...),
    			},
    			pluginRegistrations: []tf.RegisterPluginFunc{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
Back to top