Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 42 for getTook (0.51 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyCollector.java

                    public List<Exception> getExceptions() {
                        return result.getExceptions();
                    }
    
                    @Override
                    public Node getRoot() {
                        return session.getNode(result.getRoot(), request.getVerbose());
                    }
                };
            } catch (DependencyCollectionException e) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 4.9K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyCollectorRequest.java

    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Dec 08 08:42:44 GMT 2023
    - 11.7K bytes
    - Viewed (0)
  3. cmd/namespace-lock.go

    	opsID   string
    }
    
    // Lock - block until write lock is taken or timeout has occurred.
    func (di *distLockInstance) GetLock(ctx context.Context, timeout *dynamicTimeout) (LockContext, error) {
    	lockSource := getSource(2)
    	start := UTCNow()
    
    	newCtx, cancel := context.WithCancel(ctx)
    	if !di.rwMutex.GetLock(newCtx, cancel, di.opsID, lockSource, dsync.Options{
    		Timeout:       timeout.Timeout(),
    		RetryInterval: timeout.RetryInterval(),
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Jun 05 23:56:35 GMT 2023
    - 9.2K bytes
    - Viewed (0)
  4. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java

                task.getDocumentationFiles().from(extension.getUserManual().getRoot());
                task.getDocumentationRoot().convention(extension.getUserManual().getRoot());
                task.getDestinationDirectory().convention(layout.getBuildDirectory().dir("tmp/" + task.getName()));
            });
    
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Mar 01 05:46:51 GMT 2024
    - 17.7K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginDependenciesResolver.java

                RepositorySystemSession session)
                throws PluginResolutionException {
            return resolveInternal(plugin, pluginArtifact, dependencyFilter, repositories, session)
                    .getRoot();
        }
    
        private DependencyResult resolveInternal(
                Plugin plugin,
                Artifact pluginArtifact,
                DependencyFilter dependencyFilter,
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 10K bytes
    - Viewed (0)
  6. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/SinceAndIncubatingRulesKotlinTest.kt

                    added("Method", "SourceKt.getBazar()"),
                    added("Method", "SourceKt.getBazarExt(int)"),
                    added("Method", "SourceKt.getBazool()"),
                    added("Method", "SourceKt.getBool()"),
                    added("Method", "SourceKt.invoke(java.lang.String,java.lang.String,kotlin.jvm.functions.Function1)"),
                    added("Method", "SourceKt.isBool()"),
                    added("Method", "SourceKt.isFool()"),
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Jul 11 06:57:51 GMT 2023
    - 12.7K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolver.java

            DependencyCollectorResult collectorResult =
                    session.getService(DependencyCollector.class).collect(request);
            List<Node> nodes = flatten(session, collectorResult.getRoot(), request.getPathScope());
            List<ArtifactCoordinate> coordinates = nodes.stream()
                    .map(Node::getDependency)
                    .filter(Objects::nonNull)
                    .map(Artifact::toCoordinate)
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 4.6K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyCollectorResult.java

        List<Exception> getExceptions();
    
        /**
         * Gets the root node of the dependency graph.
         *
         * @return the root node of the dependency graph or {@code null} if none
         */
        @Nullable
        Node getRoot();
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Dec 08 08:42:44 GMT 2023
    - 1.6K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/project/DefaultProjectDependenciesResolver.java

                collect.setTrace(RequestTrace.newChild(trace, depRequest));
                node = repoSystem.collectDependencies(session, collect).getRoot();
                result.setDependencyGraph(node);
            } catch (DependencyCollectionException e) {
                result.setDependencyGraph(e.getResult().getRoot());
                result.setCollectionErrors(e.getResult().getExceptions());
    
                throw new DependencyResolutionException(
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 9.2K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/AbstractSession.java

         */
        @Nonnull
        @Override
        public Node collectDependencies(@Nonnull Artifact artifact) {
            return getService(DependencyCollector.class).collect(this, artifact).getRoot();
        }
    
        /**
         * Shortcut for <code>getService(DependencyCollector.class).collect(...)</code>
         *
         * @throws DependencyCollectorException if the dependency collection failed
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 16:33:18 GMT 2024
    - 27.2K bytes
    - Viewed (0)
Back to top