Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 147 for enforced (0.04 sec)

  1. src/main/java/jcifs/config/BaseConfiguration.java

        protected boolean forceUnicode = false;
        /** Whether SMB signing is preferred but not required */
        protected boolean signingPreferred = false;
        /** Whether SMB signing is enforced (required) */
        protected boolean signingEnforced = false;
        /** Whether to enforce signing for IPC connections */
        protected boolean ipcSigningEnforced = true;
        /** Whether SMB3 encryption is enabled */
        protected boolean encryptionEnabled = false;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java

            if (!isReceived() || getStatus() != 0) {
                return false;
            }
    
            if (req.isSigningEnforced() && !isSigningEnabled()) {
                log.debug("Signing is enforced but server does not allow it");
                return false;
            }
    
            if (getDialectRevision() == Smb2Constants.SMB2_DIALECT_ANY) {
                log.debug("Server returned ANY dialect");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 24K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/io/ByteSource.java

      {
    
        final byte[] bytes;
        final int offset;
        final int length;
    
        ByteArrayByteSource(byte[] bytes) {
          this(bytes, 0, bytes.length);
        }
    
        // NOTE: Preconditions are enforced by slice, the only non-trivial caller.
        ByteArrayByteSource(byte[] bytes, int offset, int length) {
          this.bytes = bytes;
          this.offset = offset;
          this.length = length;
        }
    
        @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Mar 20 20:55:20 UTC 2025
    - 25.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/math/Stats.java

       *
       * <p>To ensure that the created instance obeys its contract, the parameters should satisfy the
       * following constraints. This is the callers responsibility and is not enforced here.
       *
       * <ul>
       *   <li>If {@code count} is 0, {@code mean} may have any finite value (its only usage will be to
       *       get multiplied by 0 to calculate the sum), and the other parameters may have any values
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 24.8K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateResponseTest.java

            // When
            boolean valid = response.isValid(mockContext, mockRequest);
    
            // Then
            assertFalse(valid);
        }
    
        @Test
        @DisplayName("Should fail validation when signing enforced but not enabled")
        void testIsValidSigningEnforcedButNotEnabled() throws Exception {
            // Given
            setResponseAsReceived(response);
            when(mockRequest.isSigningEnforced()).thenReturn(true);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 32.5K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.2.md

    request only, if you want to avoid hardcapping. If the kernel does not support
    CPU Quota, NodeStatus will contain a warning indicating that CPU Limits cannot
    be enforced.
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
  7. cmd/admin-handlers-users_test.go

    	c.assertSvcAccDeletion(ctx, s, userAdmClient, accessKey, bucket)
    
    	// 6. Check that service account **can** be created for some other user.
    	// This is possible because the policy enforced in the plugin.
    	c.mustCreateSvcAccount(ctx, globalActiveCred.AccessKey, userAdmClient)
    }
    
    func (c *check) mustCreateIAMUser(ctx context.Context, admClnt *madmin.AdminClient) madmin.Credentials {
    	c.Helper()
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 47.4K bytes
    - Viewed (0)
  8. docs/changelogs/changelog_3x.md

        callback.
    
     *  Fix: Apply call timeouts when connecting duplex calls, web sockets, and server-sent events.
        Once the streams are established no further timeout is enforced.
    
     *  Fix: Retain the `Route` when a connection is reused on a redirect or other follow-up. This was
        causing some `Authenticator` calls to see a null route when non-null was expected.
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.5.md

        * - Ignore .mount cgroups, fixing dissappearing stats
        * - Fix wc goroutine leak
        * - Update aws-sdk-go dependency to 1.6.10
    * PodSecurityPolicy authorization is correctly enforced by the PodSecurityPolicy admission plugin. ([#43489](https://github.com/kubernetes/kubernetes/pull/43489), [@liggitt](https://github.com/liggitt))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbTransportImpl.java

            final boolean serverEnableSig = resp.getResponse().isSigningEnabled();
            if (log.isDebugEnabled()) {
                log.debug("Signature negotiation enforced " + this.signingEnforced + " (server " + serverRequireSig + ") enabled "
                        + this.getContext().getConfig().isSigningEnabled() + " (server " + serverEnableSig + ")");
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 69.8K bytes
    - Viewed (0)
Back to top