Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 174 for nothing (0.06 sec)

  1. src/test/java/org/codelibs/fess/ds/DataStoreTest.java

                    capturedCallback.set(callback);
                    capturedParams.set(initParamMap);
                }
    
                @Override
                public void stop() {
                    // Do nothing
                }
            };
    
            // Create test data
            DataConfig config = new DataConfig();
            config.setName("test-config");
    
            DataStoreParams params = new DataStoreParams();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java

                // Do nothing in test
            }
    
            @Override
            public void setRuleId(String ruleId) {
                // Do nothing in test
            }
    
            @Override
            public void setUrl(String url) {
                // Do nothing in test
            }
    
            @Override
            public void setParentUrl(String parentUrl) {
                // Do nothing in test
            }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb1/smb1/SmbComQueryInformationTest.java

        public void testReadParameterWordsWireFormat() {
            // This method is expected to do nothing and return 0
            int result = smbComQueryInformation.readParameterWordsWireFormat(new byte[0], 0);
            assertEquals(0, result);
        }
    
        @Test
        public void testReadBytesWireFormat() {
            // This method is expected to do nothing and return 0
            int result = smbComQueryInformation.readBytesWireFormat(new byte[0], 0);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  4. src/test/java/jcifs/smb1/smb1/SmbComNegotiateTest.java

        }
    
        /**
         * Test the writeParameterWordsWireFormat method.
         * This method should do nothing and return 0.
         */
        @Test
        void testWriteParameterWordsWireFormat() {
            byte[] dst = new byte[10];
            int dstIndex = 0;
            // The method should return 0 as it writes no parameter words
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 4K bytes
    - Viewed (0)
  5. src/test/java/jcifs/smb1/smb1/SmbComDeleteTest.java

        @Test
        public void testReadParameterWordsWireFormat() {
            // This method is expected to do nothing and return 0
            int result = smbComDelete.readParameterWordsWireFormat(new byte[0], 0);
            assertEquals(0, result);
        }
    
        @Test
        public void testReadBytesWireFormat() {
            // This method is expected to do nothing and return 0
            int result = smbComDelete.readBytesWireFormat(new byte[0], 0);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  6. src/test/java/jcifs/smb1/smb1/SmbComWriteAndXResponseTest.java

            SmbComWriteAndXResponse response = new SmbComWriteAndXResponse();
            byte[] dst = new byte[0];
    
            int bytesWritten = response.writeParameterWordsWireFormat(dst, 0);
    
            // This method does nothing and should return 0.
            assertEquals(0, bytesWritten);
        }
    
        /**
         * Test the writeBytesWireFormat method.
         */
        @Test
        void testWriteBytesWireFormat() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  7. src/test/java/jcifs/smb1/smb1/SmbComQueryInformationResponseTest.java

         */
        @Test
        public void testWriteParameterWordsWireFormat() {
            byte[] dst = new byte[10];
            int dstIndex = 0;
            // This method does nothing and should return 0.
            assertEquals(0, response.writeParameterWordsWireFormat(dst, dstIndex));
        }
    
        /**
         * Test of writeBytesWireFormat method, of class SmbComQueryInformationResponse.
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformationTest.java

            // Should read nothing (returns 0)
            assertEquals(0, read);
        }
    
        @Test
        void testReadDataWireFormat() {
            trans2QueryPathInfo = new Trans2QueryPathInformation(config, TEST_FILENAME, TEST_INFO_LEVEL);
    
            byte[] buffer = new byte[256];
            int read = trans2QueryPathInfo.readDataWireFormat(buffer, 0, buffer.length);
    
            // Should read nothing (returns 0)
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  9. src/test/java/jcifs/SmbWatchHandleTest.java

                    return watch();
                }
    
                @Override
                public void close() throws CIFSException {
                    // Do nothing
                }
            };
    
            // Execute in executor service
            ExecutorService executor = Executors.newSingleThreadExecutor();
            try {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.2K bytes
    - Viewed (0)
  10. .github/workflows/test-redistribute.yml

            env:
              GITHUB_CONTEXT: ${{ toJson(github) }}
            run: echo "$GITHUB_CONTEXT"
    
      # https://github.com/marketplace/actions/alls-green#why
      test-redistribute-alls-green:  # This job does nothing and is only used for the branch protection
        if: always()
        needs:
          - test-redistribute
        runs-on: ubuntu-latest
        steps:
          - name: Decide whether the needed jobs succeeded or failed
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Aug 15 21:44:06 UTC 2025
    - 1.8K bytes
    - Viewed (0)
Back to top