Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for conventionMapping (0.15 sec)

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

            ConventionMapping conventionMapping = new DslObject(bean).getConventionMapping();
            conventionMapping.map("prop", new Callable<String>() {
                public String call() {
                    return "conventionValue";
                }
            });
            conventionMapping.map("number", new Callable<Integer>() {
                public Integer call() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 74.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

                            }
                        }
                        hasExtensionAwareImplementation = true;
                        return true;
                    }
                    if (property.getName().equals("conventionMapping") || property.getName().equals("convention")) {
                        return true;
                    }
                }
    
                return false;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    ==== Start scripts require bash shell
    
    The command used to start Gradle, the Gradle wrapper as well as the scripts generated by the `application` plugin now require `bash` shell.
    
    === Deprecations
    
    [[convention_mapping]]
    ==== Using convention mapping with properties with type Provider is deprecated
    Convention mapping is an internal feature that is been replaced by the <<lazy_configuration#lazy_configuration,Provider API>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top