Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 51 for Categories (0.5 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. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/annotations/TypeAnnotationMetadataStore.java

    /**
     * A validating metadata store that handles annotations on types and their JavaBeans properties.
     *
     * <p>
     * The store considers property annotations to belong to {@linkplain AnnotationCategory categories}.
     * Each property can have at most one annotation per category.
     * Validation failures with a given type can be visited using {@link TypeAnnotationMetadata#visitValidationFailures(TypeValidationContext)}.
     * </p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 2.6K 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. 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)
  5. 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)
  6. src/sync/cond.go

    // patterns].
    //
    // [the Go memory model]: https://go.dev/ref/mem
    // [Roberto Clapis's series on advanced concurrency patterns]: https://blogtitle.github.io/categories/concurrency/
    // [Bryan Mills's talk on concurrency patterns]: https://drive.google.com/file/d/1nPdvhB0PutEJzdCq5ms6UI58dp50fcAN/view
    type Cond struct {
    	noCopy noCopy
    
    	// L is held while observing or changing the condition
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    	// categories is a list of grouped resources this custom resource belongs to (e.g. 'all').
    	// This is published in API discovery documents, and used by clients to support invocations like
    	// `kubectl get all`.
    	// +optional
    	// +listType=atomic
    	Categories []string `json:"categories,omitempty" protobuf:"bytes,6,rep,name=categories"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  8. pkg/registry/core/service/storage/storage.go

    func (r *REST) ShortNames() []string {
    	return []string{"svc"}
    }
    
    // Categories implements the CategoriesProvider interface. Returns a list of categories a resource is part of.
    func (r *REST) Categories() []string {
    	return []string{"all"}
    }
    
    // Destroy cleans up everything on shutdown.
    func (r *REST) Destroy() {
    	r.Store.Destroy()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:33 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  9. src/internal/cpu/cpu.go

    var MIPS64X struct {
    	_      CacheLinePad
    	HasMSA bool // MIPS SIMD architecture
    	_      CacheLinePad
    }
    
    // For ppc64(le), it is safe to check only for ISA level starting on ISA v3.00,
    // since there are no optional categories. There are some exceptions that also
    // require kernel support to work (darn, scv), so there are feature bits for
    // those as well. The minimum processor requirement is POWER8 (ISA 2.07).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/resolver/KotlinScriptDependenciesResolverTest.kt

    import org.hamcrest.Matcher
    import org.hamcrest.MatcherAssert.assertThat
    import org.junit.Assert.assertSame
    import org.junit.Assert.assertTrue
    import org.junit.Before
    import org.junit.Test
    import org.junit.experimental.categories.Category
    import java.io.File
    import kotlin.reflect.KClass
    import kotlin.script.dependencies.KotlinScriptExternalDependencies
    import kotlin.script.dependencies.ScriptContents
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:12:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top