Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 370 for reasons (0.19 sec)

  1. pkg/scheduler/framework/interface.go

    	return s.plugin
    }
    
    // Reasons returns reasons of the Status.
    func (s *Status) Reasons() []string {
    	if s.err != nil {
    		return append([]string{s.err.Error()}, s.reasons...)
    	}
    	return s.reasons
    }
    
    // AppendReason appends given reason to the Status.
    func (s *Status) AppendReason(reason string) {
    	s.reasons = append(s.reasons, reason)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  2. 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)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/viewing_debugging_dependencies.adoc

    ==== Selection Reasons
    
    The "Selection reasons" section of the dependency insight report lists the reasons why a dependency was selected.
    Have a look at the table below to understand the meaning of the different terms used:
    
    .Terminology
    [%header%autowidth,compact]
    |===
    | Reason    | Meaning
    
    | (Absent)
    | No reason other than a reference, direct or transitive, was present.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. src/cmd/trace/pprof.go

    	return makeComputePprofFunc(trace.GoWaiting, func(reason string) bool {
    		return reason == "network"
    	})
    }
    
    // computePprofBlock returns a computePprofFunc that generates blocking pprof-like profile
    // (time spent blocked on synchronization primitives).
    func computePprofBlock() computePprofFunc {
    	return makeComputePprofFunc(trace.GoWaiting, func(reason string) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. src/runtime/traceruntime.go

    }
    
    // GoSched emits a GoStop event with a GoSched reason.
    func (tl traceLocker) GoSched() {
    	tl.GoStop(traceGoStopGoSched)
    }
    
    // GoPreempt emits a GoStop event with a GoPreempted reason.
    func (tl traceLocker) GoPreempt() {
    	tl.GoStop(traceGoStopPreempted)
    }
    
    // GoStop emits a GoStop event with the provided reason.
    func (tl traceLocker) GoStop(reason traceGoStopReason) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/dom/operations/overlay/DocumentOverlayTest.kt

        private
        fun prettyPrintResolution(documentResolution: DocumentResolution): String = when (documentResolution) {
            is DocumentResolution.ElementResolution.ElementNotResolved -> "notResolved(${documentResolution.reasons.joinToString()})"
            DocumentResolution.ErrorResolution -> "errorResolution"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/types.go

    		// Otherwise, we will have duplicated reasons in the error message.
    		reasons := make(map[string]int)
    		for _, status := range f.Diagnosis.NodeToStatusMap {
    			for _, reason := range status.Reasons() {
    				reasons[reason]++
    			}
    		}
    
    		sortReasonsHistogram := func() []string {
    			var reasonStrings []string
    			for k, v := range reasons {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  8. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/AbstractGradleViolationRule.groovy

                return Violation.accept(member, "${rejection.getHumanExplanation()}. Reason for accepting this: <b>$acceptationReason</b>")
            } else if (member instanceof JApiMethod && UpgradedProperties.shouldAcceptForUpgradedProperty(member, rejection, context)) {
                seenApiChanges.add(change)
                return Violation.accept(member, "${rejection.getHumanExplanation()}. Reason for accepting this: <b>Upgraded property</b>")
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyManagementResultsAsInputsIntegrationTest.groovy

            where:
            changeDesc                                   | changeArg
            "a new external dependency"                  | "-DexternalDependency=true"
            "changing selection reasons"                 | "-DselectionReason=changed"
            "changing project library variant metadata"  | "-DprojectLibAttrValue=new-value"
            "changing included library variant metadata" | "-DcompositeLibAttrValue=new-value"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginDependenciesResolver.java

    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    /**
     * Assists in resolving the dependencies of a plugin. <strong>Warning:</strong> This is an internal utility class that
     * is only public for technical reasons, it is not part of the public API. In particular, this class can be changed or
     * deleted without prior notice.
     *
     * @since 3.0
     */
    @Named
    @Singleton
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 12 07:49:10 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top