Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 759 for syso (0.05 sec)

  1. src/cmd/go/internal/list/list.go

            SFiles            []string   // .s source files
            SwigFiles         []string   // .swig files
            SwigCXXFiles      []string   // .swigcxx files
            SysoFiles         []string   // .syso object files to add to archive
            TestGoFiles       []string   // _test.go files in package
            XTestGoFiles      []string   // _test.go files outside package
    
            // Embedded files
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/lib.go

    func hostlinkArchArgs(arch *sys.Arch) []string {
    	switch arch.Family {
    	case sys.I386:
    		return []string{"-m32"}
    	case sys.AMD64:
    		if buildcfg.GOOS == "darwin" {
    			return []string{"-arch", "x86_64", "-m64"}
    		}
    		return []string{"-m64"}
    	case sys.S390X:
    		return []string{"-m64"}
    	case sys.ARM:
    		return []string{"-marm"}
    	case sys.ARM64:
    		if buildcfg.GOOS == "darwin" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //		OS-native assembler (typically gcc (sic)); otherwise they
    //		will be assembled with the Go assembler.
    //	.swig, .swigcxx
    //		SWIG definition files.
    //	.syso
    //		System object files.
    //
    // Files of each of these types except .syso may contain build
    // constraints, but the go command stops scanning for build constraints
    // at the first item in the file that is not a blank line or //-style
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. src/runtime/internal/sys/sys.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // package sys contains system- and configuration- and architecture-specific
    // constants used by the runtime.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 17 18:54:38 UTC 2021
    - 283 bytes
    - Viewed (0)
  5. src/cmd/go/internal/load/pkg.go

    	SwigFiles         []string `json:",omitempty"` // .swig files
    	SwigCXXFiles      []string `json:",omitempty"` // .swigcxx files
    	SysoFiles         []string `json:",omitempty"` // .syso system object files added to package
    
    	// Embedded files
    	EmbedPatterns []string `json:",omitempty"` // //go:embed patterns
    	EmbedFiles    []string `json:",omitempty"` // files matched by EmbedPatterns
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/GccLinkerTest.groovy

            given:
            def testDir = tmpDirProvider.testDirectory
            def outputFile = testDir.file("output/lib")
    
            final expectedArgs = [
                    "-sys1", "-sys2",
                    "-shared",
                    getSoNameProp("installName"),
                    "-o", outputFile.absolutePath,
                    testDir.file("one.o").absolutePath,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/swift/SwiftLinkerTest.groovy

                    "-sys1", "-sys2",
                    "-emit-library",
                    "-o", outputFile.absolutePath,
                    testDir.file("one.o").absolutePath,
                    testDir.file("two.o").absolutePath,
                    "-arg1", "-arg2"].flatten()
    
            when:
            LinkerSpec spec = Mock(SharedLibraryLinkerSpec)
            spec.getSystemArgs() >> ['-sys1', '-sys2']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9K bytes
    - Viewed (0)
  8. cmd/bucket-metadata-sys.go

    func (sys *BucketMetadataSys) Count() int {
    	sys.RLock()
    	defer sys.RUnlock()
    
    	return len(sys.metadataMap)
    }
    
    // Remove bucket metadata from memory.
    func (sys *BucketMetadataSys) Remove(buckets ...string) {
    	sys.Lock()
    	for _, bucket := range buckets {
    		delete(sys.metadataMap, bucket)
    		globalBucketMonitor.DeleteBucket(bucket)
    	}
    	sys.Unlock()
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  9. src/syscall/syscall_plan9_test.go

    package syscall_test
    
    import (
    	"syscall"
    	"testing"
    )
    
    // testalias checks for aliasing of error strings returned by sys1 and sys2,
    // which both call the function named fn in package syscall
    func testalias(t *testing.T, fn string, sys1, sys2 func() error) {
    	err := sys1().Error()
    	errcopy := string([]byte(err))
    	sys2()
    	if err != errcopy {
    		t.Errorf("syscall.%s error string changed from %q to %q\n", fn, errcopy, err)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 08 14:57:01 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/net/lif/sys.go

    Dmitri Shuralyov <******@****.***> 1697571594 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 399 bytes
    - Viewed (0)
Back to top