Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for Blank (0.47 sec)

  1. api/maven-api-metadata/src/main/mdo/metadata.mdo

              <description>The base version (i.e. ending in {@code -SNAPSHOT}) when this directory represents a "groupId/artifactId/version" for a SNAPSHOT.</description>
            </field>
            <field xdoc.separator="blank">
              <name>plugins</name>
              <version>1.0.0+</version>
              <description>The set of plugins when this directory represents a "groupId".</description>
              <association>
                <type>Plugin</type>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 15 17:32:27 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. api/maven-api-plugin/src/main/mdo/plugin.mdo

            </field>
            <field xdoc.separator="blank">
              <name>mojos</name>
              <version>1.0.0+</version>
              <association>
                <type>MojoDescriptor</type>
                <multiplicity>*</multiplicity>
              </association>
              <description>Description of each Mojo provided by the plugin.</description>
            </field>
            <field xdoc.separator="blank">
              <name>dependencies</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    			if pkg != "" && pkg != prevPkg {
    				h := stdlibPackageHeading(pkg, lastBlock(doc).Pos().EndLine)
    				doc.Blocks = append(doc.Blocks, h)
    			}
    			prevPkg = pkg
    			// Put a blank line between the current and new blocks, so that the end
    			// of a file acts as a blank line.
    			lastLine := lastBlock(doc).Pos().EndLine
    			delta := lastLine + 2 - newdoc.Blocks[0].Pos().StartLine
    			for _, b := range newdoc.Blocks {
    				addLines(b, delta)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/signature.go

    			}
    			sig.rparams = bindTParams(tparams)
    			// Blank identifiers don't get declared, so naive type-checking of the
    			// receiver type expression would fail in Checker.collectParams below,
    			// when Checker.ident cannot resolve the _ to a type.
    			//
    			// Checker.recvTParamMap maps these blank identifiers to their type parameter
    			// types, so that they may be resolved in Checker.ident when they fail
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:33:05 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  5. JavadocStyleGuide.md

    - If you have more than one paragraph in the doc comment, separate the paragraphs with a `<p>` paragraph tag, as shown.
    - Insert a blank comment line between the description and the list of tags, as shown.
    - The first line that begins with an `@` character ends the description; you cannot continue the description following block tags.
    - Block tags must be added in order.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/decl.go

    import (
    	"cmd/compile/internal/syntax"
    	"fmt"
    	"go/constant"
    	"internal/buildcfg"
    	. "internal/types/errors"
    )
    
    func (check *Checker) declare(scope *Scope, id *syntax.Name, obj Object, pos syntax.Pos) {
    	// spec: "The blank identifier, represented by the underscore
    	// character _, may be used in a declaration like any other
    	// identifier but the declaration does not introduce a new
    	// binding."
    	if obj.Name() != "_" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/labels.go

    		case *syntax.DeclStmt:
    			for _, d := range s.DeclList {
    				if d, _ := d.(*syntax.VarDecl); d != nil {
    					recordVarDecl(d.Pos())
    				}
    			}
    
    		case *syntax.LabeledStmt:
    			// declare non-blank label
    			if name := s.Label.Value; name != "_" {
    				lbl := NewLabel(s.Label.Pos(), check.pkg, name)
    				if alt := all.Insert(lbl); alt != nil {
    					err := check.newError(DuplicateLabel)
    					err.soft = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  8. doc/go_spec.html

    the body of any nested function.
    </p>
    
    
    <h3 id="Blank_identifier">Blank identifier</h3>
    
    <p>
    The <i>blank identifier</i> is represented by the underscore character <code>_</code>.
    It serves as an anonymous placeholder instead of a regular (non-blank)
    identifier and has special meaning in <a href="#Declarations_and_scope">declarations</a>,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/check.go

    	dotImportMap  map[dotImportKey]*PkgName   // maps dot-imported objects to the package they were dot-imported through
    	recvTParamMap map[*syntax.Name]*TypeParam // maps blank receiver type parameters to their type
    	brokenAliases map[*TypeName]bool          // set of aliases with broken (not yet determined) types
    	unionTypeSets map[*Union]*_TypeSet        // computed type sets for union types
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/check_test.go

    // of the form /* ERROR pattern */ or /* ERRORx pattern */ (or a similar
    // //-style line comment) immediately following the tokens where errors
    // are reported. There must be exactly one blank before and after the
    // ERROR/ERRORx indicator, and the pattern must be a properly quoted Go
    // string.
    //
    // The harness will verify that each ERROR pattern is a substring of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top