Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 136 for pathType (0.21 sec)

  1. tests/integration/pilot/ingress_test.go

            path: %s/namedport
            pathType: ImplementationSpecific
          - backend:
              service:
                name: b
                port:
                  number: 80
            path: %s
            pathType: ImplementationSpecific
          - backend:
              service:
                name: b
                port:
                  number: 80
            path: %s
            pathType: Prefix
    `
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/staticpod/utils_test.go

    		path     string
    		expected v1.Volume
    		pathType *v1.HostPathType
    	}{
    		{
    			name: "foo",
    			path: "/etc/foo",
    			expected: v1.Volume{
    				Name: "foo",
    				VolumeSource: v1.VolumeSource{
    					HostPath: &v1.HostPathVolumeSource{
    						Path: "/etc/foo",
    						Type: &hostPathDirectoryOrCreate,
    					},
    				},
    			},
    			pathType: &hostPathDirectoryOrCreate,
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 12 15:44:44 UTC 2023
    - 22.6K bytes
    - Viewed (0)
  3. 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()}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/staticpod/utils.go

    	}
    }
    
    // NewVolume creates a v1.Volume with a hostPath mount to the specified location
    func NewVolume(name, path string, pathType *v1.HostPathType) v1.Volume {
    	return v1.Volume{
    		Name: name,
    		VolumeSource: v1.VolumeSource{
    			HostPath: &v1.HostPathVolumeSource{
    				Path: path,
    				Type: pathType,
    			},
    		},
    	}
    }
    
    // NewVolumeMount creates a v1.VolumeMount to the specified location
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/kubeadm/v1beta3/zz_generated.conversion.go

    	out.Name = in.Name
    	out.HostPath = in.HostPath
    	out.MountPath = in.MountPath
    	out.ReadOnly = in.ReadOnly
    	out.PathType = corev1.HostPathType(in.PathType)
    	return nil
    }
    
    // Convert_v1beta3_HostPathMount_To_kubeadm_HostPathMount is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/extensions/v1beta1/zz_generated.deepcopy.go

    func (in *HTTPIngressPath) DeepCopyInto(out *HTTPIngressPath) {
    	*out = *in
    	if in.PathType != nil {
    		in, out := &in.PathType, &out.PathType
    		*out = new(PathType)
    		**out = **in
    	}
    	in.Backend.DeepCopyInto(&out.Backend)
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 33.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/extensions/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 basis. A path element refers...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 42.5K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	// +optional
    	ReadOnly bool `json:"readOnly,omitempty"`
    	// PathType is the type of the HostPath.
    	// +optional
    	PathType corev1.HostPathType `json:"pathType,omitempty"`
    }
    
    // Patches contains options related to applying patches to components deployed by kubeadm.
    type Patches struct {
    	// Directory is a path to a directory that contains files named "target[suffix][+patchtype].extension".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/extensions/v1beta1/generated.proto

      // as defined by RFC 3986. Paths must begin with a '/'. When unspecified,
      // all paths from incoming requests are matched.
      // +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.
      // * Prefix: Matches based on a URL path prefix split by '/'. Matching is
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/extensions/v1beta1/generated.proto

      // as defined by RFC 3986. Paths must begin with a '/'. When unspecified,
      // all paths from incoming requests are matched.
      // +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.
      // * Prefix: Matches based on a URL path prefix split by '/'. Matching is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 45.4K bytes
    - Viewed (0)
Back to top