Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Metadata (0.09 sec)

  1. src/cmd/go/internal/modcmd/vendor.go

    		}
    		if modPath == pkg {
    			break
    		}
    		pkg = path.Dir(pkg)
    		dst = filepath.Dir(dst)
    		src = filepath.Dir(src)
    	}
    }
    
    // metaPrefixes is the list of metadata file prefixes.
    // Vendoring copies metadata files from parents of copied directories.
    // Note that this list could be arbitrarily extended, and it is longer
    // in other tools (such as godep or dep). By using this limited set of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 14:19:59 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  2. src/cmd/distpack/pack.go

    				return false
    			}
    			// Inside pkg/tool/$GOOS_$GOARCH, discard helper tools.
    			switch strings.TrimSuffix(path.Base(name), ".exe") {
    			case "api", "dist", "distpack", "metadata":
    				return false
    			}
    		}
    		return true
    	})
    
    	// Add go and gofmt to bin, using cross-compiled binaries
    	// if this is a cross-compiled distribution.
    	binExes := []string{
    		"go",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/coderepo.go

    		return nil, fmt.Errorf("version %s is not canonical", version)
    	}
    
    	if module.IsPseudoVersion(version) {
    		// findDir ignores the metadata encoded in a pseudo-version,
    		// only using the revision at the end.
    		// Invoke Stat to verify the metadata explicitly so we don't return
    		// a bogus file for an invalid version.
    		_, err := r.Stat(ctx, version)
    		if err != nil {
    			return nil, err
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ir/func.go

    	WrappedFunc *Func
    
    	// WasmImport is used by the //go:wasmimport directive to store info about
    	// a WebAssembly function import.
    	WasmImport *WasmImport
    }
    
    // WasmImport stores metadata associated with the //go:wasmimport pragma.
    type WasmImport struct {
    	Module string
    	Name   string
    }
    
    // NewFunc returns a new Func with the given name and type.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/load/test.go

    		allTestImports = append(allTestImports, imports...)
    		allTestImports = append(allTestImports, ximports...)
    		setToolFlags(allTestImports...)
    
    		// Do initial scan for metadata needed for writing _testmain.go
    		// Use that metadata to update the list of imports for package main.
    		// The list of imports is used by recompileForTest and by the loop
    		// afterward that gathers t.Cover information.
    		t, err := loadTestFuncs(p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/fsys/fsys.go

    			}
    			// Add a fileinfo for the overlaid file, so that it has
    			// the original file's name, but the overlaid file's metadata.
    			files[name] = fakeFile{name, fi}
    		}
    	}
    	sortedFiles := diskfis[:0]
    	for _, f := range files {
    		sortedFiles = append(sortedFiles, f)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
Back to top