Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 224 for execIO (0.24 sec)

  1. src/internal/poll/fd_windows.go

    		// if the user is doing their own overlapped I/O.
    		// See issue #21172.
    		//
    		// In general the code below avoids calling the execIO
    		// function for non-network sockets. If some method does
    		// somehow call execIO, then execIO, and therefore the
    		// calling method, will return an error, because
    		// fd.pd.runtimeCtx will be 0.
    		err = fd.pd.init(fd)
    	}
    	if logInitFD != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 16:50:42 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  2. src/os/exec/exec.go

    // can instead override the error using an errors.Is check:
    //
    //	path, err := exec.LookPath("prog")
    //	if errors.Is(err, exec.ErrDot) {
    //		err = nil
    //	}
    //	if err != nil {
    //		log.Fatal(err)
    //	}
    //	use(path)
    //
    // and
    //
    //	cmd := exec.Command("prog")
    //	if errors.Is(cmd.Err, exec.ErrDot) {
    //		cmd.Err = nil
    //	}
    //	if err := cmd.Run(); err != nil {
    //		log.Fatal(err)
    //	}
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/runtime/lockrank.go

    	lockRankAllocmW:         "allocmW",
    	lockRankExecW:           "execW",
    	lockRankCpuprof:         "cpuprof",
    	lockRankPollCache:       "pollCache",
    	lockRankPollDesc:        "pollDesc",
    	lockRankWakeableSleep:   "wakeableSleep",
    	lockRankHchan:           "hchan",
    	lockRankAllocmR:         "allocmR",
    	lockRankExecR:           "execR",
    	lockRankSched:           "sched",
    	lockRankAllg:            "allg",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  6. migrator/migrator.go

    		}
    	}
    
    	return
    }
    
    func (m Migrator) GetQueryAndExecTx() (queryTx, execTx *gorm.DB) {
    	queryTx = m.DB.Session(&gorm.Session{})
    	execTx = queryTx
    	if m.DB.DryRun {
    		queryTx.DryRun = false
    		execTx = m.DB.Session(&gorm.Session{Logger: &printSQLLogger{Interface: m.DB.Logger}})
    	}
    	return queryTx, execTx
    }
    
    // AutoMigrate auto migrate values
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Apr 26 07:15:49 UTC 2024
    - 29K bytes
    - Viewed (0)
  7. cmd/kube-proxy/app/server_linux.go

    // that family.
    func getIPTables(primaryFamily v1.IPFamily) ([2]utiliptables.Interface, utiliptables.Interface) {
    	execer := exec.New()
    
    	// Create iptables handlers for both families. Always ordered as IPv4, IPv6
    	ipt := [2]utiliptables.Interface{
    		utiliptables.New(execer, utiliptables.ProtocolIPv4),
    		utiliptables.New(execer, utiliptables.ProtocolIPv6),
    	}
    
    	var iptInterface utiliptables.Interface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/preflight/checks.go

    	}
    
    	// non-windows checks
    	checks = addSwapCheck(checks)
    	checks = addExecChecks(checks, execer)
    	checks = append(checks,
    		SystemVerificationCheck{},
    		HostnameCheck{nodeName: nodeReg.Name},
    		KubeletVersionCheck{KubernetesVersion: k8sVersion, exec: execer},
    		ServiceCheck{Service: "kubelet", CheckIfActive: false},
    		PortOpenCheck{port: kubeadmconstants.KubeletPort})
    	return checks
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:20:55 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  9. src/syscall/syscall_darwin.go

    //sys   mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, err error)
    //sys   munmap(addr uintptr, length uintptr) (err error)
    //sysnb fork() (pid int, err error)
    //sysnb execve(path *byte, argv **byte, envp **byte) (err error)
    //sysnb exit(res int) (err error)
    //sys	sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen uintptr) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/ProcessInstrumentationInStaticGroovyIntegrationTest.groovy

                def e = new RuntimeExec()
                e.exec("some string")
                e.exec("some string", ["array"] as String[])
                e.exec("some string", ["array"] as String[], file("test"))
                e.exec(["some", "string"] as String[])
                e.exec(["some", "string"] as String[], ["array"] as String[])
                e.exec(["some", "string"] as String[], ["array"] as String[], file("test"))
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top