- Sort Score
- Num 10 results
- Language All
Results 61 - 70 of 599 for iniz (0.44 seconds)
-
src/packaging/common/scripts/postinst
else /etc/init.d/fess restart || true fi # older suse linux distributions do not ship with systemd # but do not have an /etc/init.d/ directory # this tries to start the fess service on these # as well without failing this script elif [ -x /etc/rc.d/init.d/fess ] ; then /etc/rc.d/init.d/fess restart || true fi echo " OK" fiCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Dec 10 01:24:02 GMT 2015 - 3.1K bytes - Click Count (0) -
.ci/scripts/packaging-test.ps1
$env:JAVA_TOOL_OPTIONS='' $ErrorActionPreference="Stop" $gradleInit = "C:\Users\$env:username\.gradle\init.d\" echo "Remove $gradleInit" Remove-Item -Recurse -Force $gradleInit -ErrorAction Ignore New-Item -ItemType directory -Path $gradleInit echo "Copy .ci/init.gradle to $gradleInit" Copy-Item .ci/init.gradle -Destination $gradleInit [Environment]::SetEnvironmentVariable("JAVA_HOME", $null, "Machine")
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 15 22:00:26 GMT 2021 - 1.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java
} }; manager.init(); assertTrue(manager.baseDir.exists()); manager.destroy(); } // Test initialization failure @Test public void test_init_failure() { ThumbnailManager manager = new ThumbnailManager() { @Override public void init() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 20.4K bytes - Click Count (0) -
okhttp-logging-interceptor/api/logging-interceptor.api
public static final field Companion Lokhttp3/logging/HttpLoggingInterceptor$Companion; public final fun -deprecated_level ()Lokhttp3/logging/HttpLoggingInterceptor$Level; public fun <init> ()V public fun <init> (Lokhttp3/logging/HttpLoggingInterceptor$Logger;)V public synthetic fun <init> (Lokhttp3/logging/HttpLoggingInterceptor$Logger;ILkotlin/jvm/internal/DefaultConstructorMarker;)V public final fun getLevel ()Lokhttp3/logging/HttpLoggingInterceptor$Level;
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Oct 07 15:15:46 GMT 2025 - 4.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/query/QueryFieldConfigTest.java
// Use existing config from setUp and just override what we need to test queryFieldConfig = new QueryFieldConfig() { @Override public void init() { super.init(); // Add test-specific fields to notAnalyzedFieldSet notAnalyzedFieldSet.add("field1"); notAnalyzedFieldSet.add("field2");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 33.6K bytes - Click Count (0) -
.ci/jobs.t/elastic+elasticsearch+pull-request+part-2-windows.yml
JAVA15_HOME=$USERPROFILE\\.java\\openjdk15 GRADLE_TASK=checkPart2 - batch: | del /f /s /q %USERPROFILE%\.gradle\init.d\*.* mkdir %USERPROFILE%\.gradle\init.d copy .ci\init.gradle %USERPROFILE%\.gradle\init.d\ ( echo call %GRADLEW_BAT% --max-workers=4 -Dbwc.checkout.align=true %GRADLE_TASK% ^|^| exit /b 1Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Thu Jul 01 22:34:45 GMT 2021 - 1.7K bytes - Click Count (0) -
src/main/java/jcifs/context/SingletonContext.java
* <blockquote> * * <pre> * Exception MalformedURLException: unknown protocol: smb * at java.net.URL.<init>(URL.java:480) * at java.net.URL.<init>(URL.java:376) * at java.net.URL.<init>(URL.java:330) * at jcifs.smb.SmbFile.<init>(SmbFile.java:355) * ... * </pre> * * </blockquote> * */
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 4.3K bytes - Click Count (0) -
.ci/jobs.t/elastic+elasticsearch+pull-request+packaging-tests-windows-sample.yml
RUNTIME_JAVA_HOME=$USERPROFILE\\.java\\$ES_RUNTIME_JAVA - batch: | del /f /s /q %USERPROFILE%\.gradle\init.d\*.* mkdir %USERPROFILE%\.gradle\init.d copy .ci\init.gradle %USERPROFILE%\.gradle\init.d\ ( echo powershell.exe .\.ci\scripts\packaging-test.ps1 -GradleTasks destructiveDistroTest.%PACKAGING_TASK% ^|^| exit /b 1Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Aug 24 18:50:27 GMT 2021 - 2.1K bytes - Click Count (0) -
.ci/jobs.t/elastic+elasticsearch+pull-request+packaging-tests-windows-sample-nojdk.yml
RUNTIME_JAVA_HOME=$USERPROFILE\\.java\\$ES_RUNTIME_JAVA - batch: | del /f /s /q %USERPROFILE%\.gradle\init.d\*.* mkdir %USERPROFILE%\.gradle\init.d copy .ci\init.gradle %USERPROFILE%\.gradle\init.d\ ( echo powershell.exe .\.ci\scripts\packaging-test.ps1 -GradleTasks destructiveDistroTest.%PACKAGING_TASK% ^|^| exit /b 1Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Aug 24 19:49:58 GMT 2021 - 2.2K bytes - Click Count (0) -
misc/cgo/gmp/gmp.go
// The zero value for an Int represents the value 0. type Int struct { i C.mpz_t init bool } // NewInt returns a new Int initialized to x. func NewInt(x int64) *Int { return new(Int).SetInt64(x) } // Int promises that the zero value is a 0, but in gmp // the zero value is a crash. To bridge the gap, the // init bool says whether this is a valid gmp value.Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Mon Apr 11 16:34:30 GMT 2022 - 9.5K bytes - Click Count (0)