Search Options

Results per page
Sort
Preferred Languages
Advance

Results 2261 - 2270 of 5,958 for retain (0.03 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/project/artifact/AttachedArtifact.java

        public String getScope() {
            return parent.getScope();
        }
    
        @Override
        public void setScope(String scope) {
            throw new UnsupportedOperationException("Cannot change the scoping information for an attached artifact."
                    + " It is derived from the main artifact.");
        }
    
        @Override
        public String getVersion() {
            return parent.getVersion();
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlan.java

            this.projects = projects;
        }
    
        public Map<MavenProject, List<MavenProject>> getAllProjects() {
            return projects;
        }
    
        public Map<String, String> aliases() {
            return aliases;
        }
    
        public Stream<MavenProject> projects() {
            return plan.keySet().stream();
        }
    
        public void addProject(MavenProject project, Map<String, BuildStep> steps) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Mar 28 12:11:25 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/plugin/DefaultPluginRealmCache.java

                return plugin.getId();
            }
    
            @Override
            public int hashCode() {
                return hashCode;
            }
    
            @Override
            public boolean equals(Object o) {
                if (o == this) {
                    return true;
                }
    
                if (o instanceof CacheKey that) {
                    return parentRealm == that.parentRealm
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequestPopulator.java

            }
            return request;
        }
    
        @Override
        public MavenExecutionRequest populateDefaults(MavenExecutionRequest request)
                throws MavenExecutionRequestPopulationException {
            baseDirectory(request);
    
            localRepository(request);
    
            populateDefaultPluginGroups(request);
    
            return request;
        }
    
        //
        //
        //
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. impl/maven-core/src/main/java/org/apache/maven/configuration/internal/DefaultBeanConfigurator.java

                return evaluate(expression, null);
            }
    
            @Override
            public File alignToBaseDirectory(File file) {
                if (translator != null) {
                    return translator.translatePath(file);
                }
                return file;
            }
        }
    
        static class XmlConverter extends AbstractConfigurationConverter {
            @Override
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 8.3K bytes
    - Viewed (0)
  6. impl/maven-core/src/test/java/org/apache/maven/project/DefaultProjectBuilderTest.java

                return effectiveModel;
            }
    
            @Override
            public Model getRawModel() {
                return rawModel;
            }
    
            @Override
            public Model getFileModel() {
                return fileModel;
            }
    
            @Override
            public ModelBuilderRequest getRequest() {
                return null;
            }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 17:20:31 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  7. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleKotlinDslReferencePlugin.java

                return new URI("https://github.com/gradle/gradle/blob/" + commitId + "/" + relativeLocation);
            } catch (URISyntaxException e) {
                throw new RuntimeException(e);
            }
        }
    
        private static DokkaExtension getDokkaExtension(Project project) {
            return project.getExtensions().getByType(DokkaExtension.class);
        }
    
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed May 28 11:34:42 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/core/convert/BooleanConversionUtilTest.java

    /*
     * Copyright 2012-2025 CodeLibs Project and the Others.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *     http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/core/convert/StringConversionUtilTest.java

    /*
     * Copyright 2012-2025 CodeLibs Project and the Others.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *     http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/collection/Indexed.java

            this.index = index;
        }
    
        /**
         * Returns the element.
         *
         * @return the element
         */
        public T getElement() {
            return element;
        }
    
        /**
         * Returns the index.
         *
         * @return the index
         */
        public int getIndex() {
            return index;
        }
    
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 1.4K bytes
    - Viewed (0)
Back to top