Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,586 for reasons (0.12 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ExecuteWorkBuildOperationFiringStep.java

                return cachingState
                    .whenDisabled()
                    .map(CachingState.Disabled::getDisabledReasons)
                    .map(reasons -> reasons.get(0));
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/UnknownModelException.java

    package org.gradle.tooling;
    
    /**
     * Thrown when the client is trying to acquire a model that is unknown to the Tooling API.
     * <p>
     * The exception extends {@link UnsupportedVersionException} only for backwards compatibility reasons.
     *
     * @since 1.0-milestone-8
     */
    public class UnknownModelException extends UnsupportedVersionException {
    
        public UnknownModelException(String message) {
            super(message);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. 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)
  4. pilot/pkg/xds/monitoring.go

    	model.ClusterUpdate:   pushTriggers.With(typeTag.Value(string(model.ClusterUpdate))),
    }
    
    func recordPushTriggers(reasons model.ReasonStats) {
    	for r, cnt := range reasons {
    		t, f := triggerMetric[r]
    		if f {
    			t.RecordInt(int64(cnt))
    		} else {
    			pushTriggers.With(typeTag.Value(string(r))).Increment()
    		}
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppSystemHeaderDiscoveryIntegrationTest.groovy

                        out.text = tasks.compileDebugCpp.systemIncludes.join('\\n')
                    }
                }
            """
    
            when:
            //TODO this fails in CI (for unknown reasons) with project access checks based on configuration barrier
            executer.withBuildJvmOpts("-Dorg.gradle.configuration-cache.internal.task-execution-access-pre-stable=true")
            succeeds("sysHeaders")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. hack/update-internal-modules.sh

    # limitations under the License.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    # These are "internal" modules.  For various reasons, we want them to be
    # decoupled from their parent modules.
    MODULES=()                                                                                                                                                                   
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:38:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/ConfigurationsProvider.java

    import java.util.function.Consumer;
    
    public interface ConfigurationsProvider {
        /**
         * Returns the number of configurations in this provider.
         * <p>
         * This method is provided for performance reasons. It should be more efficient to call this method
         * than to call {@link #visitAll(Consumer)} and then call {@link Set#size()} on the result.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/lifecycle/internal/ExecutionEventCatapult.java

    import org.apache.maven.plugin.MojoExecution;
    
    /**
     * Assists in firing execution events. <strong>Warning:</strong> This is an internal utility interface that is only
     * public for technical reasons, it is not part of the public API. In particular, this interface can be changed or
     * deleted without prior notice.
     *
     */
    public interface ExecutionEventCatapult {
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.5K 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. subprojects/core/src/main/java/org/gradle/configuration/ImportsReader.java

         */
        String[] getImportPackages();
    
        /**
         * Returns a mapping from simple to qualified class name, derived from
         * the packages returned by {@link #getImportPackages()}. For historical reasons,
         * some simple name match multiple qualified names. In those cases the first match
         * should be used when resolving a name in the DSL.
         */
        Map<String, List<String>> getSimpleNameToFullClassNamesMapping();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top