Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 229 for isSetter (0.54 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/InterceptScope.java

            return new NamedMemberScope(CallType.GET_PROPERTY, propertyName);
        }
    
        /**
         * The returned scope includes writes of all properties named {@code propertyName}.
         * This scope doesn't include calls to the setter method corresponding to this property,
         * use additional explicit {@link #methodsNamed(String)} scope to intercept that.
         *
         * @param propertyName the name of the property to intercept reads of
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 14:02:30 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. internal/config/dns/etcd_dns.go

    	etcdClient, err := clientv3.New(cfg)
    	if err != nil {
    		return nil, err
    	}
    
    	args := &CoreDNS{
    		etcdClient: etcdClient,
    	}
    
    	for _, setter := range setters {
    		setter(args)
    	}
    
    	if len(args.domainNames) == 0 || args.domainIPs.IsEmpty() {
    		return nil, errors.New("invalid argument")
    	}
    
    	// strip ports off of domainIPs
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 02 17:15:06 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/DecorateReleaseNotes.java

                // The order here is important! tokens are inserted by the transformer
                Map<String, Object> parameters = new HashMap<>();
                // NOTE: These parameter names _must_ match the setter names in ReleaseNotesTransformer
                parameters.put("baseCss", getBaseCssFile().get().getAsFile());
                parameters.put("releaseNotesCss", getReleaseNotesCssFile().get().getAsFile());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 28 06:35:15 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            // but all user-facing interfaces and their implementations do.
            property."$setter"(providerWithSideEffect)
    
            property.calculateValue(ValueSupplier.ValueConsumer.IgnoreUnsafeRead)
            property.calculateExecutionTimeValue()
    
            then:
            0 * _ // no side effects when calling setter or calculated values are not unpacked
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/VariantAspectExtractionIntegrationTest.groovy

        }
    
        def "variant annotation on setter raises error"() {
            buildFile << """
            @Managed
            interface SampleBinary extends BinarySpec {
                String getVariantProp()
                @Variant
                void setVariantProp(String variant)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/plugins/ExtensionAware.java

     * <li>The object itself. This scope includes any property getters and setters declared by the
     * implementation class. The properties of this scope are readable or writable depending on the presence
     * of the corresponding getter or setter method.</li>
     *
     * <li>Groovy Meta-programming methods implemented by the object's class, like <code>propertyMissing()</code>. Care must be taken by plugin authors to
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 26 07:18:37 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  7. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10ExpressionTypeProvider.kt

                    )
    
                return kotlinType.toKtType(analysisContext)
            }
    
            // Manually handle custom setter parameter
            if (declaration is KtParameter) {
                val parameterList = declaration.parent as? KtParameterList
                if (parameterList?.parameters?.singleOrNull() == declaration) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ModelSetIntegrationTest.groovy

                }
    
                @Managed
                interface Group {
                  String getName()
                  void setName(String string)
                  ModelSet<Person> getMembers()
                  //Invalid setter
                  void setMembers(ModelSet<Person> members)
                }
    
                class Rules extends RuleSource {
                  @Model
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  9. src/go/build/constraint/expr.go

    		}
    		p.pos = p.i
    		p.i += 2
    		p.tok = p.s[p.pos:p.i]
    		return
    	}
    
    	tag := p.s[p.i:]
    	for i, c := range tag {
    		if !unicode.IsLetter(c) && !unicode.IsDigit(c) && c != '_' && c != '.' {
    			tag = tag[:i]
    			break
    		}
    	}
    	if tag == "" {
    		c, _ := utf8.DecodeRuneInString(p.s[p.i:])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/tasks/options/Option.java

    import java.lang.annotation.Target;
    
    /**
     * <p>Marks a property of a {@link org.gradle.api.Task} as being configurable from the command-line.</p>
     *
     * <p>This annotation should be attached to a field or a setter method. When attached to a field, {@link #option()}
     * will use the name of the field by default. When attached to a method, {@link #option()} must be specified.</p>
     *
     * <p>An option may have one of the following types:</p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 10 12:45:01 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top