Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 91 for isQtext (0.24 sec)

  1. src/text/scanner/scanner_test.go

    	}
    	if s.Line != line {
    		t.Errorf("line = %d, want %d for %q", s.Line, line, text)
    	}
    	stext := s.TokenText()
    	if stext != text {
    		t.Errorf("text = %q, want %q", stext, text)
    	} else {
    		// check idempotency of TokenText() call
    		stext = s.TokenText()
    		if stext != text {
    			t.Errorf("text = %q, want %q (idempotency check)", stext, text)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 17 03:41:50 UTC 2022
    - 25.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/test.go

    		return true
    	}
    	return false
    }
    
    // isTest tells whether name looks like a test (or benchmark, according to prefix).
    // It is a Test (say) if there is a character after Test that is not a lower-case letter.
    // We don't want TesticularCancer.
    func isTest(name, prefix string) bool {
    	if !strings.HasPrefix(name, prefix) {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/ld.go

    func PrepareAddmoduledata(ctxt *Link) (*loader.SymbolBuilder, loader.Sym) {
    	if !ctxt.DynlinkingGo() {
    		return nil, 0
    	}
    	amd := ctxt.loader.LookupOrCreateSym("runtime.addmoduledata", 0)
    	if ctxt.loader.SymType(amd) == sym.STEXT && ctxt.BuildMode != BuildModePlugin {
    		// we're linking a module containing the runtime -> no need for
    		// an init function
    		return nil, 0
    	}
    	ctxt.loader.SetAttrReachable(amd, true)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:48:30 UTC 2023
    - 8K bytes
    - Viewed (0)
  4. src/cmd/link/internal/riscv64/asm.go

    			if r.Type() != objabi.R_RISCV_CALL && r.Type() != objabi.R_RISCV_PCREL_ITYPE &&
    				r.Type() != objabi.R_RISCV_PCREL_STYPE && r.Type() != objabi.R_RISCV_TLS_IE {
    				continue
    			}
    			if r.Off() == 0 && ldr.SymType(s) == sym.STEXT {
    				// Use the symbol for the function instead of creating
    				// an overlapping symbol.
    				continue
    			}
    
    			// TODO(jsing): Consider generating ELF symbols without needing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 01 08:06:08 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  5. src/cmd/internal/objabi/symkind.go

    //
    // TODO(rsc): Give idiomatic Go names.
    //
    //go:generate stringer -type=SymKind
    const (
    	// An otherwise invalid zero value for the type
    	Sxxx SymKind = iota
    	// Executable instructions
    	STEXT
    	// Read only static data
    	SRODATA
    	// Static data that does not contain any pointers
    	SNOPTRDATA
    	// Static data
    	SDATA
    	// Statically data that is initially all 0s
    	SBSS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 05 19:44:37 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheInitScriptsIntegrationTest.groovy

                    def inputFile = fileFactory.file(file('${normaliseFileSeparators(buildLogicInput.absolutePath)}'))
                    def text = providers.fileContents(inputFile).asText.get()
                    println text
                """
            }
    
            when:
            configurationCacheRun 'tasks', '-I', initScript.absolutePath
    
            then:
            outputContains 'foo!'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/util/mime.map

    text/plain                     txt ini log in cfg m4 sh     # Plain Text File
    text/richtext                  rtx              # Rich Text File
    text/tab-separated-values      tsv              #
    text/x-setext                  etx              #
    text/x-sgml                    sgml sgm         # SGML Document
    video/mpeg                     mpeg mpg mpe     # MPEG Movie File
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 5.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/LightTreeUtil.kt

        return if (firstChild.tokenType == PARENTHESIZED) {
            getFirstChildExpressionUnwrapped(firstChild)
        } else {
            firstChild
        }
    }
    
    
    internal
    val LighterASTNode.asText: String
        get() = this.toString()
    
    
    internal
    val LighterASTNode.isUseful: Boolean
        get() = !(COMMENTS.contains(tokenType) || tokenType == WHITE_SPACE || tokenType == SEMICOLON)
    
    
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. src/go/printer/printer.go

    				p.state = inEscape
    				m = n + 1 // +1: skip tabwriter.Escape
    			default:
    				_, err = p.output.Write(p.space)
    				p.state = inText
    				m = n
    			}
    		case inEscape:
    			if b == tabwriter.Escape {
    				_, err = p.output.Write(data[m:n])
    				p.resetSpace()
    			}
    		case inText:
    			switch b {
    			case '\t', ' ':
    				_, err = p.output.Write(data[m:n])
    				p.resetSpace()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    		arch.maxAlign = int(arch.sizes.Alignof(types.Typ[types.Int64]))
    	}
    }
    
    var (
    	re           = regexp.MustCompile
    	asmPlusBuild = re(`//\s+\+build\s+([^\n]+)`)
    	asmTEXT      = re(`\bTEXT\b(.*)ยท([^\(]+)\(SB\)(?:\s*,\s*([0-9A-Z|+()]+))?(?:\s*,\s*\$(-?[0-9]+)(?:-([0-9]+))?)?`)
    	asmDATA      = re(`\b(DATA|GLOBL)\b`)
    	asmNamedFP   = re(`\$?([a-zA-Z0-9_\xFF-\x{10FFFF}]+)(?:\+([0-9]+))\(FP\)`)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
Back to top