Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 64 for TILDE (0.64 sec)

  1. src/cmd/compile/internal/types2/typeset.go

    func (s *_TypeSet) underIs(f func(Type) bool) bool {
    	if !s.hasTerms() {
    		return f(nil)
    	}
    	for _, t := range s.terms {
    		assert(t.typ != nil)
    		// x == under(x) for ~x terms
    		u := t.typ
    		if !t.tilde {
    			u = under(u)
    		}
    		if debug {
    			assert(Identical(u, under(u)))
    		}
    		if !f(u) {
    			return false
    		}
    	}
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. src/go/types/typeset.go

    func (s *_TypeSet) underIs(f func(Type) bool) bool {
    	if !s.hasTerms() {
    		return f(nil)
    	}
    	for _, t := range s.terms {
    		assert(t.typ != nil)
    		// x == under(x) for ~x terms
    		u := t.typ
    		if !t.tilde {
    			u = under(u)
    		}
    		if debug {
    			assert(Identical(u, under(u)))
    		}
    		if !f(u) {
    			return false
    		}
    	}
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  3. src/html/template/url.go

    			}
    		// Unreserved according to RFC 3986 sec 2.3
    		// "For consistency, percent-encoded octets in the ranges of
    		// ALPHA (%41-%5A and %61-%7A), DIGIT (%30-%39), hyphen (%2D),
    		// period (%2E), underscore (%5F), or tilde (%7E) should not be
    		// created by URI producers
    		case '-', '.', '_', '~':
    			continue
    		case '%':
    			// When normalizing do not re-encode valid escapes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 6.6K bytes
    - Viewed (0)
  4. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    1E4D          ; valid                                  # 1.1  LATIN SMALL LETTER O WITH TILDE AND ACUTE
    1E4E          ; mapped                 ; 1E4F          # 1.1  LATIN CAPITAL LETTER O WITH TILDE AND DIAERESIS
    1E4F          ; valid                                  # 1.1  LATIN SMALL LETTER O WITH TILDE AND DIAERESIS
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  5. src/go/parser/parser.go

    		x = t
    	}
    	return x
    }
    
    func (p *parser) embeddedTerm() ast.Expr {
    	if p.trace {
    		defer un(trace(p, "EmbeddedTerm"))
    	}
    	if p.tok == token.TILDE {
    		t := new(ast.UnaryExpr)
    		t.OpPos = p.pos
    		t.Op = token.TILDE
    		p.next()
    		t.X = p.parseType()
    		return t
    	}
    
    	t := p.tryIdentOrType()
    	if t == nil {
    		pos := p.pos
    		p.errorExpected(pos, "~ term or type")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  6. docs/en/mkdocs.yml

      pymdownx.superfences:
        custom_fences:
        - name: mermaid
          class: mermaid
          format: !!python/name:pymdownx.superfences.fence_code_format ''
      pymdownx.tabbed:
        alternate_style: true
      pymdownx.tilde: null
      attr_list: null
      md_in_html: null
    extra:
      analytics:
        provider: google
        property: G-YNEVN69SC3
      social:
      - icon: fontawesome/brands/github-alt
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. src/go/doc/exports.go

    	case *ast.Ident:
    		// nothing to do
    	case *ast.ParenExpr:
    		r.filterType(nil, t.X)
    	case *ast.StarExpr: // possibly an embedded type literal
    		r.filterType(nil, t.X)
    	case *ast.UnaryExpr:
    		if t.Op == token.TILDE { // approximation element
    			r.filterType(nil, t.X)
    		}
    	case *ast.BinaryExpr:
    		if t.Op == token.OR { // union
    			r.filterType(nil, t.X)
    			r.filterType(nil, t.Y)
    		}
    	case *ast.ArrayType:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/parser.go

    }
    
    // EmbeddedTerm = [ "~" ] Type .
    func (p *parser) embeddedTerm() Expr {
    	if trace {
    		defer p.trace("embeddedTerm")()
    	}
    
    	if p.tok == _Operator && p.op == Tilde {
    		t := new(Operation)
    		t.pos = p.pos()
    		t.Op = Tilde
    		p.next()
    		t.X = p.type_()
    		return t
    	}
    
    	t := p.typeOrNil()
    	if t == nil {
    		t = p.badExpr()
    		p.syntaxError("expected ~ term or type")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/types.go

    		// parameters.
    		reportReason := len(m.seen) == 1
    
    		for _, term := range terms {
    			if !m.match(term.Type(), topLevel) {
    				if reportReason {
    					if term.Tilde() {
    						m.reason = fmt.Sprintf("contains ~%s", term.Type())
    					} else {
    						m.reason = fmt.Sprintf("contains %s", term.Type())
    					}
    				}
    				return false
    			}
    		}
    		return true
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  10. src/go/types/operand.go

    			// representable by each specific type in the type set of T.
    			return Tp.is(func(t *term) bool {
    				if t == nil {
    					return false
    				}
    				// A term may be a tilde term but the underlying
    				// type of an untyped value doesn't change so we
    				// don't need to do anything special.
    				newType, _, _ := check.implicitTypeAndValue(x, t.typ)
    				return newType != nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top