Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 171 for analyzers (0.26 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/stringintconv/string.go

    	"golang.org/x/tools/internal/typeparams"
    )
    
    //go:embed doc.go
    var doc string
    
    var Analyzer = &analysis.Analyzer{
    	Name:     "stringintconv",
    	Doc:      analysisutil.MustExtractDoc(doc, "stringintconv"),
    	URL:      "https://pkg.go.dev/golang.org/x/tools/go/analysis/passes/stringintconv",
    	Requires: []*analysis.Analyzer{inspect.Analyzer},
    	Run:      run,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/framepointer/framepointer.go

    )
    
    const Doc = "report assembly that clobbers the frame pointer before saving it"
    
    var Analyzer = &analysis.Analyzer{
    	Name: "framepointer",
    	Doc:  Doc,
    	URL:  "https://pkg.go.dev/golang.org/x/tools/go/analysis/passes/framepointer",
    	Run:  run,
    }
    
    var (
    	re             = regexp.MustCompile
    	asmWriteBP     = re(`,\s*BP$`) // TODO: can have false positive, e.g. for TESTQ BP,BP. Seems unlikely.
    	asmMentionBP   = re(`\bBP\b`)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonInitialCommunicationFailureIntegrationSpec.groovy

            when:
            daemon.assertIdle()
            daemon.kill()
    
            then:
            buildSucceeds()
    
            and:
            def analyzer = daemons
            analyzer.daemons.size() == 2        //2 daemon participated
            analyzer.visible.size() == 1        //only one address in the registry
        }
    
        @Issue("GRADLE-2464")
        def "stop removes entry when nothing is listening on address"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 07:46:29 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/CompileServices.java

    import org.gradle.api.internal.tasks.compile.incremental.IncrementalCompilerFactory;
    import org.gradle.api.internal.tasks.compile.incremental.analyzer.CachingClassDependenciesAnalyzer;
    import org.gradle.api.internal.tasks.compile.incremental.analyzer.ClassDependenciesAnalyzer;
    import org.gradle.api.internal.tasks.compile.incremental.analyzer.DefaultClassDependenciesAnalyzer;
    import org.gradle.api.internal.tasks.compile.incremental.cache.GeneralCompileCaches;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/copylock/copylock.go

    sync.WaitGroup, may cause both copies to malfunction. Generally such
    values should be referred to through a pointer.`
    
    var Analyzer = &analysis.Analyzer{
    	Name:             "copylocks",
    	Doc:              Doc,
    	URL:              "https://pkg.go.dev/golang.org/x/tools/go/analysis/passes/copylock",
    	Requires:         []*analysis.Analyzer{inspect.Analyzer},
    	RunDespiteErrors: true,
    	Run:              run,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/session/KtAnalysisSessionProvider.kt

         *
         * The signature of [beforeEnteringAnalysis] should be kept stable to avoid breaking binary compatibility, since [analyze] is inlined.
         */
        @KaAnalysisApiInternals
        public abstract fun beforeEnteringAnalysis(session: KaSession, useSiteModule: KtModule)
    
        /**
         * [afterLeavingAnalysis] hooks into analysis *after* [analyze]'s action has been executed.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/diagnostic.go

    // license that can be found in the LICENSE file.
    
    package analysis
    
    import "go/token"
    
    // A Diagnostic is a message associated with a source location or range.
    //
    // An Analyzer may return a variety of diagnostics; the optional Category,
    // which should be a constant, may be used to classify them.
    // It is primarily intended to make it easy to look up documentation.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/buildtag/buildtag_old.go

    // +build !go1.16
    
    // Package buildtag defines an Analyzer that checks build tags.
    package buildtag
    
    import (
    	"bytes"
    	"fmt"
    	"go/ast"
    	"go/parser"
    	"strings"
    	"unicode"
    
    	"golang.org/x/tools/go/analysis"
    	"golang.org/x/tools/go/analysis/passes/internal/analysisutil"
    )
    
    const Doc = "check // +build directives"
    
    var Analyzer = &analysis.Analyzer{
    	Name: "buildtag",
    	Doc:  Doc,
    	Run:  runBuildTag,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10ExpressionTypeProvider.kt

                            val kotlinTypes = entryExpressions.mapNotNull { analysisContext.analyze(it).getType(it) }
                            return intersectWrappedTypes(kotlinTypes).toKtNonErrorType(analysisContext)
                        }
                    }
                }
            }
    
            val bindingContext = analysisContext.analyze(ktExpression)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/initialization/DefaultScriptClassPathResolver.java

            ClassPathNotation.GRADLE_API,
            ClassPathNotation.LOCAL_GROOVY
        );
    
        public enum InstrumentationPhase {
            NOT_INSTRUMENTED("not-instrumented"),
            ANALYZED_ARTIFACT("analyzed-artifact"),
            MERGED_ARTIFACT_ANALYSIS("merged-artifact-analysis"),
            INSTRUMENTED_AND_UPGRADED("instrumented-and-upgraded"),
            INSTRUMENTED_ONLY("instrumented-only");
    
            private final String value;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top