Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 194 for LOCATION (0.33 sec)

  1. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeStaxBuilder.java

                            attrs,
                            children,
                            location);
                }
                eventType = parser.next();
            }
            throw new IllegalStateException("End of document found before returning to 0 depth");
        }
    
        /**
         * Input location builder interface, to be implemented to choose how to store data.
         *
         * @since 3.2.0
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeBuilder.java

                            attrs,
                            children,
                            location);
                }
                eventType = parser.next();
            }
            throw new IllegalStateException("End of document found before returning to 0 depth");
        }
    
        /**
         * Input location builder interface, to be implemented to choose how to store data.
         *
         * @since 3.2.0
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/PluginValidationManager.java

         */
        void reportPluginValidationIssue(
                IssueLocality locality, MavenSession mavenSession, MojoDescriptor mojoDescriptor, String issue);
    
        /**
         * Reports plugin Mojo issues applicable to the Mojo itself.
         * <p>
         * This method will record extra information as well, like plugin occurrence or declaration location.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 26 16:22:12 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. maven-builder-support/src/main/java/org/apache/maven/building/Problem.java

         */
        int getColumnNumber();
    
        /**
         * Gets the location of the problem. The location is a user-friendly combination of the values from
         * {@link #getSource()}, {@link #getLineNumber()} and {@link #getColumnNumber()}. The exact syntax of the returned
         * value is undefined.
         *
         * @return The location of the problem, never {@code null}.
         */
        String getLocation();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10ScopeProvider.kt

            override fun getContributedVariables(name: Name, location: LookupLocation): Collection<PropertyDescriptor> {
                return allMemberScope.getContributedVariables(name, location).filter {
                    it.isDeclaredInOwner() && it.isDelegatedIfRequired()
                }.mapToDelegatedIfRequired()
            }
    
            override fun getContributedFunctions(name: Name, location: LookupLocation): Collection<SimpleFunctionDescriptor> {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  6. fess-crawler/src/test/resources/ajax/js/test.js

    });
    
    function setEventHandlers(){
      $('#info').click(function(){ openPage("info.html") } );
      $('#home').click(function(){ openPage("home.html") } );
    }
    
    function openPage(page){
      $('#content').load(page);
      location.hash = page;
    }
    
    function addFooter(msg){
      $('#footer').html($('#footer').html() + "<p>FOOTER: " + msg + "</p>");
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 410 bytes
    - Viewed (0)
  7. maven-builder-support/src/main/java/org/apache/maven/building/Source.java

         */
        InputStream getInputStream() throws IOException;
    
        /**
         * Provides a user-friendly hint about the location of the source. This could be a local file path, a URI or just an
         * empty string. The intention is to assist users during error reporting.
         *
         * @return A user-friendly hint about the location of the source, never {@code null}.
         */
        String getLocation();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. maven-toolchain-builder/src/test/java/org/apache/maven/toolchain/building/DefaultToolchainsBuilderTest.java

            assertNotNull(result.getProblems());
            assertEquals(0, result.getProblems().size());
        }
    
        @Test
        void testStrictToolchainsParseException() throws Exception {
            Location loc = mock(Location.class);
            when(loc.getLineNumber()).thenReturn(4);
            when(loc.getColumnNumber()).thenReturn(2);
            XMLStreamException parseException = new XMLStreamException("MESSAGE", loc);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/BuilderProblem.java

         */
        int getColumnNumber();
    
        /**
         * Gets the location of the problem. The location is a user-friendly combination of the values from
         * {@link #getSource()}, {@link #getLineNumber()} and {@link #getColumnNumber()}. The exact syntax of the returned
         * value is undefined.
         *
         * @return the location of the problem, never {@code null}
         */
        @Nonnull
        String getLocation();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Mar 23 05:29:39 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. maven-settings-builder/src/main/java/org/apache/maven/settings/building/DefaultSettingsProblem.java

            buffer.append('[').append(getSeverity()).append("] ");
            buffer.append(getMessage());
            String location = getLocation();
            if (!location.isEmpty()) {
                buffer.append(" @ ");
                buffer.append(location);
            }
    
            return buffer.toString();
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top