Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for printpath (0.11 sec)

  1. cmd/kubeadm/app/util/dryrun/dryrun.go

    type FileToPrint struct {
    	RealPath  string
    	PrintPath string
    }
    
    // NewFileToPrint makes a new instance of FileToPrint with the specified arguments
    func NewFileToPrint(realPath, printPath string) FileToPrint {
    	return FileToPrint{
    		RealPath:  realPath,
    		PrintPath: printPath,
    	}
    }
    
    // PrintDryRunFile is a helper method around PrintDryRunFiles
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r213/ModelsWithGradleProjectCrossVersionSpec.groovy

            def project = projects.find {it.name == name}
            assert project != null :  "No project with name $name found"
            assertProject(project, rootDir, path, name, parentPath, childPaths)
         }
    
        private static void assertProject(def project, File rootDir, String path, String name, String parentPath, List<String> childPaths) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/DefaultOutputFilesRepository.java

                            while (outputFileParent != null) {
                                String parentPath = outputFileParent.getPath();
                                if (outputFiles.getIfPresent(parentPath) != null) {
                                    break;
                                }
                                outputFiles.put(parentPath, OutputKind.PARENT_OF_OUTPUT);
                                outputFileParent = outputFileParent.getParentFile();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectConfigurationReportingTaskExecutionGraph.kt

            return delegate.findTask(path).also { task ->
                if (task == null) {
                    // check whether the path refers to a different project
                    val parentPath = path?.let(Path::path)?.parent?.path
                    if (parentPath != referrerProject.path) {
                        // even though the task was not found, the current project is coupled with the other project:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  5. platforms/software/resources/src/main/java/org/gradle/internal/resource/ExternalResourceName.java

            String parentPath = extractPath(parent);
            String childPath = path.startsWith("/") ? path.substring(1) : path;
            if (childPath.length() == 0) {
                return parentPath;
            } else if (parentPath.endsWith("/")) {
                return parentPath + childPath;
            } else {
                return parentPath + "/" + childPath;
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/DefaultCopySpec.java

                RelativePath parentPath;
                if (parentResolver == null) {
                    parentPath = new RelativePath(false);
                } else {
                    parentPath = parentResolver.getDestPath();
                }
    
                String path = DefaultCopySpec.this.getDestPath();
                if (path == null) {
                    return parentPath;
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:25:10 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/CopySpecInternal.java

        CopySpecResolver buildRootResolver();
    
        CopySpecResolver buildResolverRelativeToParent(CopySpecResolver parent);
    
        void addChildSpecListener(CopySpecListener listener);
    
        void visit(CopySpecAddress parentPath, CopySpecVisitor visitor);
    
        /**
         * Returns whether the spec, or any of its children have custom copy actions.
         */
        boolean hasCustomActions();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/DefaultJavaInstallationRegistry.java

            final File home = location.getLocation();
            final File parentPath = home.getParentFile();
            final boolean isEmbeddedJre = home.getName().equalsIgnoreCase("jre");
            if (isEmbeddedJre && hasJavaExecutable(parentPath)) {
                return location.withLocation(parentPath);
            }
            return location;
        }
    
        private File findJavaHome(File potentialHome) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:46:10 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheHost.kt

            }
    
            private
            fun settingsDir() =
                service<BuildLayout>().settingsDir
    
            private
            fun getProjectDescriptor(parentPath: Path?): DefaultProjectDescriptor? =
                parentPath?.let { projectDescriptorRegistry.getProject(it.path) }
    
            private
            val projectDescriptorRegistry
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/LibrariesSourceGenerator.java

                }
                String parentPath = parent.getPath();
                return parentPath.isEmpty() ? name : parentPath + "." + name;
            }
    
            String getFullAlias() {
                if (parent == null || wrapping) {
                    return "";
                }
                String parentPath = parent.getFullAlias();
                return parentPath.isEmpty() ? name : parentPath + "." + name;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 36K bytes
    - Viewed (0)
Back to top