- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 1,252 for service (0.03 sec)
-
guava/src/com/google/common/util/concurrent/Service.java
*/ @DoNotMock("Create an AbstractIdleService") @J2ktIncompatible @GwtIncompatible public interface Service { /** * If the service state is {@link State#NEW}, this initiates service startup and returns * immediately. A stopped service may not be restarted. * * @return this * @throws IllegalStateException if the service is not {@link State#NEW} * @since 15.0 */ @CanIgnoreReturnValue
Registered: 2025-05-30 12:43 - Last Modified: 2024-12-21 03:10 - 12.2K bytes - Viewed (0) -
src/main/assemblies/files/service.bat
if errorlevel 1 goto x86 set EXECUTABLE=%FESS_HOME%\bin\fess-service-x64.exe set SERVICE_ID=fess-service-x64 set ARCH=64-bit goto checkExe :x86 set EXECUTABLE=%FESS_HOME%\bin\fess-service-x86.exe set SERVICE_ID=fess-service-x86 set ARCH=32-bit :checkExe if EXIST "%EXECUTABLE%" goto okExe echo fess-service-(x86|x64).exe was not found... :okExe if "%LOG_DIR%" == "" set LOG_DIR=%FESS_HOME%\logs
Registered: 2025-05-26 08:04 - Last Modified: 2023-01-15 06:32 - 6K bytes - Viewed (0) -
src/packaging/common/systemd/fess.service
[Unit] Description=Fess Documentation=http://fess.codelibs.org/ Wants=network-online.target After=network-online.target opensearch.service Requires=opensearch.service [Service] Environment=FESS_HOME=${packaging.fess.home.dir} EnvironmentFile=-${packaging.env.file} User=${packaging.fess.user} Group=${packaging.fess.group} ExecStart=${packaging.fess.bin.dir}/fess # Connects standard output to /dev/null StandardOutput=null
Registered: 2025-05-26 08:04 - Last Modified: 2023-01-15 06:32 - 1.1K bytes - Viewed (0) -
cmd/service.go
serviceFreeze // Freeze all S3 API calls. serviceUnFreeze // Un-Freeze previously frozen S3 API calls. // Add new service requests here. ) // Global service signal channel. var globalServiceSignalCh = make(chan serviceSignal) // GlobalContext context that is canceled when server is requested to shut down.
Registered: 2025-05-25 19:28 - Last Modified: 2024-02-28 07:02 - 3.8K bytes - Viewed (0) -
helm/minio/templates/service.yaml
{{- if and (eq .Values.service.type "ClusterIP") .Values.service.clusterIP }} clusterIP: {{ .Values.service.clusterIP }} {{- end }} {{- if or (eq .Values.service.type "LoadBalancer") (eq .Values.service.type "NodePort") }} externalTrafficPolicy: {{ .Values.service.externalTrafficPolicy | quote }} {{- end }} {{- if and (eq .Values.service.type "LoadBalancer") .Values.service.loadBalancerSourceRanges }}
Registered: 2025-05-25 19:28 - Last Modified: 2024-04-28 10:05 - 1.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Service.java
import org.apache.maven.api.annotations.ThreadSafe; /** * Marker interface for all services provided by the {@link Session}. * <p> * Services can be retrieved from the session using the * {@link Session#getService(Class)} method. * * @since 4.0.0 * @see Session#getService(Class) */ @Experimental @ThreadSafe
Registered: 2025-05-24 08:56 - Last Modified: 2024-02-28 23:54 - 1.2K bytes - Viewed (0) -
manifests/charts/gateways/istio-ingress/templates/service.yaml
{{ $gateway := index .Values "gateways" "istio-ingressgateway" }} {{- if not $gateway.customService }} apiVersion: v1 kind: Service metadata: name: {{ $gateway.name }} namespace: {{ .Release.Namespace }} annotations: {{- range $key, $val := $gateway.serviceAnnotations }} {{ $key }}: {{ $val | quote }} {{- end }} labels: {{ $gateway.labels | toYaml | indent 4 }} release: {{ .Release.Name }}
Registered: 2025-05-28 22:53 - Last Modified: 2024-08-13 21:45 - 1.6K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/Service.java
*/ @DoNotMock("Create an AbstractIdleService") @J2ktIncompatible @GwtIncompatible public interface Service { /** * If the service state is {@link State#NEW}, this initiates service startup and returns * immediately. A stopped service may not be restarted. * * @return this * @throws IllegalStateException if the service is not {@link State#NEW} * @since 15.0 */ @CanIgnoreReturnValue
Registered: 2025-05-30 12:43 - Last Modified: 2024-12-21 03:10 - 10.8K bytes - Viewed (0) -
manifests/charts/gateway/templates/service.yaml
spec: {{- with .Values.service.loadBalancerIP }} loadBalancerIP: "{{ . }}" {{- end }} {{- if eq .Values.service.type "LoadBalancer" }} {{- if hasKey .Values.service "allocateLoadBalancerNodePorts" }} allocateLoadBalancerNodePorts: {{ .Values.service.allocateLoadBalancerNodePorts }} {{- end }} {{- if hasKey .Values.service "loadBalancerClass" }}
Registered: 2025-05-28 22:53 - Last Modified: 2025-03-07 17:41 - 2K bytes - Viewed (0) -
manifests/charts/istio-control/istio-discovery/templates/service.yaml
# Not created if istiod is running remotely {{- if not .Values.istiodRemote.enabled }} apiVersion: v1 kind: Service metadata: name: istiod{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }} namespace: {{ .Release.Namespace }} {{- if .Values.serviceAnnotations }} annotations: {{ toYaml .Values.serviceAnnotations | indent 4 }} {{- end }} labels: istio.io/rev: {{ .Values.revision | default "default" | quote }}
Registered: 2025-05-28 22:53 - Last Modified: 2024-10-03 23:53 - 1.6K bytes - Viewed (0)