Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 36 for printpath (0.17 sec)

  1. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/AbstractFileSystemNodeWithChildrenTest.groovy

            childPaths.findAll { it.contains('/') } collectMany { childPath ->
                parentPaths(childPath).collect { parentPath ->
                    new VirtualFileSystemTestSpec(childPaths, parentPath, findPathWithParent(childPaths, parentPath))
                }
            }
        }
    
        /**
         * The queried/updated path is one of the initial children of the node under test.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/file/RelativePath.java

            int nextIndex = 0;
            if (parentPath != null) {
                System.arraycopy(parentPath.segments, 0, newSegments, 0, parentPath.segments.length);
                nextIndex = parentPath.segments.length;
            }
            for (String segment : childSegments) {
                if (segment.equals(".")) {
                    continue;
                }
                if (segment.equals("..")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 05:20:08 UTC 2023
    - 9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/runtime/converter.go

    		return
    	}
    
    	pathLen := len(c.parentPath)
    	c.pushKey(field)
    	errPath := strings.Join(c.parentPath, "")
    	c.parentPath = c.parentPath[:pathLen]
    	c.unknownFieldErrors = append(c.unknownFieldErrors, fmt.Errorf(`unknown field "%s"`, errPath))
    }
    
    func (c *fromUnstructuredContext) pushIndex(index int) {
    	if !c.returnUnknownFields {
    		return
    	}
    
    	c.parentPath = append(c.parentPath, "[", strconv.Itoa(index), "]")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 16:02:13 UTC 2023
    - 24.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/util/Path.java

                return null;
            }
            if (segments.length == 1) {
                return absolute ? ROOT : null;
            }
            String[] parentPath = new String[segments.length - 1];
            System.arraycopy(segments, 0, parentPath, 0, parentPath.length);
            return new Path(parentPath, absolute);
        }
    
        /**
         * Returns the base name of this path, or null if this path is the root path.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 13:03:23 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/objectmeta/coerce.go

    	// ReturnUnknownFieldPaths will return the paths to fields that are not
    	// recognized as part of the schema.
    	ReturnUnknownFieldPaths bool
    	// ParentPath provides the current path up to the given ObjectMeta.
    	// If nil, the metadata is assumed to be at the root of the object.
    	ParentPath *field.Path
    }
    
    // GetObjectMetaWithOptions  does conversion of JSON to ObjectMeta.
    // It first tries json.Unmarshal into a metav1.ObjectMeta
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 18 14:55:12 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top