Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 169 for Unbounded (0.13 sec)

  1. pkg/channels/unbounded.go

    // performance critical code paths, using Unbounded is strongly discouraged and
    // defining a new type specific implementation of this buffer is preferred. See
    // internal/transport/transport.go for an example of this.
    type Unbounded[T any] struct {
    	c       chan T
    	mu      sync.Mutex
    	backlog []T
    }
    
    // NewUnbounded returns a new instance of Unbounded.
    func NewUnbounded[T any]() *Unbounded[T] {
    	return &Unbounded[T]{c: make(chan T, 1)}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 31 19:53:39 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/resources/org/gradle/schema/dependency-verification-1.3.xsd

            <xs:sequence>
                <xs:element type="ignored-keyType" name="ignored-key" minOccurs="0" maxOccurs="unbounded"/>
            </xs:sequence>
        </xs:complexType>
        <xs:complexType name="trusted-keyType" mixed="true">
            <xs:sequence>
                <xs:element type="trustingType" name="trusting" maxOccurs="unbounded" minOccurs="0"/>
            </xs:sequence>
            <xs:attribute type="xs:string" name="id" use="required"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 23:01:46 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/resources/org/gradle/schema/dependency-verification-1.1.xsd

            <xs:sequence>
                <xs:element type="trusted-keyType" name="trusted-key" maxOccurs="unbounded" minOccurs="0"/>
            </xs:sequence>
        </xs:complexType>
        <xs:complexType name="key-serversType">
            <xs:sequence>
                <xs:element type="key-serverType" name="key-server" maxOccurs="unbounded" minOccurs="0"/>
            </xs:sequence>
            <xs:attribute type="xs:boolean" name="enabled"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/resources/org/gradle/schema/dependency-verification-1.2.xsd

            <xs:sequence>
                <xs:element type="trusted-keyType" name="trusted-key" maxOccurs="unbounded" minOccurs="0"/>
            </xs:sequence>
        </xs:complexType>
        <xs:complexType name="key-serversType">
            <xs:sequence>
                <xs:element type="key-serverType" name="key-server" maxOccurs="unbounded" minOccurs="0"/>
            </xs:sequence>
            <xs:attribute type="xs:boolean" name="enabled"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/cel_validation.go

    	"k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/model"
    	"k8s.io/apimachinery/pkg/util/validation/field"
    	"k8s.io/apiserver/pkg/cel"
    )
    
    // unbounded uses nil to represent an unbounded cardinality value.
    var unbounded *uint64 = nil
    
    // CELSchemaContext keeps track of data used by x-kubernetes-validations rules for a specific schema node.
    type CELSchemaContext struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 13.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/resources/org/gradle/schema/dependency-verification-1.0.xsd

            </xs:simpleContent>
        </xs:complexType>
        <xs:complexType name="trusted-artifactsType">
            <xs:sequence>
                <xs:element type="trustType" name="trust" maxOccurs="unbounded" minOccurs="0"/>
            </xs:sequence>
        </xs:complexType>
        <xs:complexType name="ignored-keyType">
            <xs:attribute type="xs:string" name="id" use="required"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  7. pkg/apis/core/v1/helper/qos/qos_test.go

    			}),
    			expected: v1.PodQOSBurstable,
    		},
    		{
    			pod: newPod("burstable-unbounded-but-requests-match-limits", []v1.Container{
    				newContainer("burstable", getResourceList("100m", "100Mi"), getResourceList("200m", "200Mi")),
    				newContainer("burstable-unbounded", getResourceList("100m", "100Mi"), getResourceList("", "")),
    			}),
    			expected: v1.PodQOSBurstable,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 14:47:37 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top