Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 136 for pathType (0.12 sec)

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

                }
            }
            addPathElement(cache.selectPathType(pathTypes, filter, path).orElse(PathType.UNRESOLVED), path);
        }
    
        /**
         * Returns whether the given set of path types contains at least one patch for a module.
         */
        private boolean containsPatches(Set<PathType> types) {
            for (PathType type : types) {
                if (type instanceof JavaPathType.Modular) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. pkg/volume/hostpath/host_path.go

    }
    
    // checkType checks whether the given path is the exact pathType
    func checkType(path string, pathType *v1.HostPathType, hu hostutil.HostUtils) error {
    	return checkTypeInternal(newFileTypeChecker(path, hu), pathType)
    }
    
    func checkTypeInternal(ftc hostPathTypeChecker, pathType *v1.HostPathType) error {
    	switch *pathType {
    	case v1.HostPathDirectoryOrCreate:
    		if !ftc.Exists() {
    			return ftc.MakeDir()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverRequest.java

    import org.apache.maven.api.Artifact;
    import org.apache.maven.api.DependencyCoordinate;
    import org.apache.maven.api.JavaPathType;
    import org.apache.maven.api.PathScope;
    import org.apache.maven.api.PathType;
    import org.apache.maven.api.Project;
    import org.apache.maven.api.Session;
    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.annotations.Immutable;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/networking/v1beta1/types.go

    	//   the IngressClass. Implementations can treat this as a separate PathType
    	//   or treat it identically to Prefix or Exact path types.
    	// Implementations are required to support all path types.
    	// Defaults to ImplementationSpecific.
    	PathType *PathType `json:"pathType,omitempty" protobuf:"bytes,3,opt,name=pathType"`
    
    	// backend defines the referenced service endpoint to which the traffic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:30 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

        @Override
        public String toString() {
            return "PathType[" + id() + "]";
        }
    
        /**
         * Type of path which is applied to only one specific Java module.
         * The main case is the Java {@code --patch-module} option.
         *
         * @see #PATCH_MODULE
         * @see #patchModule(String)
         */
        public final class Modular implements PathType {
            /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/networking/v1/types.go

    	//   the IngressClass. Implementations can treat this as a separate PathType
    	//   or treat it identically to Prefix or Exact path types.
    	// Implementations are required to support all path types.
    	PathType *PathType `json:"pathType" protobuf:"bytes,3,opt,name=pathType"`
    
    	// backend defines the referenced service endpoint to which the traffic
    	// will be forwarded to.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  7. pkg/volume/hostpath/host_path_test.go

    		},
    	}
    
    	for i, tc := range testCases {
    		for _, pathType := range tc.validpathType {
    			err := checkTypeInternal(&tc, pathType)
    			if err != nil {
    				t.Errorf("[%d: %q] [%q] expected nil, got %v", i, tc.name, string(*pathType), err)
    			}
    		}
    
    		for _, pathType := range tc.invalidpathType {
    			checkResult := checkTypeInternal(&tc, pathType)
    			if checkResult == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  8. pkg/apis/networking/types.go

    	// when using PathType with value "Exact" or "Prefix".
    	// +optional
    	Path string
    
    	// pathType determines the interpretation of the path matching. PathType can
    	// be one of Exact, Prefix, or ImplementationSpecific. Implementations are
    	// required to support all path types.
    	// +optional
    	PathType *PathType
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/controlplane/volumes_test.go

    			MountPath: "/tmp/qux-0",
    			ReadOnly:  true,
    			PathType:  v1.HostPathFile,
    		},
    		{
    			Name:      "bar-0",
    			HostPath:  "/tmp/asd-0",
    			MountPath: "/tmp/asd-0",
    			ReadOnly:  false,
    			PathType:  v1.HostPathDirectory,
    		},
    		{
    			Name:      "foo-1",
    			HostPath:  "/tmp/qux-1",
    			MountPath: "/tmp/qux-1",
    			ReadOnly:  true,
    			PathType:  v1.HostPathFileOrCreate,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:33:18 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/internal/impl/TestApi.java

            Map<PathType, List<Path>> dispatched = session.resolveDependencies(
                    coord, PathScope.TEST_COMPILE, Arrays.asList(JavaPathType.CLASSES, JavaPathType.MODULES));
            List<Path> classes = dispatched.get(JavaPathType.CLASSES);
            List<Path> modules = dispatched.get(JavaPathType.MODULES);
            List<Path> unresolved = dispatched.get(PathType.UNRESOLVED);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top