Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 62 for fileset (0.13 sec)

  1. cmd/sftp-server-driver.go

    		return nil, err
    	}
    
    	switch r.Method {
    	case "List":
    		var files []os.FileInfo
    
    		bucket, prefix := path2BucketObject(r.Filepath)
    		if bucket == "" {
    			buckets, err := clnt.ListBuckets(r.Context())
    			if err != nil {
    				return nil, err
    			}
    
    			for _, bucket := range buckets {
    				files = append(files, &minioFileInfo{
    					p:     bucket.Name,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. src/os/stat_aix.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package os
    
    import (
    	"internal/filepathlite"
    	"syscall"
    	"time"
    )
    
    func fillFileStatFromSys(fs *fileStat, name string) {
    	fs.name = filepathlite.Base(name)
    	fs.size = int64(fs.sys.Size)
    	fs.modTime = stTimespecToTime(fs.sys.Mtim)
    	fs.mode = FileMode(fs.sys.Mode & 0777)
    	switch fs.sys.Mode & syscall.S_IFMT {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/macho.go

    		s6b.SetSize(s6b.Size() + n)
    		size += n
    	}
    
    	if size > 0 {
    		linkoff = Rnd(int64(uint64(HEADR)+Segtext.Length), *FlagRound) + Rnd(int64(Segrelrodata.Filelen), *FlagRound) + Rnd(int64(Segdata.Filelen), *FlagRound) + Rnd(int64(Segdwarf.Filelen), *FlagRound)
    		ctxt.Out.SeekSet(linkoff)
    
    		ctxt.Out.Write(ldr.Data(s1))
    		ctxt.Out.Write(ldr.Data(s2))
    		ctxt.Out.Write(ldr.Data(s3))
    		ctxt.Out.Write(ldr.Data(s4))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  4. src/os/stat_windows.go

    		if err := fs.saveInfoFromPath(name); err != nil {
    			return nil, err
    		}
    		return fs, nil
    	}
    
    	// GetFileAttributesEx fails with ERROR_SHARING_VIOLATION error for
    	// files like c:\pagefile.sys. Use FindFirstFile for such files.
    	if err == windows.ERROR_SHARING_VIOLATION {
    		var fd syscall.Win32finddata
    		sh, err := syscall.FindFirstFile(namep, &fd)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. src/os/dir_plan9.go

    			}
    		}
    		d.bufp += m
    		n--
    	}
    
    	if n > 0 && len(names)+len(dirents)+len(infos) == 0 {
    		return nil, nil, nil, io.EOF
    	}
    	return names, dirents, infos, nil
    }
    
    type dirEntry struct {
    	fs *fileStat
    }
    
    func (de dirEntry) Name() string            { return de.fs.Name() }
    func (de dirEntry) IsDir() bool             { return de.fs.IsDir() }
    func (de dirEntry) Type() FileMode          { return de.fs.Mode().Type() }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredFileAccess.groovy

                @Override
                String getKotlinExpression() {
                    "Files.newByteChannel(File(\"$filePath\").toPath()).close()"
                }
    
                @Override
                String getJavaExpression() {
                    """
                    ((Supplier<Object>) () -> {
                        try {
                            Files.newByteChannel(new File("$filePath").toPath()).close();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/classpath/Instrumented.java

        private static final Lazy<MethodHandle> FILES_READ_STRING_PATH =
            Lazy.locking().of(() -> findStaticOrThrowError(Files.class, "readString", MethodType.methodType(String.class, Path.class)));
        private static final Lazy<MethodHandle> FILES_READ_STRING_PATH_CHARSET =
            Lazy.locking().of(() -> findStaticOrThrowError(Files.class, "readString", MethodType.methodType(String.class, Path.class, Charset.class)));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  8. src/os/dir_windows.go

    	// The following code is only needed to support os.SameFile.
    
    	// It is safe to query d.vol once and reuse the value.
    	// Hard links are not allowed to reference files in other volumes.
    	// Junctions and symbolic links can reference files and directories in other volumes,
    	// but the reparse point should still live in the parent volume.
    	var flags uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/elf.go

    	ph.Memsz = seg.Length
    	ph.Off = seg.Fileoff
    	ph.Filesz = seg.Filelen
    	ph.Align = uint64(*FlagRound)
    
    	return ph
    }
    
    func elfphrelro(seg *sym.Segment) {
    	ph := newElfPhdr()
    	ph.Type = elf.PT_GNU_RELRO
    	ph.Flags = elf.PF_R
    	ph.Vaddr = seg.Vaddr
    	ph.Paddr = seg.Vaddr
    	ph.Memsz = seg.Length
    	ph.Off = seg.Fileoff
    	ph.Filesz = seg.Filelen
    	ph.Align = uint64(*FlagRound)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/reflect/ClassPathTest.java

      private static URL makeJarUrlWithName(String name) throws IOException {
        /*
         * TODO: cpovirk - Use java.nio.file.Files.createTempDirectory instead of
         * c.g.c.io.Files.createTempDir?
         */
        File fullPath = new File(Files.createTempDir(), name);
        File jarFile = pickAnyJarFile();
        Files.copy(jarFile, fullPath);
        return fullPath.toURI().toURL();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 26 14:02:27 UTC 2024
    - 24.9K bytes
    - Viewed (0)
Back to top