Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for bargs (0.05 sec)

  1. pkg/kube/inject/testdata/inputs/merge-probers.yaml.43.template.gen.yaml

            image: "{{ annotation .ObjectMeta `sidecar.istio.io/proxyImage` .Values.global.proxy_init.image }}"
          {{- else }}
            image: "{{ .ProxyImage }}"
          {{- end }}
            args:
            - istio-iptables
            - "-p"
            - {{ .MeshConfig.ProxyListenPort | default "15001" | quote }}
            - "-z"
            - {{ .MeshConfig.ProxyInboundListenPort | default "15006" | quote }}
            - "-u"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inputs/default.template.gen.yaml

            image: "{{ annotation .ObjectMeta `sidecar.istio.io/proxyImage` .Values.global.proxy_init.image }}"
          {{- else }}
            image: "{{ .ProxyImage }}"
          {{- end }}
            args:
            - istio-iptables
            - "-p"
            - {{ .MeshConfig.ProxyListenPort | default "15001" | quote }}
            - "-z"
            - {{ .MeshConfig.ProxyInboundListenPort | default "15006" | quote }}
            - "-u"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  3. pkg/volume/testing/testing.go

    // optionally set it's output (stdout and stderr combined) and return code.
    type CommandScript struct {
    	// Cmd is the command to execute, e.g. "ls"
    	Cmd string
    	// Args is a slice of arguments to pass to the command, e.g. "-a"
    	Args []string
    	// Output is the combined stdout and stderr of the command to return
    	Output string
    	// ReturnCode is the exit code for the command. Setting this to non-zero will
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/runtime/framework.go

    		// initialize only needed plugins.
    		if !pg.Has(name) {
    			continue
    		}
    
    		args := pluginConfig[name]
    		if args != nil {
    			outputProfile.PluginConfig = append(outputProfile.PluginConfig, config.PluginConfig{
    				Name: name,
    				Args: args,
    			})
    		}
    		p, err := factory(ctx, args, f)
    		if err != nil {
    			return nil, fmt.Errorf("initializing plugin %q: %w", name, err)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  5. src/net/http/fs_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	defer ln.Close()
    
    	// Attempt to run strace, and skip on failure - this test requires SYS_PTRACE.
    	if err := testenv.Command(t, "strace", "-f", "-q", os.Args[0], "-test.run=^$").Run(); err != nil {
    		t.Skipf("skipping; failed to run strace: %v", err)
    	}
    
    	filename := fmt.Sprintf("1kb-%d", os.Getpid())
    	filepath := path.Join(os.TempDir(), filename)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/expr.go

    		return check.kindString(typ) + " can only be compared to nil"
    	}
    	// see if we can extract a more specific error
    	var cause string
    	comparable(typ, true, nil, func(format string, args ...interface{}) {
    		cause = check.sprintf(format, args...)
    	})
    	return cause
    }
    
    // kindString returns the type kind as a string.
    func (check *Checker) kindString(typ Type) string {
    	switch under(typ).(type) {
    	case *Array:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  7. src/runtime/pprof/pprof_test.go

    					// runtime, unless explicitly excluded
    					// above.
    					mayBeLabeled = true
    				}
    			}
    		}
    		errorStack := func(f string, args ...any) {
    			var buf strings.Builder
    			fprintStack(&buf, s.Location)
    			t.Errorf("%s: %s", fmt.Sprintf(f, args...), buf.String())
    		}
    		if mustBeLabeled != "" && mustNotBeLabeled != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  8. hack/local-up-cluster.sh

        # otherwise writing subtree_control fails with EBUSY.
        # An error during moving non-existent process (i.e., "cat") is ignored.
        mkdir -p /sys/fs/cgroup/init
        xargs -rn1 < /sys/fs/cgroup/cgroup.procs > /sys/fs/cgroup/init/cgroup.procs || :
        # enable controllers
        sed -e 's/ / +/g' -e 's/^/+/' < /sys/fs/cgroup/cgroup.controllers \
          > /sys/fs/cgroup/cgroup.subtree_control
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top