Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,152 for _reasonx (0.16 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apihelpers/helpers_test.go

    				Reason:             "NotAccepted",
    				Message:            "Not accepted",
    				LastTransitionTime: metav1.Date(2018, 1, 2, 0, 0, 0, 0, time.UTC),
    			},
    			expectedcrdCondition: []apiextensionsv1.CustomResourceDefinitionCondition{
    				{
    					Type:               apiextensionsv1.Established,
    					Status:             apiextensionsv1.ConditionFalse,
    					Reason:             "NotAccepted",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 03 16:49:27 UTC 2019
    - 20.3K bytes
    - Viewed (0)
  2. pkg/scheduler/eventhandlers.go

    		admissionResults = append(admissionResults, AdmissionResult{Name: nodeports.Name, Reason: nodeports.ErrReason})
    		if !includeAllFailures {
    			return admissionResults
    		}
    	}
    	return admissionResults
    }
    
    // AdmissionResult describes the reason why Scheduler can't admit the pod.
    // If the reason is a resource fit one, then AdmissionResult.InsufficientResource includes the details.
    type AdmissionResult struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:04 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.proto

      // +optional
      optional string messageExpression = 3;
    
      // reason provides a machine-readable validation failure reason that is returned to the caller when a request fails this validation rule.
      // The HTTP status code returned to the caller will match the reason of the reason of the first failed validation rule.
      // The currently supported reasons are: "FieldValueInvalid", "FieldValueForbidden", "FieldValueRequired", "FieldValueDuplicate".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/certificates/v1/generated.proto

      // status of the condition, one of True, False, Unknown.
      // Approved, Denied, and Failed conditions may not be "False" or "Unknown".
      optional string status = 6;
    
      // reason indicates a brief reason for the request state
      // +optional
      optional string reason = 2;
    
      // message contains a human readable message with details about the request state
      // +optional
      optional string message = 3;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/verifier/DependencyVerificationConfiguration.java

            private final String version;
            private final String fileName;
            private final boolean regex;
            private final String reason;
    
            TrustCoordinates(@Nullable String group, @Nullable String name, @Nullable String version, @Nullable String fileName, boolean regex, @Nullable String reason) {
                this.group = group;
                this.name = name;
                this.version = version;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 10:13:31 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/internal/reflect/validation/ValidationMessageChecker.groovy

            def config = display(CannotWriteToDir, 'cannot_write_output', spec)
            config.description("is not writable because '${config.dir}' ${config.reason}")
                .reason("Expected '${config.problemDir}' to be a directory but it's a file")
                .solution("Make sure that the '${config.property}' is configured to a directory")
                .render()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:49:03 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/AbstractMutableModuleComponentResolveMetadata.java

            DependencyConstraintImpl(String group, String module, VersionConstraint versionConstraint, String reason, ImmutableAttributes attributes) {
                this.group = group;
                this.module = module;
                this.versionConstraint = versionConstraint;
                this.reason = reason;
                this.attributes = attributes;
            }
    
            @Override
            public String getGroup() {
                return group;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/certificates/v1/generated.proto

      // status of the condition, one of True, False, Unknown.
      // Approved, Denied, and Failed conditions may not be "False" or "Unknown".
      optional string status = 6;
    
      // reason indicates a brief reason for the request state
      // +optional
      optional string reason = 2;
    
      // message contains a human readable message with details about the request state
      // +optional
      optional string message = 3;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/node.yaml

        lastTransitionTime: "2019-07-09T16:22:08Z"
        message: containerd is functioning properly
        reason: FrequentContainerdRestart
        status: "False"
        type: FrequentContainerdRestart
      - lastHeartbeatTime: "2019-09-20T19:32:08Z"
        lastTransitionTime: "2019-07-09T16:22:06Z"
        message: docker overlay2 is functioning properly
        reason: CorruptDockerOverlay2
        status: "False"
        type: CorruptDockerOverlay2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/errors/errors_test.go

    		t.Run(tc.name, func(t *testing.T) {
    			t.Run("by known reason", func(t *testing.T) {
    				err := &StatusError{
    					metav1.Status{
    						Reason: tc.knownReason,
    					},
    				}
    
    				got := tc.fn(err)
    				if !got {
    					t.Errorf("expected reason %s to match", tc.knownReason)
    				}
    			})
    
    			t.Run("by code and unknown reason", func(t *testing.T) {
    				err := &StatusError{
    					metav1.Status{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 19.5K bytes
    - Viewed (0)
Back to top