Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for _Colon (0.14 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      // The full name of a test Bar in test case Foo is defined as
      // "Foo.Bar".  Only the tests that match the filter will run.
      //
      // A filter is a colon-separated list of glob (not regex) patterns,
      // optionally followed by a '-' and a colon-separated list of
      // negative patterns (tests to exclude).  A test is run if it
      // matches one of the positive patterns and does not match any of
      // the negative patterns.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

                while (++i < limit) {
                  if (input[i] == ']') break
                }
              }
              ':' -> return i
            }
            i++
          }
          return limit // No colon.
        }
    
        private fun parsePort(
          input: String,
          pos: Int,
          limit: Int,
        ): Int {
          return try {
            // Canonicalize the port string to skip '\n' etc.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  3. src/html/template/escape_test.go

    			`<a style="background: '#ZgotmplZ'">`,
    		},
    		{
    			"styleStrEncodedProtocolEncoded",
    			`<a style="background: '{{"javascript\\3a alert(1337)"}}'">`,
    			// The CSS string 'javascript\\3a alert(1337)' does not contain a colon.
    			`<a style="background: 'javascript\\3a alert\28 1337\29 '">`,
    		},
    		{
    			"styleURLGoodProtocolPassed",
    			`<a style="background: url('{{"http://oreilly.com/O'Reilly Animals(1)<2>;{}.html"}}')">`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  4. src/reflect/type.go

    // optionally space-separated key:"value" pairs.
    // Each key is a non-empty string consisting of non-control
    // characters other than space (U+0020 ' '), quote (U+0022 '"'),
    // and colon (U+003A ':').  Each value is quoted using U+0022 '"'
    // characters and Go string literal syntax.
    type StructTag string
    
    // Get returns the value associated with key in the tag string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  5. src/net/http/request.go

    //
    // With HTTP Basic Authentication the provided username and password
    // are not encrypted. It should generally only be used in an HTTPS
    // request.
    //
    // The username may not contain a colon. Some protocols may impose
    // additional requirements on pre-escaping the username and
    // password. For instance, when used with OAuth2, both arguments must
    // be URL encoded first with [url.QueryEscape].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  6. src/go/build/build.go

    		}
    
    		// #cgo (nocallback|noescape) <function name>
    		if fields := strings.Fields(line); len(fields) == 3 && (fields[1] == "nocallback" || fields[1] == "noescape") {
    			continue
    		}
    
    		// Split at colon.
    		line, argstr, ok := strings.Cut(strings.TrimSpace(line[4:]), ":")
    		if !ok {
    			return fmt.Errorf("%s: invalid #cgo line: %s", filename, orig)
    		}
    
    		// Parse GOOS/GOARCH stuff.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  7. src/os/os_test.go

    	if err := WriteFile(filepath.Join(d, "control.txt"), []byte(string("Hello, world!")), 0644); err != nil {
    		t.Fatal(err)
    	}
    	if err := WriteFile(filepath.Join(d, `e:xperi\ment.txt`), []byte(string("Hello, colon and backslash!")), 0644); err != nil {
    		t.Fatal(err)
    	}
    
    	fsys := DirFS(d)
    	err := fs.WalkDir(fsys, ".", func(path string, e fs.DirEntry, err error) error {
    		if fs.ValidPath(e.Name()) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
Back to top