- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 197 for mimetype (0.09 sec)
-
internal/config/compress/legacy.go
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Jul 17 15:43:14 UTC 2022 - 1.8K bytes - Viewed (0) -
docs/compression/README.md
```bash ~ mc admin config get myminio compression compression extensions=".txt,.log,.csv,.json,.tar,.xml,.bin" mime_types="text/*,application/json,application/xml" ``` Default config includes most common highly compressible content extensions and mime-types. ```bash ~ mc admin config set myminio compression extensions=".pdf" mime_types="application/pdf" ``` To show help on setting compression config values. ```bash
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Mar 11 11:55:34 UTC 2024 - 5.1K bytes - Viewed (0) -
build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/source/model/ParameterMetaDataTest.groovy
def "formats signature"() { MethodMetaData method = Mock() def parameter = new ParameterMetaData('param') def type = new TypeMetaData('org.gradle.SomeType') parameter.type = type expect: parameter.signature == 'org.gradle.SomeType param' }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComOpenAndXResponse.java
*/ @Override public int getAttributes () { return getFileAttributes(); } /** * @return the fileType */ public final int getFileType () { return this.fileType; } /** * @return the deviceState */ public final int getDeviceState () { return this.deviceState; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComNTCreateAndXResponse.java
",extFileAttributes=0x" + Hexdump.toHexString( extFileAttributes, 4 ) + ",allocationSize=" + allocationSize + ",endOfFile=" + endOfFile + ",fileType=" + fileType + ",deviceState=" + deviceState + ",directory=" + directory + "]" ); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 3.6K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/advance.jsp
<select id="as_filetype" name="as.filetype" class="form-control"> <option value=""><la:message key="labels.advance_search_filetype_default" /></option> <option value="html" <c:if test="${as.filetype.contains('html')}">selected</c:if>><la:message key="labels.advance_search_filetype_html" /></option> <option value="pdf" <c:if test="${as.filetype.contains('pdf')}">selected</c:if>><la:message
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 26 01:07:52 UTC 2024 - 14.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComOpenAndXResponse.java
",fileAttributes=" + fileAttributes + ",lastWriteTime=" + lastWriteTime + ",dataSize=" + dataSize + ",grantedAccess=" + grantedAccess + ",fileType=" + fileType + ",deviceState=" + deviceState + ",action=" + action + ",serverFid=" + serverFid + "]" ); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 2.8K bytes - Viewed (0) -
src/main/java/jcifs/context/CIFSContextWrapper.java
* * {@inheritDoc} * * @see jcifs.CIFSContext#getPipe(java.lang.String, int) */ @Override public SmbPipeResource getPipe ( String url, int pipeType ) throws CIFSException { try { return new SmbNamedPipe(url, pipeType, this); } catch ( MalformedURLException e ) { throw new CIFSException("Invalid URL " + url, e); } }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/TransactNamedPipeOutputStream.java
private byte[] tmp = new byte[1]; private boolean dcePipe; TransactNamedPipeOutputStream( SmbNamedPipe pipe ) throws IOException { super(pipe, false, (pipe.pipeType & 0xFFFF00FF) | SmbFile.O_EXCL); this.pipe = pipe; this.dcePipe = ( pipe.pipeType & SmbNamedPipe.PIPE_TYPE_DCE_TRANSACT ) == SmbNamedPipe.PIPE_TYPE_DCE_TRANSACT; path = pipe.unc; } public void close() throws IOException {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 2.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java
final int fileType; if (fileName.startsWith("system") && fileName.endsWith(".properties")) { fileType = 1; } else if (fileName.startsWith("gsa") && fileName.endsWith(".xml")) { fileType = 2; } else if (fileName.endsWith(".bulk")) { fileType = 3;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:46 UTC 2024 - 28.5K bytes - Viewed (0)