Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for vfsSpec (0.12 sec)

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

            interaction { noMoreInteractions() }
    
            where:
            vfsSpec << NO_COMMON_PREFIX.findAll { allowEmptyChildren || !it.childPaths.empty }
        }
    
        def "store parent #vfsSpec.searchedPath replaces child #vfsSpec.selectedChildPath (#vfsSpec)"() {
            setupTest(vfsSpec)
            def newChildPath = searchedPath.asString
            def snapshot = Mock(MetadataSnapshot)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/native/language-native/src/main/java/org/gradle/swiftpm/plugins/SwiftPackageManagerExportPlugin.java

                        ModuleComponentSelector depSelector = DefaultModuleComponentSelector.newSelector(externalDependency);
                        VersionControlSpec vcsSpec = vcsResolver.locateVcsFor(depSelector);
                        if (vcsSpec == null || !(vcsSpec instanceof GitVersionControlSpec)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  8. src/cmd/doc/pkg.go

    	var typ ast.Expr
    	for _, spec := range value.Decl.Specs {
    		vspec := spec.(*ast.ValueSpec)
    
    		// The type name may carry over from a previous specification in the
    		// case of constants and iota.
    		if vspec.Type != nil {
    			typ = vspec.Type
    		}
    
    		for _, ident := range vspec.Names {
    			if showSrc || isExported(ident.Name) {
    				if vspec.Type == nil && vspec.Values == nil && typ != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 20:15:52 UTC 2024
    - 32K bytes
    - Viewed (0)
  9. istioctl/pkg/describe/describe.go

    				fmt.Fprintf(writer, "%s%s\n", printSpaces(initPrintNum+printLevel1), newfact)
    				facts++
    			}
    		} else {
    			mismatchNotes = append(mismatchNotes, newfacts...)
    		}
    	}
    
    	// TODO vsSpec.Tls if I can find examples in the wild
    
    	for _, tcpRoute := range vs.Spec.Tcp {
    		routeMatch, newfacts := tcpRouteMatchSvc(vs, tcpRoute, svc)
    		if routeMatch {
    			matches++
    			for _, newfact := range newfacts {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
Back to top