Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for Executable (0.22 sec)

  1. src/debug/elf/elf.go

    	// Indicates that the object contains individual symbols that should interpose
    	// before all symbols except the primary load object, which is typically the
    	// executable.
    	DF_1_SYMINTPOSE DynFlag1 = 0x00800000
    	// Indicates that the executable requires global auditing.
    	DF_1_GLOBAUDIT DynFlag1 = 0x01000000
    	// Indicates that the object defines, or makes reference to singleton symbols.
    	DF_1_SINGLETON DynFlag1 = 0x02000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    // executable to an output file named after the last non-major-version
    // component of the package import path. The '.exe' suffix is added
    // when writing a Windows executable.
    // So 'go build example/sam' writes 'sam' or 'sam.exe'.
    // 'go build example.com/foo/v2' writes 'foo' or 'foo.exe', not 'v2.exe'.
    //
    // When compiling a package from a list of .go files, the executable
    // is named after the first source file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/data.go

    		}
    	}
    
    	Segtext.Length = va - uint64(*FlagTextAddr)
    
    	if len(Segrodata.Sections) > 0 {
    		// align to page boundary so as not to mix
    		// rodata and executable text.
    		//
    		// Note: gold or GNU ld will reduce the size of the executable
    		// file by arranging for the relro segment to end at a page
    		// boundary, and overlap the end of the text segment with the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    	a.built = a.Target
    	return BuildToolchain.ldShared(b, a, a.Deps[0].Deps, a.Target, importcfg, a.Deps)
    }
    
    // BuildInstallFunc is the action for installing a single package or executable.
    func BuildInstallFunc(b *Builder, ctx context.Context, a *Action) (err error) {
    	defer func() {
    		if err != nil {
    			// a.Package == nil is possible for the go install -buildmode=shared
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/load/pkg.go

    	"runtime/race": true,
    	"runtime/msan": true,
    	"runtime/asan": true,
    }
    
    var foldPath = make(map[string]string)
    
    // exeFromImportPath returns an executable name
    // for a package using the import path.
    //
    // The executable name is the last element of the import path.
    // In module-aware mode, an additional rule is used on import paths
    // consisting of two or more path elements. If the last element is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.jar

    implements Cloneable { protected static final String OS_NAME = os.name; protected static final String WINDOWS = Windows; protected java.util.Vector arguments; protected java.util.Map envVars; private long pid; private shell.Shell shell; protected String executable; private java.io.File workingDir; public void Commandline(String, shell.Shell); public void Commandline(shell.Shell); public void Commandline(String); public void Commandline(); public long getPid(); public void setPid(long); private void setDefaultShell();...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 200.2K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.jar

    implements Cloneable { protected static final String OS_NAME = os.name; protected static final String WINDOWS = Windows; protected java.util.Vector arguments; protected java.util.Map envVars; private long pid; private shell.Shell shell; protected String executable; private java.io.File workingDir; public void Commandline(String, shell.Shell); public void Commandline(shell.Shell); public void Commandline(String); public void Commandline(); public long getPid(); public void setPid(long); private void setDefaultShell();...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 200.2K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_pods.go

    		}
    		return 0, 0, err
    	}
    
    	execName := "getsubids"
    	cmd, err := exec.LookPath(execName)
    	if err != nil {
    		if os.IsNotExist(err) {
    			klog.V(2).InfoS("Could not find executable, default mappings will be used for the user namespaces", "executable", execName, "err", err)
    			return defaultFirstID, defaultLen, nil
    		}
    		return 0, 0, err
    	}
    	outUids, err := exec.Command(cmd, kubeletUser).Output()
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    org.codehaus.plexus.util.cli; public synchronized class Commandline implements Cloneable { protected static final String OS_NAME = os.name; protected static final String WINDOWS = Windows; private String shell; private java.util.Vector shellArgs; protected String executable; protected java.util.Vector arguments; protected java.util.Vector envVars; private boolean newEnvironment; private java.io.File workingDir; public void Commandline(String); public void Commandline(); private void setDefaultShell(); public Commandline$Argument...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 164.6K bytes
    - Viewed (0)
  10. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    org.codehaus.plexus.util.cli; public synchronized class Commandline implements Cloneable { protected static final String OS_NAME = os.name; protected static final String WINDOWS = Windows; private String shell; private java.util.Vector shellArgs; protected String executable; protected java.util.Vector arguments; protected java.util.Vector envVars; private boolean newEnvironment; private java.io.File workingDir; public void Commandline(String); public void Commandline(); private void setDefaultShell(); public Commandline$Argument...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
Back to top