Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 532 for detective (0.34 sec)

  1. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/RegexBackedCSourceParser.java

                return;
            }
            if (buffer.hasIdentifierChar()) {
                // An identifier with no separator, so this is not an #include or #import directive, it is some other directive
                return;
            }
            Expression expression = parseDirectiveBodyExpression(buffer);
            if (expression.getType() == IncludeType.TOKEN_CONCATENATION || expression.getType() == IncludeType.ARGS_LIST || expression.getType() == IncludeType.EXPRESSIONS) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  2. src/cmd/vet/main.go

    	"golang.org/x/tools/go/analysis/passes/composite"
    	"golang.org/x/tools/go/analysis/passes/copylock"
    	"golang.org/x/tools/go/analysis/passes/defers"
    	"golang.org/x/tools/go/analysis/passes/directive"
    	"golang.org/x/tools/go/analysis/passes/errorsas"
    	"golang.org/x/tools/go/analysis/passes/framepointer"
    	"golang.org/x/tools/go/analysis/passes/httpresponse"
    	"golang.org/x/tools/go/analysis/passes/ifaceassert"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. test/fixedbugs/issue67141.go

    // errorcheck -lang=go1.22
    
    //go:build go1.21
    
    // We need a line directive before the package clause,
    // but don't change file name or position so that the
    // error message appears at the right place.
    
    //line issue67141.go:10
    package p
    
    func _() {
    	for range 10 { // ERROR "cannot range over 10"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 20:44:21 UTC 2024
    - 301 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/work_implicit_go_requirement.txt

    # Issue 66207: provide a better error message when there's no
    # go directive in a go.work file so 1.18 is implicitly required.
    
    ! go list
    stderr 'go: module . listed in go.work file requires go >= 1.21, but go.work implicitly requires go 1.18; to update it:\s+go work use'
    
    go work use
    go list
    stdout foo
    
    -- go.work --
    use .
    -- go.mod --
    module foo
    
    go 1.21
    -- foo.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 18:35:47 UTC 2024
    - 384 bytes
    - Viewed (0)
  5. src/cmd/go/internal/load/godebug.go

    // When building a test binary, directives, testDirectives, and xtestDirectives
    // list additional directives from the package under test.
    func defaultGODEBUG(p *Package, directives, testDirectives, xtestDirectives []build.Directive) string {
    	if p.Name != "main" {
    		return ""
    	}
    	goVersion := modload.MainModules.GoVersion()
    	if modload.RootMode == modload.NoRoot && p.Module != nil {
    		// This is go install pkg@version or go run pkg@version.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. .github/workflows/codeql-analysis.yml

          matrix:
            # Override automatic language detection by changing the below list
            # Supported options are ['csharp', 'cpp', 'go', 'java', 'javascript', 'python']
            language: ['java', 'javascript']
            # Learn more...
            # https://docs.github.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#overriding-automatic-language-detection
    
        steps:
        - name: Checkout repository
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. pilot/pkg/xds/endpoints/endpoint_builder_test.go

    								FailoverPriority: []string{
    									"a",
    									"b",
    								},
    							},
    						},
    					},
    				},
    			},
    			expectedLabels: []byte("a:a b:b "),
    		},
    		{
    			name: "no outlier detection",
    			dr: &config.Config{
    				Spec: &networking.DestinationRule{
    					TrafficPolicy: &networking.TrafficPolicy{
    						LoadBalancer: &networking.LoadBalancerSettings{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/ResultsStoreHelper.java

            int firstDashIndex = channel.indexOf('-');
            if (firstDashIndex == -1) {
                return OperatingSystem.LINUX;
            }
            String prefix = channel.startsWith("flakiness-detection")
                ? "flakiness-detection"
                : channel.substring(0, firstDashIndex);
            String channelWithoutPrefix = channel.substring(prefix.length());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinModuleOutOfBlockModificationListener.kt

         * modifications.
         *
         * This event may be published for any and all source code changes, not just out-of-block modifications, to simplify the implementation
         * of modification detection.
         *
         * @see KotlinModificationTopics
         */
        public fun onModification(module: KtModule)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 987 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/developingPlugins/reactingToBuildFeatures/groovy/buildSrc/src/main/java/MyPlugin.java

            MyReport myReport = new MyReport();
            myReport.setConfigurationCacheUsage(configCacheUsage);
    
            boolean isolatedProjectsActive = buildFeatures.getIsolatedProjects().getActive() // <3>
                .get(); // the active state is always defined
            if (!isolatedProjectsActive) {
                myOptionalPluginLogicIncompatibleWithIsolatedProjects();
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top