Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for arch (0.18 sec)

  1. maven-core/src/main/java/org/apache/maven/settings/SettingsUtilsV4.java

                            .arch(settingsOs.getArch())
                            .family(settingsOs.getFamily())
                            .name(settingsOs.getName())
                            .version(settingsOs.getVersion())
                            .location("arch", toLocation(settingsOs.getLocation("arch")))
                            .location("family", toLocation(settingsOs.getLocation("family")))
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Thu Feb 15 08:42:00 GMT 2024
    - 13.8K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/profiles/activation/OperatingSystemProfileActivator.java

                return result;
            }
        }
    
        private boolean determineArchMatch(String arch) {
            String test = arch;
            boolean reverse = false;
    
            if (test.startsWith("!")) {
                reverse = true;
                test = test.substring(1);
            }
    
            boolean result = Os.OS_ARCH.equals(test);
    
            if (reverse) {
                return !result;
            } else {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Sep 22 06:01:36 GMT 2023
    - 3.7K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/settings/SettingsUtilsTest.java

                    .value("value" + Long.toHexString(entropy.nextLong()))
                    .build();
            ActivationOS ao = ActivationOS.newBuilder()
                    .arch("arch" + Long.toHexString(entropy.nextLong()))
                    .family("family" + Long.toHexString(entropy.nextLong()))
                    .name("name" + Long.toHexString(entropy.nextLong()))
    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)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/SettingsUtilsV4.java

                            .arch(settingsOs.getArch())
                            .family(settingsOs.getFamily())
                            .name(settingsOs.getName())
                            .version(settingsOs.getVersion())
                            .location("arch", toLocation(settingsOs.getLocation("arch")))
                            .location("family", toLocation(settingsOs.getLocation("family")))
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 13.4K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/profile/Os.java

         */
        public static final String OS_NAME = System.getProperty("os.name").toLowerCase(Locale.ENGLISH);
    
        /**
         * The OA architecture.
         */
        public static final String OS_ARCH = System.getProperty("os.arch").toLowerCase(Locale.ENGLISH);
    
        /**
         * The OS version.
         */
        public static final String OS_VERSION = System.getProperty("os.version").toLowerCase(Locale.ENGLISH);
    
        /**
    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)
  6. maven-compat/src/main/mdo/profiles.mdo

              <type>String</type>
              <description>The general family of the OS to be used to activate a profile (e.g. 'windows')</description>
            </field>
            <field>
              <name>arch</name>
              <version>1.0.0</version>
              <type>String</type>
              <description>The architecture of the OS to be used to activate a profile</description>
            </field>
            <field>
    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)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/profile/OperatingSystemProfileActivator.java

            boolean active = ensureAtLeastOneNonNull(os);
    
            String actualOsName = context.getSystemProperties().get("os.name").toLowerCase(Locale.ENGLISH);
            String actualOsArch = context.getSystemProperties().get("os.arch").toLowerCase(Locale.ENGLISH);
            String actualOsVersion = context.getSystemProperties().get("os.version").toLowerCase(Locale.ENGLISH);
    
            if (active && os.getFamily() != null) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 4.9K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    org/codehaus/plexus/util/Os.class package org.codehaus.plexus.util; public synchronized class Os { private static final String OS_NAME; private static final String OS_ARCH; private static final String OS_VERSION; private static final String PATH_SEP; private String family; private String name; private String version; private String arch; public void Os(); public void Os(String); public void setFamily(String); public void setName(String); public void setArch(String); public void setVersion(String); public...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 164.6K bytes
    - Viewed (0)
  9. apache-maven/src/assembly/maven/conf/toolchains.xml

       |   Based on the toolchain-configuration in the pom.xml Maven will search for
       |   matching <provides/> configuration. You can decide for yourself which key-value
       |   pairs to use. Often used keys are 'version', 'vendor' and 'arch'. By default
       |   the version has a special meaning. If you configured in the pom.xml '1.5'
       |   Maven will search for 1.5 and above.
       |
       | * configuration: Additional configuration for this tool.
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Dec 24 18:09:10 GMT 2020
    - 3.5K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.jar

    = openvms; private static final java.util.Set validFamilies; private static final String PATH_SEP; public static final String OS_NAME; public static final String OS_ARCH; public static final String OS_VERSION; public static final String OS_FAMILY; private String family; private String name; private String version; private String arch; public void Os(); public void Os(String); private static java.util.Set setValidFamilies(); public void setFamily(String); public void setName(String); public void setArch(String);...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 200.2K bytes
    - Viewed (0)
Back to top