Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,030 for Lparen (0.14 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/path/DefaultUrlNormalizer.java

                    }
                    int parent = idx - 1;
                    while (parent >= 0 && result.charAt(parent) == '/') {
                        parent--;
                    }
                    parent = result.lastIndexOf('/', parent);
                    if (parent < 0) {
                        result = result.substring(idx + 4);
                    } else {
                        result = result.substring(0, parent) + result.substring(idx + 3);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/internal/DefaultOperationDescriptor.java

        private final String displayName;
        private final OperationDescriptor parent;
    
        public DefaultOperationDescriptor(InternalOperationDescriptor internalDescriptor, OperationDescriptor parent) {
            this.name = internalDescriptor.getName();
            this.displayName = internalDescriptor.getDisplayName();
            this.parent = parent;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/resource/transfer/ProgressLoggingExternalResourceLister.java

            private final ExternalResourceName parent;
    
            public ListOperation(ExternalResourceName parent) {
                this.parent = parent;
            }
    
            @Override
            public List<String> call(BuildOperationContext context) {
                try {
                    return delegate.list(parent);
                } finally {
                    context.setResult(LIST_RESULT);
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 12:31:19 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ProgressEvents.groovy

                        }
                    }
    
                    // parent should also be running
                    assert descriptor.parent == null || running.containsKey(descriptor.parent)
                    def parent = descriptor.parent == null ? null : operations.find { it.descriptor == descriptor.parent }
    
                    Operation operation = newOperation(event, parent, descriptor)
                    operations.add(operation)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 13:50:05 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  5. maven-core/src/test/resources-project-builder/url-append/parent/pom.xml

      </modules>
    
      <url>https://project.url/parent</url>
    
      <scm>
        <url>https://viewvc.project.url/parent</url>
        <connection>https://scm.project.url/parent</connection>
        <developerConnection>https://scm.project.url/parent</developerConnection>
      </scm>
      <distributionManagement>
        <site>
          <url>https://site.project.url/parent</url>
          <id>parent.site</id>
        </site>
      </distributionManagement>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/projects/parent-version-range-local-child-without-version/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>
      <!-- version>1</version Must not inherit version from parent due to version range. -->
      <packaging>pom</packaging>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 10 21:46:52 UTC 2017
    - 348 bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/resolution/ModelResolver.java

         */
        ModelResolver newCopy();
    
        default ModelSource resolveModel(Parent parent, AtomicReference<Parent> modified)
                throws UnresolvableModelException {
            org.apache.maven.model.Parent p = new org.apache.maven.model.Parent(parent);
            ModelSource result = resolveModel(p);
            if (p.getDelegate() != parent) {
                modified.set(p.getDelegate());
            }
            return result;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 7K bytes
    - Viewed (0)
  8. src/os/getwd.go

    	// Root is a special case because it has no parent
    	// and ends in a slash.
    	root, err := statNolog("/")
    	if err != nil {
    		// Can't stat root - no hope.
    		return "", err
    	}
    	if SameFile(root, dot) {
    		return "/", nil
    	}
    
    	// General algorithm: find name in parent
    	// and then find name of parent. Each iteration
    	// adds /name to the beginning of dir.
    	dir = ""
    	for parent := ".."; ; parent = "../" + parent {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 28 06:28:02 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  9. pkg/controller/history/controller_history.go

    	// controller. If the returned error is nil the returned slice of ControllerRevisions is valid. If the
    	// returned error is not nil, the returned slice is not valid.
    	ListControllerRevisions(parent metav1.Object, selector labels.Selector) ([]*apps.ControllerRevision, error)
    	// CreateControllerRevision attempts to create the revision as owned by parent via a ControllerRef. If name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 13:33:52 UTC 2021
    - 18.2K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/multiModuleWithRemoteParent/some-thing/pom.xml

        <parent>
            <groupId>util.util.parent</groupId>
            <artifactId>util-parent</artifactId>
            <version>3</version>
        </parent>
    
        <modelVersion>4.0.0</modelVersion>
    
        <groupId>com.example.webinar</groupId>
        <artifactId>webinar-parent</artifactId>
        <version>1.0-SNAPSHOT</version>
        <packaging>pom</packaging>
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top