Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 249 for Performing (0.29 sec)

  1. pkg/test/framework/resource/setup.go

    // limitations under the License.
    
    package resource
    
    // SetupFn is a function used for performing setup actions.
    type SetupFn func(ctx Context) error
    
    // TeardownFn is a function used for performing tear-down actions.
    type TeardownFn func(ctx Context)
    
    // ShouldSkipFn is a function used for performing skip actions; if it returns true a job is skipped
    // Note: function may be called multiple times during the setup process.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 1018 bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/execution/TaskActionListener.java

    public interface TaskActionListener {
        /**
         * This method is called immediately before the task starts performing its actions.
         *
         * @param task The task which is to perform some actions.
         */
        void beforeActions(Task task);
    
        /**
         * This method is called immediately after the task has completed performing its actions.
         *
         * @param task The task which has performed some actions.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/tutorial/configureTaskUsingProjectProperty/groovy/build.gradle

    tasks.register('performRelease') {
        def isCI = providers.gradleProperty("isCI")
        doLast {
            if (isCI.present) {
                println("Performing release actions")
            } else {
                throw new InvalidUserDataException("Cannot perform release outside of CI")
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 297 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/tutorial/configureTaskUsingProjectProperty/kotlin/build.gradle.kts

    tasks.register("performRelease") {
        val isCI = providers.gradleProperty("isCI")
        doLast {
            if (isCI.isPresent) {
                println("Performing release actions")
            } else {
                throw InvalidUserDataException("Cannot perform release outside of CI")
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 294 bytes
    - Viewed (0)
  5. releasenotes/notes/48207.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
    - 48207
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 13 02:31:37 UTC 2023
    - 229 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/tutorial/configureTaskUsingProjectProperty/tests/configureTaskUsingProjectProperty.out

    Performing release actions...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 27 bytes
    - Viewed (0)
  7. releasenotes/notes/45643.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 27 15:04:37 UTC 2023
    - 179 bytes
    - Viewed (0)
  8. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDeclaredSubstitutionsIntegrationTest.groovy

                        configuration = "runtimeElements"
                        compositeSubstitute()
                    }
                }
            }
        }
    
        def "preserves the requested attributes when performing a composite substitution"() {
            platformDependency 'org.test:platform:1.0'
    
            def platform = file("platform")
    
            file("platform/build.gradle") << """
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 01 20:36:42 UTC 2022
    - 14.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClientConnection.java

                if (suspect) {
                    LOG.debug("Problem dispatching message to the daemon.", e);
                } else {
                    LOG.debug("Problem dispatching message to the daemon. Performing 'on failure' operation...");
                    if (!hasReceived && staleAddressDetector.maybeStaleAddress(e)) {
                        throw new StaleDaemonAddressException("Could not dispatch a message to the daemon.", e);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 30 06:43:50 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. releasenotes/notes/revision-tag-default-validation.yaml

        through the default tag will also win leader elections and assume singleton cluster responsibilities.
    
    upgradeNotes:
      - title: Default revision must be switched when performing a revision-based upgrade.
        content: |
          When installing a new Istio control plane revision the previous resource validator will remain unchanged to prevent
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 11 16:58:48 UTC 2021
    - 956 bytes
    - Viewed (0)
Back to top