Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 163 for setPath (0.15 sec)

  1. 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)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultModelCache.java

            }
    
            @Override
            public String toString() {
                return "SourceCacheKey[" + "location=" + source.getLocation() + ", tag=" + tag + ", path="
                        + source.getPath() + ']';
            }
    
            @Override
            public boolean equals(Object obj) {
                if (this == obj) {
                    return true;
                }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/test/impl/DefaultTestTaskPropertiesService.java

                @Override
                public void visitFile(FileVisitDetails fileDetails) {
                    builder.add(new DefaultCandidateClassFile(fileDetails.getFile(), fileDetails.getPath()));
                }
            });
            return builder.build();
        }
    
        private FileCollection resolveLeniently(PropertyValue value) {
            Object sources = value.call();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. 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)
  5. istioctl/pkg/writer/envoy/configdump/endpoint.go

    	addr := ep.GetEndpoint().GetAddress()
    	if addr := addr.GetSocketAddress(); addr != nil {
    		return addr.Address + ":" + strconv.Itoa(int(addr.GetPortValue()))
    	}
    	if addr := addr.GetPipe(); addr != nil {
    		return addr.GetPath()
    	}
    	if internal := addr.GetEnvoyInternalAddress(); internal != nil {
    		switch an := internal.GetAddressNameSpecifier().(type) {
    		case *core.EnvoyInternalAddress_ServerListenerName:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. pkg/volume/testing/testing.go

    	return fv.SetUpAt(fv.getPath(), mounterArgs)
    }
    
    func (fv *FakeVolume) GetSetUpCallCount() int {
    	fv.RLock()
    	defer fv.RUnlock()
    	return fv.SetUpCallCount
    }
    
    func (fv *FakeVolume) SetUpAt(dir string, mounterArgs volume.MounterArgs) error {
    	return os.MkdirAll(dir, 0750)
    }
    
    func (fv *FakeVolume) GetPath() string {
    	fv.RLock()
    	defer fv.RUnlock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelTransformerContextBuilder.java

                        loadFullReactor();
                        source = getSource(groupId, artifactId);
                    }
                    if (source != null) {
                        if (!addEdge(from, source.getPath(), problems)) {
                            return null;
                        }
                        try {
                            ModelBuilderRequest gaBuildingRequest = ModelBuilderRequest.build(request, source);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/TestReport.java

                    testReport.generateReport(resultsProvider, getDestinationDirectory().get().getAsFile());
                } else {
                    getLogger().info("{} - no binary test results found in dirs: {}.", getPath(), getTestResults().getFiles());
                    setDidWork(false);
                }
            } finally {
                stoppable(resultsProvider).stop();
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top