Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 946 for COMMENT (0.1 sec)

  1. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/DependenciesBuilder.java

        void projectDependency(String configuration, @Nullable String comment, String projectPath);
    
        void platformDependency(String configuration, @Nullable String comment, BuildInitDependency... dependencies);
    
        void selfDependency(String configuration, @Nullable String comment);
    
        void dependency(String configuration, @Nullable String comment, BuildInitDependency... dependencies);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    	// excluding leading or trailing comments.
    	Span() (start, end Position)
    
    	// Comment returns the comments attached to the expression.
    	// This method would normally be named 'Comments' but that
    	// would interfere with embedding a type of the same name.
    	Comment() *Comments
    }
    
    // A Comment represents a single // comment.
    type Comment struct {
    	Start  Position
    	Token  string // without trailing newline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. src/compress/gzip/example_test.go

    	if err != nil {
    		log.Fatal(err)
    	}
    
    	fmt.Printf("Name: %s\nComment: %s\nModTime: %s\n\n", zr.Name, zr.Comment, zr.ModTime.UTC())
    
    	if _, err := io.Copy(os.Stdout, zr); err != nil {
    		log.Fatal(err)
    	}
    
    	if err := zr.Close(); err != nil {
    		log.Fatal(err)
    	}
    
    	// Output:
    	// Name: a-new-hope.txt
    	// Comment: an epic space opera by George Lucas
    	// ModTime: 1977-05-25 00:00:00 +0000 UTC
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 22 16:24:14 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/syntax/scanner_test.go

    		{"//\n//\n\t// want this one\r\n", comment{2, 1, "// want this one\r"}},
    		{"\n\n//\n", comment{2, 0, "//"}},
    		{"//", comment{0, 0, "//"}},
    
    		/*-style comments */
    		{"123/* regular comment */", comment{0, 3, "/* regular comment */"}},
    		{"package p /* regular comment", comment{0, 0, ""}},
    		{"\n\n\n/*\n*//* want this one */", comment{4, 2, "/* want this one */"}},
    		{"\n\n/**/", comment{2, 0, "/**/"}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:11:21 UTC 2022
    - 21.9K bytes
    - Viewed (0)
  5. src/text/scanner/scanner_test.go

    var tokenList = []token{
    	{Comment, "// line comments"},
    	{Comment, "//"},
    	{Comment, "////"},
    	{Comment, "// comment"},
    	{Comment, "// /* comment */"},
    	{Comment, "// // comment //"},
    	{Comment, "//" + f100},
    
    	{Comment, "// general comments"},
    	{Comment, "/**/"},
    	{Comment, "/***/"},
    	{Comment, "/* comment */"},
    	{Comment, "/* // comment */"},
    	{Comment, "/* /* comment */"},
    	{Comment, "/*\n comment\n*/"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 17 03:41:50 UTC 2022
    - 25.3K bytes
    - Viewed (0)
  6. src/go/doc/synopsis.go

    	var p Package
    	return p.Synopsis(text)
    }
    
    // IllegalPrefixes is a list of lower-case prefixes that identify
    // a comment as not being a doc comment.
    // This helps to avoid misinterpreting the common mistake
    // of a copyright notice immediately before a package statement
    // as being a doc comment.
    var IllegalPrefixes = []string{
    	"copyright",
    	"all rights",
    	"author",
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/error_test.go

    // message. The rx text comprises the comment text after "ERROR ",
    // with any white space around it stripped.
    //
    // If the line comment form is used, the reported error's line must
    // match the line of the error comment.
    //
    // If the regular comment form is used, the reported error's position
    // must match the position of the token immediately following the
    // error comment. Thus, /* ERROR ... */ comments should appear
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  8. hack/golangci.yaml

            - revive
            - stylecheck
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java

         * The value is, e.g. warm <br>
         * comment: The mode of Lasta Di's smart-deploy, should be cool in production (e.g. hot, cool, warm)
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getLastaDiSmartDeployMode();
    
        /**
         * Get the value for the key 'development.here'. <br>
         * The value is, e.g. true <br>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. src/go/printer/testdata/comments.x

    	G(x float) float	// exported method
    }
    
    // The S3 struct; all comments except for the last one must appear in the export.
    type S3 struct {
    	// lead comment for F1
    	F1	int	// line comment for F1
    	// lead comment for F2
    	F2	int	// line comment for F2
    	// contains filtered or unexported fields
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:50 UTC 2022
    - 1.2K bytes
    - Viewed (0)
Back to top