Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 329 for COMMENT (0.26 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/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)
  3. 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)
  4. 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)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseProject.java

        }
    
        public String getComment() {
            return comment;
        }
    
        /**
         * A comment used for the eclipse project. By default it will be configured to <b>project.description</b>
         * <p>
         * For example see docs for {@link EclipseProject}
         */
        public void setComment(String comment) {
            this.comment = comment;
        }
    
    
        public Set<String> getReferencedProjects() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  6. src/html/template/js.go

    		// the error into the template, as part of a comment, we attempt to
    		// prevent the error from either terminating the comment, or the script
    		// block itself.
    		//
    		// In particular we:
    		//   * replace "*/" comment end tokens with "* /", which does not
    		//     terminate the comment
    		//   * replace "</script" with "\x3C/script", and "<!--" with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. JavadocStyleGuide.md

    Basic formatting rules:
    
    - The first line contains the begin-comment delimiter ( `/**`).
    - The first sentence is a summary.
    - Notice the inline tag `{@link URL}`, which converts to an HTML hyperlink pointing to the documentation for the URL class.
    - If you have more than one paragraph in the doc comment, separate the paragraphs with a `<p>` paragraph tag, as shown.
    - Insert a blank comment line between the description and the list of tags, as shown.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. pkg/kubelet/network/dns/dns_test.go

    		{"\t\n\t", []string{}, []string{}, []string{}, false},
    		{"#comment\n", []string{}, []string{}, []string{}, false},
    		{" #comment\n", []string{}, []string{}, []string{}, false},
    		{"#comment\n#comment", []string{}, []string{}, []string{}, false},
    		{"#comment\nnameserver", []string{}, []string{}, []string{}, true},                           // nameserver empty
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  9. src/runtime/mbarrier.go

    		// Pass nil for the type. ptr does not point to value of type typ,
    		// but rather points into one so it's not safe to apply the optimization.
    		// See the comment on this function in the reflect package and the
    		// comment on bulkBarrierPreWrite.
    		bulkBarrierPreWrite(uintptr(ptr), 0, size, nil)
    	}
    	memclrNoHeapPointers(ptr, size)
    }
    
    //go:linkname reflect_typedarrayclear reflect.typedarrayclear
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. src/regexp/example_test.go

    	// [b n n ]
    	// []
    	// [banana]
    	// [b nana]
    	// [pi a]
    	// []
    	// [pizza]
    	// [pi a]
    }
    
    func ExampleRegexp_Expand() {
    	content := []byte(`
    	# comment line
    	option1: value1
    	option2: value2
    
    	# another comment line
    	option3: value3
    `)
    
    	// Regex pattern captures "key: value" pair from the content.
    	pattern := regexp.MustCompile(`(?m)(?P<key>\w+):\s+(?P<value>\w+)$`)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:22:53 UTC 2023
    - 11.1K bytes
    - Viewed (0)
Back to top