Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 799 for upgrades (0.23 sec)

  1. platforms/core-runtime/instrumentation-declarations/src/main/java/org/gradle/internal/instrumentation/property/upgrades/PropertyUpgradeInstrumentationRegistry.java

     * limitations under the License.
     */
    
    package org.gradle.internal.instrumentation.property.upgrades;
    
    import org.gradle.internal.instrumentation.api.annotations.VisitForInstrumentation;
    
    /**
     * Add classes to visit to this registry to enable property upgrade instrumentation.
     *
     * Classes that should be visited should be added to the @VisitForInstrumentation annotation, e.g.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:39 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_get_downup_indirect_pruned.txt

    #
    # b.1 ---- c.2
    #
    # If we downgrade module d to version 1, we must downgrade b as well.
    # If that downgrade selects b version 1, we will upgrade module c to version 2.
    
    cp go.mod go.mod.orig
    go mod tidy
    cmp go.mod.orig go.mod
    
    # Downgrading d to version 1 downgrades b, which upgrades c.
    go get -v example.com/d@v0.1.0
    go list -m all
    stdout '^example.com/b v0.1.0 '
    stdout '^example.com/c v0.2.0 '
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 13:05:03 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. cluster/images/etcd/README.md

    environment variables. If the persisted version differs from the target version,
    `migrate-if-needed.sh` will migrate the data from the current to the target
    version.
    
    Upgrades to any target version are supported. The data will be automatically upgraded
    in steps to each minor version until the target version is reached.
    
    Downgrades to the previous minor version of the 3.x series is supported.
    
    #### Permissions
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 27 12:41:39 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_list_upgrade.txt

    env GO111MODULE=on
    
    # Populate go.sum
    go list -m -mod=mod all
    
    # Check for upgrades.
    go list -m -u all
    stdout 'rsc.io/quote v1.2.0 \[v1\.5\.2\]'
    
    -- go.mod --
    module x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 11 13:08:54 UTC 2020
    - 196 bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl-plugins/README.md

    Having tests here breaks Gradle's ability to instrument plugins defined in this subproject and their dependencies when embedded runner is used.
    Instrumenting the plugins is important to properly test configuration caching and bytecode upgrades, without it the behavior of the embedded runner doesn't match the normal Gradle execution.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:41:55 UTC 2023
    - 770 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_get_downup_indirect.txt

    # If that downgrade selects b version 1, we will upgrade module c to version 2.
    
    cp go.mod go.mod.orig
    go mod tidy
    cmp go.mod.orig go.mod
    
    # Downgrading d to version 1 downgrades b, which upgrades c.
    go get example.com/d@v0.1.0
    go list -m all
    stdout '^example.com/b v0.1.0 '
    stdout '^example.com/c v0.2.0 '
    stdout '^example.com/d v0.1.0 '
    cmp go.mod go.mod.down1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 13:05:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/upgrade.go

    		errorMsg := fmt.Sprintf("unable to upgrade: missing upgrade headers in request: %#v", req.Header)
    		http.Error(w, errorMsg, http.StatusBadRequest)
    		return nil
    	}
    
    	hijacker, ok := w.(http.Hijacker)
    	if !ok {
    		errorMsg := "unable to upgrade: unable to hijack response"
    		http.Error(w, errorMsg, http.StatusInternalServerError)
    		return nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 28 08:02:09 UTC 2022
    - 4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/mvs/mvs.go

    			required, err = reqs.Required(m)
    		}
    
    		u := m
    		if upgrade != nil {
    			upgradeTo, upErr := upgrade(m)
    			if upErr == nil {
    				u = upgradeTo
    			} else if err == nil {
    				err = upErr
    			}
    		}
    
    		mu.Lock()
    		if err != nil {
    			errs[m] = err
    		}
    		if u != m {
    			upgrades[m] = u
    			required = append([]module.Version{u}, required...)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 21:58:12 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/internal-instrumentation-api/src/main/java/org/gradle/internal/instrumentation/api/types/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Package with types of interceptors. Currently, we support bytecode upgrades or for configuration cache interceptors.
     */
    @org.gradle.api.NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 13:39:36 UTC 2023
    - 827 bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/httpstream/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package httpstream adds multiplexed streaming support to HTTP requests and
    // responses via connection upgrades.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 27 20:10:42 UTC 2017
    - 758 bytes
    - Viewed (0)
Back to top