Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 116 for numbuf (0.14 sec)

  1. cmd/storage-datatypes_gen.go

    		default:
    			bts, err = msgp.Skip(bts)
    			if err != nil {
    				err = msgp.WrapError(err)
    				return
    			}
    		}
    	}
    	o = bts
    	return
    }
    
    // Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message
    func (z BaseOptions) Msgsize() (s int) {
    	s = 1
    	return
    }
    
    // DecodeMsg implements msgp.Decodable
    func (z *CheckPartsHandlerParams) DecodeMsg(dc *msgp.Reader) (err error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 130.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    }
    
    func datblk(ctxt *Link, out *OutBuf, addr, size int64) {
    	writeDatblkToOutBuf(ctxt, out, addr, size)
    }
    
    // Used only on Wasm for now.
    func DatblkBytes(ctxt *Link, addr int64, size int64) []byte {
    	buf := make([]byte, size)
    	out := &OutBuf{heap: buf}
    	writeDatblkToOutBuf(ctxt, out, addr, size)
    	return buf
    }
    
    func writeDatblkToOutBuf(ctxt *Link, out *OutBuf, addr int64, size int64) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    							"subAdd": {
    								Generic: schema.Generic{
    									Type: "number",
    								},
    							},
    						},
    					},
    				},
    			},
    			"white space": {
    				Generic: schema.Generic{
    					Type: "number",
    				},
    			},
    			"'foo'bar": {
    				Generic: schema.Generic{
    					Type: "number",
    				},
    			},
    			"a": {
    				Generic: schema.Generic{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__autoscaling__v2_openapi.json

              "currentReplicas": {
                "description": "currentReplicas is current number of replicas of pods managed by this autoscaler, as last seen by the autoscaler.",
                "format": "int32",
                "type": "integer"
              },
              "desiredReplicas": {
                "default": 0,
                "description": "desiredReplicas is the desired number of replicas of pods managed by this autoscaler, as last calculated by the autoscaler.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 186.6K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/x86/asm6.go

    func (ab *AsmBuf) Last() byte { return ab.buf[ab.off-1] }
    
    // Len returns the length of the buffer.
    func (ab *AsmBuf) Len() int { return ab.off }
    
    // Bytes returns the contents of the buffer.
    func (ab *AsmBuf) Bytes() []byte { return ab.buf[:ab.off] }
    
    // Reset empties the buffer.
    func (ab *AsmBuf) Reset() { ab.off = 0 }
    
    // At returns the byte at offset i.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  6. pkg/config/validation/validation.go

    }
    
    func validatePortSelector(selector *networking.PortSelector) (errs error) {
    	if selector == nil {
    		return nil
    	}
    
    	// port must be a number
    	number := int(selector.GetNumber())
    	errs = appendErrors(errs, agent.ValidatePort(number))
    	return
    }
    
    func validateHTTPRetry(retries *networking.HTTPRetry) (errs error) {
    	if retries == nil {
    		return
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  7. src/database/sql/sql.go

    	MaxOpenConnections int // Maximum number of open connections to the database.
    
    	// Pool Status
    	OpenConnections int // The number of established connections both in use and idle.
    	InUse           int // The number of connections currently in use.
    	Idle            int // The number of idle connections.
    
    	// Counters
    	WaitCount         int64         // The total number of connections waited for.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  8. tests/integration/pilot/common/routing.go

            host: {{.}}
            port:
              number: 443
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: alt-external-service
    spec:
      exportTo: [.]
      hosts:
      - {{.}}
      resolution: NONE
      ports:
      - name: http
        number: 8888
        protocol: http
      - name: http2
        number: 8882
        protocol: http2
      - name: https
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  9. src/reflect/value.go

    			}
    		}
    		in = append(in, v)
    	}
    
    	// Call underlying function.
    	out := f(in)
    	numOut := ftyp.NumOut()
    	if len(out) != numOut {
    		panic("reflect: wrong return count from function created by MakeFunc")
    	}
    
    	// Copy results back into argument frame and register space.
    	if numOut > 0 {
    		for i, typ := range ftyp.OutSlice() {
    			v := out[i]
    			if v.typ() == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  10. pkg/controller/job/job_controller_test.go

    				t.Errorf("Unexpected number of active pods.  Expected %d, saw %d\n", tc.expectedActive, actual.Status.Active)
    			}
    			if diff := cmp.Diff(tc.expectedReady, actual.Status.Ready); diff != "" {
    				t.Errorf("Unexpected number of ready pods (-want,+got): %s", diff)
    			}
    			if actual.Status.Succeeded != tc.expectedSucceeded {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
Back to top