Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 236 for pathType (0.24 sec)

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

         * Plugins can choose to report a warning to users when unresolved paths exist.
         */
        PathType UNRESOLVED = new PathType() {
            @Override
            public String name() {
                return "UNRESOLVED";
            }
    
            @Override
            public String id() {
                return "UNRESOLVED";
            }
    
            @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. pkg/apis/networking/v1beta1/defaults_test.go

    		expected *networkingv1beta1.HTTPIngressPath
    	}{
    		"empty pathType should default to ImplementationSpecific": {
    			original: &networkingv1beta1.HTTPIngressPath{},
    			expected: &networkingv1beta1.HTTPIngressPath{PathType: &pathTypeImplementationSpecific},
    		},
    		"ImplementationSpecific pathType should not change": {
    			original: &networkingv1beta1.HTTPIngressPath{PathType: &pathTypeImplementationSpecific},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 03 19:11:16 UTC 2020
    - 3.4K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularizationCache.java

         */
        Optional<PathType> selectPathType(Set<PathType> types, Predicate<PathType> filter, Path path) throws IOException {
            PathType selected = null;
            boolean classes = false;
            boolean modules = false;
            boolean unknown = false;
            boolean processorClasses = false;
            boolean processorModules = false;
            for (PathType type : types) {
                if (filter.test(type)) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. samples/bookinfo/platform/kube/bookinfo-ingress.yaml

          paths:
          - path: /productpage
            pathType: Exact
            backend:
              service:
                name: productpage
                port:
                  number: 9080
          - path: /static/
            pathType: Prefix
            backend:
              service:
                name: productpage
                port:
                  number: 9080
          - path: /login
            pathType: Exact
            backend:
              service:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 28 04:24:35 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  5. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/type/DefaultType.java

        private final boolean includesDependencies;
        private final Set<PathType> pathTypes;
        private final Map<String, String> properties;
    
        public DefaultType(
                String id,
                Language language,
                String extension,
                String classifier,
                boolean includesDependencies,
                PathType... pathTypes) {
            this.id = requireNonNull(id, "id");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/ingress/testdata/simple.yaml

                  number: 4205
          # Subpath without trailing /, Exact match
          - path: /sub/path
            pathType: Exact
            backend:
              service:
                name: service1
                port:
                  number: 4206
            # With a trailing /, Exact match
          - path: /sub/path/
            pathType: Exact
            backend:
              service:
                name: service1
                port:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 10 16:43:09 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/ResolvingFromSingleCustomPluginRepositorySpec.groovy

            IVY      | PathType.ABSOLUTE
            IVY      | PathType.RELATIVE
            MAVEN    | PathType.ABSOLUTE
            MAVEN    | PathType.RELATIVE
        }
    
        def "can access classes from plugin from #repoType repo"() {
            given:
            publishTestPlugin(repoType)
            buildScript """
              plugins {
                  id "org.example.plugin" version "1.0"
              }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:30:55 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. pkg/apis/networking/validation/validation_test.go

    				ing.Spec.Rules[0].IngressRuleValue.HTTP.Paths[0].PathType = &pathTypeFoo
    			},
    			expectErrsOnFields: []string{
    				"spec.rules[0].http.paths[0].pathType",
    			},
    		},
    		"empty path (prefix)": {
    			tweakIngress: func(ing *networking.Ingress) {
    				ing.Spec.Rules[0].IngressRuleValue.HTTP.Paths[0].Path = ""
    				ing.Spec.Rules[0].IngressRuleValue.HTTP.Paths[0].PathType = &pathTypePrefix
    			},
    			expectErrsOnFields: []string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/type/DefaultType.java

        private final boolean includesDependencies;
        private final Set<PathType> pathTypes;
        private final Map<String, String> properties;
    
        public DefaultType(
                String id,
                Language language,
                String extension,
                String classifier,
                boolean includesDependencies,
                PathType... pathTypes) {
            this.id = requireNonNull(id, "id");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. pkg/apis/networking/v1beta1/defaults.go

    	return RegisterDefaults(scheme)
    }
    
    func SetDefaults_HTTPIngressPath(obj *networkingv1beta1.HTTPIngressPath) {
    	var defaultPathType = networkingv1beta1.PathTypeImplementationSpecific
    	if obj.PathType == nil {
    		obj.PathType = &defaultPathType
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 03 19:11:16 UTC 2020
    - 990 bytes
    - Viewed (0)
Back to top