Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 778 for ugrave (0.12 sec)

  1. cmd/kubeadm/app/phases/upgrade/policy.go

    		skewErrors.Mandatory = append(skewErrors.Mandatory, errors.Errorf("Specified version to upgrade to %q is equal to or lower than the minimum supported version %q. Please specify a higher version to upgrade to", newK8sVersionStr, clusterVersionStr))
    	}
    
    	// kubeadm doesn't support upgrades between two minor versions; e.g. a v1.7 -> v1.9 upgrade is not supported right away
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/upgrade/compute_test.go

    			expected: false,
    		},
    		{
    			name:     "upgrade is not available if we don't know anything about the earlier state",
    			before:   map[string][]string{},
    			after:    "v1.10.3",
    			expected: false,
    		},
    	}
    
    	for _, rt := range tests {
    		t.Run(rt.name, func(t *testing.T) {
    			upgrade := Upgrade{
    				Before: ClusterState{
    					KubeletVersions: rt.before,
    				},
    				After: ClusterState{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 08:39:51 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  3. src/packaging/common/scripts/prerm

    #       $1=remove    : indicates a removal
    #       $1=upgrade   : indicates an upgrade
    #
    #   On RedHat,
    #       $1=0         : indicates a removal
    #       $1=1         : indicates an upgrade
    
    
    
    STOP_REQUIRED=false
    
    case "$1" in
    
        # Debian ####################################################
        remove)
            STOP_REQUIRED=true
        ;;
        upgrade)
            if [ "$RESTART_ON_UPGRADE" = "true" ]; then
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 29 07:34:32 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/roundtripper_test.go

    			serverConnectionHeader: "",
    			serverUpgradeHeader:    "",
    			serverStatusCode:       http.StatusSwitchingProtocols,
    			shouldError:            true,
    		},
    		"no upgrade header": {
    			serverFunc:             httptest.NewServer,
    			serverConnectionHeader: "Upgrade",
    			serverUpgradeHeader:    "",
    			serverStatusCode:       http.StatusSwitchingProtocols,
    			shouldError:            true,
    		},
    		"no connection header": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 32.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtunnel.go

    	// and the "conn" is hijacked and used in the subsequent upgradeHandler, or
    	// the upgrade failed, and "w" is the delegate used for the non-upgrade response.
    	writer := &tunnelingResponseWriter{
    		// "w" is used in the non-upgrade error cases called in the upgradeHandler.
    		w: w,
    		// "conn" is returned in the successful upgrade case when hijacked in the upgradeHandler.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/upgrade/AdminUpgradeAction.java

     * 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.
     */
    package org.codelibs.fess.app.web.admin.upgrade;
    
    import java.io.IOException;
    import java.util.List;
    import java.util.Map;
    import java.util.stream.Collectors;
    
    import javax.annotation.Resource;
    
    import org.apache.logging.log4j.LogManager;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 26 05:52:29 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_get_lazy_upgrade_lazy.txt

    # Check that 'go get -u' will upgrade a dependency (direct or indirect)
    # when the main module and the dependency are both lazy.
    # Verifies #47768.
    
    # Check that go.mod is tidy, and an upgrade is available.
    cp go.mod go.mod.orig
    go mod tidy
    cmp go.mod go.mod.orig
    
    go list -m -u example.com/lazyupgrade
    stdout '^example.com/lazyupgrade v0.1.0 \[v0.1.1\] => ./lazyupgrade@v0.1.0$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 30 17:58:12 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/httpstream/httpstream.go

    	Dial(protocols ...string) (Connection, string, error)
    }
    
    // UpgradeRoundTripper is a type of http.RoundTripper that is able to upgrade
    // HTTP requests to support multiplexed bidirectional streams. After RoundTrip()
    // is invoked, if the upgrade is successful, clients may retrieve the upgraded
    // connection by calling UpgradeRoundTripper.Connection().
    type UpgradeRoundTripper interface {
    	http.RoundTripper
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  9. src/packaging/common/scripts/postinst

            # If $1=configure and $2 is set, this is an upgrade
            if [ -n $2 ]; then
                IS_UPGRADE=true
            fi
        ;;
        abort-upgrade|abort-remove|abort-deconfigure)
        ;;
    
        # RedHat ####################################################
        1)
            # If $1=1 this is an install
            IS_UPGRADE=false
        ;;
        2)
            # If $1=1 this is an upgrade
            IS_UPGRADE=true
        ;;
    
        *)
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 10 01:24:02 UTC 2015
    - 3.1K bytes
    - Viewed (0)
  10. tests/integration/helm/upgrade/helm_upgrade_test.go

    	return nil
    }
    
    // TestDefaultInPlaceUpgradeFromPreviousMinorRelease tests Istio upgrade using Helm with default options for Istio 1.(n-1)
    func TestDefaultInPlaceUpgradeFromPreviousMinorRelease(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(performInPlaceUpgradeFunc(previousSupportedVersion, false))
    }
    
    // TestCanaryUpgradeFromPreviousMinorRelease tests Istio upgrade using Helm with default options for Istio 1.(n-1)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 20:31:47 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top