Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 888 for proc (0.23 sec)

  1. src/runtime/traceruntime.go

    }
    
    // Gomaxprocs emits a ProcsChange event.
    func (tl traceLocker) Gomaxprocs(procs int32) {
    	tl.eventWriter(traceGoRunning, traceProcRunning).commit(traceEvProcsChange, traceArg(procs), tl.stack(1))
    }
    
    // ProcStart traces a ProcStart event.
    //
    // Must be called with a valid P.
    func (tl traceLocker) ProcStart() {
    	pp := tl.mp.p.ptr()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  2. src/os/exec_plan9.go

    	if e != nil {
    		return nil, &PathError{Op: "fork/exec", Path: name, Err: e}
    	}
    
    	return newPIDProcess(pid), nil
    }
    
    func (p *Process) writeProcFile(file string, data string) error {
    	f, e := OpenFile("/proc/"+itoa.Itoa(p.Pid)+"/"+file, O_WRONLY, 0)
    	if e != nil {
    		return e
    	}
    	defer f.Close()
    	_, e = f.Write([]byte(data))
    	return e
    }
    
    func (p *Process) signal(sig Signal) error {
    	switch p.pidStatus() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. src/math/exp_amd64.s

    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    
    // The method is based on a paper by Naoki Shibata: "Efficient evaluation
    // methods of elementary functions suitable for SIMD computation", Proc.
    // of International Supercomputing Conference 2010 (ISC'10), pp. 25 -- 32
    // (May 2010). The paper is available at
    // https://link.springer.com/article/10.1007/s00450-010-0108-2
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 15:48:19 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  4. pkg/volume/util/fsquota/quota_linux_test.go

    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/volume/util/fsquota/common"
    )
    
    const dummyMountData = `sysfs /sys sysfs rw,nosuid,nodev,noexec,relatime 0 0
    proc /proc proc rw,nosuid,nodev,noexec,relatime 0 0
    devtmpfs /dev devtmpfs rw,nosuid,size=6133536k,nr_inodes=1533384,mode=755 0 0
    tmpfs /tmp tmpfs rw,nosuid,nodev 0 0
    /dev/sda1 /boot ext4 rw,relatime 0 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/process/internal/DefaultExecHandleSpec.groovy

            def execHandle = handle().args(args(TestApp.class)).setDisplayName("foo proc").streamsHandler(streamsHandler).build()
    
            when:
            execHandle.start()
            def result = execHandle.waitForFinish()
    
            then:
            result.rethrowFailure()
            1 * streamsHandler.connectStreams(_ as Process, "foo proc", _ as Executor)
            1 * streamsHandler.start()
            1 * streamsHandler.stop()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 23 03:44:52 UTC 2021
    - 14.9K bytes
    - Viewed (0)
  6. src/os/signal/signal_plan9_test.go

    			t.Fatalf("unexpected signal %v", s)
    		case <-time.After(100 * time.Millisecond):
    			// nothing to read - good
    		}
    	}
    }
    
    func postNote(pid int, note string) error {
    	f, err := os.OpenFile("/proc/"+itoa.Itoa(pid)+"/note", os.O_WRONLY, 0)
    	if err != nil {
    		return err
    	}
    	defer f.Close()
    	_, err = f.Write([]byte(note))
    	return err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Mar 14 17:56:50 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  7. src/runtime/race/output_test.go

          .*_cgo_gotypes\.go:[0-9]+ \+0x[0-9,a-f]+
      _cgoexp_[0-9a-z]+_goCallback\(\)
          <autogenerated>:1 \+0x[0-9,a-f]+
    
    Goroutine [0-9] \(running\) created at:
      runtime\.newextram\(\)
          .*/runtime/proc.go:[0-9]+ \+0x[0-9,a-f]+
    ==================`,
    		`==================
    WARNING: DATA RACE
    Read at 0x[0-9,a-f]+ by .*:
      main\..*
          .*/main\.go:[0-9]+ \+0x[0-9,a-f]+(?s).*
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 25 20:44:25 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  8. src/os/pidfd_linux.go

    // execution environment in which the above system calls are restricted by
    // seccomp or a similar technology.
    func checkPidfd() error {
    	// Get a pidfd of the current process (opening of "/proc/self" won't
    	// work for waitid).
    	fd, err := unix.PidFDOpen(syscall.Getpid(), 0)
    	if err != nil {
    		return NewSyscallError("pidfd_open", err)
    	}
    	defer syscall.Close(int(fd))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 18:08:44 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. src/cmd/trace/goroutinegen.go

    }
    
    func (g *goroutineGenerator) ProcRange(ctx *traceContext, ev *trace.Event) {
    	// TODO(mknyszek): Extend procRangeGenerator to support rendering proc ranges
    	// that overlap with a goroutine's execution.
    }
    
    func (g *goroutineGenerator) ProcTransition(ctx *traceContext, ev *trace.Event) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. src/encoding/pem/pem_test.go

    5krmJiu+ViipORJPGMkgoL6BjU21XI95VQbun5P8vvg8Z+FnFsvRFY3e1CCzAVQY
    ZsUkLw2I7zI/dNlWdB8Xp7v+3w9sX5N3J/WuJ1KOO5m26kRlHQo7EzT3974g
    -----END CERTIFICATE-----
     1 s:/C=ZA/O=Ca Inc./CN=CA Inc
    
    -----BEGIN RSA TESTING KEY-----
    Proc-Type: 4,ENCRYPTED
    DEK-Info: DES-EDE3-CBC,80C7C7A09690757A
    
    eQp5ZkH6CyHBz7BZfUPxyLCCmftsBJ7HlqGb8Ld21cSwnzWZ4/SIlhyrUtsfw7VR
    2TTwA+odo9ex7GdxOTaH8oZFumIRoiEjHsk8U7Bhntp+ekkPP79xunnN7hb7hkhr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:56:00 UTC 2022
    - 23.5K bytes
    - Viewed (0)
Back to top