Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 236 for pathType (0.13 sec)

  1. pkg/apis/networking/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
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HTTPIngressPath.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:58 UTC 2023
    - 25.6K 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. pkg/apis/networking/v1/zz_generated.conversion.go

    	return nil
    }
    
    func autoConvert_v1_HTTPIngressPath_To_networking_HTTPIngressPath(in *v1.HTTPIngressPath, out *networking.HTTPIngressPath, s conversion.Scope) error {
    	out.Path = in.Path
    	out.PathType = (*networking.PathType)(unsafe.Pointer(in.PathType))
    	if err := Convert_v1_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: Mon May 01 18:19:25 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. staging/src/k8s.io/api/networking/v1beta1/generated.pb.go

    }
    
    func (m *HTTPIngressPath) MarshalToSizedBuffer(dAtA []byte) (int, error) {
    	i := len(dAtA)
    	_ = i
    	var l int
    	_ = l
    	if m.PathType != nil {
    		i -= len(*m.PathType)
    		copy(dAtA[i:], *m.PathType)
    		i = encodeVarintGenerated(dAtA, i, uint64(len(*m.PathType)))
    		i--
    		dAtA[i] = 0x1a
    	}
    	{
    		size, err := m.Backend.MarshalToSizedBuffer(dAtA[:i])
    		if err != nil {
    			return 0, err
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  9. 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();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. pkg/registry/networking/ingress/storage/storage_test.go

    	httpPaths := []networking.HTTPIngressPath{}
    	for path, backend := range pathMap {
    		httpPaths = append(httpPaths, networking.HTTPIngressPath{
    			Path:     path,
    			PathType: &defaultPathType,
    			Backend: networking.IngressBackend{
    				Service: &networking.IngressServiceBackend{
    					Name: backend,
    					Port: networking.ServiceBackendPort{
    						Name:   defaultBackendPort.StrVal,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 15 09:01:21 UTC 2023
    - 8.4K bytes
    - Viewed (0)
Back to top