Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 43 for 456Z (0.01 sec)

  1. src/test/java/jcifs/smb1/smb1/ServerMessageBlockTest.java

            });
        }
    
        @Test
        void testEncodeDecode() {
            // Setup SMB with some data
            smb.command = ServerMessageBlock.SMB_COM_ECHO;
            smb.mid = 123;
            smb.pid = 456;
            smb.tid = 789;
            smb.uid = 101;
            smb.flags2 = ServerMessageBlock.FLAGS2_UNICODE;
            smb.useUnicode = true;
    
            byte[] params = { 0x01, 0x02, 0x03, 0x04 };
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  2. cmd/testdata/xl-meta-merge.zip

    §EcIndex ¦EcDist” ¨CSumAlgo ¨PartNums‘ ©PartETagsÀ©PartSizes‘Ñ äªPartASizes‘Ñ ä¤SizeÑ ä¥MTimeÓ ¹ôb Îf­§MetaSys ¼x-minio-internal-inline-dataÄ true§MetaUsr‚¬content-type¸application/octet-stream¤etagÙ 9fe7a344ef4227d3e537¡vÎeçnÐÎÍ 0Ø ‚Ù$73c9f651-f023-4566-b012-cc537fdb7ce2Ä’A0§i ˆ»°u•‡ðU ^sF" :5›…— ú >õ’È4> . çòH¯icaMLNpG¾ÙìpöÊ 4 ,A¼yL„cÁÐÚîÑðÍÉzêê ¼yL„c·ÀÀôñßÜïÖGþr އ´’ª€¬µˆ G[ðõ‹©lI pNÈGš“ 0 $ ²€ùáDq µjuqZœÒÙ$1f163718-9bc5-4b01-bff7-5d8cf09caf10Ä’A0§i ˆ»°u•‡ðU ^sF" :5›…— ú >õ’È4> . çòH¯icaMLNpG¾ÙìpöÊ...
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Mar 08 17:50:48 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/math/QuantilesTest.java

      }
    
      public void testScale_index_computeInPlace_explicitVarargs() {
        assertThat(Quantiles.scale(10).index(5).computeInPlace(78.9, 12.3, 45.6))
            .isWithin(ALLOWED_ERROR)
            .of(45.6);
      }
    
      public void testScale_indexes_varargs_compute_doubleCollection() {
        // Note that we specify index 1 twice, which by the method contract should be ignored.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/math/QuantilesTest.java

      }
    
      public void testScale_index_computeInPlace_explicitVarargs() {
        assertThat(Quantiles.scale(10).index(5).computeInPlace(78.9, 12.3, 45.6))
            .isWithin(ALLOWED_ERROR)
            .of(45.6);
      }
    
      public void testScale_indexes_varargs_compute_doubleCollection() {
        // Note that we specify index 1 twice, which by the method contract should be ignored.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/util/PrunedTagTest.java

            PrunedTag tagDifferentAttrValue = new PrunedTag("div");
            tagDifferentAttrValue.setId("test");
            tagDifferentAttrValue.setCss("highlight");
            tagDifferentAttrValue.setAttr("data-value", "456");
            assertFalse(tag1.equals(tagDifferentAttrValue));
    
            // Null values handling
            PrunedTag tagWithNulls = new PrunedTag("div");
            PrunedTag anotherTagWithNulls = new PrunedTag("div");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 21K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/collect/IteratorsTest.java

      @GwtIncompatible // fairly slow (~50s)
      public void testPartition_general() {
        new IteratorTester<List<Integer>>(
            5,
            IteratorFeature.UNMODIFIABLE,
            ImmutableList.of(asList(1, 2, 3), asList(4, 5, 6), asList(7)),
            IteratorTester.KnownOrder.KNOWN_ORDER) {
          @Override
          protected Iterator<List<Integer>> newTargetIterator() {
            Iterator<Integer> source = Iterators.forArray(1, 2, 3, 4, 5, 6, 7);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 54.4K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/smb2/ioctl/SrvCopychunkCopyTest.java

                // Given
                byte[] sourceKey = new byte[SOURCE_KEY_SIZE];
                Arrays.fill(sourceKey, (byte) 0x55);
    
                SrvCopychunk[] testCases = { new SrvCopychunk(1, 2, 3), new SrvCopychunk(4, 5, 6), new SrvCopychunk(7, 8, 9),
                        new SrvCopychunk(10, 11, 12), new SrvCopychunk(13, 14, 15) };
    
                for (int numChunks = 0; numChunks <= testCases.length; numChunks++) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 23.1K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/collect/IteratorsTest.java

      @GwtIncompatible // fairly slow (~50s)
      public void testPartition_general() {
        new IteratorTester<List<Integer>>(
            5,
            IteratorFeature.UNMODIFIABLE,
            ImmutableList.of(asList(1, 2, 3), asList(4, 5, 6), asList(7)),
            IteratorTester.KnownOrder.KNOWN_ORDER) {
          @Override
          protected Iterator<List<Integer>> newTargetIterator() {
            Iterator<Integer> source = Iterators.forArray(1, 2, 3, 4, 5, 6, 7);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 54.4K bytes
    - Viewed (0)
  9. src/test/java/jcifs/dcerpc/msrpc/netdfsTest.java

        }
    
        @Test
        void testDfsInfo300_EncodeDecode_NullDfsName() throws NdrException {
            netdfs.DfsInfo300 info300 = new netdfs.DfsInfo300();
            info300.flags = 456;
            info300.dfs_name = null;
    
            ByteArrayOutputStream bos = new ByteArrayOutputStream();
            // Create buffer for encoding - initially allocate some space
            byte[] encodeBuffer = new byte[1024];
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 30.9K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

            (LocalLoadingCache)
                CacheBuilder.newBuilder()
                    .weakKeys()
                    .softValues()
                    .expireAfterAccess(123, SECONDS)
                    .expireAfterWrite(456, MINUTES)
                    .maximumWeight(789)
                    .weigher(weigher)
                    .concurrencyLevel(12)
                    .removalListener(listener)
                    .ticker(ticker)
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 110.5K bytes
    - Viewed (0)
Back to top