Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,721 for reason1 (0.64 sec)

  1. pkg/kubelet/preemption/preemption.go

    		return failureReasons, nil
    	}
    	// InsufficientResourceError is not a reason to reject a critical pod.
    	// Instead of rejecting, we free up resources to admit it, if no other reasons for rejection exist.
    	nonResourceReasons := []lifecycle.PredicateFailureReason{}
    	resourceReasons := []*admissionRequirement{}
    	for _, reason := range failureReasons {
    		if r, ok := reason.(*lifecycle.InsufficientResourceError); ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 16:53:19 UTC 2023
    - 11.5K 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/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. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/caching/CachingDisabledReasonCategory.java

         */
        DISABLE_CONDITION_SATISFIED,
    
        /**
         * The work has no outputs declared.
         */
        NO_OUTPUTS_DECLARED,
    
        /**
         * Work has declared output that is not cacheable.
         *
         * Reasons for non-cacheable outputs:
         * <ul>
         *     <li>an output contains a file tree,</li>
         *     <li>an output is not tracked.</li>
         * </ul>
         */
        NON_CACHEABLE_OUTPUT,
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. 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)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/IncrementalChangesContext.java

        protected IncrementalChangesContext(IncrementalChangesContext parent) {
            this(parent, parent.getRebuildReasons(), parent.getChanges().orElse(null));
        }
    
        /**
         * Returns the reasons to re-execute the work, empty if there's no reason to re-execute.
         */
        public ImmutableList<String> getRebuildReasons() {
            return rebuildReasons;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 17:10:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/apiapproval/apiapproval_controller_test.go

    		},
    		{
    			name:              "unapproved",
    			group:             "sigs.k8s.io",
    			annotationValue:   "unapproved for reasons",
    			validateCondition: verifyCondition(apiextensionsv1.ConditionFalse, `not approved: "unapproved for reasons"`),
    		},
    	}
    
    	for _, test := range tests {
    		t.Run(test.name, func(t *testing.T) {
    			crd := &apiextensionsv1.CustomResourceDefinition{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 03 16:49:27 UTC 2019
    - 3.4K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/caching/CachingState.java

            return new CachingState(Either.right(new Disabled(disabledReasons, cacheKeyCalculatedState)));
        }
    
        public static CachingState disabledWithoutInputs(CachingDisabledReason reason) {
            return disabled(ImmutableList.of(reason), null, null);
        }
    
        public Optional<Enabled> whenEnabled() {
            return delegate.getLeft();
        }
    
        public Optional<Disabled> whenDisabled() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 13:41:13 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top