Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,029 for JOIN (0.23 sec)

  1. src/cmd/link/internal/ld/ld_test.go

    		t.Skip("no need for test on " + pair)
    	}
    	switch runtime.GOOS {
    	case "openbsd", "windows":
    		t.Skip("c-archive unsupported")
    	}
    	dir := t.TempDir()
    
    	srcfile := filepath.Join(dir, "test.go")
    	arfile := filepath.Join(dir, "test.a")
    	if err := os.WriteFile(srcfile, []byte(carchiveSrcText), 0666); err != nil {
    		t.Fatal(err)
    	}
    
    	ldf := fmt.Sprintf("-ldflags=-v -tmpdir=%s", dir)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 05:45:53 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/CollectionUtils.java

         *
         * <pre>
         * expect:
         * join(",", new Object[]{"a"}) == "a"
         * join(",", new Object[]{"a", "b", "c"}) == "a,b,c"
         * join(",", new Object[]{}) == ""
         * </pre>
         *
         * The {@code separator} must not be null and {@code objects} must not be null.
         *
         * @param separator The string by which to join each string representation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/cfg/cfg.go

    	BuildContext.GOROOT = goroot
    
    	GOROOT = goroot
    	if goroot == "" {
    		GOROOTbin = ""
    		GOROOTpkg = ""
    		GOROOTsrc = ""
    	} else {
    		GOROOTbin = filepath.Join(goroot, "bin")
    		GOROOTpkg = filepath.Join(goroot, "pkg")
    		GOROOTsrc = filepath.Join(goroot, "src")
    	}
    
    	installedGOOS = runtime.GOOS
    	installedGOARCH = runtime.GOARCH
    	if isTestGo {
    		if testOS := os.Getenv("TESTGO_GOHOSTOS"); testOS != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  4. pkg/kubelet/kubeletconfig/util/files/files_test.go

    		// allocate dirs
    		for _, f := range c.expects {
    			if f.mode.IsDir() {
    				path := filepath.Join(dir, f.name)
    				if _, ok := dirs[path]; !ok {
    					dirs[path] = map[string]string{}
    				}
    			} else if f.mode.IsRegular() {
    				path := filepath.Join(dir, filepath.Dir(f.name))
    				if _, ok := dirs[path]; !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 07 11:36:13 UTC 2022
    - 11.7K bytes
    - Viewed (0)
  5. operator/cmd/mesh/manifest-generate_test.go

    	tmpDir := t.TempDir()
    	tmpCharts := chartSourceType(filepath.Join(tmpDir, operatorSubdirFilePath))
    	err := copyDir(string(liveCharts), string(tmpCharts))
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	rs, err := readFile(filepath.Join(testDataDir, "input-extra-resources", testResourceFile+".yaml"))
    	if err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/internal/CollectionUtilsTest.groovy

        def "joining"() {
            expect:
            join(",", [1, 2, 3]) == "1,2,3"
            join(",", [1]) == "1"
            join(",", []) == ""
    
            and:
            join(",", [1, 2, 3].toArray()) == "1,2,3"
            join(",", [1].toArray()) == "1"
            join(",", [].toArray()) == ""
        }
    
        def "joining with nulls"() {
            when:
            join(separator, objects)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  7. pilot/pkg/xds/sds_test.go

    		credentials.GenericScrtKey:    readFile(filepath.Join(certDir, "dns/key.pem")),
    		credentials.GenericScrtCaCert: readFile(filepath.Join(certDir, "dns/root-cert.pem")),
    	})
    	genericMtlsCertCrl = makeSecret("generic-mtls-crl", map[string]string{
    		credentials.GenericScrtCert:   readFile(filepath.Join(certDir, "dns/cert-chain.pem")),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  8. misc/ios/go_ios_exec.go

    	}
    	if err := os.WriteFile(filepath.Join(appdir, "Info.plist"), []byte(infoPlist(pkgpath)), 0744); err != nil {
    		return err
    	}
    	if err := os.WriteFile(filepath.Join(appdir, "ResourceRules.plist"), []byte(resourceRules), 0744); err != nil {
    		return err
    	}
    	return nil
    }
    
    func signApp(appdir string) error {
    	entitlementsPath := filepath.Join(tmpdir, "Entitlements.plist")
    	cmd := exec.Command(
    		"codesign",
    		"-f",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 23.4K bytes
    - Viewed (0)
  9. tests/integration/pilot/istioctl_test.go

    			jsonOutput := jsonUnmarshallOrFail(t, strings.Join(args, " "), output)
    			g.Expect(jsonOutput).To(HaveKey("bootstrap"))
    
    			args = []string{
    				"--namespace=dummy",
    				"pc", "cluster", fmt.Sprintf("%s.%s", podID, apps.Namespace.Name()), "-o", "json",
    			}
    			output, _ = istioCtl.InvokeOrFail(t, args)
    			jsonOutput = jsonUnmarshallOrFail(t, strings.Join(args, " "), output)
    			g.Expect(jsonOutput).To(Not(BeEmpty()))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. src/go/types/stdlib_test.go

    		// cmd/distpack also requires GOROOT/VERSION to exist, so use that to
    		// suppress false-positive skips.
    		if _, err := os.Stat(filepath.Join(testenv.GOROOT(t), "test")); os.IsNotExist(err) {
    			if _, err := os.Stat(filepath.Join(testenv.GOROOT(t), "VERSION")); err == nil {
    				t.Skipf("skipping: GOROOT/test not present")
    			}
    		}
    		t.Fatal(err)
    	}
    
    	excluded := make(map[string]bool)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 04:39:56 UTC 2023
    - 13.7K bytes
    - Viewed (0)
Back to top