Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for if (0.17 sec)

  1. core/src/main/java/com/alibaba/druid/sql/visitor/functions/If.java

    import static com.alibaba.druid.sql.visitor.SQLEvalVisitor.EVAL_VALUE;
    
    public class If implements Function {
        public static final If instance = new If();
    
        public Object eval(SQLEvalVisitor visitor, SQLMethodInvokeExpr x) {
            final List<SQLExpr> arguments = x.getArguments();
            if (arguments.isEmpty()) {
                return EVAL_ERROR;
            }
    
            SQLExpr condition = arguments.get(0);
    Java
    - Registered: 2023-03-13 07:39
    - Last Modified: 2022-09-12 01:19
    - 1.9K bytes
    - Viewed (0)
  2. runtime/doc/if_pyth.txt

    dynamically, these has() calls will try to load them.  If only one can be
    loaded at a time, just checking if Python 2 or 3 are available will prevent
    the other one from being available.
    
    To avoid loading the dynamic library, only check if Vim was compiled with
    python support: >
    	if has('python_compiled')
    	  echo 'compiled with Python 2.x support'
    	  if has('python_dynamic')
    	    echo 'Python 2.x dynamically loaded'
    Plain Text
    - Registered: 2023-03-13 09:55
    - Last Modified: 2023-02-20 20:44
    - 38.5K bytes
    - Viewed (0)
  3. runtime/doc/if_mzsch.txt

    ==============================================================================
    8. MzScheme setup				    *mzscheme-setup* *E895*
    
    Vim requires "racket/base" module for if_mzsch core (fallback to "scheme/base"
    if it doesn't exist), "r5rs" module for test and "raco ctool" command for
    building Vim.  If MzScheme did not have them, you can install them with
    MzScheme's raco command:
    >
      raco pkg install scheme-lib       # scheme/base module
    Plain Text
    - Registered: 2023-03-13 09:55
    - Last Modified: 2022-06-28 12:44
    - 11.7K bytes
    - Viewed (0)
  4. runtime/doc/if_sniff.txt

    *if_sniff.txt*	For Vim version 9.0.  Last change: 2016 Feb 27
    
    
    		  VIM REFERENCE MANUAL
    		by Anton Leherbauer (******@****.***)
    
    
    The SNiFF+ support was removed at patch 7.4.1433.  If you want to check it out
    sync to before that.
    
    Plain Text
    - Registered: 2023-03-13 09:55
    - Last Modified: 2022-06-28 12:44
    - 271 bytes
    - Viewed (0)
  5. runtime/doc/if_ruby.txt

    	|expression|).  Returns the expression result as:
    	- a Integer if the Vim expression evaluates to a number
    	- a Float if the Vim expression evaluates to a float
    	- a String if the Vim expression evaluates to a string
    	- a Array if the Vim expression evaluates to a Vim list
    	- a Hash if the Vim expression evaluates to a Vim dictionary
    	Dictionaries and lists are recursively expanded.
    
    Plain Text
    - Registered: 2023-03-13 09:55
    - Last Modified: 2022-06-28 12:44
    - 8.3K bytes
    - Viewed (0)
  6. runtime/doc/if_lua.txt

    				|Funcref|). It is equivalent to Vim's
    				function().
    
    	vim.buffer([arg])	If "arg" is a number, returns buffer with
    				number "arg" in the buffer list or, if "arg"
    				is a string, returns buffer whose full or short
    				name is "arg". In both cases, returns 'nil'
    				(nil value, not string) if the buffer is not
    				found. Otherwise, if "toboolean(arg)" is
    				'true' returns the first buffer in the buffer
    Plain Text
    - Registered: 2023-03-13 09:55
    - Last Modified: 2022-06-28 12:44
    - 18.1K bytes
    - Viewed (0)
  7. test/smoke/dom-if.html

            }
            .child {
              border: 1px solid green;
              width: 100px;
            }
          </style>
          <div class='parent'>
            <div class='child'>Child1</div>        
            <template is='dom-if' if='1'>
              <div class='child'>Child2</div>
            </template>
          </div>
        </template>
    
       
        <!-- Uncomment for class syntax -->
        <script type="module">
    HTML
    - Registered: 2023-03-17 07:34
    - Last Modified: 2018-04-20 00:27
    - 1.2K bytes
    - Viewed (0)
  8. runtime/doc/if_pyth.txt

    vim.eval(str)						*python-eval*
    	Evaluates the expression str using the vim internal expression
    	evaluator (see |expression|).  Returns the expression result as:
    	- a string if the Vim expression evaluates to a string or number
    	- a list if the Vim expression evaluates to a Vim list
    	- a dictionary if the Vim expression evaluates to a Vim dictionary
    	Dictionaries and lists are recursively expanded.
    	Examples: >vim
    	    :py text_width = vim.eval("&tw")
    Plain Text
    - Registered: 2023-03-13 08:44
    - Last Modified: 2023-02-21 15:50
    - 24.7K bytes
    - Viewed (0)
  9. runtime/doc/if_ruby.txt

    append({n}, {str})
    		Appends a line after the line {n}.
    line		Returns the current line of the buffer if the buffer is
    		active.
    line = {str}    Sets the current line of the buffer if the buffer is active.
    line_number     Returns the number of the current line if the buffer is
    		active.
    
    ==============================================================================
    Plain Text
    - Registered: 2023-03-13 08:44
    - Last Modified: 2022-10-14 15:01
    - 6.1K bytes
    - Viewed (0)
  10. runtime/doc/if_tcl.txt

    <
    	::vim::lbase					*tcl-var-lbase*
    	This variable controls how Tcl treats line numbers.  If it is set to
    	'1', then lines and columns start at 1.  This way, line numbers from
    	Tcl commands and vim expressions are compatible.  If this variable is
    	set to '0', then line numbers and columns start at 0 in Tcl.  This is
    	useful if you want to treat a buffer as a Tcl list or a line as a Tcl
    Plain Text
    - Registered: 2023-03-13 09:55
    - Last Modified: 2022-06-28 12:44
    - 22.4K bytes
    - Viewed (0)
Back to top