Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 766 for property2 (0.13 sec)

  1. platforms/core-configuration/declarative-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/declarative/dsl/tooling/builders/r89/DeclarativeDslToolingModelsCrossVersionTest.groovy

            and: 'conventions get properly applied'
            // check the conventions in the resolution results, they should be there, and it is independent of the DOM overlay
            def projectEvaluated = project.stepResults.values()[0] as EvaluationResult.Evaluated<AnalysisStepResult>
            projectEvaluated.stepResult.assignmentTrace.resolvedAssignments.entrySet().any {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 11:32:11 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/ClassDocRendererTest.groovy

            <para>No script blocks</para>
        </section>
        <section>
            <title>Property details</title>
            <section id="prop1" role="detail">
                <title><classname>org.gradle.Type</classname> <literal>deprecatedProperty</literal> (read-only)</title>
                <caution>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 40.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromGroovyDslIntegrationTest.groovy

            where:
            kind       | setExpr         | expr
            "property" | "ext.foo = 1"   | "foo"
            "property" | "ext.foo = 1"   | "hasProperty('foo')"
            "property" | "ext.foo = 1"   | "property('foo')"
            "property" | "ext.foo = 1"   | "findProperty('foo')"
            "property" | "ext.foo = 1"   | "getProperty('foo')"
            "property" | "ext.foo = 1"   | "properties"
            "method"   | "def foo() { }" | "foo()"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/DefaultPropertyTest.groovy

            def property = property()
            property.set(someValue())
            property.set((String) null)
    
            expect:
            !property.present
            property.getOrNull() == null
            property.getOrElse(someValue()) == someValue()
            property.getOrElse(null) == null
        }
    
        def "can't set null provider to discard value"() {
            given:
            def property = property()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. maven-model-builder/src/site/apt/index.apt

      ** since Maven 3.5.0, if <<<project.directory>>> POM property value is defined, it is used instead of artifact id:
      this permits default inheritance calculations when module directory name is not equal to artifact id. Notice that this
      property is not inherited from a POM to its child: child's POM will use child artifact id if property is not
      set.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 20 10:58:12 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/validation/ValidationMessageCheckerTest.groovy

            when:
            render mutableSetter {
                property('someProperty')
                propertyType('Property<String>')
                includeLink()
            }
    
            then:
            outputEquals """
    Property 'someProperty' of mutable type 'Property<String>' is writable.
    
    Reason: Properties of type 'Property<String>' are already mutable.
    
    Possible solution: Remove the 'setSomeProperty' method.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/admin/user/admin_user_details.jsp

            </div>
            <section class="content">
                <la:form action="/admin/user/">
                    <la:hidden property="crudMode"/>
                    <c:if test="${crudMode==2 || crudMode==3 || crudMode==4}">
                        <la:hidden property="id"/>
                        <la:hidden property="versionNo"/>
                    </c:if>
                    <div class="row">
                        <div class="col-md-12">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 17.8K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/fileconfig/admin_fileconfig_edit.jsp

                    <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"/>
                    <la:hidden property="sortOrder"/>
                    <div class="row">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 15.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/PropertyLifecycleIntegrationTest.groovy

                def property = objects.property(Integer)
                property.set(provider)
    
                assert property.get() == 1
                assert property.get() == 2
    
                property.finalizeValueOnRead()
    
                assert counter == 2 // is lazy
                assert property.get() == 3
    
                counter = 45
                assert property.get() == 3
    
                property.set(12)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 14:00:52 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/view/admin/user/admin_user_edit.jsp

                </div>
            </div>
            <section class="content">
                <la:form action="/admin/user/">
                    <la:hidden property="crudMode"/>
                    <c:if test="${crudMode==2}">
                        <la:hidden property="id"/>
                        <la:hidden property="versionNo"/>
                    </c:if>
                    <div class="row">
                        <div class="col-md-12">
                            <div
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 14 12:15:45 UTC 2020
    - 31.4K bytes
    - Viewed (0)
Back to top