Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 875 for 100 (0.01 sec)

  1. src/test/java/org/codelibs/fess/score/ScoreUpdaterTest.java

        public void test_execute_manyBoosters() {
            for (int i = 0; i < 100; i++) {
                TestScoreBooster booster = new TestScoreBooster(i);
                scoreUpdater.addScoreBooster(booster);
            }
    
            String result = scoreUpdater.execute();
            String[] lines = result.split("\n");
            assertEquals(100, lines.length);
        }
    
        // Test priority sorting with large range
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/ioctl/Smb2IoctlRequestTest.java

        void testSizeWithInputData() {
            setupMockConfig();
            Smb2IoctlRequest request = new Smb2IoctlRequest(mockConfig, TEST_CONTROL_CODE);
            when(mockInputData.size()).thenReturn(100);
            request.setInputData(mockInputData);
    
            int size = request.size();
    
            // Base size 120 + 100 = 220, aligned to 8 = 224
            assertEquals(224, size);
            verify(mockInputData).size();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.3K bytes
    - Viewed (0)
  3. api/maven-api-toolchain/src/main/mdo/toolchains.mdo

            The following table lists all the possible child elements.
          </description>
          <version>1.0.0+</version>
          <fields>
            <field>
              <name>toolchains</name>
              <version>1.0.0+</version>
              <description>The toolchain instance definition.</description>
              <association xml.itemsStyle="flat">
                <type>ToolchainModel</type>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sun May 18 09:15:56 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  4. src/test/java/jcifs/dcerpc/DcerpcPipeHandleTest.java

            void testDoSendReceiveFragment_Success() throws Exception {
                DcerpcPipeHandle handle = createMockedDcerpcPipeHandle();
    
                byte[] buf = new byte[50];
                byte[] inB = new byte[100];
    
                // Setup fragment length in response buffer
                Encdec.enc_uint16le((short) 40, inB, 8);
    
                when(mockSmbPipeHandleInternal.isStale()).thenReturn(false);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 21K bytes
    - Viewed (0)
  5. docs/fa/docs/features.md

    ### تست شده
    
    * 100% <abbr title="مقدار کدی که به طور خودکار تست شده است">پوشش تست</abbr>.
    
    * 100% کد بر اساس <abbr title="حاشیه نویسی تایپ های پایتون (Python type annotations)، با استفاده از آن ویرایشگر و ابزارهای خارجی شما می توانند پشتیبانی بهتری از شما ارائه دهند">type annotate ها</abbr>.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. src/test/java/jcifs/smb1/smb1/TransWaitNamedPipeTest.java

        @Test
        public void testWriteParametersWireFormat() {
            // Test that writeParametersWireFormat returns 0
            TransWaitNamedPipe pipe = new TransWaitNamedPipe("\\\\pipe\\testPipe");
            byte[] dst = new byte[100];
    
            int written = pipe.writeParametersWireFormat(dst, 0);
            assertEquals(0, written, "writeParametersWireFormat should return 0");
        }
    
        @Test
        public void testWriteDataWireFormat() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  7. compat/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/DefaultArtifactVersionTest.java

            assertVersionEqual("1-SNAPSHOT", "1.0-SNAPSHOT");
            assertVersionEqual("1-SNAPSHOT", "1.0.0-SNAPSHOT");
            assertVersionOlder("1.0-SNAPSHOT", "1.1-SNAPSHOT");
            assertVersionOlder("1.1-SNAPSHOT", "1.2-SNAPSHOT");
            assertVersionOlder("1.0.0-SNAPSHOT", "1.1-SNAPSHOT");
            assertVersionOlder("1.1-SNAPSHOT", "1.2.0-SNAPSHOT");
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionTest.java

            transaction.setTotalParameterCount(0);
            transaction.setTotalDataCount(100);
            transaction.setMaxParameterCount(1024);
            transaction.setMaxDataCountForTest(2048);
            transaction.setParameterCount(0);
            transaction.setParameterOffset(0);
            transaction.setDataCount(100);
            transaction.setDataOffset(80);
            transaction.setSetupCount(1);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/labeltype/CreateForm.java

        public Integer crudMode;
    
        /**
         * The name of the label type.
         */
        @Required
        @Size(max = 100)
        public String name;
    
        /**
         * The value of the label type (alphanumeric and underscore only).
         */
        @Required
        @Size(max = 100)
        @Pattern(regexp = "^[a-zA-Z0-9_]+$")
        public String value;
    
        /**
         * The paths to include for this label type.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/go/GoForm.java

         */
        public GoForm() {
            super();
        }
    
        /**
         * Document identifier for the target document to redirect to.
         * This is required and limited to 100 characters.
         */
        @Required
        @Size(max = 100)
        public String docId;
    
        /**
         * Redirect target or return URL parameter.
         * This is required and limited to 10000 characters to accommodate long URLs.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.9K bytes
    - Viewed (0)
Back to top