Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for vfsSpec (0.24 sec)

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

            addedNodes.empty
            interaction { noMoreInteractions() }
    
            where:
            vfsSpec << IS_PREFIX_OF_CHILD + SAME_PATH
        }
    
        def "invalidate #vfsSpec.searchedPath invalidates children of #vfsSpec.selectedChildPath (#vfsSpec)"() {
            setupTest(vfsSpec)
            def invalidatedChild = mockChild()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/DirectoryNodeTest.groovy

            interaction { noMoreInteractions() }
    
            where:
            vfsSpec << onlyDirectChildren(SAME_PATH)
        }
    
        def "invalidate descendant #vfsSpec.searchedPath of child #vfsSpec.selectedChildPath creates a partial directory node with the invalidated child (#vfsSpec)"() {
            setupTest(vfsSpec)
            def invalidatedChild = mockChild()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/UnknownFileSystemNodeTest.groovy

            addedNodes.empty
            interaction { noMoreInteractions() }
    
            where:
            vfsSpec << (IS_PREFIX_OF_CHILD + SAME_PATH).findAll { it.childPaths.size() == 1 }
        }
    
        def "invalidate #vfsSpec.searchedPath invalidates children of #vfsSpec.selectedChildPath (#vfsSpec)"() {
            setupTest(vfsSpec)
            def invalidatedChild = mockChild()
    
            when:
    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/software/version-control/src/test/groovy/org/gradle/vcs/internal/DefaultVcsMappingStoreTest.groovy

            def rule = Mock(Action)
            def rule2 = Mock(Action)
            def vcsSpec = Stub(VersionControlSpec)
            def build = Stub(GradleInternal)
    
            store.addRule(rule, build)
            store.addRule(rule2, build)
    
            when:
            def spec = store.locateVcsFor(selector)
    
            then:
            spec == vcsSpec
            1 * factory.create(selector) >> mapping
            1 * rule.execute(mapping) >> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/format/formatting.go

    		fsSpec.PriorityLevelConfiguration,
    		fsSpec.MatchingPrecedence))
    	if fsSpec.DistinguisherMethod == nil {
    		buf.WriteString("nil")
    	} else {
    		buf.WriteString(fmt.Sprintf("&%#+v", *fsSpec.DistinguisherMethod))
    	}
    	buf.WriteString(", Rules: []flowcontrol.PolicyRulesWithSubjects{")
    	for idx, rule := range fsSpec.Rules {
    		if idx > 0 {
    			buf.WriteString(", ")
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top