Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 149 for providing (0.05 sec)

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

        }
    
        /**
         * Constructs a new {@code MojoException} wrapping an underlying {@code Throwable}
         * and providing a {@code message}.
         */
        public MojoException(String message, Throwable cause) {
            super(message, cause);
        }
    
        /**
         * Constructs a new {@code MojoException} providing a {@code message}.
         */
        public MojoException(String message) {
            super(message);
        }
    
        /**
    Registered: 2025-05-24 08:56
    - Last Modified: 2024-05-13 09:53
    - 2.5K bytes
    - Viewed (0)
  2. README.md

    =============
    
    CoreLib is a foundational library for the CodeLibs project, providing essential utilities and components to streamline development.
    
    ## Features
    
    - Lightweight and efficient core utilities.
    - Designed for seamless integration with CodeLibs projects.
    Registered: 2025-05-24 08:58
    - Last Modified: 2025-04-18 13:54
    - 1K bytes
    - Viewed (0)
  3. src/README.vendor

        cd src  # or src/cmd
        go get golang.org/x/net@master
        go mod tidy
        go mod vendor
    
    Use caution when passing '-u' to 'go get'. The '-u' flag updates
    modules providing all transitively imported packages, not only
    the module providing the target package.
    
    Note that 'go mod vendor' only copies packages that are transitively
    imported by packages in the current module. If a new package is needed,
    Registered: 2025-05-27 11:13
    - Last Modified: 2024-09-30 19:15
    - 2.4K bytes
    - Viewed (0)
  4. .github/ISSUE_TEMPLATE/50_maintainer_chore.yml

          required: true
      - type: textarea
        id: context
        attributes:
          label: Context (optional)
          description: |
            How has this issue affected you? What are you trying to accomplish?
            Providing context helps us come up with a solution that is most useful in the real world
        validations:
    Registered: 2025-05-28 11:36
    - Last Modified: 2023-09-12 11:52
    - 856 bytes
    - Viewed (0)
  5. .github/ISSUE_TEMPLATE/30_contributor_regression.yml

          required: true
      - type: textarea
        id: context
        attributes:
          label: Context (optional)
          description: |
            How has this issue affected you? What are you trying to accomplish?
            Providing context helps us come up with a solution that is most useful in the real world
        validations:
          required: false
      - type: textarea
        id: steps-to-reproduce
        attributes:
    Registered: 2025-05-28 11:36
    - Last Modified: 2024-09-09 14:48
    - 2.7K bytes
    - Viewed (0)
  6. build-logic/dependency-modules/src/main/kotlin/gradlebuild.dependency-modules.gradle.kts

                params(name)
                params("${providedBy.size + 1}")
            }
        }
    
        /**
         * For all modules providing a capability, always use the preferred module, even if there's no conflict.
         * In other words, will forcefully upgrade all modules providing a capability to a selected module.
         *
         * @param to the preferred module
         */
        private
    Registered: 2025-05-28 11:36
    - Last Modified: 2025-05-01 14:55
    - 9.4K bytes
    - Viewed (0)
  7. .github/ISSUE_TEMPLATE/20_contributor_feature_request.yml

        id: context
        attributes:
          label: Context
          description: |
            How has this issue affected you? What are you trying to accomplish? What other alternatives have you considered?
            Providing context helps us come up with a solution that is most useful in the real world
        validations:
    Registered: 2025-05-28 11:36
    - Last Modified: 2023-04-06 11:10
    - 1.5K bytes
    - Viewed (0)
  8. .github/ISSUE_TEMPLATE/40_contributor_documentation.yml

          required: true
      - type: textarea
        id: context
        attributes:
          label: Context (optional)
          description: |
            How has this issue affected you? What are you trying to accomplish?
            Providing context helps us come up with a solution that is most useful in the real world
        validations:
          required: false
      - type: input
        id: page
        attributes:
          label: Page with the problem
    Registered: 2025-05-28 11:36
    - Last Modified: 2024-01-15 10:01
    - 1.6K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/Result.java

    import org.apache.maven.api.annotations.Nonnull;
    
    /**
     * Base interface for service operation results in Maven. This interface defines the common contract
     * for operation results, providing access to the original request that generated this result.
     *
     * <p>Each result is linked to its originating {@link Request}, allowing for:
     * <ul>
     *   <li>Traceability between requests and their outcomes</li>
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-01-29 08:17
    - 1.9K bytes
    - Viewed (0)
  10. manifests/charts/UPDATING-CHARTS.md

    more flexible to expose the entire field as arbitrary YAML. If the change truly is generally purpose, it is generally preferred to have broader APIs. For example, instead of providing direct access to each of the complex fields in [affinity](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/), just providing a single `affinity` field that is passed through as-is to the Kubernetes resource. This provides maximum flexibility with minimal API surface overhead.
    
    - All value...
    Registered: 2025-05-28 22:53
    - Last Modified: 2025-01-16 21:06
    - 4.9K bytes
    - Viewed (0)
Back to top