Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 69 for 127 (0.01 sec)

  1. src/test/java/jcifs/internal/AllocInfoTest.java

                // Test all known constants
                byte[] classes = { FileSystemInformation.SMB_INFO_ALLOCATION, FileSystemInformation.FS_SIZE_INFO,
                        FileSystemInformation.FS_FULL_SIZE_INFO, (byte) 0, (byte) 1, (byte) 127, (byte) -128 };
    
                for (byte fsClass : classes) {
                    TestAllocInfo allocInfo = new TestAllocInfo(1024L, 512L, fsClass);
                    assertEquals(fsClass, allocInfo.getFileSystemInformationClass());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.8K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/cache/PopulatedCachesTest.java

     */
    
    @NullUnmarked
    public class PopulatedCachesTest extends TestCase {
      // we use integers as keys; make sure the range covers some values that ARE cached by
      // Integer.valueOf(int), and some that are not cached. (127 is the highest cached value.)
      static final int WARMUP_MIN = 120;
      static final int WARMUP_MAX = 135;
      static final int WARMUP_SIZE = WARMUP_MAX - WARMUP_MIN;
    
      public void testSize_populated() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb1/smb1/SmbComTransactionResponseTest.java

            buf[7] = 0; // high
            buf[8] = 4; // parameterOffset low
            buf[9] = 0; // high
            buf[10] = 6; // parameterDisplacement low
            buf[11] = 0; // high
            buf[12] = 7; // dataCount low
            buf[13] = 0; // high
            buf[14] = 8; // dataOffset low
            buf[15] = 0; // high
            buf[16] = 9; // dataDisplacement low
            buf[17] = 0; // high
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12K bytes
    - Viewed (0)
  4. cmd/apierrorcode_string.go

    	_ = x[ErrInvalidRetentionDate-122]
    	_ = x[ErrPastObjectLockRetainDate-123]
    	_ = x[ErrUnknownWORMModeDirective-124]
    	_ = x[ErrBucketTaggingNotFound-125]
    	_ = x[ErrObjectLockInvalidHeaders-126]
    	_ = x[ErrInvalidTagDirective-127]
    	_ = x[ErrPolicyAlreadyAttached-128]
    	_ = x[ErrPolicyNotAttached-129]
    	_ = x[ErrExcessData-130]
    	_ = x[ErrPolicyInvalidName-131]
    	_ = x[ErrNoTokenRevokeType-132]
    	_ = x[ErrAdminOpenIDNotEnabled-133]
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Apr 16 07:34:24 UTC 2025
    - 21.6K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/avx512enc/avx512dq.s

    	KORTESTB K7, K3                                    // c5f998df
    	KSHIFTLB $127, K4, K7                              // c4e37932fc7f
    	KSHIFTLB $127, K6, K7                              // c4e37932fe7f
    	KSHIFTLB $127, K4, K6                              // c4e37932f47f
    	KSHIFTLB $127, K6, K6                              // c4e37932f67f
    	KSHIFTRB $42, K4, K4                               // c4e37930e42a
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Tue May 22 14:57:15 UTC 2018
    - 194.8K bytes
    - Viewed (0)
  6. docs/de/docs/advanced/security/oauth2-scopes.md

    Wir verifizieren auch, dass wir einen Benutzer mit diesem Benutzernamen haben, und wenn nicht, lösen wir dieselbe Exception aus, die wir zuvor erstellt haben.
    
    {* ../../docs_src/security/tutorial005_an_py310.py hl[46,116:127] *}
    
    ## Die `scopes` verifizieren
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  7. src/builtin/builtin.go

    type uint32 uint32
    
    // uint64 is the set of all unsigned 64-bit integers.
    // Range: 0 through 18446744073709551615.
    type uint64 uint64
    
    // int8 is the set of all signed 8-bit integers.
    // Range: -128 through 127.
    type int8 int8
    
    // int16 is the set of all signed 16-bit integers.
    // Range: -32768 through 32767.
    type int16 int16
    
    // int32 is the set of all signed 32-bit integers.
    // Range: -2147483648 through 2147483647.
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Mon Dec 30 23:59:23 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  8. cmd/endpoint_test.go

    	tempGlobalMinioPort := globalMinioPort
    	defer func() {
    		globalMinioPort = tempGlobalMinioPort
    	}()
    	globalMinioPort = "9000"
    
    	// Filter ipList by IPs those do not start with '127.'.
    	nonLoopBackIPs := localIP4.FuncMatch(func(ip string, matchString string) bool {
    		return !net.ParseIP(ip).IsLoopback()
    	}, "")
    	if len(nonLoopBackIPs) == 0 {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  9. compat/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/ComparableVersion.java

        public int hashCode() {
            return items.hashCode();
        }
    
        // CHECKSTYLE_OFF: LineLength
    
        /**
         * Main to test version parsing and comparison.
         * <p>
         * To check how "1.2.7" compares to "1.2-SNAPSHOT", for example, you can issue
         * <pre>java -jar ${maven.repo.local}/org/apache/maven/maven-artifact/${maven.version}/maven-artifact-${maven.version}.jar "1.2.7" "1.2-SNAPSHOT"</pre>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Jul 23 17:27:08 UTC 2025
    - 26.4K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/testdata/loong64enc1.s

    	XVORNV		X1, X2		// 42842875
    
    	// XVANDB,XVORB,XVXORB,XVNORB
    	XVANDB		$0, X2, X3      // 4300d077
    	XVORB		$1, X2, X3      // 4304d477
    	XVXORB		$127, X2, X3    // 43fcd977
    	XVNORB		$255, X2, X3    // 43fcdf77
    	XVANDB		$0, X2		// 4200d077
    	XVORB		$1, X2		// 4204d477
    	XVXORB		$127, X2	// 42fcd977
    	XVNORB		$255, X2	// 42fcdf77
    
    	// MOVV C_DCON12_0, r
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Thu Sep 04 19:24:25 UTC 2025
    - 35.5K bytes
    - Viewed (0)
Back to top