Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for Cpp (0.07 sec)

  1. platforms/documentation/docs/build.gradle

                def testsForUnsupportedFeatures = [
                    "building-cpp-applications_groovy_build.sample",
                    "building-cpp-applications_kotlin_build.sample",
                    "building-cpp-libraries_groovy_build.sample",
                    "building-cpp-libraries_kotlin_build.sample",
                    "snippet-ant-add-behaviour-to-ant-target_groovy_addBehaviourToAntTarget.sample",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/macho_combine_dwarf.go

    	// for more context. Also useful to refer to the Apple dynamic
    	// loader source, specifically ImageLoaderMachO::sniffLoadCommands
    	// in ImageLoaderMachO.cpp (various versions can be found online, see
    	// https://opensource.apple.com/source/dyld/dyld-519.2.2/src/ImageLoaderMachO.cpp.auto.html
    	// as one example).
    	seg.Addr = 0
    	seg.Memsz = 0
    	seg.Prot = 0
    
    	if err := r.WriteAt(0, &seg); err != nil {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/tasks/InitBuildSpec.groovy

            Language.SCALA  | JavaLanguageVersion.of(11) | true
            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)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/injected-services-should-have-service-scope-applied.txt

    Class <org.gradle.jvm.toolchain.internal.DefaultJvmToolchainManagement> is not annotated with @ServiceScope in (DefaultJvmToolchainManagement.java:0)
    Class <org.gradle.language.cpp.internal.NativeDependencyCache> is not annotated with @ServiceScope in (NativeDependencyCache.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. src/internal/syscall/windows/syscall_windows.go

    	// Pad out to 8-byte alignment.
    	//
    	// Without this padding, TestChmod fails due to an argument validation error
    	// in SetFileInformationByHandle on windows/386.
    	//
    	// https://learn.microsoft.com/en-us/cpp/build/reference/zp-struct-member-alignment?view=msvc-170
    	// says that “The C/C++ headers in the Windows SDK assume the platform's
    	// default alignment is used.” What we see here is padding rather than
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. src/runtime/race_amd64.s

    // Callee-saved registers are: BX, BP, DI, SI, R12-R15.
    // SP must be 16-byte aligned. Windows also requires "stack-backing" for the 4 register arguments:
    // https://learn.microsoft.com/en-us/cpp/build/x64-calling-convention
    // We do not do this, because it seems to be intended for vararg/unprototyped functions.
    // Gcc-compiled race runtime does not try to use that space.
    
    #ifdef GOOS_windows
    #define RARG0 CX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/gccgo.go

    			defs = append(defs, `-D`, `GOPKGPATH=`+pkgpath)
    		}
    		defs = tools.maybePIC(defs)
    		defs = append(defs, b.gccArchArgs()...)
    		err := b.Shell(a).run(p.Dir, p.ImportPath, nil, tools.compiler(), "-xassembler-with-cpp", "-I", a.Objdir, "-c", "-o", ofile, defs, sfile)
    		if err != nil {
    			return nil, err
    		}
    	}
    	return ofiles, nil
    }
    
    func (gccgoToolchain) symabis(b *Builder, a *Action, sfiles []string) (string, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. src/cmd/go/internal/help/helpdoc.go

    extension will be passed to SWIG. Any file with a .swigcxx extension
    will be passed to SWIG with the -c++ option.
    
    When either cgo or SWIG is used, go build will pass any .c, .m, .s, .S
    or .sx files to the C compiler, and any .cc, .cpp, .cxx files to the C++
    compiler. The CC or CXX environment variables may be set to determine
    the C or C++ compiler, respectively, to use.
    	`,
    }
    
    var HelpPackages = &base.Command{
    	UsageLine: "packages",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  9. src/os/os_windows_test.go

    		` \\"`,
    		` \\\"`,
    		` \\\\\"`,
    		` \\\"x`,
    		` """"\""\\\"`,
    		` abc`,
    		` \\\\\""x"""y z`,
    		"\tb\t\"x\ty\"",
    		` "Брад" d e`,
    		// examples from https://learn.microsoft.com/en-us/cpp/cpp/main-function-command-line-args
    		` "abc" d e`,
    		` a\\b d"e f"g h`,
    		` a\\\"b c d`,
    		` a\\\\"b c" d e`,
    		// http://daviddeley.com/autohotkey/parameters/parameters.htm#WINARGV
    		// from 5.4  Examples
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftApplicationIntegrationTest.groovy

            given:
            def app = new SwiftApp()
            settingsFile << "rootProject.name = '${app.projectName}'"
            app.writeToProject(testDirectory)
    
            file("src/main/swift/ignore.cpp") << 'broken!'
            file("src/main/swift/ignore.c") << 'broken!'
            file("src/main/swift/ignore.m") << 'broken!'
            file("src/main/swift/ignore.h") << 'broken!'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:43:37 UTC 2024
    - 40.2K bytes
    - Viewed (0)
Back to top