Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 2,647 for _reason (0.22 sec)

  1. pkg/scheduler/framework/plugins/noderesources/fit.go

    type InsufficientResource struct {
    	ResourceName v1.ResourceName
    	// We explicitly have a parameter for reason to avoid formatting a message on the fly
    	// for common resources, which is expensive for cluster autoscaler simulations.
    	Reason    string
    	Requested int64
    	Used      int64
    	Capacity  int64
    }
    
    // Fits checks if node have enough resources to host the pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/waypoint.status.yaml.golden

        - lastTransitionTime: fake
          message: No errors found
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
          message: No errors found
          reason: NoConflicts
          status: "False"
          type: Conflicted
        - lastTransitionTime: fake
          message: No errors found
          reason: Programmed
          status: "True"
          type: Programmed
        - lastTransitionTime: fake
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 21:30:40 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/internal/reflect/validation/ValidationMessageDisplayConfiguration.groovy

            this.pluginId = pluginId
            this
        }
    
        T description(String description) {
            this.description = description
            this
        }
    
        T reason(String reason) {
            this.reason = reason
            this
        }
    
        T solution(String solution) {
            this.solutions << solution
            this
        }
    
        T property(String name) {
            property = name
            this
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 11:12:24 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/testdata/mcs.status.yaml.golden

          message: No errors found
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
          message: No errors found
          reason: NoConflicts
          status: "False"
          type: Conflicted
        - lastTransitionTime: fake
          message: No errors found
          reason: Programmed
          status: "True"
          type: Programmed
        - lastTransitionTime: fake
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 28 21:44:38 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/alias.status.yaml.golden

          message: No errors found
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
          message: No errors found
          reason: NoConflicts
          status: "False"
          type: Conflicted
        - lastTransitionTime: fake
          message: No errors found
          reason: Programmed
          status: "True"
          type: Programmed
        - lastTransitionTime: fake
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/DaemonUnavailable.java

    /**
     * Returned when the daemon is busy running a different command.
     */
    public class DaemonUnavailable extends Message {
        private final String reason;
    
        public DaemonUnavailable(String reason) {
            this.reason = reason;
        }
    
        public String getReason() {
            return reason;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 965 bytes
    - Viewed (0)
  7. 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)
  8. staging/src/k8s.io/api/certificates/v1/types_swagger_doc_generated.go

    	"status":             "status of the condition, one of True, False, Unknown. Approved, Denied, and Failed conditions may not be \"False\" or \"Unknown\".",
    	"reason":             "reason indicates a brief reason for the request state",
    	"message":            "message contains a human readable message with details about the request state",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/finisher/finisher.go

    					buf := make([]byte, size)
    					buf = buf[:goruntime.Stack(buf, false)]
    					reason = fmt.Sprintf("%v\n%s", reason, buf)
    				}
    
    				// store the panic reason into the result.
    				result.reason = reason
    			}
    
    			// Propagate the result to the parent goroutine
    			resultCh <- result
    		}()
    
    		if object, err := fn(); err != nil {
    			result.err = err
    		} else {
    			result.object = object
    		}
    	}()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 14:20:33 UTC 2021
    - 6K bytes
    - Viewed (0)
  10. cni/pkg/repair/repair_test_helpers.go

    				ExitCode: constants.ValidationErrorCode,
    				Reason:   "Error",
    				Message:  "Died for some reason",
    			},
    		},
    	}
    
    	brokenInitContainerTerminating = corev1.ContainerStatus{
    		Name: constants.ValidationContainerName,
    		State: corev1.ContainerState{
    			Terminated: &corev1.ContainerStateTerminated{
    				ExitCode: constants.ValidationErrorCode,
    				Reason:   "Error",
    				Message:  "Died for some reason",
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 12 17:39:53 UTC 2023
    - 4.7K bytes
    - Viewed (0)
Back to top