Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 812 for describeTo (0.55 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types.go

    	// Deprecated: Please use `Versions`.
    	Version string
    	// Names are the names used to describe this custom resource
    	Names CustomResourceDefinitionNames
    	// Scope indicates whether this resource is cluster or namespace scoped.  Default is namespaced
    	Scope ResourceScope
    	// Validation describes the validation methods for CustomResources
    	// Optional, the global validation schema for all versions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/autoscaling/v2beta1/generated.proto

      // +optional
      optional HorizontalPodAutoscalerStatus status = 3;
    }
    
    // HorizontalPodAutoscalerCondition describes the state of
    // a HorizontalPodAutoscaler at a certain point.
    message HorizontalPodAutoscalerCondition {
      // type describes the current condition
      optional string type = 1;
    
      // status is the status of the condition (True, False, Unknown)
      optional string status = 2;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/upgrade/compute.go

    	return !sameVersionFound
    }
    
    // ClusterState describes the state of certain versions for a cluster during an upgrade
    type ClusterState struct {
    	// KubeVersion describes the version of latest Kubernetes API Server in the cluster.
    	KubeVersion string
    	// DNSVersion describes the version of the DNS add-on.
    	DNSVersion string
    	// KubeadmVersion describes the version of the kubeadm CLI
    	KubeadmVersion string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/caching/internal/controller/DefaultBuildCacheControllerFactoryTest.groovy

            @Override
            BuildCacheService createBuildCacheService(TestRemoteBuildCache configuration, Describer describer) {
                def chain = describer.type("remote")
                if (configuration.value != null) {
                    chain.config("value", configuration.value)
                }
                new TestRemoteBuildCacheService()
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:46:34 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    * The configurations in _blue_ are internal to the component, for its own use
    
    And the next graph describes the test configurations setup:
    
    image::java-library-ignore-deprecated-test.png[]
    
    The role of each configuration is described in the following tables:
    
    .Java Library plugin - configurations used to declare dependencies
    [%header%autowidth,compact]
    |===
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/schema-extra-example.md

    That extra info will be added as-is to the output **JSON Schema** for that model, and it will be used in the API docs.
    
    === "Pydantic v2"
    
        In Pydantic version 2, you would use the attribute `model_config`, that takes a `dict` as described in <a href="https://docs.pydantic.dev/latest/usage/model_config/" class="external-link" target="_blank">Pydantic's docs: Model Config</a>.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/networking/v1/generated.proto

      // paths is a collection of paths that map requests to backends.
      // +listType=atomic
      repeated HTTPIngressPath paths = 1;
    }
    
    // IPBlock describes a particular CIDR (Ex. "192.168.1.0/24","2001:db8::/64") that is allowed
    // to the pods matched by a NetworkPolicySpec's podSelector. The except entry describes CIDRs
    // that should not be included within this rule.
    message IPBlock {
      // cidr is a string representing the IPBlock
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.proto

      optional .k8s.io.apimachinery.pkg.apis.meta.v1.Status result = 3;
    }
    
    // ConversionReview describes a conversion request/response.
    message ConversionReview {
      // request describes the attributes for the conversion request.
      // +optional
      optional ConversionRequest request = 1;
    
      // response describes the attributes for the conversion response.
      // +optional
      optional ConversionResponse response = 2;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/file/FilePermissions.java

     * </ul>
     *
     * @since 8.3
     */
    public interface FilePermissions {
    
        /**
         * Describes what actions the owner of the file can perform on the file/directory.
         * <p>
         * For further details about possible actions see {@link UserClassFilePermissions}.
         */
        UserClassFilePermissions getUser();
    
        /**
         * Describes what actions a user, who is a member of the group that the file/directory belongs to,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/caching/internal/services/AbstractBuildCacheControllerFactory.java

            Describer describer = new Describer();
            S service = Cast.uncheckedNonnullCast(factory.createBuildCacheService(configuration, describer));
            ImmutableSortedMap<String, String> config = ImmutableSortedMap.copyOf(describer.configParams);
            BuildCacheDescription description = new BuildCacheDescription(configuration, describer.type, config);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 17:08:26 UTC 2024
    - 13.2K bytes
    - Viewed (0)
Back to top