Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 271 for swiftc (2.84 sec)

  1. src/cmd/internal/obj/arm64/asm7.go

    	if hi > 0xfff000 {
    		hi = 0xfff000
    		lo = (v - hi) >> shift
    	}
    	if hi & ^0xfff000 != 0 {
    		panic(fmt.Sprintf("bad split for %x with shift %v (%x, %x)", v, shift, hi, lo))
    	}
    	return hi, lo, nil
    }
    
    func (c *ctxt7) regoff(a *obj.Addr) int32 {
    	c.instoffset = 0
    	c.aclass(a)
    	return int32(c.instoffset)
    }
    
    func isSTLXRop(op obj.As) bool {
    	switch op {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/s390x/asmz.go

    	op_SRA     uint32 = 0x8A00 // FORMAT_RS1        SHIFT RIGHT SINGLE (32)
    	op_SRAG    uint32 = 0xEB0A // FORMAT_RSY1       SHIFT RIGHT SINGLE (64)
    	op_SRAK    uint32 = 0xEBDC // FORMAT_RSY1       SHIFT RIGHT SINGLE (32)
    	op_SRDA    uint32 = 0x8E00 // FORMAT_RS1        SHIFT RIGHT DOUBLE
    	op_SRDL    uint32 = 0x8C00 // FORMAT_RS1        SHIFT RIGHT DOUBLE LOGICAL
    	op_SRDT    uint32 = 0xED41 // FORMAT_RXF        SHIFT SIGNIFICAND RIGHT (long DFP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  3. .teamcity/performance-test-durations.json

      "durations" : [ {
        "testProject" : "bigSwiftApp",
        "linux" : 185
      }, {
        "testProject" : "mediumSwiftMulti",
        "linux" : 261
      } ]
    }, {
      "scenario" : "org.gradle.performance.regression.nativeplatform.SwiftCleanBuildPerformanceTest.clean assemble (swift)",
      "durations" : [ {
        "testProject" : "bigSwiftApp",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:30:45 UTC 2024
    - 27.9K bytes
    - Viewed (1)
  4. .teamcity/performance-tests-ci.json

          "coverage" : {
            "per_day" : [ "linux" ]
          }
        } ]
      }, {
        "testId" : "org.gradle.performance.regression.buildcache.TaskOutputCachingSwiftPerformanceTest.clean assemble with local cache (swift)",
        "groups" : [ {
          "testProject" : "bigSwiftApp",
          "coverage" : {
            "per_day" : [ "linux" ]
          }
        }, {
          "testProject" : "mediumSwiftMulti",
          "coverage" : {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 11 07:05:12 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  5. build-logic/performance-testing/src/main/groovy/gradlebuild.performance-templates.gradle

        dependsOn installBuildBuilder
    }
    
    performanceTest.registerTestProject("mediumSwiftMulti", BuildBuilderGenerator) {
        projectType = "swift"
        projects = 100
        sourceFiles = 4
        description = "Generates a ${projectType} build using build-builder (${projects} projects, ${sourceFiles} files)"
        doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BuildInitPluginIntegrationTest.groovy

                         kotlin-gradle-plugin
                         kotlin-library
                         pom
                         scala-application
                         scala-library
                         swift-application
                         swift-library
    
         --use-defaults     Use default values for options not configured explicitly
    
         --no-use-defaults     Disables option --use-defaults.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:39:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/build.gradle

                excludeTestsMatching "org.gradle.docs.samples.*.building-cpp-*.sample"
            }
            // Only execute Swift sample tests on OS X because it is the configured target
            if (!OperatingSystem.current().macOsX) {
                excludeTestsMatching "org.gradle.docs.samples.*.building-swift-*.sample"
            }
            // We don't maintain Java 7 on Windows and Mac
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  8. architecture/platforms.md

    ### Native platform
    
    This is a platform that builds on the core and software platforms to add support for developing native software.
    
    This platform provides specific support for Swift, C++ and C.
    
    ## Cross-cutting architecture modules
    
    There are some additional cross-cutting architecture modules that aren't platforms:
    
    ### Enterprise integration
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/build/relnote/links.go

    }
    
    func addSymbolLinksBlocks(bs []md.Block, defaultPackage string) {
    	for _, b := range bs {
    		addSymbolLinksBlock(b, defaultPackage)
    	}
    }
    
    func addSymbolLinksBlock(b md.Block, defaultPackage string) {
    	switch b := b.(type) {
    	case *md.Heading:
    		addSymbolLinksBlock(b.Text, defaultPackage)
    	case *md.Text:
    		b.Inline = addSymbolLinksInlines(b.Inline, defaultPackage)
    	case *md.List:
    		addSymbolLinksBlocks(b.Items, defaultPackage)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/ppc64/asm9.go

    		var a uint32
    		switch p.As {
    		case ARLDC, ARLDCCC:
    			a = mb
    			if me != (63-sh) || !valid {
    				c.ctxt.Diag("invalid mask for shift: %016x (mb=%d,me=%d) (shift %d)\n%v", uint64(d), mb, me, sh, p)
    			}
    
    		case ARLDCL, ARLDCLCC:
    			a = mb
    			if mb != 63 || !valid {
    				c.ctxt.Diag("invalid mask for shift: %016x (mb=%d,me=%d) (shift %d)\n%v", uint64(d), mb, me, sh, p)
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
Back to top