Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 634 for setPath (0.23 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/DefaultOutputFilesRepository.java

                if (outputFiles.getIfPresent(currentFile.getPath()) == OutputKind.OUTPUT) {
                    return true;
                }
                currentFile = currentFile.getParentFile();
            }
            return false;
        }
    
        private boolean containsFilesGeneratedByGradle(File absoluteFile) {
            return outputFiles.getIfPresent(absoluteFile.getPath()) != null;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/CacheLayoutTest.groovy

            then:
            cacheLayout.name == 'modules'
            cacheLayout.key == 'modules-2'
            cacheLayout.version == CacheVersion.of(2)
            cacheLayout.version.toString() == '2'
            cacheLayout.getPath(new File('some/dir')) == new File('some/dir/modules-2')
            !cacheLayout.versionMapping.getVersionUsedBy(GradleVersion.version("1.8")).present
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 12:06:27 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. pkg/volume/nfs/nfs.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/kubernetes/pkg/volume"
    	"k8s.io/kubernetes/pkg/volume/util"
    	"k8s.io/kubernetes/pkg/volume/util/recyclerclient"
    )
    
    func getPath(uid types.UID, volName string, host volume.VolumeHost) string {
    	return host.GetPodVolumeDir(uid, utilstrings.EscapeQualifiedName(nfsPluginName), volName)
    }
    
    // ProbeVolumePlugins is the primary entrypoint for volume plugins.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultIsolatedProject.java

            this.rootProject = rootProject;
        }
    
        @Override
        public String getName() {
            return project.getName();
        }
    
        @Override
        public String getPath() {
            return project.getPath();
        }
    
        @Override
        public String getBuildTreePath() {
            return project.getBuildTreePath();
        }
    
        @Override
        public Directory getProjectDirectory() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 18:34:13 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/SingletonChildMap.java

                }
    
                @Override
                public ChildMap<RESULT> withReplacedChild(RESULT newChild) {
                    return withReplacedChild(entry.getPath(), newChild);
                }
    
                @Override
                public ChildMap<RESULT> withReplacedChild(String newChildPath, RESULT newChild) {
                    return getChildMap().withReplacedChild(newChildPath, newChild);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 13:19:32 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. src/internal/types/testdata/fixedbugs/issue61879.go

    // Larger example from issue
    
    type InterfaceA[T comparable] interface {
    	setData(string) InterfaceA[T]
    }
    
    type ImplA[T comparable] struct {
    	data string
    	args []any
    }
    
    func NewInterfaceA[T comparable](args ...any) InterfaceA[T] {
    	return &ImplA[T]{
    		data: fmt.Sprintf("%v", args...),
    		args: args,
    	}
    }
    
    func (k *ImplA[T]) setData(data string) InterfaceA[T] {
    	k.data = data
    	return k
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 19:42:56 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/ModelGraphTest.groovy

            def listener2 = allAcceptingListener()
            def listener3 = allAcceptingListener()
            def a = node("a")
            def b = node("b")
    
            given:
            listener2.getPath() >> b.path
            listener3.getPath() >> b.path
    
            when:
            graph.add(a)
            graph.addListener(listener1)
            graph.add(b)
    
            then:
            1 * listener1.onDiscovered(graph.root)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/Classpath.java

            return newSourceFolders.stream().anyMatch(newSourceFolder -> {
                return Objects.equal(sourceFolder.getKind(), newSourceFolder.getKind())
                    && Objects.equal(sourceFolder.getPath(), newSourceFolder.getPath())
                    && Objects.equal(sourceFolder.getExcludes(), newSourceFolder.getExcludes())
                    && Objects.equal(sourceFolder.getIncludes(), newSourceFolder.getIncludes());
            });
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 15:55:52 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  9. fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/TextTransformerTest.java

        public void test_getData() throws Exception {
            final AccessResultDataImpl accessResultData = new AccessResultDataImpl();
            accessResultData.setTransformerName("textTransformer");
            accessResultData.setData("xyz".getBytes());
    
            final Object obj = textTransformer.getData(accessResultData);
            assertNotNull(obj);
            assertTrue(obj instanceof String);
            assertEquals("xyz", obj.toString());
        }
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/model/DefaultGradleProject.java

            this.children = ImmutableList.copyOf(children); // also ensures it's serializable
            return this;
        }
    
        public String getPath() {
            return projectIdentifier.getProjectPath();
        }
    
        public DefaultProjectIdentifier getProjectIdentifier() {
            return projectIdentifier;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top