Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for headerKey (0.31 sec)

  1. docs/debugging/xl-meta/main.go

    					Header   json.RawMessage
    					Metadata json.RawMessage
    				}
    				versions := make([]version, hdr.versions)
    				headerVer := hdr.headerVer
    				err = decodeVersions(v, hdr.versions, func(idx int, hdr, meta []byte) error {
    					var header xlMetaV2VersionHeaderV2
    					if _, err := header.UnmarshalMsg(hdr, headerVer); err != nil {
    						return err
    					}
    					b, err := header.MarshalJSON()
    					if err != nil {
    						return err
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:49:23 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  2. pilot/pkg/leaderelection/leaderelection.go

    		// for these per-revision ones anyways, since the prioritization is about preferring one revision over others.
    		config.KeyComparison = func(leaderKey string) bool {
    			return LocationPrioritizedComparison(leaderKey, l)
    		}
    	}
    
    	return k8sleaderelection.NewLeaderElector(config)
    }
    
    func LocationPrioritizedComparison(currentLeaderRevision string, l *LeaderElection) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. src/net/mail/message_test.go

    	for i, test := range parseTests {
    		msg, err := ReadMessage(bytes.NewBuffer([]byte(test.in)))
    		if err != nil {
    			t.Errorf("test #%d: Failed parsing message: %v", i, err)
    			continue
    		}
    		if !headerEq(msg.Header, test.header) {
    			t.Errorf("test #%d: Incorrectly parsed message header.\nGot:\n%+v\nWant:\n%+v",
    				i, msg.Header, test.header)
    		}
    		body, err := io.ReadAll(msg.Body)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    	// uint16Len is the length (in bytes) of a uint16.
    	uint16Len = 2
    
    	// uint32Len is the length (in bytes) of a uint32.
    	uint32Len = 4
    
    	// headerLen is the length (in bytes) of a DNS header.
    	//
    	// A header is comprised of 6 uint16s and no padding.
    	headerLen = 6 * uint16Len
    )
    
    type nestedError struct {
    	// s is the current level's error message.
    	s string
    
    	// err is the nested error.
    	err error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/net/HttpHeaders.java

       *
       * @since 33.0.0
       */
      public static final String AD_AUCTION_SIGNALS = "Ad-Auction-Signals";
    
      /**
       * The HTTP <a href="https://wicg.github.io/turtledove/#http-headerdef-ad-auction-allowed">{@code
       * Ad-Auction-Allowed}</a> header field name.
       *
       * @since 33.2.0
       */
      public static final String AD_AUCTION_ALLOWED = "Ad-Auction-Allowed";
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 01 18:44:57 UTC 2024
    - 34.3K bytes
    - Viewed (0)
  6. guava/src/com/google/common/net/HttpHeaders.java

       *
       * @since 33.0.0
       */
      public static final String AD_AUCTION_SIGNALS = "Ad-Auction-Signals";
    
      /**
       * The HTTP <a href="https://wicg.github.io/turtledove/#http-headerdef-ad-auction-allowed">{@code
       * Ad-Auction-Allowed}</a> header field name.
       *
       * @since 33.2.0
       */
      public static final String AD_AUCTION_ALLOWED = "Ad-Auction-Allowed";
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 01 18:44:57 UTC 2024
    - 34.3K bytes
    - Viewed (0)
Back to top