Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 53 for Schick (0.15 sec)

  1. maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultUpdateCheckManager.java

                            .debug("Skipping update check for " + artifact + " (" + file + ") from " + repository.getId()
                                    + " (" + repository.getUrl() + ")");
                }
    
                return false;
            }
    
            if (getLogger().isDebugEnabled()) {
                getLogger()
                        .debug("Determining update check for " + artifact + " (" + file + ") from " + repository.getId()
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 12.1K bytes
    - Viewed (0)
  2. maven-artifact/src/test/java/org/apache/maven/artifact/versioning/DefaultArtifactVersionTest.java

            assertEquals(major, artifactVersion.getMajorVersion(), parsed + "check major version");
            assertEquals(minor, artifactVersion.getMinorVersion(), parsed + "check minor version");
            assertEquals(incremental, artifactVersion.getIncrementalVersion(), parsed + "check incremental version");
            assertEquals(buildnumber, artifactVersion.getBuildNumber(), parsed + "check build number");
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 9.5K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/profiles/activation/FileProfileActivator.java

        }
    
        public boolean isActive(Profile profile) {
            Activation activation = profile.getActivation();
    
            ActivationFile actFile = activation.getFile();
    
            if (actFile != null) {
                // check if the file exists, if it does then the profile will be active
                String fileString = actFile.getExists();
    
                RegexBasedInterpolator interpolator = new RegexBasedInterpolator();
                try {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Sep 14 11:48:15 GMT 2023
    - 3.6K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/plugin/PluginNotFoundException.java

        private Plugin plugin;
    
        public PluginNotFoundException(Plugin plugin, ArtifactNotFoundException e) {
            super(
                    "Plugin could not be found - check that the goal name is correct: " + e.getMessage(),
                    e.getGroupId(),
                    e.getArtifactId(),
                    e.getVersion(),
                    "maven-plugin",
                    null,
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.3K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/DefaultRepositoryMetadataManager.java

                        update = false;
    
                        if (getLogger().isDebugEnabled()) {
                            getLogger()
                                    .debug("Skipping update check for " + metadata.getKey() + " (" + file
                                            + ") from disabled repository " + repository.getId() + " ("
                                            + repository.getUrl() + ")");
                        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 18.9K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/plugin/MavenPluginManager.java

                        InvalidPluginDescriptorException;
    
        /**
         * Verifies the specified plugin is compatible with the current Maven runtime.
         *
         * @param pluginDescriptor The descriptor of the plugin to check, must not be {@code null}.
         * @deprecated Use {@link #checkPrerequisites(PluginDescriptor)} instead.
         */
        @Deprecated
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 6.6K bytes
    - Viewed (0)
  7. maven-compat/src/test/java/org/apache/maven/repository/legacy/DefaultWagonManagerTest.java

            assertWagon("b");
    
            assertWagon("c");
    
            assertWagon("string");
    
            assertThrows(UnsupportedProtocolException.class, () -> assertWagon("d"));
        }
    
        /**
         * Check that transfer listeners are properly removed after getArtifact and putArtifact
         */
        @Test
        void testWagonTransferListenerRemovedAfterGetArtifactAndPutArtifact() throws Exception {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 13.4K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultTransport.java

            try {
                Path tempPath = null;
                try {
                    tempPath = Files.createTempFile("transport-get", "tmp");
                    if (get(relativeSource, tempPath)) {
                        // TODO: check file size and prevent OOM?
                        return Optional.of(Files.readAllBytes(tempPath));
                    }
                    return Optional.empty();
                } finally {
                    if (tempPath != null) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Apr 01 15:17:46 GMT 2024
    - 5.3K bytes
    - Viewed (0)
  9. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/DefaultArtifactVersion.java

            if ((s.length() > 1) && s.startsWith("0")) {
                return null;
            }
            return tryParseInt(s);
        }
    
        private static Integer tryParseInt(String s) {
            // for performance, check digits instead of relying later on catching NumberFormatException
            if (!isDigits(s)) {
                return null;
            }
    
            try {
                long longValue = Long.parseLong(s);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Nov 17 15:50:51 GMT 2023
    - 6K bytes
    - Viewed (0)
  10. maven-core/src/site/apt/configuration-management.apt

     their source trees set up in the same way as their colleagues.
    
     here's what I do currently in the netbeans part of the mavenide project to
     find the relevant subprojects/sibling projects. I check if the user has
     defined the maven.multiproject.includes property in any of his properties
     files for the current project. if yes. then I'm able to find projects that
     can be offered to be opened together with the current project.
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 18 00:24:53 GMT 2024
    - 5.8K bytes
    - Viewed (0)
Back to top