Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 131 for caniuse (0.4 sec)

  1. LICENSE

          other entities that control, are controlled by, or are under common
          control with that entity. For the purposes of this definition,
          "control" means (i) the power, direct or indirect, to cause the
          direction or management of such entity, whether by contract or
          otherwise, or (ii) ownership of fifty percent (50%) or more of the
          outstanding shares, or (iii) beneficial ownership of such entity.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 11 20:39:30 UTC 2013
    - 11.1K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/org/apache/maven/wagon/wagon-webdav/1.0-beta-2/wagon-webdav-1.0-beta-2.jar

    "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 16.9K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/artifact/deployer/ArtifactDeploymentException.java

        public ArtifactDeploymentException(String message) {
            super(message);
        }
    
        public ArtifactDeploymentException(Throwable cause) {
            super(cause);
        }
    
        public ArtifactDeploymentException(String message, Throwable cause) {
            super(message, cause);
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataGraphTransformationException.java

            super(message);
        }
    
        public MetadataGraphTransformationException(Throwable cause) {
            super(cause);
        }
    
        public MetadataGraphTransformationException(String message, Throwable cause) {
            super(message, cause);
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/services/SuperPomProviderException.java

        public SuperPomProviderException(String message) {
            super(message);
        }
    
        public SuperPomProviderException(String message, Throwable cause) {
            super(message, cause);
        }
    
        public SuperPomProviderException(Throwable cause) {
            super(cause);
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Sep 26 05:17:52 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/resolution/InvalidRepositoryException.java

         *
         * @param message The detail message, may be {@code null}.
         * @param repository The repository that caused the error, may be {@code null}.
         * @param cause The cause, may be {@code null}.
         */
        public InvalidRepositoryException(String message, Repository repository, Throwable cause) {
            super(message, cause);
            this.repository = repository;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/execution/MojoExecutionEvent.java

        private final Mojo mojo;
    
        private final Throwable cause;
    
        public MojoExecutionEvent(MavenSession session, MavenProject project, MojoExecution mojoExecution, Mojo mojo) {
            this(session, project, mojoExecution, mojo, null);
        }
    
        public MojoExecutionEvent(
                MavenSession session, MavenProject project, MojoExecution mojoExecution, Mojo mojo, Throwable cause) {
            this.session = session;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/settings/SettingsConfigurationException.java

        public SettingsConfigurationException(String message) {
            super(message);
        }
    
        public SettingsConfigurationException(String message, Throwable cause) {
            super(message, cause);
        }
    
        public SettingsConfigurationException(String message, Throwable cause, int lineNumber, int columnNumber) {
            super(
                    message
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/project/interpolation/ModelInterpolationException.java

            super(message);
        }
    
        public ModelInterpolationException(String message, Throwable cause) {
            super(message, cause);
        }
    
        public ModelInterpolationException(String expression, String message, Throwable cause) {
            super("The POM expression: " + expression + " could not be evaluated. Reason: " + message, cause);
    
            this.expression = expression;
            this.originalMessage = message;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/ProjectCycleException.java

        public ProjectCycleException(String message) {
            super(message);
        }
    
        public ProjectCycleException(String message, CycleDetectedException cause) {
            super(message, cause);
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 06:02:04 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top