Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,678 for newer (0.14 sec)

  1. pkg/kubelet/container/cache.go

    )
    
    // Cache stores the PodStatus for the pods. It represents *all* the visible
    // pods/containers in the container runtime. All cache entries are at least as
    // new or newer than the global timestamp (set by UpdateTime()), while
    // individual entries may be slightly newer than the global timestamp. If a pod
    // has no states known by the runtime, Cache returns an empty PodStatus object
    // with ID populated.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 07:37:01 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/work_use_toolchain.txt

    ! grep toolchain go.work
    
    # work use with older modules should leave go 1.50 in the go.work.
    go work use ./m1_22_0
    grep '^go 1.50$' go.work
    ! grep toolchain go.work
    
    # work use with newer modules should bump go and toolchain,
    # including updating to a newer toolchain as needed.
    env TESTGO_VERSION=go1.21
    env TESTGO_VERSION_SWITCH=switch
    rm go.work
    go work init
    env GOTOOLCHAIN=local
    ! go work use ./m1_22_0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. releasenotes/notes/29427.yaml

    kind: bug-fix
    area: networking
    issue:
      - 29427
      - 28516
    upgradeNotes:
      - title: Connectivity issues among your proxies when updating from 1.7.x to 1.7.5 or newer.
        content: |
          When upgrading your Istio data plane from 1.7.x (where x < 5) to 1.7.5 or newer, you may 
          observe connectivity issues between your gateway and your sidecars or among your sidecars 
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 08 21:29:31 UTC 2020
    - 653 bytes
    - Viewed (0)
  4. src/cmd/go/internal/toolchain/switch.go

    	for i := len(list) - 1; i >= 0; i-- {
    		v := list[i]
    		if gover.Compare(v, need) < 0 {
    			break
    		}
    		if gover.Lang(latest) == gover.Lang(v) {
    			continue
    		}
    		newer := latest
    		latest = v
    		if newer != "" && !gover.IsPrerelease(newer) {
    			// latest is the last patch release of Go 1.X, and we saw a non-prerelease of Go 1.(X+1),
    			// so latest is the one we want.
    			break
    		}
    	}
    	if latest == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. src/sort/slice.go

    // may be reversed from their original order.
    // For a stable sort, use [SliceStable].
    //
    // The less function must satisfy the same requirements as
    // the Interface type's Less method.
    //
    // Note: in many situations, the newer [slices.SortFunc] function is more
    // ergonomic and runs faster.
    func Slice(x any, less func(i, j int) bool) {
    	rv := reflectlite.ValueOf(x)
    	swap := reflectlite.Swapper(x)
    	length := rv.Len()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 16:40:32 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/work_init_toolchain.txt

    # work init with older modules should leave go 1.50 in the go.work.
    rm go.work
    go work init ./m1_22_0
    grep '^go 1.50$' go.work
    ! grep toolchain go.work
    
    # work init with newer modules should bump go,
    # including updating to a newer toolchain as needed.
    # Because work init writes the current toolchain as the go version,
    # it writes the bumped go version, not the max of the used modules.
    env TESTGO_VERSION=go1.21
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/core/BuildScanAutoApplyIntegrationTest.groovy

                executer.expectDocumentedDeprecationWarning("Gradle Enterprise plugin $version has been deprecated. Starting with Gradle 9.0, only Gradle Enterprise plugin 3.13.1 or newer is supported. Consult the upgrading guide for further information: https://docs.gradle.org/current/userguide/upgrading_version_8.html#unsupported_ge_plugin_3.13")
            }
    
            and:
            runBuildWithScanRequest()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 08:50:27 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_get_upgrade.txt

    # get -u should not jump off newer pseudo-version to earlier tag
    go get -u
    grep 'rsc.io/quote v0.0.0-20180628003336-dd9747d19b04' go.mod
    
    # move to earlier pseudo-version
    go get rsc.io/quote@e7a685a342
    grep 'rsc.io/quote v0.0.0-20180214005133-e7a685a342c0' go.mod
    
    # get -u should jump off earlier pseudo-version to newer tag
    go get -u
    grep 'rsc.io/quote v1.5.2' go.mod
    
    -- go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/repository/metadata/DefaultGraphConflictResolutionPolicy.java

         * artifact, closer to the entry point, is selected
         */
        @Configuration(name = "closer-first", value = "true")
        private boolean closerFirst = true;
    
        /**
         * newer artifact is selected
         */
        @Configuration(name = "newer-first", value = "true")
        private boolean newerFirst = true;
    
        public MetadataGraphEdge apply(MetadataGraphEdge e1, MetadataGraphEdge e2) {
            int depth1 = e1.getDepth();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_require_exclude.txt

    stdout '^x $'
    ! stdout '^rsc.io/sampler v1.99.99'
    stdout '^rsc.io/sampler v1.3.0'
    
    # build with newer version available
    cp go.mod2 go.mod
    go list -mod=mod -f '{{with .Module}}{{.Path}} {{.Version}}{{end}}' all
    stderr '^go: dropping requirement on excluded version rsc.io/quote v1\.5\.1$'
    stdout 'rsc.io/quote v1.5.2'
    
    # build with excluded newer version
    cp go.mod3 go.mod
    go list -mod=mod -f '{{with .Module}}{{.Path}} {{.Version}}{{end}}' all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 14 15:02:11 UTC 2021
    - 2.7K bytes
    - Viewed (0)
Back to top