Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for incoming2 (0.09 sec)

  1. pilot/pkg/model/endpointshards.go

    	defer ep.Unlock()
    	newIstioEndpoints := istioEndpoints
    
    	oldIstioEndpoints := ep.Shards[shard]
    	needPush := false
    	if oldIstioEndpoints == nil {
    		// If there are no old endpoints, we should push with incoming endpoints as there is nothing to compare.
    		needPush = true
    	} else {
    		newIstioEndpoints = make([]*IstioEndpoint, 0, len(istioEndpoints))
    		// Check if new Endpoints are ready to be pushed. This check
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. pilot/pkg/xds/delta.go

    				return <-con.ErrorCh()
    			}
    		case <-con.StopCh():
    			return nil
    		default:
    		}
    		// If there wasn't already a request, poll for requests and pushes. Note: if we have a huge
    		// amount of incoming requests, we may still send some pushes, as we do not `continue` above;
    		// however, requests will be handled ~2x as much as pushes. This ensures a wave of requests
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  3. cmd/object-multipart-handlers.go

    	encodedSuccessResponse := encodeResponse(response)
    
    	// Write success response.
    	writeSuccessResponseXML(w, encodedSuccessResponse)
    }
    
    // PutObjectPartHandler - uploads an incoming part for an ongoing multipart operation.
    func (api objectAPIHandlers) PutObjectPartHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := newContext(r, w, "PutObjectPart")
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 38.8K bytes
    - Viewed (0)
Back to top