Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 102 for attacher (0.14 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/TestLauncherDebugTestsCrossVersionTest.groovy

                    .withJvmTestClasses("example.MyTest")
                    .debugTestsOn(jdwpClient.port)
                    .run()
            }
    
            then:
            true // test successfully executed with debugger attached
        }
    
        def "forks only one JVM to debug"() {
            setup:
            buildFile << """
                 tasks.withType(Test) {
                      forkEvery = 1
                      maxParallelForks = 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/initialization/GradlePropertiesController.java

    import java.io.File;
    
    /**
     * Controls the state (not loaded / loaded) of the attached {@link GradleProperties} instance
     * so that the set of Gradle properties is deterministically loaded only once per build.
     */
    @ServiceScope(Scope.Build.class)
    public interface GradlePropertiesController {
    
        /**
         * The {@link GradleProperties} instance attached to this service.
         */
        GradleProperties getGradleProperties();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 11:22:05 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/annotation_key_constants.go

    	// ObjectTTLAnnotationKey represents a suggestion for kubelet for how long it can cache
    	// an object (e.g. secret, config map) before fetching it again from apiserver.
    	// This annotation can be attached to node.
    	ObjectTTLAnnotationKey string = "node.alpha.kubernetes.io/ttl"
    
    	// annotation key prefix used to identify non-convertible json paths.
    	NonConvertibleAnnotationPrefix = "non-convertible.kubernetes.io"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 18:46:31 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. pkg/apis/core/annotation_key_constants.go

    	// ObjectTTLAnnotationKey represents a suggestion for kubelet for how long it can cache
    	// an object (e.g. secret, config map) before fetching it again from apiserver.
    	// This annotation can be attached to node.
    	ObjectTTLAnnotationKey string = "node.alpha.kubernetes.io/ttl"
    
    	// NonConvertibleAnnotationPrefix annotation key prefix used to identify non-convertible json paths.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 18:46:31 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/AdditionalDataSpec.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.problems.internal;
    
    /**
     * Marker interface for additional data that can be attached to a {@link Problem}.
     */
    public interface AdditionalDataSpec {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 791 bytes
    - Viewed (0)
  6. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/ListenerService.java

    import java.lang.annotation.ElementType;
    import java.lang.annotation.Inherited;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Attached to a service implementation to indicate that the instance should be registered as a listener.
     *
     * <p>Generally, it is better to use {@link StatefulListener}, which is lazy and applies some validation to ensure no events are missed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. pilot/pkg/model/policyattachment.go

    		}
    
    		// Gateway attached
    		if config.CanonicalGroup(targetRef.GetGroup()) == gvk.KubernetesGateway.CanonicalGroup() &&
    			targetRef.GetKind() == gvk.KubernetesGateway.Kind &&
    			target.Name == gatewayName &&
    			(targetRef.GetNamespace() == "" || targetRef.GetNamespace() == p.Namespace) {
    			return true
    		}
    
    		// Service attached
    		if p.IsWaypoint &&
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. docs/de/docs/advanced/async-tests.md

    !!! tip "Tipp"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:25:57 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/redirector/StandardOutputRedirector.java

     */
    
    package org.gradle.api.internal.tasks.testing.redirector;
    
    public interface StandardOutputRedirector {
    
        /**
         * Starts redirection of System.out and System.err to the listener attached to
         * {@link #redirectStandardErrorTo(OutputListener)} and
         * {@link #redirectStandardOutputTo(OutputListener)
         */
        void start();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ChangingProvider.java

     * A provider whose value is computed by a {@link Callable}.
     *
     * The given {@link Callable} is stored to the configuration cache, so it must only hold references
     * to configuration cache safe state.
     *
     * Task dependencies attached to the computed value are ignored by this provider.
     *
     * <h3>Configuration Cache Behavior</h3>
     * <b>Lazy</b>. The given {@link Callable} is stored to the cache so the value can be recomputed on each run.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 04 21:04:56 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top