Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 335 for bland (0.16 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/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)
  4. 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)
  5. src/go/printer/nodes.go

    			depth++
    		}
    		p.exprList(s.Pos(), s.Lhs, depth, 0, s.TokPos, false)
    		p.print(blank)
    		p.setPos(s.TokPos)
    		p.print(s.Tok, blank)
    		p.exprList(s.TokPos, s.Rhs, depth, 0, token.NoPos, false)
    
    	case *ast.GoStmt:
    		p.print(token.GO, blank)
    		p.expr(s.Call)
    
    	case *ast.DeferStmt:
    		p.print(token.DEFER, blank)
    		p.expr(s.Call)
    
    	case *ast.ReturnStmt:
    		p.print(token.RETURN)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  6. src/internal/types/testdata/check/decls0.go

    func (S0) m4 () (x *S0.m4 /* ERROR "S0.m4 is not a type" */ ) { return }
    
    // interfaces may not have any blank methods
    type BlankI interface {
    	_ /* ERROR "methods must have a unique non-blank name" */ ()
    	_ /* ERROR "methods must have a unique non-blank name" */ (float32) int
    	m()
    }
    
    // non-interface types may have multiple blank methods
    type BlankT struct{}
    
    func (BlankT) _() {}
    func (BlankT) _(int) {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. src/go/doc/comment/parse.go

    	// overriding the usual conditions. See the BlankBetween method.
    	//
    	// The comment parser sets ForceBlankBetween for any list
    	// that has a blank line between any two of its items, to make sure
    	// the blank lines are preserved when printing.
    	ForceBlankBetween bool
    }
    
    func (*List) block() {}
    
    // BlankBefore reports whether a reformatting of the comment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 33.5K bytes
    - Viewed (0)
  8. src/regexp/syntax/perl_groups.go

    	`[:alnum:]`:   {+1, code4},
    	`[:^alnum:]`:  {-1, code4},
    	`[:alpha:]`:   {+1, code5},
    	`[:^alpha:]`:  {-1, code5},
    	`[:ascii:]`:   {+1, code6},
    	`[:^ascii:]`:  {-1, code6},
    	`[:blank:]`:   {+1, code7},
    	`[:^blank:]`:  {-1, code7},
    	`[:cntrl:]`:   {+1, code8},
    	`[:^cntrl:]`:  {-1, code8},
    	`[:digit:]`:   {+1, code9},
    	`[:^digit:]`:  {-1, code9},
    	`[:graph:]`:   {+1, code10},
    	`[:^graph:]`:  {-1, code10},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/EmptyLineTrimmerOutputNormalizer.groovy

    import org.gradle.exemplar.executor.ExecutionMetadata
    import org.gradle.exemplar.test.normalizer.OutputNormalizer
    
    import java.util.regex.Pattern
    
    /**
     * Allows a blank empty line in your sample output to match a blank line with any number of spaces in the actual output.
     *
     * This exists to avoid having to measure out "prefix" whitespace indentation and match it exactly in your sample output.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. platforms/jvm/platform-jvm/src/test/groovy/org/gradle/api/java/archives/internal/DefaultManifestTest.groovy

            'Name'        | _
            'nAme'        | _
            'naMe'        | _
            'namE'        | _
            'NamE'        | _
        }
    
        def "demonstrate Java vs. Ant Manifest classes behavior wrt. blank lines"() {
            given:
            TestFile noBlankLinesManifestFile = tmpDir.file('noBlankLinesManifestFile')
            TestFile blankLinesManifestFile = tmpDir.file('blankLinesManifestFile')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 15.1K bytes
    - Viewed (0)
Back to top