Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 88 for Categories (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/model/annotations/ModifierAnnotationCategory.java

        }
    
        public static ImmutableSet<Class<? extends Annotation>> annotationsOf(ModifierAnnotationCategory... categories) {
            ImmutableSet.Builder<Class<? extends Annotation>> builder = ImmutableSet.builder();
            Arrays.stream(categories)
                .map(category -> category.annotations)
                .forEach(builder::addAll);
            return builder.build();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. pkg/registry/admissionregistration/validatingadmissionpolicy/storage/storage.go

    	sr := &StatusREST{store: &statusStore}
    	return r, sr, 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"}
    }
    
    // New generates a new ValidatingAdmissionPolicy object
    func (r *StatusREST) New() runtime.Object {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 23:43:34 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. pkg/apis/apidiscovery/zz_generated.deepcopy.go

    		copy(*out, *in)
    	}
    	if in.ShortNames != nil {
    		in, out := &in.ShortNames, &out.ShortNames
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.Categories != nil {
    		in, out := &in.Categories, &out.Categories
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.Subresources != nil {
    		in, out := &in.Subresources, &out.Subresources
    		*out = make([]APISubresourceDiscovery, len(*in))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 19 17:27:25 UTC 2022
    - 5.4K bytes
    - Viewed (0)
Back to top