Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 76 of 76 for syso (0.33 sec)

  1. src/runtime/sys_linux_ppc64x.s

    // Copyright 2014 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.
    
    //go:build linux && (ppc64 || ppc64le)
    
    //
    // System calls and other sys.stuff for ppc64, Linux
    //
    
    #include "go_asm.h"
    #include "go_tls.h"
    #include "textflag.h"
    #include "asm_ppc64x.h"
    #include "cgo/abi_ppc64x.h"
    
    #define SYS_exit		  1
    #define SYS_read		  3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  2. src/os/os_windows_test.go

    func TestStatPagefile(t *testing.T) {
    	t.Parallel()
    
    	const path = `c:\pagefile.sys`
    	fi, err := os.Stat(path)
    	if err == nil {
    		if fi.Name() == "" {
    			t.Fatalf("Stat(%q).Name() is empty", path)
    		}
    		t.Logf("Stat(%q).Size() = %v", path, fi.Size())
    		return
    	}
    	if os.IsNotExist(err) {
    		t.Skip(`skipping because c:\pagefile.sys is not found`)
    	}
    	t.Fatal(err)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  3. src/runtime/runtime2.go

    // license that can be found in the LICENSE file.
    
    package runtime
    
    import (
    	"internal/abi"
    	"internal/chacha8rand"
    	"internal/goarch"
    	"internal/runtime/atomic"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    // defined constants
    const (
    	// G status
    	//
    	// Beyond indicating the general state of a G, the G status
    	// acts like a lock on the goroutine's stack (and hence its
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/test/test.go

    #include <complex.h>
    #include <math.h>
    #include <stdarg.h>
    #include <stdbool.h>
    #include <stddef.h>
    #include <stdint.h>
    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>
    #include <unistd.h>
    #include <sys/stat.h>
    #include <errno.h>
    #cgo !darwin LDFLAGS: -lm
    
    #ifndef WIN32
    #include <pthread.h>
    #include <signal.h>
    #endif
    
    // alignment tests
    
    typedef unsigned char Uint8;
    typedef unsigned short Uint16;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  5. cmd/admin-bucket-handlers.go

    		header, zerr := zip.FileInfoHeader(dummyFileInfo{
    			name:    filename,
    			size:    int64(sz),
    			mode:    0o600,
    			modTime: time.Now(),
    			isDir:   false,
    			sys:     nil,
    		})
    		if zerr == nil {
    			header.Method = zip.Deflate
    			zwriter, zerr := zipWriter.CreateHeader(header)
    			if zerr == nil {
    				io.Copy(zwriter, r)
    			}
    		}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/liveness/plive.go

    		// When the parent resumes, it is using the same stack frame. But the
    		// child has clobbered stack variables that the parent needs. Boom!
    		// In particular, the sys argument gets clobbered.
    		return
    	}
    	if lv.f.Name == "wbBufFlush" ||
    		((lv.f.Name == "callReflect" || lv.f.Name == "callMethod") && lv.fn.ABIWrapper()) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top