Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 106 for Unbounded (0.17 sec)

  1. android/guava/src/com/google/common/collect/Range.java

     * appropriate {@link DiscreteDomain} to {@link ContiguousSet#create}.
     *
     * <h3>Types of ranges</h3>
     *
     * <p>Each end of the range may be bounded or unbounded. If bounded, there is an associated
     * <i>endpoint</i> value, and the range is considered to be either <i>open</i> (does not include the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Range.java

     * appropriate {@link DiscreteDomain} to {@link ContiguousSet#create}.
     *
     * <h3>Types of ranges</h3>
     *
     * <p>Each end of the range may be bounded or unbounded. If bounded, there is an associated
     * <i>endpoint</i> value, and the range is considered to be either <i>open</i> (does not include the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  3. 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)
  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. 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)
  8. 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)
  9. src/go/types/mono.go

    // license that can be found in the LICENSE file.
    
    package types
    
    import (
    	"go/ast"
    	"go/token"
    	. "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 Apr 03 18:48:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation.go

    	MaxCost uint64
    	// MaxCardinality represents the worse case number of times this validation rule could be invoked if contained under an
    	// unbounded map or list in an OpenAPIv3 schema.
    	MaxCardinality uint64
    	// MessageExpression represents the cel Program that should be evaluated to generate an error message if the rule
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top