Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 47 for Capability (0.5 sec)

  1. src/test/java/jcifs/smb/SmbTransportImplTest.java

            when(s.isClosed()).thenReturn(true);
            assertTrue(transport.isDisconnected());
            assertTrue(transport.isFailed());
        }
    
        @Test
        @DisplayName("capability query delegates to negotiation state")
        void hasCapability_delegates() throws Exception {
            // Arrange
            SmbNegotiationResponse nego = mock(SmbNegotiationResponse.class);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17.6K bytes
    - Viewed (0)
  2. src/test/java/jcifs/config/BaseConfigurationTest.java

            assertTrue((testConfig.getFlags2() & SmbConstants.FLAGS2_UNICODE) != 0);
        }
    
        @Test
        @DisplayName("Test initDefaults with various capability combinations")
        void testInitDefaultsWithCapabilityCombinations() throws CIFSException {
            BaseConfiguration testConfig = new BaseConfiguration(false);
            testConfig.useNTSmbs = true;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/exception/InvalidQueryExceptionTest.java

            assertEquals(messageCode, exception.getMessageCode());
        }
    
        public void test_verifySerialVersionUID() {
            // Setup
            final String message = "Test serialization capability";
            final VaMessenger<FessMessages> messageCode = messages -> messages.addErrorsInvalidQueryUnknown(UserMessages.GLOBAL_PROPERTY_KEY);
    
            // Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 15.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbTreeConnection.java

            }
            return null;
        }
    
        /**
         *
         * Only call this method while holding a tree handle
         *
         * @param cap
         * @return whether the capability is available
         * @throws SmbException
         */
        public boolean hasCapability(final int cap) throws SmbException {
            try (SmbSessionImpl s = getSession()) {
                if (s != null) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 30.4K bytes
    - Viewed (0)
  5. src/test/java/jcifs/smb/SmbRandomAccessFileTest.java

            raf.setLength(100L);
    
            verify(tree, times(1)).send(any(Smb2SetInfoRequest.class), eq(RequestParam.NO_RETRY));
        }
    
        @Test
        @DisplayName("setLength(): NT SMBs capability uses Trans2SetFileInformation")
        void setLength_ntsmbs_usesTrans2() throws Exception {
            SmbRandomAccessFile raf = newInstance("rw", false, true, false);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.1K bytes
    - Viewed (0)
  6. docs/smb3-features/02-persistent-handles-design.md

            assertEquals("test data", new String(buffer));
        }
    }
    
    @Test
    public void testPersistentHandleSurvivesReboot() throws Exception {
        // This test requires special setup with server reboot capability
        CIFSContext context = getTestContext();
        context.getConfig().setProperty("jcifs.smb.client.usePersistentHandles", "true");
        
        SmbFile file = new SmbFile("smb://server/share/persistent.txt", context);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 31.6K bytes
    - Viewed (0)
  7. CHANGELOG.md

        throwing in 5.0.0, we inadvertently removed the ability for callers to peek the trailers
        (by catching the `IllegalStateException` if they weren't available). This new API restores that
        capability.
    
     *  Fix: Don't crash on `trailers()` if the response doesn't have a body. We broke [Retrofit] users
        who read the trailers on the `raw()` OkHttp response, after its body was decoded.
    
    
    ## Version 5.0.0
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jul 07 19:32:33 UTC 2025
    - 31.6K bytes
    - Viewed (1)
  8. CHANGELOG/CHANGELOG-1.13.md

    - GlusterFS PersistentVolumes sources can now reference endpoints in any namespace using the `spec.glusterfs.endpointsNamespace` field. Ensure all kubelets are upgraded to 1.13+ before using this capability. ([#60195](https://github.com/kubernetes/kubernetes/pull/60195), [@humblec](https://github.com/humblec))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.17.md

    - The certificate signer no longer accepts ca.key passwords via the `CFSSL_CA_PK_PASSWORD` environment variable. This capability was not prompted by user request, never advertised, and recommended against in the security audit. ([#84677](https://github.com/kubernetes/kubernetes/pull/84677), [@mikedanese](https://github.com/mikedanese))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Jan 28 10:44:33 UTC 2021
    - 346.2K bytes
    - Viewed (1)
  10. CHANGELOG/CHANGELOG-1.15.md

    have been given priority for 1.15.
    
    kubeadm, the cluster lifecycle building block, continues to receive features and stability work required for bootstrapping production clusters efficiently. kubeadm has promoted high availability (HA) capability to beta, allowing users to use the familiar `kubeadm init` and `kubeadm join` commands to [configure and deploy an HA control plane](https://kubernetes.io/docs/setup/production-environment/tools/kubeadm/high-availability/). An entire new test suite...
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 278.9K bytes
    - Viewed (0)
Back to top