Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 56 for getthrid (0.25 sec)

  1. src/main/java/jcifs/internal/smb1/com/SmbComTreeConnectAndXResponse.java

        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.TreeConnectResponse#isValidTid()
         */
        @Override
        public boolean isValidTid () {
            return getTid() != 0xFFFF;
        }
    
    
        @Override
        protected int writeParameterWordsWireFormat ( byte[] dst, int dstIndex ) {
            return 0;
        }
    
    
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/SID.java

         * @return domain SID
         */
        SID getDomainSid ();
    
    
        /**
         * Get the RID
         * 
         * This is the last subauthority identifier
         * 
         * @return the RID
         */
        int getRid ();
    
    
        /**
         * Return a String representing this SID ideal for display to
         * users. This method should return the same text that the ACL
         * editor in Windows would display.
         * <p>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.1K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/DefaultTestLauncher.java

            operationParamsBuilder.setEntryPoint("TestLauncher API");
            this.connection = connection;
        }
    
        @Override
        protected DefaultTestLauncher getThis() {
            return this;
        }
    
        @Override
        public TestLauncher withTests(TestOperationDescriptor... testDescriptors) {
            withTests(Arrays.asList(testDescriptors));
            return this;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. src/runtime/write_err_android.go

    	//      hdr[7:11] nsec unsigned uint32, little endian.
    	hdr[0] = 0 // LOG_ID_MAIN
    	sec, nsec, _ := time_now()
    	packUint32(hdr[3:7], uint32(sec))
    	packUint32(hdr[7:11], uint32(nsec))
    
    	// TODO(hakim):  hdr[1:2] = gettid?
    
    	return 11 + len(writeHeader)
    }
    
    func packUint32(b []byte, v uint32) {
    	// little-endian.
    	b[0] = byte(v)
    	b[1] = byte(v >> 8)
    	b[2] = byte(v >> 16)
    	b[3] = byte(v >> 24)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SID.java

        }
    
    
        /**
         * Get the RID
         * 
         * This is the last subauthority identifier
         * 
         * @return the RID
         */
        @Override
        public int getRid () {
            if ( getType() == SID_TYPE_DOMAIN )
                throw new IllegalArgumentException("This SID is a domain sid");
            return this.sub_authority[ this.sub_authority_count - 1 ];
        }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 14.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/asm_zos_s390x.s

    	XOR  R0, R0           // Reset r0 to 0
    	MOVD R15, R1          // Save SVC return code
    	MOVD R2, R15          // Restore go stack pointer
    	MOVD R1, ret+16(FP)   // Return SVC return code
    	RET
    
    // func gettid() uint64
    TEXT ยทgettid(SB), NOSPLIT, $0
    	// Get library control area (LCA).
    	MOVW PSALAA, R8
    	MOVD LCA64(R8), R8
    
    	// Get CEECAATHDID
    	MOVD CAA(R8), R9
    	MOVD CEECAATHDID(R9), R9
    	MOVD R9, ret+0(FP)
    
    	RET
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbTreeImpl.java

         */
        public SmbSessionImpl getSession () {
            return this.session.acquire();
        }
    
    
        /**
         * @return the tid
         */
        public int getTid () {
            return this.tid;
        }
    
    
        /**
         * @return the tree_num (monotonically increasing counter to track reconnects)
         */
        public long getTreeNum () {
            return this.treeNum;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/SID.java

            return new SID(this,
                        SID_TYPE_DOMAIN,
                        this.domainName,
                        null,
                        getType() != SID_TYPE_DOMAIN);
        }
        public int getRid() {
            if (getType() == SID_TYPE_DOMAIN)
                throw new IllegalArgumentException("This SID is a domain sid");
            return sub_authority[sub_authority_count - 1];
        }
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 26.6K bytes
    - Viewed (0)
  9. src/syscall/syscall_linux_test.go

    			v, _, e := syscall.Syscall(syscall.SYS_PRCTL, PR_GET_KEEPCAPS, 0, 0)
    			if e != 0 {
    				t.Errorf("tid=%d prctl(PR_GET_KEEPCAPS) failed: %v", syscall.Gettid(), e)
    			} else if x != v {
    				t.Errorf("tid=%d prctl(PR_GET_KEEPCAPS) mismatch: got=%d want=%d", syscall.Gettid(), v, x)
    			}
    			r <- v
    			if once {
    				break
    			}
    			runtime.UnlockOSThread()
    		}
    	}
    
    	// launches per fns member.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbClient.java

                    final CIFSContext context = file.getContext();
                    final SID[] children = context.getSIDResolver().getGroupMemberSids(context, file.getServer(), sid.getDomainSid(),
                            sid.getRid(), jcifs.smb.SID.SID_FLAG_RESOLVE_SIDS);
                    for (final SID child : children) {
                        if (!sidSet.contains(child)) {
                            processAllowedSIDs(file, child, sidSet);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 23 01:54:10 UTC 2024
    - 17.9K bytes
    - Viewed (0)
Back to top