Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 207 for Interpret (0.19 sec)

  1. common-protos/k8s.io/api/discovery/v1/generated.proto

    message EndpointConditions {
      // ready indicates that this endpoint is prepared to receive traffic,
      // according to whatever system is managing the endpoint. A nil value
      // indicates an unknown state. In most cases consumers should interpret this
      // unknown state as ready. For compatibility reasons, ready should never be
      // "true" for terminating endpoints, except when the normal readiness
      // behavior is being explicitly overridden, for example when the associated
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/discovery/v1beta1/generated.proto

    message EndpointConditions {
      // ready indicates that this endpoint is prepared to receive traffic,
      // according to whatever system is managing the endpoint. A nil value
      // indicates an unknown state. In most cases consumers should interpret this
      // unknown state as ready. For compatibility reasons, ready should never be
      // "true" for terminating endpoints.
      // +optional
      optional bool ready = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/imagepolicy/v1alpha1/generated.proto

      // Annotations is a list of key-value pairs extracted from the Pod's annotations.
      // It only includes keys which match the pattern `*.image-policy.k8s.io/*`.
      // It is up to each webhook backend to determine how to interpret these annotations, if at all.
      // +optional
      map<string, string> annotations = 2;
    
      // Namespace is the namespace the pod is being created in.
      // +optional
      optional string namespace = 3;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/imagepolicy/v1alpha1/types_swagger_doc_generated.go

    	"annotations": "Annotations is a list of key-value pairs extracted from the Pod's annotations. It only includes keys which match the pattern `*.image-policy.k8s.io/*`. It is up to each webhook backend to determine how to interpret these annotations, if at all.",
    	"namespace":   "Namespace is the namespace the pod is being created in.",
    }
    
    func (ImageReviewSpec) SwaggerDoc() map[string]string {
    	return map_ImageReviewSpec
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/imagepolicy/v1alpha1/types.go

    	// Annotations is a list of key-value pairs extracted from the Pod's annotations.
    	// It only includes keys which match the pattern `*.image-policy.k8s.io/*`.
    	// It is up to each webhook backend to determine how to interpret these annotations, if at all.
    	// +optional
    	Annotations map[string]string `json:"annotations,omitempty" protobuf:"bytes,2,rep,name=annotations"`
    	// Namespace is the namespace the pod is being created in.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/discovery/v1/generated.proto

    message EndpointConditions {
      // ready indicates that this endpoint is prepared to receive traffic,
      // according to whatever system is managing the endpoint. A nil value
      // indicates an unknown state. In most cases consumers should interpret this
      // unknown state as ready. For compatibility reasons, ready should never be
      // "true" for terminating endpoints, except when the normal readiness
      // behavior is being explicitly overridden, for example when the associated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/gover/version.go

    	// Since we can't tell which, we have to assume it's very old.
    	// The semantics of the go.mod changed at Go 1.17 to support
    	// graph pruning. If see a go.mod without a go line, we have to
    	// assume Go 1.16 so that we interpret the requirements correctly.
    	// Note that this default must stay at Go 1.16; it cannot be moved forward.
    	DefaultGoModVersion = "1.16"
    
    	// DefaultGoWorkVersion is the Go version to assume for go.work files
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. pkg/bootstrap/instance.go

    		return "", err
    	}
    
    	return outputFilePath, err
    }
    
    func configFile(config string, templateFile string) string {
    	suffix := "json"
    	// Envoy will interpret the file extension to determine the type. We should detect yaml inputs
    	if strings.HasSuffix(templateFile, ".yaml.tmpl") || strings.HasSuffix(templateFile, ".yaml") {
    		suffix = "yaml"
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/discovery/v1beta1/types.go

    	// ready indicates that this endpoint is prepared to receive traffic,
    	// according to whatever system is managing the endpoint. A nil value
    	// indicates an unknown state. In most cases consumers should interpret this
    	// unknown state as ready. For compatibility reasons, ready should never be
    	// "true" for terminating endpoints.
    	// +optional
    	Ready *bool `json:"ready,omitempty" protobuf:"bytes,1,name=ready"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:26:19 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/EvaluationFailureMessageGenerator.kt

    object EvaluationFailureMessageGenerator {
        fun generateFailureMessage(
            scriptSourceIdentifier: String,
            stageFailures: List<StageFailure>
        ): String = buildString {
            appendLine("Failed to interpret the declarative DSL file '$scriptSourceIdentifier':")
            stageFailures.forEach { stageFailure ->
                when (stageFailure) {
                    is StageFailure.FailuresInLanguageTree -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top