Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for downgraded (0.22 sec)

  1. src/cmd/go/internal/modget/get.go

    				v := module.Version{Path: q.pattern}
    				// The user has explicitly requested to downgrade their own module to
    				// version "none". This is not an entirely unreasonable request: it
    				// could plausibly mean “downgrade away everything that depends on any
    				// explicit version of the main module”, or “downgrade away the
    				// package with the same path as the main module, found in a module
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/buildlist.go

    	// This may remove or downgrade modules in altMods.
    	reqs := &mvsReqs{roots: keep}
    	min, err := mvs.Req(mainModule, rootPaths, reqs)
    	if err != nil {
    		return nil, err
    	}
    	buildList, err := mvs.BuildList([]module.Version{mainModule}, reqs)
    	if err != nil {
    		return nil, err
    	}
    
    	// Check if modules in altMods were downgraded but not removed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

        def "transform does not execute when dependencies cannot be downloaded"() {
            given:
            def cantBeDownloaded = withColorVariants(mavenHttpRepo.module("test", "cant-be-downloaded", "4.3")).publish()
            cantBeDownloaded.moduleMetadata.allowGetOrHead()
            cantBeDownloaded.artifact.expectDownloadBroken()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    </verification-metadata>
    ----
    
    Doing so, Gradle will verify all artifacts using <<#sec:checksum-verification,checksums>>, but will not verify <<#sec:signature-verification,signatures>>.
    Gradle will verify any artifact downloaded using its dependency management engine, which includes, but is not limited to:
    
    - artifact files (e.g jar files, zips, ...) used during a build
    - metadata artifacts (POM files, Ivy descriptors, Gradle Module Metadata)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_client_test.go

    		t.Errorf("downgrade from TLS 1.3 to TLS 1.0 was not detected")
    	}
    	if err := testDowngradeCanary(t, VersionTLS12, VersionTLS11); err == nil {
    		t.Errorf("downgrade from TLS 1.2 to TLS 1.1 was not detected")
    	}
    	if err := testDowngradeCanary(t, VersionTLS12, VersionTLS10); err == nil {
    		t.Errorf("downgrade from TLS 1.2 to TLS 1.0 was not detected")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/api_test.go

    		{"go1.20.1", "go1.21", "go1.21"},     // file upgrade permitted
    		{"go1.20.1", "go1.19", "go1.20.1"},   // file downgrade not permitted
    		{"go1.21.1", "go1.19.1", "go1.21.1"}, // file downgrade not permitted (invalid file version)
    		{"go1.21.1", "go1.19", "go1.19"},     // file downgrade permitted (module version is >= go1.21)
    	} {
    		var src string
    		if test.fileVersion != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  7. configure.py

    def set_tf_download_clang(environ_cp):
      """Set TF_DOWNLOAD_CLANG action_env."""
      question = 'Do you wish to download a fresh release of clang? (Experimental)'
      yes_reply = 'Clang will be downloaded and used to compile tensorflow.'
      no_reply = 'Clang will not be downloaded.'
      set_action_env_var(
          environ_cp,
          'TF_DOWNLOAD_CLANG',
          None,
          False,
          question=question,
          yes_reply=yes_reply,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  8. gradle/verification-metadata.xml

       You have to update all entries that have the "Generated by Gradle" origin. The usual reasons are:
       * Artifact is not signed
       * Needed because PGP signature verification failed!
       * Key couldn't be downloaded
    
       You should then edit the origin to be "Verified". Note that editing those entries means you
       verified that the checksum matches.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  9. src/go/types/api_test.go

    		{"go1.20.1", "go1.21", "go1.21"},     // file upgrade permitted
    		{"go1.20.1", "go1.19", "go1.20.1"},   // file downgrade not permitted
    		{"go1.21.1", "go1.19.1", "go1.21.1"}, // file downgrade not permitted (invalid file version)
    		{"go1.21.1", "go1.19", "go1.19"},     // file downgrade permitted (module version is >= go1.21)
    	} {
    		var src string
    		if test.fileVersion != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

            }
            assertConfigCacheDiscarded()
            where:
            terse << [true, false]
        }
    
        def "can verify signature for artifacts downloaded in a previous build (stop in between = #stopInBetween)"() {
            given:
            terseConsoleOutput(false)
            javaLibrary()
            uncheckedModule("org", "foo", "1.0") {
                withSignature {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
Back to top