Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,428 for execR (0.06 sec)

  1. src/net/interface_bsd_test.go

    package net
    
    import (
    	"errors"
    	"fmt"
    	"os/exec"
    	"runtime"
    )
    
    func (ti *testInterface) setBroadcast(vid int) error {
    	if runtime.GOOS == "openbsd" {
    		ti.name = fmt.Sprintf("vether%d", vid)
    	} else {
    		ti.name = fmt.Sprintf("vlan%d", vid)
    	}
    	xname, err := exec.LookPath("ifconfig")
    	if err != nil {
    		return err
    	}
    	ti.setupCmds = append(ti.setupCmds, &exec.Cmd{
    		Path: xname,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/RuntimeExec3InstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

                // Runtime.exec() overloads
                [fromString(), "Runtime.getRuntime().exec(command, new String[] {'FOOBAR=foobar'}, file('$pwd'))", pwd, "foobar"],
                [fromGroovyString(), "Runtime.getRuntime().exec(command, new String[] {'FOOBAR=foobar'}, file('$pwd'))", pwd, "foobar"],
                [fromStringArray(), "Runtime.getRuntime().exec(command, new String[] {'FOOBAR=foobar'}, file('$pwd'))", pwd, "foobar"],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/exec/LogAndCheckHealthTest.groovy

            when:
            tracker.execute(exec)
    
            then:
            1 * exec.isSingleUseDaemon() >> true
            1 * exec.proceed()
            0 * _
        }
    
        def "executes health check on first build"() {
            given:
            runningStats.getBuildCount() >> 0
    
            when:
            tracker.execute(exec)
    
            then:
            1 * healthCheck.executeHealthCheck()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonServices.java

    import org.gradle.launcher.daemon.server.exec.CleanUpVirtualFileSystemAfterBuild;
    import org.gradle.launcher.daemon.server.exec.DaemonCommandExecuter;
    import org.gradle.launcher.daemon.server.exec.EstablishBuildEnvironment;
    import org.gradle.launcher.daemon.server.exec.ExecuteBuild;
    import org.gradle.launcher.daemon.server.exec.ForwardClientInput;
    import org.gradle.launcher.daemon.server.exec.HandleCancel;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInInitScriptIntegrationTest.groovy

            where:
            snippetsFactory             | file
            exec().groovy               | "exec.init.gradle"
            javaexec().groovy           | "exec.init.gradle"
            processBuilder().groovy     | "exec.init.gradle"
            stringArrayExecute().groovy | "exec.init.gradle"
            runtimeExec().groovy        | "exec.init.gradle"
            exec().kotlin               | "exec.init.gradle.kts"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheStandardStreamsIntegrationTest.groovy

            where:
            task       | taskProperty     | sourceStream | targetStream
            "exec"     | "standardOutput" | "System.out" | "System.out"
            "exec"     | "standardOutput" | "System.out" | "System.err"
            "exec"     | "errorOutput"    | "System.err" | "System.out"
            "exec"     | "errorOutput"    | "System.err" | "System.err"
            "javaExec" | "standardOutput" | "System.out" | "System.out"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/preflight/checks_linux.go

    		InPathCheck{executable: "crictl", mandatory: false, exec: execer},
    		InPathCheck{executable: "conntrack", mandatory: true, exec: execer},
    		InPathCheck{executable: "ip", mandatory: true, exec: execer},
    		InPathCheck{executable: "iptables", mandatory: true, exec: execer},
    		InPathCheck{executable: "mount", mandatory: true, exec: execer},
    		InPathCheck{executable: "nsenter", mandatory: true, exec: execer},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/build_cd_gopath_different.txt

    exec $WORK/tmp/a.exe
    stderr 'linkXworked'
    rm $WORK/tmp/a.exe
    
    # Apply identity function to GOPATH
    exec ./run_go$GOEXE $GOPATH/src/my.pkg/main $GOPATH UPPER build -o $WORK/tmp/a.exe -ldflags -X=my.pkg.Text=linkXworked
    exec $WORK/tmp/a.exe
    stderr 'linkXworked'
    rm $WORK/tmp/a.exe
    
    # Apply identity function to GOPATH
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/dist_list_missing.txt

    env GOROOT=$TESTGO_GOROOT
    go build -o dist.exe cmd/dist
    
    exec ./dist.exe list
    cmp stdout tool.txt
    
    exec ./dist.exe list -v
    cmp stdout tool-v.txt
    
    exec ./dist.exe list -broken
    cmp stdout tool-broken.txt
    
    exec ./dist.exe list -json
    cmp stdout tool-json.txt
    
    exec ./dist.exe list -json -broken
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 22 19:52:13 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/RuntimeExec1InstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

                [fromString(), "Runtime.getRuntime().exec(command)", "", ""],
                [fromGroovyString(), "Runtime.getRuntime().exec(command)", "", ""],
                [fromStringArray(), "Runtime.getRuntime().exec(command)", "", ""],
                // Spread calls
                [fromString(), "Runtime.getRuntime().exec(*[command])", "", ""],
                // type-wrapped arguments
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top