Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 51 for 97 (3.51 sec)

  1. src/cmd/asm/internal/asm/testdata/avx512enc/avx512bw.s

    	KSHIFTLD $0, K4, K7                                // c4e37933fc00
    	KSHIFTLQ $97, K1, K4                               // c4e3f933e161
    	KSHIFTLQ $97, K3, K4                               // c4e3f933e361
    	KSHIFTLQ $97, K1, K6                               // c4e3f933f161
    	KSHIFTLQ $97, K3, K6                               // c4e3f933f361
    	KSHIFTRD $79, K0, K2                               // c4e37931d04f
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue May 22 14:57:15 GMT 2018
    - 159.2K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/avx512enc/avx512f.s

    	VCMPPS $97, X14, X7, K3, K1                        // 62d1440bc2ce61
    	VCMPPS $97, 7(AX)(CX*4), X7, K3, K1                // 62f1440bc28c880700000061
    	VCMPPS $97, 7(AX)(CX*1), X7, K3, K1                // 62f1440bc28c080700000061
    	VCMPPS $97, X14, X7, K3, K5                        // 62d1440bc2ee61
    	VCMPPS $97, 7(AX)(CX*4), X7, K3, K5                // 62f1440bc2ac880700000061
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue May 22 14:57:15 GMT 2018
    - 410.5K bytes
    - Viewed (0)
  3. cmd/erasure-sets_test.go

    		// passing in valid object name.
    		{"object", 28},
    		{"The Shining Script <v1>.pdf", 142},
    		{"Cost Benefit Analysis (2009-2010).pptx", 133},
    		{"117Gn8rfHL2ACARPAhaFd0AGzic9pUbIA/5OCn5A", 185},
    		{"SHØRT", 97},
    		{"There are far too many object names, and far too few bucket names!", 101},
    		{"a/b/c/", 193},
    		{"/a/b/c", 116},
    		{string([]byte{0xff, 0xfe, 0xfd}), 61},
    	}
    
    	// Tests hashing order to be consistent.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Feb 12 07:21:56 GMT 2024
    - 6.9K bytes
    - Viewed (0)
  4. docs/en/docs/img/deployment/https/https08.drawio

                    </mxCell>
                    <mxCell id="109" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;dashed=1;startArrow=none;startFill=0;endArrow=classic;endFill=1;strokeWidth=3;" parent="1" source="97" target="32" edge="1">
                        <mxGeometry relative="1" as="geometry">
                            <Array as="points">
                                <mxPoint x="340" y="480"/>
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu May 12 00:06:16 GMT 2022
    - 20.9K bytes
    - Viewed (0)
  5. docs/en/docs/img/deployment/https/https.drawio

                    <mxCell id="109" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;dashed=1;startArrow=none;startFill=0;endArrow=classic;endFill=1;strokeWidth=3;" edge="1" parent="1" source="97" target="32">
                        <mxGeometry relative="1" as="geometry">
                            <Array as="points">
                                <mxPoint x="340" y="480"/>
                                <mxPoint x="340" y="480"/>
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu May 12 00:06:16 GMT 2022
    - 25.7K bytes
    - Viewed (0)
  6. docs/en/docs/img/deployment/https/https07.drawio

                    </mxCell>
                    <mxCell id="109" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;dashed=1;startArrow=none;startFill=0;endArrow=classic;endFill=1;strokeWidth=3;" parent="1" source="97" target="32" edge="1">
                        <mxGeometry relative="1" as="geometry">
                            <Array as="points">
                                <mxPoint x="340" y="480"/>
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu May 12 00:06:16 GMT 2022
    - 18.7K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/FormBodyTest.kt

        assertThat(formEncode(93)).isEqualTo("%5D")
        assertThat(formEncode(94)).isEqualTo("%5E")
        assertThat(formEncode(95)).isEqualTo("_")
        assertThat(formEncode(96)).isEqualTo("%60")
        assertThat(formEncode(97)).isEqualTo("a")
        assertThat(formEncode(122)).isEqualTo("z")
        assertThat(formEncode(123)).isEqualTo("%7B")
        assertThat(formEncode(124)).isEqualTo("%7C")
        assertThat(formEncode(125)).isEqualTo("%7D")
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 7.8K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/io/ByteStreamsTest.java

      }
    
      public void testNewDataOutput_writeChar() {
        ByteArrayDataOutput out = ByteStreams.newDataOutput();
        out.writeChar('a');
        assertThat(out.toByteArray()).isEqualTo(new byte[] {0, 97});
      }
    
      // Hardcoded because of Android problems. See testUtf16Expected.
      private static final byte[] utf16ExpectedWithBom =
          new byte[] {-2, -1, 0, 114, 0, -55, 0, 115, 0, 117, 0, 109, 0, -55};
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 21.9K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/io/ByteStreamsTest.java

      }
    
      public void testNewDataOutput_writeChar() {
        ByteArrayDataOutput out = ByteStreams.newDataOutput();
        out.writeChar('a');
        assertThat(out.toByteArray()).isEqualTo(new byte[] {0, 97});
      }
    
      // Hardcoded because of Android problems. See testUtf16Expected.
      private static final byte[] utf16ExpectedWithBom =
          new byte[] {-2, -1, 0, 114, 0, -55, 0, 115, 0, 117, 0, 109, 0, -55};
    
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 21.9K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/hash/HashingTest.java

       *
       */
      public void testConsistentHash_linearCongruentialGeneratorCompatibility() {
        int[] golden100 = {
          0, 55, 62, 8, 45, 59, 86, 97, 82, 59,
          73, 37, 17, 56, 86, 21, 90, 37, 38, 83
        };
        for (int i = 0; i < golden100.length; i++) {
          assertEquals(golden100[i], Hashing.consistentHash(i, 100));
        }
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 26.5K bytes
    - Viewed (0)
Back to top