Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,721 for reason1 (0.14 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/tasks/UntrackedTask.java

     * That also means that Gradle does not do any optimizations for running the task.
     * For example, such a task will always be out of date and never stored in or loaded from the build cache.
     *
     * <p>There can be different reasons for declaring a task as untracked, for example:
     * <ul>
     *     <li>Some input or output locations contain unreadable files like pipes where Gradle cannot track the content.</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 05 09:15:04 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/insight/DependencyInsightReporter.java

                }
            }
        }
    
        private static DefaultSection buildSelectionReasonSection(ComponentSelectionReason reason) {
            DefaultSection selectionReasons = new DefaultSection("Selection reasons");
            for (ComponentSelectionDescriptor entry : reason.getDescriptions()) {
                ComponentSelectionDescriptorInternal descriptor = (ComponentSelectionDescriptorInternal) entry;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  3. platforms/jvm/language-jvm/src/main/java/org/gradle/api/plugins/JavaResolutionConsistency.java

         * the compile classpath and the runtime classpath, the version from the
         * compile classpath is going to be used.
         *
         * Unless you have a good reason to, this option should be preferred to
         * {@link #useRuntimeClasspathVersions()} for different reasons:
         *
         * <ul>
         *     <li>As code is compiled first against the given dependencies,
         *     it is expected that the versions at runtime would be the same.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/abiutilsaux_test.go

    	regRes := configAMD64.ABIAnalyze(ft, false)
    	regResString := strings.TrimSpace(regRes.String())
    
    	// Check results.
    	reason := difftokens(tokenize(regResString), tokenize(exp.dump))
    	if reason != "" {
    		t.Errorf("\nexpected:\n%s\ngot:\n%s\nreason: %s",
    			strings.TrimSpace(exp.dump), regResString, reason)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 18:34:00 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    	return res
    }
    
    // reasonNames pretty-prints a list of reasons with variable names in
    // case of a test failure because that is easier to read than the full
    // strings.
    func reasonNames(reasons ConflictReasons) string {
    	var varNames []string
    	for _, reason := range reasons {
    		switch reason {
    		case ErrReasonBindConflict:
    			varNames = append(varNames, "ErrReasonBindConflict")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K 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/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/SelectorState.java

            private final String version;
            private final String reason;
    
            private RejectedByRuleReason(String version, @Nullable String reason) {
                this.version = version;
                this.reason = reason;
            }
    
            @Override
            public String getDisplayName() {
                return version + " by rule" + (reason != null ? " because " + reason : "");
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top