Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Dealer (0.11 sec)

  1. cmd/object-multipart-handlers.go

    	var idxCb func() []byte
    	if isCompressed {
    		wantEncryption := crypto.Requested(r.Header) || isEncrypted
    		s2c, cb := newS2CompressReader(reader, actualPartSize, wantEncryption)
    		idxCb = cb
    		defer s2c.Close()
    		reader = etag.Wrap(s2c, reader)
    		length = -1
    	}
    
    	srcInfo.Reader, err = hash.NewReader(ctx, reader, length, "", "", actualPartSize)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  2. pilot/pkg/model/gateway.go

    	// is limited to HTTP3 only
    	MergedQUICTransportServers map[ServerPort]*MergedServers
    
    	// HTTP3AdvertisingRoutes represents the set of HTTP routes which advertise HTTP/3.
    	// This mapping is used to generate alt-svc header that is needed for HTTP/3 server discovery.
    	HTTP3AdvertisingRoutes sets.String
    
    	// GatewayNameForServer maps from server to the owning gateway name.
    	// Used for select the set of virtual services that apply to a port.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_waypoint.go

    		return buildSidecarInboundHTTPRouteConfig(lb, cc)
    	}
    	if len(vss) > 1 {
    		log.Warnf("multiple virtual services for one service: %v", svc.Hostname)
    	}
    	vs := vss[0]
    
    	// Typically we setup routes with the Host header match. However, for waypoint inbound we are actually using
    	// hostname purely to match to the Service VIP. So we only need a single VHost, with routes compute based on the VS.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/analyzers_test.go

    	for _, f := range tc.inputFiles {
    		of, err := os.Open(f)
    		if err != nil {
    			return nil, fmt.Errorf("error opening test file: %q", f)
    		}
    		files = append(files, local.ReaderSource{Name: f, Reader: of})
    	}
    
    	// Include resources from test files
    	err := sa.AddTestReaderKubeSource(files)
    	if err != nil {
    		return nil, fmt.Errorf("error setting up file kube source on testcase %s: %v", tc.name, err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top