Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 199 for getgid (0.12 sec)

  1. src/archive/tar/common.go

    	// Set file permission bits.
    	mode = fs.FileMode(fi.h.Mode).Perm()
    
    	// Set setuid, setgid and sticky bits.
    	if fi.h.Mode&c_ISUID != 0 {
    		mode |= fs.ModeSetuid
    	}
    	if fi.h.Mode&c_ISGID != 0 {
    		mode |= fs.ModeSetgid
    	}
    	if fi.h.Mode&c_ISVTX != 0 {
    		mode |= fs.ModeSticky
    	}
    
    	// Set file mode bits; clear perm, setuid, setgid, and sticky bits.
    	switch m := fs.FileMode(fi.h.Mode) &^ 07777; m {
    	case c_ISDIR:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/config/BaseConfiguration.java

            return this.oemEncoding;
        }
    
    
        @Override
        public TimeZone getLocalTimezone () {
            return this.localTimeZone;
        }
    
    
        @Override
        public int getPid () {
            return this.localPid;
        }
    
    
        @Override
        public boolean isSigningEnabled () {
            return this.signingPreferred;
        }
    
    
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClient.java

         */
        private Optional<File> findCrashLogFile(Build build, DaemonDiagnostics diagnostics) {
            String crashLogFileName = "hs_err_pid" + diagnostics.getPid() + ".log";
            List<File> candidates = new ArrayList<>();
            candidates.add(new File(build.getParameters().getCurrentDir(), crashLogFileName));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  4. src/runtime/sys_linux_mips64x.s

    	SYSCALL
    	MOVW	R2, R4	// arg 1 pid
    	MOVW	sig+0(FP), R5	// arg 2
    	MOVV	$SYS_kill, R2
    	SYSCALL
    	RET
    
    TEXT ·getpid(SB),NOSPLIT|NOFRAME,$0-8
    	MOVV	$SYS_getpid, R2
    	SYSCALL
    	MOVV	R2, ret+0(FP)
    	RET
    
    TEXT ·tgkill(SB),NOSPLIT|NOFRAME,$0-24
    	MOVV	tgid+0(FP), R4
    	MOVV	tid+8(FP), R5
    	MOVV	sig+16(FP), R6
    	MOVV	$SYS_tgkill, R2
    	SYSCALL
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 20:57:24 UTC 2022
    - 12K bytes
    - Viewed (0)
  5. src/main/java/jcifs/Configuration.java

    
        /**
         * @return local timezone
         */
        TimeZone getLocalTimezone ();
    
    
        /**
         * @return Process id to send, randomized if unset
         */
        int getPid ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.maxMpxCount</tt> (int, default 10)
         * 
         * @return maximum count of concurrent commands to announce
         */
        int getMaxMpxCount ();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  6. pkg/controller/garbagecollector/garbagecollector.go

    		logger.V(5).Info("item's owner is not found",
    			"item", item.identity,
    			"owner", reference,
    		)
    		return true, nil, nil
    	case err != nil:
    		return false, nil, err
    	}
    
    	if owner.GetUID() != reference.UID {
    		logger.V(5).Info("item's owner is not found, UID mismatch",
    			"item", item.identity,
    			"owner", reference,
    		)
    		gc.absentOwnerCache.Add(absentOwnerCacheKey)
    		return true, nil, nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java

        }
    
    
        /**
         * @return the mid
         */
        @Override
        public final long getMid () {
            return this.mid;
        }
    
    
        /**
         * @param mid
         *            the mid to set
         */
        @Override
        public final void setMid ( long mid ) {
            this.mid = mid;
        }
    
    
        /**
         * @param n
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Sep 30 10:47:31 UTC 2018
    - 19.9K bytes
    - Viewed (0)
  8. src/main/java/jcifs/util/transport/Transport.java

            }
            finally {
                Response curResp = response;
                Request curReq = request;
                while ( curResp != null ) {
                    this.response_map.remove(curResp.getMid());
                    Request next = curReq.getNext();
                    if ( next != null ) {
                        curReq = next;
                        curResp = next.getResponse();
                    }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 01 18:12:21 UTC 2020
    - 24.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/bpxsvc_zos.go

    	parms[5] = unsafe.Pointer(&rc)
    	parms[6] = unsafe.Pointer(&rn)
    	bpxcall(parms[:], BPX4GTH)
    	return rv, rc, rn
    }
    func ZosJobname() (jobname string, err error) {
    	var pgtha Pgtha
    	pgtha.Pid = uint32(Getpid())
    	pgtha.Accesspid = PGTHA_CURRENT
    	pgtha.Flag1 = PGTHA_PROCESS
    	var out [256]byte
    	var outlen uint32
    	outlen = 256
    	rv, rc, rn := BpxGetthent(&pgtha, &outlen, unsafe.Pointer(&out[0]))
    	if rv == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/inline/inlheur/funcprops_test.go

    func gatherPropsDumpForFile(t *testing.T, testcase string, td string) (string, error) {
    	t.Helper()
    	gopath := "testdata/props/" + testcase + ".go"
    	outpath := filepath.Join(td, testcase+".a")
    	salt := fmt.Sprintf(".p%dt%d", os.Getpid(), time.Now().UnixNano())
    	dumpfile := filepath.Join(td, testcase+salt+".dump.txt")
    	run := []string{testenv.GoToolPath(t), "build",
    		"-gcflags=-d=dumpinlfuncprops=" + dumpfile, "-o", outpath, gopath}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 15K bytes
    - Viewed (0)
Back to top