Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 211 for Commands (0.17 sec)

  1. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

    import static java.util.Collections.emptyList;
    
    /**
     * <p>{@code StartParameter} defines the configuration used by a Gradle instance to execute a build. The properties of {@code StartParameter} generally correspond to the command-line options of
     * Gradle.
     *
     * <p>You can obtain an instance of a {@code StartParameter} by either creating a new one, or duplicating an existing one using {@link #newInstance} or {@link #newBuild}.</p>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  2. src/crypto/tls/bogo_shim_test.go

    		t.Fatal(err)
    	}
    
    	var bogoDir string
    	if *bogoLocalDir != "" {
    		bogoDir = *bogoLocalDir
    	} else {
    		const boringsslModVer = "v0.0.0-20240523173554-273a920f84e8"
    		output, err := exec.Command("go", "mod", "download", "-json", "boringssl.googlesource.com/boringssl.git@"+boringsslModVer).CombinedOutput()
    		if err != nil {
    			t.Fatalf("failed to download boringssl: %s", err)
    		}
    		var j struct {
    			Dir string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:25:39 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  3. pkg/volume/util/util.go

    	// If runtime os is windows, execute Write-VolumeCache powershell command on the disk
    	if runtime.GOOS == "windows" {
    		cmdString := "Get-Volume -FilePath $env:mountpath | Write-Volumecache"
    		cmd := exec.Command("powershell", "/c", cmdString)
    		env := append(os.Environ(), fmt.Sprintf("mountpath=%s", deviceMountPath))
    		cmd.SetEnv(env)
    		klog.V(8).Infof("Executing command: %q", cmdString)
    		output, err := cmd.CombinedOutput()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/driver.go

    func generateRawReport(p *profile.Profile, cmd []string, cfg config, o *plugin.Options) (*command, *report.Report, error) {
    	// Identify units of numeric tags in profile.
    	numLabelUnits := identifyNumLabelUnits(p, o.UI)
    
    	// Get report output format
    	c := pprofCommands[cmd[0]]
    	if c == nil {
    		panic("unexpected nil command")
    	}
    
    	cfg = applyCommandOverrides(cmd[0], c.format, cfg)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. src/cmd/distpack/pack.go

    //     (as used by GOTOOLCHAIN support in the go command).
    //
    // Distpack is typically invoked by the -distpack flag to make.bash.
    // A cross-compiled distribution for goos/goarch can be built using:
    //
    //	GOOS=goos GOARCH=goarch ./make.bash -distpack
    //
    // To test that the module downloads are usable with the go command:
    //
    //	./make.bash -distpack
    //	mkdir -p /tmp/goproxy/golang.org/toolchain/
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. README.md

    INFO:     Waiting for application startup.
    INFO:     Application startup complete.
    ```
    
    </div>
    
    <details markdown="1">
    <summary>About the command <code>fastapi dev main.py</code>...</summary>
    
    The command `fastapi dev` reads your `main.py` file, detects the **FastAPI** app in it, and starts a server using <a href="https://www.uvicorn.org" class="external-link" target="_blank">Uvicorn</a>.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 30 13:28:20 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  7. src/syscall/mksyscall.pl

    	# Try in vain to keep people from editing this file.
    	# The theory is that they jump into the middle of the file
    	# without reading the header.
    	$text .= "// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\n";
    
    	if ((($darwin || ($openbsd && $libc)) && $func =~ /^ptrace(Ptr)?$/)) {
    		# The ptrace function is called from forkAndExecInChild where stack
    		# growth is forbidden.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:15:02 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. docs/site-replication/run-multi-site-ldap.sh

    ./mc admin policy remove minio3 rw
    
    sleep 10
    ./mc admin policy info minio1 rw
    if [ $? -eq 0 ]; then
    	echo "expecting the command to fail, exiting.."
    	exit_1
    fi
    
    ./mc admin policy info minio2 rw
    if [ $? -eq 0 ]; then
    	echo "expecting the command to fail, exiting.."
    	exit_1
    fi
    
    ./mc admin user info minio1 "uid=dillon,ou=people,ou=swengg,dc=min,dc=io"
    if [ $? -ne 0 ]; then
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 10.1K bytes
    - Viewed (2)
  9. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    		p, src, err = fetch(source, duration, timeout, ui, tr)
    		if err != nil {
    			return
    		}
    	}
    
    	if err = p.CheckValid(); err != nil {
    		return
    	}
    
    	// Update the binary locations from command line and paths.
    	locateBinaries(p, s, obj, ui)
    
    	// Collect the source URL for all mappings.
    	if src != "" {
    		msrc = collectMappingSources(p, src)
    		remote = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClient.java

                return Optional.of(new File(javaTmpDir, crashLogFileName));
            }
            return Optional.empty();
        }
    
        private IllegalStateException invalidResponse(Object response, Build command, DaemonDiagnostics diagnostics) {
            String diagnosticsMessage = diagnostics == null ? "No diagnostics available." : diagnostics.describe();
            return new IllegalStateException(String.format(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 16.5K bytes
    - Viewed (0)
Back to top