Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 155 for _Colon (0.1 sec)

  1. src/vendor/golang.org/x/net/http2/hpack/hpack.go

    	// Sensitive means that this header field should never be
    	// indexed.
    	Sensitive bool
    }
    
    // IsPseudo reports whether the header field is an http2 pseudo header.
    // That is, it reports whether it starts with a colon.
    // It is not otherwise guaranteed to be a valid pseudo header field,
    // though.
    func (hf HeaderField) IsPseudo() bool {
    	return len(hf.Name) != 0 && hf.Name[0] == ':'
    }
    
    func (hf HeaderField) String() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 14 18:30:34 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  2. src/cmd/go/internal/mvs/mvs_test.go

    		line = strings.TrimSpace(line)
    		if strings.HasPrefix(line, "#") || line == "" {
    			continue
    		}
    		i := strings.Index(line, ":")
    		if i < 0 {
    			t.Fatalf("missing colon: %q", line)
    		}
    		key := strings.TrimSpace(line[:i])
    		val := strings.TrimSpace(line[i+1:])
    		if key == "" {
    			t.Fatalf("missing key: %q", line)
    		}
    		kf := strings.Fields(key)
    		switch kf[0] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:01:26 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. src/go/printer/testdata/declarations.input

    	testDir = flag.String("testdir", "", "Go root subdirectory - for testing only (faster startups)")
    	pkgPath = flag.String("path", "", "additional package directories (colon-separated)")
    	filter = flag.String("filter", "", "filter file containing permitted package directory paths")
    	filterMin = flag.Int("filter_minutes", 0, "filter file update interval in minutes; disabled if <= 0")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.5K bytes
    - Viewed (0)
  4. src/go/printer/testdata/declarations.golden

    	testDir		= flag.String("testdir", "", "Go root subdirectory - for testing only (faster startups)")
    	pkgPath		= flag.String("path", "", "additional package directories (colon-separated)")
    	filter		= flag.String("filter", "", "filter file containing permitted package directory paths")
    	filterMin	= flag.Int("filter_minutes", 0, "filter file update interval in minutes; disabled if <= 0")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.2K bytes
    - Viewed (0)
  5. src/text/template/parse/lex.go

    	itemComplex                      // complex constant (1+2i); imaginary is just a number
    	itemAssign                       // equals ('=') introducing an assignment
    	itemDeclare                      // colon-equals (':=') introducing a declaration
    	itemEOF
    	itemField      // alphanumeric identifier starting with '.'
    	itemIdentifier // alphanumeric identifier not starting with '.'
    	itemLeftDelim  // left action delimiter
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 04 22:36:12 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  6. pkg/collateral/control.go

    	done
    }
    __istio_compopt() {
    	true # don't do anything. Not supported by bashcompinit in zsh
    }
    __istio_ltrim_colon_completions()
    {
    	if [[ "$1" == *:* && "$COMP_WORDBREAKS" == *:* ]]; then
    		# Remove colon-word prefix from COMPREPLY items
    		local colon_word=${1%${1##*:}}
    		local i=${#COMPREPLY[*]}
    		while [[ $((--i)) -ge 0 ]]; do
    			COMPREPLY[$i]=${COMPREPLY[$i]#"$colon_word"}
    		done
    	fi
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 03:51:36 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  7. src/net/url/url_test.go

    		{"http://[::1]/", false},
    		{"http://[::1]a", true},
    		{"http://[::1]%23", true},
    		{"http://[::1%25en0]", false},    // valid zone id
    		{"http://[::1]:", false},         // colon, but no port OK
    		{"http://x:", false},             // colon, but no port OK
    		{"http://[::1]:%38%30", true},    // not allowed: % encoding only for non-ASCII
    		{"http://[::1%25%41]", false},    // RFC 6874 allows over-escaping in zone
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  8. pkg/volume/util/util_test.go

    			name:         "windows path no drive",
    		},
    		{
    			goos:         "windows",
    			path:         "\\:\\some\\path",
    			expectedPath: "\\:\\some\\path",
    			name:         "windows path with colon",
    		},
    	}
    	for _, test := range tests {
    		if runtime.GOOS == test.goos {
    			path := MakeAbsolutePath(test.goos, test.path)
    			if path != test.expectedPath {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/validation/validation.go

    // contain:
    // * unreserved characters (alphanumeric, '-', '.', '_', '~')
    // * percent-encoded octets
    // * sub-delims ("!", "$", "&", "'", "(", ")", "*", "+", ",", ";", "=")
    // * a colon character (":")
    const httpPathFmt string = `[A-Za-z0-9/\-._~%!$&'()*+,;=:]+`
    
    var httpPathRegexp = regexp.MustCompile("^" + httpPathFmt + "$")
    
    // IsDomainPrefixedPath checks if the given string is a domain-prefixed path
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 16:08:43 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. src/time/zoneinfo.go

    	zone []zone
    	tx   []zoneTrans
    
    	// The tzdata information can be followed by a string that describes
    	// how to handle DST transitions not recorded in zoneTrans.
    	// The format is the TZ environment variable without a colon; see
    	// https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap08.html.
    	// Example string, for America/Los_Angeles: PST8PDT,M3.2.0,M11.1.0
    	extend string
    
    	// Most lookups will be for the current time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
Back to top