Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Boolean (0.23 sec)

  1. api/maven-api-plugin/src/main/mdo/plugin.mdo

              <version>1.0.0+</version>
              <description></description>
              <type>boolean</type>
              <defaultValue>false</defaultValue>
            </field>
            <field>
              <name>inheritedByDefault</name>
              <version>1.0.0+</version>
              <description></description>
              <type>boolean</type>
              <defaultValue>true</defaultValue>
            </field>
            <field>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Apr 14 17:14:22 GMT 2024
    - 23.6K bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/boolean-interpolation/pom.xml

        Verify that POM fields that are of type boolean can be interpolated with expressions.
      </description>
    
      <properties>
        <filter.resources>true</filter.resources>
        <releasesEnabled>true</releasesEnabled>
      </properties>
    
      <repositories>
        <repository>
          <id>maven-core-it</id>
          <url>file:///${basedir}/repo</url>
          <releases>
            <!-- That's the boolean POM field we would like to interpolate -->
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.5K bytes
    - Viewed (0)
  3. maven-compat/src/main/mdo/paramdoc.mdo

            </field>
            <field>
              <version>1.0.0</version>
              <name>editable</name>
              <description>Whether the value of this expression can be changed.</description>
              <type>boolean</type>
              <defaultValue>true</defaultValue>
            </field>
          </fields>
        </class>
      </classes>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Aug 21 15:04:07 GMT 2009
    - 5.4K bytes
    - Viewed (0)
  4. pom.xml

    							<className>jcifs/Configuration</className>
    							<differenceType>7012</differenceType>
    							<method>boolean isSendNTLMTargetName()</method>
    						</difference>
    
    						<difference>
    							<className>jcifs/Configuration</className>
    							<differenceType>7012</differenceType>
    							<method>boolean isAllowGuestFallback()</method>
    						</difference>
    						<difference>
    							<className>jcifs/Configuration</className>
    XML
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 04 13:19:42 GMT 2024
    - 9.3K bytes
    - Viewed (1)
  5. api/maven-api-settings/src/main/mdo/settings.mdo

         * To allow interpolation of this field, this method lazily parses
         * the {@link #getActiveString()} value as a boolean and defaults to {@code true}
         * if not set.
         *
         * @return a boolean indicating if this proxy is active
         */
        public boolean isActive() {
            return (getActiveString() != null) ? Boolean.parseBoolean(getActiveString()) : true;
        }
    
        /**
         * Returns the port to use for this proxy.
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Feb 17 18:40:11 GMT 2024
    - 33.3K bytes
    - Viewed (0)
  6. api/maven-api-metadata/src/main/mdo/metadata.mdo

        {
            return sv.getClassifier() + ":" + sv.getExtension();
        }
    
        public boolean merge( Metadata sourceMetadata )
        {
            boolean changed = false;
    
            for ( Plugin plugin : sourceMetadata.getPlugins() )
            {
                boolean found = false;
    
                for ( Plugin preExisting : getPlugins() )
                {
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 11 14:06:34 GMT 2024
    - 15.8K bytes
    - Viewed (0)
  7. maven-compat/src/main/mdo/profiles.mdo

          </fields>
          <codeSegments>
            <codeSegment>
              <version>1.0.0</version>
              <code><![CDATA[
                public boolean equals( Object obj )
                {
                    RepositoryBase other =  (RepositoryBase) obj;
    
                    boolean retValue = false;
    
                    if ( id != null )
                    {
                        retValue = id.equals( other.id );
                    }
    
    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)
  8. api/maven-api-model/src/main/mdo/maven.mdo

                <![CDATA[
    
        public boolean isChildScmConnectionInheritAppendPath() {
            return (getChildScmConnectionInheritAppendPath() != null) ? Boolean.parseBoolean(getChildScmConnectionInheritAppendPath()) : true;
        }
    
        public boolean isChildScmDeveloperConnectionInheritAppendPath() {
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
  9. api/maven-api-toolchain/src/main/mdo/toolchains.mdo

                <![CDATA[
            public static final String USER_LEVEL = "user-level";
            public static final String GLOBAL_LEVEL = "global-level";
    
            private String sourceLevel = USER_LEVEL;
            private boolean sourceLevelSet = false;
    
            public void setSourceLevel(String sourceLevel) {
                if (sourceLevelSet) {
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 07 21:28:01 GMT 2024
    - 8.5K bytes
    - Viewed (0)
  10. .idea/inspectionProfiles/Gradle.xml

            <constraint name="TYPE" within="" contains="" />
            <constraint name="ARR" nameOfExprType=".*\[\]" within="" contains="" />
            <constraint name="RES" nameOfExprType="boolean" exprTypeWithinHierarchy="true" within="" contains="" />
            <constraint name="ITEM" within="" contains="" />
            <constraint name="TARGET" within="" contains="" />
          </replaceConfiguration>
    XML
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Apr 11 13:39:08 GMT 2024
    - 13K bytes
    - Viewed (0)
Back to top