Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 48 for DUP (0.02 sec)

  1. src/syscall/exec_linux.go

    )
    
    // Implemented in runtime package.
    func runtime_BeforeFork()
    func runtime_AfterFork()
    func runtime_AfterForkInChild()
    
    // Fork, dup fd onto 0..len(fd), and exec(argv0, argvv, envv) in child.
    // If a dup or exec fails, write the errno error to pipe.
    // (Pipe is close-on-exec so if exec succeeds, it will be closed.)
    // In the child, this function must not acquire any locks, because
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testplugin/plugin_test.go

    	goCmd(nil, "build", "-buildmode=plugin", "./plugin2")
    	so, err := os.ReadFile("plugin2.so")
    	if err != nil {
    		log.Panic(err)
    	}
    	if err := os.WriteFile("plugin2-dup.so", so, 0444); err != nil {
    		log.Panic(err)
    	}
    	prettyPrintf("cp plugin2.so plugin2-dup.so\n")
    
    	goCmd(nil, "build", "-buildmode=plugin", "-o=sub/plugin1.so", "./sub/plugin1")
    	goCmd(nil, "build", "-buildmode=plugin", "-o=unnamed1.so", "./unnamed1/main.go")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. src/net/tcpsock_posix.go

    }
    
    func (ln *TCPListener) close() error {
    	return ln.fd.Close()
    }
    
    func (ln *TCPListener) file() (*os.File, error) {
    	f, err := ln.fd.dup()
    	if err != nil {
    		return nil, err
    	}
    	return f, nil
    }
    
    func (sl *sysListener) listenTCP(ctx context.Context, laddr *TCPAddr) (*TCPListener, error) {
    	return sl.listenTCPProto(ctx, laddr, 0)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. src/internal/poll/fd_unix.go

    			// now on.
    			dupCloexecUnsupported.Store(true)
    		default:
    			return -1, "fcntl", err
    		}
    	}
    	return dupCloseOnExecOld(fd)
    }
    
    // Dup duplicates the file descriptor.
    func (fd *FD) Dup() (int, string, error) {
    	if err := fd.incref(); err != nil {
    		return -1, "", err
    	}
    	defer fd.decref()
    	return DupCloseOnExec(fd.Sysfd)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 04:09:44 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  5. src/net/unixsock_posix.go

    	ln.unlinkOnce.Do(func() {
    		if ln.path[0] != '@' && ln.unlink {
    			syscall.Unlink(ln.path)
    		}
    	})
    	return ln.fd.Close()
    }
    
    func (ln *UnixListener) file() (*os.File, error) {
    	f, err := ln.fd.dup()
    	if err != nil {
    		return nil, err
    	}
    	return f, nil
    }
    
    // SetUnlinkOnClose sets whether the underlying socket file should be removed
    // from the file system when the listener is closed.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. pkg/controlplane/controller/crdregistration/crdregistration_controller.go

    	apiServiceRegistration AutoAPIServiceRegistration
    
    	syncHandler func(groupVersion schema.GroupVersion) error
    
    	syncedInitialSet chan struct{}
    
    	// queue is where incoming work is placed to de-dup and to allow "easy" rate limited requeues on errors
    	// this is actually keyed by a groupVersion
    	queue workqueue.TypedRateLimitingInterface[schema.GroupVersion]
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/initialization/MixInLegacyTypesClassLoader.java

                methodVisitor.visitVarInsn(Opcodes.ALOAD, 0);
                methodVisitor.visitFieldInsn(Opcodes.GETFIELD, className, META_CLASS_FIELD, META_CLASS_TYPE.getDescriptor());
                methodVisitor.visitInsn(Opcodes.DUP);
                methodVisitor.visitJumpInsn(Opcodes.IFNULL, lookup);
                methodVisitor.visitInsn(Opcodes.ARETURN);
    
                methodVisitor.visitLabel(lookup);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 17K bytes
    - Viewed (0)
  8. src/syscall/syscall_darwin.go

    //sys	Chmod(path string, mode uint32) (err error)
    //sys	Chown(path string, uid int, gid int) (err error)
    //sys	Chroot(path string) (err error)
    //sys	Close(fd int) (err error)
    //sys	closedir(dir uintptr) (err error)
    //sys	Dup(fd int) (nfd int, err error)
    //sys	Dup2(from int, to int) (err error)
    //sys	Exchangedata(path1 string, path2 string, options int) (err error)
    //sys	Fchdir(fd int) (err error)
    //sys	Fchflags(fd int, flags int) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. pkg/controlplane/controller/clusterauthenticationtrust/cluster_authentication_trust_controller.go

    	configMapLister corev1listers.ConfigMapLister
    	configMapClient corev1client.ConfigMapsGetter
    	namespaceClient corev1client.NamespacesGetter
    
    	// queue is where incoming work is placed to de-dup and to allow "easy" rate limited requeues on errors.
    	// we only ever place one entry in here, but it is keyed as usual: namespace/name
    	queue workqueue.TypedRateLimitingInterface[string]
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  10. src/cmd/link/internal/loader/loader.go

    		// referenced by name.
    		addToGlobal()
    		return i
    	}
    	switch kind {
    	case pkgDef:
    		// Defined package symbols cannot be dup to each other.
    		// We load all the package symbols first, so we don't need
    		// to check dup here.
    		// We still add it to the lookup table, as it may still be
    		// referenced by name (e.g. through linkname).
    		l.symsByName[ver][name] = i
    		addToGlobal()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
Back to top