Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Colon (0.09 sec)

  1. 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)
  2. pkg/proxy/iptables/proxier_test.go

    	if rule1.Comment == nil || rule2.Comment == nil {
    		return false
    	}
    	name1, name2 := rule1.Comment.Value, rule2.Comment.Value
    
    	// The service name is the comment up to the first space or colon
    	i := strings.IndexAny(name1, " :")
    	if i != -1 {
    		name1 = name1[:i]
    	}
    	i = strings.IndexAny(name2, " :")
    	if i != -1 {
    		name2 = name2[:i]
    	}
    
    	return name1 < name2
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.24.md

    - Fixed kubectl bug where bash completions don't work if `--context` flag is specified with a value that contains a colon. ([#107439](https://github.com/kubernetes/kubernetes/pull/107439), [@brianpursley](https://github.com/brianpursley))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 00:02:43 UTC 2023
    - 473.4K bytes
    - Viewed (0)
  4. src/net/http/h2_bundle.go

    	// valid, however.
    	Truncated bool
    }
    
    // PseudoValue returns the given pseudo header field's value.
    // The provided pseudo field should not contain the leading colon.
    func (mh *http2MetaHeadersFrame) PseudoValue(pseudo string) string {
    	for _, hf := range mh.Fields {
    		if !hf.IsPseudo() {
    			return ""
    		}
    		if hf.Name[1:] == pseudo {
    			return hf.Value
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top