Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 304 for Categories (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/api/apidiscovery/v2/generated.pb.go

    				i = encodeVarintGenerated(dAtA, i, uint64(size))
    			}
    			i--
    			dAtA[i] = 0x42
    		}
    	}
    	if len(m.Categories) > 0 {
    		for iNdEx := len(m.Categories) - 1; iNdEx >= 0; iNdEx-- {
    			i -= len(m.Categories[iNdEx])
    			copy(dAtA[i:], m.Categories[iNdEx])
    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.Categories[iNdEx])))
    			i--
    			dAtA[i] = 0x3a
    		}
    	}
    	if len(m.ShortNames) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apidiscovery/v2beta1/generated.pb.go

    				i = encodeVarintGenerated(dAtA, i, uint64(size))
    			}
    			i--
    			dAtA[i] = 0x42
    		}
    	}
    	if len(m.Categories) > 0 {
    		for iNdEx := len(m.Categories) - 1; iNdEx >= 0; iNdEx-- {
    			i -= len(m.Categories[iNdEx])
    			copy(dAtA[i:], m.Categories[iNdEx])
    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.Categories[iNdEx])))
    			i--
    			dAtA[i] = 0x3a
    		}
    	}
    	if len(m.ShortNames) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  9. pkg/registry/core/replicationcontroller/storage/storage.go

    func (r *REST) ShortNames() []string {
    	return []string{"rc"}
    }
    
    // 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 replication controller
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 12K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testsuites/JUnitOptionsIntegrationTest.groovy

    public class IncludedTest {
        @Test
        public void testOK() {
        }
    }
    """
            sourcePath.file("com/example/ExcludedTest.java") << """
    package com.example;
    import org.junit.Test;
    import org.junit.experimental.categories.Category;
    
    @Category(Exclude.class)
    public class ExcludedTest {
        @Test
        public void testOK() {
        }
    }
    """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top