Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 778 for ugrave (0.21 sec)

  1. src/packaging/common/scripts/preinst

    ${packaging.scripts.header}
    
    #
    # This script is executed in the pre-installation phase
    #
    #   On Debian,
    #       $1=install : indicates an new install
    #       $1=upgrade : indicates an upgrade
    #
    #   On RedHat,
    #       $1=1       : indicates an new install
    #       $1=2       : indicates an upgrade
    
    
    
    # Sets the default values for fess variables used in this script
    FESS_USER="${packaging.fess.user}"
    FESS_GROUP="${packaging.fess.group}"
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 01 09:48:15 UTC 2016
    - 2.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/conn_test.go

    				"Upgrade":    "websocket",
    			},
    			expected: false,
    		},
    		"Missing connection/upgrade header is false": {
    			headers: map[string]string{
    				"Upgrade":               "websocket",
    				WebSocketProtocolHeader: "v5.channel.k8s.io",
    			},
    			expected: false,
    		},
    		"Websocket connection upgrade headers with v5 protocol is true": {
    			headers: map[string]string{
    				"Connection":            "upgrade",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/upgrade/postupgrade.go

    	if len(unupgradedControlPlanes) > 0 {
    		fmt.Fprintf(out, "[upgrade/addons] skip upgrade addons because control plane instances %v have not been upgraded\n", unupgradedControlPlanes)
    		return nil
    	}
    
    	var errs []error
    
    	// If the coredns ConfigMap is missing, show a warning and assume that the
    	// DNS addon was skipped during "kubeadm init", and that its redeployment on upgrade is not desired.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. tests/test_tutorial/test_response_model/test_tutorial003_01_py310.py

                "password": "fighter",
                "email": "******@****.***",
                "full_name": "Grave Dohl",
            },
        )
        assert response.status_code == 200, response.text
        assert response.json() == {
            "username": "foo",
            "email": "******@****.***",
            "full_name": "Grave Dohl",
        }
    
    
    @needs_py310
    def test_openapi_schema(client: TestClient):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Aug 04 20:47:07 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  5. src/cmd/go/internal/mvs/mvs_test.go

    build A2: A2 B2 D2 E1
    
    # But the upgrade from A1 preserves the E2 dep explicitly.
    upgrade A1 B2: A1 B2 D2 E2
    upgradereq A1 B2: B2 E2
    
    name: cross5
    A: D1
    D1: E2
    D2: E1
    build A:       A D1 E2
    upgrade* A:    A D2 E2
    upgrade A D2:  A D2 E2
    upgradereq A D2: D2 E2
    
    name: cross6
    A: D2
    D1: E2
    D2: E1
    build A:      A D2 E1
    upgrade* A:   A D2 E2
    upgrade A E2: A D2 E2
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:01:26 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/authentication/request/websocket/protocol_test.go

    		{Req: &http.Request{}},
    		{Req: &http.Request{Header: http.Header{
    			"Connection":             []string{"upgrade"},
    			"Upgrade":                []string{"websocket"},
    			"Sec-Websocket-Protocol": []string{"other-protocol"}}},
    		},
    		{Req: &http.Request{Header: http.Header{
    			"Connection":             []string{"upgrade"},
    			"Upgrade":                []string{"websocket"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 08 21:43:39 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  7. gradle/dependency-management/capabilities.json

        },
    
        // forced upgrade: the following modules will automatically be replaced with the selected module
        // even if there's no conflict, and forces an upgrade to the specified version
        {
            "name": "asm",
            "providedBy": [
                "asm:asm", "asm:asm-all", "asm:asm-debug-all"
            ],
            "selected": "org.ow2.asm:asm",
            "upgrade": "7.1"
        },
        {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 14:54:52 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_query_main.txt

    go mod download rsc.io/quote@5d9f230b
    go mod download rsc.io/quote@v1.5.2
    go mod download rsc.io/quote@latest
    
    # 'go mod download' will not download @upgrade or @patch, since they always
    # resolve to the main module.
    go mod download rsc.io/quote@upgrade
    stderr '^go: skipping download of rsc.io/quote@upgrade that resolves to the main module$'
    go mod download rsc.io/quote@patch
    stderr '^go: skipping download of rsc.io/quote@patch that resolves to the main module$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 15 00:06:54 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/upgrade/policy_test.go

    	}{
    		{
    			name: "minor upgrade",
    			vg: &fakeVersionGetter{
    				clusterVersion: minimumControlPlaneVersion.WithPatch(3).String(),
    				kubeletVersion: minimumControlPlaneVersion.WithPatch(3).String(),
    				kubeadmVersion: minimumControlPlaneVersion.WithPatch(5).String(),
    			},
    			newK8sVersion: minimumControlPlaneVersion.WithPatch(5).String(),
    		},
    		{
    			name: "major upgrade",
    			vg: &fakeVersionGetter{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 03:17:05 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/dependencysubstitution/DefaultDependencyResolveDetailsSpec.groovy

            when:
            details.because("forcefully upgrade dependency")
            details.useTarget("org:bar:2.0")
    
            then:
            details.target.toString() == 'org:bar:2.0'
            with (getReason(details)) {
                cause == ComponentSelectionCause.SELECTED_BY_RULE
                description == "forcefully upgrade dependency"
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top