Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 882 for Diagnostic (0.31 sec)

  1. src/cmd/cgo/out.go

    	fmt.Fprintf(fgcc, "#pragma GCC diagnostic ignored \"-Wunknown-pragmas\"\n")
    	fmt.Fprintf(fgcc, "#pragma GCC diagnostic ignored \"-Wpragmas\"\n")
    	fmt.Fprintf(fgcc, "#pragma GCC diagnostic ignored \"-Waddress-of-packed-member\"\n")
    	fmt.Fprintf(fgcc, "#pragma GCC diagnostic ignored \"-Wunknown-warning-option\"\n")
    	fmt.Fprintf(fgcc, "#pragma GCC diagnostic ignored \"-Wunaligned-access\"\n")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. src/go/format/format.go

    		err := config.Fprint(&buf, fset, file)
    		if err != nil {
    			return err
    		}
    		file, err = parser.ParseFile(fset, "", buf.Bytes(), parserMode)
    		if err != nil {
    			// We should never get here. If we do, provide good diagnostic.
    			return fmt.Errorf("format.Node internal error (%s)", err)
    		}
    		ast.SortImports(fset, file)
    
    		// Use new file with sorted imports.
    		node = file
    		if cnode != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/stringintconv/string.go

    			}
    		}
    
    		target := describe(T0, T, tname.Name())
    		source := describe(V0, V, typeName(V))
    
    		if target == "" || source == "" {
    			return // something went wrong
    		}
    
    		diag := analysis.Diagnostic{
    			Pos:     n.Pos(),
    			Message: fmt.Sprintf("conversion from %s to %s yields a string of one rune, not a string of digits (did you mean fmt.Sprint(x)?)", source, target),
    		}
    
    		if convertibleToRune {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/httpresponse/httpresponse.go

    	resp, err := http.Head(url)
    	defer resp.Body.Close()
    	if err != nil {
    		log.Fatal(err)
    	}
    	// (defer statement belongs here)
    
    This checker helps uncover latent nil dereference bugs by reporting a
    diagnostic for such mistakes.`
    
    var Analyzer = &analysis.Analyzer{
    	Name:     "httpresponse",
    	Doc:      Doc,
    	URL:      "https://pkg.go.dev/golang.org/x/tools/go/analysis/passes/httpresponse",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. tests/integration/README.md

    The test framework will generate additional diagnostic output in its work directory. Typically, this is
    created under the host operating system's temporary folder (which can be overridden using
    the `--istio.test.work_dir` flag). The name of the work dir will be based on the test id that is supplied in
    a tests TestMain method. These files typically contain some of the logging & diagnostic output that components
    spew out as part of test execution
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  6. test/fixedbugs/issue13799.go

    // errorcheck -0 -m -l
    
    // Copyright 2015 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.
    
    // Test, using compiler diagnostic flags, that the escape analysis is working.
    // Compiles but does not run.  Inlining is disabled.
    // Registerization is disabled too (-N), which should
    // have no effect on escape analysis.
    
    package main
    
    import "fmt"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:50:24 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/AbstractPropertyLanguageInterOpIntegrationTest.groovy

            outputContains("number = 1.23")
            outputContains("list = [1, 2]")
            outputContains("set = [1, 2]")
            outputContains("map = {1=true, 2=false}")
        }
    
        def "attaches diagnostic information to property"() {
            pluginDefinesTask()
    
            buildFile << """
                apply plugin: SomePlugin
    
                println "flag = " + tasks.someTask.flag
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  8. test/escape5.go

    // errorcheck -0 -m -l
    
    // 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.
    
    // Test, using compiler diagnostic flags, that the escape analysis is working.
    // Compiles but does not run.  Inlining is disabled.
    
    package foo
    
    import (
    	"runtime"
    	"unsafe"
    )
    
    func noleak(p *int) int { // ERROR "p does not escape"
    	return *p
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:50:24 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  9. ChangeLog.md

    - [`KT-66446`](https://youtrack.jetbrains.com/issue/KT-66446) Diagnostic never showed, and build fails when CocoaPods dependency is used with embedAndSign task and linking type is dynamic
    - [`KT-66445`](https://youtrack.jetbrains.com/issue/KT-66445) Diagnostic never showed when CocoaPods dependency is used with embedAndSign task and linking type is static
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSymbolContainingDeclarationProvider.kt

            }
    
            val firSymbol = symbol.firSymbol
            val symbolFirSession = firSymbol.llFirSession
            val symbolModule = symbolFirSession.ktModule
    
            if (firSymbol is FirErrorPropertySymbol && firSymbol.diagnostic is ConeDestructuringDeclarationsOnTopLevel) {
                return null
            }
    
            getContainingDeclarationForDependentDeclaration(symbol)?.let { return it }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top