Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for activeByDefault (0.26 sec)

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

                        org.apache.maven.api.model.Activation.newBuilder();
    
                activation.activeByDefault(settingsActivation.isActiveByDefault());
                activation.location("activeByDefault", toLocation(settingsActivation.getLocation("activeByDefault")));
    
                activation.jdk(settingsActivation.getJdk());
    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-api-impl/src/main/java/org/apache/maven/internal/impl/SettingsUtilsV4.java

                        org.apache.maven.api.model.Activation.newBuilder();
    
                activation.activeByDefault(settingsActivation.isActiveByDefault());
                activation.location("activeByDefault", toLocation(settingsActivation.getLocation("activeByDefault")));
    
                activation.jdk(settingsActivation.getJdk());
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 13.4K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/settings/SettingsUtilsTest.java

                    .version("version" + Long.toHexString(entropy.nextLong()))
                    .build();
            Activation a = Activation.newBuilder()
                    .activeByDefault(entropy.nextBoolean())
                    .jdk("jdk" + Long.toHexString(entropy.nextLong()))
                    .file(af)
                    .property(ap)
                    .os(ao)
                    .packaging("pom")
    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. pom.xml

    		<packaging.fess.dictionary.dir>/var/lib/fess/config</packaging.fess.dictionary.dir>
    	</properties>
    	<profiles>
    		<profile>
    			<id>build</id>
    			<activation>
    				<activeByDefault>true</activeByDefault>
    			</activation>
    			<properties>
    				<test.include.path>**/*Test.java</test.include.path>
    				<test.command.args>--illegal-access=permit</test.command.args>
    			</properties>
    		</profile>
    		<profile>
    XML
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Apr 22 12:06:58 GMT 2024
    - 48.7K bytes
    - Viewed (0)
  5. api/maven-api-settings/src/main/mdo/settings.mdo

            The conditions within the build runtime environment which will trigger
            the automatic inclusion of the parent build profile.
          </description>
          <fields>
            <field>
              <name>activeByDefault</name>
              <version>1.0.0+</version>
              <type>boolean</type>
              <description>
                Flag specifying whether this profile is active as a default.
              </description>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sat Feb 17 18:40:11 GMT 2024
    - 33.3K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                } finally {
                    stk.pop();
                }
            }
    
            @Override
            protected Activation.Builder transformActivation_ActiveByDefault(
                    Supplier<? extends Activation.Builder> creator, Activation.Builder builder, Activation target) {
                return builder;
            }
    
            @Override
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 13:13:07 GMT 2024
    - 73.1K bytes
    - Viewed (0)
  7. api/maven-api-model/src/main/mdo/maven.mdo

            be all satisfied to activate the profile.
          </description>
          <fields>
            <field>
              <name>activeByDefault</name>
              <version>4.0.0+</version>
              <type>boolean</type>
              <description>If set to true, this profile will be active unless another profile in this
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
Back to top