Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 73 for isQtext (0.2 sec)

  1. src/cmd/link/internal/loadxcoff/ldxcoff.go

    		s := l.MakeSymbolUpdater(symbol)
    
    		switch lds.Type {
    		default:
    			return errorf("unrecognized section type 0x%x", lds.Type)
    		case xcoff.STYP_TEXT:
    			s.SetType(sym.STEXT)
    		case xcoff.STYP_DATA:
    			s.SetType(sym.SNOPTRDATA)
    		case xcoff.STYP_BSS:
    			s.SetType(sym.SNOPTRBSS)
    		}
    
    		s.SetSize(int64(lds.Size))
    		if s.Type() != sym.SNOPTRBSS {
    			data, err := lds.Section.Data()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOptionsIntegrationTest.groovy

            configurationCache.assertStateStored()
    
            where:
            expression                                                | usage
            "asText.map(String::toBoolean).getOrElse(false)"          | "text"
            "asText.isPresent"                                        | "text presence"
            "asBytes.map { String(it).toBoolean() }.getOrElse(false)" | "bytes"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ProjectInternalViewDependencyIntegrationTest.groovy

                        // `implementation` dependencies are accessible
                        assert new com.fasterxml.jackson.databind.ObjectMapper().readTree("{\\\"hello\\\": \\\"test\\\"}").get("hello").asText().equals("test");
    
                        // `compileOnly` dependencies are accessible at compile-time
                        try {
                            assert org.apache.commons.lang3.StringUtils.length("Hello, Gradle!") == 14;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. src/cmd/link/internal/sym/symkind_string.go

    import "strconv"
    
    func _() {
    	// An "invalid array index" compiler error signifies that the constant values have changed.
    	// Re-run the stringer command to generate them again.
    	var x [1]struct{}
    	_ = x[Sxxx-0]
    	_ = x[STEXT-1]
    	_ = x[SELFRXSECT-2]
    	_ = x[SMACHOPLT-3]
    	_ = x[STYPE-4]
    	_ = x[SSTRING-5]
    	_ = x[SGOSTRING-6]
    	_ = x[SGOFUNC-7]
    	_ = x[SGCBITS-8]
    	_ = x[SRODATA-9]
    	_ = x[SFUNCTAB-10]
    	_ = x[SELFROSECT-11]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/language/parse.go

    		case Extension:
    			if v.s == "" {
    				err = errInvalidArgument
    				break
    			}
    			b.SetExt(v.s)
    		case []Variant:
    			b.ClearVariants()
    			for _, v := range v {
    				b.AddVariant(v.variant)
    			}
    		case []Extension:
    			b.ClearExtensions()
    			for _, e := range v {
    				b.SetExt(e.s)
    			}
    		// TODO: support parsing of raw strings based on morphology or just extensions?
    		case error:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/symtab.go

    			break
    		}
    		if ldr.SymType(s) != sym.STEXT {
    			panic("unexpected type for runtime.text symbol")
    		}
    		putelfsym(ctxt, s, elf.STT_FUNC, elfbind)
    	}
    
    	// Text symbols.
    	for _, s := range ctxt.Textp {
    		putelfsym(ctxt, s, elf.STT_FUNC, elfbind)
    	}
    
    	// runtime.etext marker symbol.
    	s = ldr.Lookup("runtime.etext", 0)
    	if ldr.SymType(s) == sym.STEXT {
    		putelfsym(ctxt, s, elf.STT_FUNC, elfbind)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top