Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getGetterName (0.35 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/PropertyAccessorTypeTest.groovy

    class PropertyAccessorTypeTest extends Specification {
        def "method names #getGetterName, #isGetterName and #setterName extract to property name '#propertyName' following the JavaBeans spec"() {
            expect:
            PropertyAccessorType.isGetGetterName(getGetterName)
            PropertyAccessorType.GET_GETTER.propertyNameFor(getGetterName) == propertyName
            Introspector.decapitalize(getGetterName.substring(3)) == propertyName
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/converter_gen.cc

              continue;
            os << formatv(
                "  auto {0} = Convert{1}ForOptionWriter(op.{2}(), fbb);\n",
                arg_name, mlir::tblgen::Attribute(arg_def).getAttrDefName(),
                op.getGetterName(arg_name));
            options.push_back(arg_name.str());
          }
        }
    
        // Add options due to derived attributes.
        for (const auto &val : def->getValues()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 15:05:28 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/metaobject/BeanDynamicObject.java

                    if (property instanceof MultipleSetterProperty) {
                        // Invoke the setter method, to pick up type coercion
                        String setterName = MetaProperty.getSetterName(property.getName());
                        DynamicInvokeResult setterResult = invokeMethod(setterName, value);
                        if (setterResult.isFound()) {
                            return DynamicInvokeResult.found();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

    import java.util.Collection;
    import java.util.HashMap;
    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    import java.util.concurrent.atomic.AtomicReference;
    
    import static groovy.lang.MetaProperty.getSetterName;
    import static org.gradle.model.internal.asm.AsmClassGeneratorUtils.getterSignature;
    import static org.gradle.model.internal.asm.AsmClassGeneratorUtils.signature;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
Back to top