Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 363 for Lparen (0.12 sec)

  1. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/ModelRuleBindingFailureIntegrationTest.groovy

          - person.parent.parent.parent.parent Person (parameter 2) [*]
    
      MyPlugin#name(Person, Person)
        inputs:
          - person.parent.parent Person (parameter 1) [*]
          - person.parent.parent.parent.parent Person (parameter 2) [*]
    
      person.parent.name { ... } @ build.gradle line 25, column 5
        subject:
          - person.parent.name Object [*]
    
      person.parent.parent.parent.parent.parent.name { ... } @ build.gradle line 28, column 5
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/FileHierarchySetTest.groovy

            flatten(s7) == [parent.path]
        }
    
        def "has a nice toString representation"() {
            def parent = tmpDir.createDir()
            def dir1 = parent.createDir("dir1")
            def dir2 = parent.createDir("common/dir2")
            def dir3 = parent.createDir("common/dir3")
            def set = from(dir1, dir2, dir3)
    
            expect:
            set.toString() == """
                ${parent.absolutePath}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/initialization/loadercache/DefaultClassLoaderCache.java

            return get(id, classPath, parent, filterSpec, null);
        }
    
        @Override
        public ClassLoader get(ClassLoaderId id, ClassPath classPath, @Nullable ClassLoader parent, @Nullable FilteringClassLoader.Spec filterSpec, @Nullable HashCode implementationHash) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-operations/src/test/groovy/org/gradle/internal/operations/DefaultBuildOperationRunnerTest.groovy

                assert operation.id == parent.id
                assert context.failure == null
            }
        }
    
        def "cannot start child operation when parent has completed"() {
            BuildOperationRef parent = null
    
            given:
            operationRunner.run(runnableBuildOperation("parent") {
                parent = operationRunner.currentOperation
            })
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:56:07 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  5. src/context/context.go

    // It sets the parent context of cancelCtx.
    func (c *cancelCtx) propagateCancel(parent Context, child canceler) {
    	c.Context = parent
    
    	done := parent.Done()
    	if done == nil {
    		return // parent is never canceled
    	}
    
    	select {
    	case <-done:
    		// parent is already canceled
    		child.cancel(false, parent.Err(), Cause(parent))
    		return
    	default:
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/scope.go

    // NewScope returns a new, empty scope contained in the given parent
    // scope, if any. The comment is for debugging only.
    func NewScope(parent *Scope, pos, end syntax.Pos, comment string) *Scope {
    	s := &Scope{parent, nil, 0, nil, pos, end, comment, false}
    	// don't add children to Universe scope!
    	if parent != nil && parent != Universe {
    		parent.children = append(parent.children, s)
    		s.number = len(parent.children)
    	}
    	return s
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. src/go/types/scope.go

    // NewScope returns a new, empty scope contained in the given parent
    // scope, if any. The comment is for debugging only.
    func NewScope(parent *Scope, pos, end token.Pos, comment string) *Scope {
    	s := &Scope{parent, nil, 0, nil, pos, end, comment, false}
    	// don't add children to Universe scope!
    	if parent != nil && parent != Universe {
    		parent.children = append(parent.children, s)
    		s.number = len(parent.children)
    	}
    	return s
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserBomTest.groovy

        }
    
        def "dependency management block from parent pom is inherited"() {
            given:
            pomFile << """
    <project>
        <modelVersion>4.0.0</modelVersion>
        <groupId>group-a</groupId>
        <artifactId>module-a</artifactId>
        <version>1.0</version>
    
        <parent>
            <groupId>group-a</groupId>
            <artifactId>parent</artifactId>
            <version>1.0</version>
        </parent>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/rsc.io/markdown/link.go

    		case '?', '!', '.', ',', ':', '@', '_', '~':
    			// Trim certain trailing punctuation.
    			i--
    			continue Trim
    
    		case ')':
    			// Trim trailing unmatched (by count only) parens.
    			if paren < 0 {
    				for s[i-1] == ')' && paren < 0 {
    					paren++
    					i--
    				}
    				continue Trim
    			}
    
    		case ';':
    			// Trim entity reference.
    			// After doing the work of the scan, we either cut that part off the string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  10. operator/pkg/tpath/tree.go

    	}
    
    	scope.Debug("delete")
    	if nc.Parent == nil {
    		return errors.New("cannot delete root element")
    	}
    
    	switch {
    	case isSliceOrPtrInterface(nc.Parent.Node):
    		if err := util.DeleteFromSlicePtr(nc.Parent.Node, nc.Parent.KeyToChild.(int)); err != nil {
    			return err
    		}
    		if isMapOrInterface(nc.Parent.Parent.Node) {
    			return util.InsertIntoMap(nc.Parent.Parent.Node, nc.Parent.Parent.KeyToChild, nc.Parent.Node)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 17.5K bytes
    - Viewed (0)
Back to top