Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,151 for _reason (0.17 sec)

  1. 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)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AbstractResolveCachingStateStep.java

        private static void logDisabledReasons(List<CachingDisabledReason> reasons, UnitOfWork work) {
            if (LOGGER.isInfoEnabled()) {
                Formatter formatter = new Formatter();
                formatter.format("Caching disabled for %s because:", work.getDisplayName());
                for (CachingDisabledReason reason : reasons) {
                    formatter.format("%n  %s", reason.getMessage());
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/PublishedRichVersionConstraintsIntegrationTest.groovy

            repository {
                'org:foo' {
                    '15'()
                    '17'()
                }
                'org:bar:1.0' {
                    dependsOn(group: 'org', artifact: 'foo', version: '15', strictly: '15', reason: 'what not')
                }
            }
    
            buildFile << """
                dependencies {
                    conf 'org:foo:17'
                    conf 'org:bar:1.0'
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/AbstractDependencyMetadataRulesIntegrationTest.groovy

                            notRequested()
                            byReason('can set a custom reason in a rule')
                        }
                    }
                }
            }
    
        }
    
        def "a rule can provide a custom selection reason thanks to dependency constraint reason"() {
            given:
            repository {
                'org.test:moduleA:1.0' {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 36.5K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/caching/CachingDisabledReasonCategory.java

     * limitations under the License.
     */
    
    package org.gradle.internal.execution.caching;
    
    public enum CachingDisabledReasonCategory {
        /**
         * Reason for disabled caching is not known.
         */
        UNKNOWN,
    
        /**
         * Caching has not been enabled for the build.
         */
        BUILD_CACHE_DISABLED,
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ProjectDependencyResolveIntegrationTest.groovy

                        notRequested()
                        byReason('can provide a dependency reason for project dependencies too')
                        variant('runtime')
                        module('org.other:externalA:1.2') {
                            notRequested()
                            byReason('also check dependency reasons')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/TaskExecutionResultCrossVersionSpec.groovy

        def "reports no execution reasons for skipped tasks"() {
            given:
            buildFile << """
                task disabledTask {
                    enabled = false
                }
            """
    
            when:
            runBuild('disabledTask')
    
            then:
            taskSkippedResult(':disabledTask')
        }
    
        def "reports execution reason for executed task without declared outputs"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultCapabilitiesResolution.java

                if (cand.getVariantName().equals(resolutionDetails.selected.getVariantName())) {
                    cand.select();
                    String reason = resolutionDetails.reason;
                    if (reason != null) {
                        cand.byReason(Describables.of("On capability", version.getCapabilityId(), reason));
                    }
                } else {
                    cand.evict();
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/resolve/GenerateGraphTask.groovy

                "$it.name=${attributes.getAttribute(it as Attribute<Object>)}"
            }.sort().join(',')
        }
    
        protected String formatReason(ComponentSelectionReasonInternal reason) {
            def reasons = reason.descriptions.collect {
                def message
                if (it.hasCustomDescription() && it.cause != ComponentSelectionCause.REQUESTED) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/edit.go

    			// pruned ones! — that cause it to be selected would also cause the reason
    			// for is disqualification to be included in the module graph.
    			dq.pruned = reason
    		}
    	}
    	if t.dqReason == nil {
    		t.dqReason = make(map[module.Version]perPruning[dqState])
    	}
    	t.dqReason[m] = dq
    
    	if isRoot && (fromPruning == pruned || rootPruning == unpruned) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
Back to top