Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 155 for setPath (0.45 sec)

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

            Pair<Collection<SourceFolder>, Collection<SourceFolder>> partitionedFolders = CollectionUtils.partition(sourceFolder,  sf-> sf.getPath().contains(".."));
    
            Collection<SourceFolder> externalSourceFolders = partitionedFolders.getLeft();
            Collection<SourceFolder> regularSourceFolders = partitionedFolders.getRight();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. pkg/volume/git_repo/git_repo_test.go

    			fmt.Errorf("failed to make a new Mounter: %w", err))
    		return allErrs
    	}
    	if mounter == nil {
    		allErrs = append(allErrs,
    			fmt.Errorf("got a nil Mounter"))
    		return allErrs
    	}
    
    	path := mounter.GetPath()
    	suffix := filepath.Join("pods/poduid/volumes/kubernetes.io~git-repo", scenario.vol.Name)
    	if !strings.HasSuffix(path, suffix) {
    		allErrs = append(allErrs,
    			fmt.Errorf("got unexpected path: %s", path))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 08:26:26 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. pkg/volume/fc/fc.go

    	plugin  *fcPlugin
    	// Utility interface that provides API calls to the provider to attach/detach disks.
    	manager diskManager
    	// io handler interface
    	io ioHandler
    	volume.MetricsNil
    }
    
    func (fc *fcDisk) GetPath() string {
    	// safe to use PodVolumeDir now: volume teardown occurs before pod is cleaned up
    	return fc.plugin.host.GetPodVolumeDir(fc.podUID, utilstrings.EscapeQualifiedName(fcPluginName), fc.volName)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-groovy/src/main/java/org/gradle/model/dsl/internal/transform/RuleVisitor.java

                            "ownReference",
                            new ArgumentListExpression(
                                    new ConstantExpression(inputReference.getPath()),
                                    new ConstantExpression(inputReference.getLineNumber())))));
                }
                for (InputReference inputReference : inputs.getNestedReferences()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  5. pkg/volume/volume.go

    )
    
    // Volume represents a directory used by pods or hosts on a node. All method
    // implementations of methods in the volume interface must be idempotent.
    type Volume interface {
    	// GetPath returns the path to which the volume should be mounted for the
    	// pod.
    	GetPath() string
    
    	// MetricsProvider embeds methods for exposing metrics (e.g.
    	// used, available space).
    	MetricsProvider
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. pkg/volume/local/local.go

    	mounter  mount.Interface
    	hostUtil hostutil.HostUtils
    	plugin   *localVolumePlugin
    	volume.MetricsProvider
    }
    
    func (l *localVolume) GetPath() string {
    	return l.plugin.host.GetPodVolumeDir(l.podUID, utilstrings.EscapeQualifiedName(localVolumePluginName), l.volName)
    }
    
    type localVolumeMounter struct {
    	*localVolume
    	readOnly     bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/XmlTransformer.java

                try {
                    resultData.setData(data.getBytes(charsetName));
                } catch (final UnsupportedEncodingException e) {
                    if (logger.isInfoEnabled()) {
                        logger.info("Invalid charsetName: " + charsetName + ". Changed to " + Constants.UTF_8, e);
                    }
                    charsetName = Constants.UTF_8_CHARSET.name();
                    resultData.setData(data.getBytes(Constants.UTF_8_CHARSET));
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/tasks/execution/TaskExecution.java

        }
    
        @Override
        public Identity identify(Map<String, ValueSnapshot> identityInputs, Map<String, CurrentFileCollectionFingerprint> identityFileInputs) {
            return task::getPath;
        }
    
        @Override
        public WorkOutput execute(ExecutionRequest executionRequest) {
            FileCollection previousFiles = executionRequest.getPreviouslyProducedOutputs()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/AbstractTask.java

        @Override
        public int compareTo(Task otherTask) {
            int depthCompare = ProjectOrderingUtil.compare(project, ((AbstractTask) otherTask).project);
            if (depthCompare == 0) {
                return getPath().compareTo(otherTask.getPath());
            } else {
                return depthCompare;
            }
        }
    
        @Internal
        @Override
        public Logger getLogger() {
            return logger;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 12:20:43 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/InProcessGradleExecuter.java

        }
    
        private Collection<File> cleanup(List<File> files) {
            List<File> result = new LinkedList<>();
            String prefix = Jvm.current().getJavaHome().getPath() + File.separator;
            for (File file : files) {
                if (file.getPath().startsWith(prefix)) {
                    // IDEA adds the JDK's bootstrap classpath to the classpath it uses to run test - remove this
                    continue;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 37.1K bytes
    - Viewed (0)
Back to top