Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,320 for numbuf (0.17 sec)

  1. internal/config/api/help.go

    			Description: `set the maximum number of replication workers` + defaultHelpPostfix(apiReplicationMaxWorkers),
    			Optional:    true,
    			Type:        "number",
    		},
    		config.HelpKV{
    			Key:         apiTransitionWorkers,
    			Description: `set the number of transition workers` + defaultHelpPostfix(apiTransitionWorkers),
    			Optional:    true,
    			Type:        "number",
    		},
    		config.HelpKV{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 15 01:07:19 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. internal/config/notify/help.go

    			Description: queueLimitComment,
    			Optional:    true,
    			Type:        "number",
    		},
    		config.HelpKV{
    			Key:         config.Comment,
    			Description: config.DefaultComment,
    			Optional:    true,
    			Type:        "sentence",
    		},
    		config.HelpKV{
    			Key:         target.PostgresMaxOpenConnections,
    			Description: "To set the maximum number of open connections to the database. The value is set to `2` by default.",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 19 04:37:54 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/util/internal/DefaultGradleVersion.java

        }
    
        static final class Stage implements Comparable<Stage> {
            final int stage;
            final int number;
            final Character patchNo;
    
            private Stage(int stage, int number, Character patchNo) {
                this.stage = stage;
                this.number = number;
                this.patchNo = patchNo;
            }
    
            static Stage from(int stage, String stageString) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/testdata/isolation.yaml.golden

      creationTimestamp: null
      name: isolation-istio-autogenerated-k8s-gateway-empty-hostname
      namespace: gateway-conformance-infra
    spec:
      servers:
      - hosts:
        - '*/*'
        port:
          name: default
          number: 80
          protocol: HTTP
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      annotations:
        internal.istio.io/gateway-semantics: gateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. src/internal/abi/abi_generic.go

    	// IntArgRegs is the number of registers dedicated
    	// to passing integer argument values. Result registers are identical
    	// to argument registers, so this number is used for those too.
    	IntArgRegs = 0
    
    	// FloatArgRegs is the number of registers dedicated
    	// to passing floating-point argument values. Result registers are
    	// identical to argument registers, so this number is used for
    	// those too.
    	FloatArgRegs = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:38:52 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. pkg/kubelet/metrics/collectors/volume_stats_test.go

    		# TYPE kubelet_volume_stats_inodes_free gauge
    		# HELP kubelet_volume_stats_inodes_used [ALPHA] Number of used inodes in the volume
    		# TYPE kubelet_volume_stats_inodes_used gauge
    		# HELP kubelet_volume_stats_used_bytes [ALPHA] Number of used bytes in the volume
    		# TYPE kubelet_volume_stats_used_bytes gauge
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. tests/associations_has_one_test.go

    func TestHasOneAssociationWithSelect(t *testing.T) {
    	user := *GetUser("hasone", Config{Account: true})
    
    	DB.Omit("Account.Number").Create(&user)
    
    	AssertAssociationCount(t, user, "Account", 1, "")
    
    	var account Account
    	DB.Model(&user).Association("Account").Find(&account)
    	if account.Number != "" {
    		t.Errorf("account's number should not be saved")
    	}
    }
    
    func TestHasOneAssociationForSlice(t *testing.T) {
    	users := []User{
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:49:45 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. src/runtime/metrics/doc.go

    		The number of non-default behaviors executed by the cmd/go
    		package due to a non-default GODEBUG=gocachehash=... setting.
    
    	/godebug/non-default-behavior/gocachetest:events
    		The number of non-default behaviors executed by the cmd/go
    		package due to a non-default GODEBUG=gocachetest=... setting.
    
    	/godebug/non-default-behavior/gocacheverify:events
    		The number of non-default behaviors executed by the cmd/go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go

    	result[0] = '"'
    	number, suffix := q.CanonicalizeBytes(result[1:1])
    	// if the same slice was returned to us that we passed in, avoid another allocation by copying number into
    	// the source slice and returning that
    	if len(number) > 0 && &number[0] == &result[1] && (len(number)+len(suffix)+2) <= int64QuantityExpectedBytes {
    		number = append(number, suffix...)
    		number = append(number, '"')
    		return result[:1+len(number)], nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  10. src/math/rand/v2/rand.go

    // from the default Source.
    // It panics if n <= 0.
    func IntN(n int) int { return globalRand.IntN(n) }
    
    // UintN returns, as a uint, a pseudo-random number in the half-open interval [0,n)
    // from the default Source.
    // It panics if n <= 0.
    func UintN(n uint) uint { return globalRand.UintN(n) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:25:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
Back to top