Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 2,726 for reason2 (0.14 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/model/Checksum.java

            this.reason = reason;
            this.hashCode = computeHashcode();
        }
    
        private int computeHashcode() {
            int result = kind.hashCode();
            result = 31 * result + value.hashCode();
            result = 31 * result + (alternatives != null ? alternatives.hashCode() : 0);
            result = 31 * result + (origin != null ? origin.hashCode() : 0);
            result = 31 * result + (reason != null ? reason.hashCode() : 0);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. pkg/kubelet/reason_cache_test.go

    	}
    	if !ok && found {
    		t.Fatalf("corresponding reason info not found")
    	}
    	if !found {
    		return
    	}
    	reason := result.Error
    	message := result.Message
    	if actualReason.Err != reason || actualReason.Message != message {
    		t.Errorf("expected %v %q, got %v %q", reason, message, actualReason.Err, actualReason.Message)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 19 03:33:06 UTC 2017
    - 2.4K 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. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/expiry/DaemonExpirationResult.java

        private final String reason;
    
        public DaemonExpirationResult(DaemonExpirationStatus status, @Nullable String reason) {
            this.status = status;
            this.reason = reason;
        }
    
        public DaemonExpirationStatus getStatus() {
            return status;
        }
    
        public String getReason() {
            return reason;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/apiapproval/apiapproval_controller.go

    			Status:  apiextensionsv1.ConditionFalse,
    			Reason:  "MissingAnnotation",
    			Message: reason,
    		}
    	case apihelpers.APIApproved:
    		return &apiextensionsv1.CustomResourceDefinitionCondition{
    			Type:    apiextensionsv1.KubernetesAPIApprovalPolicyConformant,
    			Status:  apiextensionsv1.ConditionTrue,
    			Reason:  "ApprovedAnnotation",
    			Message: reason,
    		}
    	case apihelpers.APIApprovalBypassed:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/HasFailures.java

        class FailureInfo {
            @Nullable
            final CallInterceptionRequest request;
            final String reason;
    
            public FailureInfo(@Nullable CallInterceptionRequest request, String reason) {
                this.request = request;
                this.reason = reason;
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/DependencyMetadata.java

        /**
         * Returns the reason why this dependency should be selected.
         *
         * @return the reason, or null if no reason is found in metadata.
         *
         * @since 4.6
         */
        @Nullable
        String getReason();
    
        /**
         * Adjust the reason why this dependency should be selected.
         *
         * @param reason modified reason
         *
         * @since 4.6
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 16 13:58:18 UTC 2020
    - 2.9K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/gradle/DependencySpec.groovy

            }
        }
    
        DependencySpec(String g, String m, String v, String reason, Map<String, Object> attributes) {
            group = g
            module = m
            version = v
            this.reason = reason
            this.attributes = attributes
            if (!attributes?.isEmpty()) {
                def category = attributes[Category.CATEGORY_ATTRIBUTE.name]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.4K 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