Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,315 for semver (0.24 sec)

  1. src/cmd/vendor/modules.txt

    ## explicit; go 1.21
    golang.org/x/build/relnote
    # golang.org/x/mod v0.18.0
    ## explicit; go 1.18
    golang.org/x/mod/internal/lazyregexp
    golang.org/x/mod/modfile
    golang.org/x/mod/module
    golang.org/x/mod/semver
    golang.org/x/mod/sumdb
    golang.org/x/mod/sumdb/dirhash
    golang.org/x/mod/sumdb/note
    golang.org/x/mod/sumdb/tlog
    golang.org/x/mod/zip
    # golang.org/x/sync v0.7.0
    ## explicit; go 1.18
    golang.org/x/sync/errgroup
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. pilot/pkg/model/envoyfilter.go

    		} else if cp.Match.Proxy != nil && cp.Match.Proxy.ProxyVersion != "" {
    			// Attempt to convert regex to a simple prefix match for the common case of matching
    			// a standard Istio version. This field should likely be replaced with semver, but for now
    			// we can workaround the performance impact of regex
    			if prefix, f := wellKnownVersions[cp.Match.Proxy.ProxyVersion]; f {
    				cpw.ProxyPrefixMatch = prefix
    			} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 13:57:28 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. docs/ja/docs/deployment/versions.md

    **FastAPI** は既に多くのアプリケーションやシステムに本番環境で使われています。また、100%のテストカバレッジを維持しています。しかし、活発な開発が続いています。
    
    高頻度で新機能が追加され、定期的にバグが修正され、実装は継続的に改善されています。
    
    これが現在のバージョンがいまだに `0.x.x` な理由であり、それぞれのバージョンは破壊的な変更がなされる可能性があります。これは、<a href="https://semver.org/" class="external-link" target="_blank">セマンティック バージョニング</a>の規則に則っています。
    
    **FastAPI** を使用すると本番用アプリケーションをすぐに作成できますが (すでに何度も経験しているかもしれませんが)、残りのコードが正しく動作するバージョンなのか確認しなければいけません。
    
    ## `fastapi` のバージョンを固定
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Feb 07 17:44:28 UTC 2021
    - 4.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/query_test.go

    	m.Run()
    	return nil
    }
    
    var (
    	queryRepo   = "vcs-test.golang.org/git/querytest.git"
    	queryRepoV2 = queryRepo + "/v2"
    	queryRepoV3 = queryRepo + "/v3"
    
    	// Empty version list (no semver tags), not actually empty.
    	emptyRepoPath = "vcs-test.golang.org/git/emptytest.git"
    )
    
    var queryTests = []struct {
    	path    string
    	query   string
    	current string
    	allow   string
    	vers    string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 17:53:14 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  5. pkg/test/framework/components/authz/server.go

    		s, err := New(ctx, ns())
    		if err != nil {
    			return err
    		}
    
    		// Store the server.
    		*server = s
    		return err
    	}
    }
    
    // SetupLocal is a utility function for setting a global variable for a local Server.
    func SetupLocal(server *Server, ns namespace.Getter) resource.SetupFn {
    	if ns == nil {
    		ns = namespace.NilGetter
    	}
    
    	return func(ctx resource.Context) error {
    		s, err := NewLocal(ctx, ns())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 14 23:39:05 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  6. pilot/cmd/pilot-agent/status/testserver/server.go

    	}
    
    	// Start a local HTTP server
    	server := httptest.NewUnstartedServer(mux)
    
    	l, err := net.Listen("tcp", ":0")
    	if err != nil {
    		panic("Could not create listener for test: " + err.Error())
    	}
    	server.Listener = l
    	server.Start()
    	return server
    }
    
    func createDefaultFuncMap(statsToReturn string) map[string]func(rw http.ResponseWriter, _ *http.Request) {
    	return map[string]func(rw http.ResponseWriter, _ *http.Request){
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 26 17:53:14 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/cmd/server/server.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package server
    
    import (
    	"context"
    	"io"
    
    	"github.com/spf13/cobra"
    
    	"k8s.io/apiextensions-apiserver/pkg/cmd/server/options"
    	genericapiserver "k8s.io/apiserver/pkg/server"
    )
    
    func NewServerCommand(ctx context.Context, out, errOut io.Writer) *cobra.Command {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. internal/http/server.go

    func (srv *Server) UseReadHeaderTimeout(d time.Duration) *Server {
    	srv.ReadHeaderTimeout = d
    	return srv
    }
    
    // UseHandler configure final handler for this HTTP *Server
    func (srv *Server) UseHandler(h http.Handler) *Server {
    	srv.Handler = h
    	return srv
    }
    
    // UseTLSConfig pass configured TLSConfig for this HTTP *Server
    func (srv *Server) UseTLSConfig(cfg *tls.Config) *Server {
    	srv.TLSConfig = cfg
    	return srv
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Feb 09 21:25:16 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. security/pkg/server/ca/server.go

    	}
    	certChainExpirySeconds.ValueFrom(func() float64 { return time.Until(certChainPem.NotAfter).Seconds() })
    }
    
    // Register registers a GRPC server on the specified port.
    func (s *Server) Register(grpcServer *grpc.Server) {
    	pb.RegisterIstioCertificateServiceServer(grpcServer, s)
    }
    
    // New creates a new instance of `IstioCAServiceServer`
    func New(
    	ca CertificateAuthority,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 17:35:26 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. pkg/test/framework/components/jwt/server.go

    	"istio.io/istio/pkg/test/framework/resource"
    )
    
    // Server for JWT tokens.
    type Server interface {
    	Namespace() namespace.Instance
    	FQDN() string
    	HTTPPort() int
    	HTTPSPort() int
    	JwksURI() string
    }
    
    // New creates a new JWT Server.
    func New(ctx resource.Context, ns namespace.Instance) (Server, error) {
    	return newKubeServer(ctx, ns)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 06 18:43:28 UTC 2022
    - 1.5K bytes
    - Viewed (0)
Back to top