Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 for Unbounded (0.15 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. 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)
  4. 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. 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)
  6. 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)
  7. 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)
  8. src/net/http/transfer.go

    	// If there is no Content-Length or chunked Transfer-Encoding on a *Response
    	// and the status is not 1xx, 204 or 304, then the body is unbounded.
    	// See RFC 7230, section 3.3.
    	switch msg.(type) {
    	case *Response:
    		if realLength == -1 && !t.Chunked && bodyAllowedForStatus(t.StatusCode) {
    			// Unbounded body.
    			t.Close = true
    		}
    	}
    
    	// Prepare body reader. ContentLength < 0 means chunked encoding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  9. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/VersionRange.java

                    if (index1 >= 0) {
                        index = index1;
                    }
                }
    
                if (index < 0) {
                    throw new InvalidVersionSpecificationException("Unbounded range: " + spec);
                }
    
                Restriction restriction = parseRestriction(process.substring(0, index + 1));
                if (lowerBound == null) {
                    lowerBound = restriction.getLowerBound();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  10. src/runtime/debug/garbage.go

    // or are locked to other goroutines due to use of runtime.LockOSThread.
    //
    // SetMaxThreads is useful mainly for limiting the damage done by
    // programs that create an unbounded number of threads. The idea is
    // to take down the program before it takes down the operating system.
    func SetMaxThreads(threads int) int {
    	return setMaxThreads(threads)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top