Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 149 for swiftc (0.19 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftApplicationIntegrationTest.groovy

            app.writeToProject(testDirectory)
    
            app.main.writeToSourceDir(file("src/main.swift"))
            app.greeter.writeToSourceDir(file("src/one.swift"))
            app.sum.writeToSourceDir(file("src/two.swift"))
            file("src/main/swift/broken.swift") << "ignore me!"
    
            and:
            buildFile << """
                apply plugin: 'swift-application'
                application {
                    source {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:43:37 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  2. test/codegen/shift.go

    	if shift >= 0 && shift < 64 {
    		// arm64:"LSL",-"CSEL"
    		r1 = val64 << shift
    	}
    	if shift >= 0 && shift < 32 {
    		// arm64:"LSL",-"CSEL"
    		r2 = val32 << shift
    	}
    	if shift >= 0 && shift < 16 {
    		// arm64:"LSL",-"CSEL"
    		r3 = val16 << shift
    	}
    	if shift >= 0 && shift < 8 {
    		// arm64:"LSL",-"CSEL"
    		r4 = val8 << shift
    	}
    	return r1, r2, r3, r4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:53:43 UTC 2024
    - 12.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. src/go/types/stmt.go

    		case token.FALLTHROUGH:
    			if ctxt&fallthroughOk == 0 {
    				var msg string
    				switch {
    				case ctxt&finalSwitchCase != 0:
    					msg = "cannot fallthrough final case in switch"
    				case ctxt&inTypeSwitch != 0:
    					msg = "cannot fallthrough in type switch"
    				default:
    					msg = "fallthrough statement out of place"
    				}
    				check.error(s, MisplacedFallthrough, msg)
    			}
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  9. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/tasks/InitBuildSpec.groovy

            Language.KOTLIN | JavaLanguageVersion.of(11) | true
            Language.GROOVY | JavaLanguageVersion.of(11) | true
            Language.CPP    | null                       | false
            Language.SWIFT  | null                       | false
        }
    
        def "gets java-version from property"() {
            given:
            def userQuestions = Mock(UserQuestions)
            def buildInitializer = Mock(BuildInitializer)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  10. src/go/types/generate_test.go

    	ast.Inspect(f, func(n ast.Node) bool {
    		switch n := n.(type) {
    		case *ast.Ident:
    			m.rename(&n.Name)
    			return false
    		}
    		return true
    	})
    }
    
    // renameSelectors is like renameIdents but only looks at selectors.
    func renameSelectors(f *ast.File, renames ...string) {
    	m := makeRenameMap(renames...)
    	ast.Inspect(f, func(n ast.Node) bool {
    		switch n := n.(type) {
    		case *ast.SelectorExpr:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 16.5K bytes
    - Viewed (0)
Back to top