Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 342 for getStep (0.19 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/IConventionAware.java

     * <p>Allows default values for the properties of this object to be declared. Most implementations are generated at
     * run-time from existing classes, by a {@link org.gradle.api.internal.Instantiator} implementation.</p>
     *
     * <p>Each getter of an {@code IConventionAware} object should use the mappings to determine the value for the property,
     * when no value has been explicitly set for the property.</p>
     */
    public interface IConventionAware {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/JavaBasePlugin.java

            public Directory call() throws Exception {
                Method getter = GeneratedSubclasses.unpackType(compile).getMethod("getDestinationDir");
                if (getter.getDeclaringClass() == AbstractCompile.class) {
                    // Subclass has not overridden the getter, so ignore
                    return null;
                }
    
                // Subclass has overridden the getter, so call it
    
                if (recursiveCall) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 22:14:22 UTC 2023
    - 28.3K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/networkfilter.go

    	includeMx bool,
    ) []*listener.Filter {
    	idleTimeout := destinationRule.GetTrafficPolicy().GetConnectionPool().GetTcp().GetIdleTimeout()
    	if idleTimeout == nil {
    		idleTimeout = parseDuration(lb.node.Metadata.IdleTimeout)
    	}
    	tcpProxy := &tcp.TcpProxy{
    		StatPrefix:                      statPrefix,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/RuleTarget.java

    import org.gradle.api.Incubating;
    
    import java.lang.annotation.ElementType;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Attached to the getter for a property on a {@link RuleSource} to denote that the property defines the target for the rule source.
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target(ElementType.METHOD)
    @Incubating
    public @interface RuleTarget {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/Unmanaged.java

    import java.lang.annotation.Target;
    
    /**
     * Indicates that a property of a managed model element is explicitly of an unmanaged type.
     * <p>
     * This annotation must be present on the <b>getter</b> of the property for the unmanaged type.
     * If the annotation is not present for a property that is not a managed type, a fatal error will occur.
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target(ElementType.METHOD)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/VariantAspectExtractionStrategy.java

                        if (accessor.getAccessorType() == PropertyAccessorType.SETTER) {
                            throw invalidProperty(extractionContext, property, "@Variant annotation is only allowed on getter methods");
                        }
                        Class<?> propertyType = property.getType().getRawClass();
                        if (!String.class.equals(propertyType) && !Named.class.isAssignableFrom(propertyType)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. tests/integration/security/main_test.go

    			authz.SetupLocal(&localAuthzServer, namespace.Future(&echo1NS)),
    			deployment.SetupTwoNamespaces(&apps, deployment.Config{
    				IncludeExtAuthz: true,
    				Namespaces: []namespace.Getter{
    					namespace.Future(&echo1NS),
    					namespace.Future(&echo2NS),
    				},
    				ExternalNamespace: namespace.Future(&externalNS),
    			})).
    		Run()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/symbols/pointers/KtPropertyAccessorSymbolPointer.kt

        @Deprecated("Consider using org.jetbrains.kotlin.analysis.api.KaSession.restoreSymbol")
        override fun restoreSymbol(analysisSession: KaSession): KaPropertyGetterSymbol? {
            return restorePropertySymbol(analysisSession)?.getter
        }
    }
    
    @KaAnalysisApiInternals
    class KaPropertySetterSymbolPointer(
        propertySymbolPointer: KaSymbolPointer<KaPropertySymbol>,
    ) : KaPropertyAccessorSymbolPointer<KaPropertySetterSymbol>(propertySymbolPointer) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/PropertyInternal.java

        /**
         * Associates this property with the task that produces its value.
         */
        void attachProducer(ModelObject owner);
    
        /**
         * A simple getter that checks if this property has been finalized.
         *
         * @return {@code true} if this property has been finalized, {@code false} otherwise
         */
        boolean isFinalized();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 11:58:44 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/internal-instrumentation-api/src/main/java/org/gradle/internal/instrumentation/api/annotations/ReplacedAccessor.java

    import java.lang.annotation.Target;
    
    @Retention(RetentionPolicy.CLASS)
    @Target({ElementType.ANNOTATION_TYPE})
    public @interface ReplacedAccessor {
    
        enum AccessorType {
            GETTER,
            SETTER
        }
    
        AccessorType value();
    
        /**
         * The name of the accessor, e.g. `getDestinationDir` or `setDestinationDir`
         */
        String name();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top