Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for 0bxxxxx (0.1 sec)

  1. src/runtime/map_test.go

    	testMapLookups(t, map[string]string{
    		"x":                      "x1val",
    		"xx":                     "x2val",
    		"foo":                    "fooval",
    		"xxxx":                   "x4val",
    		"xxxxx":                  "x5val",
    		"xxxxxx":                 "x6val",
    		strings.Repeat("x", 128): "longval",
    	})
    }
    
    func testMapLookups(t *testing.T, m map[string]string) {
    	for k, v := range m {
    		if m[k] != v {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  2. cmd/batch-rotate.go

    //     kmskey: "key-id" # match objects with KMS key-id (applicable only for sse-kms)
    //   notify:
    //     endpoint: "https://notify.endpoint" # notification endpoint to receive job status events
    //     token: "Bearer xxxxx" # optional authentication token for the notification endpoint
    
    //   retry:
    //     attempts: 10 # number of retries for the job before giving up
    //     delay: "500ms" # least amount of delay between each retry
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. src/net/url/url.go

    	}
    	return buf.String()
    }
    
    // Redacted is like [URL.String] but replaces any password with "xxxxx".
    // Only the password in u.User is redacted.
    func (u *URL) Redacted() string {
    	if u == nil {
    		return ""
    	}
    
    	ru := *u
    	if _, has := ru.User.Password(); has {
    		ru.User = UserPassword(ru.User.Username(), "xxxxx")
    	}
    	return ru.String()
    }
    
    // Values maps a string key to a list of values.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  4. cmd/batch-expire.go

    //
    //   notify:
    //     endpoint: https://notify.endpoint # notification endpoint to receive job completion status
    //     token: Bearer xxxxx # optional authentication token for the notification endpoint
    //
    //   retry:
    //     attempts: 10 # number of retries for the job before giving up
    //     delay: 500ms # least amount of delay between each retry
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 13:50:53 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modindex/read.go

    		// of the Go toolchain may have arbitrary development changes on top of the
    		// commit reported by runtime.Version, or could be completely artificial due
    		// to lacking a `git` binary (like "devel gomote.XXXXX", as synthesized by
    		// "gomote push" as of 2022-06-15). (Release builds shouldn't have
    		// modifications, but we don't want to use a behavior for releases that we
    		// haven't tested during development.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
Back to top