Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 62 for TestList (0.3 sec)

  1. pkg/registry/core/namespace/storage/storage_test.go

    	// note that this ultimately may call validation
    	test.TestGet(validNewNamespace())
    }
    
    func TestList(t *testing.T) {
    	storage, server := newStorage(t)
    	defer server.Terminate(t)
    	defer storage.store.DestroyFunc()
    	test := genericregistrytest.New(t, storage.store).ClusterScope()
    	test.TestList(validNewNamespace())
    }
    
    func TestWatch(t *testing.T) {
    	storage, server := newStorage(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 17 05:13:34 UTC 2022
    - 19.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types_jsonschema.go

    	// Numeric index of array is not supported.
    	// For field name which contains special characters, use `['specialName']` to refer the field name.
    	// e.g. for attribute `foo.34$` appears in a list `testList`, the fieldPath could be set to `.testList['foo.34$']`
    	// +optional
    	FieldPath string `json:"fieldPath,omitempty" protobuf:"bytes,5,opt,name=fieldPath"`
    
    	// optionalOldSelf is used to opt a transition rule into evaluation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:21 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types_jsonschema.go

    	// Numeric index of array is not supported.
    	// For field name which contains special characters, use `['specialName']` to refer the field name.
    	// e.g. for attribute `foo.34$` appears in a list `testList`, the fieldPath could be set to `.testList['foo.34$']`
    	// +optional
    	FieldPath string `json:"fieldPath,omitempty" protobuf:"bytes,5,opt,name=fieldPath"`
    
    	// optionalOldSelf is used to opt a transition rule into evaluation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:21 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  4. test/typeparam/list2.go

    			panic(fmt.Sprintf("elt[%d](%p).next = %p, want %p", i, e, n, next))
    		}
    		if n := e.Next(); n != Next {
    			panic(fmt.Sprintf("elt[%d](%p).Next() = %p, want %p", i, e, n, Next))
    		}
    	}
    }
    
    func TestList() {
    	l := _New[string]()
    	checkListPointers(l, []*(_Element[string]){})
    
    	// Single element list
    	e := l.PushFront("a")
    	checkListPointers(l, []*(_Element[string]){e})
    	l.MoveToFront(e)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. src/container/list/list_test.go

    		if n := e.next; n != next {
    			t.Errorf("elt[%d](%p).next = %p, want %p", i, e, n, next)
    		}
    		if n := e.Next(); n != Next {
    			t.Errorf("elt[%d](%p).Next() = %p, want %p", i, e, n, Next)
    		}
    	}
    }
    
    func TestList(t *testing.T) {
    	l := New()
    	checkListPointers(t, l, []*Element{})
    
    	// Single element list
    	e := l.PushFront("a")
    	checkListPointers(t, l, []*Element{e})
    	l.MoveToFront(e)
    	checkListPointers(t, l, []*Element{e})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 7.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/fieldselector_test.go

    			},
    		}...)
    	}
    
    	t.Run("watch", func(t *testing.T) {
    		testWatch(ctx, t, tcs, dynamicClient)
    	})
    	t.Run("list", func(t *testing.T) {
    		testList(ctx, t, tcs, dynamicClient)
    	})
    	t.Run("deleteCollection", func(t *testing.T) {
    		testDeleteCollection(ctx, t, tcs, dynamicClient)
    	})
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 15:53:03 UTC 2024
    - 27K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/etcd_test.go

    	test := registrytest.New(t, storage.CustomResource.Store)
    	test.TestGet(validNewCustomResource())
    }
    
    func TestList(t *testing.T) {
    	storage, server := newStorage(t)
    	defer server.Terminate(t)
    	defer storage.CustomResource.Store.DestroyFunc()
    	test := registrytest.New(t, storage.CustomResource.Store)
    	test.TestList(validNewCustomResource())
    }
    
    func TestDelete(t *testing.T) {
    	storage, server := newStorage(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/test/testflag.go

    	cf.String("cpu", "", "")
    	cf.StringVar(&testCPUProfile, "cpuprofile", "", "")
    	cf.BoolVar(&testFailFast, "failfast", false, "")
    	cf.StringVar(&testFuzz, "fuzz", "", "")
    	cf.Bool("fullpath", false, "")
    	cf.StringVar(&testList, "list", "", "")
    	cf.StringVar(&testMemProfile, "memprofile", "", "")
    	cf.String("memprofilerate", "", "")
    	cf.StringVar(&testMutexProfile, "mutexprofile", "", "")
    	cf.String("mutexprofilefraction", "", "")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 19:25:24 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.proto

      // Numeric index of array is not supported.
      // For field name which contains special characters, use `['specialName']` to refer the field name.
      // e.g. for attribute `foo.34$` appears in a list `testList`, the fieldPath could be set to `.testList['foo.34$']`
      // +optional
      optional string fieldPath = 5;
    
      // optionalOldSelf is used to opt a transition rule into evaluation
      // even when the object is first created, or if the old object is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.proto

      // Numeric index of array is not supported.
      // For field name which contains special characters, use `['specialName']` to refer the field name.
      // e.g. for attribute `foo.34$` appears in a list `testList`, the fieldPath could be set to `.testList['foo.34$']`
      // +optional
      optional string fieldPath = 5;
    
      // optionalOldSelf is used to opt a transition rule into evaluation
      // even when the object is first created, or if the old object is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
Back to top