Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,654 for service (0.21 sec)

  1. 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
    Java
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Wed Feb 28 23:54:53 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  2. manifests/charts/gateways/istio-egress/templates/service.yaml

    {{ $gateway := index .Values "gateways" "istio-egressgateway" }}
    {{- 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 }}
    Others
    - Registered: Wed Apr 10 22:53:08 GMT 2024
    - Last Modified: Mon Oct 02 00:02:18 GMT 2023
    - 1.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/Service.java

     */
    @DoNotMock("Create an AbstractIdleService")
    @J2ktIncompatible
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    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
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Tue Apr 04 09:45:04 GMT 2023
    - 10.7K bytes
    - Viewed (0)
  4. helm/minio/templates/service.yaml

      type: ClusterIP
      {{- if not (empty .Values.service.clusterIP) }}
      clusterIP: {{ .Values.service.clusterIP }}
      {{- end }}
      {{- else if eq .Values.service.type "LoadBalancer" }}
      type: {{ .Values.service.type }}
      loadBalancerIP: {{ default "" .Values.service.loadBalancerIP }}
      {{- else }}
      type: {{ .Values.service.type }}
      {{- end }}
      ports:
    Others
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Mon Apr 17 06:04:15 GMT 2023
    - 1.4K bytes
    - Viewed (0)
  5. 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.
    Go
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Wed Feb 28 07:02:14 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  6. manifests/charts/gateway/templates/service.yaml

      loadBalancerIP: "{{ . }}"
    {{- end }}
    {{- if eq .Values.service.type "LoadBalancer" }}
      {{- if hasKey .Values.service "allocateLoadBalancerNodePorts" }}
      allocateLoadBalancerNodePorts: {{ .Values.service.allocateLoadBalancerNodePorts }}
      {{- end }}
    {{- end }}
    {{- if .Values.service.ipFamilyPolicy }}
      ipFamilyPolicy: {{ .Values.service.ipFamilyPolicy }}
    {{- end }}
    {{- if .Values.service.ipFamilies }}
      ipFamilies:
    Others
    - Registered: Wed Apr 10 22:53:08 GMT 2024
    - Last Modified: Thu Jan 11 16:55:28 GMT 2024
    - 1.7K bytes
    - Viewed (0)
  7. src/main/assemblies/files/service.bat

    if "%SERVICE_DISPLAY_NAME%" == "" set SERVICE_DISPLAY_NAME=Fess (%SERVICE_ID%)
    if "%SERVICE_DESCRIPTION%" == "" set SERVICE_DESCRIPTION=Fess Service - https://github.com/codelibs/fess
    
    if not "%SERVICE_USERNAME%" == "" (
    	if not "%SERVICE_PASSWORD%" == "" (
    		set SERVICE_PARAMS=%SERVICE_PARAMS% --ServiceUser "%SERVICE_USERNAME%" --ServicePassword "%SERVICE_PASSWORD%"
    	)
    )
    
    Batch File
    - Registered: Mon Apr 15 08:04:17 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 6K bytes
    - Viewed (0)
  8. manifests/charts/istio-control/istio-discovery/templates/service.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: istiod{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
      namespace: {{ .Release.Namespace }}
      {{- if .Values.pilot.serviceAnnotations }}
      annotations:
    {{ toYaml .Values.pilot.serviceAnnotations | indent 4 }}
      {{- end }}
      labels:
        istio.io/rev: {{ .Values.revision | default "default" }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Mon Oct 02 00:02:18 GMT 2023
    - 1.4K bytes
    - Viewed (0)
  9. 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
    
    Plain Text
    - Registered: Mon Apr 15 08:04:17 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 1.1K bytes
    - Viewed (0)
  10. 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 }}
    Others
    - Registered: Wed Apr 10 22:53:08 GMT 2024
    - Last Modified: Mon Oct 02 00:02:18 GMT 2023
    - 1.5K bytes
    - Viewed (0)
Back to top