Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 658 for COMMENT (0.12 sec)

  1. src/cmd/compile/internal/syntax/nodes.go

    	//    ('[' for IndexExpr, 'if' for IfStmt, etc.)
    	Pos() Pos
    	SetPos(Pos)
    	aNode()
    }
    
    type node struct {
    	// commented out for now since not yet used
    	// doc  *Comment // nil means no comment(s) attached
    	pos Pos
    }
    
    func (n *node) Pos() Pos       { return n.pos }
    func (n *node) SetPos(pos Pos) { n.pos = pos }
    func (*node) aNode()           {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/modfile/work.go

    	Use       []*Use
    	Replace   []*Replace
    
    	Syntax *FileSyntax
    }
    
    // A Use is a single directory statement.
    type Use struct {
    	Path       string // Use path of module.
    	ModulePath string // Module path in the comment.
    	Syntax     *Line
    }
    
    // ParseWork parses and returns a go.work file.
    //
    // file is the name of the file, used in positions and errors.
    //
    // data is the content of the file.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/cfg/cfg.go

    		b.add(&ast.ReturnStmt{
    			Return: body.End() - 1,
    		})
    	}
    
    	return b.cfg
    }
    
    func (b *Block) String() string {
    	return fmt.Sprintf("block %d (%s)", b.Index, b.comment(nil))
    }
    
    func (b *Block) comment(fset *token.FileSet) string {
    	s := b.Kind.String()
    	if fset != nil && b.Stmt != nil {
    		s = fmt.Sprintf("%s@L%d", s, fset.Position(b.Stmt.Pos()).Line)
    	}
    	return s
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-configuration/src/test/groovy/org/gradle/internal/buildconfiguration/UpdateDaemonJvmModifierTest.groovy

            props[DaemonJvmPropertiesDefaults.TOOLCHAIN_IMPLEMENTATION_PROPERTY] == null
        }
    
        def "existing unrecognized properties are not preserved"() {
            daemonJvmPropertiesFile.text = """
                # this comment is not preserved
                com.example.foo=bar
                ${DaemonJvmPropertiesDefaults.TOOLCHAIN_VERSION_PROPERTY}=15
            """
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. src/regexp/exec_test.go

    		//     ; ...	output field 2 if previous failed
    		//     {test ...	skip if failed until }
    		//     }		end of skip
    		//
    		//     : comment		comment copied as output NOTE
    		//     :comment:test	:comment: ignored
    		//     N[OTE] comment	comment copied as output NOTE
    		//     T[EST] comment	comment
    		//
    		//     number		use number for nmatch (20 by default)
    		flag := field[0]
    		switch flag[0] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/language/assembler/AssemblyLanguageIncrementalBuildIntegrationTest.groovy

            and:
            !oldObjFile.file
            newObjFile.file
        }
    
        def "reassembles binary with source comment change"() {
            when:
            asmSourceFile << "# A comment at the end of the file\n"
            run "mainExecutable"
    
            then:
            executedAndNotSkipped ":assembleHelloSharedLibraryHelloAsm"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/NonRenamableProject.java

            return delegate.getName();
        }
    
        @Override
        public String getComment() {
            return delegate.getComment();
        }
    
        @Override
        public void setComment(String comment) {
            delegate.setComment(comment);
        }
    
        @Override
        public Set<String> getReferencedProjects() {
            return delegate.getReferencedProjects();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/bsentity/BsCrawlingInfoParam.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.CrawlingInfoParamDbm;
    
    /**
     * ${table.comment}
     * @author ESFlute (using FreeGen)
     */
    public class BsCrawlingInfoParam extends EsAbstractEntity {
    
        // ===================================================================================
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/scope.go

    	pos, end syntax.Pos        // scope extent; may be invalid
    	comment  string            // for debugging only
    	isFunc   bool              // set if this is a function scope (internal use only)
    }
    
    // NewScope returns a new, empty scope contained in the given parent
    // scope, if any. The comment is for debugging only.
    func NewScope(parent *Scope, pos, end syntax.Pos, comment string) *Scope {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. src/go/types/scope.go

    	pos, end token.Pos         // scope extent; may be invalid
    	comment  string            // for debugging only
    	isFunc   bool              // set if this is a function scope (internal use only)
    }
    
    // NewScope returns a new, empty scope contained in the given parent
    // scope, if any. The comment is for debugging only.
    func NewScope(parent *Scope, pos, end token.Pos, comment string) *Scope {
    	s := &Scope{parent, nil, 0, nil, pos, end, comment, false}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top