Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,016 for JOIN (0.19 sec)

  1. src/go/build/build_test.go

    	if err := os.MkdirAll(filepath.Join(gopath, "src/example.com/p"), 0777); err != nil {
    		t.Fatal(err)
    	}
    	if err := os.WriteFile(filepath.Join(gopath, "src/example.com/p/p.go"), []byte("package p"), 0666); err != nil {
    		t.Fatal(err)
    	}
    
    	t.Setenv("GO111MODULE", "on")
    	t.Setenv("GOPATH", gopath)
    	ctxt := Default
    	ctxt.GOPATH = gopath
    	ctxt.Dir = filepath.Join(gopath, "src/example.com/p")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/etcd/local.go

    		{Name: "cert-file", Value: filepath.Join(cfg.CertificatesDir, kubeadmconstants.EtcdServerCertName)},
    		{Name: "key-file", Value: filepath.Join(cfg.CertificatesDir, kubeadmconstants.EtcdServerKeyName)},
    		{Name: "trusted-ca-file", Value: filepath.Join(cfg.CertificatesDir, kubeadmconstants.EtcdCACertName)},
    		{Name: "client-cert-auth", Value: "true"},
    		{Name: "peer-cert-file", Value: filepath.Join(cfg.CertificatesDir, kubeadmconstants.EtcdPeerCertName)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 13.8K bytes
    - Viewed (1)
  3. pkg/volume/util/subpath/subpath_windows.go

    		return path, nil
    	}
    	// If the target is not an absolute path, join iit with the current upperpath
    	if !filepath.IsAbs(linkedPath) {
    		linkedPath = filepath.Join(getUpperPath(upperpath), linkedPath)
    	}
    	nextLink, err := evalSymlink(linkedPath)
    	if err != nil {
    		return path, err
    	}
    	return filepath.Join(nextLink, base), nil
    }
    
    // check whether hostPath is within volume path
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 12:57:11 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  4. src/cmd/go/script_test.go

    	telemetryDir = filepath.Join(work, "telemetry")
    	must(os.MkdirAll(telemetryDir, 0777))
    	must(s.Setenv("TEST_TELEMETRY_DIR", filepath.Join(work, "telemetry")))
    
    	must(os.MkdirAll(filepath.Join(work, "tmp"), 0777))
    	must(s.Setenv(tempEnvName(), filepath.Join(work, "tmp")))
    
    	gopath := filepath.Join(work, "gopath")
    	must(s.Setenv("GOPATH", gopath))
    	gopathSrc := filepath.Join(gopath, "src")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/primitives/UnsignedIntsTest.java

      }
    
      public void testJoin() {
        assertThat(join()).isEmpty();
        assertThat(join(1)).isEqualTo("1");
        assertThat(join(1, 2)).isEqualTo("1,2");
        assertThat(join(-1, Integer.MIN_VALUE)).isEqualTo("4294967295,2147483648");
    
        assertThat(UnsignedInts.join("", 1, 2, 3)).isEqualTo("123");
      }
    
      private static String join(int... values) {
        return UnsignedInts.join(",", values);
      }
    
      @J2ktIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 06 16:10:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. src/runtime/syscall_windows_test.go

    			src := fmt.Sprintf(`
    		#include <stdint.h>
    		#include <windows.h>
    		int cfunc(%s) { return %s; }`, strings.Join(args, ", "), strings.Join(rets, " && "))
    
    			tmpdir := t.TempDir()
    
    			srcname := "mydll.c"
    			err := os.WriteFile(filepath.Join(tmpdir, srcname), []byte(src), 0)
    			if err != nil {
    				t.Fatal(err)
    			}
    			outname := "mydll.dll"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 31 16:31:35 UTC 2023
    - 32.5K bytes
    - Viewed (0)
  7. pkg/kubelet/certificate/bootstrap/bootstrap_test.go

    					CertFile: filepath.Join(fileDir, "mycertvalid.crt"),
    					KeyFile:  filepath.Join(fileDir, "mycertvalid.key"),
    				},
    				BearerToken: "",
    			},
    			expectedClientConfig: &restclient.Config{
    				Host: "https://cluster-b.com",
    				TLSClientConfig: restclient.TLSClientConfig{
    					CertFile: filepath.Join(fileDir, "mycertvalid.crt"),
    					KeyFile:  filepath.Join(fileDir, "mycertvalid.key"),
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 09 14:24:11 UTC 2023
    - 13K bytes
    - Viewed (0)
  8. tensorflow/c/eager/parallel_device/parallel_device_lib.h

      // A non-blocking version of `Execute`. After each call, `Join` must be called
      // before `StartExecute` is called again. Using `StartExecute` with `Join`
      // allows the caller to schedule computation on multiple ParallelDevices
      // without sequencing those operations (first call `StartExecute` on each
      // parallel device, then call `Join` on each; even if some of the `Join`s
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 25 15:21:13 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  9. src/os/os_windows_test.go

    	chdir(t, tmpdir)
    
    	dir := filepath.Join(tmpdir, "dir")
    	err := os.Mkdir(dir, 0777)
    	if err != nil {
    		t.Fatal(err)
    	}
    	fi, err := os.Stat(dir)
    	if err != nil {
    		t.Fatal(err)
    	}
    	err = os.WriteFile(filepath.Join(dir, "abc"), []byte("abc"), 0644)
    	if err != nil {
    		t.Fatal(err)
    	}
    	for _, test := range tests {
    		link := filepath.Join(tmpdir, test.name+"_link")
    		err := test.mklink(link, dir)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  10. callbacks/preload.go

    	}
    	sort.Strings(preloadNames)
    
    	isJoined := func(name string) (joined bool, nestedJoins []string) {
    		for _, join := range joins {
    			if _, ok := relationships.Relations[join]; ok && name == join {
    				joined = true
    				continue
    			}
    			joinNames := strings.SplitN(join, ".", 2)
    			if len(joinNames) == 2 {
    				if _, ok := relationships.Relations[joinNames[0]]; ok && name == joinNames[0] {
    					joined = true
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top