Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for downgrade (0.2 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/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)
  3. 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)
  4. 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)
  5. src/crypto/tls/common.go

    	// random as a downgrade protection if the server would be capable of
    	// negotiating a higher version. See RFC 8446, Section 4.1.3.
    	downgradeCanaryTLS12 = "DOWNGRD\x01"
    	downgradeCanaryTLS11 = "DOWNGRD\x00"
    )
    
    // testingOnlyForceDowngradeCanary is set in tests to force the server side to
    // include downgrade canaries even if it's using its highers supported version.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  6. 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)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    	// Does not apply to creation or deletion.
    	// Some checks use this to avoid rejecting previously accepted versions due to a control plane upgrade/downgrade.
    	versionsWithUnchangedSchemas sets.Set[string]
    	// suppressPerExpressionCost indicates whether CEL per-expression cost limit should be suppressed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  8. pkg/kubelet/nodestatus/setters_test.go

    			},
    			expectedAnnotations: map[string]string{
    				"alpha.kubernetes.io/provided-node-ip": "10.1.1.1,2600:1f14:1d4:d101::ba3d",
    			},
    			shouldError: false,
    		},
    		{
    			name:              "Downgrade from cloud dual-stack nodeIPs",
    			nodeIP:            netutils.ParseIPSloppy("10.1.1.1"),
    			cloudProviderType: cloudProviderExternal,
    			nodeAddresses: []v1.NodeAddress{
    				{Type: v1.NodeInternalIP, Address: "10.1.1.1"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. cmd/xl-storage-format-v2.go

    //go:generate stringer -type VersionType,ErasureAlgo -output=xl-storage-format-v2_string.go $GOFILE
    
    const (
    	// Breaking changes.
    	// Newer versions cannot be read by older software.
    	// This will prevent downgrades to incompatible versions.
    	xlVersionMajor = 1
    
    	// Non breaking changes.
    	// Bumping this is informational, but should be done
    	// if any change is made to the data stored, bumping this
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/load.go

    //
    // Although most of the loading state is maintained in the loader struct,
    // one key piece - the build list - is a global, so that it can be modified
    // separate from the loading operation, such as during "go get"
    // upgrades/downgrades or in "go mod" operations.
    // TODO(#40775): It might be nice to make the loader take and return
    // a buildList rather than hard-coding use of the global.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top