Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 528 for reason2 (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/validator_test.go

    				}
    				if policyDecision.Reason != validateResult.Decisions[i].Reason {
    					t.Errorf("Expected policy decision reason '%v' but got '%v'", policyDecision.Reason, validateResult.Decisions[i].Reason)
    				}
    			}
    			require.Equal(t, len(tc.auditEvaluations), len(validateResult.AuditAnnotations))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ProjectDependencyResolveIntegrationTest.groovy

                because 'also check dependency reasons'
            }
        }
        task jar(type: Jar) { archiveBaseName = 'a' }
        artifacts { api jar }
    }
    project(":b") {
        configurations {
            compile
        }
        dependencies {
            compile(project(path: ':a', configuration: 'runtime')) {
                because 'can provide a dependency reason for project dependencies too'
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  6. pkg/controller/resourceclaim/controller.go

    			case claimName != nil:
    				key := claimKeyPrefix + pod.Namespace + "/" + *claimName
    				logger.V(6).Info("Process claim", "pod", klog.KObj(pod), "key", key, "reason", reason)
    				ec.queue.Add(key)
    			default:
    				// Nothing to do, claim wasn't generated.
    				logger.V(6).Info("Nothing to do for skipped claim during pod change", "reason", reason)
    			}
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/volumebinding/binder.go

    // ConflictReasons contains all reasons that explain why volume binding is impossible for a node.
    type ConflictReasons []ConflictReason
    
    func (reasons ConflictReasons) Len() int           { return len(reasons) }
    func (reasons ConflictReasons) Less(i, j int) bool { return reasons[i] < reasons[j] }
    func (reasons ConflictReasons) Swap(i, j int)      { reasons[i], reasons[j] = reasons[j], reasons[i] }
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top