Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for RWX (0.02 sec)

  1. android/guava/src/com/google/common/io/Files.java

       *     {@link java.nio.file.Path#toFile() toFile()} if needed. To restrict permissions as this
       *     method does, pass {@code
       *     PosixFilePermissions.asFileAttribute(PosixFilePermissions.fromString("rwx------"))} to your
       *     call to {@code createTempDirectory}.
       */
      @Beta
      @Deprecated
      @J2ObjCIncompatible
      public static File createTempDir() {
        return TempFileCreator.INSTANCE.createTempDir();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/io/Files.java

       *     {@link java.nio.file.Path#toFile() toFile()} if needed. To restrict permissions as this
       *     method does, pass {@code
       *     PosixFilePermissions.asFileAttribute(PosixFilePermissions.fromString("rwx------"))} to your
       *     call to {@code createTempDirectory}.
       */
      @Beta
      @Deprecated
      @J2ObjCIncompatible
      public static File createTempDir() {
        return TempFileCreator.INSTANCE.createTempDir();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/macho.go

    		}
    		msect.off = uint32(sect.Seg.Fileoff + sect.Vaddr - sect.Seg.Vaddr)
    	} else {
    		msect.off = 0
    		msect.flag |= S_ZEROFILL
    	}
    
    	if sect.Rwx&1 != 0 {
    		msect.flag |= S_ATTR_SOME_INSTRUCTIONS
    	}
    
    	if sect.Name == ".text" {
    		msect.flag |= S_ATTR_PURE_INSTRUCTIONS
    	}
    
    	if sect.Name == ".plt" {
    		msect.name = "__symbol_stub1"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
Back to top