Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 192 for isValidate (0.19 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/DisconnectedIvyXmlModuleDescriptorParser.java

                Parser parser = new DisconnectedParser(getParseContext(), moduleDescriptorConverter, res, descriptorURL, properties, moduleIdentifierFactory, metadataFactory);
                parser.setValidate(isValidate());
                return parser;
            }
    
            @Override
            protected ModuleDescriptor parseOtherIvyFile(String parentOrganisation,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                parser.setValidate(validate);
                return parser;
            }
    
            public void setValidate(boolean validate) {
                this.validate = validate;
            }
    
            public boolean isValidate() {
                return validate;
            }
    
            public DescriptorParseContext getParseContext() {
                return parseContext;
            }
    
            public void parse() throws ParseException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/UnknownFileSystemNodeTest.groovy

        }
    
        @Override
        boolean isAllowEmptyChildren() {
            return false
        }
    
        def "invalidate #vfsSpec.searchedPath removes child #vfsSpec.selectedChildPath (#vfsSpec)"() {
            setupTest(vfsSpec)
    
            when:
            def resultRoot = initialRoot.invalidate(searchedPath, CASE_SENSITIVE, diffListener).get()
            then:
            resultRoot.children == childrenWithSelectedChildRemoved()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/PartialDirectoryNodeTest.groovy

        }
    
        @Override
        boolean isAllowEmptyChildren() {
            return true
        }
    
        def "invalidate #vfsSpec.searchedPath removes child #vfsSpec.selectedChildPath (#vfsSpec)"() {
            setupTest(vfsSpec)
    
            when:
            def resultRoot = initialRoot.invalidate(searchedPath, CASE_SENSITIVE, diffListener).get()
            then:
            resultRoot.children == childrenWithSelectedChildRemoved()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/AbstractVirtualFileSystemTest.groovy

                    return directory(location, [])
                } as Supplier<FileSystemLocationSnapshot>)
            }
            async {
                thread.blockUntil.snapshottingStarted
                vfs.invalidate(['/my/location/new/something'])
                instant.invalidated
            }
            then:
            instant.snapshottingStarted < instant.invalidated
            instant.invalidated < instant.snapshottingFinished
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. fess-crawler-es/src/main/java/org/codelibs/fess/crawler/service/impl/EsUrlFilterService.java

            }
            insertAll(urlFilterList, OpType.INDEX);
            invalidateSet.forEach(s -> excludeFilterCache.invalidate(s));
        }
    
        @Override
        public void delete(final String sessionId) {
            deleteBySessionId(sessionId);
            includeFilterCache.invalidate(sessionId);
            excludeFilterCache.invalidate(sessionId);
        }
    
        @Override
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/DirectoryNodeTest.groovy

        @Override
        protected FileSystemLocationSnapshot mockChild() {
            Mock(FileSystemLocationSnapshot)
        }
    
        def "invalidate child with no common pathToParent creates a partial directory node (#vfsSpec)"() {
            setupTest(vfsSpec)
    
            when:
            def resultRoot = initialRoot.invalidate(searchedPath, CASE_SENSITIVE, diffListener).get()
            then:
            resultRoot instanceof PartialDirectoryNode
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/DefaultSnapshotHierarchyTest.groovy

        }
    
        def "can invalidate child of file"() {
            def file = tmpDir.createFile("some/dir/file.txt")
            def set = snapshot(file)
    
            when:
            set = invalidate(set, file.file("child"))
            then:
            assertHasNoMetadata(set, file)
        }
    
        def "can invalidate branching off of snapshot"() {
            def dir = tmpDir.createDir("some/sub/dir")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 32.4K bytes
    - Viewed (0)
  9. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/registry/impl/HierarchicalFileWatcherUpdaterTest.groovy

            then:
            1 * watcher.startWatching({ equalIgnoringOrder(it, [rootDir.parentFile]) })
            0 * _
    
            when:
            invalidate(rootDirSnapshot.children[0])
            invalidate(rootDirSnapshot.children[1])
            then:
            0 * _
    
            when:
            invalidate(rootDirSnapshot.children[2])
            then:
            1 * watcher.stopWatching({ equalIgnoringOrder(it, [rootDir.parentFile]) })
            0 * _
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 13:24:54 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/impl/DefaultSnapshotHierarchy.java

            );
        }
    
        @Override
        public SnapshotHierarchy invalidate(String absolutePath, NodeDiffListener diffListener) {
            VfsRelativePath relativePath = VfsRelativePath.of(absolutePath);
            if (relativePath.isEmpty()) {
                diffListener.nodeRemoved(rootNode);
                return empty();
            }
            return rootNode.invalidate(relativePath, caseSensitivity, diffListener)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top