Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 228 for 100m (0.04 sec)

  1. src/math/rand/rand_test.go

    	r := New(NewSource(1))
    	for n := b.N; n > 0; n-- {
    		r.Intn(1000)
    	}
    }
    
    func BenchmarkInt63n1000(b *testing.B) {
    	r := New(NewSource(1))
    	for n := b.N; n > 0; n-- {
    		r.Int63n(1000)
    	}
    }
    
    func BenchmarkInt31n1000(b *testing.B) {
    	r := New(NewSource(1))
    	for n := b.N; n > 0; n-- {
    		r.Int31n(1000)
    	}
    }
    
    func BenchmarkFloat32(b *testing.B) {
    	r := New(NewSource(1))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  2. src/internal/types/testdata/check/builtins0.go

    	_ = make([]int, 0, - /* ERROR "must not be negative" */ 1)
    	_ = make([]int, - /* ERROR "must not be negative" */ 1, - /* ERROR "must not be negative" */ 1)
    	_ = make([]int, 1 /* ERROR "overflows" */ <<100, 1 /* ERROR "overflows" */ <<100)
    	_ = make([]int, 10 /* ERROR "length and capacity swapped" */ , 9)
    	_ = make([]int, 1 /* ERROR "overflows" */ <<100, 12345)
    	_ = make([]int, m /* ERROR "must be integer" */ )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  3. cmd/bucket-listobjects-handlers.go

    }
    
    // ListObjectsV2MHandler - GET Bucket (List Objects) Version 2 with metadata.
    // --------------------------
    // This implementation of the GET operation returns some or all (up to 1000)
    // of the objects in a bucket. You can use the request parameters as selection
    // criteria to return a subset of the objects in a bucket.
    //
    // NOTE: It is recommended that this API to be used for application development.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    						Shape: []config.UtilizationShapePoint{
    							{Utilization: 0, Score: 0},
    							{Utilization: 100, Score: 10},
    						},
    					},
    				},
    			},
    			runPreScore: true,
    		},
    		{
    			name: "test case for ScoringStrategy MostAllocated",
    			requestedPod: st.MakePod().
    				Req(map[v1.ResourceName]string{"cpu": "1000", "memory": "2000"}).
    				Obj(),
    			nodes: []*v1.Node{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_test.go

    			},
    			out: &hcm.HttpConnectionManager_Tracing{
    				MaxPathTagLength: nil,
    				ClientSampling: &xdstype.Percent{
    					Value: 100.0,
    				},
    				RandomSampling: &xdstype.Percent{
    					Value: 10.0,
    				},
    				OverallSampling: &xdstype.Percent{
    					Value: 100.0,
    				},
    				CustomTags: customTracingTags(),
    			},
    		},
    		{
    			name:             "random-sampling-too-low-env",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  6. cluster/gce/config-common.sh

    }
    
    function get-node-ip-range {
      if [[ -n "${NODE_IP_RANGE:-}" ]]; then
        echo "${NODE_IP_RANGE}"
        return
      fi
      local suggested_range="10.40.0.0/22"
      if [[ "$(get-num-nodes)" -gt 1000 ]]; then
        suggested_range="10.40.0.0/21"
      fi
      if [[ "$(get-num-nodes)" -gt 2000 ]]; then
        suggested_range="10.40.0.0/20"
      fi
      if [[ "$(get-num-nodes)" -gt 4000 ]]; then
        suggested_range="10.40.0.0/19"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:06:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listener_builder_test.go

    				80: true,
    				82: true,
    				// But should see for passthrough or unnamed ports
    				81:   false,
    				1000: false,
    			},
    			tls: map[int]bool{
    				// Permissive mode: inspector is set everywhere
    				80:   false,
    				82:   false,
    				81:   false,
    				1000: false,
    			},
    		},
    		{
    			name:   "disable",
    			config: disableMode,
    			http: map[int]bool{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/route/retry/retry_test.go

    			route: &networking.HTTPRoute{
    				Retries: &networking.HTTPRetry{
    					Attempts: 2,
    					RetryOn:  "some,fake,conditions,1000",
    				},
    			},
    			assertFunc: func(g *WithT, policy *envoyroute.RetryPolicy) {
    				g.Expect(policy).To(Not(BeNil()))
    				g.Expect(policy.RetryOn).To(Equal("some,fake,conditions,1000"))
    				g.Expect(policy.RetriableStatusCodes).To(Equal([]uint32{}))
    			},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. pilot/pkg/features/telemetry.go

    		1.0,
    		"Sets the mesh-wide trace sampling percentage. Should be 0.0 - 100.0. Precision to 0.01. "+
    			"Default is 1.0.",
    	)
    
    	TraceSampling = func() float64 {
    		f := traceSamplingVar.Get()
    		if f < 0.0 || f > 100.0 {
    			log.Warnf("PILOT_TRACE_SAMPLING out of range: %v", f)
    			return 1.0
    		}
    		return f
    	}()
    
    	EnableTelemetryLabel = env.Register("PILOT_ENABLE_TELEMETRY_LABEL", true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:36:01 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. cmd/veeam-sos-api.go

    //     multi-delete operation. The same registry key setting overwrites the storage-defined setting.
    //     Optional value, default 1000, range: 1-unlimited (S3 standard maximum is 1000 and should not be set higher)
    //
    //   - <StorageConcurrentTasksLimit>
    //     Setting reduces the parallel Repository Task slots that offload or write data to object storage. The same user interface
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 20 18:54:52 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top