Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 102 for BasePath (0.2 sec)

  1. helm/minio/templates/configmap.yaml

        heritage: {{ .Release.Service }}
    data:
      initialize: |-
        {{- include (print $.Template.BasePath "/_helper_create_bucket.txt") . | nindent 4 }}
      add-user: |-
        {{- include (print $.Template.BasePath "/_helper_create_user.txt") . | nindent 4 }}
      add-policy: |-
        {{- include (print $.Template.BasePath "/_helper_create_policy.txt") . | nindent 4 }}
      {{- range $idx, $policy := .Values.policies }}
    Others
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Mon Apr 17 06:04:15 GMT 2023
    - 1.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

            protected final Path basePath;
    
            protected final String imageExtention;
    
            protected final SearchEngineClient searchEngineClient;
    
            protected final FessConfig fessConfig;
    
            FilePurgeVisitor(final Path basePath, final String imageExtention, final long expiry) {
                this.basePath = basePath;
                this.imageExtention = imageExtention;
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 21.5K bytes
    - Viewed (0)
  3. samples/static-server/src/main/java/okhttp3/sample/SampleServer.java

        }
      }
    
      private MockResponse directoryToResponse(String basePath, File directory) {
        if (!basePath.endsWith("/")) basePath += "/";
    
        StringBuilder response = new StringBuilder();
        response.append(String.format("<html><head><title>%s</title></head><body>", basePath));
        response.append(String.format("<h1>%s</h1>", basePath));
        for (String file : directory.list()) {
    Java
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Jan 02 02:50:44 GMT 2019
    - 4.7K bytes
    - Viewed (0)
  4. src/main/resources/log4j2.xml

    				<TimeBasedTriggeringPolicy />
    				<SizeBasedTriggeringPolicy size="100 MB" />
    			</Policies>
    			<DefaultRolloverStrategy fileIndex="max" min="1"
    				max="${backup.max.history}" compressionLevel="9">
    				<Delete basePath="${log.file.basedir}">
    					<IfFileName glob="${domain.name}*.log.gz" />
    					<IfLastModified age="P${backup.max.age}D" />
    				</Delete>
    			</DefaultRolloverStrategy>
    		</RollingFile>
    XML
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Mon Feb 20 13:17:33 GMT 2023
    - 3.7K bytes
    - Viewed (0)
  5. cmd/iam-object-store.go

    	var basePath string
    	if isGroup {
    		basePath = iamConfigPolicyDBGroupsPrefix
    	} else {
    		switch userType {
    		case svcUser:
    			basePath = iamConfigPolicyDBServiceAccountsPrefix
    		case stsUser:
    			basePath = iamConfigPolicyDBSTSUsersPrefix
    		default:
    			basePath = iamConfigPolicyDBUsersPrefix
    		}
    	}
    	ctx, cancel := context.WithCancel(ctx)
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Fri Apr 05 21:26:41 GMT 2024
    - 19.9K bytes
    - Viewed (0)
  6. helm/minio/templates/deployment.yaml

            {{- end }}
          annotations:
            {{- if not .Values.ignoreChartChecksums }}
            checksum/secrets: {{ include (print $.Template.BasePath "/secrets.yaml") . | sha256sum }}
            checksum/config: {{ include (print $.Template.BasePath "/configmap.yaml") . | sha256sum }}
            {{- end }}
            {{- if .Values.podAnnotations }}
              {{- toYaml .Values.podAnnotations | trimSuffix "\n" | nindent 8 }}
    Others
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sun Mar 03 17:50:39 GMT 2024
    - 8.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/VirtualHostHelper.java

    public class VirtualHostHelper {
    
        public HtmlNext getVirtualHostPath(final HtmlNext page) {
            return processVirtualHost(s -> {
                final String basePath = getVirtualHostBasePath(s, page);
                return new HtmlNext(basePath + page.getRoutingPath());
            }, page);
        }
    
        protected String getVirtualHostBasePath(final String s, final HtmlNext page) {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/job/ExecJob.java

            final File[] jarFiles = libDir.listFiles((FilenameFilter) (dir, name) -> name.toLowerCase().endsWith(".jar"));
            if (jarFiles != null) {
                for (final File file : jarFiles) {
                    buf.append(cpSeparator);
                    buf.append(basePath);
                    buf.append(file.getName());
                }
            }
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.2K bytes
    - Viewed (0)
  9. helm/minio/templates/statefulset.yaml

            {{- end }}
          annotations:
            {{- if not .Values.ignoreChartChecksums }}
            checksum/secrets: {{ include (print $.Template.BasePath "/secrets.yaml") . | sha256sum }}
            checksum/config: {{ include (print $.Template.BasePath "/configmap.yaml") . | sha256sum }}
            {{- end }}
            {{- if .Values.podAnnotations }}
              {{- toYaml .Values.podAnnotations | nindent 8 }}
            {{- end }}
    Others
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Mon Apr 08 16:31:05 GMT 2024
    - 10.7K bytes
    - Viewed (0)
  10. helm-releases/minio-4.0.12.tgz

    .Release.Service }} data: initialize: |- {{ include (print $.Template.BasePath "/_helper_create_bucket.txt") . | indent 4 }} add-user: |- {{ include (print $.Template.BasePath "/_helper_create_user.txt") . | indent 4 }} add-policy: |- {{ include (print $.Template.BasePath "/_helper_create_policy.txt") . | indent 4 }} {{- range $idx, $policy := .Values.policies }} # {{ $policy.name }} policy_{{ $idx }}.json: |- {{ include (print $.Template.BasePath "/_helper_policy.tpl") . | indent 4 }} {{ end }} custom-command:...
    Others
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sun Aug 14 05:50:43 GMT 2022
    - 19.4K bytes
    - Viewed (0)
Back to top