Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for extldflags (0.1 sec)

  1. operator/pkg/manifest/shared.go

    	logger clog.Logger,
    ) (*iopv1alpha1.IstioOperator, error) {
    	extraFlags := make([]string, 0)
    	if manifestsPath != "" {
    		extraFlags = append(extraFlags, fmt.Sprintf("installPackagePath=%s", manifestsPath))
    	}
    	if revision != "" {
    		extraFlags = append(extraFlags, fmt.Sprintf("revision=%s", revision))
    	}
    	_, mergedIOP, err := OverlayYAMLStrings(profile, userIOPStr, extraFlags, false, client, logger)
    	if err != nil {
    		return nil, err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 06:27:07 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/pkg.go

    		// https://go.dev/issue/52372: only include ldflags if -trimpath is not set,
    		// since it can include system paths through various linker flags (notably
    		// -extar, -extld, and -extldflags).
    		//
    		// TODO: since we control cmd/link, in theory we can parse ldflags to
    		// determine whether they may refer to system paths. If we do that, we can
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  3. operator/cmd/mesh/manifest-generate_test.go

    		mustNotSelect(t, mustGetLabels(t, pdbRev, "spec.selector.matchLabels"), podLabels15)
    	})
    }
    
    // TestLDFlags checks whether building mesh command with
    // -ldflags "-X istio.io/istio/pkg/version.buildHub=myhub -X istio.io/istio/pkg/version.buildVersion=mytag"
    // results in these values showing up in a generated manifest.
    func TestLDFlags(t *testing.T) {
    	tmpHub, tmpTag := version.DockerInfo.Hub, version.DockerInfo.Tag
    	defer func() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
Back to top