Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for upgrading (0.23 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    - so if the included build itself uses verification, its configuration is ignored in favor of the current one
    - which means that including a build works similarly to upgrading a dependency: it may require you to update your current verification metadata
    
    An easy way to get started is therefore to generate the minimal configuration for an existing build.
    
    [[sec:verification-console-output]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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