Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 300 for Categories (0.13 sec)

  1. pkg/apis/apidiscovery/types.go

    	// shortNames is a list of suggested short names of the resource.
    	// +listType=set
    	ShortNames []string
    	// categories is a list of the grouped resources this resource belongs to (e.g. 'all').
    	// Clients may use this to simplify acting on multiple resource types at once.
    	// +listType=set
    	Categories []string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 09 18:45:33 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/core_test.go

    		{
    			GroupVersion: "create/v1",
    			APIResources: []metav1.APIResource{
    				{
    					Name:       "jobs",
    					Verbs:      []string{"create", "list", "watch", "delete"},
    					ShortNames: []string{"jz"},
    					Categories: []string{"all"},
    				},
    			},
    		},
    	}
    }
    
    func TestController_DiscoveryError(t *testing.T) {
    	controllerDescriptorMap := map[string]*ControllerDescriptor{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 11:28:01 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationTest.java

    import org.gradle.test.fixtures.maven.MavenFileRepository;
    import org.gradle.test.precondition.PreconditionVerifier;
    import org.junit.After;
    import org.junit.Rule;
    import org.junit.experimental.categories.Category;
    
    import java.io.File;
    import java.util.List;
    
    @IntegrationTest
    @Category(IntegrationTest.class)
    public abstract class AbstractIntegrationTest {
    
        @Rule
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 09:04:13 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. pkg/registry/apps/deployment/storage/storage.go

    func (r *REST) ShortNames() []string {
    	return []string{"deploy"}
    }
    
    // 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 deployment
    type StatusREST struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

            List<String> categories = new ArrayList<>();
            categories.add(category.getCategory());
            categories.addAll(category.getSubcategories());
    
            return new DefaultProblemId(categories.remove(categories.size() - 1), label.getLabel(), toProblemGroup(categories));
        }
    
        private static @Nullable ProblemGroup toProblemGroup(List<String> groupNames) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/zz_generated.deepcopy.go

    	*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)
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    .JUnit Categories
    ====
    include::sample[dir="snippets/testing/junit-categories/kotlin",files="build.gradle.kts[tags=test-categories]"]
    include::sample[dir="snippets/testing/junit-categories/groovy",files="build.gradle[tags=test-categories]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/serializer/ProgressStartEventSerializerTest.groovy

            "the description" | ""                    | ""
            "the description" | ""                    | null
        }
    
        def "can serialize ProgressStartEvent with common categories"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/filters/metrics.go

    	authenticationLatency.WithContext(ctx).WithLabelValues(resultLabel).Observe(authFinish.Sub(authStart).Seconds())
    }
    
    // compressUsername maps all possible usernames onto a small set of categories
    // of usernames. This is done both to limit the cardinality of the
    // authorized_user_requests metric, and to avoid pushing actual usernames in the
    // metric.
    func compressUsername(username string) string {
    	switch {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 20 13:35:55 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/status/naming_controller.go

    		namesAcceptedCondition.Reason = "ListKindConflict"
    		namesAcceptedCondition.Message = err.Error()
    	} else {
    		newNames.ListKind = requestedNames.ListKind
    	}
    
    	newNames.Categories = requestedNames.Categories
    
    	// if we haven't changed the condition, then our names must be good.
    	if namesAcceptedCondition.Status == apiextensionsv1.ConditionUnknown {
    		namesAcceptedCondition.Status = apiextensionsv1.ConditionTrue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.2K bytes
    - Viewed (0)
Back to top