- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 26 for EXT (0.01 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
internal/store/queuestore.go
// NewQueueStore - Creates an instance for QueueStore. func NewQueueStore[I any](directory string, limit uint64, ext string) *QueueStore[I] { if limit == 0 { limit = defaultLimit } if ext == "" { ext = defaultExt } return &QueueStore[I]{ directory: directory, entryLimit: limit, fileExt: ext, entries: make(map[string]int64, limit), } } // Open - Creates the directory if not present.
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 7.8K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractor.java
String ext; if (outputExtension == null) { if (StringUtil.isNotBlank(extention)) { ext = "." + extention; } else { ext = extention; } } else { ext = outputExtension; }Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sun Nov 23 12:19:14 GMT 2025 - 16.1K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/JodExtractor.java
} } /** * Gets the extractor for the specified file extension. * * @param ext the file extension * @return the extractor for the extension, or null if not found */ private Extractor getExtractor(final String ext) { return extractorMap.get(ext); } /** * Gets the output extension for the specified input extension. *Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sun Nov 23 12:19:14 GMT 2025 - 10.4K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/classrealm/DefaultClassRealmManagerTest.java
when(artifact.getGroupId()).thenReturn("group1"); when(artifact.getArtifactId()).thenReturn("artifact1"); when(artifact.getExtension()).thenReturn("ext"); when(artifact.getClassifier()).thenReturn("classifier1"); when(artifact.getVersion()).thenReturn("1"); artifacts.add(artifact); Artifact artifact2 = mock(Artifact.class);
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 7.2K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/MarkdownExtractor.java
import org.codelibs.fess.crawler.Constants; import org.codelibs.fess.crawler.entity.ExtractData; import org.codelibs.fess.crawler.exception.ExtractException; import org.commonmark.ext.front.matter.YamlFrontMatterExtension; import org.commonmark.ext.front.matter.YamlFrontMatterVisitor; import org.commonmark.node.AbstractVisitor; import org.commonmark.node.Heading; import org.commonmark.node.Link; import org.commonmark.node.Node;
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sun Nov 23 03:46:53 GMT 2025 - 8.2K bytes - Click Count (0) -
.teamcity/src/main/kotlin/promotion/BasePromotionBuildType.kt
params { password( "env.DEVELOCITY_ACCESS_KEY", "%ge.gradle.org.access.key%;%develocity.grdev.net.access.key%;%develocity-ext-hetzner.grdev.net.access.key%", ) password("env.ORG_GRADLE_PROJECT_botGradleGitHubToken", "%github.bot-gradle.token%") } features {Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Tue Oct 14 10:56:29 GMT 2025 - 2.3K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java
if (extensions != null) { for (Extension ext : extensions) { String version; if (ext.getVersion() == null || ext.getVersion().isEmpty()) { version = "RELEASE"; } else { version = ext.getVersion(); }
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Nov 18 17:20:31 GMT 2025 - 51.8K bytes - Click Count (0) -
build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/ide/AndroidStudioProvisioningPlugin.kt
patternLayout { artifact("[revision]/[artifact]-[revision]-[ext]") } metadataSources { artifact() } content { includeGroup("android-studio") } } }Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Fri Sep 19 16:20:44 GMT 2025 - 4.4K bytes - Click Count (0) -
src/cmd/asm/internal/asm/parse.go
isIndex := false num := int16(0) isAmount := true // Amount is zero by default ext := "" if p.peek() == lex.LSH { // (Rn)(Rm<<2), the shifted offset register. ext = "LSL" } else { // (Rn)(Rm.UXTW<1), the extended offset register. // Rm.UXTW<<3, the extended register. p.get('.') tok := p.next() ext = tok.String() } if p.peek() == lex.LSH {
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Wed Nov 12 03:59:40 GMT 2025 - 37.3K bytes - Click Count (0) -
build-logic-commons/build-platform/build.gradle.kts
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Tue Dec 30 10:16:30 GMT 2025 - 4.6K bytes - Click Count (0)