Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 70 for cmdLines (0.12 sec)

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

    	// order of their arguments.
    	return armSyncFileRange(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)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_s390x.go

    	if err != 0 {
    		return err
    	}
    	return nil
    }
    
    //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
    - 9.3K bytes
    - Viewed (0)
  3. cmd/erasure-server-pool-decom.go

    			// Preserve any current pool status.
    			if currentPool.CmdLine == pool.endpoints.CmdLine {
    				newMeta.Pools = append(newMeta.Pools, currentPool)
    				skip = true
    				break
    			}
    		}
    		if skip {
    			continue
    		}
    		newMeta.Pools = append(newMeta.Pools, PoolStatus{
    			CmdLine:    pool.endpoints.CmdLine,
    			ID:         idx,
    			LastUpdate: UTCNow(),
    		})
    	}
    	return newMeta
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 14:30:43 UTC 2024
    - 41.5K bytes
    - Viewed (1)
  4. src/expvar/expvar.go

    		http.HandleFunc("/debug/vars", expvarHandler)
    	} else {
    		http.HandleFunc("GET /debug/vars", expvarHandler)
    	}
    	Publish("cmdline", Func(cmdline))
    	Publish("memstats", Func(memstats))
    }
    
    // TODO: Use json.appendString instead.
    func appendJSONQuote(b []byte, s string) []byte {
    	const hex = "0123456789abcdef"
    	b = append(b, '"')
    	for _, r := range s {
    		switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 21:32:11 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/run/run.go

    func buildRunProgram(b *work.Builder, ctx context.Context, a *work.Action) error {
    	cmdline := str.StringList(work.FindExecCmd(), a.Deps[0].Target, a.Args)
    	if cfg.BuildN || cfg.BuildX {
    		b.Shell(a).ShowCmd("", "%s", strings.Join(cmdline, " "))
    		if cfg.BuildN {
    			return nil
    		}
    	}
    
    	base.RunStdin(cmdline)
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 19:09:38 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  6. src/cmd/internal/testdir/testdir_test.go

    					cmdline[2] += " " + strings.TrimPrefix(flag, "--gcflags=")
    				case flag == "-gcflags", flag == "--gcflags":
    					i++
    					if i < len(flags) {
    						cmdline[2] += " " + flags[i]
    					}
    				default:
    					cmdline = append(cmdline, flag)
    				}
    			}
    
    			cmdline = append(cmdline, long)
    			cmd := exec.Command(goTool, cmdline...)
    			cmd.Env = append(os.Environ(), env.Environ()...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  7. cmd/erasure-server-pool-decom_gen.go

    		case "id":
    			z.ID, err = dc.ReadInt()
    			if err != nil {
    				err = msgp.WrapError(err, "ID")
    				return
    			}
    		case "cl":
    			z.CmdLine, err = dc.ReadString()
    			if err != nil {
    				err = msgp.WrapError(err, "CmdLine")
    				return
    			}
    		case "lu":
    			z.LastUpdate, err = dc.ReadTime()
    			if err != nil {
    				err = msgp.WrapError(err, "LastUpdate")
    				return
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jul 04 21:02:54 UTC 2022
    - 26.7K bytes
    - Viewed (0)
  8. cmd/endpoint-ellipses.go

    			SetCount:     len(poolArgs[i].layout),
    			DrivesPerSet: len(poolArgs[i].layout[0]),
    			Endpoints:    endpointList,
    			Platform:     fmt.Sprintf("OS: %s | Arch: %s", runtime.GOOS, runtime.GOARCH),
    			CmdLine:      poolArgs[i].cmdline,
    		}); err != nil {
    			return nil, -1, err
    		}
    	}
    
    	return endpointServerPools, setupType, nil
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/cover.go

    // as part of the execution of action 'a'.
    func (b *Builder) CovData(a *Action, cmdargs ...any) ([]byte, error) {
    	cmdline := str.StringList(cmdargs...)
    	args := append([]string{}, cfg.BuildToolexec...)
    	args = append(args, base.Tool("covdata"))
    	args = append(args, cmdline...)
    	return b.Shell(a).runOut(a.Objdir, nil, args)
    }
    
    // BuildActionCoverMetaFile locates and returns the path of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 19:09:38 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  10. pkg/ctrlz/ctrlz.go

    	router := mux.NewRouter()
    	for _, t := range allTopics {
    		registerTopic(router, mainLayout, t)
    	}
    
    	if o.EnablePprof && o.Address == "localhost" {
    		router.HandleFunc("/debug/pprof/cmdline", pprof.Cmdline)
    		router.HandleFunc("/debug/pprof/profile", pprof.Profile)
    		router.HandleFunc("/debug/pprof/symbol", pprof.Symbol)
    		router.HandleFunc("/debug/pprof/trace", pprof.Trace)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 21:22:53 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top