Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,479 for property2 (0.14 sec)

  1. src/main/webapp/WEB-INF/view/admin/fileauth/admin_fileauth_edit.jsp

                <la:form action="/admin/fileauth/">
                    <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
    - 7.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

        }
    
        private static boolean isNameProperty(PropertyMetadata property) {
            // Property is read only, called "name", has type String and getter is abstract
            return property.isReadOnly() && "name".equals(property.getName()) && property.getType() == String.class && property.getMainGetter().isAbstract();
        }
    
        private static boolean hasPropertyType(PropertyMetadata property) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  3. fess-crawler-lasta/src/main/resources/crawler/rule.xml

    		<property name="ruleId">"fileRule"</property>
    		<property name="defaultRule">true</property>
    		<property name="responseProcessor">
    			<component
    				class="org.codelibs.fess.crawler.processor.impl.DefaultResponseProcessor">
    				<property name="transformer">fileTransformer</property>
    				<property name="successfulHttpCodes">(int[])[200]</property>
    				<property name="notModifiedHttpCodes">(int[])[304]</property>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 1.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/KotlinDslAssignmentIntegrationTest.kt

                data class Container(val property: Property<String>)
                fun newStringProperty(): Property<String> = gradle.serviceOf<ObjectFactory>().property(String::class.java)
                val container = Container(newStringProperty()).apply {
                    property = "Hello world"
                }
                println("Settings property value: " + container.property.get())
                """.trimIndent()
            )
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  5. fess-crawler-lasta/src/main/resources/crawler/client.xml

    		instance="prototype">
    		<property name="connectionTimeout">15000</property>
    		<property name="soTimeout">30000</property>
    	</component>
    	<component name="httpClient"
    		class="org.codelibs.fess.crawler.client.FaultTolerantClient" instance="prototype">
    		<property name="crawlerClient">internalHttpClient</property>
    		<property name="maxRetryCount">5</property>
    		<property name="retryInterval">500</property>
    	</component>
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Tue Aug 08 12:54:47 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/initialization/DefaultSettingsTest.groovy

            when:
            settings.extensions.dynamicProperty = 'valued'
    
            then:
            settings.dynamicProperty == 'valued'
        }
    
        def 'fails on missing property'() {
            when:
            settings.unknownProp
    
            then:
            thrown(MissingPropertyException)
        }
    
        def 'has useful toString'() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 01 18:57:54 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/provider/HasMultipleValues.java

        /**
         * Sets the value of the property to the elements of the given iterable, and replaces any existing value. This property will query the elements of the iterable 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.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 18:32:13 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/StructNodeInitializer.java

                    }
                    if (property.isDeclaredAsHavingUnmanagedType()) {
                        throw new UnmanagedPropertyMissingSetterException(property.getName());
                    }
                }
            } else if (!shouldHaveANodeInitializer(property, propertySchema) && !property.isWritable() && !isNamePropertyOfANamedType(property)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/dom/operations/overlay/DocumentOverlayTest.kt

                    * property(a, literal(33)) -> ShadowedProperty(underlayProperty=property(a, literal(3)), overlayProperty=property(a, literal(33)))
                        - literal(33) -> FromOverlay(documentNode=property(a, literal(33)))
                    * property(b, literal(6)) -> FromOverlay(documentNode=property(b, literal(6)))
                        - literal(6) -> FromOverlay(documentNode=property(b, literal(6)))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. src/main/resources/fess_thumbnail.xml

    		<property name="name">"pdfThumbnailGenerator"</property>
    		<property name="commandList">
    			["${path}/generate-thumbnail",
    			"pdf",
    			"${url}",
    			"${outputFile}"]
    		</property>
    		<property name="generatorList">
    			["${path}/generate-thumbnail"]
    		</property>
    		<postConstruct name="addCondition">
    			<arg>"mimetype"</arg>
    			<arg>"application/pdf"
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Oct 11 21:34:52 UTC 2019
    - 5.4K bytes
    - Viewed (0)
Back to top