Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for newMapper (0.07 sec)

  1. pilot/pkg/networking/core/match/match.go

    }
    
    func NewDestinationIP() Mapper {
    	return newMapper(DestinationIP)
    }
    
    func NewSourceIP() Mapper {
    	return newMapper(SourceIP)
    }
    
    func NewDestinationPort() Mapper {
    	return newMapper(DestinationPort)
    }
    
    type ProtocolMatch struct {
    	TCP, HTTP *matcher.Matcher_OnMatch
    }
    
    func NewAppProtocol(pm ProtocolMatch) *matcher.Matcher {
    	m := newMapper(ApplicationProtocolInput)
    	m.Map["'h2c'"] = pm.HTTP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. cmd/kms-router.go

    func registerKMSRouter(router *mux.Router) {
    	kmsAPI := kmsAPIHandlers{}
    	kmsRouter := router.PathPrefix(kmsPathPrefix).Subrouter()
    
    	KMSVersions := []string{
    		kmsAPIVersionPrefix,
    	}
    
    	gz, err := gzhttp.NewWrapper(gzhttp.MinSize(1000), gzhttp.CompressionLevel(gzip.BestSpeed))
    	if err != nil {
    		// Static params, so this is very unlikely.
    		logger.Fatal(err, "Unable to initialize server")
    	}
    
    	for _, version := range KMSVersions {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top