Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 134 for fixArg (0.1 sec)

  1. src/cmd/go/internal/fix/fix.go

    		} else if pkg.Standard {
    			goVersion = build.Default.ReleaseTags[len(build.Default.ReleaseTags)-1]
    		}
    		var fixArg []string
    		if *fixes != "" {
    			fixArg = []string{"-r=" + *fixes}
    		}
    		base.Run(str.StringList(cfg.BuildToolexec, base.Tool("fix"), "-go="+goVersion, fixArg, files))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:52:29 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  2. src/cmd/fix/main.go

    			return err
    		}
    		file = newFile
    		fmt.Fprintf(&fixlog, " fmt")
    	}
    
    	// Apply all fixes to file.
    	newFile := file
    	fixed := false
    	for _, fix := range fixes {
    		if allowed != nil && !allowed[fix.name] {
    			continue
    		}
    		if fix.disabled && !force[fix.name] {
    			continue
    		}
    		if fix.f(newFile) {
    			fixed = true
    			fmt.Fprintf(&fixlog, " %s", fix.name)
    
    			// AST changed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. src/io/fs/sub.go

    	}
    	if len(name) >= len(f.dir)+2 && name[len(f.dir)] == '/' && name[:len(f.dir)] == f.dir {
    		return name[len(f.dir)+1:], true
    	}
    	return "", false
    }
    
    // fixErr shortens any reported names in PathErrors by stripping f.dir.
    func (f *subFS) fixErr(err error) error {
    	if e, ok := err.(*PathError); ok {
    		if short, ok := f.shorten(e.Path); ok {
    			e.Path = short
    		}
    	}
    	return err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 10 02:10:17 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. test/fixedbugs/issue4252.go

    // rundir
    
    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 4252: tests that fixing the issue still allow
    // builtins to be redeclared and are not corrupted
    // in export data.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 313 bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/m5/ToolingApiBuildableEclipseModelFixesCrossVersionSpec.groovy

    import spock.lang.Issue
    
    class ToolingApiBuildableEclipseModelFixesCrossVersionSpec extends ToolingApiSpecification {
        @Issue("GRADLE-1529")
        //this is just one of the ways of fixing the problem. See the issue for details
        def "should not show not executable tasks"() {
            file('build.gradle') << '''
    task a
    task b
    '''
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. docs/pt/docs/deployment/versions.md

    Se tudo estiver funcionando, ou após você realizar as alterações necessárias e todos os testes estiverem passando, então você pode fixar sua versão de `FastAPI` para essa mais nova.
    
    ## Sobre Starlette
    
    Não é recomendado fixar a versão de `starlette`.
    
    Versões diferentes de **FastAPI** utilizarão uma versão específica e mais recente de Starlette.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 29 20:14:40 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  7. src/net/ipsock_plan9.go

    	if err != nil {
    		return
    	}
    	var buf [16]byte
    	n, err := f.Read(buf[:])
    	if err != nil {
    		f.Close()
    		return
    	}
    	return f, dest, proto, string(buf[:n]), nil
    }
    
    func fixErr(err error) {
    	oe, ok := err.(*OpError)
    	if !ok {
    		return
    	}
    	nonNilInterface := func(a Addr) bool {
    		switch a := a.(type) {
    		case *TCPAddr:
    			return a == nil
    		case *UDPAddr:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 20:38:53 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  8. test/fixedbugs/issue7405.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 7405: the equality function for struct with many
    // embedded fields became more complex after fixing issue 7366,
    // leading to out of registers on 386.
    
    package p
    
    type T1 struct {
    	T2
    	T3
    	T4
    }
    
    type T2 struct {
    	Conn
    }
    
    type T3 struct {
    	PacketConn
    }
    
    type T4 struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 20 21:22:37 UTC 2014
    - 638 bytes
    - Viewed (0)
  9. platforms/documentation/samples/build.gradle.kts

        integTestImplementation(testFixtures(project(":model-core")))
    
        integTestDistributionRuntimeOnly(project(":distributions-full"))
    }
    
    testFilesCleanup.reportOnly = true
    
    // Remove as part of fixing https://github.com/gradle/configuration-cache/issues/585
    tasks.configCacheIntegTest {
        systemProperties["org.gradle.configuration-cache.internal.test-disable-load-after-store"] = "true"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 20:15:18 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. .github/pull_request_template.md

    https://github.com/google/guava/wiki/HowToContribute#code-contributions
    and
    https://github.com/google/guava/blob/master/CONTRIBUTING.md
    before sending a pull request.
    
    We generally welcome PRs for fixing trivial bugs or typos, but please refrain
    from sending a PR with significant changes unless explicitly requested.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 27 19:53:41 UTC 2023
    - 371 bytes
    - Viewed (0)
Back to top