Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 34 for LSS (0.13 sec)

  1. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/fixtures/AbstractVisualStudioIntegrationSpec.groovy

                }
    
                def redirectOutput(Node node, String relativeToRoot) {
                    String value = node.value()
                    node.value = '''
    For /f "tokens=1-3 delims=/: " %%a in ("%TIME%") do (if %%a LSS 10 (set timestamp=0%%a%%b%%c) else (set timestamp=%%a%%b%%c))
    set timestamp=%timestamp:~0,6%
    ''' + "set outputDir=\${relativeToRoot}\\\\output\\\\%timestamp%" + '''
    md %outputDir%
    set outputLog=%outputDir%\\\\output.txt
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. src/go/constant/value_test.go

    	"%": token.REM,
    
    	"<<": token.SHL,
    	">>": token.SHR,
    
    	"&":  token.AND,
    	"|":  token.OR,
    	"^":  token.XOR,
    	"&^": token.AND_NOT,
    
    	"==": token.EQL,
    	"!=": token.NEQ,
    	"<":  token.LSS,
    	"<=": token.LEQ,
    	">":  token.GTR,
    	">=": token.GEQ,
    }
    
    func panicHandler(v *Value) {
    	switch p := recover().(type) {
    	case nil:
    		// nothing to do
    	case string:
    		*v = MakeString(p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 15.6K bytes
    - Viewed (0)
  3. test-site/activator.bat

    for /f "delims=. tokens=1-3" %%v in ("%JAVA_VERSION%") do (
        set MAJOR=%%v
        set MINOR=%%w
        set BUILD=%%x
    
        set META_SIZE=-XX:MetaspaceSize=64M -XX:MaxMetaspaceSize=256M
        if "!MINOR!" LSS "8" (
          set META_SIZE=-XX:PermSize=64M -XX:MaxPermSize=256M
        )
    
        set MEM_OPTS=!META_SIZE!
     )
    
    rem We use the value of the JAVA_OPTS environment variable if defined, rather than the config.
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 7.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/RuleSourceAppliedByRuleMethodIntegrationTest.groovy

        def "first parameter of @Rules method must be assignable to RuleSource"() {
            buildFile << '''
                class MyPlugin extends RuleSource {
                    @Rules
                    void rules(LanguageSourceSet lss, String string) {
                    }
                }
                apply plugin: MyPlugin
            '''
    
            expect:
            fails 'model'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  5. src/go/constant/value.go

    	panic(fmt.Sprintf("invalid shift %v %s %d", x, op, s))
    }
    
    func cmpZero(x int, op token.Token) bool {
    	switch op {
    	case token.EQL:
    		return x == 0
    	case token.NEQ:
    		return x != 0
    	case token.LSS:
    		return x < 0
    	case token.LEQ:
    		return x <= 0
    	case token.GTR:
    		return x > 0
    	case token.GEQ:
    		return x >= 0
    	}
    	panic(fmt.Sprintf("invalid comparison %v %s 0", x, op))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 34K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/noder/noder.go

    	syntax.Add: ir.OPLUS,
    	syntax.Sub: ir.ONEG,
    }
    
    var binOps = [...]ir.Op{
    	syntax.OrOr:   ir.OOROR,
    	syntax.AndAnd: ir.OANDAND,
    
    	syntax.Eql: ir.OEQ,
    	syntax.Neq: ir.ONE,
    	syntax.Lss: ir.OLT,
    	syntax.Leq: ir.OLE,
    	syntax.Gtr: ir.OGT,
    	syntax.Geq: ir.OGE,
    
    	syntax.Add: ir.OADD,
    	syntax.Sub: ir.OSUB,
    	syntax.Or:  ir.OOR,
    	syntax.Xor: ir.OXOR,
    
    	syntax.Mul:    ir.OMUL,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 20:40:57 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/expr.go

    	syntax.Not:  token.NOT,
    	syntax.Recv: token.ILLEGAL,
    
    	syntax.OrOr:   token.LOR,
    	syntax.AndAnd: token.LAND,
    
    	syntax.Eql: token.EQL,
    	syntax.Neq: token.NEQ,
    	syntax.Lss: token.LSS,
    	syntax.Leq: token.LEQ,
    	syntax.Gtr: token.GTR,
    	syntax.Geq: token.GEQ,
    
    	syntax.Add: token.ADD,
    	syntax.Sub: token.SUB,
    	syntax.Or:  token.OR,
    	syntax.Xor: token.XOR,
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/scanner.go

    			break
    		}
    		if s.ch == '<' {
    			s.nextch()
    			s.op, s.prec = Shl, precMul
    			goto assignop
    		}
    		if s.ch == '-' {
    			s.nextch()
    			s.tok = _Arrow
    			break
    		}
    		s.op, s.prec = Lss, precCmp
    		s.tok = _Operator
    
    	case '>':
    		s.nextch()
    		if s.ch == '=' {
    			s.nextch()
    			s.op, s.prec = Geq, precCmp
    			s.tok = _Operator
    			break
    		}
    		if s.ch == '>' {
    			s.nextch()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 28 18:17:41 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/scanner_test.go

    	{_Operator, "~", Tilde, 0},
    
    	{_Operator, "||", OrOr, precOrOr},
    
    	{_Operator, "&&", AndAnd, precAndAnd},
    
    	{_Operator, "==", Eql, precCmp},
    	{_Operator, "!=", Neq, precCmp},
    	{_Operator, "<", Lss, precCmp},
    	{_Operator, "<=", Leq, precCmp},
    	{_Operator, ">", Gtr, precCmp},
    	{_Operator, ">=", Geq, precCmp},
    
    	{_Operator, "+", Add, precAdd},
    	{_Operator, "-", Sub, precAdd},
    	{_Operator, "|", Or, precAdd},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:11:21 UTC 2022
    - 21.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/printer.go

    	// 	b = next == '.' // 1.
    	// case lexical.Add:
    	// 	b = next == '+' // ++
    	// case lexical.Sub:
    	// 	b = next == '-' // --
    	// case lexical.Quo:
    	// 	b = next == '*' // /*
    	// case lexical.Lss:
    	// 	b = next == '-' || next == '<' // <- or <<
    	// case lexical.And:
    	// 	b = next == '&' || next == '^' // && or &^
    	// }
    	// return
    }
    
    func (p *printer) print(args ...interface{}) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 07:17:27 UTC 2023
    - 21.5K bytes
    - Viewed (0)
Back to top