Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 67 for Colon (0.05 sec)

  1. src/encoding/xml/xml_test.go

    		}
    		tokens = tokens[1:]
    	}
    	if len(tokens) > 0 {
    		t.Fatalf("lost tokens: %#v", tokens)
    	}
    }
    
    func TestRoundTrip(t *testing.T) {
    	tests := map[string]string{
    		"trailing colon":         `<foo abc:="x"></foo>`,
    		"comments in directives": `<!ENTITY x<!<!-- c1 [ " -->--x --> > <e></e> <!DOCTYPE xxx [ x<!-- c2 " -->--x ]>`,
    	}
    	for name, input := range tests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  2. src/net/http/client.go

    		}
    	}()
    
    	return stopTimer, timedOut.Load
    }
    
    // See 2 (end of page 4) https://www.ietf.org/rfc/rfc2617.txt
    // "To receive authorization, the client sends the userid and password,
    // separated by a single colon (":") character, within a base64
    // encoded string in the credentials."
    // It is not meant to be urlencoded.
    func basicAuth(username, password string) string {
    	auth := username + ":" + password
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 06:06:11 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  3. hack/local-up-cluster.sh

        warning_log "etcd terminated unexpectedly"
        ETCD_PID=
      fi
    }
    
    function print_color {
      message=$1
      prefix=${2:+$2: } # add colon only if defined
      color=${3:-1}     # default is red
      echo -n "$(tput bold)$(tput setaf "${color}")"
      echo "${prefix}${message}"
      echo -n "$(tput sgr0)"
    }
    
    function warning_log {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/path/filepath/path_test.go

    	{`.\c:foo`, `.\c:foo`},
    	{`//abc`, `\\abc`},
    	{`///abc`, `\\\abc`},
    	{`//abc//`, `\\abc\\`},
    	{`\\?\C:\`, `\\?\C:\`},
    	{`\\?\C:\a`, `\\?\C:\a`},
    
    	// Don't allow cleaning to move an element with a colon to the start of the path.
    	{`a/../c:`, `.\c:`},
    	{`a\..\c:`, `.\c:`},
    	{`a/../c:/a`, `.\c:\a`},
    	{`a/../../c:`, `..\c:`},
    	{`foo:bar`, `foo:bar`},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  7. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    k(){let e=this.current.source.start;throw this.input.error("Unclosed block",e.line,e.column)}doubleColon(e){throw this.input.error("Double colon",{offset:e[2]},{offset:e[2]+e[1].length})}unnamedAtrule(e,t){throw this.input.error("At-rule without name",{offset:t[2]},{offset:t[2]+t[1].length})}precheckMissedSemicolon(){}checkMissedSemicolon(e){let t=this.colon(e);if(t===!1)return;let r=0,n;for(let a=t-1;a>=0&&(n=e[a],!(n[0]!=="space"&&(r+=1,r===2)));a--);throw this.input.error("Missed semicolon",n...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  8. 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)
  9. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    10781         ; mapped                 ; 02D0          # 14.0 MODIFIER LETTER SUPERSCRIPT TRIANGULAR COLON
    10782         ; mapped                 ; 02D1          # 14.0 MODIFIER LETTER SUPERSCRIPT HALF TRIANGULAR COLON
    10783         ; mapped                 ; 00E6          # 14.0 MODIFIER LETTER SMALL AE
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  10. 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)
Back to top