Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 53 for ugrave (0.15 sec)

  1. src/cmd/go/internal/modget/get.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: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  2. src/net/http/httputil/reverseproxy_test.go

    		}
    		if c := r.Header.Get("Te"); c != "trailers" {
    			t.Errorf("handler got Te header value %q; want 'trailers'", c)
    		}
    		if c := r.Header.Get("Upgrade"); c != "" {
    			t.Errorf("handler got Upgrade header value %q", c)
    		}
    		if c := r.Header.Get("Proxy-Connection"); c != "" {
    			t.Errorf("handler got Proxy-Connection header value %q", c)
    		}
    		if g, e := r.Host, "some-name"; g != e {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    ==== Upgrade to Apache SSHD 2.10.0
    
    Apache SSHD has been updated from 2.0.0 to https://mina.apache.org/sshd-project/download_2.10.0.html[2.10.0].
    
    ==== Replacement and upgrade of JSch
    
    http://www.jcraft.com/jsch/[JSch] has been replaced by https://github.com/mwiede/jsch[`com.github.mwiede:jsch`] and updated from 0.1.55 to https://github.com/mwiede/jsch/releases/tag/jsch-0.2.16[0.2.16]
    
    ==== Upgrade to Eclipse JGit 5.13.3
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  4. docs/changelogs/changelog_3x.md

    Updates][major_versions].
    
    This release obsoletes OkHttp 2.x, and all code that uses OkHttp's
    `com.squareup.okhttp` package should upgrade to the `okhttp3` package. Libraries
    that depend on OkHttp should upgrade quickly to prevent applications from being
    stuck on the old version.
    
     *  **There is no longer a global singleton connection pool.** In OkHttp 2.x,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.31.md

        - [Node Binaries](#node-binaries)
        - [Container Images](#container-images)
      - [Changelog since v1.30.0](#changelog-since-v1300)
      - [Urgent Upgrade Notes](#urgent-upgrade-notes)
        - [(No, really, you MUST read this before you upgrade)](#no-really-you-must-read-this-before-you-upgrade)
      - [Changes by Kind](#changes-by-kind)
        - [Deprecation](#deprecation)
        - [API Change](#api-change)
        - [Feature](#feature)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  6. docs/ru/docs/deployment/docker.md

    <details>
    <summary>Развернуть Dockerfile 👀</summary>
    
    ```Dockerfile
    FROM python:3.9
    
    WORKDIR /code
    
    COPY ./requirements.txt /code/requirements.txt
    
    RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
    
    COPY ./app /code/app
    
    CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80"]
    
    # Если используете прокси-сервер, такой как Nginx или Traefik, добавьте --proxy-headers
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  7. pkg/kubelet/pod_workers.go

    		return
    	}
    }
    
    // calculateEffectiveGracePeriod sets the initial grace period for a newly terminating pod or allows a
    // shorter grace period to be provided, returning the desired value.
    func calculateEffectiveGracePeriod(status *podSyncStatus, pod *v1.Pod, options *KillPodOptions) (int64, bool) {
    	// enforce the restriction that a grace period can only decrease and track whatever our value is,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	if probe != nil && probe.TerminationGracePeriodSeconds != nil {
    		if *probe.TerminationGracePeriodSeconds > *pod.Spec.TerminationGracePeriodSeconds {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

                module('xml') tries('1.0') alignsTo('1.1') byVirtualPlatform()
                module('json') alignsTo('1.1') byVirtualPlatform()
    
                // the following will NOT upgrade to 1.1, despite core being 1.1, because this module
                // does not belong to the same platform
                module('module') group('outside') alignsTo('1.0') byVirtualPlatform('outside', 'platform')
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  10. pkg/kubelet/pod_workers_test.go

    		syncPodRecords := processed[uid]
    		var match bool
    		grace := int64(30)
    		for _, possible := range [][]syncPodRecord{
    			{{name: string(uid), updateType: kubetypes.SyncPodKill, gracePeriod: &grace}, {name: string(uid), terminated: true}},
    			{{name: string(uid), updateType: kubetypes.SyncPodCreate}, {name: string(uid), updateType: kubetypes.SyncPodKill, gracePeriod: &grace}, {name: string(uid), terminated: true}},
    		} {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
Back to top