Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,059 for reasons (0.13 sec)

  1. maven-core/src/main/java/org/apache/maven/plugin/LegacySupport.java

    /**
     * Helps to provide backward-compatibility with plugins that use legacy components. <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.
     *
     * @since 3.0
     */
    public interface LegacySupport {
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/utils/string_utils.h

      std::vector<size_t> offset_;
      // Max length in number of characters that we permit the total
      // buffer containing the concatenation of all added strings to be.
      // For historical reasons this is limited to 32bit length. At this files
      // inception, sizes were represented using 32bit which forced an implicit cap
      // on the size of the buffer. When this was refactored to use size_t (which
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/PluginDescriptorCache.java

     * data like the plugin realm. <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.
     *
     * @since 3.0
     */
    public interface PluginDescriptorCache {
    
        /**
         * A cache key.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. testing/architecture-test/src/test/java/org/gradle/architecture/test/XmlFactoriesTest.java

    import static com.tngtech.archunit.lang.syntax.ArchRuleDefinition.noClasses;
    
    @AnalyzeClasses(packages = "org.gradle")
    public class XmlFactoriesTest {
    
        private static final String RATIONALE = "for security reasons, all XML factories creation should go through " + XmlFactories.class.getName();
    
        private static final List<Class<?>> xmlFactoryClasses = Arrays.asList(
            DocumentBuilderFactory.class,
            SAXParserFactory.class,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. 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)
  6. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/resolution.kt

        data object AccessOnCurrentReceiverOnlyViolation : ErrorReason
        data class DuplicateLocalValue(val name: String) : ErrorReason
        data object UnresolvedAssignmentLhs : ErrorReason // TODO: report candidate with rejection reasons
        data object UnresolvedAssignmentRhs : ErrorReason // TODO: resolution trace here, too?
        data object UnitAssignment : ErrorReason
        data object DanglingPureExpression : ErrorReason
    }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/UpToDateResult.java

            this.executionReasons = parent.getExecutionReasons();
            this.reusedOutputOriginMetadata = parent.getReusedOutputOriginMetadata().orElse(null);
        }
    
        /**
         * A list of messages describing the first few reasons encountered that caused the work to be executed.
         * An empty list means the work was up-to-date and hasn't been executed.
         */
        public ImmutableList<String> getExecutionReasons() {
            return executionReasons;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:29 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/volumebinding/fake_binder.go

    	return nil
    }
    
    // FindPodVolumes implements SchedulerVolumeBinder.FindPodVolumes.
    func (b *FakeVolumeBinder) FindPodVolumes(_ klog.Logger, pod *v1.Pod, _ *PodVolumeClaims, node *v1.Node) (podVolumes *PodVolumes, reasons ConflictReasons, err error) {
    	return nil, b.config.FindReasons, b.config.FindErr
    }
    
    // AssumePodVolumes implements SchedulerVolumeBinder.AssumePodVolumes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 21 03:28:12 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/project/ProjectRealmCache.java

    import org.eclipse.aether.graph.DependencyFilter;
    
    /**
     * Caches project class realms. <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 ProjectRealmCache {
    
        /**
         * A cache key.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. architecture/runtimes.md

    - Some base services that are available to code hosted by the runtime. This varies by runtime.
    - Additional constraints. For example, the CLI client runtimes limit the libraries that are available to the code in that runtime, for performance reasons. 
    
    Other modules and platforms define the services that they contribute to the runtime.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top