Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for lasta (0.12 sec)

  1. cmd/encryption-v1.go

    	// Compute endEncOffset with one additional DARE package (so
    	// we read the package containing the last desired byte).
    	endEncOffset := encCumulativeSum + (endPkgNum+1)*sseDAREEncPackageBlockSize
    	// Check if the DARE package containing the end offset is a
    	// full sized package (as the last package in the part may be
    	// smaller)
    	lastPartSize, _ := sio.EncryptedSize(uint64(sizes[partEnd]))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_waypoint.go

    		httpOpts.connectionManager.HttpProtocolOptions = &core.Http1ProtocolOptions{
    			AcceptHttp_10: true,
    		}
    	}
    	h := lb.buildHTTPConnectionManager(httpOpts)
    
    	// Last filter must be router.
    	router := h.HttpFilters[len(h.HttpFilters)-1]
    	h.HttpFilters = append(pre, h.HttpFilters[:len(h.HttpFilters)-1]...)
    	h.HttpFilters = append(h.HttpFilters, post...)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  3. pilot/pkg/bootstrap/server.go

    	s.startCA(caOpts)
    
    	// TODO: don't run this if galley is started, one ctlz is enough
    	if args.CtrlZOptions != nil {
    		_, _ = ctrlz.Run(args.CtrlZOptions, nil)
    	}
    
    	// This must be last, otherwise we will not know which informers to register
    	if s.kubeClient != nil {
    		s.addStartFunc("kube client", func(stop <-chan struct{}) error {
    			s.kubeClient.RunAndWait(stop)
    			return nil
    		})
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  4. cmd/erasure-multipart.go

    			if !cs.Valid() {
    				return oi, InvalidPart{
    					PartNumber: part.PartNumber,
    				}
    			}
    			checksumCombined = append(checksumCombined, cs.Raw...)
    		}
    
    		// All parts except the last part has to be at least 5MB.
    		if (i < len(parts)-1) && !isMinAllowedPartSize(currentFI.Parts[partIdx].ActualSize) {
    			return oi, PartTooSmall{
    				PartNumber: part.PartNumber,
    				PartSize:   expPart.ActualSize,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
Back to top