Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 432 for bland (0.04 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ArtifactSelectionIntegrationTest.groovy

                            attributes.attribute(flavor, 'bland')
                        }
                        var2 {
                            artifact file('a2.jar')
                            attributes.attribute(buildType, 'debug')
                            attributes.attribute(flavor, 'bland')
                        }
                        var3 {
                            artifact file('a3.jar')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

                allprojects {
                    configurations {
                        outgoing.outgoing.variants {
                            one {
                                attributes.attribute(flavor, 'bland')
                                artifact(producer.output)
                            }
                            two {
                                attributes.attribute(flavor, 'cloying')
                            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  3. src/go/doc/comment/testdata/blank.txt

    -- input --
    	$
    	Blank line at start and end.
    	$
    -- gofmt --
    Blank line at start and end.
    -- text --
    Blank line at start and end.
    -- markdown --
    Blank line at start and end.
    -- html --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:40 UTC 2022
    - 216 bytes
    - Viewed (0)
  4. src/internal/types/testdata/check/blank.go

    Robert Griesemer <******@****.***> 1670366619 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 205 bytes
    - Viewed (0)
  5. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/checkstyle.xml

            </module>
            <!--<module name="WhitespaceAround">-->
                <!-- everything except { and } -->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 16 22:05:16 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  6. src/go/doc/comment/testdata/list6.txt

    -- input --
    Text.
     - List immediately after.
     - Another.
    
    More text.
    
     - List after blank line.
     - Another.
    
    Even more text.
     - List immediately after.
    
     - Blank line between items.
    
    Yet more text.
    
     - Another list after blank line.
    
     - Blank line between items.
    
    Still more text.
     - One list item.
    
       Multiple paragraphs.
    -- dump --
    Doc
    	Paragraph
    		Plain "Text."
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:48 UTC 2022
    - 2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/printer.go

    		p.print(_If, blank)
    		if n.Init != nil {
    			p.print(n.Init, _Semi, blank)
    		}
    		p.print(n.Cond, blank, n.Then)
    		if n.Else != nil {
    			p.print(blank, _Else, blank, n.Else)
    		}
    
    	case *SwitchStmt:
    		p.print(_Switch, blank)
    		if n.Init != nil {
    			p.print(n.Init, _Semi, blank)
    		}
    		if n.Tag != nil {
    			p.print(n.Tag, blank)
    		}
    		p.printSwitchBody(n.Body)
    
    	case *SelectStmt:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 07:17:27 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  8. src/go/doc/comment/testdata/code3.txt

    	A tab-indented
    	(surrounded by more blank lines)
    	code block and haiku.
    	$
    
    More text.
    -- gofmt --
    Text.
    
    	A tab-indented
    	(surrounded by more blank lines)
    	code block and haiku.
    
    More text.
    -- markdown --
    Text.
    
    	A tab-indented
    	(surrounded by more blank lines)
    	code block and haiku.
    
    More text.
    -- html --
    <p>Text.
    <pre>A tab-indented
    (surrounded by more blank lines)
    code block and haiku.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:47 UTC 2022
    - 437 bytes
    - Viewed (0)
  9. src/go/printer/gobuild.go

    // but it avoids creating doubled blank lines,
    // which would not be gofmt-standard output.
    // It assumes that only whole blocks of lines are being appended,
    // not line fragments.
    func appendLines(x, y []byte) []byte {
    	if len(y) > 0 && isNL(y[0]) && // y starts in blank line
    		(len(x) == 0 || len(x) >= 2 && isNL(x[len(x)-1]) && isNL(x[len(x)-2])) { // x is empty or ends in blank line
    		y = y[1:] // delete y's leading blank line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. src/go/doc/comment/testdata/code.txt

    More text.
    
          Blocks
        can
    
      have
        blank
          lines.
    -- gofmt --
    Text.
    
    	A tab-indented
    	(no, not eight-space indented)
    	code block and haiku.
    
    More text.
    
    	One space
    	 is
    	  enough
    	   to
    	    start
    	     a
    	      block.
    
    More text.
    
    	    Blocks
    	  can
    
    	have
    	  blank
    	    lines.
    -- markdown --
    Text.
    
    	A tab-indented
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:47 UTC 2022
    - 944 bytes
    - Viewed (0)
Back to top