Home
last modified time | relevance | path

Searched refs:TRUNCATE_EXISTING (Results 1 – 25 of 1621) sorted by relevance

12345678910>>...65

/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/jdk/java/nio/channels/FileChannel/
H A DTempDirectBuffersReclamation.java35 import static java.nio.file.StandardOpenOption.TRUNCATE_EXISTING;
82 try (FileChannel fc = FileChannel.open(file, CREATE, WRITE, TRUNCATE_EXISTING)) { in doFileChannelWrite() argument
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/test/jdk/java/nio/channels/FileChannel/
H A DTempDirectBuffersReclamation.java35 import static java.nio.file.StandardOpenOption.TRUNCATE_EXISTING;
82 try (FileChannel fc = FileChannel.open(file, CREATE, WRITE, TRUNCATE_EXISTING)) { in doFileChannelWrite() argument
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/jdk/java/nio/channels/FileChannel/
H A DTempDirectBuffersReclamation.java35 import static java.nio.file.StandardOpenOption.TRUNCATE_EXISTING;
82 try (FileChannel fc = FileChannel.open(file, CREATE, WRITE, TRUNCATE_EXISTING)) { in doFileChannelWrite() argument
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/jdk/java/nio/channels/FileChannel/
H A DTempDirectBuffersReclamation.java35 import static java.nio.file.StandardOpenOption.TRUNCATE_EXISTING;
82 try (FileChannel fc = FileChannel.open(file, CREATE, WRITE, TRUNCATE_EXISTING)) { in doFileChannelWrite() argument
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/test/jdk/java/nio/channels/FileChannel/
H A DTempDirectBuffersReclamation.java35 import static java.nio.file.StandardOpenOption.TRUNCATE_EXISTING;
82 try (FileChannel fc = FileChannel.open(file, CREATE, WRITE, TRUNCATE_EXISTING)) { in doFileChannelWrite() argument
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/test/jdk/java/nio/channels/FileChannel/
H A DTempDirectBuffersReclamation.java35 import static java.nio.file.StandardOpenOption.TRUNCATE_EXISTING;
82 try (FileChannel fc = FileChannel.open(file, CREATE, WRITE, TRUNCATE_EXISTING)) { in doFileChannelWrite() argument
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/jdk/java/nio/channels/FileChannel/
H A DTempDirectBuffersReclamation.java35 import static java.nio.file.StandardOpenOption.TRUNCATE_EXISTING;
82 try (FileChannel fc = FileChannel.open(file, CREATE, WRITE, TRUNCATE_EXISTING)) { in doFileChannelWrite() argument
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/jdk/java/nio/channels/FileChannel/
H A DTempDirectBuffersReclamation.java35 import static java.nio.file.StandardOpenOption.TRUNCATE_EXISTING;
82 try (FileChannel fc = FileChannel.open(file, CREATE, WRITE, TRUNCATE_EXISTING)) { in doFileChannelWrite() argument
/dports/sysutils/vector/lucet-d4fc14a03bdb99ac83173d27fddf1aca48412a86/wasmtime/crates/wasi-common/winx/src/
H A Dfile.rs102 TRUNCATE_EXISTING = fileapi::TRUNCATE_EXISTING, enumerator
113 fileapi::TRUNCATE_EXISTING => TRUNCATE_EXISTING, in from_u32()
/dports/x11-toolkits/wxgtk28-contrib/wxGTK-2.8.12/src/msw/wince/
H A Dfilefnwce.cpp77 disposition = oflag & O_CREAT ? CREATE_ALWAYS : TRUNCATE_EXISTING; in wxOpen()
89 disposition = TRUNCATE_EXISTING; in wxOpen()
/dports/x11-toolkits/wxgtk28-contrib-common/wxGTK-2.8.12/src/msw/wince/
H A Dfilefnwce.cpp77 disposition = oflag & O_CREAT ? CREATE_ALWAYS : TRUNCATE_EXISTING; in wxOpen()
89 disposition = TRUNCATE_EXISTING; in wxOpen()
/dports/x11-toolkits/wxgtk28/wxGTK-2.8.12/src/msw/wince/
H A Dfilefnwce.cpp77 disposition = oflag & O_CREAT ? CREATE_ALWAYS : TRUNCATE_EXISTING; in wxOpen()
89 disposition = TRUNCATE_EXISTING; in wxOpen()
/dports/x11-toolkits/wxgtk28-common/wxGTK-2.8.12/src/msw/wince/
H A Dfilefnwce.cpp77 disposition = oflag & O_CREAT ? CREATE_ALWAYS : TRUNCATE_EXISTING; in wxOpen()
89 disposition = TRUNCATE_EXISTING; in wxOpen()
/dports/x11-toolkits/wxgtk30/wxWidgets-3.0.5.1/src/msw/wince/
H A Dfilefnwce.cpp76 disposition = oflag & O_CREAT ? CREATE_ALWAYS : TRUNCATE_EXISTING; in wxCRT_Open()
88 disposition = TRUNCATE_EXISTING; in wxCRT_Open()
/dports/x11-toolkits/py-wxPython40/wxPython-4.0.7/ext/wxWidgets/src/msw/wince/
H A Dfilefnwce.cpp76 disposition = oflag & O_CREAT ? CREATE_ALWAYS : TRUNCATE_EXISTING; in wxCRT_Open()
88 disposition = TRUNCATE_EXISTING; in wxCRT_Open()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/jdk/java/net/httpclient/PathSubscriber/
H A DBodyHandlerOfFileDownloadTest.java76 import static java.nio.file.StandardOpenOption.TRUNCATE_EXISTING;
151 … var resp = client.send(req, BodyHandlers.ofFileDownload(path, CREATE, TRUNCATE_EXISTING, WRITE)); in receive()
181 BodyHandlers.ofFileDownload(zipFsPath, CREATE, TRUNCATE_EXISTING, WRITE); in testZipFs()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/jdk/java/net/httpclient/PathSubscriber/
H A DBodyHandlerOfFileDownloadTest.java76 import static java.nio.file.StandardOpenOption.TRUNCATE_EXISTING;
151 … var resp = client.send(req, BodyHandlers.ofFileDownload(path, CREATE, TRUNCATE_EXISTING, WRITE)); in receive()
181 BodyHandlers.ofFileDownload(zipFsPath, CREATE, TRUNCATE_EXISTING, WRITE); in testZipFs()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/jdk/java/net/httpclient/PathSubscriber/
H A DBodyHandlerOfFileDownloadTest.java76 import static java.nio.file.StandardOpenOption.TRUNCATE_EXISTING;
151 … var resp = client.send(req, BodyHandlers.ofFileDownload(path, CREATE, TRUNCATE_EXISTING, WRITE)); in receive()
181 BodyHandlers.ofFileDownload(zipFsPath, CREATE, TRUNCATE_EXISTING, WRITE); in testZipFs()
/dports/deskutils/calibre/calibre-src-5.34.0/src/calibre/utils/
H A Dshared_file.py50 os.O_TRUNC : winutil.TRUNCATE_EXISTING,
51 os.O_TRUNC | os.O_EXCL : winutil.TRUNCATE_EXISTING,
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/java.base/share/classes/java/nio/file/
H A DStandardOpenOption.java59 TRUNCATE_EXISTING, enumConstant
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/src/share/classes/java/nio/file/
H A DStandardOpenOption.java59 TRUNCATE_EXISTING, enumConstant
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/java.base/share/classes/java/nio/file/
H A DStandardOpenOption.java59 TRUNCATE_EXISTING, enumConstant
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/java.base/share/classes/java/nio/file/
H A DStandardOpenOption.java59 TRUNCATE_EXISTING, enumConstant
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/java.base/share/classes/java/nio/file/
H A DStandardOpenOption.java59 TRUNCATE_EXISTING, enumConstant
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/java.base/share/classes/java/nio/file/
H A DStandardOpenOption.java59 TRUNCATE_EXISTING, enumConstant

12345678910>>...65