Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,030 for Rparen (0.33 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/initialization/ClassLoaderScope.java

         * ClassLoader of the parent scope.
         *
         * <p>Can not be called after being locked.
         *
         * @return this
         */
        ClassLoaderScope local(ClassPath classPath);
    
        /**
         * Makes the provided classes visible to this scope and its children. The classes are loaded in their own ClassLoader whose parent is the export ClassLoader
         * of the parent scope.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 20:19:43 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/merged-plugin-exec-order/w-plugin-mgmt/pom.xml

              <executions>
                <execution>
                  <id>parent-1</id>
                  <phase>validate</phase>
                  <goals>
                    <goal>parent-1</goal>
                  </goals>
                </execution>
                <execution>
                  <id>parent-2</id>
                  <phase>validate</phase>
                  <goals>
                    <goal>parent-2</goal>
                  </goals>
                </execution>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  3. maven-core/src/test/resources-project-builder/merged-plugin-exec-order/wo-plugin-mgmt/pom.xml

            <executions>
              <execution>
                <id>parent-1</id>
                <phase>validate</phase>
                <goals>
                  <goal>parent-1</goal>
                </goals>
              </execution>
              <execution>
                <id>parent-2</id>
                <phase>validate</phase>
                <goals>
                  <goal>parent-2</goal>
                </goals>
              </execution>
              <execution>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/lca_test.go

    type lcaEasy struct {
    	parent []*Block
    }
    
    func makeLCAeasy(f *Func) *lcaEasy {
    	return &lcaEasy{parent: dominators(f)}
    }
    
    func (lca *lcaEasy) find(a, b *Block) *Block {
    	da := lca.depth(a)
    	db := lca.depth(b)
    	for da > db {
    		da--
    		a = lca.parent[a.ID]
    	}
    	for da < db {
    		db--
    		b = lca.parent[b.ID]
    	}
    	for a != b {
    		a = lca.parent[a.ID]
    		b = lca.parent[b.ID]
    	}
    	return a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Sep 01 14:25:12 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  5. platforms/extensibility/unit-test-fixtures/src/main/java/org/gradle/testfixtures/ProjectBuilder.java

            this.name = name;
            return this;
        }
    
        /**
         * Specifies the parent project. Use it to create multi-module projects.
         *
         * @param parent parent project
         * @return The builder
         */
        public ProjectBuilder withParent(@Nullable Project parent) {
            this.parent = parent;
            return this;
        }
    
        /**
         * Creates the project.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/projects/parent-version-range-external-child-pom-parent-version-expression/pom.xml

    <project>
      <modelVersion>4.0.0</modelVersion>
      <parent>
        <groupId>org.apache</groupId>
        <artifactId>apache</artifactId>
        <version>[1,1]</version>
      </parent>
      <artifactId>child</artifactId>
      <!-- Must not use ${project.parent.version} due to version range. -->
      <version>${pom.parent.version}</version>
      <packaging>pom</packaging>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Feb 01 13:35:07 UTC 2022
    - 357 bytes
    - Viewed (0)
  7. maven-core/src/test/resources/projects/parent-version-range-local-child-project-version-expression/child/pom.xml

    <project>
      <modelVersion>4.0.0</modelVersion>
      <parent>
        <groupId>parent-version-range-local</groupId>
        <artifactId>parent</artifactId>
        <version>[1,10]</version>
      </parent>
      <artifactId>child</artifactId>
      <!-- Must not use ${project.version} due to version range. -->
      <version>${project.version}</version>
      <packaging>pom</packaging>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Feb 01 13:35:07 UTC 2022
    - 364 bytes
    - Viewed (0)
  8. docs/en/docs/img/deployment/https/https01.drawio

                <root>
                    <mxCell id="0"/>
                    <mxCell id="1" parent="0"/>
                    <mxCell id="8" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;strokeWidth=3;exitX=0.092;exitY=1.01;exitDx=0;exitDy=0;dashed=1;exitPerimeter=0;" parent="1" edge="1">
                        <mxGeometry relative="1" as="geometry">
                            <Array as="points">
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/DefaultResolvedDependencySpec.groovy

            DefaultResolvedDependency parent = new DefaultResolvedDependency("someConfiguration", newId("someGroup", "parent", "someVersion"), buildOperationProcessor)
            resolvedDependency.getParents().add(parent)
    
            then:
            resolvedDependency.getArtifacts(parent).empty
        }
    
        def getParentArtifactsWithParentWithoutParentArtifacts() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/state/DefaultManagedFactoryRegistry.java

    public class DefaultManagedFactoryRegistry implements ManagedFactoryRegistry {
        private final ManagedFactoryRegistry parent;
        private final Cache<Integer, ManagedFactory> managedFactoryCache = CacheBuilder.newBuilder().build();
    
        public DefaultManagedFactoryRegistry(ManagedFactoryRegistry parent) {
            this.parent = parent;
        }
    
        public DefaultManagedFactoryRegistry() {
            this(null);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top