Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for tempdir (0.25 sec)

  1. src/cmd/go/go_test.go

    	// out of it.
    	tmpdir := hostLinkLine
    	i := strings.Index(tmpdir, `go.o"`)
    	if i == -1 {
    		t.Fatalf(`fail to find "go.o" in "host link:" line %q`, hostLinkLine)
    	}
    	tmpdir = tmpdir[:i-1]
    	i = strings.LastIndex(tmpdir, `"`)
    	if i == -1 {
    		t.Fatalf(`fail to find " in "host link:" line %q`, hostLinkLine)
    	}
    	tmpdir = tmpdir[i+1:]
    	// Verify that temp directory has been removed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  2. src/os/os_test.go

    	// Test with disk filesystem.
    	forceMFTUpdateOnWindows(t, "./testdata/dirfs")
    	fsys := DirFS("./testdata/dirfs")
    	tmpDir := t.TempDir()
    	if err := CopyFS(tmpDir, fsys); err != nil {
    		t.Fatal("CopyFS:", err)
    	}
    	forceMFTUpdateOnWindows(t, tmpDir)
    	tmpFsys := DirFS(tmpDir)
    	if err := fstest.TestFS(tmpFsys, "a", "b", "dir/x"); err != nil {
    		t.Fatal("TestFS:", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  3. src/testing/testing.go

    }
    
    // TempDir returns a temporary directory for the test to use.
    // The directory is automatically removed when the test and
    // all its subtests complete.
    // Each subsequent call to t.TempDir returns a unique directory;
    // if the directory creation fails, TempDir terminates the test by calling Fatal.
    func (c *common) TempDir() string {
    	c.checkFuzzFn("TempDir")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  4. src/net/http/fs_test.go

    func testFileServerImplicitLeadingSlash(t *testing.T, mode testMode) {
    	tempDir := t.TempDir()
    	if err := os.WriteFile(filepath.Join(tempDir, "foo.txt"), []byte("Hello world"), 0644); err != nil {
    		t.Fatalf("WriteFile: %v", err)
    	}
    	ts := newClientServerTest(t, mode, StripPrefix("/bar/", FileServer(Dir(tempDir)))).ts
    	get := func(suffix string) string {
    		res, err := ts.Client().Get(ts.URL + suffix)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  5. cmd/xl-storage_test.go

    	tmpDir := t.TempDir()
    
    	disk, err := newLocalXLStorage(tmpDir)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	disk.MakeVol(context.Background(), volume)
    	if _, err := disk.readMetadata(context.Background(), pathJoin(tmpDir, volume, object)); err != errFileNameTooLong {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/init.go

    				base.Fatal(ErrNoModRoot)
    			}
    			if !mustUseModules {
    				// GO111MODULE is 'auto', and we can't find a module root.
    				// Stay in GOPATH mode.
    				return
    			}
    		} else if search.InDir(modRoot, os.TempDir()) == "." {
    			// If you create /tmp/go.mod for experimenting,
    			// then any tests that create work directories under /tmp
    			// will find it and get modules when they're not expecting them.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  7. pkg/volume/csi/csi_mounter_test.go

    func TestMounterGetPath(t *testing.T) {
    	plug, tmpDir := newTestPlugin(t, nil)
    	defer os.RemoveAll(tmpDir)
    
    	// TODO (vladimirvivien) specName with slashes will not work
    	testCases := []struct {
    		name           string
    		specVolumeName string
    		path           string
    	}{
    		{
    			name:           "simple specName",
    			specVolumeName: "spec-0",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  8. pkg/kubelet/status/status_manager_test.go

    	podManager.(mutablePodManager).AddPod(getTestPod())
    	podStartupLatencyTracker := util.NewPodStartupLatencyTracker()
    	testRootDir := ""
    	if tempDir, err := os.MkdirTemp("", "kubelet_test."); err != nil {
    		return nil
    	} else {
    		testRootDir = tempDir
    	}
    	return NewManager(kubeClient, podManager, &statustest.FakePodDeletionSafetyProvider{}, podStartupLatencyTracker, testRootDir).(*manager)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/devicemanager/manager_test.go

    	resourceName1 := "domain1.com/resource1"
    	resourceName2 := "domain2.com/resource2"
    	resourceName3 := "domain2.com/resource3"
    	as := assert.New(t)
    	tmpDir, err := os.MkdirTemp("", "checkpoint")
    	as.Nil(err)
    	defer os.RemoveAll(tmpDir)
    	ckm, err := checkpointmanager.NewCheckpointManager(tmpDir)
    	as.Nil(err)
    	testManager := &ManagerImpl{
    		endpoints:         make(map[string]endpointInfo),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

    import okio.fakefilesystem.FakeFileSystem
    import org.junit.jupiter.api.AfterEach
    import org.junit.jupiter.api.Assumptions
    import org.junit.jupiter.api.Tag
    import org.junit.jupiter.api.Timeout
    import org.junit.jupiter.api.io.TempDir
    import org.junit.jupiter.params.ParameterizedTest
    import org.junit.jupiter.params.provider.ArgumentsSource
    
    class FileSystemParamProvider : SimpleProvider() {
      override fun arguments() =
        listOf(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
Back to top