Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 54 for validate0 (0.19 sec)

  1. pkg/kubelet/kubelet_node_status_test.go

    			kubelet.nodeLister = delegatingNodeLister{client: kubeClient}
    
    			// Execute
    			assert.NoError(t, kubelet.updateNodeStatus(ctx))
    
    			// Validate
    			actions := kubeClient.Actions()
    			if tc.expectedNode != nil {
    				assert.Len(t, actions, 2)
    				assert.IsType(t, core.GetActionImpl{}, actions[0])
    				assert.IsType(t, core.PatchActionImpl{}, actions[1])
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_test.go

    		// * a transition to the Unknown state. Prior to this fix, a container would make an invalid transition
    		// * from Running->Waiting. This test validates the correct behavior of transitioning from Running->Terminated.
    		{
    			containers: []v1.Container{{Name: "unknown"}},
    			statuses: []*kubecontainer.Status{
    				{
    					Name:  "unknown",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  3. tests/integration/pilot/common/routing.go

    			),
    		},
    	})
    }
    
    // destinationRuleCases contains tests some specific DestinationRule tests.
    func destinationRuleCases(t TrafficContext) {
    	from := t.Apps.A
    	to := t.Apps.C
    	// Validates the config is generated correctly when only idletimeout is specified in DR.
    	t.RunTraffic(TrafficTestCase{
    		name:   "only idletimeout specified in DR",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      SmallVector<int64_t, 4> s0_shape, s1_shape;
      DenseIntElementsAttr s0, s1;
      if (!ExtractInputConstShape(op, s0, s1, s0_shape, s1_shape)) return success();
    
      // If both shape is known const, try to validate shape on them as well.
      SmallVector<int64_t, 4> bcasted_shape;
      if (!OpTrait::util::getBroadcastedShape(s0_shape, s1_shape, bcasted_shape))
        return op.emitOpError() << "requires broadcast compatible shape tensors "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "format": "int64",
              "type": "integer"
            },
            "runAsNonRoot": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  6. src/crypto/x509/x509_test.go

    		priv.Primes[1].Cmp(rsaPrivateKey.Primes[1]) != 0 {
    		t.Errorf("got:%+v want:%+v", priv, rsaPrivateKey)
    	}
    
    	// This private key includes an invalid prime that
    	// rsa.PrivateKey.Validate should reject.
    	data := []byte("0\x16\x02\x00\x02\x02\u007f\x00\x02\x0200\x02\x0200\x02\x02\x00\x01\x02\x02\u007f\x00")
    	if _, err := ParsePKCS1PrivateKey(data); err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__apiregistration.k8s.io__v1_openapi.json

            "properties": {
              "caBundle": {
                "description": "CABundle is a PEM encoded CA bundle which will be used to validate an API server's serving certificate. If unspecified, system trust roots on the apiserver are used.",
                "format": "byte",
                "type": "string",
                "x-kubernetes-list-type": "atomic"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 135.1K bytes
    - Viewed (0)
  8. pkg/scheduler/internal/queue/scheduling_queue_test.go

    				if err := q.Update(logger, oldPod, newPod); err != nil {
    					t.Fatalf("unexpected error from Update: %v", err)
    				}
    
    				var pInfo *framework.QueuedPodInfo
    
    				// validate expected queue
    				if obj, exists, _ := q.podBackoffQ.Get(newQueuedPodInfoForLookup(newPod)); exists {
    					if tt.wantQ != backoffQ {
    						t.Errorf("expected pod %s not to be queued to backoffQ, but it was", newPod.Name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  9. src/database/sql/sql_test.go

    			db.mu.Lock()
    			nc, closing := db.connectionCleanerRunLocked(time.Second)
    			if nc != item.wantNextCheck {
    				t.Errorf("got %v; want %v next check duration", nc, item.wantNextCheck)
    			}
    
    			// Validate freeConn order.
    			var last time.Time
    			for _, c := range db.freeConn {
    				if last.After(c.returnedAt) {
    					t.Error("freeConn is not ordered by returnedAt")
    					break
    				}
    				last = c.returnedAt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Maps.java

      }
    
      static class FilteredEntryMap<K extends @Nullable Object, V extends @Nullable Object>
          extends AbstractFilteredMap<K, V> {
        /**
         * Entries in this set satisfy the predicate, but they don't validate the input to {@code
         * Entry.setValue()}.
         */
        final Set<Entry<K, V>> filteredEntrySet;
    
        FilteredEntryMap(Map<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
Back to top