Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,512 for property1 (0.37 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/model/DefaultObjectFactoryTest.groovy

        }
    
        def "list property has empty list as value"() {
            expect:
            def property = factory.listProperty(String)
            property.present
            property.get().empty
        }
    
        def "can create list property with primitive type"() {
            given:
            def property = factory.listProperty(type)
    
            expect:
            property.elementType == boxedType
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 16:04:05 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  2. src/main/resources/crawler/transformer.xml

    		<property name="name">"fessXpathTransformer"</property>
    		<property name="featureMap">defaultFeatureMap</property>
    		<property name="propertyMap">defaultPropertyMap</property>
    		<property name="childUrlRuleMap">htmlUrlRuleMap</property>
    		<!--
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jan 10 03:35:10 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/AbstractPropertySpec.groovy

            then:
            !property.isFinalized()
    
            when:
            property.finalizeValue()
    
            then:
            property.isFinalized()
        }
    
        def "finalization checking works with providers"() {
            given:
            def property = propertyWithValue(someValue())
    
            expect:
            property.isPresent()
            !property.isFinalized()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 12:47:05 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. src/main/resources/fess.xml

    		<!-- 
    		<property name="parameterKey">"fessRoles"</property>
    		<property name="encryptedParameterValue">false</property>
    		<property name="headerKey">"fessRoles"</property>
    		<property name="encryptedHeaderValue">true</property>
    		<property name="cookieKey">"fessRoles"</property>
    		<property name="encryptedCookieValue">true</property>
    		<property name="cipher">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jan 01 06:48:48 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  5. src/main/resources/crawler/rule.xml

    		<property name="ruleId">"webHtmlRule"</property>
    		<property name="responseProcessor">
    			<component class="org.codelibs.fess.crawler.processor.FessResponseProcessor">
    				<property name="transformer">fessXpathTransformer</property>
    				<property name="successfulHttpCodes">(int[])[200]</property>
    				<property name="notModifiedHttpCodes">(int[])[304]</property>
    			</component>
    		</property>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jun 04 08:42:49 UTC 2020
    - 4.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/SystemPropertyInstrumentationInDynamicGroovyIntegrationTest.groovy

                                         "System.getProperties().get('some.property')",
                                         "getProperties().get('some.property')",
                                         "System.getProperty('some.property')",
                                         "System.getProperty(*['some.property'])",
                                         "getProperty('some.property')",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/provider/MapProperty.java

         * This property will query the entries of the map each time the value of this property is queried.
         *
         * <p>This method can also be used to discard the value of the property, by passing {@code null} as the value.
         * The convention for this property, if any, will be used to provide the value instead.
         *
         * @param entries the entries, can be {@code null}
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 16:25:03 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publication/DefaultMavenPomLicense.java

            name = objectFactory.property(String.class);
            url = objectFactory.property(String.class);
            distribution = objectFactory.property(String.class);
            comments = objectFactory.property(String.class);
        }
    
        @Override
        public Property<String> getName() {
            return name;
        }
    
        @Override
        public Property<String> getUrl() {
            return url;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. subprojects/core-api/src/test/groovy/org/gradle/api/internal/provider/views/AbstractHasMultiValuesPropertyCollectionViewTest.groovy

        }
    
        def "provider modifications should be visible on a view"() {
            given:
            def property = multiValueProperty()
            Collection<String> collection = newCollection(property)
    
            when:
            property.add("first")
            property.add("second")
            property.add("third")
            property.addAll(["forth", "fifth"])
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:28 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/view/admin/webauth/admin_webauth_edit.jsp

                <la:form action="/admin/webauth/">
                    <la:hidden property="crudMode"/>
                    <c:if test="${crudMode==2}">
                        <la:hidden property="id"/>
                        <la:hidden property="versionNo"/>
                    </c:if>
                    <la:hidden property="createdBy"/>
                    <la:hidden property="createdTime"/>
                    <div class="row">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 8.5K bytes
    - Viewed (0)
Back to top