Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 293 for PROP (0.03 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorDecoratedTest.groovy

            def beanWithDisplayName = create(FinalReadOnlyNonManagedPropertyBean, Describables.of("<display-name>"))
    
            expect:
            bean.prop.toString() == "property 'prop'"
            beanWithDisplayName.prop.toString() == "<display-name> property 'prop'"
        }
    
        def "can attach nested extensions to object"() {
            given:
            def bean = create(Bean)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 22K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/util/ConfigureUtilTest.groovy

            def prop = "prop"
            def foo = "foo"
    
            when:
            ConfigureUtil.configureByMap(["$prop": 'value'], obj, ["$foo"])
    
            then:
            def e = thrown(IncompleteInputException)
            e.missingKeys.contains("foo")
    
            when:
            ConfigureUtil.configureByMap(["$prop": 'value'], obj, ["$prop"])
    
            then:
            assert obj.prop == 'value'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:40:52 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/ConfigureByMapActionTest.groovy

            when:
            action([prop: 'value'], ['prop']).execute(obj)
    
            then:
            assert obj.prop == 'value'
        }
    
        def canConfigureAndValidateObjectUsingMapUsingGstrings() {
            given:
            Bean obj = new Bean()
            def prop = "prop"
            def foo = "foo"
    
            when:
            action(["$prop": 'value'], ["$foo"]).execute(obj)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:07 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  4. platforms/enterprise/enterprise-plugin-performance/src/templates/project-with-source/Production.java

        }
    
        public String getProperty() {
            return property;
        }
    <% propertyCount.times { %>
        private String prop${it};
    
        public String getProp${it}() {
            return prop${it};
        }
    
        public void setProp${it}(String value) {
            prop${it} = value;
        }
    <% } %>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:38:06 UTC 2023
    - 467 bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/PropertyReportRendererTest.groovy

        }}
    
        def 'writes property'() {
            when:
            renderer.addProperty("prop", "value")
    
            then:
            assert containsLine(out.toString(), "prop: value")
        }
    
        def 'writes null property'() {
            when:
            renderer.addProperty("prop", null)
    
            then:
            assert containsLine(out.toString(), "prop: null")
        }
    
        void 'writes property that throws in toString'() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 24 15:02:02 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/metaobject/BeanDynamicObjectTest.groovy

            def bean = new Bean(prop: "value")
            def dynamicObject = new BeanDynamicObject(bean)
    
            expect:
            dynamicObject.hasProperty("prop")
            dynamicObject.getProperty("prop") == "value"
        }
    
        def "can get value of read only property of groovy object"() {
            def bean = new Bean(prop: "value")
            def dynamicObject = new BeanDynamicObject(bean)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  7. maven-core/src/test/resources-settings/settings-no-pom/settings.xml

      <profiles>
        <profile>
          <id>local-profile</id>
          <properties>
            <local-profile-prop>local-profile-prop-value</local-profile-prop>
          </properties>
        </profile>
      </profiles>
    
      <activeProfiles>
        <activeProfile>local-profile</activeProfile>
      </activeProfiles>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:50:27 UTC 2020
    - 565 bytes
    - Viewed (0)
  8. platforms/jvm/plugins-groovy/src/integTest/groovy/org/gradle/integtests/GroovyToJavaConversionIntegrationTest.groovy

                            properties.each { prop ->
                                if (prop.getters.find { it.declaringClass == convertedClass }) {
                                    println "Checking property \${prop.name} on \${convertedClass.name}"
                                    if (convertedClass == org.gradle.plugins.ide.eclipse.model.AbstractClasspathEntry && prop.name == "exported") {
                                        return
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. .github/workflows/contributor-pr.yml

              java-version: 11
          - id: determine-sys-prop-args
            uses: actions/github-script@v7
            with:
              script: |
                if (context.payload.pull_request && context.payload.pull_request.head.repo.fork) {
                    core.setOutput('sys-prop-args', '-DagreePublicBuildScanTermOfService=yes -DcacheNode=us')
                } else {
                    core.setOutput('sys-prop-args', '-DcacheNode=us')
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. src/main/assemblies/files/fess

    #    -h
    #    --help        print command line options
    #    -v            print fess version, then exit
    #    -D prop       set JAVA system property
    #    -X prop       set non-standard JAVA system property
    #   --prop=val
    #   --prop val     set fess property (i.e.  -Des.<prop>=<val>)
    
    CDPATH=""
    SCRIPT="$0"
    
    # SCRIPT may be an arbitrarily deep series of symlinks. Loop until we have the concrete path.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top