Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 182 for Categories (0.2 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/apidiscovery.k8s.io.v2beta1.APIGroupDiscovery.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/testdata/HEAD/apiextensions.k8s.io.v1beta1.CustomResourceDefinition.yaml

          caBundle: Ag==
          service:
            name: nameValue
            namespace: namespaceValue
            path: pathValue
            port: 4
          url: urlValue
      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
    - 6.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.29.0/apidiscovery.k8s.io.v2beta1.APIGroupDiscovery.yaml

        kind: kindValue
        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    versions:
    - freshness: freshnessValue
      resources:
      - categories:
        - categoriesValue
        resource: resourceValue
        responseKind:
          group: groupValue
          kind: kindValue
          version: versionValue
        scope: scopeValue
        shortNames:
        - shortNamesValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/ProblemCategory.java

        /**
         * The namespace.
         *
         * @return The namespace.
         */
        String getNamespace();
    
        /**
         * The main category.
         *
         * @return The main categories.
         */
        String getCategory();
    
        /**
         * The optional subcategories.
         *
         * @return The subcategories.
         */
        List<String> getSubcategories();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 16:23:23 UTC 2023
    - 1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apidiscovery/v2beta1/types.go

    	ShortNames []string `json:"shortNames,omitempty" protobuf:"bytes,6,rep,name=shortNames"`
    	// 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 `json:"categories,omitempty" protobuf:"bytes,7,rep,name=categories"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 09 18:45:33 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/serializer/ProgressStartEventSerializer.java

            if ((BUILD_OP_CATEGORY_MASK & maxCategory.ordinal()) != maxCategory.ordinal()) {
                // Too many build operation categories to fit into the flags assigned to encode the category - so you will need to adjust the mask above
                throw new IllegalArgumentException("Too many categories to fit into flags.");
            }
        }
    
        @Override
        public void write(Encoder encoder, ProgressStartEvent event) throws Exception {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  7. src/unicode/graphic.go

    var PrintRanges = []*RangeTable{
    	L, M, N, P, S,
    }
    
    // IsGraphic reports whether the rune is defined as a Graphic by Unicode.
    // Such characters include letters, marks, numbers, punctuation, symbols, and
    // spaces, from categories [L], [M], [N], [P], [S], [Zs].
    func IsGraphic(r rune) bool {
    	// We convert to uint32 to avoid the extra test for negative,
    	// and in the index we convert to uint8 to avoid the range check.
    	if uint32(r) <= MaxLatin1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  8. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/SamplesJUnitIntegrationTest.groovy

    import org.junit.Rule
    import org.junit.Test
    
    class SamplesJUnitIntegrationTest extends AbstractIntegrationTest {
    
        @Rule
        public final Sample sample = new Sample(testDirectoryProvider, 'testing/junit-categories')
    
        @Before
        void setup() {
            executer.withRepositoryMirrors()
        }
    
        @Test
        void categoriesSample() {
            TestFile projectDir = sample.dir.file("groovy")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    static java.util.Set nullableClassToSet(Class); } org/junit/experimental/categories/Categories$IncludeCategory.class package org.junit.experimental.categories; public abstract interface Categories$IncludeCategory extends annotation.Annotation { public abstract Class[] value(); public abstract boolean matchAny(); } org/junit/experimental/categories/IncludeCategories$IncludesAny.class package org.junit.experimental.categories; synchronized class IncludeCategories$IncludesAny extends Categories$CategoryFilter...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 373.7K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4TestTaskIntegrationTest.groovy

            return testClass('MyTest')
        }
    
        @Override
        String testClass(String className) {
            return """
                import org.junit.*;
                import org.junit.experimental.categories.Category;
    
                public class $className {
                   @Test
                   @Category(Fast.class)
                   public void fastTest() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top