Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,159 for reason2 (0.17 sec)

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

    	// If not set, default to use "FieldValueInvalid".
    	// All future added reasons must be accepted by clients when reading this value and unknown reasons should be treated as FieldValueInvalid.
    	// +optional
    	Reason *FieldValueErrorReason `json:"reason,omitempty" protobuf:"bytes,4,opt,name=reason"`
    	// fieldPath represents the field path returned when the validation fails.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:21 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/volumebinding/volume_binding.go

    		return framework.AsStatus(err)
    	}
    
    	podVolumes, reasons, err := pl.Binder.FindPodVolumes(logger, pod, state.podVolumeClaims, node)
    
    	if err != nil {
    		return framework.AsStatus(err)
    	}
    
    	if len(reasons) > 0 {
    		status := framework.NewStatus(framework.UnschedulableAndUnresolvable)
    		for _, reason := range reasons {
    			status.AppendReason(string(reason))
    		}
    		return status
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. 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)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationWritingIntegTest.groovy

          <trusted-artifacts>
             <trust group="dummy" name="artifact"/>
             <trust group="other" name="artifact" reason="sample trust reason"/>
             <trust group="fourth" name="artifact" version="with" file="file.jar" regex="true" reason="another sample reason"/>
             <trust group="third" name="artifact" version="with" file="file.jar" regex="true"/>
          </trusted-artifacts>
       </configuration>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:22 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/certificates/v1/types.go

    	Status v1.ConditionStatus `json:"status" protobuf:"bytes,6,opt,name=status,casttype=k8s.io/api/core/v1.ConditionStatus"`
    	// reason indicates a brief reason for the request state
    	// +optional
    	Reason string `json:"reason,omitempty" protobuf:"bytes,2,opt,name=reason"`
    	// message contains a human readable message with details about the request state
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption.go

    }
    
    // PodEligibleToPreemptOthers returns one bool and one string. The bool
    // indicates whether this pod should be considered for preempting other pods or
    // not. The string includes the reason if this pod isn't eligible.
    // There're several reasons:
    //  1. The pod has a preemptionPolicy of Never.
    //  2. The pod has already preempted other pods and the victims are in their graceful termination period.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 25 19:36:04 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/route-binding.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
    - 19.7K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/testdata/invalid.status.yaml.golden

          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
          message: No errors found
          reason: ResolvedRefs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentReplacementIntegrationTest.groovy

            buildFile << """
                $content
            """
        }
    
        void declaredReplacementWithReason(String rep, String reason) {
            def d = new TestDependency(rep)
            buildFile << """
                dependencies.modules.module('${d.group}:${d.name}') { replacedBy '${d.pointsTo.group}:${d.pointsTo.name}', '$reason' }
            """
        }
    
        void resolvedFiles(String... files) {
            run("resolvedFiles")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/noderesources/fit.go

    	if len(insufficientResources) != 0 {
    		// We will keep all failure reasons.
    		failureReasons := make([]string, 0, len(insufficientResources))
    		for i := range insufficientResources {
    			failureReasons = append(failureReasons, insufficientResources[i].Reason)
    		}
    		return framework.NewStatus(framework.Unschedulable, failureReasons...)
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 20.2K bytes
    - Viewed (0)
Back to top