Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 53 for Categories (0.14 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/etcd_test.go

    	defer server.Terminate(t)
    	defer storage.CustomResource.Store.DestroyFunc()
    
    	expected := []string{"all"}
    	actual := storage.CustomResource.Categories()
    	ok := reflect.DeepEqual(actual, expected)
    	if !ok {
    		t.Errorf("categories are not equal. expected = %v actual = %v", expected, actual)
    	}
    }
    
    func TestColumns(t *testing.T) {
    	storage, server := newStorage(t)
    	defer server.Terminate(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  2. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/java/SamplesJavaTestingIntegrationTest.groovy

            getStandardTestReportDir(dslDir, "util", "").file("index.html").assertDoesNotExist()
    
            where:
            dsl << ['groovy', 'kotlin']
        }
    
        @UsesSample("testing/junit-categories")
        def "can filter tests by JUnit category with #dsl dsl"() {
            given:
            TestFile dslDir = sample.dir.file(dsl)
            executer.inDirectory(dslDir)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/inline/inlheur/scoring.go

    type scoreAdjustTyp uint
    
    // These constants capture the various ways in which the inliner's
    // scoring phase can adjust a callsite score based on heuristics. They
    // fall broadly into three categories:
    //
    // 1) adjustments based solely on the callsite context (ex: call
    // appears on panic path)
    //
    // 2) adjustments that take into account specific interesting values
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/dependency_management_terminology.adoc

    The most widely-used versioning strategy is link:https://semver.org/[semantic versioning].
    
    [[sub::terminology_platform]]
    == Platform
    
    A platform is a set of modules aimed to be used together. There are different categories of platforms, corresponding to different use cases:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/generated.proto

      // +optional
      optional string resourceVersion = 7;
    
      // +optional
      optional string subresource = 8;
    }
    
    // Policy defines the configuration of audit logging, and the rules for how different request
    // categories are logged.
    message Policy {
      // ObjectMeta is included for interoperability with API infrastructure.
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__authentication.k8s.io__v1alpha1_openapi.json

          },
          "io.k8s.apimachinery.pkg.apis.meta.v1.APIResource": {
            "description": "APIResource specifies the name of a resource and whether it is namespaced.",
            "properties": {
              "categories": {
                "description": "categories is a list of the grouped resources this resource belongs to (e.g. 'all')",
                "items": {
                  "default": "",
                  "type": "string"
                },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 31.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/publishing_gradle_plugins.adoc

    <6> Set the plugin name in human-readable form.
    <7> Set a description to be displayed on the portal. It provides useful information to people who want to use your plugin.
    <8> Specifies the categories your plugin covers. It makes the plugin more likely to be discovered by people needing its functionality.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 18:40:53 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__authentication.k8s.io__v1beta1_openapi.json

          },
          "io.k8s.apimachinery.pkg.apis.meta.v1.APIResource": {
            "description": "APIResource specifies the name of a resource and whether it is namespaced.",
            "properties": {
              "categories": {
                "description": "categories is a list of the grouped resources this resource belongs to (e.g. 'all')",
                "items": {
                  "default": "",
                  "type": "string"
                },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 31.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/more_about_tasks.adoc

    ------------------------------------------------------------
    
    My app build tasks
    ------------------
    tasksAll - Show additional tasks.
    ----
    
    [[sec:task_categories]]
    == Task categories
    
    Gradle distinguishes between two categories of tasks:
    
    1. *Lifecycle tasks*
    2. *Actionable tasks*
    
    **Lifecycle tasks** define targets you can call, such as `:build` your project.
    Lifecycle tasks do not provide Gradle with actions.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/sys/cpu/cpu.go

    // If the current platform is not ppc64/ppc64le then all feature flags are false.
    //
    // For ppc64/ppc64le, 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 struct is padded to avoid false sharing.
    var PPC64 struct {
    	_        CacheLinePad
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top