Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for fieldsFail (0.1 sec)

  1. staging/src/k8s.io/apiserver/pkg/registry/generic/testing/tester.go

    		valid,
    		t.setObjectsForList,
    	)
    }
    
    func (t *Tester) TestWatch(valid runtime.Object, labelsPass, labelsFail []labels.Set, fieldsPass, fieldsFail []fields.Set) {
    	t.tester.TestWatch(
    		valid,
    		t.emitObject,
    		labelsPass,
    		labelsFail,
    		fieldsPass,
    		fieldsFail,
    		// TODO: This should be filtered, the registry should not be aware of this level of detail
    		[]string{"create", "delete"},
    	)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 16:50:16 UTC 2019
    - 4.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    func (t *Tester) TestWatch(
    	valid runtime.Object, emitFn EmitFunc,
    	labelsPass, labelsFail []labels.Set, fieldsPass, fieldsFail []fields.Set, actions []string) {
    	t.testWatchLabels(valid.DeepCopyObject(), emitFn, labelsPass, labelsFail, actions)
    	t.testWatchFields(valid.DeepCopyObject(), emitFn, fieldsPass, fieldsFail, actions)
    }
    
    // =============================================================================
    // Creation tests.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
Back to top