Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 400 for upgrading (0.15 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestTaskFailOnNoTestIntegrationTest.groovy

                "This will fail with an error in Gradle 9.0. There are test sources present but no test was executed. Please check your test configuration. " +
                "Consult the upgrading guide for further information: https://docs.gradle.org/current/userguide/upgrading_version_8.html#test_task_fail_on_no_test_executed")
    
            expect:
            succeeds("test")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskActionIntegrationTest.groovy

                }
            """
    
            when:
            executer.expectDocumentedDeprecationWarning("Invocation of Task.project at execution time has been deprecated. This will fail with an error in Gradle 9.0. Consult the upgrading guide for further information: https://docs.gradle.org/current/userguide/upgrading_version_7.html#task_project")
            succeeds("broken")
    
            then:
            noExceptionThrown()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestEventsIntegrationTest.groovy

            """
    
            when:
            executer.expectDocumentedDeprecationWarning("Listener registration using Gradle.addListener() has been deprecated. This will fail with an error in Gradle 9.0. Consult the upgrading guide for further information: https://docs.gradle.org/current/userguide/upgrading_version_7.html#task_execution_events")
            run("broken")
    
            then:
            noExceptionThrown()
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    [[changes_6.9]]
    == Upgrading from 6.8 and earlier
    
    No upgrade notes from 6.8 to 6.9, as 6.9 only contains bug fixes.
    
    [[changes_6.8]]
    == Upgrading from 6.7 and earlier
    
    === Potential breaking changes
    
    ==== Toolchain API is now marked as @NonNull
    
    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. releasenotes/notes/mesh-expansion.yaml

        For users with `values.global.meshExpansion.enabled=true`, perform the following steps before upgrading Istio:
    
        1. Apply the code sample for exposing Istiod through ingress.
    
           {{< text bash >}}
           $ kubectl apply -f @samples/istiod-gateway/istiod-gateway.yaml@
           {{< /text >}}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DetachedConfigurationsIntegrationTest.groovy

                "This will fail with an error in Gradle 9.0. Be sure to mark configurations meant for resolution as canBeConsumed=false or use the 'resolvable(String)' configuration factory method to create them. " +
                "Consult the upgrading guide for further information: https://docs.gradle.org/current/userguide/upgrading_version_8.html#depending_on_root_configuration")
    
            when:
            run "checkDependencies"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:16:47 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. cluster/images/etcd/migrate/migrator.go

    				return fmt.Errorf("failed to write version.txt to '%s': %v", m.dataDirectory.path, err)
    			}
    			return nil
    		case current.storageVersion == storageEtcd2 && target.storageVersion == storageEtcd3:
    			return fmt.Errorf("upgrading from etcd2 storage to etcd3 storage is not supported")
    		case current.version.Major == 3 && target.version.Major == 2:
    			return fmt.Errorf("downgrading from etcd 3.x to 2.x is not supported")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 28 07:33:23 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheStableConfigurationCacheIntegrationTest.groovy

            } else {
                executer.expectDocumentedDeprecationWarning "Invocation of Task.project at execution time has been deprecated. This will fail with an error in Gradle 9.0. Consult the upgrading guide for further information: https://docs.gradle.org/current/userguide/upgrading_version_7.html#task_project"
                succeeds ':problematic'
            }
    
            then:
            if (withCC) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. platforms/jvm/war/src/integTest/groovy/org/gradle/api/plugins/WarPluginIntegrationTest.groovy

            """
    
            expect:
            executer.expectDeprecationWarning("The WarPlugin.configureConfigurations(ConfigurationContainer) method has been deprecated. This is scheduled to be removed in Gradle 9.0. Consult the upgrading guide for further information: https://docs.gradle.org/${GradleVersion.current().version}/userguide/upgrading_version_8.html#war_plugin_configure_configurations")
            fails("help")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 22 17:46:36 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/GradleBuildSmokeTest.groovy

    //                "This is scheduled to be removed in Gradle 8.0. " +
    //                "Please use the destinationDirectory property instead. " +
    //                "Consult the upgrading guide for further information: https://docs.gradle.org/${GradleVersion.current().version}/userguide/upgrading_version_7.html#compile_task_wiring",
    //                "https://youtrack.jetbrains.com/issue/KT-46019")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top