Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,840 for rparenth (0.23 sec)

  1. maven-model-builder/src/test/resources/poms/inheritance/no-append-urls3-parent.xml

      child.project.url.inherit.append.path="false">
      <modelVersion>4.0.0</modelVersion>
    
      <groupId>inheritance</groupId>
      <artifactId>parent</artifactId>
      <version>11-SNAPSHOT</version>
    
      <name>Model urls inheritance test parent, with special merge test for mergeSite_ChildSiteUrlInheritAppendPath</name>
    
      <scm child.scm.connection.inherit.append.path="false"
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionInfoProvider.kt

                is KtWhenCondition ->
                    doesParentUseChild(parent.parent, parent)
    
                // Type parameters, return types and other annotations are all contained in KtUserType,
                // and are never considered used as expressions
                is KtUserType ->
                    false
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/DefaultGroupTaskReportModel.java

                    }
                    Path parent1 = task1.getPath().getParent();
                    Path parent2 = task2.getPath().getParent();
                    if (parent1 == null && parent2 != null) {
                        return -1;
                    }
                    if (parent1 != null && parent2 == null) {
                        return 1;
                    }
                    if (parent1 == null) {
                        return 0;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 08 21:50:18 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/artifact/resolver/ResolutionNode.java

            depth = 0;
            parents = Collections.emptyList();
            parent = null;
        }
    
        public ResolutionNode(Artifact artifact, List<ArtifactRepository> remoteRepositories, ResolutionNode parent) {
            this.artifact = artifact;
            this.remoteRepositories = remoteRepositories;
            depth = parent.depth + 1;
            parents = new ArrayList<>();
            parents.addAll(parent.parents);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/extensibility/ExtensionContainerTest.groovy

            given:
            def parents = []
            def capabilities = []
    
            when:
            container.add new TypeOf<List<Parent>>() {}, "parents", parents
            container.add new TypeOf<List<Capability>>() {}, "capabilities", capabilities
    
            then:
            container.getByType(new TypeOf<List<Parent>>() {}) is parents
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  6. src/encoding/xml/marshal_test.go

    		ExpectXML: `<result>` +
    			`<parent>` +
    			`<c>C</c>` +
    			`<b>B</b>` +
    			`<a>A</a>` +
    			`</parent>` +
    			`</result>`,
    	},
    	{
    		Value: &NilTest{A: "A", B: nil, C: "C"},
    		ExpectXML: `<NilTest>` +
    			`<parent1>` +
    			`<parent2><a>A</a></parent2>` +
    			`<parent2><c>C</c></parent2>` +
    			`</parent1>` +
    			`</NilTest>`,
    		MarshalOnly: true, // Uses interface{}
    	},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  7. pkg/adsc/delta.go

    		deltaLog.Fatalf("Failed to drop resource: unknown parent: %v, %v", parent, c.tree)
    	}
    	for p := range parentNode.Parents {
    		c.unrelate(p, parent)
    	}
    
    	if _, f := c.tree[parent]; f {
    		deltaLog.Fatalf("Failed to drop resource: unrelate should have handled this: %v", c.dumpTree())
    	}
    }
    
    func (c *Client) unrelate(parent, child resourceKey) {
    	parentNode, f := c.tree[parent]
    	if !f {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 09:32:41 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/ServiceRegistryBuilder.java

            return this;
        }
    
        public ServiceRegistry build() {
            ServiceRegistry[] parents = this.parents.toArray(new ServiceRegistry[0]);
    
            DefaultServiceRegistry registry = scope != null
                ? new ScopedServiceRegistry(scope, strict, displayName, parents)
                : new DefaultServiceRegistry(displayName, parents);
    
            for (ServiceRegistrationProvider provider : providers) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. maven-core/src/test/resources-project-builder/duplicate-exclusions-dependency/nexus-parent.xml

      <modelVersion>4.0.0</modelVersion>
    
      <groupId>org.sonatype.nexus</groupId>
      <artifactId>nexus-parent</artifactId>
      <version>8-SNAPSHOT</version>
      <packaging>pom</packaging>
    
      <properties>
        <plexus.version>1.0-beta-3.0.5-SNAPSHOT</plexus.version>
      </properties>
    
      <dependencyManagement>
        <dependencies>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Nov 09 12:45:14 UTC 2019
    - 961 bytes
    - Viewed (0)
  10. maven-model-builder/src/test/resources/poms/inheritance/urls-parent.xml

      <modelVersion>4.0.0</modelVersion>
    
      <groupId>inheritance</groupId>
      <artifactId>parent</artifactId>
      <version>11-SNAPSHOT</version>
    
      <name>Model urls inheritance test parent</name>
      <description>Most classical case: child in direct subdirectory with directory name == child artifactId</description>
    
      <modules>
        <module>child-artifact-id</module>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.8K bytes
    - Viewed (0)
Back to top