Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 216 for fdpath (0.41 sec)

  1. src/cmd/vendor/golang.org/x/sys/plan9/pwd_plan9.go

    package plan9
    
    func fixwd() {
    }
    
    func Getwd() (wd string, err error) {
    	fd, err := open(".", O_RDONLY)
    	if err != nil {
    		return "", err
    	}
    	defer Close(fd)
    	return Fd2path(fd)
    }
    
    func Chdir(path string) error {
    	return chdir(path)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 413 bytes
    - Viewed (0)
  2. docs/debugging/s3-check-md5/main.go

    			Recursive:    true,
    			Prefix:       prefix,
    			WithVersions: versions,
    			WithMetadata: true,
    		}
    
    		objFullPath := func(obj minio.ObjectInfo) (fpath string) {
    			fpath = path.Join(bucket, obj.Key)
    			if versions {
    				fpath += ":" + obj.VersionID
    			}
    			return
    		}
    
    		// List all objects from a bucket-name with a matching prefix.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 17 01:15:57 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. pkg/apis/certificates/validation/validation.go

    			if len(c.Type) == 0 {
    				allErrs = append(allErrs, field.Required(fldPath.Index(i).Child("type"), ""))
    			}
    		}
    
    		allowedStatusValues := allStatusValues
    		if trueConditionTypes.Has(string(c.Type)) {
    			allowedStatusValues = trueStatusOnly
    		}
    		switch {
    		case c.Status == "":
    			allErrs = append(allErrs, field.Required(fldPath.Index(i).Child("status"), ""))
    		case !allowedStatusValues.Has(string(c.Status)):
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  4. maven-core/src/test/resources-project-builder/url-no-decoding/pom.xml

      <url>https://maven.apache.org/spacy%20path</url>
      <scm>
        <connection>scm:svn:svn+ssh://svn.apache.org/spacy%20path</connection>
        <developerConnection>scm:svn:svn+ssh://svn.apache.org/spacy%20path</developerConnection>
        <url>https://svn.apache.org/viewvc/spacy%20path</url>
      </scm>
      <issueManagement>
        <system>none</system>
        <url>https://issues.apache.org/spacy%20path</url>
      </issueManagement>
      <ciManagement>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  5. plugin/pkg/admission/security/podsecurity/testdata/pod_baseline.yaml

          - serviceAccountToken:
              expirationSeconds: 3607
              path: token
          - configMap:
              items:
              - key: ca.crt
                path: ca.crt
              name: kube-root-ca.crt
          - downwardAPI:
              items:
              - fieldRef:
                  apiVersion: v1
                  fieldPath: metadata.namespace
                path: namespace
    status:
      conditions:
      - lastProbeTime: null
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 04 16:26:30 UTC 2021
    - 18.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/term/term_plan9.go

    package term
    
    import (
    	"fmt"
    	"runtime"
    
    	"golang.org/x/sys/plan9"
    )
    
    type state struct{}
    
    func isTerminal(fd int) bool {
    	path, err := plan9.Fd2path(fd)
    	if err != nil {
    		return false
    	}
    	return path == "/dev/cons" || path == "/mnt/term/dev/cons"
    }
    
    func makeRaw(fd int) (*State, error) {
    	return nil, fmt.Errorf("terminal: MakeRaw not implemented on %s/%s", runtime.GOOS, runtime.GOARCH)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/api/validation/generic.go

    	}
    	return name
    }
    
    // ValidateNonnegativeField validates that given value is not negative.
    func ValidateNonnegativeField(value int64, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	if value < 0 {
    		allErrs = append(allErrs, field.Invalid(fldPath, value, IsNegativeErrorMsg))
    	}
    	return allErrs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 03 14:47:11 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/validator.go

    	metav1.FinalizerDeleteDependents,
    	string(corev1.FinalizerKubernetes),
    )
    
    func validateKubeFinalizerName(stringValue string, fldPath *field.Path) []string {
    	var allWarnings []string
    	for _, msg := range apimachineryvalidation.IsQualifiedName(stringValue) {
    		allWarnings = append(allWarnings, fmt.Sprintf("%s: %q: %s", fldPath.String(), stringValue, msg))
    	}
    	if len(strings.Split(stringValue, "/")) == 1 {
    		if !standardFinalizers.Has(stringValue) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 14:00:05 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. src/os/executable_plan9.go

    	"syscall"
    )
    
    func executable() (string, error) {
    	fn := "/proc/" + itoa.Itoa(Getpid()) + "/text"
    	f, err := Open(fn)
    	if err != nil {
    		return "", err
    	}
    	defer f.Close()
    	return syscall.Fd2path(int(f.Fd()))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 427 bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/plan9/syscall_plan9.go

    	return Pread(fd, p, -1)
    }
    
    func Write(fd int, p []byte) (n int, err error) {
    	return Pwrite(fd, p, -1)
    }
    
    var ioSync int64
    
    //sys	fd2path(fd int, buf []byte) (err error)
    
    func Fd2path(fd int) (path string, err error) {
    	var buf [512]byte
    
    	e := fd2path(fd, buf[:])
    	if e != nil {
    		return "", e
    	}
    	return cstring(buf[:]), nil
    }
    
    //sys	pipe(p *[2]int32) (err error)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 7K bytes
    - Viewed (0)
Back to top