Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for wird (0.14 sec)

  1. apache-maven/src/assembly/maven/conf/logging/simplelogger.properties

    org.slf4j.simpleLogger.log.Sisu=info
    org.slf4j.simpleLogger.warnLevelString=WARNING
    
    # MNG-6181: mvn -X also prints all debug logging from HttpClient
    org.slf4j.simpleLogger.log.org.apache.http=off
    Properties
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 16 16:19:23 GMT 2022
    - 1.3K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/internal/MultilineMessageHelper.java

            result.add(sb.toString());
            // lines
            for (String line : lines) {
                sb.setLength(0);
                String[] words = S_FILTER.split(line);
                for (String word : words) {
                    if (sb.length() >= remainder - word.length() - (sb.length() > 0 ? 1 : 0)) {
                        repeat(sb, ' ', remainder - sb.length());
                        result.add(BOX_CHAR + " " + sb + " " + BOX_CHAR);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Feb 07 20:55:12 GMT 2023
    - 2.8K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/LifecycleProvider.java

    import org.apache.maven.api.annotations.Consumer;
    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.plugin.descriptor.lifecycle.Lifecycle;
    
    /**
     * Interface that can be provided by the plugin to wire in custom lifecycles
     * leveraged using the {@link org.apache.maven.api.plugin.annotations.Execute}
     * annotation.  If a {@code META-INF/maven/lifecycle.xml} file is packaged
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 28 23:54:53 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/profile/Os.java

         * @return true if the OS matches
         *
         */
        public static boolean isFamily(String family, String actualOsName) {
            // windows probing logic relies on the word 'windows' in the OS
            boolean isWindows = actualOsName.contains(FAMILY_WINDOWS);
            boolean is9x = false;
            boolean isNT = false;
            if (isWindows) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 7.3K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/AboutTheStubs.html

    clean, aggr and install. "aggr" is an aggregating task while clean and install are lifecyclephases.
    There will be three items in the task list for this dataset.
    
    The stubs also exist at different "levels", where one test might wire stubs into a specific live implementation.
    In the next test that same "live implementation" will be used in a stub version instead.
    
    Not all live services have stubs, but can be added as needed.
    </body>
    HTML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Jul 02 16:47:10 GMT 2021
    - 2.3K bytes
    - Viewed (0)
Back to top