Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,030 for Lparen (0.13 sec)

  1. 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)
  2. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/HierarchicalClassLoaderStructure.java

                    Objects.equal(parent, that.parent);
        }
    
        @Override
        public int hashCode() {
            return Objects.hashCode(self, parent);
        }
    
        @Override
        public String toString() {
            return "HierarchicalClassLoaderStructure{" +
                    "self=" + self +
                    ", parent=" + parent +
                    '}';
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. maven-core/src/test/resources/org/apache/maven/project/workspace/resolveParentPom/pom.xml

    <project>
      <modelVersion>4.0.0</modelVersion>
      <parent>
        <groupId>tests</groupId>
        <artifactId>resolve-parent-pom-parent</artifactId>
        <version>1</version>
      </parent>
    
      <artifactId>resolve-parent-pom</artifactId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Nov 23 12:04:30 UTC 2014
    - 236 bytes
    - Viewed (0)
  8. 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)
  9. subprojects/core/src/main/java/org/gradle/api/internal/initialization/ClassLoaderScopeIdentifier.java

    public class ClassLoaderScopeIdentifier implements ClassLoaderScopeId {
    
        @Nullable
        private final ClassLoaderScopeIdentifier parent;
        private final String name;
    
        public ClassLoaderScopeIdentifier(@Nullable ClassLoaderScopeIdentifier parent, String name) {
            this.parent = parent;
            this.name = name;
        }
    
        public ClassLoaderScopeIdentifier child(String name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 03 07:46:21 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  10. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/vfs/impl/SnapshotWatchedDirectoryFinderTest.groovy

        def "resolves directory to watch from snapshot"() {
            def parent = temporaryFolder.createDir("parent")
            def dir = parent.createDir("dir")
            def file = parent.createFile("file.txt")
            def missingFile = parent.file("missing/file.txt")
    
            expect:
            getDirectoryToWatch(regularFile(file.absolutePath)) == parent
            getDirectoryToWatch(directory(dir.absolutePath, [])) == dir
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:38:01 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top