Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for unstable (0.16 sec)

  1. src/cmd/vendor/golang.org/x/mod/module/module.go

    func splitGopkgIn(path string) (prefix, pathMajor string, ok bool) {
    	if !strings.HasPrefix(path, "gopkg.in/") {
    		return path, "", false
    	}
    	i := len(path)
    	if strings.HasSuffix(path, "-unstable") {
    		i -= len("-unstable")
    	}
    	for i > 0 && ('0' <= path[i-1] && path[i-1] <= '9') {
    		i--
    	}
    	if i <= 1 || path[i-1] != 'v' || path[i-2] != '.' {
    		// All gopkg.in paths must end in vN for some N.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/upgrade/compute_test.go

    						EtcdVersion:    getEtcdVersion(v1Z0alpha2),
    					},
    				},
    			},
    			allowExperimental: true,
    			errExpected:       false,
    		},
    		{
    			name: "upgrade from an unstable version to an unstable version should be supported",
    			vg: &fakeVersionGetter{
    				clusterVersion:   v1Z0alpha1.String(),
    				componentVersion: v1Z0alpha1.String(),
    				kubeletVersion:   v1Y5.String(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 08:39:51 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  3. CHANGELOG.md

    **not stable** and will likely change before the final 5.0.0 release.
    
    If you have code that subclasses `okhttp3.mockwebserver.QueueDispatcher`, this update is not source
    or binary compatible. Migrating to the new `mockwebserver3` package will fix this problem.
    
     *  New: DNS over HTTPS is now a stable feature of OkHttp. We introduced this as an experimental
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:31:39 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/main/java/org/gradle/buildinit/tasks/InitBuild.java

        }
    
        /**
         * Can the generated build use new and unstable features?
         *
         * When enabled, the generated build will use new patterns, APIs or features that
         * may be unstable between minor releases. Use this if you'd like to try out the
         * latest features of Gradle.
         *
         * By default, init will generate a build that uses stable features and behavior.
         *
         * @since 7.3
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 12:58:10 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  5. src/cmd/go/internal/cfg/cfg.go

    	CmdName string // "build", "install", "list", "mod tidy", etc.
    
    	DebugActiongraph  string // -debug-actiongraph flag (undocumented, unstable)
    	DebugTrace        string // -debug-trace flag
    	DebugRuntimeTrace string // -debug-runtime-trace flag (undocumented, unstable)
    
    	// GoPathError is set when GOPATH is not set. it contains an
    	// explanation why GOPATH is unset.
    	GoPathError   string
    	GOPATHChanged bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modfetch/coderepo.go

    func (r *codeRepo) Versions(ctx context.Context, prefix string) (*Versions, error) {
    	// Special case: gopkg.in/macaroon-bakery.v2-unstable
    	// does not use the v2 tags (those are for macaroon-bakery.v2).
    	// It has no possible tags at all.
    	if strings.HasPrefix(r.modPath, "gopkg.in/") && strings.HasSuffix(r.modPath, "-unstable") {
    		return &Versions{}, nil
    	}
    
    	p := prefix
    	if r.codeDir != "" {
    		p = r.codeDir + "/" + p
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  7. cmd/perf-tests.go

    	// If the first disconnected before the last connected, we likely had a network issue.
    	if delta <= 0 {
    		rx = 0
    		errStr = "detected network disconnections, possibly an unstable network"
    	}
    
    	globalSiteNetPerfRX.Reset()
    	return madmin.SiteNetPerfNodeResult{
    		Endpoint:        "",
    		TX:              r.n,
    		TXTotalDuration: duration,
    		RX:              uint64(rx),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. hack/unwanted-dependencies.json

          "github.com/gogo/protobuf": "unmaintained",
          "github.com/golang/mock": "unmaintained, archive mode",
          "github.com/google/gofuzz": "unmaintained, archive mode",
          "github.com/google/s2a-go": "cloud dependency, unstable",
          "github.com/google/shlex": "unmaintained, archive mode",
          "github.com/googleapis/enterprise-certificate-proxy": "references cloud dependencies",
          "github.com/googleapis/gax-go/v2": "references cloud dependencies",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 12:31:38 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. pkg/log/options.go

    	})
    }
    
    // Extension provides an extension mechanism for logs.
    // This is essentially like https://pkg.go.dev/golang.org/x/exp/slog#Handler.
    // This interface should be considered unstable; we will likely swap it for slog in the future and not expose zap internals.
    // Returns a modified Core interface, and a Close() function.
    type Extension func(c zapcore.Core) (zapcore.Core, func() error, error)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:04:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/VersionTest.java

         */
        @Test
        void testCompareUuidVersionStringStream() {
            // this operation below fails with IAEx if comparison is unstable
            uuidVersionStringStream().map(this::newVersion).sorted().collect(toList());
        }
    
        private Stream<String> uuidVersionStringStream() {
            return Stream.of(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 17.1K bytes
    - Viewed (0)
Back to top