Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 418 for prop4 (0.26 sec)

  1. 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)
  2. 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)
  3. staging/src/k8s.io/apiserver/pkg/cel/common/values.go

    // are still needed internally to perform equality checks.
    func escapeKeyProps(idents []string) []string {
    	result := make([]string, len(idents))
    	for i, prop := range idents {
    		if escaped, ok := cel.Escape(prop); ok {
    			result[i] = escaped
    		} else {
    			result[i] = prop
    		}
    	}
    	return result
    }
    
    // unstructuredSetList represents an unstructured data instance of an OpenAPI array with x-kubernetes-list-type=set.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:30:17 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  4. maven-model/src/test/java/org/apache/maven/model/v4/ModelXmlTest.java

            Map<String, String> props = new LinkedHashMap<>();
            props.put("javax.version", "3.1.0");
            props.put("mockito.version", "1.10.19");
            props.put("hamcret.version", "2.1");
            props.put("lombok.version", "1.18.6");
            props.put("junit.version", "4.12");
            Model model = Model.newBuilder(true).properties(props).build();
            String xml = toXml(model);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Nov 27 23:11:34 UTC 2023
    - 3.9K 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. .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)
  8. src/test/java/jcifs/tests/AllTests.java

                return;
            }
            Properties props = new Properties();
            try ( FileChannel ch = FileChannel.open(config, StandardOpenOption.READ);
                  InputStream is = Channels.newInputStream(ch) ) {
                props.load(is);
    
            }
            if ( !props.isEmpty() ) {
                Map<String, String> map = toMap(props);
                String cfgname = fname.substring(0, fname.length() - 5);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:52:42 UTC 2020
    - 14.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top