Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,246 for semver (0.11 sec)

  1. src/cmd/go/internal/modcmd/edit.go

    }
    
    // allowedVersionArg returns whether a token may be used as a version in go.mod.
    // We don't call modfile.CheckPathVersion, because that insists on versions
    // being in semver form, but here we want to allow versions like "master" or
    // "1234abcdef", which the go command will resolve the next time it runs (or
    // during -fix).  Even so, we need to make sure the version is a valid token.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/resource/v1alpha2/generated.proto

      // StringValue is a string.
      optional string string = 5;
    
      // StringSliceValue is an array of strings.
      optional NamedResourcesStringSlice stringSlice = 9;
    
      // VersionValue is a semantic version according to semver.org spec 2.0.0.
      optional string version = 10;
    }
    
    // NamedResourcesFilter is used in ResourceFilterModel.
    message NamedResourcesFilter {
      // Selector is a CEL expression which must evaluate to true if a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 22:07:50 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/upgrade/staticpods.go

    		return "", err
    	}
    
    	return convertImageTagMetadataToSemver(image.TagFromImage(pod.Spec.Containers[0].Image)), nil
    }
    
    // convertImageTagMetadataToSemver converts imagetag in the format of semver_metadata to semver+metadata
    func convertImageTagMetadataToSemver(tag string) string {
    	// Container registries do not support `+` characters in tag names. This prevents imagetags from
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  4. pilot/pkg/model/context.go

    func (node *Proxy) IsAmbient() bool {
    	return node.IsWaypointProxy() || node.IsZTunnel()
    }
    
    // IstioVersion encodes the Istio version of the proxy. This is a low key way to
    // do semver style comparisons and generate the appropriate envoy config
    type IstioVersion struct {
    	Major int
    	Minor int
    	Patch int
    }
    
    var MaxIstioVersion = &IstioVersion{Major: 65535, Minor: 65535, Patch: 65535}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (1)
  5. cmd/kubeadm/app/preflight/checks.go

    	}
    
    	// Checks if k8sVersion greater or equal than the first unsupported versions by current version of kubeadm,
    	// that is major.minor+1 (all patch and pre-releases versions included)
    	// NB. in semver patches number is a numeric, while pre-release is a string where numeric identifiers always have lower precedence than non-numeric identifiers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:20:55 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  6. pilot/pkg/bootstrap/server.go

    	serviceEntryController *serviceentry.Controller
    
    	httpServer  *http.Server // debug, monitoring and readiness Server.
    	httpAddr    string
    	httpsServer *http.Server // webhooks HTTPS Server.
    	httpsAddr   string
    
    	grpcServer        *grpc.Server
    	grpcAddress       string
    	secureGrpcServer  *grpc.Server
    	secureGrpcAddress string
    
    	// monitoringMux listens on monitoringAddr(:15014).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  7. pilot/cmd/pilot-agent/status/server.go

    	<-ctx.Done()
    	log.Info("Status server has successfully terminated")
    }
    
    func (s *Server) handlePprofIndex(w http.ResponseWriter, r *http.Request) {
    	if !istioNetUtil.IsRequestFromLocalhost(r) {
    		http.Error(w, "Only requests from localhost are allowed", http.StatusForbidden)
    		return
    	}
    
    	pprof.Index(w, r)
    }
    
    func (s *Server) handlePprofCmdline(w http.ResponseWriter, r *http.Request) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (1)
  8. src/net/rpc/server.go

    	}
    	server.reqLock.Unlock()
    	return req
    }
    
    func (server *Server) freeRequest(req *Request) {
    	server.reqLock.Lock()
    	req.next = server.freeReq
    	server.freeReq = req
    	server.reqLock.Unlock()
    }
    
    func (server *Server) getResponse() *Response {
    	server.respLock.Lock()
    	resp := server.freeResp
    	if resp == nil {
    		resp = new(Response)
    	} else {
    		server.freeResp = resp.next
    		*resp = Response{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  9. docs/de/docs/deployment/server-workers.md

    [19515] [INFO] Booting worker with pid: 19515
    [19511] [INFO] Started server process [19511]
    [19511] [INFO] Waiting for application startup.
    [19511] [INFO] Application startup complete.
    [19513] [INFO] Started server process [19513]
    [19513] [INFO] Waiting for application startup.
    [19513] [INFO] Application startup complete.
    [19514] [INFO] Started server process [19514]
    [19514] [INFO] Waiting for application startup.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:19:25 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. src/net/http/httptest/server.go

    // The caller should call Close when finished, to shut it down.
    func NewUnstartedServer(handler http.Handler) *Server {
    	return &Server{
    		Listener: newLocalListener(),
    		Config:   &http.Server{Handler: handler},
    	}
    }
    
    // Start starts a server from NewUnstartedServer.
    func (s *Server) Start() {
    	if s.URL != "" {
    		panic("Server already started")
    	}
    	if s.client == nil {
    		s.client = &http.Client{Transport: &http.Transport{}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:26:10 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top