Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for isFamily (0.04 seconds)

  1. build-tools-internal/src/main/groovy/org/elasticsearch/gradle/internal/test/AntFixture.groovy

            // We need to choose which executable we are using. In shell mode, or when we
            // are spawning and thus using the wrapper script, the executable is the shell.
            if (useShell || spawn) {
                if (Os.isFamily(Os.FAMILY_WINDOWS)) {
                    realExecutable = 'cmd'
                    realArgs.add('/C')
                    realArgs.add('"') // quote the entire command
                } else {
                    realExecutable = 'sh'
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 10.1K bytes
    - Click Count (0)
  2. src/cmd/asm/internal/asm/parse.go

    			items = operands[:cap(operands)][len(operands)][:0]
    		} else {
    			items = make([]lex.Token, 0, 3)
    		}
    		for {
    			tok = p.nextToken()
    			if len(operands) == 0 && len(items) == 0 {
    				if p.arch.InFamily(sys.ARM, sys.ARM64, sys.AMD64, sys.I386, sys.Loong64, sys.RISCV64) && tok == '.' {
    					// Suffixes: ARM conditionals, Loong64 vector instructions, RISCV rounding mode or x86 modifiers.
    					tok = p.nextToken()
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Tue Feb 17 19:57:47 GMT 2026
    - 37.3K bytes
    - Click Count (0)
Back to Top