Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 658 for COMMENT (0.19 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/rewrite.go

    		a.apply(n, "Doc", nil, n.Doc)
    		a.apply(n, "Name", nil, n.Name)
    		a.apply(n, "Path", nil, n.Path)
    		a.apply(n, "Comment", nil, n.Comment)
    
    	case *ast.ValueSpec:
    		a.apply(n, "Doc", nil, n.Doc)
    		a.applyList(n, "Names")
    		a.apply(n, "Type", nil, n.Type)
    		a.applyList(n, "Values")
    		a.apply(n, "Comment", nil, n.Comment)
    
    	case *ast.TypeSpec:
    		a.apply(n, "Doc", nil, n.Doc)
    		a.apply(n, "Name", nil, n.Name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/lex/lex.go

    		return "float constant"
    	case scanner.Char:
    		return "rune constant"
    	case scanner.String:
    		return "string constant"
    	case scanner.RawString:
    		return "raw string constant"
    	case scanner.Comment:
    		return "comment"
    	default:
    		return fmt.Sprintf("%q", rune(t))
    	}
    }
    
    // NewLexer returns a lexer for the named file and the given link context.
    func NewLexer(name string) TokenReader {
    	input := NewInput(name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/annotations/RunFor.groovy

            return new GroupsBean(
                testProject: testProject,
                coverage: [(scenario.type().toString().toLowerCase()): scenario.operatingSystems().collect { it.coverageName }] as TreeMap,
                comment: scenario.comment() ?: null
            )
        }
    
        static class AddScenarioDefinitionInterceptor implements IMethodInterceptor {
            private final Method method
            private final RunFor runFor
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/generate_invalid.txt

    // Go file with package clause after comment.
    // Go generate should process this file.
    
    /* Pre-comment */ package nopkg
    //go:generate echo Success a
    
    -- nopkg/b.go --
    // Go file with commented package clause.
    // Go generate should ignore this file.
    
    //package nopkg
    
    //go:generate echo Fail b
    
    -- nopkg/c.go --
    // Go file with package clause inside multiline comment.
    // Go generate should ignore this file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 09 01:48:44 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    		}
    	}
    }
    
    // setIndirect sets line to have (or not have) a "// indirect" comment.
    func (r *Require) setIndirect(indirect bool) {
    	r.Indirect = indirect
    	line := r.Syntax
    	if isIndirect(line) == indirect {
    		return
    	}
    	if indirect {
    		// Adding comment.
    		if len(line.Suffix) == 0 {
    			// New comment.
    			line.Suffix = []Comment{{Token: "// indirect", Suffix: true}}
    			return
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  6. src/cmd/doc/pkg.go

    		pkg.buf.WriteRune('\n')
    	}
    }
    
    // emit prints the node. If showSrc is true, it ignores the provided comment,
    // assuming the comment is in the node itself. Otherwise, the go/doc package
    // clears the stuff we don't want to print anyway. It's a bit of a magic trick.
    func (pkg *Package) emit(comment string, node ast.Node) {
    	if node != nil {
    		var arg any = node
    		if showSrc {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 20:15:52 UTC 2024
    - 32K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/BUILD

        srcs = [
            "transforms/corert_converter.cc",
        ],
        hdrs = [
            "transforms/corert_converter.h",
        ],
        compatible_with = get_compatible_with_portable(),  # copybara: comment
        deps = [
            ":attr_lowering_utils",
            ":transform_utils",
            "//tensorflow/compiler/mlir/tensorflow",
            "//tensorflow/compiler/mlir/tensorflow:tensorflow_analysis",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 19:04:21 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  8. src/go/types/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
    - 14.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/bsentity/BsElevateWordToLabel.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.ElevateWordToLabelDbm;
    
    /**
     * ${table.comment}
     * @author ESFlute (using FreeGen)
     */
    public class BsElevateWordToLabel extends EsAbstractEntity {
    
        // ===================================================================================
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/user/bsentity/BsGroup.java

    import java.time.LocalDateTime;
    import java.util.HashMap;
    import java.util.Map;
    
    import org.codelibs.fess.es.user.allcommon.EsAbstractEntity;
    import org.codelibs.fess.es.user.bsentity.dbmeta.GroupDbm;
    
    /**
     * ${table.comment}
     * @author ESFlute (using FreeGen)
     */
    public class BsGroup extends EsAbstractEntity {
    
        // ===================================================================================
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top