Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 313 for COMMENT (0.12 sec)

  1. src/encoding/xml/read.go

    					d.saved = nil
    				}
    			}
    			break Loop
    
    		case CharData:
    			if saveData.IsValid() {
    				data = append(data, t...)
    			}
    
    		case Comment:
    			if saveComment.IsValid() {
    				comment = append(comment, t...)
    			}
    		}
    	}
    
    	if saveData.IsValid() && saveData.CanInterface() && saveData.Type().Implements(textUnmarshalerType) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  2. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/javadoc/Groovydoc.java

            this.use = use;
        }
    
        /**
         * Returns whether to include timestamp within hidden comment in generated HTML (Groovy >= 2.4.6).
         */
        @Input
        public boolean isNoTimestamp() {
            return noTimestamp;
        }
    
        /**
         * Sets whether to include timestamp within hidden comment in generated HTML (Groovy >= 2.4.6).
         */
        public void setNoTimestamp(boolean noTimestamp) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  3. src/html/template/transition.go

    		c.state = stateCSS
    	default:
    		panic(c.state.String())
    	}
    	return c, i + 2
    }
    
    // tLineCmt is the context transition function for //comment states, and the JS HTML-like comment state.
    func tLineCmt(c context, s []byte) (context, int) {
    	var lineTerminators string
    	var endState state
    	switch c.state {
    	case stateJSLineCmt, stateJSHTMLOpenCmt, stateJSHTMLCloseCmt:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. src/go/doc/reader.go

    // A note must start at the beginning of a comment with "MARKER(uid):"
    // and is followed by the note body (e.g., "// BUG(gri): fix this").
    // The note ends at the end of the comment group or at the start of
    // another note in the same comment group, whichever comes first.
    func (r *reader) readNotes(comments []*ast.CommentGroup) {
    	for _, group := range comments {
    		i := -1 // comment index of most recent note start, valid if >= 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  5. src/text/scanner/scanner.go

    	EOF = -(iota + 1)
    	Ident
    	Int
    	Float
    	Char
    	String
    	RawString
    	Comment
    
    	// internal use only
    	skipComment
    )
    
    var tokenString = map[rune]string{
    	EOF:       "EOF",
    	Ident:     "Ident",
    	Int:       "Int",
    	Float:     "Float",
    	Char:      "Char",
    	String:    "String",
    	RawString: "RawString",
    	Comment:   "Comment",
    }
    
    // TokenString returns a printable string for a token or Unicode character.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/bsentity/BsDataConfig.java

    import java.util.HashMap;
    import java.util.Map;
    
    import org.codelibs.fess.es.config.allcommon.EsAbstractEntity;
    import org.codelibs.fess.es.config.bsentity.dbmeta.DataConfigDbm;
    
    /**
     * ${table.comment}
     * @author ESFlute (using FreeGen)
     */
    public class BsDataConfig extends EsAbstractEntity {
    
        // ===================================================================================
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlWriter.java

            } finally {
                out.close();
            }
        }
    
        private void write(DependencyVerifier verifier) throws IOException {
            verifier.getTopLevelComments().forEach(comment -> {
                try {
                    writer.comment(comment);
                } catch (IOException e) {
                    throw new UncheckedIOException(e);
                }
            });
            writer.startElement(VERIFICATION_METADATA);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 13:40:00 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  8. docs/logging/README.md

    client_tls_cert  (path)      path to client certificate for mTLS auth
    client_tls_key   (path)      path to client key for mTLS auth
    version          (string)    specify the version of the Kafka cluster
    comment          (sentence)  optionally add a comment to this setting
    ```
    
    Configure MinIO to send audit logs to locally running Kafka brokers
    
    ```
    mc admin config set myminio/ audit_kafka:target1 brokers=localhost:29092 topic=auditlog
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 17:15:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. hack/update-codegen.sh

    # Any package that wants conversion functions generated into it must
    # include one or more comment-tags in its `doc.go` file, of the form:
    #     // +k8s:conversion-gen=<INTERNAL_TYPES_DIR>
    #
    # The INTERNAL_TYPES_DIR is a project-local path to another directory
    # which should be considered when evaluating peer types for
    # conversions.  An optional additional comment of the form
    #     // +k8s:conversion-gen-external-types=<EXTERNAL_TYPES_DIR>
    #
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  10. src/regexp/regexp.go

    // FindSubmatch returns a slice of slices holding the text of the leftmost
    // match of the regular expression in b and the matches, if any, of its
    // subexpressions, as defined by the 'Submatch' descriptions in the package
    // comment.
    // A return value of nil indicates no match.
    func (re *Regexp) FindSubmatch(b []byte) [][]byte {
    	var dstCap [4]int
    	a := re.doExecute(nil, b, "", 0, re.prog.NumCap, dstCap[:0])
    	if a == nil {
    		return nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 38.5K bytes
    - Viewed (0)
Back to top