Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,934 for MFiles (0.17 sec)

  1. src/cmd/go/internal/work/gccgo.go

    		}
    	}
    	return nil
    }
    
    func (tools gccgoToolchain) asm(b *Builder, a *Action, sfiles []string) ([]string, error) {
    	p := a.Package
    	var ofiles []string
    	for _, sfile := range sfiles {
    		base := filepath.Base(sfile)
    		ofile := a.Objdir + base[:len(base)-len(".s")] + ".o"
    		ofiles = append(ofiles, ofile)
    		sfile, _ = fsys.OverlayPath(mkAbs(p.Dir, sfile))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/gc.go

    	}
    
    	return args
    }
    
    func (gcToolchain) asm(b *Builder, a *Action, sfiles []string) ([]string, error) {
    	p := a.Package
    	args := asmArgs(a, p)
    
    	var ofiles []string
    	for _, sfile := range sfiles {
    		overlayPath, _ := fsys.OverlayPath(mkAbs(p.Dir, sfile))
    		ofile := a.Objdir + sfile[:len(sfile)-len(".s")] + ".o"
    		ofiles = append(ofiles, ofile)
    		args1 := append(args, "-o", ofile, overlayPath)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    	p.IgnoredOtherFiles = pp.IgnoredOtherFiles
    	p.CFiles = pp.CFiles
    	p.CXXFiles = pp.CXXFiles
    	p.MFiles = pp.MFiles
    	p.HFiles = pp.HFiles
    	p.FFiles = pp.FFiles
    	p.SFiles = pp.SFiles
    	p.SwigFiles = pp.SwigFiles
    	p.SwigCXXFiles = pp.SwigCXXFiles
    	p.SysoFiles = pp.SysoFiles
    	if cfg.BuildMSan {
    		// There's no way for .syso files to be built both with and without
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    		gccfiles = append(gccfiles, cfiles...)
    		cfiles = nil
    		if p.Standard && p.ImportPath == "runtime/cgo" {
    			filter := func(files, nongcc, gcc []string) ([]string, []string) {
    				for _, f := range files {
    					if strings.HasPrefix(f, "gcc_") {
    						gcc = append(gcc, f)
    					} else {
    						nongcc = append(nongcc, f)
    					}
    				}
    				return nongcc, gcc
    			}
    			sfiles, gccfiles = filter(sfiles, sfiles[:0], gccfiles)
    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/modindex/build.go

    func (e *NoGoError) Error() string {
    	return "no buildable Go source files in " + e.Dir
    }
    
    // MultiplePackageError describes a directory containing
    // multiple buildable Go source files for multiple packages.
    type MultiplePackageError struct {
    	Dir      string   // directory containing files
    	Packages []string // package names found
    	Files    []string // corresponding files: Files[i] declares package Packages[i]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 17:39:23 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  6. src/go/build/build.go

    	CFiles            []string // .c source files
    	CXXFiles          []string // .cc, .cpp and .cxx source files
    	MFiles            []string // .m (Objective-C) source files
    	HFiles            []string // .h, .hh, .hpp and .hxx source files
    	FFiles            []string // .f, .F, .for and .f90 Fortran source files
    	SFiles            []string // .s source files
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/list/list.go

            CFiles            []string   // .c source files
            CXXFiles          []string   // .cc, .cxx and .cpp source files
            MFiles            []string   // .m source files
            HFiles            []string   // .h, .hh, .hpp and .hxx source files
            FFiles            []string   // .f, .F, .for and .f90 Fortran source files
            SFiles            []string   // .s source files
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/io/Files.java

     *
     * <p>{@link java.nio.file.Path} users will find similar utilities in {@link MoreFiles} and the
     * JDK's {@link java.nio.file.Files} class.
     *
     * @author Chris Nokleberg
     * @author Colin Decker
     * @since 1.0
     */
    @J2ktIncompatible
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    public final class Files {
    
      private Files() {}
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/io/Files.java

     *
     * <p>{@link java.nio.file.Path} users will find similar utilities in {@link MoreFiles} and the
     * JDK's {@link java.nio.file.Files} class.
     *
     * @author Chris Nokleberg
     * @author Colin Decker
     * @since 1.0
     */
    @J2ktIncompatible
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    public final class Files {
    
      private Files() {}
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  10. pkg/kubelet/kubeletconfig/util/files/files.go

    		return err
    	} // Assert: dir does not exist
    
    	// create the dir
    	return fs.MkdirAll(path, defaultPerm)
    }
    
    // WriteTempDir creates a temporary dir at `path`, writes `files` into it, and fsyncs all the files
    // The keys of `files` represent file names. These names must not:
    // - be empty
    // - be a path that contains more than the base name of a file (e.g. foo/bar is invalid, as is /bar)
    // - match `.` or `..` exactly
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 13 01:02:46 UTC 2023
    - 7.5K bytes
    - Viewed (0)
Back to top