Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 216 for fdpath (0.16 sec)

  1. src/net/file_plan9.go

    func newFileFD(f *os.File) (net *netFD, err error) {
    	var ctl *os.File
    	close := func(fd int) {
    		if err != nil {
    			syscall.Close(fd)
    		}
    	}
    
    	path, err := syscall.Fd2path(int(f.Fd()))
    	if err != nil {
    		return nil, os.NewSyscallError("fd2path", err)
    	}
    	comp := splitAtBytes(path, "/")
    	n := len(comp)
    	if n < 3 || comp[0][0:3] != "net" {
    		return nil, syscall.EPLAN9
    	}
    
    	name := comp[2]
    	switch file := comp[n-1]; file {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. subprojects/composite-builds/src/test/groovy/org/gradle/composite/internal/DefaultIncludedBuildRegistryTest.groovy

            def idPath = Path.path(":$name")
            def buildIdentifier = new DefaultBuildIdentifier(idPath)
    
            def gradle = Stub(GradleInternal)
            def services = Stub(ServiceRegistry)
    
            def includedBuild = Stub(IncludedBuildState)
            includedBuild.buildRootDir >> buildDefinition.buildRootDir
            includedBuild.identityPath >> idPath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 14:36:04 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. src/syscall/syscall_plan9.go

    	return create(path, mode, perm)
    }
    
    //sys	remove(path string) (err error)
    
    func Remove(path string) error {
    	if fixwd(path) {
    		defer runtime.UnlockOSThread()
    	}
    	return remove(path)
    }
    
    //sys	stat(path string, edir []byte) (n int, err error)
    
    func Stat(path string, edir []byte) (n int, err error) {
    	if fixwd(path) {
    		defer runtime.UnlockOSThread()
    	}
    	return stat(path, edir)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/MutableCommandLineToolContext.java

    import java.io.File;
    import java.util.List;
    
    public interface MutableCommandLineToolContext extends CommandLineToolContext {
    
        void setArgAction(Action<List<String>> argAction);
    
        void addPath(File pathEntry);
    
        void addPath(List<File> path);
    
        void addEnvironmentVar(String key, String value);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1013 bytes
    - Viewed (0)
  5. src/run.bash

    # Thread count limit on NetBSD 7.
    if ulimit -T &> /dev/null; then
    	[ "$(ulimit -H -T)" = "unlimited" ] || ulimit -S -T $(ulimit -H -T)
    fi
    
    export GOPATH=/nonexist-gopath
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:02:23 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. pkg/scheduler/apis/config/validation/validation.go

    func validateExtenders(fldPath *field.Path, extenders []config.Extender) []error {
    	var errs []error
    	binders := 0
    	extenderManagedResources := sets.New[string]()
    	for i, extender := range extenders {
    		path := fldPath.Index(i)
    		if len(extender.PrioritizeVerb) > 0 && extender.Weight <= 0 {
    			errs = append(errs, field.Invalid(path.Child("weight"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. src/syscall/pwd_plan9.go

    func fixwd(paths ...string) bool {
    	for _, path := range paths {
    		if path != "" && path[0] != '/' && path[0] != '#' {
    			runtime.LockOSThread()
    			Fixwd()
    			return true
    		}
    	}
    	return false
    }
    
    // goroutine-specific getwd
    func getwd() (wd string, err error) {
    	fd, err := open(".", O_RDONLY)
    	if err != nil {
    		return "", err
    	}
    	defer Close(fd)
    	return Fd2path(fd)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/httproute.yaml

    spec:
      rules:
      - matches:
        - path:
            type: PathPrefix
            value: /mypath
        backendRefs:
        - name: my-service-1
          port: 8080
      - matches:
        - path:
            type: PathPrefix
            value: /mypath-012
        backendRefs:
        - name: my-service-2
          port: 8080
      - matches:
        - path:
            type: PathPrefix
            value: /my%20path/123
        backendRefs:
        - name: my-service-3
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 510 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/ant/useExternalAntTaskWithConfig/groovy/build.gradle

    // tag::use-classpath[]
    tasks.register('check') {
        doLast {
            ant.taskdef(name: 'pmd',
                        classname: 'net.sourceforge.pmd.ant.PMDTask',
                        classpath: configurations.pmd.asPath)
            ant.pmd(shortFilenames: 'true',
                    failonruleviolation: 'true',
                    rulesetfiles: file('pmd-rules.xml').toURI().toString()) {
                formatter(type: 'text', toConsole: 'true')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 697 bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/DefaultMutableCommandLineToolContext.java

        private final List<File> path = new ArrayList<File>();
    
        @Override
        public void setArgAction(Action<List<String>> argAction) {
            postArgsAction = argAction;
        }
    
        @Override
        public void addPath(File pathEntry) {
            this.path.add(pathEntry);
        }
    
        @Override
        public void addPath(List<File> path) {
            this.path.addAll(path);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top