Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for accessKey (0.14 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/ModelData.java

         * Gets unique identifier of the model
         *
         * @return The effective identifier of the model, never {@code null}.
         */
        public String id() {
            // if source is null, it is the super model, which can be accessed via empty string
            return source != null ? source.getLocation() : "";
        }
    
        @Override
        public String toString() {
            return String.valueOf(model);
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 1.6K bytes
    - Viewed (0)
  2. maven-core/src/site/apt/offline-mode.apt

      unimplemented, which is to detect when the network is down and provide better
      feedback for that case. However, when offline mode is declared, nothing
      earmarked as remote should be accessed, regardless of whether it is actually
      a physically local resource.
    
      NOTE: One side-effect of this design change is that all offline-mode code can
      be isolated to maven-core, maven-plugin-descriptor, and [possibly]
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 18 00:24:53 GMT 2024
    - 10.6K bytes
    - Viewed (0)
Back to top