Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 57 for badexec (0.14 sec)

  1. src/cmd/compile/internal/syntax/walk.go

    		if n.Recv != nil {
    			w.node(n.Recv)
    		}
    		w.node(n.Name)
    		w.fieldList(n.TParamList)
    		w.node(n.Type)
    		if n.Body != nil {
    			w.node(n.Body)
    		}
    
    	// expressions
    	case *BadExpr: // nothing to do
    	case *Name: // nothing to do
    	case *BasicLit: // nothing to do
    
    	case *CompositeLit:
    		if n.Type != nil {
    			w.node(n.Type)
    		}
    		w.exprList(n.ElemList)
    
    	case *KeyValueExpr:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:55:04 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go

    	EAFNOSUPPORT    = syscall.Errno(0x2f)
    	EAGAIN          = syscall.Errno(0x23)
    	EALREADY        = syscall.Errno(0x25)
    	EAUTH           = syscall.Errno(0x50)
    	EBADARCH        = syscall.Errno(0x56)
    	EBADEXEC        = syscall.Errno(0x55)
    	EBADF           = syscall.Errno(0x9)
    	EBADMACHO       = syscall.Errno(0x58)
    	EBADMSG         = syscall.Errno(0x5e)
    	EBADRPC         = syscall.Errno(0x48)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 87.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/nodes.go

    	return n
    }
    
    type (
    	Expr interface {
    		Node
    		typeInfo
    		aExpr()
    	}
    
    	// Placeholder for an expression that failed to parse
    	// correctly and where we can't provide a better node.
    	BadExpr struct {
    		expr
    	}
    
    	// Value
    	Name struct {
    		Value string
    		expr
    	}
    
    	// Value
    	BasicLit struct {
    		Value string
    		Kind  LitKind
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 9K bytes
    - Viewed (0)
  4. pkg/kube/client.go

    	PodExecCommands(podName, podNamespace, container string, commands []string) (stdout string, stderr string, err error)
    
    	// PodExec takes a command and the pod data to run the command in the specified pod.
    	PodExec(podName, podNamespace, container string, command string) (stdout string, stderr string, err error)
    
    	// PodLogs retrieves the logs for the given pod.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 39K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go

    	EAFNOSUPPORT    = syscall.Errno(0x2f)
    	EAGAIN          = syscall.Errno(0x23)
    	EALREADY        = syscall.Errno(0x25)
    	EAUTH           = syscall.Errno(0x50)
    	EBADARCH        = syscall.Errno(0x56)
    	EBADEXEC        = syscall.Errno(0x55)
    	EBADF           = syscall.Errno(0x9)
    	EBADMACHO       = syscall.Errno(0x58)
    	EBADMSG         = syscall.Errno(0x5e)
    	EBADRPC         = syscall.Errno(0x48)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 87.5K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_container_test.go

    	})
    
    	lcHanlder := lifecycle.NewHandlerRunner(
    		fakeHTTP,
    		fakeRunner,
    		fakePodStatusProvider,
    		nil)
    
    	m.runner = lcHanlder
    
    	// Configured and works as expected
    	t.Run("PreStop-CMDExec", func(t *testing.T) {
    		ctx := context.Background()
    		testContainer.Lifecycle = cmdLifeCycle
    		_ = m.killContainer(ctx, testPod, cID, "foo", "testKill", "", &gracePeriod, nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 28K bytes
    - Viewed (0)
  7. src/cmd/cgo/ast.go

    			f.walk(&n.Type, ctxEmbedType, visit)
    		} else {
    			f.walk(&n.Type, ctxType, visit)
    		}
    	case *ast.FieldList:
    		for _, field := range n.List {
    			f.walk(field, context, visit)
    		}
    	case *ast.BadExpr:
    	case *ast.Ident:
    	case *ast.Ellipsis:
    		f.walk(&n.Elt, ctxType, visit)
    	case *ast.BasicLit:
    	case *ast.FuncLit:
    		f.walk(n.Type, ctxType, visit)
    		f.walk(n.Body, ctxStmt, visit)
    	case *ast.CompositeLit:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 16:54:27 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/rewrite.go

    		a.apply(n, "Type", nil, n.Type)
    		a.apply(n, "Tag", nil, n.Tag)
    		a.apply(n, "Comment", nil, n.Comment)
    
    	case *ast.FieldList:
    		a.applyList(n, "List")
    
    	// Expressions
    	case *ast.BadExpr, *ast.Ident, *ast.BasicLit:
    		// nothing to do
    
    	case *ast.Ellipsis:
    		a.apply(n, "Elt", nil, n.Elt)
    
    	case *ast.FuncLit:
    		a.apply(n, "Type", nil, n.Type)
    		a.apply(n, "Body", nil, n.Body)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  9. src/internal/testenv/testenv.go

    	"os/exec"
    	"path/filepath"
    	"runtime"
    	"strconv"
    	"strings"
    	"sync"
    	"testing"
    )
    
    // Save the original environment during init for use in checks. A test
    // binary may modify its environment before calling HasExec to change its
    // behavior (such as mimicking a command-line tool), and that modified
    // environment might cause environment checks to behave erratically.
    var origEnv = os.Environ()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. src/cmd/fix/fix.go

    		walkBeforeAfter(&n.Type, before, after)
    		walkBeforeAfter(&n.Tag, before, after)
    	case *ast.FieldList:
    		for _, field := range n.List {
    			walkBeforeAfter(field, before, after)
    		}
    	case *ast.BadExpr:
    	case *ast.Ident:
    	case *ast.Ellipsis:
    		walkBeforeAfter(&n.Elt, before, after)
    	case *ast.BasicLit:
    	case *ast.FuncLit:
    		walkBeforeAfter(&n.Type, before, after)
    		walkBeforeAfter(&n.Body, before, after)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 14.6K bytes
    - Viewed (0)
Back to top