Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 699 for COMMENT (0.47 sec)

  1. internal/config/notify/help.go

    		},
    		config.HelpKV{
    			Key:         target.WebhookQueueLimit,
    			Description: queueLimitComment,
    			Optional:    true,
    			Type:        "number",
    		},
    		config.HelpKV{
    			Key:         config.Comment,
    			Description: config.DefaultComment,
    			Optional:    true,
    			Type:        "sentence",
    		},
    		config.HelpKV{
    			Key:         target.WebhookClientCert,
    			Description: "client cert for Webhook mTLS auth",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 19 04:37:54 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  2. src/go/printer/nodes.go

    	}
    	p.comments[0] = g
    	p.cindex = 0
    	// don't overwrite any pending comment in the p.comment cache
    	// (there may be a pending comment when a line comment is
    	// immediately followed by a lead comment with no other
    	// tokens between)
    	if p.commentOffset == infinity {
    		p.nextComment() // get comment ready for use
    	}
    }
    
    type exprListMode uint
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/stylesheets/custom-highlight/kotlin-hl.xml

      ~ limitations under the License.
      -->
    <highlighters>
        <highlighter type="multiline-comment">
            <start>/**</start>
            <end>*/</end>
            <style>doccomment</style>
        </highlighter>
        <highlighter type="multiline-comment">
            <start>/*</start>
            <end>*/</end>
        </highlighter>
        <highlighter type="oneline-comment">//</highlighter>
        <highlighter type="string">
            <string>"</string>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modindex/build.go

    		comment, _, ok = bytes.Cut(data[2:], starSlash)
    		if !ok {
    			// malformed comment
    			return "", 0
    		}
    		if bytes.Contains(comment, newline) {
    			return "", 0
    		}
    	}
    	comment = bytes.TrimSpace(comment)
    
    	// split comment into `import`, `"pkg"`
    	word, arg := parseWord(comment)
    	if string(word) != "import" {
    		return "", 0
    	}
    
    	line = 1 + bytes.Count(data[:cap(data)-cap(arg)], newline)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 17:39:23 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  5. src/net/mail/message_test.go

    				Name:    "Joe Q. Public",
    				Address: "******@****.***",
    			}},
    		},
    		// Comment in display name
    		{
    			`John (middle) Doe <******@****.***e>`,
    			[]*Address{{
    				Name:    "John Doe",
    				Address: "******@****.***e",
    			}},
    		},
    		// Display name is quoted string, so comment is not a comment
    		{
    			`"John (middle) Doe" <******@****.***e>`,
    			[]*Address{{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/readme-templates/library-api-docs.adoc.template

    == Adding API documentation
    
    The `java-library` plugin has built-in support for Java's API documentation tool via the `javadoc` task.
    
    The code generated by the Build Init plugin already placed a comment on the `${sourceFile.raw}` file.
    Replace `/*` in the comment by `/**` so that it becomes `javadoc` markup:
    
    .src/main/${languageLC.raw}/${sourceFile.raw}
    [source,java]
    ----
    /**
     * This java source file was generated by the Gradle 'init' task.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. .github/workflows/sigbuild-docker-presubmit.yml

                type=registry,ref=gcr.io/tensorflow-sigs/build:${{ github.event.number }}-${{ matrix.python-version }}
              cache-to: type=inline
          -
            name: Add a comment with the pushed containers
            uses: mshick/add-pr-comment@a65df5f64fc741e91c59b8359a4bc56e57aaf5b1 # v2
            if: contains(github.event.pull_request.labels.*.name, 'build and push to gcr.io for staging')
            with:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 18:43:43 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. src/encoding/xml/marshal_test.go

    }
    
    type T1 struct{}
    type T2 struct{}
    
    type IndirComment struct {
    	T1      T1
    	Comment *string `xml:",comment"`
    	T2      T2
    }
    
    type DirectComment struct {
    	T1      T1
    	Comment string `xml:",comment"`
    	T2      T2
    }
    
    type IfaceComment struct {
    	T1      T1
    	Comment any `xml:",comment"`
    	T2      T2
    }
    
    type IndirChardata struct {
    	T1       T1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  9. src/go/doc/comment/print.go

    		} else {
    			out.WriteByte('_')
    		}
    	}
    	return out.String()
    }
    
    type commentPrinter struct {
    	*Printer
    }
    
    // Comment returns the standard Go formatting of the [Doc],
    // without any comment markers.
    func (p *Printer) Comment(d *Doc) []byte {
    	cp := &commentPrinter{Printer: p}
    	var out bytes.Buffer
    	for i, x := range d.Content {
    		if i > 0 && blankBefore(x) {
    			out.WriteString("\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  10. src/text/template/parse/parse_test.go

    	textFormat = "%q"
    	defer func() { textFormat = "%s" }()
    	tests := [...]parseTest{
    		{"comment", "{{/*\n\n\n*/}}", noError, "{{/*\n\n\n*/}}"},
    		{"comment trim left", "x \r\n\t{{- /* hi */}}", noError, `"x"{{/* hi */}}`},
    		{"comment trim right", "{{/* hi */ -}}\n\n\ty", noError, `{{/* hi */}}"y"`},
    		{"comment trim left and right", "x \r\n\t{{- /* */ -}}\n\n\ty", noError, `"x"{{/* */}}"y"`},
    	}
    	for _, test := range tests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top