Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 342 for getStep (0.18 sec)

  1. subprojects/core-api/src/main/java/org/gradle/tooling/provider/model/ToolingModelBuilderRegistry.java

     *
     * <p>An instance of this type can be injected into a task, plugin or other object by annotating a public constructor or property getter method with {@code javax.inject.Inject}.
     */
    @ServiceScope(Scope.Build.class)
    public interface ToolingModelBuilderRegistry {
        void register(ToolingModelBuilder builder);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/tasks/InputFiles.java

     */
    package org.gradle.api.tasks;
    
    import java.lang.annotation.*;
    
    /**
     * <p>Marks a property as specifying the input files for a task.</p>
     *
     * <p>This annotation should be attached to the getter method in Java or the property in Groovy.
     * Annotations on setters or just the field in Java are ignored.</p>
     *
     * <p>This will cause the task to be considered out-of-date when the file paths or contents
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 15 16:06:48 UTC 2017
    - 1.2K bytes
    - Viewed (0)
  3. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/AbstractCompile.java

    import org.gradle.work.DisableCachingByDefault;
    
    import java.io.File;
    
    import static org.gradle.internal.instrumentation.api.annotations.ReplacedAccessor.AccessorType.GETTER;
    import static org.gradle.internal.instrumentation.api.annotations.ReplacedAccessor.AccessorType.SETTER;
    import static org.gradle.internal.instrumentation.api.annotations.ReplacesEagerProperty.BinaryCompatibility.ACCESSORS_KEPT;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/test_fuzz_mutate_fail.txt

    package fuzz_fail
    
    import (
    	"flag"
    	"os"
    	"runtime"
    	"testing"
    )
    
    func isWorker() bool {
    	f := flag.Lookup("test.fuzzworker")
    	if f == nil {
    		return false
    	}
    	get, ok := f.Value.(flag.Getter)
    	if !ok {
    		return false
    	}
    	return get.Get() == interface{}(true)
    }
    
    func FuzzReturn(f *testing.F) {
    	if isWorker() {
    		return
    	}
    	f.Fuzz(func(*testing.T, []byte) {})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/tasks/InputFile.java

    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * <p>Marks a property as specifying an input file for a task.</p>
     *
     * <p>This annotation should be attached to the getter method in Java or the property in Groovy.
     * Annotations on setters or just the field in Java are ignored.</p>
     *
     * <p>This will cause the task to be considered out-of-date when the file path or contents
     * have changed.</p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 08 06:53:54 UTC 2018
    - 1.5K bytes
    - Viewed (0)
  6. tests/integration/security/ca_custom_root/main_test.go

    			config = deployment.Config{
    				Namespaces: []namespace.Getter{
    					namespace.Future(&echo1NS),
    				},
    				Configs: echo.ConfigFuture(&customConfig),
    			}
    			err := addDefaultConfig(ctx, config, &customConfig)
    			if err != nil {
    				return err
    			}
    			return nil
    		}).
    		Setup(deployment.SetupSingleNamespace(&apps, deployment.Config{
    			Namespaces: []namespace.Getter{
    				namespace.Future(&echo1NS),
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/tasks/Internal.java

    import java.lang.annotation.Target;
    
    /**
     * <p>Attached to a task property to indicate that the property is not to be taken into account for up-to-date checking.</p>
     *
     * <p>This annotation should be attached to the getter method in Java or the property in Groovy.
     * Annotations on setters or just the field in Java are ignored.</p>
     *
     * <p>This will cause the task not to be considered out-of-date when the property has changed.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/WithSideEffectProviderTest.groovy

            0 * _ // no side effects when values are not unpacked
    
            when:
            counter.set(23)
            def unpackedValue = getter(provider, method, 88)
            then:
            unpackedValue == 23
            1 * sideEffect.execute(23)
    
            when:
            unpackedValue = getter(provider, method, 88)
            then:
            unpackedValue == 24
            1 * sideEffect.execute(24)
            0 * _
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 06:53:07 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/tasks/LocalState.java

    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * <p>Marks a property as specifying local state for a task.</p>
     *
     * <p>This annotation should be attached to the getter method in Java or the property in Groovy.
     * Annotations on setters or just the field in Java are ignored.</p>
     *
     * <p>Local state is removed when the task is loaded from cache.</p>
     *
     * @since 4.3
     */
    @Documented
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 05 07:18:07 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/tasks/Optional.java

     * value specified must meet the validation constraints for the property.</p>
     *
     * <p>This annotation should be attached to the getter method in Java or the property in Groovy.
     * Annotations on setters or just the field in Java are ignored.</p>
     *
     * <ul> <li>{@link org.gradle.api.tasks.Input}</li>
     *
     * <li>{@link org.gradle.api.tasks.InputFile}</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 05 11:58:37 UTC 2019
    - 1.7K bytes
    - Viewed (0)
Back to top