Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 236 for pathType (0.15 sec)

  1. staging/src/k8s.io/api/networking/v1beta1/types_swagger_doc_generated.go

    	"pathType": "pathType determines the interpretation of the path matching. PathType can be one of the following values: * Exact: Matches the URL path exactly. * Prefix: Matches based on a URL path prefix split by '/'. Matching is\n  done on a path element by element...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/v1beta3/doc.go

    //	    mountPath: "/etc/some-pod-path"
    //	    readOnly: false
    //	    pathType: File
    //	scheduler:
    //	  extraArgs:
    //	    address: "10.100.0.1"
    //	  extraVolumes:
    //	  - name: "some-volume"
    //	    hostPath: "/etc/some-path"
    //	    mountPath: "/etc/some-pod-path"
    //	    readOnly: false
    //	    pathType: File
    //	certificatesDir: "/etc/kubernetes/pki"
    //	imageRepository: "registry.k8s.io"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 05 13:30:26 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. staging/src/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.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/v1beta4/doc.go

    //	    mountPath: "/etc/some-pod-path"
    //	    readOnly: false
    //	    pathType: File
    //	scheduler:
    //	  extraArgs:
    //	    address: "10.100.0.1"
    //	  extraVolumes:
    //	  - name: "some-volume"
    //	    hostPath: "/etc/some-path"
    //	    mountPath: "/etc/some-pod-path"
    //	    readOnly: false
    //	    pathType: File
    //	certificatesDir: "/etc/kubernetes/pki"
    //	imageRepository: "registry.k8s.io"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. pkg/apis/networking/v1beta1/zz_generated.conversion.go

    }
    
    func autoConvert_v1beta1_HTTPIngressPath_To_networking_HTTPIngressPath(in *v1beta1.HTTPIngressPath, out *networking.HTTPIngressPath, s conversion.Scope) error {
    	out.Path = in.Path
    	out.PathType = (*networking.PathType)(unsafe.Pointer(in.PathType))
    	if err := Convert_v1beta1_IngressBackend_To_networking_IngressBackend(&in.Backend, &out.Backend, s); err != nil {
    		return err
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 02 23:13:31 UTC 2022
    - 35.8K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/ingress/conversion_test.go

    								{
    									Path:     "/test/foo/bar",
    									PathType: &prefix,
    									Backend: knetworking.IngressBackend{
    										Service: &knetworking.IngressServiceBackend{
    											Name: "foo",
    											Port: knetworking.ServiceBackendPort{Number: 8000},
    										},
    									},
    								},
    								{
    									Path:     "/test/foo/bar",
    									PathType: &exact,
    									Backend: knetworking.IngressBackend{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 19 18:20:34 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/controlplane/volumes.go

    		}
    		certDirs.Insert(certDir)
    	}
    
    	volumes := []v1.Volume{}
    	volumeMounts := []v1.VolumeMount{}
    	pathType := v1.HostPathDirectoryOrCreate
    	for i, certDir := range sets.List(certDirs) {
    		name := fmt.Sprintf("etcd-certs-%d", i)
    		volumes = append(volumes, staticpodutil.NewVolume(name, certDir, &pathType))
    		volumeMounts = append(volumeMounts, staticpodutil.NewVolumeMount(name, certDir, true))
    	}
    	return volumes, volumeMounts
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:33:18 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. pkg/apis/networking/validation/validation.go

    	allErrs := field.ErrorList{}
    
    	if path.PathType == nil {
    		return append(allErrs, field.Required(fldPath.Child("pathType"), "pathType must be specified"))
    	}
    
    	switch *path.PathType {
    	case networking.PathTypeExact, networking.PathTypePrefix:
    		if !strings.HasPrefix(path.Path, "/") {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 07 14:48:01 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  9. 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()
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  10. pkg/volume/util/hostutil/hostutil_linux.go

    }
    
    // PathIsDevice uses FileInfo returned from os.Stat to check if path refers
    // to a device.
    func (hu *HostUtil) PathIsDevice(pathname string) (bool, error) {
    	pathType, err := hu.GetFileType(pathname)
    	isDevice := pathType == FileTypeCharDev || pathType == FileTypeBlockDev
    	return isDevice, err
    }
    
    // ExclusiveOpenFailsOnDevice is shared with NsEnterMounter
    func ExclusiveOpenFailsOnDevice(pathname string) (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 23 08:36:44 UTC 2023
    - 10K bytes
    - Viewed (0)
Back to top