Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 93 for PathType (0.17 sec)

  1. maven-core/src/main/java/org/apache/maven/internal/aether/TypeRegistryAdapter.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.internal.aether;
    
    import org.apache.maven.api.PathType;
    import org.apache.maven.api.Type;
    import org.apache.maven.api.services.TypeRegistry;
    import org.apache.maven.repository.internal.type.DefaultType;
    import org.eclipse.aether.artifact.ArtifactType;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 2K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/AbstractSession.java

                    .resolve(this, project, scope)
                    .getPaths();
        }
    
        @Override
        public Map<PathType, List<Path>> resolveDependencies(
                @Nonnull DependencyCoordinate dependency,
                @Nonnull PathScope scope,
                @Nonnull Collection<PathType> desiredTypes) {
            return getService(DependencyResolver.class)
                    .resolve(DependencyResolverRequest.builder()
    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)
  3. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolver.java

    import org.apache.maven.api.*;
    import org.apache.maven.api.Artifact;
    import org.apache.maven.api.ArtifactCoordinate;
    import org.apache.maven.api.Dependency;
    import org.apache.maven.api.Node;
    import org.apache.maven.api.PathType;
    import org.apache.maven.api.Session;
    import org.apache.maven.api.services.*;
    import org.eclipse.aether.graph.DependencyFilter;
    import org.eclipse.aether.graph.DependencyNode;
    
    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)
  4. common-protos/k8s.io/api/networking/v1beta1/generated.proto

      // as defined by RFC 3986. Paths must begin with a '/' and must be present
      // when using PathType with value "Exact" or "Prefix".
      // +optional
      optional string path = 1;
    
      // pathType determines the interpretation of the path matching. PathType can
      // be one of the following values:
      // * Exact: Matches the URL path exactly.
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 14.9K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/internal/impl/AbstractSession.java

                    .resolve(this, project, scope)
                    .getPaths();
        }
    
        @Override
        public Map<PathType, List<Path>> resolveDependencies(
                @Nonnull DependencyCoordinate dependency,
                @Nonnull PathScope scope,
                @Nonnull Collection<PathType> desiredTypes) {
            return getService(DependencyResolver.class)
                    .resolve(DependencyResolverRequest.builder()
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 21.7K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/networking/v1/generated.proto

      // as defined by RFC 3986. Paths must begin with a '/' and must be present
      // when using PathType with value "Exact" or "Prefix".
      // +optional
      optional string path = 1;
    
      // pathType determines the interpretation of the path matching. PathType can
      // be one of the following values:
      // * Exact: Matches the URL path exactly.
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 25.2K bytes
    - Viewed (0)
  7. helm/minio/templates/ingress.yaml

      rules:
        {{- range .Values.ingress.hosts }}
        - http:
            paths:
              - path: {{ $ingressPath }}
                {{- if semverCompare ">=1.19-0" $.Capabilities.KubeVersion.GitVersion }}
                pathType: Prefix
                backend:
                  service:
                    name: {{ $fullName }}
                    port: 
                      number: {{ $servicePort }}
                {{- else }}
                backend:
    Others
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 03 06:27:17 GMT 2023
    - 1.6K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         * @see org.apache.maven.api.services.DependencyResolver#resolve(Session, Project, PathScope)
         */
        @Nonnull
        Map<PathType, List<Path>> resolveDependencies(
                @Nonnull DependencyCoordinate dependencyCoordinate,
                @Nonnull PathScope scope,
                @Nonnull Collection<PathType> desiredTypes);
    
        /**
         * Shortcut for {@code getService(DependencyResolver.class).resolve(...).getDispatchedPaths()}.
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 30.2K bytes
    - Viewed (0)
  9. helm/minio/templates/console-ingress.yaml

      rules:
        {{- range .Values.consoleIngress.hosts }}
        - http:
            paths:
              - path: {{ $ingressPath }}
                {{- if semverCompare ">=1.19-0" $.Capabilities.KubeVersion.GitVersion }}
                pathType: Prefix
                backend:
                  service:
                    name: {{ $fullName }}
                    port: 
                      number: {{ $servicePort }}
                {{- else }}
                backend:
    Others
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 03 06:27:17 GMT 2023
    - 1.7K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/Type.java

         * case, the plugin may apply rules for choosing a path. See for example
         * {@link JavaPathType#CLASSES} and {@link JavaPathType#MODULES}.</p>
         */
        @Nonnull
        Set<PathType> getPathTypes();
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 29 09:32:19 GMT 2024
    - 5.6K bytes
    - Viewed (0)
Back to top