Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 104 for tilde (0.62 sec)

  1. 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)
  2. src/cmd/vendor/rsc.io/markdown/entity.go

    	"∴":                       "\u2234",
    	"Θ":                           "\u0398",
    	"  ":                      "\u205f\u200a",
    	" ":                       "\u2009",
    	"∼":                           "\u223c",
    	"≃":                      "\u2243",
    	"≅":                  "\u2245",
    	"≈":                      "\u2248",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/go/types/subst.go

    				// first function that got substituted => allocate new out slice
    				// and copy all functions
    				new := make([]*Term, len(in))
    				copy(new, out)
    				out = new
    				copied = true
    			}
    			out[i] = NewTerm(t.tilde, u)
    		}
    	}
    	return
    }
    
    // replaceRecvType updates any function receivers that have type old to have
    // type new. It does not modify the input slice; if modifications are required,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/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
    - 11K bytes
    - Viewed (0)
Back to top