Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 53 for queueable (0.14 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue_test.go

    func TestPendingPodsMetric(t *testing.T) {
    	timestamp := time.Now()
    	metrics.Register()
    	total := 60
    	queueableNum := 50
    	queueable, failme := "queueable", "failme"
    	// First 50 Pods are queueable.
    	pInfos := makeQueuedPodInfos(queueableNum, "x", queueable, timestamp)
    	// The last 10 Pods are not queueable.
    	gated := makeQueuedPodInfos(total-queueableNum, "y", failme, timestamp)
    	// Manually mark them as gated=true.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/maplist.go

    package cel
    
    import (
    	"k8s.io/apiextensions-apiserver/pkg/apiserver/schema"
    	"k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/model"
    	"k8s.io/apiserver/pkg/cel/common"
    )
    
    // makeMapList returns a queryable interface over the provided x-kubernetes-list-type=map
    // keyedItems. If the provided schema is _not_ an array with x-kubernetes-list-type=map, returns an
    // empty mapList.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 07 02:56:51 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/graph/ValueGraphBuilder.java

      public static ValueGraphBuilder<Object, Object> undirected() {
        return new ValueGraphBuilder<>(false);
      }
    
      /**
       * Returns a {@link ValueGraphBuilder} initialized with all properties queryable from {@code
       * graph}.
       *
       * <p>The "queryable" properties are those that are exposed through the {@link ValueGraph}
       * interface, such as {@link ValueGraph#isDirected()}. Other properties, such as {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 03 01:21:31 UTC 2022
    - 8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/graph/NetworkBuilder.java

      public static NetworkBuilder<Object, Object> undirected() {
        return new NetworkBuilder<>(false);
      }
    
      /**
       * Returns a {@link NetworkBuilder} initialized with all properties queryable from {@code
       * network}.
       *
       * <p>The "queryable" properties are those that are exposed through the {@link Network} interface,
       * such as {@link Network#isDirected()}. Other properties, such as {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 03 01:21:31 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/graph/GraphBuilder.java

      public static GraphBuilder<Object> undirected() {
        return new GraphBuilder<>(false);
      }
    
      /**
       * Returns a {@link GraphBuilder} initialized with all properties queryable from {@code graph}.
       *
       * <p>The "queryable" properties are those that are exposed through the {@link Graph} interface,
       * such as {@link Graph#isDirected()}. Other properties, such as {@link #expectedNodeCount(int)},
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 03 01:21:31 UTC 2022
    - 7.3K bytes
    - Viewed (0)
  6. guava/src/com/google/common/graph/NetworkBuilder.java

      public static NetworkBuilder<Object, Object> undirected() {
        return new NetworkBuilder<>(false);
      }
    
      /**
       * Returns a {@link NetworkBuilder} initialized with all properties queryable from {@code
       * network}.
       *
       * <p>The "queryable" properties are those that are exposed through the {@link Network} interface,
       * such as {@link Network#isDirected()}. Other properties, such as {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 03 01:21:31 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/graph/ValueGraphBuilder.java

      public static ValueGraphBuilder<Object, Object> undirected() {
        return new ValueGraphBuilder<>(false);
      }
    
      /**
       * Returns a {@link ValueGraphBuilder} initialized with all properties queryable from {@code
       * graph}.
       *
       * <p>The "queryable" properties are those that are exposed through the {@link ValueGraph}
       * interface, such as {@link ValueGraph#isDirected()}. Other properties, such as {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 03 01:21:31 UTC 2022
    - 8K bytes
    - Viewed (0)
  8. guava/src/com/google/common/graph/GraphBuilder.java

      public static GraphBuilder<Object> undirected() {
        return new GraphBuilder<>(false);
      }
    
      /**
       * Returns a {@link GraphBuilder} initialized with all properties queryable from {@code graph}.
       *
       * <p>The "queryable" properties are those that are exposed through the {@link Graph} interface,
       * such as {@link Graph#isDirected()}. Other properties, such as {@link #expectedNodeCount(int)},
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 03 01:21:31 UTC 2022
    - 7.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/cel/common/maplist.go

    	if len(listMapKeys) == 1 {
    		key := listMapKeys[0]
    		return &singleKeyStrategy{
    			key: key,
    		}
    	}
    
    	return &multiKeyStrategy{
    		sts: sts,
    	}
    }
    
    // MakeMapList returns a queryable interface over the provided x-kubernetes-list-type=map
    // keyedItems. If the provided schema is _not_ an array with x-kubernetes-list-type=map, returns an
    // empty mapList.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 07 02:56:51 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  10. pkg/config/model.go

    	Labels map[string]string `json:"labels,omitempty"`
    
    	// Annotations is an unstructured key value map stored with a resource that may be
    	// set by external tools to store and retrieve arbitrary metadata. They are not
    	// queryable and should be preserved when modifying objects.
    	Annotations map[string]string `json:"annotations,omitempty"`
    
    	// ResourceVersion is an opaque identifier for tracking updates to the config registry.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 12.6K bytes
    - Viewed (0)
Back to top