Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 34 of 34 for biases (0.1 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    [source,kotlin]
    ----
    plugins {
        base
    }
    
    base {
        archivesName.set("gradle")
        distsDirectory.set(layout.buildDirectory.dir("custom-dist"))
        libsDirectory.set(layout.buildDirectory.dir("custom-libs"))
    }
    ----
    =====
    [.multi-language-sample]
    =====
    .build.gradle
    [source,groovy]
    ----
    plugins {
        id 'base'
    }
    
    base {
        archivesName = "gradle"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/api_test.go

    	makePkg("main", mainSrc)
    	mainScope := imports["main"].Scope()
    
    	rx := regexp.MustCompile(`^/\*(\w*)=([\w:]*)\*/$`)
    
    	base := syntax.NewFileBase("main")
    	syntax.CommentsDo(strings.NewReader(mainSrc), func(line, col uint, text string) {
    		pos := syntax.MakePos(base, line, col)
    
    		// Syntax errors are not comments.
    		if text[0] != '/' {
    			t.Errorf("%s: %s", pos, text)
    			return
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  3. src/go/types/api_test.go

    		{"var X int; var Y int", true},
    		{"var X int; var Y string", false},
    
    		// TODO: add more tests for complex types.
    
    		// Named types.
    		{"type X int; type Y int", false},
    
    		// Aliases.
    		{"type X = int; type Y = int", true},
    
    		// Functions.
    		{`func X(int) string { return "" }; func Y(int) string { return "" }`, true},
    		{`func X() string { return "" }; func Y(int) string { return "" }`, false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  4. src/cmd/cgo/gcc.go

    // #defines that gcc encountered while processing the input
    // and its included files.
    func (p *Package) gccDefines(stdin []byte) string {
    	base := append(gccBaseCmd, "-E", "-dM", "-xc")
    	base = append(base, p.gccMachine()...)
    	stdout, _ := runGcc(stdin, append(append(base, p.GccOptions...), "-"))
    	return stdout
    }
    
    // gccErrors runs gcc over the C program stdin and returns
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top