Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 44 for swiftc (0.12 sec)

  1. src/cmd/compile/internal/types2/expr.go

    	case *Map:
    		return "map"
    	case *Chan:
    		return "chan"
    	default:
    		return check.sprintf("%s", typ) // catch-all
    	}
    }
    
    // If e != nil, it must be the shift expression; it may be nil for non-constant shifts.
    func (check *Checker) shift(x, y *operand, e syntax.Expr, op syntax.Operator) {
    	// TODO(gri) This function seems overly complex. Revisit.
    
    	var xval constant.Value
    	if x.mode == constant_ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/ARM.rules

    (AndB ...) => (AND ...)
    (OrB ...) => (OR ...)
    (EqB x y) => (XORconst [1] (XOR <typ.Bool> x y))
    (NeqB ...) => (XOR ...)
    (Not x) => (XORconst [1] x)
    
    // shifts
    // hardware instruction uses only the low byte of the shift
    // we compare to 256 to ensure Go semantics for large shifts
    (Lsh32x32 x y) => (CMOVWHSconst (SLL <x.Type> x y) (CMPconst [256] y) [0])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/lib.go

    			// On ARM64, the GNU linker will fail with
    			// -znocopyreloc if it thinks a COPY relocation is
    			// required. Switch to gold.
    			// https://sourceware.org/bugzilla/show_bug.cgi?id=19962
    			// https://go.dev/issue/22040
    			altLinker = "gold"
    
    			// If gold is not installed, gcc will silently switch
    			// back to ld.bfd. So we parse the version information
    			// and provide a useful error if gold is missing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modget/get.go

    		// and then try to switch to a newer toolchain.
    		var sw toolchain.Switcher
    		for _, q := range queries {
    			for _, cs := range q.candidates {
    				sw.Error(cs.err)
    			}
    		}
    		// Only switch if we need a newer toolchain.
    		// Otherwise leave the cs.err for reporting later.
    		if sw.NeedSwitch() {
    			sw.Switch(ctx)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/dwarf.go

    }
    
    func (c dwctxt) AddSectionOffset(s dwarf.Sym, size int, t interface{}, ofs int64) {
    	ds := loader.Sym(s.(dwSym))
    	dsu := c.ldr.MakeSymbolUpdater(ds)
    	tds := loader.Sym(t.(dwSym))
    	switch size {
    	default:
    		c.linkctxt.Errorf(ds, "invalid size %d in adddwarfref\n", size)
    	case c.arch.PtrSize, 4:
    	}
    	dsu.AddSymRef(c.arch, tds, ofs, objabi.R_ADDROFF, size)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  6. testing/architecture-test/src/changes/archunit-store/provider-task-properties.txt

    Method <org.gradle.language.swift.tasks.SwiftCompile.isDebuggable()> does not have raw return type assignable to org.gradle.api.provider.Provider in (SwiftCompile.java:0)
    Method <org.gradle.language.swift.tasks.SwiftCompile.isOptimized()> does not have raw return type assignable to org.gradle.api.provider.Provider in (SwiftCompile.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    		if conversion.WebhookClientConfig == nil {
    			allErrs = append(allErrs, field.Required(fldPath.Child("webhookClientConfig"), "required when strategy is set to Webhook"))
    		} else {
    			cc := conversion.WebhookClientConfig
    			switch {
    			case (cc.URL == nil) == (cc.Service == nil):
    				allErrs = append(allErrs, field.Required(fldPath.Child("webhookClientConfig"), "exactly one of url or service is required"))
    			case cc.URL != nil:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  8. src/cmd/go/go_test.go

    	}
    }
    
    func homeEnvName() string {
    	switch runtime.GOOS {
    	case "windows":
    		return "USERPROFILE"
    	case "plan9":
    		return "home"
    	default:
    		return "HOME"
    	}
    }
    
    func tempEnvName() string {
    	switch runtime.GOOS {
    	case "windows":
    		return "TMP"
    	case "plan9":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/debug.go

    				for _, v := range b.Values {
    					slots := state.valueNames[v.ID]
    
    					// Loads and stores inherit the names of their sources.
    					var source *Value
    					switch v.Op {
    					case OpStoreReg:
    						source = v.Args[0]
    					case OpLoadReg:
    						switch a := v.Args[0]; a.Op {
    						case OpArg, OpPhi:
    							source = a
    						case OpStoreReg:
    							source = a.Args[0]
    						default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    link:{gradle-issues}13514[[.red]#✖#]:: <<cpp_unit_test_plugin.adoc#cpp_unit_test_plugin,C++ Unit Test>>
    link:{gradle-issues}13515[[.red]#✖#]:: <<swift_application_plugin.adoc#swift_application_plugin,Swift Application>>
    link:{gradle-issues}13487[[.red]#✖#]:: <<swift_library_plugin.adoc#swift_library_plugin,Swift Library>>
    link:{gradle-issues}13488[[.red]#✖#]:: <<xctest_plugin.adoc#xctest_plugin,XCTest>>
    
    a|
    [horizontal]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
Back to top