Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 170 for tempdir (0.16 sec)

  1. pkg/volume/git_repo/git_repo_test.go

    	tempDir, err := ioutil.TempDir("", "git_repo_test.")
    	if err != nil {
    		t.Fatalf("can't make a temp rootdir: %v", err)
    	}
    	return tempDir, volumetest.NewFakeVolumeHost(t, tempDir, nil, emptydir.ProbeVolumePlugins())
    }
    
    func TestCanSupport(t *testing.T) {
    	plugMgr := volume.VolumePluginMgr{}
    	tempDir, host := newTestHost(t)
    	defer os.RemoveAll(tempDir)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 08:26:26 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. src/os/os_windows_test.go

    	}
    }
    
    func TestOpenVolumeName(t *testing.T) {
    	tmpdir := t.TempDir()
    	chdir(t, tmpdir)
    
    	want := []string{"file1", "file2", "file3", "gopher.txt"}
    	slices.Sort(want)
    	for _, name := range want {
    		err := os.WriteFile(filepath.Join(tmpdir, name), nil, 0777)
    		if err != nil {
    			t.Fatal(err)
    		}
    	}
    
    	f, err := os.Open(filepath.VolumeName(tmpdir))
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/project/ProjectBuilderTest.java

        }
    
        @Test
        void testReadModifiedPoms(@TempDir Path tempDir) throws Exception {
            // TODO a similar test should be created to test the dependency management (basically all usages
            // of DefaultModelBuilder.getCache() are affected by MNG-6530
    
            FileUtils.copyDirectoryStructure(new File("src/test/resources/projects/grandchild-check"), tempDir.toFile());
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  4. cmd/kube-proxy/app/server_linux_test.go

    		if err != nil {
    			return nil, "", fmt.Errorf("unexpected error when writing content to temp kube-proxy config file: %v", err)
    		}
    
    		return file, tempDir, nil
    	}
    
    	tearDown := func(file *os.File, tempDir string) {
    		file.Close()
    		os.RemoveAll(tempDir)
    	}
    
    	testCases := []struct {
    		name        string
    		proxyServer proxyRun
    		append      bool
    		expectedErr string
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/test/pgo_inl_test.go

    	if err != nil {
    		t.Fatalf("error getting wd: %v", err)
    	}
    	srcDir := filepath.Join(wd, "testdata/pgo/inline")
    
    	// Copy the module to a scratch location so we can add a go.mod.
    	dir := t.TempDir()
    
    	for _, file := range []string{"inline_hot.go", "inline_hot_test.go", profFile} {
    		if err := copyFile(filepath.Join(dir, file), filepath.Join(srcDir, file)); err != nil {
    			t.Fatalf("error copying %s: %v", file, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testsanitizers/cc_test.go

    	return filepath.Join("testdata", path)
    }
    
    // A tempDir manages a temporary directory within a test.
    type tempDir struct {
    	base string
    }
    
    func (d *tempDir) RemoveAll(t *testing.T) {
    	t.Helper()
    	if d.base == "" {
    		return
    	}
    	if err := os.RemoveAll(d.base); err != nil {
    		t.Fatalf("Failed to remove temp dir: %v", err)
    	}
    }
    
    func (d *tempDir) Base() string {
    	return d.base
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 20:00:56 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  7. src/testing/testing_test.go

    				t.Fatal("never received dir channel")
    			}
    		}
    	})
    
    	dir := t.TempDir()
    	if dir == "" {
    		t.Fatal("expected dir")
    	}
    	dir2 := t.TempDir()
    	if dir == dir2 {
    		t.Fatal("subsequent calls to TempDir returned the same directory")
    	}
    	if filepath.Dir(dir) != filepath.Dir(dir2) {
    		t.Fatalf("calls to TempDir do not share a parent; got %q, %q", dir, dir2)
    	}
    	dirCh <- dir
    	fi, err := os.Stat(dir)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/constants/constants.go

    	tempDir := filepath.Join(KubernetesDir, TempDirForKubeadm)
    	if len(kubernetesDir) != 0 {
    		tempDir = filepath.Join(kubernetesDir, TempDirForKubeadm)
    	}
    
    	// creates target folder if not already exists
    	if err := os.MkdirAll(tempDir, 0700); err != nil {
    		return "", errors.Wrapf(err, "failed to create directory %q", tempDir)
    	}
    
    	tempDir, err := os.MkdirTemp(tempDir, dirName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilderTest.groovy

        def spec = new DefaultJavaCompileSpec()
        def builder = new JavaCompilerArgumentsBuilder(spec)
    
        def setup() {
            spec.tempDir = tempDir.file("tmp")
            spec.compileOptions = TestUtil.newInstance(CompileOptions, TestUtil.objectFactory())
        }
    
        def "generates options for an unconfigured spec"() {
            expect:
            builder.build() == defaultOptions
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:36 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/dwarf_test.go

    	if runtime.GOOS != "darwin" {
    		t.Skip("skipping; test only interesting on darwin")
    	}
    
    	tmpdir := t.TempDir()
    
    	wd, err := os.Getwd()
    	if err != nil {
    		t.Fatalf("where am I? %v", err)
    	}
    	pdir := filepath.Join(wd, "testdata", "issue32233", "main")
    	f := gobuildTestdata(t, tmpdir, pdir, DefaultOpt)
    	f.Close()
    }
    
    func TestWindowsIssue36495(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
Back to top