Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 97 for fileComments (0.23 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/tests/tests.go

    	pos      token.Pos
    }
    
    func checkExampleOutput(pass *analysis.Pass, fn *ast.FuncDecl, fileComments []*ast.CommentGroup) {
    	commentsInExample := []commentMetadata{}
    	numOutputs := 0
    
    	// Find the comment blocks that are in the example. These comments are
    	// guaranteed to be in order of appearance.
    	for _, cg := range fileComments {
    		if cg.Pos() < fn.Pos() {
    			continue
    		} else if cg.End() > fn.End() {
    			break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. maven-repository-metadata/src/main/java/org/apache/maven/artifact/repository/metadata/io/xpp3/MetadataXpp3Writer.java

        public MetadataXpp3Writer() {
            delegate = new MetadataStaxWriter();
        }
    
        /**
         * Method setFileComment.
         *
         * @param fileComment a fileComment object.
         */
        public void setFileComment(String fileComment) {
            delegate.setFileComment(fileComment);
        }
    
        /**
         * Method write.
         *
         * @param writer   a writer object
         * @param metadata a Metadata object
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. maven-model/src/main/java/org/apache/maven/model/io/xpp3/MavenXpp3WriterEx.java

        public MavenXpp3WriterEx() {
            super(true);
        }
    
        /**
         * Method setFileComment.
         *
         * @param fileComment a fileComment object.
         */
        public void setFileComment(String fileComment) {
            super.setFileComment(fileComment);
        } // -- void setFileComment( String )
    
        /**
         * Method setStringFormatter.
         *
         * @param stringFormatter
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Oct 20 07:14:01 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. maven-settings/src/main/java/org/apache/maven/settings/io/xpp3/SettingsXpp3Writer.java

            delegate.setAddLocationInformation(false);
        }
        /**
         * Method setFileComment.
         *
         * @param fileComment a fileComment object.
         */
        public void setFileComment(String fileComment) {
            delegate.setFileComment(fileComment);
        }
    
        /**
         * Method write.
         *
         * @param writer a writer object.
         * @param settings a settings object.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Oct 20 07:44:51 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. maven-model/src/main/java/org/apache/maven/model/io/xpp3/MavenXpp3Writer.java

            delegate.setAddLocationInformation(addLocationInformation);
        }
    
        /**
         * Method setFileComment.
         *
         * @param fileComment a fileComment object.
         */
        public void setFileComment(String fileComment) {
            delegate.setFileComment(fileComment);
        } // -- void setFileComment( String )
    
        /**
         * Method setStringFormatter.
         *
         * @param stringFormatter
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Oct 20 07:14:01 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. src/mdo/writer.vm

        /**
         * Field fileComment.
         */
        private String fileComment = null;
    
    
          //-----------/
         //- Methods -/
        //-----------/
    
        /**
         * Method setFileComment.
         *
         * @param fileComment a fileComment object.
         */
        public void setFileComment(String fileComment) {
            this.fileComment = fileComment;
        } //-- void setFileComment(String)
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  7. src/mdo/writer-stax.vm

            } //-- void setSchemaLocation(String)
    
        /**
         * Method setFileComment.
         *
         * @param fileComment a fileComment object.
         */
        public void setFileComment(String fileComment) {
            this.fileComment = fileComment;
        } //-- void setFileComment(String)
    
    #if ( $locationTracking )
        /**
         * Method setAddLocationInformation.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/CppProjectInitDescriptor.java

        @Override
        public void generateProjectBuildScript(String projectName, InitSettings settings, BuildScriptBuilder buildScriptBuilder) {
            buildScriptBuilder
                .fileComment("This generated file contains a sample C++ project to get you started.")
                .fileComment(documentationRegistry.getDocumentationRecommendationFor("details on building C++ applications and libraries", "building_cpp_projects"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 19:14:24 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/kotlinlibrary/Library.kt.template

    ${fileComment.multilineComment}${packageDecl.statement}
    class Library {
        fun someLibraryMethod(): Boolean {
            return true
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 139 bytes
    - Viewed (0)
  10. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/kotlinapplication/multi/app/MessageUtils.kt.template

    ${fileComment.multilineComment}${packageDecl.statement}
    class MessageUtils {
        companion object {
            fun getMessage(): String = "Hello      World!"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 163 bytes
    - Viewed (0)
Back to top