Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for upgrades (0.45 sec)

  1. samples/ambient-argo/documentation/Ambient Upgrade - Strategies.png

    Ambient Upgrade - Strategies.png...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 184.9K bytes
    - Viewed (0)
  2. src/net/http/server.go

    // supports the given request.
    func http1ServerSupportsRequest(req *Request) bool {
    	if req.ProtoMajor == 1 {
    		return true
    	}
    	// Accept "PRI * HTTP/2.0" upgrade requests, so Handlers can
    	// wire up their own HTTP/2 upgrades.
    	if req.ProtoMajor == 2 && req.ProtoMinor == 0 &&
    		req.Method == "PRI" && req.RequestURI == "*" {
    		return true
    	}
    	// Reject HTTP/0.x, and all other HTTP/2+ requests (which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    Add the existing custom selector label ``` #### Migrating an existing Helm release An existing helm release can be `helm upgrade`d to this chart by using the same release name. For example, if a previous installation was done like: ```console helm install istio-ingress manifests/charts/gateways/istio-ingress -n istio-system ``` It could be upgraded with ```console helm upgrade istio-ingress manifests/charts/gateway -n istio-system --set name=istio-ingressgateway --set labels.app=istio-ingressgateway...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    // module cache.
    //
    // To add a dependency for a package or upgrade it to its latest version:
    //
    //	go get example.com/pkg
    //
    // To upgrade or downgrade a package to a specific version:
    //
    //	go get example.com/pkg@v1.2.3
    //
    // To remove a dependency on a module and downgrade modules that require it:
    //
    //	go get example.com/mod@none
    //
    // To upgrade the minimum required Go version to the latest released Go version:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_builder_test.go

    				},
    			},
    			upgrade: false,
    		},
    	}
    
    	for _, test := range tests {
    		t.Run(test.name, func(t *testing.T) {
    			upgrade := shouldH2Upgrade(test.clusterName, test.port, test.mesh, test.connectionPool)
    
    			if upgrade != test.upgrade {
    				t.Fatalf("got: %t, want: %t (%v, %v)", upgrade, test.upgrade, test.mesh.H2UpgradePolicy, test.connectionPool.Http.H2UpgradePolicy)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  6. src/internal/trace/traceviewer/static/webcomponents.min.js

    o=t.getAttribute("is"),i=e.getRegisteredDefinition(t.localName)||e.getRegisteredDefinition(o);if(i&&(o&&i.tag==t.localName||!o&&!i["extends"]))return n(t,i,r)}}function n(t,n,o){return a.upgrade&&console.group("upgrade:",t.localName),n.is&&t.setAttribute("is",n.is),r(t,n),t.__upgraded__=!0,i(t),o&&e.attached(t),e.upgradeSubtree(t,o),a.upgrade&&console.groupEnd(),t}function r(e,t){Object.__proto__?e.__proto__=t.prototype:(o(e,t.prototype,t["native"]),e.__proto__=t.prototype)}function o(e,t,n){for(var r={},o=t;o!...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 115.6K bytes
    - Viewed (0)
  7. src/net/http/serve_test.go

    	if testing.Short() {
    		t.Skip("skipping in short mode")
    	}
    
    	s := newClientServerTest(t, mode, HandlerFunc(func(w ResponseWriter, r *Request) {
    		w.Header().Set("Connection", "Upgrade")
    		w.Header().Set("Upgrade", "someProto")
    		w.WriteHeader(StatusSwitchingProtocols)
    		c, buf, err := w.(Hijacker).Hijack()
    		if err != nil {
    			return
    		}
    		defer c.Close()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: Unknown version information. */
        public static final String ERRORS_unknown_version_for_upgrade = "{errors.unknown_version_for_upgrade}";
    
        /** The key of the message: Failed to upgrade from {0}: {1} */
        public static final String ERRORS_failed_to_upgrade_from = "{errors.failed_to_upgrade_from}";
    
        /** The key of the message: Failed to start reindexing from {0} to {1} */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  9. src/net/http/transport_test.go

    		io.WriteString(conn, "HTTP/1.1 101 Switching Protocols Hi\r\nConnection: upgRADe\r\nUpgrade: foo\r\n\r\nSome buffered data\n")
    		bs := bufio.NewScanner(conn)
    		bs.Scan()
    		fmt.Fprintf(conn, "%s\n", strings.ToUpper(bs.Text()))
    		<-done
    	}))
    
    	req, _ := NewRequest("GET", cst.ts.URL, nil)
    	req.Header.Set("Upgrade", "foo")
    	req.Header.Set("Connection", "upgrade")
    	res, err := cst.c.Do(req)
    	if err != nil {
    		t.Fatal(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  10. cluster/gce/util.sh

      local node_type=$1
      local node_labels=""
      if [[ "${KUBE_PROXY_DAEMONSET:-}" == "true" && "${node_type}" != "master" ]]; then
        # Add kube-proxy daemonset label to node to avoid situation during cluster
        # upgrade/downgrade when there are two instances of kube-proxy running on a node.
        node_labels="node.kubernetes.io/kube-proxy-ds-ready=true"
      fi
      if [[ -n "${NODE_LABELS:-}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
Back to top