Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for somefile (0.23 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * delete the files.
         * <p>Example:
         * <pre>
         * project.delete {
         *     delete 'somefile'
         *     followSymlinks = true
         * }
         * </pre>
         *
         * @param action Action to configure the DeleteSpec
         * @return {@link WorkResult} that can be used to check if delete did any work.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFile.java

     * resources are files and directories however an <code>SmbFile</code>
     * may also refer to servers and workgroups. If the resource is a file or
     * directory the methods of <code>SmbFile</code> follow the behavior of
     * the well known {@link java.io.File} class. One fundamental difference
     * is the usage of a URL scheme [1] to specify the target file or
     * directory. SmbFile URLs have the following syntax:
     *
     * <blockquote>
     * 
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  3. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

      std::unique_ptr<WritableFile> same_file;
      status = env_->NewAppendableFile(filepath, &same_file);
      if (!status.ok())
        GTEST_SKIP() << "NewAppendableFile() not supported: " << status;
    
      const std::string more_test_data("qwer");
      EXPECT_EQ(same_file->Append(more_test_data).code(), Code::OK);
      EXPECT_EQ(same_file->Flush().code(), Code::OK);
      EXPECT_EQ(same_file->Close().code(), Code::OK);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:25:58 UTC 2022
    - 71K bytes
    - Viewed (0)
  4. pkg/controller/volume/persistentvolume/binder_test.go

    			initialVolumes:  withVolumeVolumeMode(&modeFile, newVolumeArray("volume14-2", "10Gi", "", "", v1.VolumeAvailable, v1.PersistentVolumeReclaimRetain, classEmpty)),
    			expectedVolumes: withVolumeVolumeMode(&modeFile, newVolumeArray("volume14-2", "10Gi", "uid14-2", "claim14-2", v1.VolumeBound, v1.PersistentVolumeReclaimRetain, classEmpty, volume.AnnBoundByController)),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 65.8K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

        @Override
        public Result<? extends Model> buildRawModel(File pomFile, int validationLevel, boolean locationTracking) {
            return buildRawModel(pomFile.toPath(), validationLevel, locationTracking, null);
        }
    
        @Override
        public Result<? extends Model> buildRawModel(Path pomFile, int validationLevel, boolean locationTracking) {
            return buildRawModel(pomFile, validationLevel, locationTracking, null);
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  6. src/os/os_test.go

    				}
    				info, err := n.Info()
    				if err != nil {
    					t.Errorf("%s: Info: %v", m, err)
    					continue
    				}
    				if !SameFile(info, lstat) {
    					t.Errorf("%s: Info: SameFile(info, lstat) = false", m)
    				}
    			}
    			if !found {
    				t.Error("could not find", m)
    			}
    		}
    		if s == nil {
    			t.Error("ReadDir returned nil instead of empty slice")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    In this example, the `moveFile` task uses the `Copy` task type to specify the source and destination directories.
    Inside the `doLast` closure, it uses `File.renameTo()` to move the file from the source directory to the destination directory:
    
    [source,groovy]
    ----
    task moveFile {
        doLast {
            def sourceFile = file('source.txt')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  8. src/syscall/syscall_windows.go

    //sys	CreateDirectory(path *uint16, sa *SecurityAttributes) (err error) = CreateDirectoryW
    //sys	RemoveDirectory(path *uint16) (err error) = RemoveDirectoryW
    //sys	DeleteFile(path *uint16) (err error) = DeleteFileW
    //sys	MoveFile(from *uint16, to *uint16) (err error) = MoveFileW
    //sys	GetComputerName(buf *uint16, n *uint32) (err error) = GetComputerNameW
    //sys	SetEndOfFile(handle Handle) (err error)
    //sys	GetSystemTimeAsFileTime(time *Filetime)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inputs/custom-template.yaml.40.template.gen.yaml

        spec:
          containers:
          {{- range $index, $container := .Spec.Containers }}
          - name: {{ $container.Name }}
            env:
            - name: SOME_ENV
              value: "true"
            - name: SOME_FILE
              value: /var/lib/data/foo.json
            volumeMounts:
            - mountPath: /var/lib/data/foo.json
              subPath: foo.json
              name: some-injected-file
          {{- end}}
          volumes:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 76.7K bytes
    - Viewed (0)
  10. src/net/http/fs_test.go

    		f, err := d.Open(name)
    		if err != nil {
    			t.Fatalf("open of %s: %v", name, err)
    		}
    		defer f.Close()
    		gfi, err := f.Stat()
    		if err != nil {
    			t.Fatalf("stat of %s: %v", name, err)
    		}
    		if !os.SameFile(gfi, wfi) {
    			t.Errorf("%s got different file", name)
    		}
    	}
    	test(Dir("/etc/"), "/hosts")
    	test(Dir("/etc/"), "hosts")
    	test(Dir("/etc/"), "../../../../hosts")
    	test(Dir("/etc"), "/hosts")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
Back to top