Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for EmbedPatterns (0.41 sec)

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

    		}
    	}
    	var embedPatterns []string
    	if gover.Compare(modload.MainModules.GoVersion(), "1.22") >= 0 {
    		embedPatterns = bp.EmbedPatterns
    	} else {
    		// Maintain the behavior of https://github.com/golang/go/issues/63473
    		// so that we continue to agree with older versions of the go command
    		// about the contents of vendor directories in existing modules
    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/embed/embed.go

    //
    //	template.ParseFS(content, "*.tmpl")
    //
    // # Tools
    //
    // To support tools that analyze Go packages, the patterns found in //go:embed lines
    // are available in “go list” output. See the EmbedPatterns, TestEmbedPatterns,
    // and XTestEmbedPatterns fields in the “go help list” output.
    package embed
    
    import (
    	"errors"
    	"internal/bytealg"
    	"internal/stringslite"
    	"io"
    	"io/fs"
    	"time"
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:42:51 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/list/list.go

            XTestGoFiles      []string   // _test.go files outside package
    
            // Embedded files
            EmbedPatterns      []string // //go:embed patterns
            EmbedFiles         []string // files matched by EmbedPatterns
            TestEmbedPatterns  []string // //go:embed patterns in TestGoFiles
            TestEmbedFiles     []string // files matched by TestEmbedPatterns
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modindex/read.go

    				embedMap[e.pattern] = append(embedMap[e.pattern], e.position)
    			}
    		}
    		if directives != nil {
    			*directives = append(*directives, tf.directives()...)
    		}
    	}
    
    	p.EmbedPatterns, p.EmbedPatternPos = cleanDecls(embedPos)
    	p.TestEmbedPatterns, p.TestEmbedPatternPos = cleanDecls(testEmbedPos)
    	p.XTestEmbedPatterns, p.XTestEmbedPatternPos = cleanDecls(xTestEmbedPos)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
Back to top