Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 79 for upgrading (0.19 sec)

  1. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginValidationManager.java

                logger.warn("");
                if (validationReportLevel == ValidationReportLevel.VERBOSE) {
                    logger.warn(
                            "Fix reported issues by adjusting plugin configuration or by upgrading above listed plugins. If no upgrade available, please notify plugin maintainers about reported issues.");
                }
                logger.warn(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 23 12:25:04 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                    "This will fail with an error in Gradle 9.0. " +
                    "Declare the association between the task and the build service using 'Task#usesService'. " +
                    "Consult the upgrading guide for further information: https://docs.gradle.org/current/userguide/upgrading_version_7.html#undeclared_build_service_usage"
            )
    
            expect:
            succeeds 'broken'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/internal/counter/counter.go

    	for ; ; state = c.state.load() {
    		// If we are the last reader and havePtr was cleared
    		// while this batch of readers was using c.ptr,
    		// it's our job to update c.ptr by upgrading to a full lock
    		// and letting releaseLock do the work.
    		// Note: no new reader will attempt to add itself now that havePtr is clear,
    		// so we are only racing against possible additions to extra.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. subprojects/distributions-dependencies/build.gradle.kts

    val antVersion = "1.10.13"
    // Don't forget to bump versions in
    // subprojects/base-services/src/main/java/org/gradle/internal/classanalysis/AsmConstants.java
    // when upgrading ASM.
    val asmVersion = "9.7"
    val awsS3Version = "1.12.651"
    val bouncycastleVersion = "1.77"
    val jacksonVersion = "2.16.1"
    val jaxbVersion = "3.0.0"
    val junit5Version = "5.8.2"
    val mavenVersion = "3.9.5"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 19:54:08 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileIntegrationTest.groovy

                "Configure an absolute path to a Java executable instead. " +
                "Consult the upgrading guide for further information: https://docs.gradle.org/current/userguide/upgrading_version_8.html#no_relative_paths_for_java_executables")
            run("compileJava")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/upgrade/staticpods.go

    	BackupEtcdDir() string
    	// CleanupDirs cleans up all temporary directories
    	CleanupDirs() error
    }
    
    // KubeStaticPodPathManager is a real implementation of StaticPodPathManager that is used when upgrading a static pod cluster
    type KubeStaticPodPathManager struct {
    	kubernetesDir     string
    	patchesDir        string
    	realManifestDir   string
    	tempManifestDir   string
    	backupManifestDir string
    	backupEtcdDir     string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

                " Problematic paths in 'file collection' are: '$path'." +
                " Add the individual files to the file collection instead." +
                " Consult the upgrading guide for further information: https://docs.gradle.org/current/userguide/upgrading_version_7.html#file_collection_to_classpath")
        }
    
        @ToBeImplemented
        @Issue('https://github.com/gradle/gradle/issues/29147')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/deprecation/DeprecationMessagesTest.groovy

            then:
            expectMessage "The pluginName plugin has been deprecated. This is scheduled to be removed in Gradle ${NEXT_GRADLE_VERSION}. Consult the upgrading guide for further information: https://docs.gradle.org/${GradleVersion.current().version}/userguide/upgrading_version_42.html#upgradeGuideSection"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  9. cmd/handler-utils.go

    	if r.Method == http.MethodOptions {
    		return
    	}
    	desc := "Do not upgrade one server at a time - please follow the recommended guidelines mentioned here https://github.com/minio/minio#upgrading-minio for your environment"
    	switch {
    	case strings.HasPrefix(r.URL.Path, peerRESTPrefix):
    		writeErrorResponseString(r.Context(), w, APIError{
    			Code:           "XMinioPeerVersionMismatch",
    			Description:    desc,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  10. operator/cmd/mesh/install.go

    		for _, val := range icpTags {
    			if val != "" {
    				icpTag = val
    			}
    		}
    		// when the revision is passed
    		if icpTag != "" && tag != icpTag {
    			check := "         Before upgrading, you may wish to use 'istioctl x precheck' to check for upgrade warnings.\n"
    			revisionWarning := "         Running this command will overwrite it; use revisions to upgrade alongside the existing version.\n"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top