Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 74 for Dummy (0.02 sec)

  1. src/test/java/org/codelibs/fess/dict/synonym/SynonymFileTest.java

        public void tearDown() throws Exception {
            file1.delete();
        }
        */
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
            synonymFile = new SynonymFile("1", "dummy", new Date());
            List<SynonymItem> itemList = new ArrayList<>();
            itemList.add(new SynonymItem(1, new String[] { "a1" }, new String[] { "A1" }));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 9K bytes
    - Viewed (0)
  2. src/test/java/jcifs/dcerpc/msrpc/lsarpcTest.java

                }
                return 0; // Return dummy value
            }
    
            @Override
            public void enc_ndr_long(int v) {
                // Simulate encoding a long
                offset += 4;
            }
    
            @Override
            public int dec_ndr_long() {
                // Simulate decoding a long
                offset += 4;
                return 0; // Return a dummy value
            }
    
            @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 60.8K bytes
    - Viewed (0)
  3. src/test/java/jcifs/netbios/NameQueryResponseTest.java

            Name mockRecordName = new Name(mockConfig);
            recordNameField.set(nameQueryResponse, mockRecordName);
    
            NbtAddress[] addresses = new NbtAddress[2];
            // Create dummy NbtAddress objects for testing toString
            addresses[0] = new NbtAddress(mockRecordName, 0xC0A80101, false, 0); // 192.168.1.1
            addresses[1] = new NbtAddress(mockRecordName, 0x0A000005, true, 1); // 10.0.0.5
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.4K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/core/collection/ArrayMapTest.java

         * @throws Exception
         */
        @Test
        public void testRemove() throws Exception {
            assertThat(map.remove("1"), is("test"));
            assertThat(map.size(), is(2));
            assertThat(map.remove("dummy"), is(nullValue()));
            assertThat(map.remove(0), is(nullValue()));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testRemove2() throws Exception {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/testing/ForwardingWrapperTester.java

            throw Throwables.propagate(e.getCause());
          }
          assertEquals("Failed to forward to " + method, 1, called.get());
        }
    
        @Override
        public String toString() {
          return "dummy " + interfaceType.getSimpleName();
        }
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  6. src/test/java/jcifs/spnego/NegTokenInitTest.java

        void testMicTag3NonOctetIgnored() throws Exception {
            // Manually craft a token where field [3] is not an OctetString (e.g., BitString)
            ASN1EncodableVector fields = new ASN1EncodableVector();
            // Add a dummy [3] BIT STRING which should be ignored by implementation
            fields.add(new DERTaggedObject(true, 3, new DERBitString(0xA5)));
    
            ASN1EncodableVector ev = new ASN1EncodableVector();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 21K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

            } catch (Throwable e) {
              throw sanityError(classToTest, EQUALS_TEST_METHOD_NAMES, "equals test", e);
            }
          }
        }
      }
    
      /**
       * Sets the default value for {@code type}, when dummy value for a parameter of the same type
       * needs to be created in order to invoke a method or constructor. The default value isn't used in
       * testing {@link Object#equals} because more than one sample instances are needed for testing
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 17.8K bytes
    - Viewed (0)
  8. src/test/java/jcifs/ntlmssp/Type3MessageTest.java

            pairs.add(new AvTargetName("TARGET"));
            pairs.add(new AvTimestamp(System.currentTimeMillis()));
            pairs.add(new AvFlags(0));
            pairs.add(new AvSingleHost(new byte[48])); // Dummy single host data
    
            type2.setTargetInformation(AvPairs.encode(pairs));
    
            return type2;
        }
    
        /**
         * Helper method to create a mock context with specific LanMan compatibility level
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17.3K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateResponseInputValidationTest.java

            SMBUtil.writeInt2(64, buffer, 56); // Security buffer offset (relative to header start)
            SMBUtil.writeInt2(8, buffer, 58); // Security buffer length
    
            // Add some dummy security data at offset 64 from start
            buffer[64] = (byte) 0x4E; // NTLMSSP signature start
            buffer[65] = (byte) 0x54;
            buffer[66] = (byte) 0x4C;
            buffer[67] = (byte) 0x4D;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  10. android/pom.xml

                </annotations>
                <checkTestClasses>true</checkTestClasses>
                <signature>
                  <groupId>com.toasttab.android</groupId>
                  <artifactId>gummy-bears-api-23</artifactId>
                  <version>0.12.0</version>
                  <!-- TODO(cpovirk): In principle, it would make sense to *also* test compatibility with JDK 1.8, since guava-android also has JRE users. -->
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 24.3K bytes
    - Viewed (0)
Back to top