Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 81 for pathType (0.24 sec)

  1. pkg/volume/util/hostutil/hostutil.go

    func getFileType(pathname string) (FileType, error) {
    	var pathType FileType
    	info, err := os.Stat(pathname)
    	if os.IsNotExist(err) {
    		return pathType, fmt.Errorf("path %q does not exist", pathname)
    	}
    	// err in call to os.Stat
    	if err != nil {
    		return pathType, err
    	}
    
    	// checks whether the mode is the target mode.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 13:38:40 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/internal/aether/TypeRegistryAdapter.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.internal.aether;
    
    import org.apache.maven.api.PathType;
    import org.apache.maven.api.Type;
    import org.apache.maven.api.services.TypeRegistry;
    import org.apache.maven.repository.internal.type.DefaultType;
    import org.eclipse.aether.artifact.ArtifactType;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/HEAD/networking.k8s.io.v1beta1.Ingress.json

          }
        ],
        "rules": [
          {
            "host": "hostValue",
            "http": {
              "paths": [
                {
                  "path": "pathValue",
                  "pathType": "pathTypeValue",
                  "backend": {
                    "serviceName": "serviceNameValue",
                    "servicePort": "servicePortValue",
                    "resource": {
                      "apiGroup": "apiGroupValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/networking.k8s.io.v1beta1.Ingress.json

          }
        ],
        "rules": [
          {
            "host": "hostValue",
            "http": {
              "paths": [
                {
                  "path": "pathValue",
                  "pathType": "pathTypeValue",
                  "backend": {
                    "serviceName": "serviceNameValue",
                    "servicePort": "servicePortValue",
                    "resource": {
                      "apiGroup": "apiGroupValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/networking.k8s.io.v1beta1.Ingress.yaml

                apiGroup: apiGroupValue
                kind: kindValue
                name: nameValue
              serviceName: serviceNameValue
              servicePort: servicePortValue
            path: pathValue
            pathType: pathTypeValue
      tls:
      - hosts:
        - hostsValue
        secretName: secretNameValue
    status:
      loadBalancer:
        ingress:
        - hostname: hostnameValue
          ip: ipValue
          ports:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Resolution.java

     * {@link org.apache.maven.api.services.DependencyResolverResult DependencyResolverResult},
     * {@code List<}{@link java.nio.file.Path Path}{@code >},
     * {@code Map<}{@link org.apache.maven.api.PathType PathType}{@code , List<}{@link java.nio.file.Path Path}{@code >>},
     * or {@code Map<}{@link org.apache.maven.api.Dependency Dependency}{@code , }{@link java.nio.file.Path Path}{@code >}.
     *
     * @since 4.0.0
     */
    @Experimental
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.30.0/networking.k8s.io.v1.Ingress.json

          }
        ],
        "rules": [
          {
            "host": "hostValue",
            "http": {
              "paths": [
                {
                  "path": "pathValue",
                  "pathType": "pathTypeValue",
                  "backend": {
                    "service": {
                      "name": "nameValue",
                      "port": {
                        "name": "nameValue",
                        "number": 2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.29.0/networking.k8s.io.v1.Ingress.yaml

                kind: kindValue
                name: nameValue
              service:
                name: nameValue
                port:
                  name: nameValue
                  number: 2
            path: pathValue
            pathType: pathTypeValue
      tls:
      - hosts:
        - hostsValue
        secretName: secretNameValue
    status:
      loadBalancer:
        ingress:
        - hostname: hostnameValue
          ip: ipValue
          ports:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. pkg/apis/networking/fuzzer/fuzzer.go

    		},
    		func(path *networking.HTTPIngressPath, c fuzz.Continue) {
    			c.FuzzNoCustom(path) // fuzz self without calling this function again
    			pathTypes := []networking.PathType{networking.PathTypeExact, networking.PathTypePrefix, networking.PathTypeImplementationSpecific}
    			path.PathType = &pathTypes[c.Rand.Intn(len(pathTypes))]
    		},
    		func(p *networking.ServiceBackendPort, c fuzz.Continue) {
    			c.FuzzNoCustom(p)
    			// clear one of the fields
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.29.0/networking.k8s.io.v1beta1.Ingress.yaml

                apiGroup: apiGroupValue
                kind: kindValue
                name: nameValue
              serviceName: serviceNameValue
              servicePort: servicePortValue
            path: pathValue
            pathType: pathTypeValue
      tls:
      - hosts:
        - hostsValue
        secretName: secretNameValue
    status:
      loadBalancer:
        ingress:
        - hostname: hostnameValue
          ip: ipValue
          ports:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top