Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for isPseudo (0.43 sec)

  1. src/runtime/mklockrank.go

    //
    // Lock ranks that allow self-cycles list themselves.
    var lockPartialOrder [][]lockRank = [][]lockRank{
    `)
    	for _, rank := range topo {
    		if isPseudo(rank) {
    			continue
    		}
    		list := []string{}
    		for _, before := range g.Edges(rank) {
    			if !isPseudo(before) {
    				list = append(list, cname(before))
    			}
    		}
    		if cyclicRanks[rank] {
    			list = append(list, cname(rank))
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. 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)
  3. src/net/http/h2_bundle.go

    	for i, hf := range mh.Fields {
    		if !hf.IsPseudo() {
    			return mh.Fields[i:]
    		}
    	}
    	return nil
    }
    
    // PseudoFields returns the pseudo header fields of mh.
    // The caller does not own the returned slice.
    func (mh *http2MetaHeadersFrame) PseudoFields() []hpack.HeaderField {
    	for i, hf := range mh.Fields {
    		if !hf.IsPseudo() {
    			return mh.Fields[:i]
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  4. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    tS=function(e){return new Vk.default(e)};G.universal=tS});var _p=v($=>{l();"use strict";$.__esModule=!0;$.isComment=$.isCombinator=$.isClassName=$.isAttribute=void 0;$.isContainer=dS;$.isIdentifier=void 0;$.isNamespace=hS;$.isNesting=void 0;$.isNode=_a;$.isPseudo=void 0;$.isPseudoClass=pS;$.isPseudoElement=Ap;$.isUniversal=$.isTag=$.isString=$.isSelector=$.isRoot=void 0;var Q=ne(),fe,rS=(fe={},fe[Q.ATTRIBUTE]=!0,fe[Q.CLASS]=!0,fe[Q.COMBINATOR]=!0,fe[Q.COMMENT]=!0,fe[Q.ID]=!0,fe[Q.NESTING]=!0,fe[Q.PSEUDO]...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
Back to top