Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for detect (0.19 sec)

  1. .gitattributes

    # Auto detect text files and perform LF normalization
    *        text=auto
    
    *.java   text diff=java
    *.html   text diff=html
    *.css    text
    *.js     text
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Jan 29 15:27:02 GMT 2013
    - 164 bytes
    - Viewed (0)
  2. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/DefaultArtifactVersion.java

                    }
                }
                if (idx < tok.length) {
                    qualifier = tok[idx++];
                    fallback = isDigits(qualifier);
                }
    
                // string tokenizer won't detect these and ignores them
                if (part1.contains("..") || part1.startsWith(".") || part1.endsWith(".")) {
                    fallback = true;
                }
    
                if (fallback) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Nov 17 15:50:51 GMT 2023
    - 6K bytes
    - Viewed (0)
  3. Jenkinsfile

                            }
                        }
                    }
                }
            }
        }
    }
    
    // run the parallel ITs
    parallel(runITsTasks)
    
    // JENKINS-34376 seems to make it hard to detect the aborted builds
    } catch (org.jenkinsci.plugins.workflow.steps.FlowInterruptedException e) {
        echo "[FAILURE-002] FlowInterruptedException ${e}"
        // this ambiguous condition means a user probably aborted
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 03 21:28:30 GMT 2024
    - 8.4K bytes
    - Viewed (0)
  4. maven-compat/src/main/mdo/profiles.mdo

                Specifies that this profile will be activated when a matching JDK is detected.
              ]]></description>
            </field>
            <field>
              <name>os</name>
              <version>1.0.0</version>
              <description><![CDATA[
                Specifies that this profile will be activated when matching OS attributes are detected.
              ]]></description>
              <association>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Jan 03 21:08:35 GMT 2023
    - 13.8K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/artifact/repository/LegacyLocalRepositoryManager.java

             * transformation however contradicts the other use case of precisely obeying the repository's layout. The below
             * flag tries to detect which use case applies to make both plugins happy.
             */
            realLocalRepo = (layout instanceof DefaultRepositoryLayout) && "local".equals(delegate.getId());
        }
    
        public LocalRepository getRepository() {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 28 07:40:37 GMT 2024
    - 12.2K bytes
    - Viewed (0)
  6. api/maven-api-settings/src/main/mdo/settings.mdo

                Specifies that this profile will be activated when a matching JDK is detected.
              </description>
            </field>
            <field>
              <name>os</name>
              <version>1.0.0+</version>
              <description>
                Specifies that this profile will be activated when matching OS attributes are detected.
              </description>
              <association>
                <type>ActivationOS</type>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Feb 17 18:40:11 GMT 2024
    - 33.3K bytes
    - Viewed (0)
  7. Jenkinsfile.s390x

                            }
                        }
                    }
                }
            }
        }
    }
    
    // run the parallel ITs
    parallel(runITsTasks)
    
    // JENKINS-34376 seems to make it hard to detect the aborted builds
    } catch (org.jenkinsci.plugins.workflow.steps.FlowInterruptedException e) {
        echo "[FAILURE-002] FlowInterruptedException ${e}"
        // this ambiguous condition means a user probably aborted
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 03 21:28:30 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/plugin/internal/Maven3CompatDependenciesValidator.java

    import org.apache.maven.plugin.PluginValidationManager;
    import org.eclipse.aether.RepositorySystemSession;
    import org.eclipse.aether.artifact.Artifact;
    import org.eclipse.aether.resolution.ArtifactDescriptorResult;
    
    /**
     * Detects Maven3 plugins using maven-compat Maven2 compatibility layer.
     *
     * @since 3.9.3
     */
    @Singleton
    @Named
    class Maven3CompatDependenciesValidator extends AbstractMavenPluginDependenciesValidator {
    
        @Inject
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 07 09:51:56 GMT 2024
    - 2.4K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/plugin/internal/PlexusContainerDefaultDependenciesValidator.java

    import org.apache.maven.plugin.PluginValidationManager;
    import org.eclipse.aether.RepositorySystemSession;
    import org.eclipse.aether.artifact.Artifact;
    import org.eclipse.aether.resolution.ArtifactDescriptorResult;
    
    /**
     * Detects Plexus Container Default in plugins.
     *
     * @since 3.9.2
     */
    @Singleton
    @Named
    class PlexusContainerDefaultDependenciesValidator extends AbstractMavenPluginDependenciesValidator {
    
        @Inject
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri May 26 16:22:12 GMT 2023
    - 2.2K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularization.java

         * Module information for the path specified at construction time.
         * This map is usually either empty if no module was found, or a singleton map.
         * It may however contain more than one entry if module hierarchy was detected,
         * in which case there is one key per sub-directory.
         *
         * <p>This map may contain null values if the constructor was invoked with {@code resolve}
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 11.2K bytes
    - Viewed (0)
Back to top