Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,664 for PROPERTY (0.15 sec)

  1. fess-crawler-es/src/main/resources/crawler_es.xml

    		<property name="queueIndex">"fess_crawler.queue"</property>
    		<property name="queueShards">5</property>
    		<property name="queueReplicas">1</property>
    		<property name="dataIndex">"fess_crawler.data"</property>
    		<property name="dataShards">5</property>
    		<property name="dataReplicas">1</property>
    		<property name="filterIndex">"fess_crawler.filter"</property>
    		<property name="filterShards">5</property>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Fri Dec 03 12:48:53 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/documentation/docs/src/snippets/modelRules/basicRuleSourcePlugin/groovy/build.gradle

    // end::property-type-file[]
    
    // tag::property-type-long[]
      void setId(Long id)
      Long getId()
    // end::property-type-long[]
    
    // tag::property-type-enum[]
      void setMaritalStatus(MaritalStatus status)
      MaritalStatus getMaritalStatus()
    // end::property-type-enum[]
    
    // tag::property-type-collection-scalar[]
       void setUserGroups(List<String> groups)
       List<String> getUserGroups()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. 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)
  7. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publication/DefaultMavenPomMailingList.java

        private final Property<String> archive;
        private final SetProperty<String> otherArchives;
    
        @Inject
        public DefaultMavenPomMailingList(ObjectFactory objectFactory) {
            name = objectFactory.property(String.class);
            subscribe = objectFactory.property(String.class);
            unsubscribe = objectFactory.property(String.class);
            post = objectFactory.property(String.class);
            archive = objectFactory.property(String.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. 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)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/FilteringProviderTest.groovy

            def owner = Stub(ModelObject)
            _ * owner.taskThatOwnsThisObject >> task
            def property = TestUtil.objectFactory().property(String)
            property.attachOwner(owner, Describables.of("<prop>"))
            property.attachProducer(owner)
            property.set("12")
            return property
        }
    
        Property<String> propertyWithCompletedProducer() {
            def task = Mock(Task)
            def state = Mock(TaskState)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 20:21:32 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/AbstractBuildOption.java

        }
    
        public AbstractBuildOption(String property, V... commandLineOptionConfiguration) {
            this(property, null, commandLineOptionConfiguration != null ? Arrays.asList(commandLineOptionConfiguration) : Collections.<V>emptyList());
        }
    
        private AbstractBuildOption(String property, String deprecatedProperty, List<V> commandLineOptionConfigurations) {
            this.property = property;
            this.deprecatedProperty = deprecatedProperty;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 21:41:57 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top