Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 38 of 38 for BuildListener (0.2 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/BuildEventsErrorIntegrationTest.groovy

            "projectsLoaded"    | _
            "projectsEvaluated" | _
            "buildFinished"     | _
        }
    
        @UnsupportedWithConfigurationCache
        def "produces reasonable error when BuildListener.#method method fails"() {
            settingsFile << """
    def listener = new BuildAdapter() {
        @Override
        void ${method}(${params}) {
            throw new RuntimeException("broken")
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/services/internal/DefaultBuildServicesRegistryTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.services.internal
    
    import org.gradle.BuildListener
    import org.gradle.BuildResult
    import org.gradle.api.Action
    import org.gradle.api.GradleException
    import org.gradle.api.artifacts.component.BuildIdentifier
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/logging.adoc

    Logging for the other interfaces is left untouched.
    You can find out more about the listener interfaces in <<build_lifecycle.adoc#sec:build_phases,Build lifecycle events>>.
    
    * link:{javadocPath}/org/gradle/BuildListener.html[BuildListener]footnote:config_cache_incompat[Not compatible with the configuration cache.]
    * link:{javadocPath}/org/gradle/api/ProjectEvaluationListener.html[ProjectEvaluationListener]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 18:32:47 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    You can use link:{javadocPath}/org/gradle/api/DefaultTask.html[DefaultTask] instead.
    
    ==== Removal of `BuildListener.buildStarted(Gradle)`
    
    `BuildListener.buildStarted(Gradle)` was deprecated in Gradle 6.0 and is now removed in Gradle 7.0.
    Please use link:{javadocPath}/org/gradle/BuildListener.html#beforeSettings-org.gradle.api.initialization.Settings-[BuildListener.beforeSettings(Settings)] instead.
    
    ==== Removal of unused `StartParameter` APIs
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/conversion.go

    			continue
    		}
    		for i, l := range kgw.Listeners {
    			i := i
    			namespaceLabelReferences.InsertAll(getNamespaceLabelReferences(l.AllowedRoutes)...)
    			server, programmed := buildListener(r, obj, l, i, controllerName)
    
    			servers = append(servers, server)
    			if controllerName == constants.ManagedGatewayMeshController {
    				// Waypoint doesn't actually convert the routes to VirtualServices
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    - Method link:{javadocPath}/org/gradle/api/invocation/Gradle.html#buildFinished-org.gradle.api.Action-[Gradle.buildFinished()]
    - Method link:{javadocPath}/org/gradle/BuildListener.html#buildFinished-org.gradle.BuildResult-[BuildListener.buildFinished()]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    In Gradle 5.0, we removed the `--no-search-upward` CLI parameter.
    
    The related APIs in `StartParameter` (like `isSearchUpwards()`) are now deprecated.
    
    ==== APIs `BuildListener.buildStarted` and `Gradle.buildStarted` have been deprecated
    
    These methods currently do not work as expected since the callbacks will never be called after the build has started.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    === Using build listeners
    
    Plugins and build scripts must not register any build listeners.
    That is listeners registered at configuration time that get notified at execution time.
    For example a `BuildListener` or a `TaskExecutionListener`.
    
    These should be replaced by <<build_services#build_services,build services>>, registered to receive information about <<build_services#operation_listener, task execution>> if needed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
Back to top