Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for atom (0.05 sec)

  1. cmd/object-api-options.go

    	var opts ObjectOptions
    
    	var partNumber int
    	var err error
    	if pn := r.Form.Get(xhttp.PartNumber); pn != "" {
    		partNumber, err = strconv.Atoi(pn)
    		if err != nil {
    			return opts, err
    		}
    		if isMaxPartID(partNumber) {
    			return opts, errInvalidMaxParts
    		}
    		if partNumber <= 0 {
    			return opts, errInvalidArgument
    		}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. pilot/pkg/model/gateway.go

    		port := name[len("http."):]
    		portNumber, _ = strconv.Atoi(port)
    		return
    	} else if strings.HasPrefix(name, "https.") && strings.Count(name, ".") == 4 {
    		name = name[len("https."):]
    		// format: https.<port>.<port_name>.<gw name>.<gw namespace>
    		portNums, rest, ok := strings.Cut(name, ".")
    		if !ok {
    			return
    		}
    		portNumber, _ = strconv.Atoi(portNums)
    		portName, rest, ok = strings.Cut(rest, ".")
    		if !ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  3. pkg/config/constants/constants.go

    	DataplaneModeAmbient = "ambient"
    	// Set by users to indicate that the (namespace|pod) should NOT be captured for ambient
    	DataplaneModeNone    = "none"
    	DataplaneModeInherit = "inherit" // TODO do we need this atm
    
    	// AmbientRedirection specifies whether a pod has ambient redirection (to ztunnel) configured.
    	AmbientRedirection = "ambient.istio.io/redirection"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. cmd/object-multipart-handlers.go

    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(s3Error), r.URL)
    		return
    	}
    
    	uploadID := r.Form.Get(xhttp.UploadID)
    	partIDString := r.Form.Get(xhttp.PartNumber)
    
    	partID, err := strconv.Atoi(partIDString)
    	if err != nil || partID <= 0 {
    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrInvalidPart), r.URL)
    		return
    	}
    
    	// check partID with maximum part ID for multipart objects
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster.go

    			hostIP, hostPort, hostErr := net.SplitHostPort(ingressListener.DefaultEndpoint)
    			if hostPort == "" || hostErr != nil {
    				continue
    			}
    			var err error
    			if port, err = strconv.Atoi(hostPort); err != nil {
    				continue
    			}
    			if hostIP == model.PodIPAddressPrefix {
    				for _, proxyIPAddr := range cb.proxyIPAddresses {
    					if netutil.IsIPv4Address(proxyIPAddr) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
Back to top