Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 6,025 for blink (0.25 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/buildtag/buildtag_old.go

    	// Determine cutpoint where +build comments are no longer valid.
    	// They are valid in leading // comments in the file followed by
    	// a blank line.
    	//
    	// This must be done as a separate pass because of the
    	// requirement that the comment be followed by a blank line.
    	var cutoff int
    	for i, line := range lines {
    		line = bytes.TrimSpace(line)
    		if !bytes.HasPrefix(line, slashSlash) {
    			if len(line) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. src/go/doc/comment/parse.go

    func (Italic) text() {}
    
    // A Link is a link to a specific URL.
    type Link struct {
    	Auto bool   // is this an automatic (implicit) link of a literal URL?
    	Text []Text // text of link
    	URL  string // target URL of link
    }
    
    func (*Link) text() {}
    
    // A DocLink is a link to documentation for a Go package or symbol.
    type DocLink struct {
    	Text []Text // text of link
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 33.5K bytes
    - Viewed (0)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ElementWarningsRenderer.java

                para.appendChild(document.createTextNode(String.format("Note: This %s is ", type)));
                Element link = document.createElement("ulink");
                para.appendChild(link);
                link.setAttribute("url", "../userguide/feature_lifecycle.html");
                link.appendChild(document.createTextNode("deprecated"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 2.8K bytes
    - Viewed (0)
  4. test/fixedbugs/issue9521.go

    // errorcheck
    
    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that an incorrect use of the blank identifier is caught.
    // Does not compile.
    
    package main
    
    func f() (_, _ []int)         { return }
    func g() (x []int, y float64) { return }
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 12 23:07:01 UTC 2021
    - 597 bytes
    - Viewed (0)
  5. src/internal/types/testdata/examples/methods.go

    func (t T2[X, Y, Z]) m3() (X, Y, Z) { return t.a, t.b, t.c }
    
    // Type parameters may be left blank if they are not needed:
    func (t T2[A, _, C]) m4() (A, C) { return t.a, t.c }
    func (t T2[_, _, X]) m5() X { return t.c }
    func (t T2[_, _, _]) m6() {}
    
    // As usual, blank names may be used for any object which we don't care about
    // using later. For instance, we may write an unnamed method with a receiver
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/java/archives/internal/DefaultManifest.java

         * without prior blank lines, Java Manifest class doesn't. Ant Manifest class supports manifest without last line blank, Java Manifest class doesn't. Therefore we need to insert blank lines before
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/BuildScriptBuilderGroovyTest.groovy

     */
    """)
        }
    
        def "no spaces at the end of blank comment lines"() {
            when:
            builder.fileComment("\nnot-a-blank\n\nnot-a-blank")
            builder.create(target).generate()
    
            then:
            assertOutputFile("""$COMMON_START
     *
     * not-a-blank
     *
     * not-a-blank
     */
    """)
        }
    
        def "can add groovy build script comment"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  8. test/fixedbugs/issue5607.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 5607: generation of init() function incorrectly
    // uses initializers of blank variables inside closures.
    
    package main
    
    var Test = func() {
    	var mymap = map[string]string{"a": "b"}
    
    	var innerTest = func() {
    		// Used to crash trying to compile this line as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jun 02 21:54:34 UTC 2013
    - 777 bytes
    - Viewed (0)
  9. pkg/volume/util/fs/fs.go

    		return usage, nil
    	}
    
    	topLevelStat := &unix.Stat_t{}
    	err := unix.Stat(path, topLevelStat)
    	if err != nil {
    		return usage, err
    	}
    
    	// dedupedInode stores inodes that could be duplicates (nlink > 1)
    	dedupedInodes := make(map[uint64]struct{})
    
    	err = filepath.Walk(path, func(path string, info os.FileInfo, err error) error {
    		// ignore files that have been deleted after directory was read
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 20 02:56:02 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  10. build-logic/documentation/src/main/groovy/gradlebuild/docs/UserGuideTransformTask.groovy

                String style = element.'@style' ?: linkMetaData.style.toString().toLowerCase()
    
                Element ulinkElement = doc.createElement('ulink')
    
                String href
                if (style == 'dsldoc') {
                    href = "${dsldocUrl.get()}/${className}.html"
                } else if (style == "javadoc") {
                    def base = javadocUrl.get()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 5.6K bytes
    - Viewed (0)
Back to top