Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for display (0.91 sec)

  1. maven-core/src/test/java/org/apache/maven/exception/DefaultExceptionHandlerTest.java

         * e.g running mvn site:run will cause Jetty to fail.
         * </p>
         * <p>
         * The resolution is to add -Djava.net.preferIPv4Stack=true to the command line as documented in
         * http://cwiki.apache.org/confluence/display/MAVEN/ConnectException
         * </p>
         */
        @Test
        void testJdk7ipv6() {
            ConnectException connEx = new ConnectException("Connection refused: connect");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 10:31:03 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. maven-di/src/main/java/org/apache/maven/di/Key.java

        }
    
        public @Nullable Object getQualifier() {
            return qualifier;
        }
    
        /**
         * Returns an underlying type with display string formatting (package names stripped)
         * and prepended qualifier display string if this key has a qualifier.
         */
        public String getDisplayString() {
            return (qualifier != null ? Utils.getDisplayString(qualifier) + " " : "")
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FileCollectionInternal.java

         */
        void visitStructure(FileCollectionStructureVisitor visitor);
    
        /**
         * Returns the display name of this file collection. Used in log and error messages.
         *
         * @return the display name
         */
        String getDisplayName();
    
        /**
         * Appends diagnostic information about the contents of this collection to the given formatter.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 14:55:28 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. maven-jline/src/main/java/org/apache/maven/jline/JLineMessageBuilderFactory.java

            }
            return formatted.toString();
        }
    
        private void doDisplay(String message) throws IOException {
            try {
                MessageUtils.terminal.writer().print(message);
                MessageUtils.terminal.flush();
            } catch (Exception e) {
                throw new IOException("Unable to display message", e);
            }
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/plugin/DefaultBuildPluginManager.java

                PrintStream ps = new PrintStream(os);
                ps.println(
                        "A required class was missing while executing " + mojoDescriptor.getId() + ": " + e.getMessage());
                pluginRealm.display(ps);
                Exception wrapper = new PluginContainerException(mojoDescriptor, pluginRealm, os.toString(), e);
                throw new PluginExecutionException(mojoExecution, project, wrapper);
            } catch (LinkageError e) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

                            + pluginDescriptor.getId() + "'. A required class is missing: "
                            + cause.getMessage());
                    pluginRealm.display(ps);
    
                    throw new PluginContainerException(mojoDescriptor, pluginRealm, os.toString(), cause);
                } else if (cause instanceof LinkageError) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/PathMappingHelper.java

                }
            }
            return result;
        }
    
        public String replaceUrl(final String url) { // for display or url converer
            if (cachedPathMappingList == null) {
                synchronized (this) {
                    if (cachedPathMappingList == null) {
                        init();
                    }
                }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java

        public CLIManager() {
            options = new Options();
            options.addOption(Option.builder(Character.toString(HELP))
                    .longOpt("help")
                    .desc("Display help information")
                    .build());
            options.addOption(Option.builder(Character.toString(ALTERNATE_POM_FILE))
                    .longOpt("file")
                    .hasArg()
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

                }
            }
    
            if ((reference != null && !reference.isEmpty()) && !reference.startsWith("http:")) {
                reference = "http://cwiki.apache.org/confluence/display/MAVEN/" + reference;
            }
    
            return reference;
        }
    
        private boolean isNoteworthyException(Throwable exception) {
            if (exception == null) {
                return false;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 10:31:03 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/collect/testing/google/SortedMultisetTestSuiteBuilder.java

            .suppressing(parentBuilder.getSuppressedTests())
            .createTestSuite();
      }
    
      /**
       * Returns an array of four bogus elements that will always be too high or too low for the
       * display. This includes two values for each extreme.
       *
       * <p>This method (dangerously) assume that the strings {@code "!! a"} and {@code "~~ z"} will
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top