- Sort Score
- Num 10 results
- Language All
Results 111 - 120 of 156 for temps (0.02 seconds)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/gcs/GcsClient.java
bucketName, path, blob.getSize(), maxCachedContentSize, outputFile.getAbsolutePath()); } } catch (final Exception e) { logger.warn("Failed to write GCS object to temp file: bucket={}, path={}, size={}, tempFile={}", bucketName, path,
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Thu Dec 11 08:38:29 GMT 2025 - 17.5K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/s3/S3Client.java
bucketName, path, headObject.contentLength(), maxCachedContentSize, outputFile.getAbsolutePath()); } } catch (final Exception e) {
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Thu Dec 11 08:38:29 GMT 2025 - 21.4K bytes - Click Count (0) -
.teamcity/test-buckets.json
"name": "TestDistribution" } }, { "subprojects": [ "build-init-specs", "build-option", "configuration-cache-base", "file-temp", "internal-testing", "io", "kotlin-dsl-provider-plugins", "language-java", "platform-jvm", "problems-rendering", "stdlib-kotlin-extensions"
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Fri Aug 01 00:23:04 GMT 2025 - 119.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/ExecJob.java
protected void deleteTempDir(final File ownTmpDir) { if (ownTmpDir == null) { return; } if (!FileUtils.deleteQuietly(ownTmpDir)) { logger.warn("Could not delete temp directory: path={}", ownTmpDir.getAbsolutePath()); } } /** * Appends JAR files from the specified directory to the classpath buffer. *
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 14.2K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/FindMissingDocumentationFiles.java
* within a specified directory. */ @CacheableTask public abstract class FindMissingDocumentationFiles extends DefaultTask { private static final Set<String> EXCLUDED_FILES = new HashSet<>(Arrays.asList( "temp.adoc", "userguide_single.adoc" )); private static final Set<String> EXCLUDED_ANCHORS = new HashSet<>(Arrays.asList( // properties have been deprecated in Gradle 9.0.0Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Thu Aug 21 15:38:58 GMT 2025 - 8.5K bytes - Click Count (0) -
docs/pt/docs/tutorial/dependencies/classes-as-dependencies.md
<img src="/img/tutorial/dependencies/image02.png"> ## Pegando um Atalho { #shortcut } Mas você pode ver que temos uma repetição do código neste exemplo, escrevendo `CommonQueryParams` duas vezes: //// tab | Python 3.9+ ```Python commons: Annotated[CommonQueryParams, Depends(CommonQueryParams)] ``` ////
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 17 20:41:43 GMT 2025 - 7.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java
final File propFile = ComponentUtil.getSystemHelper().createTempFile("thumbnail_", ".properties"); if (propFile.delete() && logger.isDebugEnabled()) { logger.debug("Deleted temp file: path={}", propFile.getAbsolutePath()); } systemProperties.reload(propFile.getAbsolutePath()); propFile.deleteOnExit(); } catch (final Exception e) {
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 9.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/exec/SuggestCreator.java
final File propFile = ComponentUtil.getSystemHelper().createTempFile("suggest_", ".properties"); if (propFile.delete() && logger.isDebugEnabled()) { logger.debug("Deleted temp file: path={}", propFile.getAbsolutePath()); } systemProperties.reload(propFile.getAbsolutePath()); propFile.deleteOnExit(); } catch (final Exception e) {
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 11.1K bytes - Click Count (0) -
docs/pt/docs/index.md
* **Intuitivo**: Grande suporte a _IDEs_. <abbr title="também conhecido como autocompletar, preenchimento automático, IntelliSense">Preenchimento automático</abbr> em todos os lugares. Menos tempo debugando. * **Fácil**: Projetado para ser fácil de aprender e usar. Menos tempo lendo documentação. * **Enxuto**: Minimize duplicação de código. Múltiplas funcionalidades para cada declaração de parâmetro. Menos bugs.
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Tue Dec 16 20:32:40 GMT 2025 - 24.5K bytes - Click Count (0) -
cmd/os_unix.go
continue } typ = fi.Mode() & os.ModeType } var nameStr string if typ.IsRegular() { nameStr = string(name) } else if typ.IsDir() { // Use temp buffer to append a slash to avoid string concat. tmp = tmp[:len(name)+1] copy(tmp, name) tmp[len(tmp)-1] = '/' // SlashSeparator nameStr = string(tmp) } count--
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 9.3K bytes - Click Count (0)