Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 342 for getStep (0.14 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/binding/DefaultStructBindingsStoreTest.groovy

            void setName(String name)
        }
    
        def "malformed getter"() {
            when: extract GetterWithParams
            then: def ex = thrown InvalidManagedTypeException
            ex.message == """Type ${fullyQualifiedNameOf(GetterWithParams)} is not a valid managed type:
    - Method getName(java.lang.String) is not a valid property accessor method: getter method must not take parameters
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/repository/MetadataGraph.java

            }
    
            MetadataGraphNode node = new MetadataGraphNode(md);
            addNode(node);
            return node;
        }
    
        /**
         * getter
         */
        public MetadataGraphNode getEntry() {
            return entry;
        }
    
        /**
         * getter
         */
        public Collection<MetadataGraphNode> getNodes() {
            return nodes;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/transform/InputArtifact.java

    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Attach this annotation to an abstract getter that should receive the input artifact for an artifact transform.
     * This is the artifact that the transform is applied to.
     *
     * <p>The abstract getter must be declared as type {@link Provider}&lt;{@link org.gradle.api.file.FileSystemLocation}&gt;.</p>
     *
     * <p>Example usage:</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 02 06:59:21 UTC 2022
    - 2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/troubleshooting/validation_problems.adoc

    This error indicates that you have a field annotated, but that there's no getter for this field.
    Gradle will recognize annotations on fields _only_ if there's a corresponding getter.
    If this getter is absent, the annotations have no effect whatsoever.
    
    To fix this, you need to create a getter for this field.
    We also recommend to annotate the getter instead of the field.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/renderers/callables/KtPropertyAccessorsRenderer.kt

                symbol: KaPropertySymbol,
                declarationRenderer: KaDeclarationRenderer,
                printer: PrettyPrinter,
            ) {
                printer {
                    val toRender = listOfNotNull(symbol.getter, symbol.setter).ifEmpty { return }
                    append("\n")
                    withIndent {
                        "\n".separated(
                            {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/eclipse/EclipseWtpPlugin.java

                            Collection<Configuration> plusConfigurations = model.getClasspath().getPlusConfigurations();
                            EclipseWtpComponent component = model.getWtp().getComponent();
                            plusConfigurations.addAll(component.getRootConfigurations());
                            plusConfigurations.addAll(component.getLibConfigurations());
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSymbolInfoProvider.kt

            withValidityAssertion { analysisSession.symbolInfoProvider.getDeprecation(this, annotationUseSiteTarget) }
    
        /**
         * Gets the deprecation status of the getter of this property symbol. Returns null if the getter is not deprecated.
         */
        public val KaPropertySymbol.getterDeprecationStatus: DeprecationInfo?
            get() = withValidityAssertion { analysisSession.symbolInfoProvider.getGetterDeprecation(this) }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskServiceInjectionIntegrationTest.groovy

            """
    
            when:
            run 'myTask'
    
            then:
            outputContains("got it 15")
        }
    
        def "can construct a task with @Inject service getter"() {
            given:
            buildFile << """
                import org.gradle.workers.WorkerExecutor
    
                class CustomTask extends DefaultTask {
                    @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 7.9K bytes
    - Viewed (0)
  9. pkg/test/framework/components/authz/server.go

    	t.Helper()
    	s, err := NewLocal(t, ns)
    	if err != nil {
    		t.Fatal(err)
    	}
    	return s
    }
    
    // Setup is a utility function for configuring a global authz Server.
    func Setup(server *Server, ns namespace.Getter) resource.SetupFn {
    	if ns == nil {
    		ns = namespace.NilGetter
    	}
    
    	return func(ctx resource.Context) error {
    		s, err := New(ctx, ns())
    		if err != nil {
    			return err
    		}
    
    		// Store the server.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 14 23:39:05 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/RuleInput.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 an implicit input for all rules defined by the rule source.
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target(ElementType.METHOD)
    @Incubating
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top