Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 85 for seas (0.06 sec)

  1. src/main/resources/fess_indices/fess/es/stopwords.txt

    hubierais
    hubieran
    hubiese
    hubieses
    hubiésemos
    hubieseis
    hubiesen
    habiendo
    habido
    habida
    habidos
    habidas
    soy
    eres
    es
    somos
    sois
    son
    sea
    seas
    seamos
    seáis
    sean
    seré
    serás
    será
    seremos
    seréis
    serán
    sería
    serías
    seríamos
    seríais
    serían
    era
    eras
    éramos
    erais
    eran
    fui
    fuiste
    fue
    fuimos
    fuisteis
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/seat_seconds.go

    	return float64(ss) / ssScale
    }
    
    // DurationPerSeat returns duration per seat.
    // This division may lose precision.
    func (ss SeatSeconds) DurationPerSeat(seats float64) time.Duration {
    	return time.Duration(float64(ss) / seats * (float64(time.Second) / ssScale))
    }
    
    // String converts to a string.
    // This is suitable for large as well as small values.
    func (ss SeatSeconds) String() string {
    	const div = SeatSeconds(ssScale)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 20 09:16:46 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/width.go

    type WorkEstimate struct {
    	// InitialSeats is the number of seats occupied while the server is
    	// executing this request.
    	InitialSeats uint64
    
    	// FinalSeats is the number of seats occupied at the end,
    	// during the AdditionalLatency.
    	FinalSeats uint64
    
    	// AdditionalLatency specifies the additional duration the seats allocated
    	// to this request must be reserved after the given request had finished.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:26:52 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/list_work_estimator.go

    	// for now, our rough estimate is to allocate one seat to each 100 obejcts that
    	// will be processed by the list request.
    	// we will come up with a different formula for the transformation function and/or
    	// fine tune this number in future iteratons.
    	seats := uint64(math.Ceil(float64(estimatedObjectsToBeProcessed) / e.config.ObjectsPerSeat))
    
    	// make sure we never return a seat of zero
    	if seats < minSeats {
    		seats = minSeats
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/mutating_work_estimator.go

    		// seats that can be assigned to a given request. Thanks to it:
    		// 1) we reduce the amount of seat-seconds that are "wasted" during
    		//    dispatching and executing initial phase of the request
    		// 2) we are not changing the finalWork estimate - just potentially
    		//    reshaping it to be narrower and longer. As long as the maximum
    		//    seats setting will prevent dispatching too many requests at once
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:26:52 UTC 2023
    - 6K bytes
    - Viewed (0)
  6. test/typeparam/sets.go

    // The values will be in an indeterminate order.
    func (s _Set[Elem]) Values() []Elem {
    	r := make([]Elem, 0, len(s.m))
    	for v := range s.m {
    		r = append(r, v)
    	}
    	return r
    }
    
    // _Equal reports whether two sets contain the same elements.
    func _Equal[Elem comparable](s1, s2 _Set[Elem]) bool {
    	if len(s1.m) != len(s2.m) {
    		return false
    	}
    	for v1 := range s1.m {
    		if !s2.Contains(v1) {
    			return false
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  7. internal/crypto/key.go

    	Algorithm string   // The sealing algorithm used to encrypt the object key.
    }
    
    // Seal encrypts the ObjectKey using the 256 bit external key and IV. The sealed
    // key is also cryptographically bound to the object's path (bucket/object) and the
    // domain (SSE-C or SSE-S3).
    func (key ObjectKey) Seal(extKey []byte, iv [32]byte, domain, bucket, object string) SealedKey {
    	if len(extKey) != 32 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 19 20:28:10 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/interface.go

    	// max(1, QueuingConfig.QueueLengthLimit) X max(1, QueuingConfig.DesiredNumQueues).
    	// The RatioedGauge observes number of seats occupied through all phases of execution.
    	// The denominator for all the ratioed concurrency gauges is supplied later in the DispatchingConfig.
    	// The Gauge observes the seat demand (executing + queued seats).
    	BeginConstruction(QueuingConfig, metrics.RatioedGaugePair, metrics.RatioedGauge, metrics.Gauge) (QueueSetCompleter, error)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/time/src/test/groovy/org/gradle/internal/time/DefaultTimerTest.groovy

            then:
            timer.getElapsed() == "51.243 secs"
        }
    
        def testOnlySecondsEvenMs() {
            when:
            setTime(4000)
    
            then:
            timer.getElapsed() == "4.0 secs"
        }
    
        def testMinutesAndSeconds() {
            when:
            setTime(0, 32, 40, 322)
    
            then:
            timer.getElapsed() == "32 mins 40.322 secs"
        }
    
        def testHoursMinutesAndSeconds() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:20:17 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. src/net/tcpsockopt_unix.go

    	if d == 0 {
    		d = defaultTCPKeepAliveIdle
    	} else if d < 0 {
    		return nil
    	}
    
    	// The kernel expects seconds so round to next highest second.
    	secs := int(roundDurationUp(d, time.Second))
    	err := fd.pfd.SetsockoptInt(syscall.IPPROTO_TCP, syscall.TCP_KEEPIDLE, secs)
    	runtime.KeepAlive(fd)
    	return wrapSyscallError("setsockopt", err)
    }
    
    func setKeepAliveInterval(fd *netFD, d time.Duration) error {
    	if d == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:17:21 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top