Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for d2 (0.05 sec)

  1. cmd/endpoint_test.go

    		expectedErr error
    	}{
    		{[]string{"/d1", "/d2", "/d3", "/d4"}, nil},
    		{[]string{"http://localhost/d1", "http://localhost/d2", "http://localhost/d3", "http://localhost/d4"}, nil},
    		{[]string{"http://example.org/d1", "http://example.com/d1", "http://example.net/d1", "http://example.edu/d1"}, nil},
    		{[]string{"http://localhost/d1", "http://localhost/d2", "http://example.org/d1", "http://example.org/d2"}, nil},
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/arm64error.s

    	VBIF	V0.D2, V1.D2, V2.D2                              // ERROR "invalid arrangement"
    	VUADDW	V9.B8, V12.H8, V14.B8                            // ERROR "invalid arrangement"
    	VUADDW2	V9.B8, V12.S4, V14.S4                            // ERROR "operand mismatch"
    	VUMAX	V1.D2, V2.D2, V3.D2                              // ERROR "invalid arrangement"
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Mar 26 10:48:50 UTC 2025
    - 37.9K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/arm64enc.s

    	FCVTZUD F25, R22                           // 3603799e
    	//TODO VFDIV V6.D2, V1.D2, V27.D2          // 3bfc666e
    	FDIVS F16, F10, F20                        // 5419301e
    	FDIVD F11, F25, F30                        // 3e1b6b1e
    	FMADDS F15, F2, F8, F1                     // 01090f1f
    	FMADDD F15, F21, F25, F9                   // 29574f1f
    	//TODO VFMAX V23.D2, V27.D2, V14.D2        // 6ef7774e
    	FMAXS F5, F28, F27                         // 9b4b251e
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Mon Jul 24 01:11:41 UTC 2023
    - 43.9K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/arm64.s

    	SHA512H	V2.D2, V1, V0                   // 208062ce
    	SHA512H2	V4.D2, V3, V2           // 628464ce
    	SHA512SU0	V9.D2, V8.D2            // 2881c0ce
    	SHA512SU1	V7.D2, V6.D2, V5.D2     // c58867ce
    	VRAX1	V26.D2, V29.D2, V30.D2          // be8f7ace
    	VXAR	$63, V27.D2, V21.D2, V26.D2     // bafe9bce
    	VPMULL	V2.D1, V1.D1, V3.Q1             // 23e0e20e
    	VPMULL2	V2.D2, V1.D2, V4.Q1             // 24e0e24e
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Mar 26 10:48:50 UTC 2025
    - 95.3K bytes
    - Viewed (0)
  5. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/url/-Url.kt

      while (i < limit) {
        codePoint = encoded.codePointAt(i)
        if (codePoint == '%'.code && i + 2 < limit) {
          val d1 = encoded[i + 1].parseHexDigit()
          val d2 = encoded[i + 2].parseHexDigit()
          if (d1 != -1 && d2 != -1) {
            writeByte((d1 shl 4) + d2)
            i += 2
            i += Character.charCount(codePoint)
            continue
          }
        } else if (codePoint == '+'.code && plusIsSpace) {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/text/Tokenizer.java

                int d = read();
                int c = d;
                while (d >= 0) {
                    if (d == QUOTE) {
                        final int d2 = read();
                        if (d2 == QUOTE) {
                            c = QUOTE;
                        } else {
                            d = d2;
                            break;
                        }
                    } else {
                        c = d;
                    }
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java

                    list.add((DataConfig) crawlingConfigHelper.getCrawlingConfig("D2"));
                    list.add((DataConfig) crawlingConfigHelper.getCrawlingConfig("D3"));
                    return list;
                }
            }, DataConfigBhv.class.getCanonicalName());
            final List<DataConfig> configList = crawlingConfigHelper.getDataConfigListByIds(List.of("D1", "D2", "D3"));
            assertEquals(3, configList.size());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 34.9K bytes
    - Viewed (0)
  8. src/test/java/jcifs/smb/Kerb5AuthenticatorTest.java

            // Same subject instance -> equal
            Subject shared = new Subject();
            Kerb5Authenticator d1 = new Kerb5Authenticator(shared);
            Kerb5Authenticator d2 = new Kerb5Authenticator(shared);
            assertEquals(d1, d2);
    
            // Different type -> false
            assertFalse(a.equals("not-an-auth"));
        }
    
        @Test
        @DisplayName("isAnonymous: depends on subject presence and super")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  9. cmd/xl-storage-format-v2_test.go

    			dataDir:          d2,
    			shares:           2,
    			transitionStatus: lifecycle.TransitionComplete,
    			restoreObjStatus: completedRestoreObj(time.Now().Add(10 * time.Hour)).String(),
    			expireRestored:   true,
    		},
    		{
    			versionID: mustGetUUID(),
    			dataDir:   d2,
    			shares:    2,
    		},
    		{
    			versionID:       mustGetUUID(),
    			dataDir:         d2,
    			shares:          2,
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 37.8K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/arch/arm64.go

    		case "D1":
    			if isIndex {
    				return errors.New("invalid register extension")
    			}
    			a.Reg = arm64.REG_ARNG + (reg & 31) + ((arm64.ARNG_1D & 15) << 5)
    		case "D2":
    			if isIndex {
    				return errors.New("invalid register extension")
    			}
    			a.Reg = arm64.REG_ARNG + (reg & 31) + ((arm64.ARNG_2D & 15) << 5)
    		case "Q1":
    			if isIndex {
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Fri Feb 14 15:13:11 UTC 2025
    - 10.3K bytes
    - Viewed (0)
Back to top