Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for upgrading (0.28 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[upgrading_version_8]]
    = Upgrading your build from Gradle 8.x to the latest
    
    This chapter provides the information you need to migrate your Gradle 8.x builds to the latest Gradle release.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.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/go/internal/modload/load.go

    		// dependency. (The tests in mod_tidy_convergence*.txt illustrate some
    		// particularly worrisome cases.)
    		//
    		// To ensure that this process of promoting, adding, and upgrading roots
    		// eventually terminates, during iteration we only ever add modules to the
    		// root set — we only remove irrelevant roots at the very end of
    		// iteration, after we have already added every root that we plan to need
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.31.md

    - CephRBD volume plugin ( `kubernetes.io/rbd`) was removed in this...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            for (int i = 0; i < depth; i++) {
                formatter.endChildren();
            }
            formatter.node("Dependency resolution has ignored the cycle to produce a result. It is recommended to resolve the cycle by upgrading one or more dependencies.");
            return formatter.toString();
        }
    
        @Nullable
        private NodeState getFromNode(NodeState from) {
            List<EdgeState> incomingEdges = from.getIncomingEdges();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modget/get.go

    // provide) transitive dependencies imported by previously-resolved packages.
    //
    // applyUpgrades modifies the build list by adding one module version from each
    // pathSet in upgrades, then downgrading (or further upgrading) those modules as
    // needed to maintain any already-resolved versions of other modules.
    // applyUpgrades does not mark the new versions as resolved, so they can still
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  7. src/cmd/go/go_test.go

    	tg := testgo(t)
    	defer tg.cleanup()
    	tg.parallel()
    	tg.tempDir("home/go")
    	tg.setenv(homeEnvName(), tg.path("home"))
    	// Set TEST_TELEMETRY_DIR to a path that doesn't exist
    	// so that the counter uploading code doesn't write
    	// the counter token file to the temp dir after the test finishes.
    	tg.setenv("TEST_TELEMETRY_DIR", "/no-telemetry-dir")
    
    	tg.run("env", "GOPATH")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  8. cmd/test-utils_test.go

    	}
    	if objectName != "" {
    		urlStr += s3utils.EncodePath(objectName)
    	}
    	if len(queryValues) > 0 {
    		urlStr = urlStr + "?" + queryValues.Encode()
    	}
    	return urlStr
    }
    
    // return URL for uploading object into the bucket.
    func getPutObjectURL(endPoint, bucketName, objectName string) string {
    	return makeTestTargetURL(endPoint, bucketName, objectName, url.Values{})
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         */
        <T> Iterable<T> configure(Iterable<T> objects, Action<? super T> configureAction);
    
        /**
         * Returns a handler to create repositories which are used for retrieving dependencies and uploading artifacts
         * produced by the project.
         *
         * @return the repository handler. Never returns null.
         */
        RepositoryHandler getRepositories();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
Back to top