Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for buildMap (0.16 sec)

  1. pilot/pkg/security/authz/builder/builder_test.go

    			policies := push.AuthzPolicies.ListAuthorizationPolicies(selectionOpts)
    			g := New(tc.tdBundle, push, policies, option)
    			if g == nil {
    				t.Fatalf("failed to create generator")
    			}
    			got := g.BuildTCP()
    			verify(t, convertTCP(got), baseDir, tc.want, true /* forTCP */)
    		})
    	}
    }
    
    func verify(t *testing.T, gots []proto.Message, baseDir string, wants []string, forTCP bool) {
    	t.Helper()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. src/cmd/vet/vet_test.go

    	cmd.Env = os.Environ()
    	return cmd
    }
    
    func TestVet(t *testing.T) {
    	t.Parallel()
    	for _, pkg := range []string{
    		"appends",
    		"asm",
    		"assign",
    		"atomic",
    		"bool",
    		"buildtag",
    		"cgo",
    		"composite",
    		"copylock",
    		"deadcode",
    		"directive",
    		"httpresponse",
    		"lostcancel",
    		"method",
    		"nilfunc",
    		"print",
    		"shift",
    		"slog",
    		"structtag",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 01:02:40 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    customize the filtering and prioritization of diagnostics based on the
    producing Analyzer and optional Category, according to the user's
    preferences.
    
    Most Analyzers inspect typed Go syntax trees, but a few, such as asmdecl
    and buildtag, inspect the raw text of Go source files or even non-Go
    files such as assembly. To report a diagnostic against a line of a
    raw text file, use the following sequence:
    
    	content, err := pass.ReadFile(filename)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorIntegrationTest.groovy

                class AnotherFoo extends org.gradle.other.Foo { }
            """
            builder.sourceFile("org/gradle/test/FileHelper.java") << """
                $fixture.fileHelperClass
            """
            builder.buildJar(workActionJar)
    
            fixture.addImportToBuildScript("org.gradle.test.TestWorkAction")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 31K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/buildid.go

    		mainpkg := a.Deps[0]
    		a.buildID = actionID + buildIDSeparator + mainpkg.buildID + buildIDSeparator + contentID
    	}
    
    	// If user requested -a, we force a rebuild, so don't use the cache.
    	if cfg.BuildA {
    		if p := a.Package; p != nil && !p.Stale {
    			p.Stale = true
    			p.StaleReason = "build -a flag in use"
    		}
    		// Begin saving output for later writing to cache.
    		a.output = []byte{}
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

            def builder = artifactBuilder()
            for (Map.Entry<String, String> entry : javaSourceFiles.entrySet()) {
                builder.sourceFile(entry.key + ".java").text = entry.value
            }
            builder.buildJar(jarFile)
        }
    
        public MavenFileRepository maven(TestFile repo) {
            return new MavenFileRepository(repo)
        }
    
        public MavenFileRepository maven(Object repo) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/ppc64/obj9.go

    var Linkppc64 = obj.LinkArch{
    	Arch:           sys.ArchPPC64,
    	Init:           buildop,
    	Preprocess:     preprocess,
    	Assemble:       span9,
    	Progedit:       progedit,
    	UnaryDst:       unaryDst,
    	DWARFRegisters: PPC64DWARFRegisters,
    }
    
    var Linkppc64le = obj.LinkArch{
    	Arch:           sys.ArchPPC64LE,
    	Init:           buildop,
    	Preprocess:     preprocess,
    	Assemble:       span9,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/gc.go

    	// We do this now when p==1.
    	// To limit parallelism, set GOMAXPROCS below numCPU; this may be useful
    	// on a low-memory builder, or if a deterministic build order is required.
    	c := runtime.GOMAXPROCS(0)
    	if cfg.BuildP == 1 {
    		// No process parallelism, do not cap compiler parallelism.
    		return c
    	}
    	// Some process parallelism. Set c to min(4, maxprocs).
    	if c > 4 {
    		c = 4
    	}
    	return c
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top