Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for coordinator (0.31 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         *
         * @param coordinate artifact coordinate to get as a dependency coordinate
         * @return dependency coordinate for the given artifact
         *
         * @see DependencyCoordinateFactory#create(Session, ArtifactCoordinate)
         */
        @Nonnull
        DependencyCoordinate createDependencyCoordinate(@Nonnull ArtifactCoordinate coordinate);
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util.cc

    // With a topology device coordinate to task and device mapping, device
    // assignment device coordinates can then be mapped to task and device for TPU
    // devices. The device assignment array is also validated.
    //
    // A valid device assignment array must have:
    //  - device coordinates within the topology mesh shape
    //  - no duplicate device coordinates
    //  - number of device coordinates (in tuple 3) match number 'num_replicas' *
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:10:40 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/AbstractSession.java

         * @see ArtifactResolver#resolve(Session, Collection)
         */
        @Override
        public Map<Artifact, Path> resolveArtifacts(ArtifactCoordinate... coordinates) {
            return resolveArtifacts(Arrays.asList(coordinates));
        }
    
        /**
         * Shortcut for <code>getService(ArtifactResolver.class).resolve(...)</code>
         *
         * @throws ArtifactResolverException if the artifact resolution failed
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolver.java

    public interface DependencyResolver extends Service {
    
        /**
         * Collects the transitive dependencies of some artifacts and builds a dependency graph. Note that this operation is
         * only concerned about determining the coordinates of the transitive dependencies and does not actually resolve the
         * artifact files.
         *
         * @param session the {@link Session}, must not be {@code null}
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolver.java

                result = collectorResult;
            } else {
                List<Node> nodes = flatten(session, collectorResult.getRoot(), request.getPathScope());
                List<ArtifactCoordinate> coordinates = nodes.stream()
                        .map(Node::getDependency)
                        .filter(Objects::nonNull)
                        .map(Artifact::toCoordinate)
                        .collect(Collectors.toList());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderResult.java

    @Experimental
    public interface ProjectBuilderResult {
    
        /**
         * Gets the identifier of the project that could not be built. The general format of the identifier is {@code
         * <groupId>:<artifactId>:<version>} but some of these coordinates may still be unknown at the point the exception
         * is thrown so this information is merely meant to assist the user.
         *
         * @return the identifier of the project or an empty string if not known, never {@code null}
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm-infrastructure/build.gradle.kts

                and the conflict resolution rules from capabilities.json ensures this is the version that is resolved.
    
                This is necessary because the beanshell project migrated coordinates from org.beanshell in version 2.0b4 to org.apache-extras.beanshell
                in version 2.0b5.  We want to resolve version 2.0b6.  The conflict ensures org.apache-extras.beanshell is selected, so we get 2.0b6.  If
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                if (key.equals(mKey)) {
                    // This means a module which is build has a dependency which has the same
                    // groupId, artifactId, version and classifier coordinates. This is in consequence
                    // a self reference or in other words a circular reference which can not being resolved.
                    addViolation(
                            problems,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  9. .github/CODEOWNERS

    testing/internal-performance-testing/       @gradle/bt-developer-productivity
    testing/internal-testing/                   @gradle/bt-developer-productivity
    
    # Release coordination
    subprojects/core-platform/              @gradle/bt-support
    subprojects/distributions-dependencies/ @gradle/bt-support
    subprojects/distributions-full/         @gradle/bt-support
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:44:59 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/passes/xla_broadcast.cc

      auto status_or_device_coodinates =
          tensorflow::GetDeviceCoordinates(device_assignment_attr);
      if (!status_or_device_coodinates.ok())
        return cluster.emitError()
               << "error in fetching tpu device coordinates: "
               << status_or_device_coodinates.status().message();
    
      status_or_tpu_device_assignment =
          tensorflow::GetTPUCompilationAndExecutionDevices(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 18:52:07 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top