Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 146 for copyfile (0.24 sec)

  1. src/cmd/dist/build.go

    		// For use by assembly and C files.
    		copyfile(pathf("%s/pkg/include/textflag.h", goroot),
    			pathf("%s/src/runtime/textflag.h", goroot), 0)
    		copyfile(pathf("%s/pkg/include/funcdata.h", goroot),
    			pathf("%s/src/runtime/funcdata.h", goroot), 0)
    		copyfile(pathf("%s/pkg/include/asm_ppc64x.h", goroot),
    			pathf("%s/src/runtime/asm_ppc64x.h", goroot), 0)
    		copyfile(pathf("%s/pkg/include/asm_amd64.h", goroot),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  2. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/nativeplatform/RealWorldNativePluginPerformanceTest.groovy

                                file.text = originalContent
                            } else {
                                originalContent = file.text
                                FileUtils.copyFile(file, backupFile)
                            }
                            originalContentFor = file
                        }
                        if (context.iteration % 2 == 0) {
                            println "Changing $file"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_filesystem.h

    void Stat(const TF_Filesystem* filesystem, const char* path,
              TF_FileStatistics* stats, TF_Status* status);
    void DeleteDir(const TF_Filesystem* filesystem, const char* path,
                   TF_Status* status);
    void CopyFile(const TF_Filesystem* filesystem, const char* src, const char* dst,
                  TF_Status* status);
    void RenameFile(const TF_Filesystem* filesystem, const char* src,
                    const char* dst, TF_Status* status);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 31 04:37:41 UTC 2020
    - 5.2K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/phases/init/certs.go

    			certsphase.CheckCertificatePeriodValidity(ca.BaseName, cert)
    
    			// If CA Cert existed while dryrun, copy CA Cert to dryrun dir for later use
    			if data.DryRun() {
    				err := kubeadmutil.CopyFile(filepath.Join(data.CertificateDir(), kubeadmconstants.CACertName), filepath.Join(data.CertificateWriteDir(), kubeadmconstants.CACertName))
    				if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 06:35:45 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/corefeature/ArchiveTreePerformanceTest.groovy

                        builder(archiveContentsDir.usingNativeTools(), archive)
                    }
                    File target = new File(invocationSettings.projectDir, name)
                    FileUtils.copyFile(archive, target)
                }
            }
        }
    
        private static BuildMutator linkToArchiveContents(InvocationSettings invocationSettings, File source) {
            new BuildMutator() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 11:42:52 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/filesystem/plugins/posix/posix_filesystem.cc

      ops->filesystem_ops->delete_dir = tf_posix_filesystem::DeleteDir;
      ops->filesystem_ops->rename_file = tf_posix_filesystem::RenameFile;
      ops->filesystem_ops->copy_file = tf_posix_filesystem::CopyFile;
      ops->filesystem_ops->path_exists = tf_posix_filesystem::PathExists;
      ops->filesystem_ops->stat = tf_posix_filesystem::Stat;
      ops->filesystem_ops->get_children = tf_posix_filesystem::GetChildren;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Mar 24 20:08:23 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/enduser/GradleRunnerMiscEndUserIntegrationTest.groovy

                    || f.name.contains("gradle-tooling-api")
                    || f.name.contains("gradle-core")
                    || f.name.contains("gradle-build-process-services")
                ) {
                    GFileUtils.copyFile(f, new File(jarsDir, f.name))
                }
            }
    
            def testKitJar = jarsDir.listFiles().find { it.name.contains "test-kit" }
            buildFile << """
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/phases/init/kubeconfig.go

    			// If using an external CA while dryrun, copy kubeconfig files to dryrun dir for later use
    			if data.DryRun() {
    				err := kubeadmutil.CopyFile(filepath.Join(kubeadmconstants.KubernetesDir, kubeConfigFileName), filepath.Join(data.KubeConfigDir(), kubeConfigFileName))
    				if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 26 04:36:03 UTC 2023
    - 6K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/BaseInstrumentingArtifactTransform.java

                File copyOfOriginalFile = outputs.file(ORIGINAL_DIR_NAME + "/" + input.getName());
                GFileUtils.copyFile(input, copyOfOriginalFile);
            }
        }
    
        protected abstract InterceptorTypeRegistryAndFilter provideInterceptorTypeRegistryAndFilter();
    
        protected interface InterceptorTypeRegistryAndFilter {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 14:22:44 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/filesystem/modular_filesystem.h

                         uint64* file_size) override;
      Status RenameFile(const std::string& src, const std::string& target,
                        TransactionToken* token) override;
      Status CopyFile(const std::string& src, const std::string& target,
                      TransactionToken* token) override;
      std::string TranslateName(const std::string& name) const override;
      void FlushCaches(TransactionToken* token) override;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 8.9K bytes
    - Viewed (0)
Back to top