Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 280 for issues (0.23 sec)

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

                logger.warn("");
                logger.warn("Plugin {} validation issues were detected in following plugin(s)", issueLocalitiesToReport);
                logger.warn("");
                for (Map.Entry<String, PluginValidationIssues> entry : issuesMap.entrySet()) {
                    PluginValidationIssues issues = entry.getValue();
                    if (!hasAnythingToReport(issues, issueLocalitiesToReport)) {
                        continue;
                    }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Nov 19 21:11:13 GMT 2023
    - 17.4K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/plugin/PluginValidationManager.java

             * it will be reported as "external". It is up to developer to correctly interpret output (GAV) of issues
             * and realize that in this case he wears two hats:" "user" and "(plugin) developer".
             */
            EXTERNAL
        }
    
        /**
         * Reports plugin issues applicable to the plugin as a whole.
         * <p>
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri May 26 16:22:12 GMT 2023
    - 3.4K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/io/FilesSimplifyPathTest.java

        assertEquals("../ok", simplifyPath("../this/../ok"));
      }
    
      // https://code.google.com/p/guava-libraries/issues/detail?id=705
      public void test705() {
        assertEquals("../b", simplifyPath("x/../../b"));
        assertEquals("b", simplifyPath("x/../b"));
      }
    
      // https://code.google.com/p/guava-libraries/issues/detail?id=716
      public void test716() {
        assertEquals("b", simplifyPath("./b"));
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Tue Jul 19 14:00:24 GMT 2016
    - 11K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/io/FilesSimplifyPathTest.java

        assertEquals("../ok", simplifyPath("../this/../ok"));
      }
    
      // https://code.google.com/p/guava-libraries/issues/detail?id=705
      public void test705() {
        assertEquals("../b", simplifyPath("x/../../b"));
        assertEquals("b", simplifyPath("x/../b"));
      }
    
      // https://code.google.com/p/guava-libraries/issues/detail?id=716
      public void test716() {
        assertEquals("b", simplifyPath("./b"));
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Apr 21 02:27:51 GMT 2017
    - 11K bytes
    - Viewed (0)
  5. build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java

            String rewritten = document.body().html();
            // Turn Gradle Jira issue numbers into issue links
            rewritten = rewritten.replaceAll("GRADLE-\\d+", "<a href=\"https://issues.gradle.org/browse/$0\">$0</a>");
            // Turn Gradle Github issue numbers into issue links
            rewritten = rewritten.replaceAll("(gradle/[a-zA-Z\\-_]+)#(\\d+)", "<a href=\"https://github.com/$1/issues/$2\">$0</a>");
            document.body().html(rewritten);
    
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Apr 25 04:49:56 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/eventbus/ParametricNullness.java

     *       to "undo" {@link ElementTypesAreNonnullByDefault}. It is the best we can do for Kotlin
     *       under our current constraints.
     *   <li>NullAway, which will <a
     *       href="https://github.com/google/guava/issues/6126#issuecomment-1204399671">treat it
     *       identically to {@code Nullable} as of version 0.9.9</a>. To treat it that way before then,
     *       you can set {@code
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Aug 10 21:27:51 GMT 2022
    - 4.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/primitives/ParametricNullness.java

     *       to "undo" {@link ElementTypesAreNonnullByDefault}. It is the best we can do for Kotlin
     *       under our current constraints.
     *   <li>NullAway, which will <a
     *       href="https://github.com/google/guava/issues/6126#issuecomment-1204399671">treat it
     *       identically to {@code Nullable} as of version 0.9.9</a>. To treat it that way before then,
     *       you can set {@code
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Aug 10 21:27:51 GMT 2022
    - 4.1K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/reflect/ClassPathTest.java

            .containsExactly(new File("/a"), grandParent);
      }
    
      @AndroidIncompatible // Android forbids null parent ClassLoader
      // https://github.com/google/guava/issues/2152
      public void testClassPathEntries_URLClassLoader_pathWithSpace() throws Exception {
        URL url = new URL("file:///c:/Documents and Settings/");
        URLClassLoader classloader = new URLClassLoader(new URL[] {url}, null);
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Jul 07 16:50:33 GMT 2023
    - 24.9K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Queues.java

       * ordering.
       *
       * @since 11.0 (but the bound of {@code E} was changed from {@code Object} to {@code Comparable}
       *     in 15.0)
       */
      @SuppressWarnings("rawtypes") // https://github.com/google/guava/issues/989
      @J2ktIncompatible
      @GwtIncompatible // PriorityBlockingQueue
      public static <E extends Comparable> PriorityBlockingQueue<E> newPriorityBlockingQueue() {
        return new PriorityBlockingQueue<>();
      }
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 16K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/reflect/ClassPath.java

     *       href="https://github.com/google/guava/issues/2130">a report of a specific bug under
     *       Windows</a>.
     *   <li>It <a href="https://github.com/google/guava/issues/2712">returns only one resource for a
     *       given path</a>, even if resources with that path appear in multiple jars or directories.
     *   <li>It assumes that <a href="https://github.com/google/guava/issues/3349">any class with a
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Jan 05 17:43:40 GMT 2022
    - 24.9K bytes
    - Viewed (1)
Back to top