Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for getUsage (0.23 sec)

  1. src/syscall/syscall_aix.go

    //sys	Geteuid() (euid int)
    //sys	Getegid() (egid int)
    //sys	Getppid() (ppid int)
    //sys	Getpriority(which int, who int) (n int, err error)
    //sysnb	Getrlimit(which int, lim *Rlimit) (err error)
    //sysnb	Getrusage(who int, rusage *Rusage) (err error)
    //sysnb	Getuid() (uid int)
    //sys	Kill(pid int, signum Signal) (err error)
    //sys	Lchown(path string, uid int, gid int) (err error)
    //sys	Link(path string, link string) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    	proxyConfig := d.env.GetProxyConfigOrDefault(mi.Namespace, labelToMatch, nil, cfg.MeshConfig)
    	input := derivedInput{
    		TemplateInput: mi,
    		ProxyImage: inject.ProxyImage(
    			cfg.Values.Struct(),
    			proxyConfig.GetImage(),
    			mi.Annotations,
    		),
    		ProxyConfig: proxyConfig,
    		MeshConfig:  cfg.MeshConfig,
    		Values:      cfg.Values.Map(),
    	}
    	results, err := tmpl.Execute(template, input)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  3. src/syscall/syscall_linux.go

    func Getpgrp() (pid int) {
    	pid, _ = Getpgid(0)
    	return
    }
    
    //sysnb	Getpid() (pid int)
    //sysnb	Getppid() (ppid int)
    //sys	Getpriority(which int, who int) (prio int, err error)
    //sysnb	Getrusage(who int, rusage *Rusage) (err error)
    //sysnb	Gettid() (tid int)
    //sys	Getxattr(path string, attr string, dest []byte) (sz int, err error)
    //sys	InotifyAddWatch(fd int, pathname string, mask uint32) (watchdesc int, err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  4. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	if x != nil {
    		return x.Tag
    	}
    	return nil
    }
    
    func (x *CNIConfig) GetVariant() string {
    	if x != nil {
    		return x.Variant
    	}
    	return ""
    }
    
    func (x *CNIConfig) GetImage() string {
    	if x != nil {
    		return x.Image
    	}
    	return ""
    }
    
    func (x *CNIConfig) GetPullPolicy() string {
    	if x != nil {
    		return x.PullPolicy
    	}
    	return ""
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
Back to top