Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for printpath (0.14 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. 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)
  6. 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)
Back to top