Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for execIO (0.34 sec)

  1. src/runtime/proc.go

    	// Block signals during a fork, so that the child does not run
    	// a signal handler before exec if a signal is sent to the process
    	// group. See issue #18600.
    	gp.m.locks++
    	sigsave(&gp.m.sigmask)
    	sigblock(false)
    
    	// This function is called before fork in syscall package.
    	// Code between fork and exec must not allocate memory nor even try to grow stack.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. pkg/config/validation/validation_test.go

    			valid: true,
    		},
    		{
    			name: "probe exec invalid",
    			in: &networking.WorkloadGroup{
    				Template: &networking.WorkloadEntry{},
    				Probe: &networking.ReadinessProbe{
    					HealthCheckMethod: &networking.ReadinessProbe_Exec{
    						Exec: &networking.ExecHealthCheckConfig{},
    					},
    				},
    			},
    			valid: false,
    		},
    		{
    			name: "probe exec valid",
    			in: &networking.WorkloadGroup{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  3. pkg/config/validation/validation.go

    			break
    		}
    		errs = appendErrors(errs, agent.ValidatePort(int(h.Port)))
    	case *networking.ReadinessProbe_Exec:
    		h := m.Exec
    		if h == nil {
    			errs = appendErrors(errs, fmt.Errorf("exec may not be nil"))
    			break
    		}
    		if len(h.Command) == 0 {
    			errs = appendErrors(errs, fmt.Errorf("exec.command is required"))
    		}
    	default:
    		errs = appendErrors(errs, fmt.Errorf("unknown health check method %T", m))
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    // module.
    //
    // By default, 'go run' runs the compiled binary directly: 'a.out arguments...'.
    // If the -exec flag is given, 'go run' invokes the binary using xprog:
    //
    //	'xprog a.out arguments...'.
    //
    // If the -exec flag is not given, GOOS or GOARCH is different from the system
    // default, and a program named go_$GOOS_$GOARCH_exec can be found
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure-helper.sh

    function convert-manifest-params {
      # A helper function to convert the manifest args from a string to a list of
      # flag arguments.
      # Old format:
      #   command=["/bin/sh", "-c", "exec KUBE_EXEC_BINARY --param1=val1 --param2-val2"].
      # New format:
      #   command=["KUBE_EXEC_BINARY"]  # No shell dependencies.
      #   args=["--param1=val1", "--param2-val2"]
      IFS=' ' read -ra FLAGS <<< "$1"
      params=""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/s390x/asmz.go

    				// must have a symbol
    				break
    			}
    			c.instoffset = a.Offset
    			if a.Sym.Type == objabi.STLSBSS {
    				if c.ctxt.Flag_shared {
    					return C_TLS_IE // initial exec model
    				}
    				return C_TLS_LE // local exec model
    			}
    			return C_ADDR
    
    		case obj.NAME_GOTREF:
    			return C_GOTADDR
    
    		case obj.NAME_AUTO:
    			if a.Reg == REGSP {
    				// unset base register for better printing, since
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  7. src/crypto/x509/x509_test.go

    	"crypto/x509/pkix"
    	"encoding/asn1"
    	"encoding/base64"
    	"encoding/gob"
    	"encoding/hex"
    	"encoding/pem"
    	"fmt"
    	"internal/testenv"
    	"io"
    	"math"
    	"math/big"
    	"net"
    	"net/url"
    	"os/exec"
    	"reflect"
    	"runtime"
    	"slices"
    	"strings"
    	"testing"
    	"time"
    )
    
    func TestParsePKCS1PrivateKey(t *testing.T) {
    	block, _ := pem.Decode([]byte(pemPrivateKey))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/x86/asm6.go

    		case REG_TLS:
    			// NOTE: Systems listed here should be only systems that
    			// support direct TLS references like 8(TLS) implemented as
    			// direct references from FS or GS. Systems that require
    			// the initial-exec model, where you load the TLS base into
    			// a register and then index from that register, do not reach
    			// this code and should not be listed.
    			if ctxt.Arch.Family == sys.I386 {
    				switch ctxt.Headtype {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods_test.go

    		podFullName: podFullName,
    		container:   "containerBar",
    		command:     []string{"ls"},
    		expectError: true,
    	}, {
    		description: "null exec command",
    		podFullName: podFullName,
    		container:   containerID,
    		expectError: false,
    	}, {
    		description: "multi exec commands",
    		podFullName: podFullName,
    		container:   containerID,
    		command:     []string{"bash", "-c", "ls"},
    		expectError: false,
    	}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/ppc64/asm9.go

    			c.instoffset = a.Offset
    			if a.Sym == nil {
    				break
    			} else if a.Sym.Type == objabi.STLSBSS {
    				// For PIC builds, use 12 byte got initial-exec TLS accesses.
    				if c.ctxt.Flag_shared {
    					return C_TLS_IE
    				}
    				// Otherwise, use 8 byte local-exec TLS accesses.
    				return C_TLS_LE
    			} else {
    				return C_ADDR
    			}
    
    		case obj.NAME_AUTO:
    			a.Reg = REGSP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
Back to top