Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 2,475 for 2$ (0.02 sec)

  1. src/main/java/org/codelibs/core/misc/Tuple4.java

        public void setValue1(final T1 value1) {
            this.value1 = value1;
        }
    
        /**
         * 2番目の値を返します。
         *
         * @return 2番目の値
         */
        public T2 getValue2() {
            return value2;
        }
    
        /**
         * 2番目の値を設定します。
         *
         * @param value2
         *            2番目の値
         */
        public void setValue2(final T2 value2) {
            this.value2 = value2;
        }
    
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. 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)
  3. okhttp/src/main/kotlin/okhttp3/Protocol.kt

       *
       * HTTP/2 requires deployments of HTTP/2 that use TLS 1.2 support
       * [CipherSuite.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256], present in Java 8+ and Android 5+.
       * Servers that enforce this may send an exception message including the string
       * `INADEQUATE_SECURITY`.
       */
      HTTP_2("h2"),
    
      /**
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sat Apr 06 04:17:33 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/AbstractMapEntryTest.java

        // Explicitly call `equals`; `assertEquals` might return fast
        assertTrue(foo1.equals(foo1));
        assertEquals(control("foo", 1), foo1);
        assertEquals(control("bar", 2), entry("bar", 2));
        assertFalse(control("foo", 1).equals(entry("foo", 2)));
        assertFalse(foo1.equals(control("bar", 1)));
        assertFalse(foo1.equals(new Object()));
        assertFalse(foo1.equals(null));
      }
    
      public void testEqualsNull() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. cmd/erasure-decode_test.go

    	{dataBlocks: 2, onDisks: 4, offDisks: 2, blocksize: int64(blockSizeV2), data: oneMiByte, offset: 0, length: oneMiByte, algorithm: DefaultBitrotAlgorithm, shouldFail: false, shouldFailQuorum: false},              // 12
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Jan 30 20:43:25 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  10. 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)
Back to top