Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 342 for getStep (0.31 sec)

  1. src/cmd/go/testdata/script/test_fuzz_io_error.txt

    package io_error
    
    import (
    	"flag"
    	"testing"
    	"time"
    )
    
    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 FuzzClosePipeBefore(f *testing.F) {
    	if isWorker() {
    		sendGarbageToCoordinator(f)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/tasks/OutputDirectory.java

     */
    package org.gradle.api.tasks;
    
    import java.lang.annotation.*;
    
    /**
     * <p>Marks a property as specifying an output directory 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>The directory will be created before the task is executed if it does not exist already.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 12:53:53 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/tasks/PathSensitive.java

    import java.lang.annotation.Target;
    
    /**
     * Annotates a task file property, specifying which part of the file paths should be considered during up-to-date checks.
     *
     * <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>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 11 07:58:50 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/service_injection.adoc

    The property getter method must be `public` or `protected`. The method can be `abstract` or, in cases where this isn't possible, can have a dummy method body.
    The method body is discarded.
    
    Here is an example that shows a task type that receives a two services via property getter methods:
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. tests/integration/security/remote_jwks/main_test.go

    		SetupParallel(
    			jwt.Setup(&jwtServer, namespace.Future(&systemNs)),
    			deployment.SetupSingleNamespace(&apps, deployment.Config{
    				Namespaces: []namespace.Getter{
    					namespace.Future(&echoNS),
    				},
    			})).
    		Run()
    }
    
    func setupConfig(ctx resource.Context, cfg *istio.Config) {
    	if cfg == nil {
    		return
    	}
    	cfg.ControlPlaneValues = `
    values:
      pilot:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 01:47:52 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/common/DependencyCollectorFunctionExtractorAndRuntimeResolver.kt

            val runtimeFunction: DeclarativeRuntimeFunction,
        )
    
        private
        sealed interface DependencyCollectorAccessor : (Any) -> DependencyCollector {
            data class Getter(val getterFunction: KFunction<*>) : DependencyCollectorAccessor {
                override fun invoke(receiver: Any): DependencyCollector = getterFunction.call(receiver) as DependencyCollector
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/tasks/OutputFile.java

     */
    package org.gradle.api.tasks;
    
    import java.lang.annotation.*;
    
    /**
     * <p>Marks a property as specifying an output 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>The parent directory will be created before the task is executed if it does not exist
     * already.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 12:53:53 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCompilerFacility.kt

             * (via generateReflectiveAccessForGetter) and it is called for the private access member lowered to the getter/setter call.
             * If a private property has no getter/setter (the typical situation for simple private properties without explicitly defined
             * getter/setter) then this method is not used at all. Instead
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 08:42:45 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/tasks/IgnoreEmptyDirectories.java

     * and directories that contain only empty directories will have no effect on the
     * resulting snapshot.
     *
     * <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>
     *
     * This annotation can be applied to the following input property types:
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 19 12:43:32 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/ClassDetails.java

         */
        List<Method> getAllMethods();
    
        /**
         * Returns the non-private instance methods of this class that are not property getter or setter methods.
         * Includes inherited methods.
         */
        Collection<Method> getInstanceMethods();
    
        /**
         * Returns all instance fields of this class. Includes inherited fields.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top