Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 453 for syso (0.03 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/vendor/golang.org/x/net/route/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
    - 940 bytes
    - Viewed (0)
  5. src/os/sys.go

    Hiroshi Ioka <******@****.***> 1471192740 +0900
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 16 00:15:36 UTC 2016
    - 294 bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/initsystem/initsystem_windows.go

    		}
    	}
    	return nil
    }
    
    // ServiceRestart tries to reload the environment and restart the specific service
    func (sysd WindowsInitSystem) ServiceRestart(service string) error {
    	if err := sysd.ServiceStop(service); err != nil {
    		return errors.Wrapf(err, "couldn't stop service %s", service)
    	}
    	if err := sysd.ServiceStart(service); err != nil {
    		return errors.Wrapf(err, "couldn't start service %s", service)
    	}
    
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 08:56:16 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  7. test/init1.go

    	runtime.ReadMemStats(memstats)
    	sys, numGC := memstats.Sys, memstats.NumGC
    
    	// Generate 1,000 MB of garbage, only retaining 1 MB total.
    	for i := 0; i < N; i++ {
    		x = []byte(s)
    	}
    
    	// Verify that the garbage collector ran by seeing if we
    	// allocated fewer than N*MB bytes from the system.
    	runtime.ReadMemStats(memstats)
    	sys1, numGC1 := memstats.Sys, memstats.NumGC
    	if sys1-sys >= N*MB || numGC1 == numGC {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.1K bytes
    - Viewed (0)
  8. src/syscall/mksysnum_freebsd.pl

    # (for example, /usr/src/sys/kern/syscalls.master).
    
    use strict;
    
    my $command = "mksysnum_freebsd.pl " . join(' ', @ARGV);
    
    print <<EOF;
    // $command
    // Code generated by the command above; DO NOT EDIT.
    
    package syscall
    
    const (
    EOF
    
    while(<>){
    	if(/^([0-9]+)\s+\S+\s+STD\s+({ \S+\s+(\w+).*)$/){
    		my $num = $1;
    		my $proto = $2;
    		my $name = "SYS_$3";
    		$name =~ y/a-z/A-Z/;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  9. src/runtime/sys_solaris_amd64.s

    // NOT USING GO CALLING CONVENTION.
    TEXT runtimeĀ·miniterrno(SB),NOSPLIT,$0
    	// asmcgocall will put first argument into DI.
    	CALL	DI	// SysV ABI so returns in AX
    	get_tls(CX)
    	MOVQ	g(CX), BX
    	MOVQ	g_m(BX), BX
    	MOVQ	AX,	(m_mOS+mOS_perrno)(BX)
    	RET
    
    // Call a library function with SysV calling conventions.
    // The called function can take a maximum of 6 INTEGER class arguments,
    // see
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:29:00 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  10. src/syscall/mksysnum_dragonfly.pl

    # (for example, /usr/src/sys/kern/syscalls.master).
    
    use strict;
    
    my $command = "mksysnum_dragonfly.pl " . join(' ', @ARGV);
    
    print <<EOF;
    // $command
    // Code generated by the command above; DO NOT EDIT.
    
    package syscall
    
    const (
    EOF
    
    while(<>){
    	if(/^([0-9]+)\s+STD\s+({ \S+\s+(\w+).*)$/){
    		my $num = $1;
    		my $proto = $2;
    		my $name = "SYS_$3";
    		$name =~ y/a-z/A-Z/;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 866 bytes
    - Viewed (0)
Back to top