Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 2,835 for 2$ (0.01 sec)

  1. src/test/java/org/codelibs/fess/filter/EncodingFilterTest.java

            assertEquals("333", paramMap.get("c")[0]);
    
            paramMap = filter.parseQueryString("a=1&b=2&c=3&a=2", "UTF-8");
            assertEquals(3, paramMap.size());
            assertEquals("1", paramMap.get("a")[0]);
            assertEquals("2", paramMap.get("a")[1]);
            assertEquals("2", paramMap.get("b")[0]);
            assertEquals("3", paramMap.get("c")[0]);
    
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. okhttp-sse/src/test/java/okhttp3/sse/internal/ServerSentEventIteratorTest.kt

      fun multiline() {
        consumeEvents(
          """
          |data: YHOO
          |data: +2
          |data: 10
          |
          |
          """.trimMargin(),
        )
        assertThat(callbacks.remove()).isEqualTo(Event(null, null, "YHOO\n+2\n10"))
      }
    
      @Test
      fun multilineCr() {
        consumeEvents(
          """
          |data: YHOO
          |data: +2
          |data: 10
          |
          |
          """.trimMargin().replace("\n", "\r"),
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/core/lang/StringUtilTest.java

            assertEquals("1", 2, array.length);
            assertEquals("2", "aaa", array[0]);
            assertEquals("3", "bbb", array[1]);
        }
    
        /**
         *
         */
        @Test
        public void testSplit2() {
            final String[] array = StringUtil.split("aaa, bbb", ", ");
            assertEquals("1", 2, array.length);
            assertEquals("2", "aaa", array[0]);
            assertEquals("3", "bbb", array[1]);
        }
    
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. src/main/java/jcifs/netbios/NameServicePacket.java

            writeInt2(this.recordType, dst, dstIndex);
            dstIndex += 2;
            writeInt2(this.recordClass, dst, dstIndex);
            dstIndex += 2;
            writeInt4(this.ttl, dst, dstIndex);
            dstIndex += 4;
            this.rDataLength = writeRDataWireFormat(dst, dstIndex + 2);
            writeInt2(this.rDataLength, dst, dstIndex);
            dstIndex += 2 + this.rDataLength;
            return dstIndex - start;
        }
    
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 12K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/netbios/NameServicePacket.java

            writeInt2( recordType, dst, dstIndex );
            dstIndex += 2;
            writeInt2( recordClass, dst, dstIndex );
            dstIndex += 2;
            writeInt4( ttl, dst, dstIndex );
            dstIndex += 4;
            rDataLength = writeRDataWireFormat( dst, dstIndex + 2 );
            writeInt2( rDataLength, dst, dstIndex );
            dstIndex += 2 + rDataLength;
            return dstIndex - start;
        }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 12.4K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/dict/kuromoji/KuromojiFileTest.java

            final PagingList<KuromojiItem> itemList2 = kuromojiFile.selectList(2, 2);
            assertEquals(1, itemList2.size());
            assertEquals(3, itemList2.getAllRecordCount());
            assertEquals(2, itemList2.getCurrentPageNumber());
            assertEquals(2, itemList2.getPageSize());
    
            assertEquals(0, kuromojiFile.selectList(5, 5).size());
            assertEquals(0, kuromojiFile.selectList(-1, 5).size());
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/SmbComTransactionResponse.java

            bufferIndex += 2;
            dataOffset = readInt2( buffer, bufferIndex );
            bufferIndex += 2;
            dataDisplacement = readInt2( buffer, bufferIndex );
            bufferIndex += 2;
            setupCount = buffer[bufferIndex] & 0xFF;
            bufferIndex += 2;
            if( setupCount != 0 ) {
                if( log.level > 2 )
                    log.println( "setupCount is not zero: " + setupCount );
            }
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 6K bytes
    - Viewed (0)
  8. tests/test_dependency_cache.py

        assert response.status_code == 200, response.text
        assert response.json() == {"counter": 2, "subcounter": 2}
    
    
    def test_sub_counter_no_cache():
        counter_holder["counter"] = 0
        response = client.get("/sub-counter-no-cache/")
        assert response.status_code == 200, response.text
        assert response.json() == {"counter": 2, "subcounter": 1}
        response = client.get("/sub-counter-no-cache/")
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 23 13:30:24 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/policy/v1beta1/generated.proto

      // +optional
      repeated IDRange ranges = 2;
    }
    
    // HostPortRange defines a range of host ports that will be enabled by a policy
    // for pods to use.  It requires both the start and end to be defined.
    message HostPortRange {
      // min is the start of the range, inclusive.
      optional int32 min = 1;
    
      // max is the end of the range, inclusive.
      optional int32 max = 2;
    }
    
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/Trans2FindFirst2.java

            dst[dstIndex++] = (byte)0x00;
            return 2;
        }
        int writeParametersWireFormat( byte[] dst, int dstIndex ) {
            int start = dstIndex;
    
            writeInt2( searchAttributes, dst, dstIndex );
            dstIndex += 2;
            writeInt2( LIST_COUNT, dst, dstIndex );
            dstIndex += 2;
            writeInt2( flags, dst, dstIndex );
            dstIndex += 2;
            writeInt2( informationLevel, dst, dstIndex );
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 4.4K bytes
    - Viewed (0)
Back to top