Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for moveFile (0.61 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/transaction/CompileTransaction.java

            for (File fileToDelete : collectFilesToDelete(classesToDelete, resourcesToDelete)) {
                File stashedFile = new File(stashDirectory, fileToDelete.getName() + ".uniqueId" + uniqueId++);
                moveFile(fileToDelete, stashedFile);
                stashedFiles.add(new StashedFile(fileToDelete, stashedFile));
            }
            return stashedFiles;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GFileUtils.java

            } finally {
                IoActions.closeQuietly(out);
            }
        }
    
        public static void moveFile(File source, File destination) {
            try {
                FileUtils.moveFile(source, destination);
            } catch (IOException e) {
                throw new UncheckedIOException(e);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/upgrade/staticpods.go

    }
    
    // MoveFile should move a file from oldPath to newPath
    func (spm *KubeStaticPodPathManager) MoveFile(oldPath, newPath string) error {
    	return kubeadmutil.MoveFile(oldPath, newPath)
    }
    
    // KubernetesDir should point to the directory Kubernetes owns for storing various configuration files
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/util/GFileUtils.java

                IoActions.closeQuietly(out);
            }
        }
    
        public static void moveFile(File source, File destination) {
            logDeprecation();
            moveFileInternal(source, destination);
        }
    
        private static void moveFileInternal(File source, File destination) {
            try {
                FileUtils.moveFile(source, destination);
            } catch (IOException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/upgrade/staticpods_test.go

    		tempManifestDir:   upgradedManifestDir,
    		backupManifestDir: backupManifestDir,
    		backupEtcdDir:     backupEtcdDir,
    		MoveFileFunc:      moveFileFunc,
    	}, nil
    }
    
    func (spm *fakeStaticPodPathManager) MoveFile(oldPath, newPath string) error {
    	return spm.MoveFileFunc(oldPath, newPath)
    }
    
    func (spm *fakeStaticPodPathManager) KubernetesDir() string {
    	return spm.kubernetesDir
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 32K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractSourceIncrementalCompilationIntegrationTest.groovy

            source('class A1 {}')
            file("extra/A2.${languageName}") << "class A2 {}"
            def movedFile = file("extra/some/dir/B.${languageName}") << """package some.dir;
            public class B {
                public static class Inner { }
            }"""
    
            run language.compileTaskName
    
            when:
            movedFile.moveToDirectory(file("src/main/${languageName}/some/dir"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/LOONG64.rules

    // large or unaligned zeroing uses a loop
    (Zero [s] {t} ptr mem)
    	&& (s > 8*128 || config.noDuffDevice) || t.Alignment()%8 != 0 =>
    	(LoweredZero [t.Alignment()]
    		ptr
    		(ADDVconst <ptr.Type> ptr [s-moveSize(t.Alignment(), config)])
    		mem)
    
    // moves
    (Move [0] _ _ mem) => mem
    (Move [1] dst src mem) => (MOVBstore dst (MOVBload src mem) mem)
    (Move [2] {t} dst src mem) && t.Alignment()%2 == 0 =>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/RISCV64.rules

    	(DUFFZERO [8 * (128 - s/8)] ptr mem)
    
    // Generic zeroing uses a loop
    (Zero [s] {t} ptr mem) =>
    	(LoweredZero [t.Alignment()]
    		ptr
    		(ADD <ptr.Type> ptr (MOVDconst [s-moveSize(t.Alignment(), config)]))
    		mem)
    
    // Checks
    (IsNonNil ...) => (SNEZ ...)
    (IsInBounds ...) => (Less64U ...)
    (IsSliceInBounds ...) => (Leq64U ...)
    
    // Trivial lowering
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 40.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/MIPS.rules

    // large or unaligned zeroing uses a loop
    (Zero [s] {t} ptr mem)
    	&& (s > 16  || t.Alignment()%4 != 0) =>
    	(LoweredZero [int32(t.Alignment())]
    		ptr
    		(ADDconst <ptr.Type> ptr [int32(s-moveSize(t.Alignment(), config))])
    		mem)
    
    // moves
    (Move [0] _ _ mem) => mem
    (Move [1] dst src mem) => (MOVBstore dst (MOVBUload src mem) mem)
    (Move [2] {t} dst src mem) && t.Alignment()%2 == 0 =>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 35.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/MIPS64.rules

    // large or unaligned zeroing uses a loop
    (Zero [s] {t} ptr mem)
    	&& (s > 8*128 || config.noDuffDevice) || t.Alignment()%8 != 0 =>
    	(LoweredZero [t.Alignment()]
    		ptr
    		(ADDVconst <ptr.Type> ptr [s-moveSize(t.Alignment(), config)])
    		mem)
    
    // moves
    (Move [0] _ _ mem) => mem
    (Move [1] dst src mem) => (MOVBstore dst (MOVBload src mem) mem)
    (Move [2] {t} dst src mem) && t.Alignment()%2 == 0 =>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 41.9K bytes
    - Viewed (0)
Back to top