Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 93 for unstable (0.19 sec)

  1. docs/en/docs/deployment/manually.md

        The `--reload` option consumes much more resources, is more unstable, etc.
    
        It helps a lot during **development**, but you **shouldn't** use it in **production**.
    
    ## Hypercorn with Trio
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. cmd/kubeadm/app/apis/kubeadm/types.go

    type UpgradeApplyConfiguration struct {
    	// KubernetesVersion is the target version of the control plane.
    	KubernetesVersion string
    
    	// AllowExperimentalUpgrades instructs kubeadm to show unstable versions of Kubernetes as an upgrade
    	// alternative and allows upgrading to an alpha/beta/release candidate version of Kubernetes.
    	// Default: false
    	AllowExperimentalUpgrades *bool
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	// KubernetesVersion is the target version of the control plane.
    	// +optional
    	KubernetesVersion string `json:"kubernetesVersion,omitempty"`
    
    	// AllowExperimentalUpgrades instructs kubeadm to show unstable versions of Kubernetes as an upgrade
    	// alternative and allows upgrading to an alpha/beta/release candidate version of Kubernetes.
    	// Default: false
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/controller.go

    					tpsList = append(tpsList, targetPort)
    				}
    			}
    
    			// Iterate over target ports in the same order as defined in service spec, in case of
    			// protocol conflict for a port causes unstable protocol selection for a port.
    			for _, tp := range tpsList {
    				svcPort := tps[tp]
    				out = append(out, model.ServiceTarget{
    					Service: modelService,
    					Port: model.ServiceInstancePort{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyGraphBuilder.java

            String version = selected.getId().getVersion();
            // There must be at least one non dynamic selector agreeing with the selection
            // for the resolution result to be stable
            // and for dynamic selectors, only the "stable" ones work, which is currently
            // only ranges because those are the only ones which accept a selection without
            // upgrading
            boolean accept = false;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 34.1K bytes
    - Viewed (0)
Back to top