Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 829 for reasons (0.94 sec)

  1. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/AbstractTestTask.java

        }
    
        /**
         * Returns the reasons for no matching test error.
         *
         * @since 4.5
         */
        @Internal
        protected List<String> getNoMatchingTestErrorReasons() {
            List<String> reasons = new ArrayList<String>();
            if (!getFilter().getIncludePatterns().isEmpty()) {
                reasons.add(getFilter().getIncludePatterns() + "(filter.includeTestsMatching)");
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:49:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesDependencyResolveIntegTest.groovy

                resolve.expectGraph {
                    root(":", ":test:") {
                        edge("org.utils:api:${selector}", "org.utils:${chosenModule}:${chosenVersion}") {
                            byReasons(reasons)
                            maybeRequested()
                        }
                    }
                }
            }
    
            when:
            resetExpectations()
    
            then:
            checkDependencies()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types_jsonschema.go

    	// +optional
    	MessageExpression string
    	// 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: Fri Nov 03 22:23:23 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/Test.java

            List<String> reasons = new ArrayList<>();
            if (!getIncludes().isEmpty()) {
                reasons.add(getIncludes() + "(include rules)");
            }
            if (!getExcludes().isEmpty()) {
                reasons.add(getExcludes() + "(exclude rules)");
            }
            reasons.addAll(super.getNoMatchingTestErrorReasons());
            return reasons;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 42.6K bytes
    - Viewed (0)
Back to top