Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,206 for execIO (0.17 sec)

  1. src/os/exec.go

    // thread state (for example, Linux or Plan 9 name spaces), the new
    // process will inherit the caller's thread state.
    //
    // StartProcess is a low-level interface. The [os/exec] package provides
    // higher-level interfaces.
    //
    // If there is an error, it will be of type [*PathError].
    func StartProcess(name string, argv []string, attr *ProcAttr) (*Process, error) {
    	testlog.Open(name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    			span.Done()
    		}
    		if a.json != nil {
    			a.json.TimeDone = time.Now()
    		}
    
    		// The actions run in parallel but all the updates to the
    		// shared work state are serialized through b.exec.
    		b.exec.Lock()
    		defer b.exec.Unlock()
    
    		if err != nil {
    			if b.AllowErrors && a.Package != nil {
    				if a.Package.Error == nil {
    					a.Package.Error = &load.PackageError{Err: err}
    					a.Package.Incomplete = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/preflight/checks_linux.go

    		InPathCheck{executable: "nsenter", mandatory: true, exec: execer},
    		InPathCheck{executable: "ebtables", mandatory: false, exec: execer},
    		InPathCheck{executable: "ethtool", mandatory: false, exec: execer},
    		InPathCheck{executable: "socat", mandatory: false, exec: execer},
    		InPathCheck{executable: "tc", mandatory: false, exec: execer},
    		InPathCheck{executable: "touch", mandatory: false, exec: execer})
    	return checks
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. pkg/proxy/conntrack/conntrack_test.go

    	v1 "k8s.io/api/core/v1"
    	"k8s.io/utils/exec"
    	fakeexec "k8s.io/utils/exec/testing"
    )
    
    var success = func() ([]byte, []byte, error) { return []byte("1 flow entries have been deleted"), nil, nil }
    var nothingToDelete = func() ([]byte, []byte, error) {
    	return []byte(""), nil, fmt.Errorf("conntrack v1.4.2 (conntrack-tools): 0 flow entries have been deleted")
    }
    
    type testCT struct {
    	execCT
    
    	fcmd *fakeexec.FakeCmd
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 15 18:08:36 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. src/database/sql/ctxutil.go

    	if execerCtx != nil {
    		return execerCtx.ExecContext(ctx, query, nvdargs)
    	}
    	dargs, err := namedValueToValue(nvdargs)
    	if err != nil {
    		return nil, err
    	}
    
    	select {
    	default:
    	case <-ctx.Done():
    		return nil, ctx.Err()
    	}
    	return execer.Exec(query, dargs)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 02 12:57:37 UTC 2019
    - 3.5K bytes
    - Viewed (0)
  6. src/runtime/race/race_darwin_amd64.go

    //go:cgo_import_dynamic dlsym dlsym ""
    //go:cgo_import_dynamic dup dup ""
    //go:cgo_import_dynamic dup2 dup2 ""
    //go:cgo_import_dynamic dyld_shared_cache_iterate_text dyld_shared_cache_iterate_text ""
    //go:cgo_import_dynamic execve execve ""
    //go:cgo_import_dynamic exit exit ""
    //go:cgo_import_dynamic fstat$INODE64 fstat$INODE64 ""
    //go:cgo_import_dynamic ftruncate ftruncate ""
    //go:cgo_import_dynamic getpid getpid ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 19:29:22 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. src/runtime/race/race_darwin_arm64.go

    //go:cgo_import_dynamic dlsym dlsym ""
    //go:cgo_import_dynamic dup dup ""
    //go:cgo_import_dynamic dup2 dup2 ""
    //go:cgo_import_dynamic dyld_shared_cache_iterate_text dyld_shared_cache_iterate_text ""
    //go:cgo_import_dynamic execve execve ""
    //go:cgo_import_dynamic exit exit ""
    //go:cgo_import_dynamic fstat fstat ""
    //go:cgo_import_dynamic ftruncate ftruncate ""
    //go:cgo_import_dynamic getpid getpid ""
    //go:cgo_import_dynamic getrlimit getrlimit ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 19:29:22 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  8. src/regexp/exec.go

    Bryan Boreham <******@****.***> 1634161222 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 04 20:10:54 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  9. src/text/template/exec.go

    Zxilly <******@****.***> 1710239775 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:22:24 UTC 2024
    - 32K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_filter.go

    		requestDigest RequestDigest,
    		noteFn func(fs *flowcontrol.FlowSchema, pl *flowcontrol.PriorityLevelConfiguration, flowDistinguisher string),
    		workEstimator func() fcrequest.WorkEstimate,
    		queueNoteFn fq.QueueNoteFn,
    		execFn func(),
    	)
    
    	// Run monitors config objects from the main apiservers and causes
    	// any needed changes to local behavior.  This method ceases
    	// activity and returns after the given channel is closed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top