Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for newMapper (0.2 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)
  3. android/guava/src/com/google/common/collect/Range.java

        } else {
          Cut<C> newLower = (lowerCmp >= 0) ? lowerBound : connectedRange.lowerBound;
          Cut<C> newUpper = (upperCmp <= 0) ? upperBound : connectedRange.upperBound;
    
          // create() would catch this, but give a confusing error message
          checkArgument(
              newLower.compareTo(newUpper) <= 0,
              "intersection is undefined for disconnected ranges %s and %s",
              this,
              connectedRange);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Range.java

        } else {
          Cut<C> newLower = (lowerCmp >= 0) ? lowerBound : connectedRange.lowerBound;
          Cut<C> newUpper = (upperCmp <= 0) ? upperBound : connectedRange.upperBound;
    
          // create() would catch this, but give a confusing error message
          checkArgument(
              newLower.compareTo(newUpper) <= 0,
              "intersection is undefined for disconnected ranges %s and %s",
              this,
              connectedRange);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  5. src/net/http/cookie_test.go

    		},
    	}
    	wantCookies := []*Cookie{
    		{Name: "de", Value: ""},
    		{Name: "client_region", Value: "0"},
    		{Name: "rpld1", Value: "0:hispeed.ch|20:che|21:zh|22:zurich|23:47.36|24:8.53|"},
    		{Name: "rpld0", Value: "1:08|"},
    		{Name: "backplane-channel", Value: "newspaper.com:1471"},
    		{Name: "devicetype", Value: "0"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  6. cmd/admin-router.go

    	adminAPIClientDevNull          = "/speedtest/client/devnull"
    	adminAPIClientDevExtraTime     = "/speedtest/client/devnull/extratime"
    )
    
    var gzipHandler = func() func(http.Handler) http.HandlerFunc {
    	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")
    	}
    	return gz
    }()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 10 21:09:36 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"new_moon":                             "\U0001f311",
    	"new_moon_with_face":                   "\U0001f31a",
    	"new_zealand":                          "\U0001f1f3\U0001f1ff",
    	"newspaper":                            "\U0001f4f0",
    	"newspaper_roll":                       "\U0001f5de\ufe0f",
    	"next_track_button":                    "\u23ed\ufe0f",
    	"ng":                                   "\U0001f196",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
Back to top