Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 783 for 20000 (0.07 sec)

  1. pkg/registry/core/service/portallocator/allocator_test.go

    				pr: net.PortRange{
    					Base: 30000,
    					Size: 16,
    				},
    			},
    			want: 0,
    		},
    		{
    			name: "small node port range",
    			args: args{
    				pr: net.PortRange{
    					Base: 30000,
    					Size: 128,
    				},
    			},
    			want: 16,
    		},
    		{
    			name: "medium node port range",
    			args: args{
    				pr: net.PortRange{
    					Base: 30000,
    					Size: 2048,
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 07:15:02 UTC 2024
    - 14K bytes
    - Viewed (0)
  2. pkg/kubelet/images/image_manager_test.go

    		{containerImage: "present_image",
    			testName:   "image present and excessive qps rate, pull",
    			policy:     v1.PullAlways,
    			inspectErr: nil,
    			pullerErr:  nil,
    			qps:        2000.0,
    			burst:      0,
    			expected: []pullerExpects{
    				{[]string{"GetImageRef"}, ErrImagePull, true, false},
    				{[]string{"GetImageRef"}, ErrImagePull, true, false},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. src/crypto/x509/name_constraints_test.go

    			{
    				ok: []string{"ip:2000:abcd::/32"},
    			},
    		},
    		intermediates: [][]constraintsSpec{
    			{
    				{},
    			},
    		},
    		leaf: leafSpec{
    			sans: []string{"ip:2000:abcd:1234::"},
    		},
    	},
    
    	// #32: IPv6 addresses work in constraints: root restrictions are
    	// effective.
    	{
    		roots: []constraintsSpec{
    			{
    				ok: []string{"ip:2000:abcd::/32"},
    			},
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  4. src/math/big/natconv.go

    // iterative approach. This threshold is represented by leafSize. Benchmarking of leafSize in the
    // range 2..64 shows that values of 8 and 16 work well, with a 4x speedup at medium lengths and
    // ~30x for 20000 digits. Use nat_test.go's BenchmarkLeafSize tests to optimize leafSize for
    // specific hardware.
    func (q nat) convertWords(s []byte, b Word, ndigits int, bb Word, table []divisor) {
    	// split larger blocks recursively
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 14.6K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/helpers_linux_test.go

    		},
    		{
    			input:  int64(10),
    			quota:  int64(1000),
    			period: uint64(100000),
    		},
    		{
    			input:  int64(200),
    			quota:  int64(20000),
    			period: uint64(100000),
    		},
    		{
    			input:  int64(500),
    			quota:  int64(50000),
    			period: uint64(100000),
    		},
    		{
    			input:  int64(1000),
    			quota:  int64(100000),
    			period: uint64(100000),
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        settings1[Settings.HEADER_TABLE_SIZE] = 10000
        settings1[Settings.INITIAL_WINDOW_SIZE] = 20000
        settings1[Settings.MAX_FRAME_SIZE] = 30000
        peer.sendFrame().settings(settings1)
        peer.acceptFrame() // ACK SETTINGS
        val settings2 = Settings()
        settings2[Settings.INITIAL_WINDOW_SIZE] = 40000
        settings2[Settings.MAX_FRAME_SIZE] = 50000
        settings2[Settings.MAX_CONCURRENT_STREAMS] = 60000
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  7. pkg/controller/podautoscaler/horizontal_test.go

    						Name: "qps",
    					},
    					Target: autoscalingv2.MetricTarget{
    						Type:  autoscalingv2.ValueMetricType,
    						Value: &targetValue,
    					},
    				},
    			},
    		},
    		reportedLevels: []uint64{20000},
    		expectedReportedReconciliationActionLabel: monitor.ActionLabelScaleUp,
    		expectedReportedReconciliationErrorLabel:  monitor.ErrorLabelNone,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/debug.go

    	}
    	loc.Registers &= other.Registers
    	return loc
    }
    
    var BlockStart = &Value{
    	ID:  -10000,
    	Op:  OpInvalid,
    	Aux: StringToAux("BlockStart"),
    }
    
    var BlockEnd = &Value{
    	ID:  -20000,
    	Op:  OpInvalid,
    	Aux: StringToAux("BlockEnd"),
    }
    
    var FuncEnd = &Value{
    	ID:  -30000,
    	Op:  OpInvalid,
    	Aux: StringToAux("FuncEnd"),
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  9. cmd/object-api-listobjects_test.go

    	// Create a bucket.
    	err := obj.MakeBucket(context.Background(), bucket, MakeBucketOptions{})
    	if err != nil {
    		b.Fatal(err)
    	}
    
    	// Insert objects to be listed and benchmarked later.
    	for i := 0; i < 20000; i++ {
    		key := "obj" + strconv.Itoa(i)
    		_, err = obj.PutObject(context.Background(), bucket, key, mustGetPutObjReader(b, bytes.NewBufferString(key), int64(len(key)), "", ""), ObjectOptions{})
    		if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  10. pkg/proxy/ipvs/proxier.go

    	// must be documented.
    	vs := utilipvs.VirtualServer{
    		Address:   netutils.ParseIPSloppy("198.51.100.0"),
    		Protocol:  "TCP",
    		Port:      20000,
    		Scheduler: scheduler,
    	}
    	if err := ipvs.AddVirtualServer(&vs); err != nil {
    		logger.Error(err, "Could not create dummy VS", "scheduler", scheduler)
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
Back to top