Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 498 for setFid (0.19 sec)

  1. src/main/java/jcifs/internal/smb2/ServerMessageBlock2Request.java

            }
            return resp;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.CommonServerMessageBlockRequest#setTid(int)
         */
        @Override
        public void setTid ( int t ) {
            setTreeId(t);
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.smb2.ServerMessageBlock2#encode(byte[], int)
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/start_posix.go

    package telemetry
    
    import (
    	"os/exec"
    	"syscall"
    )
    
    func init() {
    	daemonize = daemonizePosix
    }
    
    func daemonizePosix(cmd *exec.Cmd) {
    	cmd.SysProcAttr = &syscall.SysProcAttr{
    		Setsid: true,
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 441 bytes
    - Viewed (0)
  3. maven-model/src/test/java/org/apache/maven/model/merge/MavenMergerTest.java

            assertThat( target.getDescription(), is( "TARGET" ) );
        }
    
        @Test
        public void mergeSameDevelopers()
        {
            Developer developer = new Developer();
            developer.setId( "devid" );
    
            Model target = new Model();
            target.setDevelopers( Arrays.asList( developer ) );
    
            Model source = new Model();
            source.setDevelopers( Arrays.asList( developer ) );
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  4. src/syscall/exec_linux.go

    	Ptrace bool
    	Setsid bool // Create session.
    	// Setpgid sets the process group ID of the child to Pgid,
    	// or, if Pgid == 0, to the new child's process ID.
    	Setpgid bool
    	// Setctty sets the controlling terminal of the child to
    	// file descriptor Ctty. Ctty must be a descriptor number
    	// in the child process: an index into ProcAttr.Files.
    	// This is only meaningful if Setsid is true.
    	Setctty bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  5. src/os/signal/signal_plan9_test.go

    	defer Stop(c)
    
    	// Send this process a hangup
    	t.Logf("hangup...")
    	postNote(syscall.Getpid(), "hangup")
    	waitSig(t, c, syscall.Note("hangup"))
    
    	// Ask for everything we can get.
    	c1 := make(chan os.Signal, 1)
    	Notify(c1)
    
    	// Send this process an alarm
    	t.Logf("alarm...")
    	postNote(syscall.Getpid(), "alarm")
    	waitSig(t, c1, syscall.Note("alarm"))
    
    	// Send two more hangups, to make sure that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Mar 14 17:56:50 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  6. docs/metrics/v3.md

    | `minio_cluster_erasure_set_write_quorum`         | `gauge` | Write quorum for the erasure set in a pool                                        | `pool_id,set_id` |
    | `minio_cluster_erasure_set_online_drives_count`  | `gauge` | Count of online drives in the erasure set in a pool                               | `pool_id,set_id` |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 40.9K bytes
    - Viewed (0)
  7. src/syscall/syscall_linux.go

    //sys	read(fd int, p []byte) (n int, err error)
    //sys	Removexattr(path string, attr string) (err error)
    //sys	Setdomainname(p []byte) (err error)
    //sys	Sethostname(p []byte) (err error)
    //sysnb	Setpgid(pid int, pgid int) (err error)
    //sysnb	Setsid() (pid int, err error)
    //sysnb	Settimeofday(tv *Timeval) (err error)
    
    // Provided by runtime.syscall_runtime_doAllThreadsSyscall which stops the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/unstructured_test.go

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go

    //go:cgo_import_dynamic libc_select select "libc.so"
    //go:cgo_import_dynamic libc_setegid setegid "libc.so"
    //go:cgo_import_dynamic libc_seteuid seteuid "libc.so"
    //go:cgo_import_dynamic libc_setgid setgid "libc.so"
    //go:cgo_import_dynamic libc_sethostname sethostname "libc.so"
    //go:cgo_import_dynamic libc_setpgid setpgid "libc.so"
    //go:cgo_import_dynamic libc_setpriority setpriority "libc.so"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59.7K bytes
    - Viewed (0)
  10. src/syscall/exec_bsd.go

    type SysProcAttr struct {
    	Chroot     string      // Chroot.
    	Credential *Credential // Credential.
    	Ptrace     bool        // Enable tracing.
    	Setsid     bool        // Create session.
    	// Setpgid sets the process group ID of the child to Pgid,
    	// or, if Pgid == 0, to the new child's process ID.
    	Setpgid bool
    	// Setctty sets the controlling terminal of the child to
    	// file descriptor Ctty. Ctty must be a descriptor number
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 7.9K bytes
    - Viewed (0)
Back to top