Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 108 for varintAt (0.3 sec)

  1. staging/src/k8s.io/api/flowcontrol/v1/types.go

    	HandSize int32 `json:"handSize" protobuf:"varint,2,opt,name=handSize"`
    
    	// `queueLengthLimit` is the maximum number of requests allowed to
    	// be waiting in a given queue of this priority level at a time;
    	// excess requests are rejected.  This value must be positive.  If
    	// not specified, it will be defaulted to 50.
    	// +optional
    	QueueLengthLimit int32 `json:"queueLengthLimit" protobuf:"varint,3,opt,name=queueLengthLimit"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  2. pkg/test/echo/proto/echo.pb.go

    	sizeCache     protoimpl.SizeCache
    	unknownFields protoimpl.UnknownFields
    
    	Count         int32     `protobuf:"varint,1,opt,name=count,proto3" json:"count,omitempty"`
    	Qps           int32     `protobuf:"varint,2,opt,name=qps,proto3" json:"qps,omitempty"`
    	TimeoutMicros int64     `protobuf:"varint,3,opt,name=timeout_micros,json=timeoutMicros,proto3" json:"timeout_micros,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  3. src/internal/profile/proto.go

    }
    
    func encodeLength(b *buffer, tag int, len int) {
    	encodeVarint(b, uint64(tag)<<3|2)
    	encodeVarint(b, uint64(len))
    }
    
    func encodeUint64(b *buffer, tag int, x uint64) {
    	// append varint to b.data
    	encodeVarint(b, uint64(tag)<<3|0)
    	encodeVarint(b, x)
    }
    
    func encodeUint64s(b *buffer, tag int, x []uint64) {
    	if len(x) > 2 {
    		// Use packed encoding
    		n1 := len(b.data)
    		for _, u := range x {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 17 16:20:57 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  4. src/runtime/debuglog.go

    	// Write record header.
    	l.w.uvarint(tick - l.w.tick)
    	l.w.uvarint(nano - l.w.nano)
    	gp := getg()
    	if gp != nil && gp.m != nil && gp.m.p != 0 {
    		l.w.varint(int64(gp.m.p.ptr().id))
    	} else {
    		l.w.varint(-1)
    	}
    
    	return l
    }
    
    // A dlogger writes to the debug log.
    //
    // To obtain a dlogger, call dlog(). When done with the dlogger, call
    // end().
    type dlogger struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/flowcontrol/v1beta2/types.go

    	HandSize int32 `json:"handSize" protobuf:"varint,2,opt,name=handSize"`
    
    	// `queueLengthLimit` is the maximum number of requests allowed to
    	// be waiting in a given queue of this priority level at a time;
    	// excess requests are rejected.  This value must be positive.  If
    	// not specified, it will be defaulted to 50.
    	// +optional
    	QueueLengthLimit int32 `json:"queueLengthLimit" protobuf:"varint,3,opt,name=queueLengthLimit"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/flowcontrol/v1beta1/types.go

    	HandSize int32 `json:"handSize" protobuf:"varint,2,opt,name=handSize"`
    
    	// `queueLengthLimit` is the maximum number of requests allowed to
    	// be waiting in a given queue of this priority level at a time;
    	// excess requests are rejected.  This value must be positive.  If
    	// not specified, it will be defaulted to 50.
    	// +optional
    	QueueLengthLimit int32 `json:"queueLengthLimit" protobuf:"varint,3,opt,name=queueLengthLimit"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/flowcontrol/v1beta3/types.go

    	HandSize int32 `json:"handSize" protobuf:"varint,2,opt,name=handSize"`
    
    	// `queueLengthLimit` is the maximum number of requests allowed to
    	// be waiting in a given queue of this priority level at a time;
    	// excess requests are rejected.  This value must be positive.  If
    	// not specified, it will be defaulted to 50.
    	// +optional
    	QueueLengthLimit int32 `json:"queueLengthLimit" protobuf:"varint,3,opt,name=queueLengthLimit"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/resource/v1alpha2/namedresources.go

    	BoolValue *bool `json:"bool,omitempty" protobuf:"bytes,2,opt,name=bool"`
    	// IntValue is a 64-bit integer.
    	IntValue *int64 `json:"int,omitempty" protobuf:"varint,7,opt,name=int"`
    	// IntSliceValue is an array of 64-bit integers.
    	IntSliceValue *NamedResourcesIntSlice `json:"intSlice,omitempty" protobuf:"varint,8,rep,name=intSlice"`
    	// StringValue is a string.
    	StringValue *string `json:"string,omitempty" protobuf:"bytes,5,opt,name=string"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/profile/proto.go

    }
    
    func encodeLength(b *buffer, tag int, len int) {
    	encodeVarint(b, uint64(tag)<<3|2)
    	encodeVarint(b, uint64(len))
    }
    
    func encodeUint64(b *buffer, tag int, x uint64) {
    	// append varint to b.data
    	encodeVarint(b, uint64(tag)<<3)
    	encodeVarint(b, x)
    }
    
    func encodeUint64s(b *buffer, tag int, x []uint64) {
    	if len(x) > 2 {
    		// Use packed encoding
    		n1 := len(b.data)
    		for _, u := range x {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  10. src/internal/trace/raw/writer.go

    			w.buf = binary.AppendUvarint(w.buf, frameArgs[i])
    		}
    	}
    
    	// Write out the length of the data.
    	if spec.HasData {
    		w.buf = binary.AppendUvarint(w.buf, uint64(len(e.Data)))
    	}
    
    	// Write out varint events.
    	_, err := w.w.Write(w.buf)
    	w.buf = w.buf[:0]
    	if err != nil {
    		return err
    	}
    
    	// Write out data.
    	if spec.HasData {
    		_, err := w.w.Write(e.Data)
    		return err
    	}
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top