Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,053 for PROPERTY (0.64 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java

        /**
         * Get the value of property as {@link String}.
         * @param propertyKey The key of the property. (NotNull)
         * @return The value of found property. (NotNull: if not found, exception)
         * @throws ConfigPropertyNotFoundException When the property is not found.
         */
        String get(String propertyKey);
    
        /**
         * Is the property true?
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. subprojects/core-api/src/test/groovy/org/gradle/api/internal/provider/views/ListPropertyListViewTest.groovy

        def "list specific modification operations work"() {
            given:
            def property = multiValueProperty()
            List<String> list = newCollection(property)
    
            when:
            property.add("first")
            list.add("second")
            list.add("third")
            list.addAll(["forth", "fifth"])
    
            then:
            property.get() == ["first", "second", "third", "forth", "fifth"]
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:28 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/build_services.adoc

    [[using_a_build_service_from_a_task]]
    == Using a build service in a task
    
    To use a build service from a task, you need to:
    
    1. Add a property to the task of type `Property<MyServiceType>`.
    2. Annotate the property with `@Internal` or `@ServiceReference` (since 8.0).
    3. Assign a shared build service provider to the property (optional, when using `@ServiceReference(<serviceName>)`).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:10 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/DeclarativeReflectionToObjectConverter.kt

            if (objectReflection is ObjectReflection.DataObjectReflection) {
                conversionFilter.filterProperties(objectReflection).forEach { property ->
                    val assigned = objectReflection.properties.getValue(property)
                    applyPropertyValue(objectReflection.objectOrigin, property, assigned)
                    apply(assigned.value, conversionFilter)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. deps.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <project name="deps" basedir=".">
    	<property name="target.dir" value="${basedir}/target/deps" />
    	<property name="webinf.dir" value="${basedir}/src/main/webapp/WEB-INF" />
    	<property name="crawler.dir" value="${basedir}/src/main/webapp/WEB-INF/env/crawler" />
    	<property name="suggest.dir" value="${basedir}/src/main/webapp/WEB-INF/env/suggest" />
    	<property name="thumbnail.dir" value="${basedir}/src/main/webapp/WEB-INF/env/thumbnail" />
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 26 05:59:50 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/main/java/org/gradle/buildinit/tasks/InitBuild.java

        private String type;
        private final Property<Boolean> splitProject = getProject().getObjects().property(Boolean.class);
        private String dsl;
        private final Property<Boolean> useIncubatingAPIs = getProject().getObjects().property(Boolean.class);
        private String testFramework;
        private String projectName;
        private String packageName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 12:58:10 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/internal-instrumentation-api/src/main/java/org/gradle/internal/instrumentation/api/annotations/ReplacesEagerProperty.java

    /**
     * Marks that a property replaces an eager property.
     */
    @Retention(RetentionPolicy.CLASS)
    @Target({ElementType.METHOD})
    public @interface ReplacesEagerProperty {
        /**
         * Overrides original type that will be used for generated code.
         * By default, the original type is determined from the lazy property type, e.g.:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. dbflute.xml

    <project name="dbflute" basedir=".">
    	<property name="mydbflute.dir" value="${basedir}/mydbflute" />
    	<property name="target.dir" value="${basedir}/target" />
    	<property name="branch.name" value="fess-14.14" />
    	<property name="mydbflute.url" value="https://github.com/lastaflute/lastaflute-example-waterfront/archive/${branch.name}.zip" />
    
    	<target name="mydbflute.check">
    		<condition property="mydbflute.exists">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 26 05:59:50 UTC 2024
    - 1000 bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/project/taskfactory/AnnotationProcessingTaskFactoryTest.groovy

            def e = thrown WorkValidationException
            validateException(task, e,
                missingValueMessage { property('cCompiler').includeLink() },
                missingValueMessage { property('CFlags').includeLink() },
                missingValueMessage { property('dns').includeLink() },
                missingValueMessage { property('URL').includeLink() })
        }
    
        def propertyValidationJavaBeanSpecSingleChar() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-application/src/main/java/org/gradle/api/plugins/internal/DefaultJavaApplication.java

    import org.gradle.api.provider.Property;
    import org.gradle.api.provider.ProviderFactory;
    import org.gradle.internal.deprecation.DeprecationLogger;
    
    public class DefaultJavaApplication implements JavaApplication {
        @SuppressWarnings("deprecation")
        private final org.gradle.api.plugins.ApplicationPluginConvention convention;
        private final Property<String> mainModule;
        private final Property<String> mainClass;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top