Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 309 for NewTest (0.22 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/fixture/TestNGCoverage.groovy

        private static final Set<String> VERSIONS = [
            '5.12.1', // Newest version without TestNG#setConfigFailurePolicy method (Added in 5.13)
            FIXED_ILLEGAL_ACCESS,
            BEFORE_BROKEN_PRESERVE_ORDER,
            FIXED_BROKEN_PRESERVE_ORDER,
            BROKEN_ICLASS_LISTENER,
            FIXED_ICLASS_LISTENER,
            NEWEST
        ]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. pkg/registry/rbac/clusterrole/storage/storage.go

    	"k8s.io/kubernetes/pkg/registry/rbac/clusterrole"
    )
    
    // REST implements a RESTStorage for ClusterRole
    type REST struct {
    	*genericregistry.Store
    }
    
    // NewREST returns a RESTStorage object that will work against ClusterRole objects.
    func NewREST(optsGetter generic.RESTOptionsGetter) (*REST, error) {
    	store := &genericregistry.Store{
    		NewFunc:                   func() runtime.Object { return &rbac.ClusterRole{} },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:13 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  3. pkg/registry/rbac/role/storage/storage.go

    	"k8s.io/kubernetes/pkg/registry/rbac/role"
    )
    
    // REST implements a RESTStorage for Role
    type REST struct {
    	*genericregistry.Store
    }
    
    // NewREST returns a RESTStorage object that will work against Role objects.
    func NewREST(optsGetter generic.RESTOptionsGetter) (*REST, error) {
    	store := &genericregistry.Store{
    		NewFunc:                   func() runtime.Object { return &rbac.Role{} },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:13 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  4. pkg/registry/core/podtemplate/storage/storage.go

    	"k8s.io/kubernetes/pkg/registry/core/podtemplate"
    )
    
    // REST implements a RESTStorage for pod templates.
    type REST struct {
    	*genericregistry.Store
    }
    
    // NewREST returns a RESTStorage object that will work against pod templates.
    func NewREST(optsGetter generic.RESTOptionsGetter) (*REST, error) {
    	store := &genericregistry.Store{
    		NewFunc:                   func() runtime.Object { return &api.PodTemplate{} },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:13 UTC 2022
    - 2K bytes
    - Viewed (0)
  5. pkg/registry/coordination/lease/storage/storage.go

    	"k8s.io/kubernetes/pkg/registry/coordination/lease"
    )
    
    // REST implements a RESTStorage for leases against etcd
    type REST struct {
    	*genericregistry.Store
    }
    
    // NewREST returns a RESTStorage object that will work against leases.
    func NewREST(optsGetter generic.RESTOptionsGetter) (*REST, error) {
    	store := &genericregistry.Store{
    		NewFunc:                   func() runtime.Object { return &coordinationapi.Lease{} },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:13 UTC 2022
    - 2K bytes
    - Viewed (0)
  6. pkg/registry/resource/resourceclass/storage/storage.go

    	"k8s.io/kubernetes/pkg/registry/resource/resourceclass"
    )
    
    // REST implements a RESTStorage for ResourceClass.
    type REST struct {
    	*genericregistry.Store
    }
    
    // NewREST returns a RESTStorage object that will work against ResourceClass.
    func NewREST(optsGetter generic.RESTOptionsGetter) (*REST, error) {
    	store := &genericregistry.Store{
    		NewFunc:                   func() runtime.Object { return &resource.ResourceClass{} },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 10:11:16 UTC 2022
    - 2K bytes
    - Viewed (0)
  7. pkg/registry/core/secret/storage/storage.go

    	"k8s.io/kubernetes/pkg/registry/core/secret"
    )
    
    // REST defines the RESTStorage object that will work against secrets.
    type REST struct {
    	*genericregistry.Store
    }
    
    // NewREST returns a RESTStorage object that will work against secrets.
    func NewREST(optsGetter generic.RESTOptionsGetter) (*REST, error) {
    	store := &genericregistry.Store{
    		NewFunc:                   func() runtime.Object { return &api.Secret{} },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 20:38:11 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. pkg/registry/networking/ingressclass/storage/storage.go

    )
    
    // REST implements a RESTStorage for replication controllers
    type REST struct {
    	*genericregistry.Store
    }
    
    // NewREST returns a RESTStorage object that will work against replication controllers.
    func NewREST(optsGetter generic.RESTOptionsGetter) (*REST, error) {
    	store := &genericregistry.Store{
    		NewFunc:                   func() runtime.Object { return &networking.IngressClass{} },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:13 UTC 2022
    - 2K bytes
    - Viewed (0)
  9. pkg/registry/rbac/rolebinding/storage/storage.go

    	"k8s.io/kubernetes/pkg/registry/rbac/rolebinding"
    )
    
    // REST implements a RESTStorage for RoleBinding
    type REST struct {
    	*genericregistry.Store
    }
    
    // NewREST returns a RESTStorage object that will work against RoleBinding objects.
    func NewREST(optsGetter generic.RESTOptionsGetter) (*REST, error) {
    	store := &genericregistry.Store{
    		NewFunc:                   func() runtime.Object { return &rbac.RoleBinding{} },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:13 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGUpToDateCheckIntegrationTest.groovy

            buildScript """
                apply plugin: "java"
                ${mavenCentralRepository()}
                testing {
                    suites {
                        test {
                            useTestNG('${TestNGCoverage.NEWEST}')
                            targets {
                                all {
                                    testTask.configure {
                                        options {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 18 12:30:10 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top