Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for NormalizePath (0.23 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/WbDependentModule.java

            Preconditions.checkNotNull(archiveName);
            Preconditions.checkNotNull(deployPath);
            this.archiveName = archiveName;
            this.deployPath = PathUtil.normalizePath(deployPath);
            this.handle = Preconditions.checkNotNull(handle);
        }
    
        /**
         * Get the archiveName property.
         *
         * @return the archiveName for this module.
         * @since 8.1
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. pkg/kubelet/pluginmanager/pluginwatcher/plugin_watcher.go

    	}
    
    	if strings.HasPrefix(fi.Name(), ".") {
    		klog.V(5).InfoS("Ignoring file (starts with '.')", "path", fi.Name())
    		return nil
    	}
    
    	if !fi.IsDir() {
    		isSocket, err := util.IsUnixDomainSocket(util.NormalizePath(event.Name))
    		if err != nil {
    			return fmt.Errorf("failed to determine if file: %s is a unix domain socket: %v", event.Name, err)
    		}
    		if !isSocket {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 01 00:26:37 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  3. 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)
  4. 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