Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,326 for propertyOf (0.13 sec)

  1. src/main/webapp/WEB-INF/env/crawler/resources/app.xml

    		instance="prototype">
    		<!--
    		<property name="maxDocumentCacheSize">5</property>
    		<property name="unprocessedDocumentSize">100</property>
    		<property name="threadDump">false</property>
    		<postConstruct name="addBoostDocumentRule">
    			<arg>
    				<component class="org.codelibs.fess.indexer.BoostDocumentRule">
    					<property name="matchExpression">"url.matches(\".*fess.*\")"</property>
    					<property name="boostExpression">"1000.0"</property>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Apr 09 02:14:47 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/admin/relatedcontent/admin_relatedcontent_edit.jsp

                <la:form action="/admin/relatedcontent/">
                    <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
    - 5.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/common/schemaFromProperties.kt

            .filter { property ->
                (includeMemberFilter.shouldIncludeMember(property) ||
                    kClass.primaryConstructor?.parameters.orEmpty().any { it.name == property.name && it.type == property.returnType }) &&
                    property.visibility == KVisibility.PUBLIC &&
                    isGradlePropertyType(property.returnType)
            }.map { property ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/PropertyAccessResolver.kt

        ) {
            checkPropertyAccessOnCurrentReceiver(reference.property, reference.receiver, reference.originElement)
        }
    
        private
        fun AnalysisContext.checkPropertyAccessOnCurrentReceiver(property: DataProperty, receiver: ObjectOrigin, access: LanguageTreeElement) {
            if (property.isDirectAccessOnly) {
                checkAccessOnCurrentReceiver(receiver, access)
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultProperty.java

        }
    
        @Override
        public Property<T> convention(Provider<? extends T> provider) {
            Preconditions.checkArgument(provider != null, "Cannot set the convention of a property using a null provider.");
            setConvention(Providers.internal(provider).asSupplier(getValidationDisplayName(), type, sanitizer));
            return this;
        }
    
        @Override
        public Property<T> unset() {
            super.unset();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/PropertyDelegate.kt

    
    /**
     * Provides efficient access to a property.
     */
    interface PropertyDelegate {
        operator fun <T> getValue(receiver: Any?, property: KProperty<*>): T
    }
    
    
    /**
     * Provides efficient access to a mutable dynamic property.
     */
    interface MutablePropertyDelegate : PropertyDelegate {
        operator fun <T> setValue(receiver: Any?, property: KProperty<*>, value: T)
    }
    
    
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 09:50:04 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/admin/accesstoken/admin_accesstoken_edit.jsp

                <la:form action="/admin/accesstoken/">
                    <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
    - 6K bytes
    - Viewed (0)
  8. platforms/software/resources-gcs/src/main/java/org/gradle/internal/resource/transport/gcp/gcs/GcsConnectionProperties.java

                    throw new IllegalArgumentException("System property [" + GCS_ENDPOINT_PROPERTY + "=" + property + "]  must be a valid URI");
                }
            }
            return uri;
        }
    
        private static String configureServicePath(String property) {
            if (StringUtils.isNotBlank(property)) {
               return property;
            } else {
                return null;
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/DelegatedExtraPropertiesIntegrationTest.kt

            assertThat(
                buildAndFail("myTask").error,
                containsString("Cannot get non-null extra property 'foo' as it does not exist")
            )
        }
    
        @Test
        fun `non-nullable delegated extra property access of existing null extra property throws`() {
    
            withBuildScript(
                """
                val myTask = task("myTask") {
                    val foo: Int? by extra { null }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPomContributor.java

        /**
         * The URL of this contributor.
         */
        Property<String> getUrl();
    
        /**
         * The organization name of this contributor.
         */
        Property<String> getOrganization();
    
        /**
         * The organization's URL of this contributor.
         */
        Property<String> getOrganizationUrl();
    
        /**
         * The roles of this contributor.
         */
        SetProperty<String> getRoles();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top