Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 284 for numbuf (0.14 sec)

  1. pkg/controller/podautoscaler/horizontal.go

    	} else if currentReplicas > hpa.Spec.MaxReplicas {
    		rescaleReason = "Current number of replicas above Spec.MaxReplicas"
    		desiredReplicas = hpa.Spec.MaxReplicas
    	} else if currentReplicas < minReplicas {
    		rescaleReason = "Current number of replicas below Spec.MinReplicas"
    		desiredReplicas = minReplicas
    	} else {
    		var metricTimestamp time.Time
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  2. src/runtime/malloc.go

    	heapArenaBitmapWords = heapArenaWords / (8 * goarch.PtrSize)
    
    	pagesPerArena = heapArenaBytes / pageSize
    
    	// arenaL1Bits is the number of bits of the arena number
    	// covered by the first level arena map.
    	//
    	// This number should be small, since the first level arena
    	// map requires PtrSize*(1<<arenaL1Bits) of space in the
    	// binary's BSS. It can be zero, in which case the first level
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. src/time/format.go

    //
    // A comma or decimal point followed by one or more zeros represents
    // a fractional second, printed to the given number of decimal places.
    // A comma or decimal point followed by one or more nines represents
    // a fractional second, printed to the given number of decimal places, with
    // trailing zeros removed.
    // For example "15:04:05,000" or "15:04:05.000" formats or parses with
    // millisecond precision.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	Codec runtime.Codec
    
    	Clock clock.WithTicker
    }
    
    type watchersMap map[int]*cacheWatcher
    
    func (wm watchersMap) addWatcher(w *cacheWatcher, number int) {
    	wm[number] = w
    }
    
    func (wm watchersMap) deleteWatcher(number int) {
    	delete(wm, number)
    }
    
    func (wm watchersMap) terminateAll(done func(*cacheWatcher)) {
    	for key, watcher := range wm {
    		delete(wm, key)
    		done(watcher)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. src/bytes/bytes_test.go

    		sizes = append(sizes, []int{4 << 20, 64 << 20}...)
    	}
    	maxSize := 2 * (sizes[len(sizes)-1] + 8)
    	if len(bmbuf) < maxSize {
    		bmbuf = make([]byte, maxSize)
    	}
    
    	for _, n := range sizes {
    		for _, off := range []int{0, 1, 4, 7} {
    			buf1 := bmbuf[off : off+n]
    			buf2Start := (len(bmbuf) / 2) + off
    			buf2 := bmbuf[buf2Start : buf2Start+n]
    			buf1[n-1] = 'x'
    			buf2[n-1] = 'x'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  6. cmd/object-api-datatypes_gen.go

    		if err != nil {
    			err = msgp.WrapError(err)
    			return
    		}
    		(*z) = BackendType(zb0001)
    	}
    	o = bts
    	return
    }
    
    // Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message
    func (z BackendType) Msgsize() (s int) {
    	s = msgp.IntSize
    	return
    }
    
    // MarshalMsg implements msgp.Marshaler
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  7. src/crypto/x509/x509.go

    	RevokedCertificates []pkix.RevokedCertificate
    
    	// Number is used to populate the X.509 v2 cRLNumber extension in the CRL,
    	// which should be a monotonically increasing sequence number for a given
    	// CRL scope and CRL issuer. It is also populated from the cRLNumber
    	// extension when parsing a CRL.
    	Number *big.Int
    
    	// ThisUpdate is used to populate the thisUpdate field in the CRL, which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  8. cmd/xl-storage-format-v2_gen.go

    		if err != nil {
    			err = msgp.WrapError(err)
    			return
    		}
    		(*z) = ChecksumAlgo(zb0001)
    	}
    	o = bts
    	return
    }
    
    // Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message
    func (z ChecksumAlgo) Msgsize() (s int) {
    	s = msgp.Uint8Size
    	return
    }
    
    // DecodeMsg implements msgp.Decodable
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  9. src/bufio/bufio_test.go

    	outbuf := new(strings.Builder)
    	maxLineLength := len(line1) + len(restData)/2
    	l := NewReaderSize(inbuf, maxLineLength)
    	line, isPrefix, err := l.ReadLine()
    	if isPrefix || err != nil || string(line) != line1 {
    		t.Errorf("bad result for first line: isPrefix=%v err=%v line=%q", isPrefix, err, string(line))
    	}
    	n, err := io.Copy(outbuf, l)
    	if int(n) != len(restData) || err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    	padDuration time.Duration
    	// When true indicates that only half the specified number of
    	// threads should run during the first half of the evaluation
    	// period
    	split bool
    	// initialSeats is the number of seats this request occupies in the first phase of execution
    	initialSeats uint64
    	// finalSeats is the number occupied during the second phase of execution
    	finalSeats uint64
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
Back to top