Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 70 for cmdLines (0.15 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_riscv64.go

    	return Renameat2(olddirfd, oldpath, newdirfd, newpath, 0)
    }
    
    //sys	kexecFileLoad(kernelFd int, initrdFd int, cmdlineLen int, cmdline string, flags int) (err error)
    
    func KexecFileLoad(kernelFd int, initrdFd int, cmdline string, flags int) error {
    	cmdlineLen := len(cmdline)
    	if cmdlineLen > 0 {
    		// Account for the additional NULL byte added by
    		// BytePtrFromString in kexecFileLoad. The kexec_file_load
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go

    	// order of their arguments.
    	return syncFileRange2(fd, flags, off, n)
    }
    
    //sys	kexecFileLoad(kernelFd int, initrdFd int, cmdlineLen int, cmdline string, flags int) (err error)
    
    func KexecFileLoad(kernelFd int, initrdFd int, cmdline string, flags int) error {
    	cmdlineLen := len(cmdline)
    	if cmdlineLen > 0 {
    		// Account for the additional NULL byte added by
    		// BytePtrFromString in kexecFileLoad. The kexec_file_load
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 5K bytes
    - Viewed (0)
  3. cmd/erasure-server-pool-decom_test.go

    	}
    
    	var nmeta1 poolMeta
    	nmeta1.Version = poolMetaVersion
    	nmeta1.Pools = append(nmeta1.Pools, meta.Pools...)
    	for i, pool := range nmeta1.Pools {
    		if i == 0 {
    			nmeta1.Pools[i] = PoolStatus{
    				CmdLine:    pool.CmdLine,
    				ID:         i,
    				LastUpdate: UTCNow(),
    				Decommission: &PoolDecommissionInfo{
    					Complete: true,
    				},
    			}
    		}
    	}
    
    	var nmeta2 poolMeta
    	nmeta2.Version = poolMetaVersion
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jul 03 16:47:40 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/shell.go

    }
    
    // runOut runs the command given by cmdline in the directory dir.
    // It returns the command output and any errors that occurred.
    // It accumulates execution time in a.
    func (sh *Shell) runOut(dir string, env []string, cmdargs ...any) ([]byte, error) {
    	a := sh.action
    
    	cmdline := str.StringList(cmdargs...)
    
    	for _, arg := range cmdline {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_ppc.go

    	// order of their arguments.
    	return syncFileRange2(fd, flags, off, n)
    }
    
    //sys	kexecFileLoad(kernelFd int, initrdFd int, cmdlineLen int, cmdline string, flags int) (err error)
    
    func KexecFileLoad(kernelFd int, initrdFd int, cmdline string, flags int) error {
    	cmdlineLen := len(cmdline)
    	if cmdlineLen > 0 {
    		// Account for the additional NULL byte added by
    		// BytePtrFromString in kexecFileLoad. The kexec_file_load
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  6. src/net/http/pprof/pprof.go

    	http.HandleFunc(prefix+"/debug/pprof/cmdline", Cmdline)
    	http.HandleFunc(prefix+"/debug/pprof/profile", Profile)
    	http.HandleFunc(prefix+"/debug/pprof/symbol", Symbol)
    	http.HandleFunc(prefix+"/debug/pprof/trace", Trace)
    }
    
    // Cmdline responds with the running program's
    // command line, with arguments separated by NUL bytes.
    // The package initialization registers it as /debug/pprof/cmdline.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:34:05 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_arm64.go

    func Pause() error {
    	_, err := ppoll(nil, 0, nil, nil)
    	return err
    }
    
    //sys	kexecFileLoad(kernelFd int, initrdFd int, cmdlineLen int, cmdline string, flags int) (err error)
    
    func KexecFileLoad(kernelFd int, initrdFd int, cmdline string, flags int) error {
    	cmdlineLen := len(cmdline)
    	if cmdlineLen > 0 {
    		// Account for the additional NULL byte added by
    		// BytePtrFromString in kexecFileLoad. The kexec_file_load
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. cmd/server-main_test.go

    			}
    			if err == nil {
    				if len(sctx.Layout.pools) != 2 {
    					t.Error("expected parsed pools to be 2, not", len(sctx.Layout.pools))
    				}
    				if sctx.Layout.pools[0].cmdline != testcase.hash {
    					t.Error("expected hash", testcase.hash, "got", sctx.Layout.pools[0].cmdline)
    				}
    			}
    		})
    	}
    }
    
    // Tests initializing new object layer.
    func TestNewObjectLayer(t *testing.T) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Dec 07 09:33:56 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_loong64.go

    	return Renameat2(olddirfd, oldpath, newdirfd, newpath, 0)
    }
    
    //sys	kexecFileLoad(kernelFd int, initrdFd int, cmdlineLen int, cmdline string, flags int) (err error)
    
    func KexecFileLoad(kernelFd int, initrdFd int, cmdline string, flags int) error {
    	cmdlineLen := len(cmdline)
    	if cmdlineLen > 0 {
    		// Account for the additional NULL byte added by
    		// BytePtrFromString in kexecFileLoad. The kexec_file_load
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/routes/debugsocket.go

    func (s *DebugSocket) InstallProfiling() {
    	s.mux.HandleFunc("/debug/pprof", redirectTo("/debug/pprof/"))
    	s.mux.HandleFunc("/debug/pprof/", pprof.Index)
    	s.mux.HandleFunc("/debug/pprof/cmdline", pprof.Cmdline)
    	s.mux.HandleFunc("/debug/pprof/profile", pprof.Profile)
    	s.mux.HandleFunc("/debug/pprof/symbol", pprof.Symbol)
    	s.mux.HandleFunc("/debug/pprof/trace", pprof.Trace)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 08 00:33:16 UTC 2022
    - 2.2K bytes
    - Viewed (0)
Back to top