Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 159 for parentuid (0.12 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultInheritanceAssembler.java

            protected String extrapolateChildUrl(String parentUrl, boolean appendPath, Map<Object, Object> context) {
                Object childDirectory = context.get(CHILD_DIRECTORY);
                Object childPathAdjustment = context.get(CHILD_PATH_ADJUSTMENT);
    
                boolean isBlankParentUrl = true;
    
                if (parentUrl != null) {
                    for (int i = 0; i < parentUrl.length(); i++) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/tasks/internal/RelativeFileNameTransformerTest.groovy

            "subdir/another" | "../.."
        }
    
        def "finds relative path to descendant from and to both files and directories "() {
            setup:
            TestFile parentDir = testDir.createDir('parent')
            parentDir.create {
                file 'parent.txt'
                dir1 {
                    file 'file1.txt'
                    dir2 {
                        file 'file2.txt'
                        dir3 {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/classpath/DefaultClasspathBuilder.java

            }
        }
    
        private void buildJar(File jarFile, Action action) throws IOException {
            File parentDir = jarFile.getParentFile();
            File tmpFile = temporaryFileProvider.createTemporaryFile(jarFile.getName(), ".tmp");
            try {
                Files.createDirectories(parentDir.toPath());
                inPlaceBuilder.jar(tmpFile, action);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist_edit.jsp

                                        <label for="doc.parent_id" class="col-sm-3 text-sm-right col-form-label">parent_id</label>
                                        <div class="col-sm-9">
                                            <la:errors property="doc.parent_id"/>
                                            <la:text styleId="doc.parent_id" property="doc.parent_id" styleClass="form-control"/>
                                        </div>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 24.9K bytes
    - Viewed (0)
  5. src/cmd/link/internal/dwtest/dwtest.go

    // parent.
    func (ex *Examiner) ParentCU(idx int) *dwarf.Entry {
    	for {
    		parentDie := ex.Parent(idx)
    		if parentDie == nil {
    			return nil
    		}
    		if parentDie.Tag == dwarf.TagCompileUnit {
    			return parentDie
    		}
    		idx = ex.IdxFromOffset(parentDie.Offset)
    	}
    }
    
    // FileRef takes a given DIE by index and a numeric file reference
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 15:22:18 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/worker/TestEventSerializerTest.groovy

            def result1 = serialize(event1)
            def result2 = serialize(event2)
    
            then:
            result1 instanceof TestStartEvent
            result1.parentId == id
            result1.startTime == 123L
            result2 instanceof TestStartEvent
            result2.parentId == null
            result2.startTime == 456L
        }
    
        def "serializes TestCompleteEvent"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/DisconnectedIvyXmlModuleDescriptorParserTest.groovy

            IvyXmlModuleDescriptorParser.Parser disconnectedParser = parser.createParser(parseContext, localResource, [:])
    
            and:
            ModuleDescriptor moduleDescriptor = disconnectedParser.parseOtherIvyFile('myorg', 'parentMod', 'parentRev')
    
            then:
            localResource.getFile() >> new File('ivy.xml')
            disconnectedParser
            disconnectedParser instanceof DisconnectedIvyXmlModuleDescriptorParser.DisconnectedParser
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DirectoryWalkerTest.groovy

        private static long millisToSeconds(long millis) {
            millis / 1000L
        }
    
        private static generateFilesAndSubDirectories(TestFile parentDir, int fileCount, int dirCount, int maxDepth, int currentDepth, AtomicInteger fileIdGenerator) {
            for (int i = 0; i < fileCount; i++) {
                parentDir.createFile("file" + fileIdGenerator.incrementAndGet()) << ("x" * fileIdGenerator.get())
            }
            if (currentDepth < maxDepth) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/internal/operations/notify/BuildOperationNotificationBridgeTest.groovy

            }
        }
    
        BuildOperationDescriptor d(Long id, Long parentId, Long details) {
            BuildOperationDescriptor.displayName(id.toString()).details(details).build(
                new OperationIdentifier(id),
                parentId == null ? null : new OperationIdentifier(parentId)
            )
        }
    
        def "parentId is of last parent that a notification was sent for"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. src/os/removeall_at.go

    		if pathErr, ok := err.(*PathError); ok {
    			pathErr.Path = parentDir + string(PathSeparator) + pathErr.Path
    			err = pathErr
    		}
    		return err
    	}
    	return nil
    }
    
    func removeAllFrom(parent *File, base string) error {
    	parentFd := int(parent.Fd())
    	// Simple case: if Unlink (aka remove) works, we're done.
    	err := ignoringEINTR(func() error {
    		return unix.Unlinkat(parentFd, base, 0)
    	})
    	if err == nil || IsNotExist(err) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top