Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getTempDir (0.24 sec)

  1. cmd/kubeadm/app/phases/upgrade/staticpods_test.go

    		t.Run(test.name, func(t *testing.T) {
    			realKubernetesDir, cleanup := getTempDir(t, "realKubernetesDir")
    			defer cleanup()
    
    			tempManifestDir, cleanup := getTempDir(t, "tempManifestDir")
    			defer cleanup()
    
    			backupManifestDir, cleanup := getTempDir(t, "backupManifestDir")
    			defer cleanup()
    
    			backupEtcdDir, cleanup := getTempDir(t, "backupEtcdDir")
    			defer cleanup()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 32K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/io/FilesTest.java

      }
    
      public void testCreateParentDirs_noParentsNeeded() throws IOException {
        File file = file(getTempDir(), "nonexistent.file");
        assertTrue(file.getParentFile().exists());
        Files.createParentDirs(file);
      }
    
      public void testCreateParentDirs_oneParentNeeded() throws IOException {
        File file = file(getTempDir(), "parent", "nonexistent.file");
        File parent = file.getParentFile();
        assertFalse(parent.exists());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/io/FilesTest.java

      }
    
      public void testCreateParentDirs_noParentsNeeded() throws IOException {
        File file = file(getTempDir(), "nonexistent.file");
        assertTrue(file.getParentFile().exists());
        Files.createParentDirs(file);
      }
    
      public void testCreateParentDirs_oneParentNeeded() throws IOException {
        File file = file(getTempDir(), "parent", "nonexistent.file");
        File parent = file.getParentFile();
        assertFalse(parent.exists());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/swift/SwiftCompiler.java

                        newInvocation("compiling swift file(s)", objectDir, Iterables.concat(genericArgs, outputArgs, importRootArgs), spec.getOperationLogger());
                    perFileInvocation.getEnvironment().put("TMPDIR", spec.getTempDir().getAbsolutePath());
                    buildQueue.add(perFileInvocation);
                }
            };
        }
    
        private static class SwiftCompileArgsTransformer implements ArgsTransformer<SwiftCompileSpec> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/transaction/CompileTransaction.java

            Map<GeneratedResource.Location, PatternSet> resourcesToDelete,
            FileOperations fileOperations,
            Deleter deleter
        ) {
            this.spec = spec;
            this.tempDir = new File(spec.getTempDir(), "compileTransaction");
            this.stashDirectory = new File(tempDir, "stash-dir");
            this.backupDirectory = new File(tempDir, "backup-dir");
            this.classesToDelete = classesToDelete;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 13.3K bytes
    - Viewed (0)
Back to top