- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 258 for detect (0.03 sec)
-
misc/ios/detect.go
// Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build ignore // detect attempts to autodetect the correct // values of the environment variables // used by go_ios_exec. // detect shells out to ideviceinfo, a third party program that can // be obtained by following the instructions at // https://github.com/libimobiledevice/libimobiledevice.
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Thu Oct 19 23:33:30 UTC 2023 - 3.2K bytes - Viewed (0) -
.github/workflows/detect-conflicts.yml
name: "Conflict detector" on: push: pull_request_target: types: [synchronize] jobs: main: permissions: contents: read pull-requests: write runs-on: ubuntu-latest steps: - name: Check if PRs have merge conflicts uses: eps1lon/actions-label-merge-conflict@v3 with: dirtyLabel: "conflicts" repoToken: "${{ secrets.GITHUB_TOKEN }}"
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri Sep 05 08:33:44 UTC 2025 - 499 bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/impl/MimeTypeHelperImpl.java
import org.codelibs.fess.crawler.helper.MimeTypeHelper; /** * MimeTypeHelperImpl is a helper class that detects the MIME type of a given input stream or filename. * It uses the Apache Tika library to detect the MIME type. * * <p> * This class provides methods to: * </p> * <ul> * <li>Detect the MIME type based on the input stream and filename.</li> * <li>Normalize the filename to handle special characters.</li>
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 6.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/LanguageHelper.java
return l; } } return null; } /** * Sets the language detector. * * @param detector The language detector. */ public void setDetector(final LanguageDetector detector) { this.detector = detector; } /** * Creates a script for updating a document with language information. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 6.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lease/Smb2LeaseStateTest.java
assertEquals(0x05, Smb2LeaseState.SMB2_LEASE_READ_WRITE); assertEquals(0x07, Smb2LeaseState.SMB2_LEASE_FULL); } @Test @DisplayName("Should detect read caching correctly") void testHasReadCaching() { assertTrue(Smb2LeaseState.hasReadCaching(Smb2LeaseState.SMB2_LEASE_READ_CACHING));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 00:16:17 UTC 2025 - 5.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/TreeConnectResponseTest.java
} @Test @DisplayName("Should detect DFS from share flags") void testIsShareDfsWithShareFlags() throws Exception { // Test with DFS flag setPrivateField(response, "shareFlags", Smb2TreeConnectResponse.SMB2_SHAREFLAG_DFS); assertTrue(response.isShareDfs(), "Should detect DFS from DFS flag"); // Test with DFS_ROOT flag
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/TikaExtractor.java
/** * This class is a parser that detects the document type. */ protected class TikaDetectParser extends CompositeParser { private static final long serialVersionUID = 1L; /** * The type detector used by this parser to auto-detect the type of a * document. */ private final Detector detector; // always set in the constructor /**
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 30.7K bytes - Viewed (0) -
.gitattributes
# Auto detect text files and perform LF normalization * text=auto *.java text diff=java *.html text diff=html *.css text *.js text *.sql text *.jar binary
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Tue Nov 05 15:56:49 UTC 2024 - 196 bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateResponseInputValidationTest.java
SMBUtil.writeInt2(65535, buffer2, 58); // Test should detect buffer overflow (this is working correctly!) SMBProtocolDecodingException exception = assertThrows(SMBProtocolDecodingException.class, () -> { response.readBytesWireFormat(buffer, 0); }); // The validation correctly detects when buffer extends beyond available data
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 15.8K bytes - Viewed (0) -
.teamcity/src/main/kotlin/common/CommonExtensions.kt
"-Dorg.gradle.java.installations.auto-download=false", "-Porg.gradle.java.installations.auto-download=false", "-Dorg.gradle.java.installations.auto-detect=false", "-Porg.gradle.java.installations.auto-detect=false", ) + os.javaInstallationLocations(arch) fun promotionBuildParameters( dependencyBuildId: RelativeId, extraParameters: String, gitUserName: String,
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Wed Sep 10 01:37:13 UTC 2025 - 15K bytes - Viewed (0)