Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 113 for promise (0.16 sec)

  1. maven-core/src/test/resources/apiv4-repo/org/apache/apache/3/apache-3.pom

          <releases>
            <enabled>false</enabled>
          </releases>
        </repository>
      </repositories>
      <distributionManagement>
        <!-- Site omitted - each project must provide their own -->
        <repository>
          <id>apache.releases</id>
          <name>Apache Release Distribution Repository</name>
          <url>scp://people.apache.org/www/people.apache.org/repo/m2-ibiblio-rsync-repository</url>
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 3.3K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/profile/Os.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.internal.impl.model.profile;
    
    import java.util.Locale;
    import java.util.stream.Stream;
    
    /**
     * OS support
     */
    public class Os {
    
        /**
         * The OS Name.
         */
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 7.3K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequestPopulator.java

            for (Server server : settings.getServers()) {
                server = server.clone();
    
                request.addServer(server);
            }
    
            //  <proxies>
            //    <proxy>
            //      <active>true</active>
            //      <protocol>http</protocol>
            //      <host>proxy.somewhere.com</host>
            //      <port>8080</port>
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Jun 19 15:04:04 GMT 2023
    - 8.1K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/projects/transform/after.pom

          </plugin>
        </plugins>
      </build>
      <profiles>
        <profile>
          <id>default-active</id>
          <activation>
            <activeByDefault>true</activeByDefault>
          </activation>
          <properties>
            <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
          </properties>
        </profile>
        <profile>
          <id>file</id>
          <activation>
            <file>
    Plain Text
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Thu Sep 14 07:51:37 GMT 2023
    - 2.4K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilderResult.java

            return this;
        }
    
        @Override
        public List<Profile> getActivePomProfiles(String modelId) {
            List<Profile> profiles = activePomProfiles.get(modelId);
            return profiles != null ? profiles : List.of();
        }
    
        public DefaultModelBuilderResult setActivePomProfiles(String modelId, List<Profile> activeProfiles) {
            // Intentionally notNull because Super POM may not contain a modelId
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 7.1K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingRequest.java

            }
        }
    
        public void setProfiles(List<Profile> profiles) {
            if (profiles != null) {
                this.profiles = new ArrayList<>(profiles);
            } else {
                this.profiles.clear();
            }
        }
    
        public void addProfile(Profile profile) {
            profiles.add(profile);
        }
    
        public List<Profile> getProfiles() {
            return profiles;
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 8.9K bytes
    - Viewed (0)
  7. maven-core/src/test/resources-project-builder/profile-default-deactivation/pom.xml

            </plugins>
          </build>
        </profile>
        <profile>
          <id>profile4</id>
          <build>
            <plugins>
              <plugin>
                <groupId>org.apache.maven.its.plugins</groupId>
                <artifactId>maven-it-plugin-touch</artifactId>
                <version>2.1</version>
              </plugin>
            </plugins>
          </build>
        </profile>
      </profiles>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Nov 09 12:45:14 GMT 2019
    - 1.1K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/profiles/ProfileManager.java

    import java.util.List;
    import java.util.Map;
    import java.util.Properties;
    
    import org.apache.maven.model.Profile;
    import org.apache.maven.profiles.activation.ProfileActivationException;
    
    /**
     * ProfileManager
     */
    @Deprecated
    public interface ProfileManager {
    
        void addProfile(Profile profile);
    
        void explicitlyActivate(String profileId);
    
        void explicitlyActivate(List<String> profileIds);
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 1.6K bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/project/MavenProjectTest.java

            MavenProject projectToClone = getProject(f);
            List<Profile> activeProfilesOrig = projectToClone.getActiveProfiles();
    
            assertEquals(1, activeProfilesOrig.size(), "Expecting 1 active profile");
    
            MavenProject clonedProject = projectToClone.clone();
    
            List<Profile> activeProfilesClone = clonedProject.getActiveProfiles();
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 8K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/settings/SettingsUtilsTest.java

                pluginRepos.add(r);
            }
            Profile p = Profile.newBuilder()
                    .id("id" + Long.toHexString(entropy.nextLong()))
                    .activation(a)
                    .properties(props)
                    .repositories(repos)
                    .pluginRepositories(pluginRepos)
                    .build();
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 6.7K bytes
    - Viewed (0)
Back to top