Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,664 for PROPERTY (0.1 sec)

  1. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publication/DefaultMavenPomOrganization.java

            url = 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.3K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/admin/boostdoc/admin_boostdoc_details.jsp

                <la:form action="/admin/boostdoc/">
                    <la:hidden property="crudMode"/>
                    <c:if test="${crudMode==2 || crudMode==3 || crudMode==4}">
                        <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: Wed Feb 12 20:25:27 UTC 2020
    - 4.5K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/admin/relatedquery/admin_relatedquery_details.jsp

                <la:form action="/admin/relatedquery/">
                    <la:hidden property="crudMode"/>
                    <c:if test="${crudMode==2 || crudMode==3 || crudMode==4}">
                        <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
    - 4.5K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/tasks/TaskOutputFilePropertyBuilder.java

         * value specified must meet the validation constraints for the property.
         */
        TaskOutputFilePropertyBuilder optional();
    
        /**
         * Sets whether the task property is optional. If the task property is optional, it means that a value does not have to be
         * specified for the property, but any value specified must meet the validation constraints for the property.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 14 12:40:35 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/providers/property/groovy/build.gradle

    plugins {
        id 'groovy'
    }
    
    repositories {
        mavenCentral()
    }
    
    // tag::set-prop[]
    // Setting a property
    def simpleMessageProperty = project.objects.property(String)
    simpleMessageProperty.set("Hello, World from a Property!")
    // Accessing a property
    println(simpleMessageProperty.get())
    // end::set-prop[]
    
    // tag::set-prov[]
    // Setting a provider
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. build-logic/documentation/src/test/resources/org/gradle/test/JavaClass.java

         */
        public void setIgnoreMe2(String a, int b) {
        }
    
        /**
         * A write-only property.
         */
        public void setWriteOnly(JavaInterface value) {
        }
    
        /**
         * A property.
         */
        public JavaInterface getSomeProp() {
            return this;
        }
    
        /**
         * The setter for a property.
         * @param value
         */
        public void setSomeProp(JavaInterface value) {
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  7. src/main/resources/log4j2.xml

    <Configuration status="WARN">
    
    	<Properties>
    		<Property name="domain.name" value="${sys:fess.log.name:-fess}" />
    		<Property name="log.level" value="${sys:fess.log.level:-debug}" />
    		<Property name="root.log.level" value="${sys:fess.log.level:-info}" />
    		<Property name="log.pattern" value="%d [%t] %-5p %msg%n" />
    		<Property name="log.file.basedir" value="${sys:fess.log.path:-target/logs}" />
    		<Property name="backup.date.suffix" value="_%d{yyyyMMdd}" />
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Feb 20 13:17:33 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/main/java/org/gradle/language/cpp/internal/DefaultCppExecutable.java

        private final RegularFileProperty executableFile;
        private final Property<Task> executableFileProducer;
        private final DirectoryProperty installationDirectory;
        private final Property<InstallExecutable> installTaskProperty;
        private final Property<LinkExecutable> linkTaskProperty;
        private final Property<Configuration> runtimeElementsProperty;
        private final ConfigurableFileCollection outputs;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/main/java/org/gradle/language/swift/internal/DefaultSwiftExecutable.java

        private final RegularFileProperty executableFile;
        private final Property<Task> executableFileProducer;
        private final DirectoryProperty installDirectory;
        private final Property<Configuration> runtimeElementsProperty;
        private final Property<LinkExecutable> linkTaskProperty;
        private final Property<InstallExecutable> installTaskProperty;
        private final RegularFileProperty debuggerExecutableFile;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/main/java/org/gradle/language/swift/internal/DefaultSwiftSharedLibrary.java

        private final RegularFileProperty linkFile;
        private final Property<Task> linkFileProducer;
        private final RegularFileProperty runtimeFile;
        private final Property<LinkSharedLibrary> linkTaskProperty;
        private final Property<Configuration> linkElements;
        private final Property<Configuration> runtimeElements;
        private final ConfigurableFileCollection outputs;
    
        @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.5K bytes
    - Viewed (0)
Back to top