Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 236 for 1000Mi (0.31 sec)

  1. src/main/java/org/codelibs/fess/timer/SystemMonitorTarget.java

            try {
                final SearchEngineClient esClient = ComponentUtil.getSearchEngineClient();
                final NodesStatsResponse response = esClient.admin().cluster().prepareNodesStats().all().execute().actionGet(10000L);
                final XContentBuilder builder = XContentFactory.jsonBuilder();
                builder.startObject();
                response.toXContent(builder, ToXContent.EMPTY_PARAMS);
                builder.endObject();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. src/runtime/map_benchmark_test.go

    		for size := 1; size < 100000; size *= 10 {
    			b.Run(strconv.Itoa(size), func(b *testing.B) {
    				m := make(map[int]int, size)
    				for i := 0; i < b.N; i++ {
    					m[0] = size // Add one element so len(m) != 0 avoiding fast paths.
    					clear(m)
    				}
    			})
    		}
    	})
    	b.Run("NonReflexive", func(b *testing.B) {
    		for size := 1; size < 100000; size *= 10 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 09 16:41:16 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. cmd/kubeadm/test/cmd/init_test.go

    	}{
    		{
    			name:     "fail on non-string port",
    			args:     "--apiserver-bind-port=foobar",
    			expected: false,
    		},
    		{
    			name:     "fail on too large port number",
    			args:     "--apiserver-bind-port=100000",
    			expected: false,
    		},
    		{
    			name:     "fail on negative port number",
    			args:     "--apiserver-bind-port=-6000",
    			expected: false,
    		},
    		{
    			name:     "accept a valid port number",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 18 01:03:09 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/writers_test.go

    	benchmarkSerializeObject(b, toProtoBuf(b, benchmarkItems(b, "testdata/pod.json", 1000)))
    }
    func BenchmarkSerializeObject10000PodsPB(b *testing.B) {
    	benchmarkSerializeObject(b, toProtoBuf(b, benchmarkItems(b, "testdata/pod.json", 10000)))
    }
    func BenchmarkSerializeObject100000PodsPB(b *testing.B) {
    	benchmarkSerializeObject(b, toProtoBuf(b, benchmarkItems(b, "testdata/pod.json", 100000)))
    }
    
    func BenchmarkSerializeObject1000PodsJSON(b *testing.B) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. pkg/apis/batch/validation/validation_test.go

    					Template:             validPodTemplateSpecForGenerated,
    				},
    			},
    			opts: JobValidationOptions{RequirePrefixedLabels: true},
    		},
    		"spec.maxFailedIndexes: Invalid value: 100001: must be less than or equal to 100000": {
    			job: batch.Job{
    				ObjectMeta: validJobObjectMeta,
    				Spec: batch.JobSpec{
    					Completions:          pointer.Int32(100_001),
    					BackoffLimitPerIndex: pointer.Int32(1),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  6. src/hash/maphash/smhasher_test.go

    	avalancheTest1(t, &bytesKey{make([]byte, 16)})
    	avalancheTest1(t, &bytesKey{make([]byte, 32)})
    	avalancheTest1(t, &bytesKey{make([]byte, 200)})
    }
    func avalancheTest1(t *testing.T, k key) {
    	const REP = 100000
    	r := rand.New(rand.NewSource(1234))
    	n := k.bits()
    
    	// grid[i][j] is a count of whether flipping
    	// input bit i affects output bit j.
    	grid := make([][hashSize]int, n)
    
    	for z := 0; z < REP; z++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. cluster/gce/config-test.sh

    # Optional: Don't require https for registries in our local RFC1918 network
    if [[ ${KUBE_ENABLE_INSECURE_REGISTRY:-false} = 'true' ]]; then
      EXTRA_DOCKER_OPTS="${EXTRA_DOCKER_OPTS} --insecure-registry 10.0.0.0/8"
    fi
    
    if [[ -n "${NODE_ACCELERATORS}" ]]; then
        if [[ "${NODE_ACCELERATORS}" =~ .*type=([a-zA-Z0-9-]+).* ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/caching/ComponentMetadataSupplierRuleExecutorTest.groovy

            if (expired) {
                // should check that the recorded service call returns the same value
                1 * record.getInput() >> '124'
                1 * record.getOutput() >> HashCode.fromInt(10000)
                1 * cachedResult.isChanging() >> changing
                1 * cachedResult.getId() >> id
                1 * cachePolicy.moduleExpiry({ it.id == id }, Duration.ZERO, changing) >> Stub(Expiry) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. src/math/all_test.go

    func TestLargeCos(t *testing.T) {
    	large := float64(100000 * Pi)
    	for i := 0; i < len(vf); i++ {
    		f1 := cosLarge[i]
    		f2 := Cos(vf[i] + large)
    		if !close(f1, f2) {
    			t.Errorf("Cos(%g) = %g, want %g", vf[i]+large, f2, f1)
    		}
    	}
    }
    
    func TestLargeSin(t *testing.T) {
    	large := float64(100000 * Pi)
    	for i := 0; i < len(vf); i++ {
    		f1 := sinLarge[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/networking/v1alpha1/generated.proto

      // Minimum value is 4 (16 IPs).
      // This field is immutable.
      // +required
      optional int32 perNodeHostBits = 2;
    
      // ipv4 defines an IPv4 IP block in CIDR notation(e.g. "10.0.0.0/8").
      // At least one of ipv4 and ipv6 must be specified.
      // This field is immutable.
      // +optional
      optional string ipv4 = 3;
    
      // ipv6 defines an IPv6 IP block in CIDR notation(e.g. "2001:db8::/64").
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top