Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 882 for Diagnostic (0.18 sec)

  1. platforms/extensibility/test-kit/src/test/groovy/org/gradle/testkit/runner/internal/DefaultGradleRunnerTest.groovy

            then:
            def t = thrown(InvalidRunnerConfigurationException)
            t.message == 'Please specify a project directory before executing the build'
        }
    
        def "creates diagnostic message for execution result without thrown exception"() {
            given:
            def runner = createRunnerWithWorkingDirAndArgument()
            def result = createGradleExecutionResult()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/timeformat/timeformat.go

    				if _, ok := arg.(*ast.BasicLit); ok {
    					pos := int(arg.Pos()) + badAt + 1 // +1 to skip the " or `
    					end := pos + len(badFormat)
    
    					pass.Report(analysis.Diagnostic{
    						Pos:     token.Pos(pos),
    						End:     token.Pos(end),
    						Message: badFormat + " should be " + goodFormat,
    						SuggestedFixes: []analysis.SuggestedFix{{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/FirUtils.kt

    import org.jetbrains.kotlin.fir.diagnostics.ConeDiagnostic
    import org.jetbrains.kotlin.fir.diagnostics.ConeUnreportedDuplicateDiagnostic
    import org.jetbrains.kotlin.fir.expressions.*
    import org.jetbrains.kotlin.fir.psi
    import org.jetbrains.kotlin.fir.references.*
    import org.jetbrains.kotlin.fir.resolve.diagnostics.ConeDiagnosticWithCandidates
    import org.jetbrains.kotlin.fir.resolve.diagnostics.ConeDiagnosticWithSymbol
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:43 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. src/runtime/testdata/testprogcgo/stackswitch.c

    //go:build unix && !android && !openbsd
    
    // Required for darwin ucontext.
    #define _XOPEN_SOURCE
    // Required for netbsd stack_t if _XOPEN_SOURCE is set.
    #define _XOPEN_SOURCE_EXTENDED	1
    #pragma GCC diagnostic ignored "-Wdeprecated-declarations"
    
    #include <assert.h>
    #include <pthread.h>
    #include <stddef.h>
    #include <stdio.h>
    #include <stdlib.h>
    #include <ucontext.h>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 15:17:33 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/DaemonForkOptionsBuilder.java

    import java.util.List;
    import java.util.Optional;
    
    public class DaemonForkOptionsBuilder {
        // This isn't exhaustive because there are more ways that extra files can be provided
        // to the worker through diagnostic options, @files or JAVA_TOOL_OPTIONS.
        private static final List<String> UNRELIABLE_OPTIONS = Arrays.asList(
            // Classpath options
            "-cp", "-classpath", "--class-path",
            // Module related options
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. analysis/analysis-api-standalone/analysis-api-fir-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/LLFirStandaloneLibrarySymbolProviderFactory.kt

     * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
     */
    
    package org.jetbrains.kotlin.analysis.api.standalone.base.project.structure
    
    import com.intellij.openapi.diagnostic.Logger
    import com.intellij.openapi.project.Project
    import com.intellij.psi.search.GlobalSearchScope
    import org.jetbrains.kotlin.analysis.low.level.api.fir.project.structure.LLFirLibrarySymbolProviderFactory
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Apr 15 11:10:29 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/sigchanyzer/sigchanyzer.go

    			Kind:  token.INT,
    			Value: "1",
    		})
    
    		var buf bytes.Buffer
    		if err := format.Node(&buf, token.NewFileSet(), chanDeclCopy); err != nil {
    			return
    		}
    		pass.Report(analysis.Diagnostic{
    			Pos:     call.Pos(),
    			End:     call.End(),
    			Message: "misuse of unbuffered os.Signal channel as argument to signal.Notify",
    			SuggestedFixes: []analysis.SuggestedFix{{
    				Message: "Change to buffer channel",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/stdversion/stdversion.go

    force in the referring file. (Recall that the file's Go version is
    defined by the 'go' directive its module's go.mod file, or by a
    "//go:build go1.X" build tag at the top of the file.)
    
    The analyzer does not report a diagnostic for a reference to a "too
    new" field or method of a type that is itself "too new", as this may
    have false positives, for example if fields or methods are accessed
    through a type alias that is guarded by a Go version constraint.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. test/goto.go

    	goto L // ERROR "goto L jumps into block starting at LINE+3|goto jumps into block"
    	{
    		{
    			{ // GCCGO_ERROR "block starts here"
    			L:
    			}
    		}
    	}
    }
    
    // error prefers block diagnostic over declaration diagnostic
    func _() {
    	goto L // ERROR "goto L jumps into block starting at LINE+3|goto jumps into block"
    	x := 1
    	_ = x
    	{ // GCCGO_ERROR "block starts here"
    	L:
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 19 02:27:58 UTC 2017
    - 8.4K bytes
    - Viewed (0)
  10. doc/next/3-tools.md

    by the `go` directive in the file's enclosing `go.mod` file, and
    by any [`//go:build` constraints](https://pkg.go.dev/cmd/go#hdr-Build_constraints)
    in the file.)
    
    For example, it will report a diagnostic for a reference to the
    `reflect.TypeFor` function (introduced in go1.22) from a file in a
    module whose go.mod file specifies `go 1.21`.
    
    ### Cgo {#cgo}
    
    <!-- go.dev/issue/66456 -->
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 19:06:07 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top