Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for buildMap (0.15 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/buildtag/buildtag_old.go

    // license that can be found in the LICENSE file.
    
    // TODO(rsc): Delete this file once Go 1.17 comes out and we can retire Go 1.15 support.
    
    //go:build !go1.16
    // +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"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. src/cmd/vet/main.go

    	"golang.org/x/tools/go/analysis/passes/assign"
    	"golang.org/x/tools/go/analysis/passes/atomic"
    	"golang.org/x/tools/go/analysis/passes/bools"
    	"golang.org/x/tools/go/analysis/passes/buildtag"
    	"golang.org/x/tools/go/analysis/passes/cgocall"
    	"golang.org/x/tools/go/analysis/passes/composite"
    	"golang.org/x/tools/go/analysis/passes/copylock"
    	"golang.org/x/tools/go/analysis/passes/defers"
    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. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/AdHocCompositeDependencySubstitutionCrossVersionSpec.groovy

    @TargetGradleVersion(">=3.1")
    class AdHocCompositeDependencySubstitutionCrossVersionSpec extends ToolingApiSpecification implements WithOldConfigurationsSupport {
        TestFile buildA
        TestFile buildB
    
        def setup() {
    
            buildA = singleProjectBuildInRootFolder("buildA") {
                buildFile << """
                    apply plugin: 'java'
                    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/test/flagdefs.go

    }
    
    var passAnalyzersToVet = map[string]bool{
    	"appends":          true,
    	"asmdecl":          true,
    	"assign":           true,
    	"atomic":           true,
    	"bool":             true,
    	"bools":            true,
    	"buildtag":         true,
    	"buildtags":        true,
    	"cgocall":          true,
    	"composites":       true,
    	"copylocks":        true,
    	"defers":           true,
    	"directive":        true,
    	"errorsas":         true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 01:02:40 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. pilot/pkg/security/authz/builder/fuzz_test.go

    		option := fuzz.Struct[Option](fg)
    		b := New(bundle, push, policies, option)
    		if b == nil {
    			fg.T().Skip()
    			return // To help linter
    		}
    		b.BuildTCP()
    	})
    }
    
    func validatePush(in *model.PushContext) bool {
    	if in == nil {
    		return false
    	}
    	if in.AuthzPolicies == nil {
    		return false
    	}
    	return true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r34/BuildActionCrossVersionSpec.groovy

                        return null;
                    }
                }
            """
            def jar = temporaryFolder.file("work folder", "action-impl.jar")
            builder.buildJar(jar)
    
            when:
            def classloader = new URLClassLoader([jar.toURL()] as URL[], getClass().classLoader)
            def action = classloader.loadClass("ActionImpl").getConstructor().newInstance()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/directive/directive.go

    package comment, and only in package main or *_test.go files.
    
    Support for other known directives may be added in the future.
    
    This analyzer does not check //go:build, which is handled by the
    buildtag analyzer.
    `
    
    var Analyzer = &analysis.Analyzer{
    	Name: "directive",
    	Doc:  Doc,
    	URL:  "https://pkg.go.dev/golang.org/x/tools/go/analysis/passes/directive",
    	Run:  runDirective,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r33/IncompatibilityCrossVersionSpec.groovy

                        getInputs().dir("someDir");
                        getInputs();
                        getOutputs();
                    }
                }
            """
            builder.buildJar(pluginJar)
    
            buildFile << """
                buildscript {
                    dependencies {
                        classpath files("${pluginJar.toURI()}")
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsTestKitInjectedJavaPluginIntegrationTest.groovy

            javaPlugin(builder.sourceFile("SneakyPlugin.java"), read)
            builder.resourceFile("META-INF/gradle-plugins/sneaky.properties") << """
    implementation-class: SneakyPlugin
            """
            builder.buildJar(jar)
            buildFile << """
                plugins { id("sneaky") }
            """
        }
    
        static class TestKitBackedGradleExecuter extends AbstractGradleExecuter {
            List<File> pluginClasspath = []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/SettingsScriptExecutionIntegrationTest.groovy

            builder.sourceFile('org/gradle/test/BuildClass.java') << '''
                package org.gradle.test;
                public class BuildClass { }
            '''
            builder.buildJar(file("repo/test-1.3.jar"))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top