Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 973 for JOIN (0.07 sec)

  1. src/cmd/go/internal/vcweb/vcweb.go

    		},
    	}
    
    	if err := os.WriteFile(filepath.Join(s.homeDir, ".gitconfig"), []byte(gitConfig), 0644); err != nil {
    		return nil, err
    	}
    	gitConfigDir := filepath.Join(s.homeDir, ".config", "git")
    	if err := os.MkdirAll(gitConfigDir, 0755); err != nil {
    		return nil, err
    	}
    	if err := os.WriteFile(filepath.Join(gitConfigDir, "ignore"), []byte(""), 0644); err != nil {
    		return nil, err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/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: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. src/path/filepath/path_windows_test.go

    	// Make sure we have sufficient privilege to run mklink command.
    	testenv.MustHaveSymlink(t)
    
    	file := filepath.Join(tmpdir, "file")
    	err = os.WriteFile(file, []byte(""), 0666)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	target = filepath.Join(target, file[len(filepath.VolumeName(file)):])
    
    	filelink := filepath.Join(tmpdir, "filelink")
    	output, err = exec.Command("cmd", "/c", "mklink", filelink, target).CombinedOutput()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 20:38:54 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  4. pkg/volume/local/local_test.go

    		"pod-mount": {
    			[]string{filepath.Join(podsDir, "pod-mount")},
    			[]string{filepath.Join(podsDir, "pod-mount")},
    		},
    		"not-directory-prefix": {
    			[]string{podsDir + "pod-mount"},
    			[]string{},
    		},
    		"mix": {
    			[]string{"/mnt/outside",
    				filepath.Join(podsDir, "pod-mount"),
    				"/another/outside",
    				filepath.Join(podsDir, "pod-mount2")},
    			[]string{filepath.Join(podsDir, "pod-mount"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 10:53:39 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  5. android/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/cmd/cgo/internal/testplugin/plugin_test.go

    		log.Fatal(err)
    	}
    	goroot = filepath.Join(cwd, "../../../../..")
    
    	// Copy testdata into GOPATH/src/testplugin, along with a go.mod file
    	// declaring the same path.
    
    	GOPATH, err := os.MkdirTemp("", "plugin_test")
    	if err != nil {
    		log.Panic(err)
    	}
    	defer os.RemoveAll(GOPATH)
    	tmpDir = GOPATH
    	fmt.Printf("TMPDIR=%s\n", tmpDir)
    
    	modRoot := filepath.Join(GOPATH, "src", "testplugin")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  7. istioctl/pkg/workload/workload_test.go

    			"ingressIP":  "fd00:10:96::2",
    		},
    	}
    	for _, dir := range files {
    		if !dir.IsDir() {
    			continue
    		}
    		testdir := path.Join("testdata/vmconfig", dir.Name())
    		t.Cleanup(func() {
    			for k := range generated {
    				os.Remove(path.Join(testdir, k))
    			}
    		})
    		t.Run(dir.Name(), func(t *testing.T) {
    			createClientFunc := func(client kube.CLIClient) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/locking/DefaultDependencyLockingProviderTest.groovy

    ${modules.toSorted().collect {"$it=$lockFileId"}.join('\n')}
    empty=
    """.denormalize()
            } else {
                lockDir.file("${lockFileId}.lockfile") << """${LockFileReaderWriter.LOCKFILE_HEADER_LIST.join('\n')}
    ${modules.toSorted().join('\n')}
    """.denormalize()
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/util/concurrent/AbstractExecutionThreadServiceTest.java

        service.stopAsync().awaitTerminated();
        assertTrue(service.shutDownCalled);
        assertEquals(Service.State.TERMINATED, service.state());
        executionThread.join();
      }
    
      public void testServiceStopIdempotence() throws Exception {
        WaitOnRunService service = new WaitOnRunService();
    
        service.startAsync().awaitRunning();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/elf_test.go

    	dir := t.TempDir()
    
    	const prog = `
    package main
    
    import "net"
    
    func main() {
    	net.Dial("", "")
    }
    `
    	src := filepath.Join(dir, "issue33358.go")
    	if err := os.WriteFile(src, []byte(prog), 0666); err != nil {
    		t.Fatal(err)
    	}
    
    	binFile := filepath.Join(dir, "issue33358")
    	cmd := testenv.Command(t, testenv.GoToolPath(t), "build", "-o", binFile, src)
    	if out, err := cmd.CombinedOutput(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top