Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 300 for Categories (0.2 sec)

  1. src/cmd/cgo/internal/testplugin/testdata/issue62430/main.go

    		panic(err)
    	}
    	s, err := p.Lookup("F")
    	if err != nil {
    		panic(err)
    	}
    
    	f := s.(func(string) *unicode.RangeTable)
    	if f("C") == nil {
    		panic("unicode.Categories not properly initialized")
    	} else {
    		fmt.Println("unicode.Categories properly initialized")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 13:18:51 UTC 2023
    - 804 bytes
    - Viewed (0)
  2. pkg/registry/admissionregistration/validatingadmissionpolicybinding/storage/storage.go

    		return nil, err
    	}
    	r.Store = store
    	return r, nil
    }
    
    // Implement CategoriesProvider
    var _ rest.CategoriesProvider = &REST{}
    
    // Categories implements the CategoriesProvider interface. Returns a list of categories a resource is part of.
    func (r *REST) Categories() []string {
    	return []string{"api-extensions"}
    }
    
    type PolicyGetter interface {
    	// GetValidatingAdmissionPolicy returns a GetValidatingAdmissionPolicy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 10:11:16 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/etcd.go

    type REST struct {
    	*genericregistry.Store
    	categories []string
    }
    
    // Implement CategoriesProvider
    var _ rest.CategoriesProvider = &REST{}
    
    // Categories implements the CategoriesProvider interface. Returns a list of categories a resource is part of.
    func (r *REST) Categories() []string {
    	return r.categories
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  4. pkg/registry/apps/daemonset/storage/storage.go

    func (r *REST) ShortNames() []string {
    	return []string{"ds"}
    }
    
    var _ rest.CategoriesProvider = &REST{}
    
    // Categories implements the CategoriesProvider interface. Returns a list of categories a resource is part of.
    func (r *REST) Categories() []string {
    	return []string{"all"}
    }
    
    // StatusREST implements the REST endpoint for changing the status of a daemonset
    type StatusREST struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  5. pkg/registry/batch/cronjob/storage/storage.go

    	return &REST{store}, &StatusREST{store: &statusStore}, nil
    }
    
    var _ rest.CategoriesProvider = &REST{}
    var _ rest.ShortNamesProvider = &REST{}
    
    // Categories implements the CategoriesProvider interface. Returns a list of categories a resource is part of.
    func (r *REST) Categories() []string {
    	return []string{"all"}
    }
    
    // ShortNames implements the ShortNamesProvider interface. Returns a list of short names for a resource.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/junit/JUnitTestFramework.java

                    LOGGER.warn("The categories " + allCategories + " are both included and excluded.  " +
                        "This will result in the categories being excluded, which may not be what was intended. " +
                        "Please either include or exclude the categories but not both.");
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6K bytes
    - Viewed (0)
  7. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/Flaky.groovy

     *   recognized by `JUnitPlatformOptions.includeTags/excludeTags` (<a href="https://junit.org/junit5/docs/current/user-guide/#migrating-from-junit4-categories-support">Categories Support</a>).
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target([ElementType.TYPE, ElementType.METHOD])
    @Tag("org.gradle.test.fixtures.Flaky")
    @interface Flaky {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. pkg/registry/autoscaling/horizontalpodautoscaler/storage/storage.go

    func (r *REST) ShortNames() []string {
    	return []string{"hpa"}
    }
    
    // Implement CategoriesProvider
    var _ rest.CategoriesProvider = &REST{}
    
    // Categories implements the CategoriesProvider interface. Returns a list of categories a resource is part of.
    func (r *REST) Categories() []string {
    	return []string{"all"}
    }
    
    // StatusREST implements the REST endpoint for changing the status of a daemonset
    type StatusREST struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testplugin/testdata/issue62430/plugin.go

    package main
    
    import (
    	"unicode"
    )
    
    func F(s string) *unicode.RangeTable {
    	return unicode.Categories[s]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 13:18:51 UTC 2023
    - 124 bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/testdata/HEAD/apiextensions.k8s.io.v1.CustomResourceDefinition.yaml

              namespace: namespaceValue
              path: pathValue
              port: 4
            url: urlValue
          conversionReviewVersions:
          - conversionReviewVersionsValue
      group: groupValue
      names:
        categories:
        - categoriesValue
        kind: kindValue
        listKind: listKindValue
        plural: pluralValue
        shortNames:
        - shortNamesValue
        singular: singularValue
      preserveUnknownFields: true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top