Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for prefix (1.04 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/PrefixedObjectValueSource.java

         * @param prefix the prefix.
         * @param root the root of the graph.
         */
        public PrefixedObjectValueSource(String prefix, Object root) {
            super(new PrefixedValueSourceWrapper(new ObjectBasedValueSource(root), prefix));
        }
    
        /**
         * Wrap the specified root object, allowing the specified list of expression
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. maven-slf4j-provider/src/main/java/org/apache/maven/slf4j/MavenSimpleLogger.java

                writeThrowable(se, stream, "Suppressed", prefix + "    ");
            }
            Throwable cause = t.getCause();
            if (cause != null && t != cause) {
                writeThrowable(cause, stream, "Caused by", prefix);
            }
        }
    
        private void writeThrowable(Throwable t, PrintStream stream, String caption, String prefix) {
            MessageBuilder builder =
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/prefix/internal/DefaultPluginPrefixResult.java

     * under the License.
     */
    package org.apache.maven.plugin.prefix.internal;
    
    import org.apache.maven.model.Plugin;
    import org.apache.maven.plugin.prefix.PluginPrefixResult;
    import org.eclipse.aether.repository.ArtifactRepository;
    
    /**
     * Describes the result of a plugin prefix resolution request.
     *
     * @since 3.0
     */
    class DefaultPluginPrefixResult implements PluginPrefixResult {
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/plugin/prefix/DefaultPluginPrefixRequest.java

        }
    
        public String getPrefix() {
            return prefix;
        }
    
        public DefaultPluginPrefixRequest setPrefix(String prefix) {
            this.prefix = prefix;
    
            return this;
        }
    
        public List<String> getPluginGroups() {
            return pluginGroups;
        }
    
        public DefaultPluginPrefixRequest setPluginGroups(List<String> pluginGroups) {
            if (pluginGroups != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/PluginPrefixResolverStub.java

     * under the License.
     */
    package org.apache.maven.lifecycle.internal.stub;
    
    import org.apache.maven.plugin.prefix.NoPluginFoundForPrefixException;
    import org.apache.maven.plugin.prefix.PluginPrefixRequest;
    import org.apache.maven.plugin.prefix.PluginPrefixResolver;
    import org.apache.maven.plugin.prefix.PluginPrefixResult;
    import org.eclipse.aether.repository.ArtifactRepository;
    
    /**
     */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeWriter.java

                hasChildren = true;
                anew = false;
            }
    
            @Override
            public void writeEmptyElement(String prefix, String localName, String namespaceURI) throws XMLStreamException {
                indent();
                super.writeEmptyElement(prefix, localName, namespaceURI);
                hasChildren = true;
                anew = false;
            }
    
            @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Nov 27 23:11:34 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/DirectoryTrees.java

        public static boolean contains(FileSystem fileSystem, DirectoryTree tree, File file) {
            String prefix = tree.getDir().getAbsolutePath() + File.separator;
            if (!file.getAbsolutePath().startsWith(prefix)) {
                return false;
            }
    
            RelativePath path = RelativePath.parse(true, file.getAbsolutePath().substring(prefix.length()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/plugin/prefix/PluginPrefixRequest.java

        String getPrefix();
    
        /**
         * Sets the prefix of the plugin.
         *
         * @param prefix The prefix of the plugin.
         * @return This request, never {@code null}.
         */
        PluginPrefixRequest setPrefix(String prefix);
    
        /**
         * Gets the list of group ids to scan for the plugin prefix.
         *
         * @return The list of group ids to scan for the plugin prefix, never {@code null}.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/collect/testing/google/ListGenerators.java

      public static class ImmutableListTailSubListGenerator extends TestStringListGenerator {
        @Override
        protected List<String> create(String[] elements) {
          String[] prefix = {"f", "g"};
          String[] all = new String[elements.length + prefix.length];
          System.arraycopy(prefix, 0, all, 0, 2);
          System.arraycopy(elements, 0, all, 2, elements.length);
          return ImmutableList.copyOf(all).subList(2, elements.length + 2);
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/plugin/prefix/PluginPrefixResolver.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.plugin.prefix;
    
    /**
     * Resolves a plugin prefix.
     *
     * @since 3.0
     */
    public interface PluginPrefixResolver {
    
        /**
         * Resolves the plugin prefix for the specified request.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top