Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 131 for Executable (0.2 sec)

  1. README.md

    - For installations using Systemd MinIO service, upgrade via RPM/DEB packages **parallelly** on all servers or replace the binary lets say `/opt/bin/minio` on all nodes, apply executable permissions `chmod +x /opt/bin/minio` and process to perform `mc admin service restart alias/`.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 00:22:36 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/platform/internal/ReadelfBinaryInfoTest.groovy

     Version:                           1 (current)
     OS/ABI:                            UNIX - System V
     ABI Version:                       0
     Type:                              EXEC (Executable file)
     Machine:                           Intel 80386
     Version:                           0x1
     Entry point address:               0x8048310
     Start of program headers:          52 (bytes into file)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:09:11 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_to_mhlo_int_test.cc

          buffer_ptrs.push_back(buffer.get());
          buffers.push_back(std::move(buffer));
        }
        // Run the executable.
        TF_ASSIGN_OR_RETURN(auto result,
                            executable->Execute({buffer_ptrs}, /*options=*/{}));
        CHECK(result.size() == 1 && result[0].size() == 1);
        return result[0][0]->ToLiteralSync();
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 03 01:03:21 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  4. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyCompile.java

                GFileUtils.mkdirs(dir);
                spec.getGroovyCompileOptions().setStubDir(dir);
            }
    
            String executable = getJavaLauncher().get().getExecutablePath().getAsFile().getAbsolutePath();
            spec.getCompileOptions().getForkOptions().setExecutable(executable);
    
            return spec;
        }
    
        private void configureCompatibilityOptions(DefaultGroovyJavaJointCompileSpec spec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleExecuter.java

         */
        GradleExecuter withJavaHome(File userHomeDir);
    
        /**
         * Sets the executable to use. Set to null to use the real default executable (if any) rather than the default used for testing.
         */
        GradleExecuter usingExecutable(String script);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/action.go

    	// Generated files, directories.
    	Objdir   string         // directory for intermediate objects
    	Target   string         // goal of the action: the created package or executable
    	built    string         // the actual created package or executable
    	actionID cache.ActionID // cache ID of action input
    	buildID  string         // build ID of action output
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  7. src/net/http/cgi/host.go

    	case "windows":
    		return []string{"SystemRoot", "COMSPEC", "PATHEXT", "WINDIR"}
    	}
    	return nil
    }()
    
    // Handler runs an executable in a subprocess with a CGI environment.
    type Handler struct {
    	Path string // path to the CGI executable
    	Root string // root URI prefix of handler or empty for "/"
    
    	// Dir specifies the CGI executable's working directory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/cfg/cfg.go

    // x/tools/cmd/godoc/goroot.go.
    // Try to keep them in sync for now.
    
    // findGOROOT returns the GOROOT value, using either an explicitly
    // provided environment variable, a GOROOT that contains the current
    // os.Executable value, or else the GOROOT that the binary was built
    // with from runtime.GOROOT().
    //
    // There is a copy of this code in x/tools/cmd/godoc/goroot.go.
    func findGOROOT(env string) string {
    	if env == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr1_gradle_init.adoc

    Inside the root project directory are one or more subprojects, build scripts, and the Gradle wrapper.
    
    While the Gradle Wrapper is local to the root project, the Gradle executable is found in the `GRADLE_USER_HOME`.
    
    The `GRADLE_USER_HOME`, which defaults to `USER_HOME/.gradle`, is also where Gradle stores its global configuration properties, initialization scripts, caches, log files and more.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 22:50:45 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/debug_test.go

    	line             string
    	file             string
    	function         string
    }
    
    func newDelve(t testing.TB, tag, executable string, args ...string) dbgr {
    	cmd := testenv.Command(t, "dlv", "exec", executable)
    	cmd.Env = replaceEnv(cmd.Env, "TERM", "dumb")
    	if len(args) > 0 {
    		cmd.Args = append(cmd.Args, "--")
    		cmd.Args = append(cmd.Args, args...)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
Back to top