Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for NormalizePath (0.52 sec)

  1. src/main/java/org/codelibs/fess/helper/LabelTypeHelper.java

                        } else {
                            buf.append(split);
                        }
                        final String normalizePath = systemHelper.normalizeConfigPath(path);
                        if (StringUtil.isNotBlank(normalizePath)) {
                            buf.append(normalizePath);
                        }
                    }
                    this.includedPaths = Pattern.compile(buf.toString());
                }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/BlockingHttpServer.java

        }
    
        private ExpectMethod doGet(String path) {
            return new ExpectMethod("GET", normalizePath(path), timeout, lock);
        }
    
        /**
         * Expect a PUT request to the given path, discard the request body
         */
        public ExpectedRequest put(String path) {
            return new ExpectMethodAndRunAction("PUT", normalizePath(path), new SendEmptyResponse());
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_builder.go

    	case meshconfig.MeshConfig_ProxyPathNormalization_NONE:
    		connectionManager.NormalizePath = proto.BoolFalse
    	case meshconfig.MeshConfig_ProxyPathNormalization_BASE, meshconfig.MeshConfig_ProxyPathNormalization_DEFAULT:
    		connectionManager.NormalizePath = proto.BoolTrue
    	case meshconfig.MeshConfig_ProxyPathNormalization_MERGE_SLASHES:
    		connectionManager.NormalizePath = proto.BoolTrue
    		connectionManager.MergeSlashes = true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  4. pkg/test/framework/components/environment/kube/flags.go

    	if err != nil {
    		return nil, err
    	}
    	if len(out) == 0 {
    		scopes.Framework.Info("Environment variable KUBECONFIG unspecified, defaulting to ~/.kube/config.")
    		normalizedDefaultKubeConfig, err := file.NormalizePath(defaultKubeConfig)
    		if err != nil {
    			return nil, fmt.Errorf("error normalizing default kube config file %s: %v",
    				defaultKubeConfig, err)
    		}
    		out = []string{normalizedDefaultKubeConfig}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/SourceFoldersCreator.java

                                                                   Function<File, String> provideRelativePath, File defaultOutputDir, String baseSourceOutputDir) {
            String defaultOutputPath = PathUtil.normalizePath(provideRelativePath.apply(defaultOutputDir));
            ImmutableList.Builder<SourceFolder> entries = ImmutableList.builder();
            List<SourceSet> sortedSourceSets = sortSourceSetsAsPerUsualConvention(sourceSets);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/ExpectMaxNConcurrentRequests.java

                }
            } finally {
                lock.unlock();
            }
        }
    
        @Override
        public void release(String path) {
            path = BlockingHttpServer.normalizePath(path);
            lock.lock();
            try {
                ResourceHandlerWrapper handler = selectPending(notReleased, path);
                if (handler == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top