Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 304 for Categories (0.12 sec)

  1. api/discovery/api__v1.json

          "name": "persistentvolumes/status",
          "namespaced": false,
          "singularName": "",
          "verbs": [
            "get",
            "patch",
            "update"
          ]
        },
        {
          "categories": [
            "all"
          ],
          "kind": "Pod",
          "name": "pods",
          "namespaced": true,
          "shortNames": [
            "po"
          ],
          "singularName": "pod",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/testdata/HEAD/apiextensions.k8s.io.v1.CustomResourceDefinition.json

        "names": {
          "plural": "pluralValue",
          "singular": "singularValue",
          "shortNames": [
            "shortNamesValue"
          ],
          "kind": "kindValue",
          "listKind": "listKindValue",
          "categories": [
            "categoriesValue"
          ]
        },
        "scope": "scopeValue",
        "versions": [
          {
            "name": "nameValue",
            "served": true,
            "storage": true,
            "deprecated": true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. pkg/registry/batch/job/storage/storage.go

    	return &REST{store}, &StatusREST{store: &statusStore}, 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{"all"}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  4. api/discovery/apis__autoscaling__v1.json

    {
      "apiVersion": "v1",
      "groupVersion": "autoscaling/v1",
      "kind": "APIResourceList",
      "resources": [
        {
          "categories": [
            "all"
          ],
          "kind": "HorizontalPodAutoscaler",
          "name": "horizontalpodautoscalers",
          "namespaced": true,
          "shortNames": [
            "hpa"
          ],
          "singularName": "horizontalpodautoscaler",
          "storageVersionHash": "qwQve8ut294=",
          "verbs": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 816 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/testing/junit-categories/kotlin/src/test/java/org/gradle/junit/CategorizedJUnitTest.java

    package org.gradle.junit;
    
    import org.junit.Test;
    import org.junit.experimental.categories.Category;
    
    public class CategorizedJUnitTest {
    
        @Category(CategoryA.class)
        @Test
        public void a() {
            System.out.println("hello from CategorizedTest a.");
        }
    
        @Category(CategoryB.class)
        @Test
        public void b() {
            System.out.println("hello from CategorizedTest b.");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 402 bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassExecutor.java

                failed = true;
            } catch (NoSuchMethodException e) {
                failed = true;
            }
    
            if (failed) {
                throw new GradleException("JUnit Categories defined but declared JUnit version does not support Categories.");
            }
        }
    
        private boolean allTestsFiltered(Runner runner, List<Filter> filters) {
            LinkedList<Description> queue = new LinkedList<Description>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  7. api/discovery/apis__autoscaling__v2.json

    {
      "apiVersion": "v1",
      "groupVersion": "autoscaling/v2",
      "kind": "APIResourceList",
      "resources": [
        {
          "categories": [
            "all"
          ],
          "kind": "HorizontalPodAutoscaler",
          "name": "horizontalpodautoscalers",
          "namespaced": true,
          "shortNames": [
            "hpa"
          ],
          "singularName": "horizontalpodautoscaler",
          "storageVersionHash": "qwQve8ut294=",
          "verbs": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 816 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/inspect.adoc

    If you find that something in Gradle itself slows down your build, don't hesitate to send a profiler snapshot to ******@****.***.
    
    == Performance categories
    
    Both build scans and local profile reports break down build execution into the same categories.
    The following sections explain those categories.
    
    === Startup
    
    This reflects Gradle’s initialization time, which consists mostly of:
    
    - JVM initialization and class loading
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apidiscovery/v2/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: Fri Jan 19 16:40:14 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/JUnit4CategoriesOrTagsCoverageIntegrationTest.groovy

    class JUnit4CategoriesOrTagsCoverageIntegrationTest extends AbstractJUnit4CategoriesOrTagsCoverageIntegrationTest implements JUnit4MultiVersionTest {
        String singularCategoryOrTagName = "category"
        String pluralCategoryOrTagName = "categories"
    
        @Override
        boolean supportsCategoryOnNestedClass() {
            return !(version in ['4.10', '4.11', '4.12'])
        }
    
        def 'reports unloadable #type'() {
            given:
            testSources.with {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 9.7K bytes
    - Viewed (0)
Back to top