Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 426 for COMMENT (0.09 sec)

  1. 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)
  2. src/cmd/go/internal/imports/build.go

    // ShouldBuild reports whether it is okay to use this file,
    // The rule is that in the file's leading run of // comments
    // and blank lines, which must be followed by a blank line
    // (to avoid including a Go package clause doc comment),
    // lines beginning with '// +build' are taken as build directives.
    //
    // The file is accepted only if each such line lists something
    // matching the file. For example:
    //
    //	// +build windows linux
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/vet/vet_test.go

    // For each line of the source files which should generate an error,
    // there should be a comment of the form // ERROR "regexp".
    // If outStr has an error for a line which has no such comment,
    // this function will report an error.
    // Likewise if outStr does not have an error for a line which has a comment,
    // or if the error message does not match the <regexp>.
    // The <regexp> syntax is Perl but it's best to stick to egrep.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 01:02:40 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. src/encoding/xml/xml_test.go

    	}
    }
    
    func TestCopyTokenComment(t *testing.T) {
    	data := []byte("<!-- some comment -->")
    	var tok1 Token = Comment(data)
    	tok2 := CopyToken(tok1)
    	if !reflect.DeepEqual(tok1, tok2) {
    		t.Error("CopyToken(Comment) != Comment")
    	}
    	data[1] = 'o'
    	if reflect.DeepEqual(tok1, tok2) {
    		t.Error("CopyToken(Comment) uses same buffer.")
    	}
    }
    
    func TestSyntaxErrorLineNum(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  10. src/text/template/multi_test.go

    		want string
    	}{
    		{[]string{"x", "y"}, "", "y"},
    		{[]string{""}, "once", ""},
    		{[]string{"", ""}, "twice", ""},
    		{[]string{"{{.}}", "{{.}}"}, "twice", "twice"},
    		{[]string{"{{/* a comment */}}", "{{/* a comment */}}"}, "comment", ""},
    		{[]string{"{{.}}", ""}, "twice", ""},
    	}
    
    	for i, c := range cases {
    		root := New("root")
    
    		var (
    			m   *Template
    			err error
    		)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 08 10:48:29 UTC 2022
    - 11.7K bytes
    - Viewed (0)
Back to top