Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 579 for COMMENT (0.08 sec)

  1. misc/wasm/wasm_exec.js

    							const result = Reflect.apply(m, v, args);
    							sp = this._inst.exports.getsp() >>> 0; // see comment above
    							storeValue(sp + 56, result);
    							this.mem.setUint8(sp + 64, 1);
    						} catch (err) {
    							sp = this._inst.exports.getsp() >>> 0; // see comment above
    							storeValue(sp + 56, err);
    							this.mem.setUint8(sp + 64, 0);
    						}
    					},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 17:47:47 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  2. src/go/ast/filter.go

    			return p.Name + "." + f.Name.Name
    		}
    		// otherwise assume a function instead
    	}
    	return f.Name.Name
    }
    
    // separator is an empty //-style comment that is interspersed between
    // different comment groups when they are concatenated into a single group
    var separator = &Comment{token.NoPos, "//"}
    
    // MergePackageFiles creates a file AST by merging the ASTs of the
    // files belonging to a package. The mode flags control merging behavior.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/enclosing.go

    	case *ast.CaseClause:
    		return "case clause"
    	case *ast.ChanType:
    		return "channel type"
    	case *ast.CommClause:
    		return "communication clause"
    	case *ast.Comment:
    		return "comment"
    	case *ast.CommentGroup:
    		return "comment group"
    	case *ast.CompositeLit:
    		return "composite literal"
    	case *ast.DeclStmt:
    		return NodeDescription(n.Decl) + " statement"
    	case *ast.DeferStmt:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseProjectIntegrationTest.groovy

            given:
            def projectFile = file('.project')
            def projectFileOriginalText = '''<?xml version="1.0" encoding="UTF-8"?>
    <projectDescription>
    	<name>root</name>
    	<comment></comment>
    	<projects/>
    	<natures>
    		<nature>org.eclipse.jdt.core.javanature</nature>
    	</natures>
    	<buildSpec>
    		<buildCommand>
    			<name>org.eclipse.jdt.core.javabuilder</name>
    			<arguments/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/normalization/ConfigureRuntimeClasspathNormalizationIntegrationTest.groovy

            PropertiesResource setComment(String comment) {
                this.comment = comment
                return this
            }
    
            PropertiesResource setContent(String content) {
                // Preserve the order of the properties in the map when writing the properties file
                backingFile.withWriter {writer ->
                    writer.write("# ${comment}\n")
                    writer.write(content)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/check_test.go

    // starts with "//" (line comment) followed by "-" (possibly with spaces
    // between). Otherwise the line is ignored.
    func parseFlags(src []byte, flags *flag.FlagSet) error {
    	// we must have a line comment that starts with a "-"
    	const prefix = "//"
    	if !bytes.HasPrefix(src, []byte(prefix)) {
    		return nil // first line is not a line comment
    	}
    	src = src[len(prefix):]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  10. migrator/migrator.go

    				v2, _ := strconv.ParseBool(field.DefaultValue)
    				alterColumn = v1 != v2
    			default:
    				alterColumn = dv != field.DefaultValue
    			}
    		}
    	}
    
    	// check comment
    	if comment, ok := columnType.Comment(); ok && comment != field.Comment {
    		// not primary key
    		if !field.PrimaryKey {
    			alterColumn = true
    		}
    	}
    
    	if alterColumn {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Apr 26 07:15:49 UTC 2024
    - 29K bytes
    - Viewed (0)
Back to top