Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 177 for parents (0.8 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KDocReferenceResolver.kt

                        classParts = parts.subList(lastPackagePartIndexExclusive, parts.size),
                        callable = null,
                    )
                )
    
                if (lastPackagePartIndexExclusive <= parts.size - 1) {
                    yield(
                        FqNameInterpretation.create(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                throws ModelBuildingException {
            problems.setSource(childModel);
    
            Parent parent = childModel.getParent();
    
            String groupId = parent.getGroupId();
            String artifactId = parent.getArtifactId();
            String version = parent.getVersion();
    
            ModelResolver modelResolver = request.getModelResolver();
            Objects.requireNonNull(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromGroovyDslIntegrationTest.groovy

            "rootProject.subprojects"                | "subprojects of project ':'"
            "parent.subprojects"                     | "subprojects of project ':'"
            "project(':b').project(':').subprojects" | "subprojects of project ':'"
            "project(':b').parent.subprojects"       | "subprojects of project ':'"
            "project(':').project('b')"              | "another project ':b'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                }
            }
    
            @Override
            public ModelSource resolveModel(Session session, Parent parent, AtomicReference<Parent> modified)
                    throws ModelResolverException {
                try {
                    org.apache.maven.model.Parent p = new org.apache.maven.model.Parent(parent);
                    InternalSession internalSession = InternalSession.from(session);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

            var parent = parent
            while (parent is KtDotQualifiedExpression) {
                if (parent.selectorExpression !== this) return true
                parent = parent.parent
            }
            return false
        }
    
        private fun KtSimpleNameExpression.isPartOfUserTypeRefQualifier(): Boolean {
            var parent = parent
            while (parent is KtUserType) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 37K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    	for _, dir := range filepath.SplitList(searchPath) {
    		// Search up for every parent of each possible path.
    		for {
    			filename := filepath.Join(dir, path)
    			if f, err := os.Open(filename); err == nil {
    				return f, nil
    			}
    			parent := filepath.Dir(dir)
    			if parent == dir {
    				break
    			}
    			dir = parent
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/func.go

    	// of keys to make iteration order deterministic.
    	Names []*LocalSlot
    	// Canonicalize root/top-level local slots, and canonicalize their pieces.
    	// Because LocalSlot pieces refer to their parents with a pointer, this ensures that equivalent slots really are equal.
    	CanonicalLocalSlots  map[LocalSlot]*LocalSlot
    	CanonicalLocalSplits map[LocalSlotSplitKey]*LocalSlot
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/decl.go

    			}
    
    			// process function literals in init expressions before scope changes
    			check.processDelayed(top)
    
    			// declare all variables
    			// (only at this point are the variable scopes (parents) set)
    			scopePos := syntax.EndPos(s) // see constant declarations
    			for i, name := range s.NameList {
    				// see constant declarations
    				check.declare(check.scope, name, lhs0[i], scopePos)
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modfetch/fetch.go

    			info, err := d.Info()
    			if err == nil && info.Mode()&0222 != 0 {
    				dirs = append(dirs, pathMode{path, info.Mode()})
    			}
    		}
    		return nil
    	})
    
    	// Run over list backward to chmod children before parents.
    	for i := len(dirs) - 1; i >= 0; i-- {
    		os.Chmod(dirs[i].path, dirs[i].mode&^0222)
    	}
    }
    
    // RemoveAll removes a directory written by Download or Unzip, first applying
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/test/test.go

    and tests each of the packages listed on the command line. If a
    package test passes, go test prints only the final 'ok' summary
    line. If a package test fails, go test prints the full test output.
    If invoked with the -bench or -v flag, go test prints the full
    output even for passing package tests, in order to display the
    requested benchmark results or verbose logging. After the package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top