Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 216 for fdpath (0.32 sec)

  1. src/syscall/syscall_windows.go

    	// path with the "\\?\" prefix after Fchdir is called.
    	// The downside is that APIs that do support it will parse the path and try to normalize it,
    	// when it's already normalized.
    	if len(path) >= 4 && path[0] == '\\' && path[1] == '\\' && path[2] == '?' && path[3] == '\\' {
    		path = path[4:]
    	}
    	return SetCurrentDirectory(&path[0])
    }
    
    // TODO(brainman): fix all needed for os
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  2. src/os/path_test.go

    		t.Fatalf("MkdirAll %q returned %T, not *PathError", fpath, err)
    	}
    	if filepath.Clean(perr.Path) != filepath.Clean(fpath) {
    		t.Fatalf("MkdirAll %q returned wrong error path: %q not %q", fpath, filepath.Clean(perr.Path), filepath.Clean(fpath))
    	}
    
    	// Can't make subdirectory of file.
    	ffpath := fpath + "/subdir"
    	err = MkdirAll(ffpath, 0777)
    	if err == nil {
    		t.Fatalf("MkdirAll %q: no error", ffpath)
    	}
    	perr, ok = err.(*PathError)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 20:45:37 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. pkg/apis/discovery/validation/validation.go

    	allErrs := field.ErrorList{}
    
    	if len(endpoints) > maxEndpoints {
    		allErrs = append(allErrs, field.TooMany(fldPath, len(endpoints), maxEndpoints))
    		return allErrs
    	}
    
    	for i, endpoint := range endpoints {
    		idxPath := fldPath.Index(i)
    		addressPath := idxPath.Child("addresses")
    
    		if len(endpoint.Addresses) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 18 08:49:15 UTC 2021
    - 7.8K bytes
    - Viewed (0)
  4. src/os/removeall_test.go

    		t.Fatalf("MkdirAll %q: %s", dpath, err)
    	}
    	fd, err = Create(fpath)
    	if err != nil {
    		t.Fatalf("create %q: %s", fpath, err)
    	}
    	fd.Close()
    	fd, err = Create(dpath + "/file")
    	if err != nil {
    		t.Fatalf("create %q: %s", fpath, err)
    	}
    	fd.Close()
    	if err = RemoveAll(path); err != nil {
    		t.Fatalf("RemoveAll %q (third): %s", path, err)
    	}
    	if _, err := Lstat(path); err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:21:29 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. pkg/volume/fc/fc_util.go

    	return nil
    }
    
    func checkPathExists(path string) (bool, error) {
    	if pathExists, pathErr := mount.PathExists(path); pathErr != nil {
    		return pathExists, fmt.Errorf("error checking if path exists: %w", pathErr)
    	} else if !pathExists {
    		klog.Warningf("Warning: Unmap skipped because path does not exist: %v", path)
    		return pathExists, nil
    	}
    	return true, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 12.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/egressselector/config.go

    	allErrs := field.ErrorList{}
    	if transport == nil {
    		allErrs = append(allErrs, field.Required(
    			fldPath.Child("transport"),
    			"transport must be set for GRPC"))
    		return allErrs
    	}
    
    	if transport.UDS != nil {
    		allErrs = append(allErrs, validateUDSConnection(transport.UDS, fldPath)...)
    	} else {
    		allErrs = append(allErrs, field.Required(
    			fldPath.Child("uds"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/validation/validation.go

    func ValidateManagedFields(fieldsList []metav1.ManagedFieldsEntry, fldPath *field.Path) field.ErrorList {
    	var allErrs field.ErrorList
    	for i, fields := range fieldsList {
    		fldPath := fldPath.Index(i)
    		switch fields.Operation {
    		case metav1.ManagedFieldsOperationApply, metav1.ManagedFieldsOperationUpdate:
    		default:
    			allErrs = append(allErrs, field.Invalid(fldPath.Child("operation"), fields.Operation, "must be `Apply` or `Update`"))
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 01:52:02 UTC 2022
    - 13.5K bytes
    - Viewed (0)
  8. pkg/apis/resource/structured/namedresources/validation/validation.go

    }
    
    func ValidateRequest(opts Options, request *resource.NamedResourcesRequest, fldPath *field.Path) field.ErrorList {
    	return validateSelector(opts, request.Selector, fldPath.Child("selector"))
    }
    
    func ValidateFilter(opts Options, filter *resource.NamedResourcesFilter, fldPath *field.Path) field.ErrorList {
    	return validateSelector(opts, filter.Selector, fldPath.Child("selector"))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:26:20 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation.go

    	var allErrs field.ErrorList
    
    	if len(audiences) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath, fmt.Sprintf(atLeastOneRequiredErrFmt, fldPath)))
    		return allErrs
    	}
    
    	seenAudiences := sets.NewString()
    	for i, audience := range audiences {
    		fldPath := fldPath.Index(i)
    		if len(audience) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  10. pkg/apis/storagemigration/validation/validation.go

    	// status is set and is an accepted value
    	if !validConditionStatuses.Has(string(condition.Status)) {
    		allErrs = append(allErrs, field.NotSupported(fldPath.Child("status"), condition.Status, validConditionStatuses.List()))
    	}
    
    	if condition.LastUpdateTime.IsZero() {
    		allErrs = append(allErrs, field.Required(fldPath.Child("lastTransitionTime"), "must be set"))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top