Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 169 for Unbounded (0.13 sec)

  1. pkg/keepalive/options_test.go

    import (
    	"bytes"
    	"fmt"
    	"testing"
    	"time"
    
    	"github.com/spf13/cobra"
    
    	"istio.io/istio/pkg/keepalive"
    )
    
    // Test default maximum connection age is set to infinite, preserving previous
    // unbounded lifetime behavior.
    func TestAgeDefaultsToInfinite(t *testing.T) {
    	ko := keepalive.DefaultOption()
    
    	if ko.MaxServerConnectionAge != keepalive.Infinity {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 29 15:00:10 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  2. testing/integ-test/src/integTest/groovy/org/gradle/integtests/StdioIntegrationTest.groovy

                    close()
                }
            })
    
            when:
            run "echo"
    
            then:
            output.contains("[abc][123]")
        }
    
        def "task can read stdin when stdin has unbounded length"() {
            given:
            buildFile << '''
    task echo {
        doLast {
            def reader = new BufferedReader(new InputStreamReader(System.in))
            while (true) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 30 05:02:18 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/BoundType.java

    package com.google.common.collect;
    
    import com.google.common.annotations.GwtCompatible;
    
    /**
     * Indicates whether an endpoint of some range is contained in the range itself ("closed") or not
     * ("open"). If a range is unbounded on a side, it is neither open nor closed on that side; the
     * bound simply does not exist.
     *
     * @since 10.0
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public enum BoundType {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Sep 20 15:57:47 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Cut.java

      @CheckForNull
      abstract C greatestValueBelow(DiscreteDomain<C> domain);
    
      /*
       * The canonical form is a BelowValue cut whenever possible, otherwise ABOVE_ALL, or
       * (only in the case of types that are unbounded below) BELOW_ALL.
       */
      Cut<C> canonical(DiscreteDomain<C> domain) {
        return this;
      }
    
      // note: overridden by {BELOW,ABOVE}_ALL
      @Override
      public int compareTo(Cut<C> that) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Cut.java

      @CheckForNull
      abstract C greatestValueBelow(DiscreteDomain<C> domain);
    
      /*
       * The canonical form is a BelowValue cut whenever possible, otherwise ABOVE_ALL, or
       * (only in the case of types that are unbounded below) BELOW_ALL.
       */
      Cut<C> canonical(DiscreteDomain<C> domain) {
        return this;
      }
    
      // note: overridden by {BELOW,ABOVE}_ALL
      @Override
      public int compareTo(Cut<C> that) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/qos_container_manager_linux.go

    		containerConfig := &CgroupConfig{
    			Name:               containerName,
    			ResourceParameters: resourceParameters,
    		}
    
    		// for each enumerated huge page size, the qos tiers are unbounded
    		m.setHugePagesUnbounded(containerConfig)
    
    		// check if it exists
    		if !cm.Exists(containerName) {
    			if err := cm.Create(containerConfig); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 20:42:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/files/src/test/groovy/org/gradle/api/internal/file/pattern/FixedStepPathMatcherTest.groovy

            expect:
            matcher.minSegments == 3
            matcher.maxSegments == 4
        }
    
        def "calculates min and max number of segments when next pattern is unbounded"() {
            def next = Stub(PathMatcher) {
                getMinSegments() >> 2
                getMaxSegments() >> Integer.MAX_VALUE
            }
            def matcher = new FixedStepPathMatcher(Stub(PatternStep), next)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/aes/cache.go

    }
    
    func newSimpleCache(clock clock.Clock, ttl time.Duration) *simpleCache {
    	cache := utilcache.NewExpiringWithClock(clock)
    	// "Stale" entries are always valid for us because the TTL is just used to prevent
    	// unbounded growth on the cache - for a given info the transformer is always the same.
    	// The key always corresponds to the exact same value, with the caveat that
    	// since we use the value.Context.AuthenticatedData to overwrite old keys,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:25:52 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/mono.go

    package types2
    
    import (
    	"cmd/compile/internal/syntax"
    	. "internal/types/errors"
    )
    
    // This file implements a check to validate that a Go package doesn't
    // have unbounded recursive instantiation, which is not compatible
    // with compilers using static instantiation (such as
    // monomorphization).
    //
    // It implements a sort of "type flow" analysis by detecting which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 00:05:29 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. pkg/istio-agent/xds_proxy.go

    type ProxyConnection struct {
    	conID              uint32
    	upstreamError      chan error
    	downstreamError    chan error
    	requestsChan       *channels.Unbounded[*discovery.DiscoveryRequest]
    	responsesChan      chan *discovery.DiscoveryResponse
    	deltaRequestsChan  *channels.Unbounded[*discovery.DeltaDiscoveryRequest]
    	deltaResponsesChan chan *discovery.DeltaDiscoveryResponse
    	stopChan           chan struct{}
    	downstream         adsStream
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
Back to top