Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for ccArgs (0.19 sec)

  1. src/cmd/cgo/internal/testcarchive/carchive_test.go

    			os.Remove(libgoh)
    		}()
    	}
    
    	ccArgs := append(cc, "-o", exe, "main.c")
    	if GOOS == "windows" {
    		ccArgs = append(ccArgs, "main_windows.c", libgoa, "-lntdll", "-lws2_32", "-lwinmm")
    	} else {
    		ccArgs = append(ccArgs, "main_unix.c", libgoa)
    	}
    	if runtime.Compiler == "gccgo" {
    		ccArgs = append(ccArgs, "-lgo")
    	}
    	t.Log(ccArgs)
    	if out, err := exec.Command(ccArgs[0], ccArgs[1:]...).CombinedOutput(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  2. operator/cmd/mesh/operator-common.go

    		Tag               string
    		ImagePullSecrets  []string
    		Revision          string
    	}{
    		IstioNamespace:    ocArgs.istioNamespace,
    		WatchedNamespaces: ocArgs.watchedNamespaces,
    		Hub:               ocArgs.hub,
    		Tag:               ocArgs.tag,
    		ImagePullSecrets:  ocArgs.imagePullSecrets,
    		Revision:          ocArgs.revision,
    	}
    	vals, err := util.RenderTemplate(tmpl, tv)
    	if err != nil {
    		return "", "", err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Dec 17 02:25:04 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testfortran/fortran_test.go

    		os.Setenv("CGO_LDFLAGS", cgoLDFlags)
    
    	}
    
    	// Do a test build that doesn't involve Go FORTRAN support.
    	fcArgs := append([]string{"testdata/helloworld/helloworld.f90", "-o", "/dev/null"}, fcExtra...)
    	t.Logf("%s %s", fc, fcArgs)
    	if err := exec.Command(fc, fcArgs...).Run(); err != nil {
    		t.Skipf("skipping Fortran test: could not build helloworld.f90 with %s: %s", fc, err)
    	}
    
    	// Finally, run the actual test.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 01:29:16 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/gccgo.go

    	out := "_go_.o"
    	ofile = objdir + out
    	gcargs := []string{"-g"}
    	gcargs = append(gcargs, b.gccArchArgs()...)
    	gcargs = append(gcargs, "-fdebug-prefix-map="+b.WorkDir+"=/tmp/go-build")
    	gcargs = append(gcargs, "-gno-record-gcc-switches")
    	if pkgpath := gccgoPkgpath(p); pkgpath != "" {
    		gcargs = append(gcargs, "-fgo-pkgpath="+pkgpath)
    	}
    	if p.Internal.LocalPrefix != "" {
    		gcargs = append(gcargs, "-fgo-relative-import-path="+p.Internal.LocalPrefix)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. tests/integration/pilot/revisions/revision_tag_test.go

    				})
    			}
    		})
    }
    
    func verifyRevision(t framework.TestContext, i istioctl.Instance, podName, podNamespace, revision string) {
    	t.Helper()
    	pcArgs := []string{"pc", "bootstrap", podName, "-n", podNamespace}
    	bootstrapConfig, _ := i.InvokeOrFail(t, pcArgs)
    	expected := fmt.Sprintf("\"discoveryAddress\": \"istiod-%s.istio-system.svc:15012\"", revision)
    	if !strings.Contains(bootstrapConfig, expected) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. src/runtime/sys_windows_arm64.s

    	STP	(R4, R5), (4*8)(R14)
    	STP	(R6, R7), (6*8)(R14)
    
    	// Push C callee-save registers R19-R28.
    	// LR, FP already saved.
    	SAVE_R19_TO_R28(8*9)
    
    	// Create a struct callbackArgs on our stack.
    	MOVD	$cbargs-(18*8+callbackArgs__size)(SP), R13
    	MOVD	R12, callbackArgs_index(R13)	// callback index
    	MOVD	R14, R0
    	MOVD	R0, callbackArgs_args(R13)		// address of args vector
    	MOVD	$0, R0
    	MOVD	R0, callbackArgs_result(R13)	// result
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 15:56:43 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/sidecar_simulation_test.go

    {{ end }}
    {{ with .PortMatch }}
        match:
        - port: {{.}}
    {{ end }}
    `, args)
    	default:
    		panic(variant + " unknown")
    	}
    }
    
    type scArgs struct {
    	Namespace string
    	Egress    []string
    }
    
    func (args scArgs) Config(t *testing.T, variant string) string {
    	return tmpl.MustEvaluate(`apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: "{{.Namespace}}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  8. src/cmd/cover/cfg_test.go

    		t.Fatalf("meta-data file not created: %v", err)
    	} else {
    		inf.Close()
    	}
    
    	// Make sure it is digestible.
    	cdargs := []string{"tool", "covdata", "percent", "-i", mdir}
    	cmd := testenv.Command(t, testenv.GoToolPath(t), cdargs...)
    	run(cmd, t)
    }
    
    func testCoverNoTestsNoFuncs(t *testing.T) {
    	t.Parallel()
    	dir := tempDir(t)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 12:51:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. tools/docker-builder/main.go

    	}
    }
    
    // RunCommand runs a command for the repo, with standard environment variables set
    func RunCommand(args Args, c string, cargs ...string) error {
    	cmd := VerboseCommand(c, cargs...)
    	cmd.Env = StandardEnv(args)
    	cmd.Stderr = os.Stderr
    	cmd.Stdout = os.Stdout
    	cmd.Dir = testenv.IstioSrc
    	return cmd.Run()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  10. operator/cmd/mesh/manifest_shared_test.go

    // The installation is for testing with a kubebuilder fake cluster only, since no functional Deployment will be
    // created.
    func fakeInstallOperator(reconciler *helmreconciler.HelmReconciler, chartSource chartSourceType) error {
    	ocArgs := &operatorCommonArgs{
    		manifestsPath:     string(chartSource),
    		istioNamespace:    constants.IstioSystemNamespace,
    		watchedNamespaces: constants.IstioSystemNamespace,
    		operatorNamespace: operatorDefaultNamespace,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 20 22:39:28 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top