Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for orMore (0.35 sec)

  1. src/cmd/compile/internal/syntax/scanner_test.go

    	{_Literal, "`foobar`", 0, 0},
    	{_Literal, "`foo\tbar`", 0, 0},
    	{_Literal, "`\r`", 0, 0},
    
    	// operators
    	{_Operator, "!", Not, 0},
    	{_Operator, "~", Tilde, 0},
    
    	{_Operator, "||", OrOr, precOrOr},
    
    	{_Operator, "&&", AndAnd, precAndAnd},
    
    	{_Operator, "==", Eql, precCmp},
    	{_Operator, "!=", Neq, precCmp},
    	{_Operator, "<", Lss, precCmp},
    	{_Operator, "<=", Leq, precCmp},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:11:21 UTC 2022
    - 21.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/expr.go

    		syntax.Rem: allInteger,
    
    		syntax.And:    allInteger,
    		syntax.Or:     allInteger,
    		syntax.Xor:    allInteger,
    		syntax.AndNot: allInteger,
    
    		syntax.AndAnd: allBoolean,
    		syntax.OrOr:   allBoolean,
    	}
    }
    
    // If e != nil, it must be the binary expression; it may be nil for non-constant expressions
    // (when invoked for an assignment operation where the binary expression is implicit).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/rsc.io/markdown/entity.go

    	"&orderof;":                         "\u2134",
    	"&ordf;":                            "\u00aa",
    	"&ordm;":                            "\u00ba",
    	"&origof;":                          "\u22b6",
    	"&oror;":                            "\u2a56",
    	"&orslope;":                         "\u2a57",
    	"&orv;":                             "\u2a5b",
    	"&oscr;":                            "\u2134",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  4. src/html/entity.go

    		"orderof;":                         '\U00002134',
    		"ordf;":                            '\U000000AA',
    		"ordm;":                            '\U000000BA',
    		"origof;":                          '\U000022B6',
    		"oror;":                            '\U00002A56',
    		"orslope;":                         '\U00002A57',
    		"orv;":                             '\U00002A5B',
    		"oscr;":                            '\U00002134',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/order.go

    			}
    		} else {
    			n.X = o.expr(n.X, nil)
    		}
    		return n
    
    	case ir.OANDAND, ir.OOROR:
    		// ... = LHS && RHS
    		//
    		// var r bool
    		// r = LHS
    		// if r {       // or !r, for OROR
    		//     r = RHS
    		// }
    		// ... = r
    
    		n := n.(*ir.LogicalExpr)
    		r := o.newTemp(n.Type(), false)
    
    		// Evaluate left-hand side.
    		lhs := o.expr(n.X, nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  6. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    Water, Air, &c. when made very thin by being blown into Bubbles, or otherwise formed into Plates, do exhibit various Colours according to their various thinness, altho' at a greater thickness they appear very clear and colourless. In the former Book I forbore to treat of these Colours, because they seemed of a more difficult Consideration, and were not necessary for establishing the Properties of Light there discoursed of. But because they may conduce to farther Discoveries for compleating the Theory of...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  7. src/testdata/Isaac.Newton-Opticks.txt

    otherwise formed into Plates, do exhibit various Colours according to
    their various thinness, altho' at a greater thickness they appear very
    clear and colourless. In the former Book I forbore to treat of these
    Colours, because they seemed of a more difficult Consideration, and were
    not necessary for establishing the Properties of Light there discoursed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
  8. RELEASE.md

    mdfaijul, MichaëL Defferrard, Michał JastrzęBski, Michele Colombo, Mike Brodie,
    Mosnoi Ion, mouradmourafiq, myPrecious, Nayana Thorat, Neeraj Kashyap, Nelson
    Liu, Niranjan Hasabnis, Olivier Moindrot, orome, Pankaj Gupta, Paul Van Eck,
    peeyush18, Peng Yu, Pierre, preciousdp11, qjivy, Raingo, raoqiyu, ribx, Richard
    S. Imaoka, Rishabh Patel, Robert Walecki, Rockford Wei, Ryan Kung, Sahil Dua,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top