Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 433 for Detached (0.22 sec)

  1. pkg/test/kube/util.go

    	scopes.Framework.Infof("Checking pods ready...")
    
    	fetched, err := fetchFunc()
    	if err != nil {
    		scopes.Framework.Infof("Failed retrieving pods: %v", err)
    		return nil, err
    	}
    
    	if len(fetched) == 0 {
    		scopes.Framework.Infof("No pods found...")
    		return nil, ErrNoPodsFetched
    	}
    
    	for i, p := range fetched {
    		msg := "Ready"
    		if e := istioKube.CheckPodReadyOrComplete(&p); e != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 22:47:52 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  2. pkg/client/conditions/conditions.go

    )
    
    // ErrPodCompleted is returned by PodRunning or PodContainerRunning to indicate that
    // the pod has already reached completed state.
    var ErrPodCompleted = fmt.Errorf("pod ran to completion")
    
    // PodRunning returns true if the pod is running, false if the pod has not yet reached running state,
    // returns ErrPodCompleted if the pod has run to completion, or an error in any other case.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 16 13:43:36 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/tasks/Console.java

    import java.lang.annotation.RetentionPolicy;
    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,
     * because its value only influences the console output of the task.</p>
     *
     * <p>This annotation should be attached to the getter method in Java or the property in Groovy.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/tasks/Internal.java

    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    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>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/tasks/Input.java

     * limitations under the License.
     */
    package org.gradle.api.tasks;
    
    import java.lang.annotation.*;
    
    /**
     * <p>Attached to a task property to indicate that the property specifies some input value for the 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>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. pkg/volume/util/volumepathhandler/volume_path_handler_unsupported.go

    )
    
    // AttachFileDevice takes a path to a regular file and makes it available as an
    // attached block device.
    func (v VolumePathHandler) AttachFileDevice(path string) (string, error) {
    	return "", fmt.Errorf("AttachFileDevice not supported for this build.")
    }
    
    // DetachFileDevice takes a path to the attached block device and
    // detach it from block device.
    func (v VolumePathHandler) DetachFileDevice(path string) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/model/ReplacedBy.java

    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * <p>Attached to a task property to indicate that the property has been replaced by another. Like {@link Internal}, the property is ignored during up-to-date checks.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 15 16:13:53 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/tasks/options/Option.java

    /**
     * <p>Marks a property of a {@link org.gradle.api.Task} as being configurable from the command-line.</p>
     *
     * <p>This annotation should be attached to a field or a setter method. When attached to a field, {@link #option()}
     * will use the name of the field by default. When attached to a method, {@link #option()} must be specified.</p>
     *
     * <p>An option may have one of the following types:</p>
     * <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 10 12:45:01 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  9. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/source/model/PropertyMetaDataTest.groovy

            when:
            def p = propertyMetaData.overriddenProperty
    
            then:
            p == null
        }
    
        def "is deprecated when @Deprecated is attached to property"() {
            def notDeprecated = new PropertyMetaData('param', classMetaData)
            def deprecated = new PropertyMetaData('param', classMetaData)
            deprecated.addAnnotationTypeName(Deprecated.class.name)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 4.1K bytes
    - Viewed (0)
  10. 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)
Back to top